diff -Nru libqmi-1.18.0/aclocal.m4 libqmi-1.22.0/aclocal.m4 --- libqmi-1.18.0/aclocal.m4 2017-03-22 12:20:23.000000000 +0100 +++ libqmi-1.22.0/aclocal.m4 2019-01-08 15:17:14.000000000 +0100 @@ -1,6 +1,6 @@ -# generated automatically by aclocal 1.15 -*- Autoconf -*- +# generated automatically by aclocal 1.16.1 -*- Autoconf -*- -# Copyright (C) 1996-2014 Free Software Foundation, Inc. +# Copyright (C) 1996-2018 Free Software Foundation, Inc. # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, @@ -20,9 +20,9 @@ If you have problems, you may need to regenerate the build system entirely. To do so, use the procedure documented by the package, typically 'autoreconf'.])]) -dnl pkg.m4 - Macros to locate and utilise pkg-config. -*- Autoconf -*- -dnl serial 11 (pkg-config-0.29.1) -dnl +# pkg.m4 - Macros to locate and utilise pkg-config. -*- Autoconf -*- +# serial 11 (pkg-config-0.29.1) + dnl Copyright © 2004 Scott James Remnant . dnl Copyright © 2012-2015 Dan Nicholson dnl @@ -296,7 +296,75 @@ AS_VAR_IF([$1], [""], [$5], [$4])dnl ])dnl PKG_CHECK_VAR -# Copyright (C) 2002-2014 Free Software Foundation, Inc. +dnl PKG_WITH_MODULES(VARIABLE-PREFIX, MODULES, +dnl [ACTION-IF-FOUND],[ACTION-IF-NOT-FOUND], +dnl [DESCRIPTION], [DEFAULT]) +dnl ------------------------------------------ +dnl +dnl Prepare a "--with-" configure option using the lowercase +dnl [VARIABLE-PREFIX] name, merging the behaviour of AC_ARG_WITH and +dnl PKG_CHECK_MODULES in a single macro. +AC_DEFUN([PKG_WITH_MODULES], +[ +m4_pushdef([with_arg], m4_tolower([$1])) + +m4_pushdef([description], + [m4_default([$5], [build with ]with_arg[ support])]) + +m4_pushdef([def_arg], [m4_default([$6], [auto])]) +m4_pushdef([def_action_if_found], [AS_TR_SH([with_]with_arg)=yes]) +m4_pushdef([def_action_if_not_found], [AS_TR_SH([with_]with_arg)=no]) + +m4_case(def_arg, + [yes],[m4_pushdef([with_without], [--without-]with_arg)], + [m4_pushdef([with_without],[--with-]with_arg)]) + +AC_ARG_WITH(with_arg, + AS_HELP_STRING(with_without, description[ @<:@default=]def_arg[@:>@]),, + [AS_TR_SH([with_]with_arg)=def_arg]) + +AS_CASE([$AS_TR_SH([with_]with_arg)], + [yes],[PKG_CHECK_MODULES([$1],[$2],$3,$4)], + [auto],[PKG_CHECK_MODULES([$1],[$2], + [m4_n([def_action_if_found]) $3], + [m4_n([def_action_if_not_found]) $4])]) + +m4_popdef([with_arg]) +m4_popdef([description]) +m4_popdef([def_arg]) + +])dnl PKG_WITH_MODULES + +dnl PKG_HAVE_WITH_MODULES(VARIABLE-PREFIX, MODULES, +dnl [DESCRIPTION], [DEFAULT]) +dnl ----------------------------------------------- +dnl +dnl Convenience macro to trigger AM_CONDITIONAL after PKG_WITH_MODULES +dnl check._[VARIABLE-PREFIX] is exported as make variable. +AC_DEFUN([PKG_HAVE_WITH_MODULES], +[ +PKG_WITH_MODULES([$1],[$2],,,[$3],[$4]) + +AM_CONDITIONAL([HAVE_][$1], + [test "$AS_TR_SH([with_]m4_tolower([$1]))" = "yes"]) +])dnl PKG_HAVE_WITH_MODULES + +dnl PKG_HAVE_DEFINE_WITH_MODULES(VARIABLE-PREFIX, MODULES, +dnl [DESCRIPTION], [DEFAULT]) +dnl ------------------------------------------------------ +dnl +dnl Convenience macro to run AM_CONDITIONAL and AC_DEFINE after +dnl PKG_WITH_MODULES check. HAVE_[VARIABLE-PREFIX] is exported as make +dnl and preprocessor variable. +AC_DEFUN([PKG_HAVE_DEFINE_WITH_MODULES], +[ +PKG_HAVE_WITH_MODULES([$1],[$2],[$3],[$4]) + +AS_IF([test "$AS_TR_SH([with_]m4_tolower([$1]))" = "yes"], + [AC_DEFINE([HAVE_][$1], 1, [Enable ]m4_tolower([$1])[ support])]) +])dnl PKG_HAVE_DEFINE_WITH_MODULES + +# Copyright (C) 2002-2018 Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, @@ -308,10 +376,10 @@ # generated from the m4 files accompanying Automake X.Y. # (This private macro should not be called outside this file.) AC_DEFUN([AM_AUTOMAKE_VERSION], -[am__api_version='1.15' +[am__api_version='1.16' dnl Some users find AM_AUTOMAKE_VERSION and mistake it for a way to dnl require some minimum version. Point them to the right macro. -m4_if([$1], [1.15], [], +m4_if([$1], [1.16.1], [], [AC_FATAL([Do not call $0, use AM_INIT_AUTOMAKE([$1]).])])dnl ]) @@ -327,14 +395,14 @@ # Call AM_AUTOMAKE_VERSION and AM_AUTOMAKE_VERSION so they can be traced. # This function is AC_REQUIREd by AM_INIT_AUTOMAKE. AC_DEFUN([AM_SET_CURRENT_AUTOMAKE_VERSION], -[AM_AUTOMAKE_VERSION([1.15])dnl +[AM_AUTOMAKE_VERSION([1.16.1])dnl m4_ifndef([AC_AUTOCONF_VERSION], [m4_copy([m4_PACKAGE_VERSION], [AC_AUTOCONF_VERSION])])dnl _AM_AUTOCONF_VERSION(m4_defn([AC_AUTOCONF_VERSION]))]) # AM_AUX_DIR_EXPAND -*- Autoconf -*- -# Copyright (C) 2001-2014 Free Software Foundation, Inc. +# Copyright (C) 2001-2018 Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, @@ -386,7 +454,7 @@ # AM_CONDITIONAL -*- Autoconf -*- -# Copyright (C) 1997-2014 Free Software Foundation, Inc. +# Copyright (C) 1997-2018 Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, @@ -417,7 +485,7 @@ Usually this means the macro was only invoked conditionally.]]) fi])]) -# Copyright (C) 1999-2014 Free Software Foundation, Inc. +# Copyright (C) 1999-2018 Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, @@ -608,13 +676,12 @@ # Generate code to set up dependency tracking. -*- Autoconf -*- -# Copyright (C) 1999-2014 Free Software Foundation, Inc. +# Copyright (C) 1999-2018 Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. - # _AM_OUTPUT_DEPENDENCY_COMMANDS # ------------------------------ AC_DEFUN([_AM_OUTPUT_DEPENDENCY_COMMANDS], @@ -622,49 +689,41 @@ # Older Autoconf quotes --file arguments for eval, but not when files # are listed without --file. Let's play safe and only enable the eval # if we detect the quoting. - case $CONFIG_FILES in - *\'*) eval set x "$CONFIG_FILES" ;; - *) set x $CONFIG_FILES ;; - esac + # TODO: see whether this extra hack can be removed once we start + # requiring Autoconf 2.70 or later. + AS_CASE([$CONFIG_FILES], + [*\'*], [eval set x "$CONFIG_FILES"], + [*], [set x $CONFIG_FILES]) shift - for mf + # Used to flag and report bootstrapping failures. + am_rc=0 + for am_mf do # Strip MF so we end up with the name of the file. - mf=`echo "$mf" | sed -e 's/:.*$//'` - # Check whether this is an Automake generated Makefile or not. - # We used to match only the files named 'Makefile.in', but - # some people rename them; so instead we look at the file content. - # Grep'ing the first line is not enough: some people post-process - # each Makefile.in and add a new line on top of each file to say so. - # Grep'ing the whole file is not good either: AIX grep has a line + am_mf=`AS_ECHO(["$am_mf"]) | sed -e 's/:.*$//'` + # Check whether this is an Automake generated Makefile which includes + # dependency-tracking related rules and includes. + # Grep'ing the whole file directly is not great: AIX grep has a line # limit of 2048, but all sed's we know have understand at least 4000. - if sed -n 's,^#.*generated by automake.*,X,p' "$mf" | grep X >/dev/null 2>&1; then - dirpart=`AS_DIRNAME("$mf")` - else - continue - fi - # Extract the definition of DEPDIR, am__include, and am__quote - # from the Makefile without running 'make'. - DEPDIR=`sed -n 's/^DEPDIR = //p' < "$mf"` - test -z "$DEPDIR" && continue - am__include=`sed -n 's/^am__include = //p' < "$mf"` - test -z "$am__include" && continue - am__quote=`sed -n 's/^am__quote = //p' < "$mf"` - # Find all dependency output files, they are included files with - # $(DEPDIR) in their names. We invoke sed twice because it is the - # simplest approach to changing $(DEPDIR) to its actual value in the - # expansion. - for file in `sed -n " - s/^$am__include $am__quote\(.*(DEPDIR).*\)$am__quote"'$/\1/p' <"$mf" | \ - sed -e 's/\$(DEPDIR)/'"$DEPDIR"'/g'`; do - # Make sure the directory exists. - test -f "$dirpart/$file" && continue - fdir=`AS_DIRNAME(["$file"])` - AS_MKDIR_P([$dirpart/$fdir]) - # echo "creating $dirpart/$file" - echo '# dummy' > "$dirpart/$file" - done + sed -n 's,^am--depfiles:.*,X,p' "$am_mf" | grep X >/dev/null 2>&1 \ + || continue + am_dirpart=`AS_DIRNAME(["$am_mf"])` + am_filepart=`AS_BASENAME(["$am_mf"])` + AM_RUN_LOG([cd "$am_dirpart" \ + && sed -e '/# am--include-marker/d' "$am_filepart" \ + | $MAKE -f - am--depfiles]) || am_rc=$? done + if test $am_rc -ne 0; then + AC_MSG_FAILURE([Something went wrong bootstrapping makefile fragments + for automatic dependency tracking. Try re-running configure with the + '--disable-dependency-tracking' option to at least be able to build + the package (albeit without support for automatic dependency tracking).]) + fi + AS_UNSET([am_dirpart]) + AS_UNSET([am_filepart]) + AS_UNSET([am_mf]) + AS_UNSET([am_rc]) + rm -f conftest-deps.mk } ])# _AM_OUTPUT_DEPENDENCY_COMMANDS @@ -673,18 +732,17 @@ # ----------------------------- # This macro should only be invoked once -- use via AC_REQUIRE. # -# This code is only required when automatic dependency tracking -# is enabled. FIXME. This creates each '.P' file that we will -# need in order to bootstrap the dependency handling code. +# This code is only required when automatic dependency tracking is enabled. +# This creates each '.Po' and '.Plo' makefile fragment that we'll need in +# order to bootstrap the dependency handling code. AC_DEFUN([AM_OUTPUT_DEPENDENCY_COMMANDS], [AC_CONFIG_COMMANDS([depfiles], [test x"$AMDEP_TRUE" != x"" || _AM_OUTPUT_DEPENDENCY_COMMANDS], - [AMDEP_TRUE="$AMDEP_TRUE" ac_aux_dir="$ac_aux_dir"]) -]) + [AMDEP_TRUE="$AMDEP_TRUE" MAKE="${MAKE-make}"])]) # Do all the work for Automake. -*- Autoconf -*- -# Copyright (C) 1996-2014 Free Software Foundation, Inc. +# Copyright (C) 1996-2018 Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, @@ -771,8 +829,8 @@ AC_REQUIRE([AC_PROG_MKDIR_P])dnl # For better backward compatibility. To be removed once Automake 1.9.x # dies out for good. For more background, see: -# -# +# +# AC_SUBST([mkdir_p], ['$(MKDIR_P)']) # We need awk for the "check" target (and possibly the TAP driver). The # system "awk" is bad on some platforms. @@ -839,7 +897,7 @@ Aborting the configuration process, to ensure you take notice of the issue. You can download and install GNU coreutils to get an 'rm' implementation -that behaves properly: . +that behaves properly: . If you want to complete the configuration process using your problematic 'rm' anyway, export the environment variable ACCEPT_INFERIOR_RM_PROGRAM @@ -881,7 +939,7 @@ done echo "timestamp for $_am_arg" >`AS_DIRNAME(["$_am_arg"])`/stamp-h[]$_am_stamp_count]) -# Copyright (C) 2001-2014 Free Software Foundation, Inc. +# Copyright (C) 2001-2018 Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, @@ -902,7 +960,7 @@ fi AC_SUBST([install_sh])]) -# Copyright (C) 2003-2014 Free Software Foundation, Inc. +# Copyright (C) 2003-2018 Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, @@ -924,7 +982,7 @@ # Add --enable-maintainer-mode option to configure. -*- Autoconf -*- # From Jim Meyering -# Copyright (C) 1996-2014 Free Software Foundation, Inc. +# Copyright (C) 1996-2018 Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, @@ -959,7 +1017,7 @@ # Check to see how 'make' treats includes. -*- Autoconf -*- -# Copyright (C) 2001-2014 Free Software Foundation, Inc. +# Copyright (C) 2001-2018 Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, @@ -967,49 +1025,42 @@ # AM_MAKE_INCLUDE() # ----------------- -# Check to see how make treats includes. +# Check whether make has an 'include' directive that can support all +# the idioms we need for our automatic dependency tracking code. AC_DEFUN([AM_MAKE_INCLUDE], -[am_make=${MAKE-make} -cat > confinc << 'END' +[AC_MSG_CHECKING([whether ${MAKE-make} supports the include directive]) +cat > confinc.mk << 'END' am__doit: - @echo this is the am__doit target + @echo this is the am__doit target >confinc.out .PHONY: am__doit END -# If we don't find an include directive, just comment out the code. -AC_MSG_CHECKING([for style of include used by $am_make]) am__include="#" am__quote= -_am_result=none -# First try GNU make style include. -echo "include confinc" > confmf -# Ignore all kinds of additional output from 'make'. -case `$am_make -s -f confmf 2> /dev/null` in #( -*the\ am__doit\ target*) - am__include=include - am__quote= - _am_result=GNU - ;; -esac -# Now try BSD make style include. -if test "$am__include" = "#"; then - echo '.include "confinc"' > confmf - case `$am_make -s -f confmf 2> /dev/null` in #( - *the\ am__doit\ target*) - am__include=.include - am__quote="\"" - _am_result=BSD - ;; - esac -fi -AC_SUBST([am__include]) -AC_SUBST([am__quote]) -AC_MSG_RESULT([$_am_result]) -rm -f confinc confmf -]) +# BSD make does it like this. +echo '.include "confinc.mk" # ignored' > confmf.BSD +# Other make implementations (GNU, Solaris 10, AIX) do it like this. +echo 'include confinc.mk # ignored' > confmf.GNU +_am_result=no +for s in GNU BSD; do + AM_RUN_LOG([${MAKE-make} -f confmf.$s && cat confinc.out]) + AS_CASE([$?:`cat confinc.out 2>/dev/null`], + ['0:this is the am__doit target'], + [AS_CASE([$s], + [BSD], [am__include='.include' am__quote='"'], + [am__include='include' am__quote=''])]) + if test "$am__include" != "#"; then + _am_result="yes ($s style)" + break + fi +done +rm -f confinc.* confmf.* +AC_MSG_RESULT([${_am_result}]) +AC_SUBST([am__include])]) +AC_SUBST([am__quote])]) # Fake the existence of programs that GNU maintainers use. -*- Autoconf -*- -# Copyright (C) 1997-2014 Free Software Foundation, Inc. +# Copyright (C) 1997-2018 Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, @@ -1048,7 +1099,7 @@ # Helper functions for option handling. -*- Autoconf -*- -# Copyright (C) 2001-2014 Free Software Foundation, Inc. +# Copyright (C) 2001-2018 Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, @@ -1077,7 +1128,7 @@ AC_DEFUN([_AM_IF_OPTION], [m4_ifset(_AM_MANGLE_OPTION([$1]), [$2], [$3])]) -# Copyright (C) 1999-2014 Free Software Foundation, Inc. +# Copyright (C) 1999-2018 Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, @@ -1124,7 +1175,245 @@ # For backward compatibility. AC_DEFUN_ONCE([AM_PROG_CC_C_O], [AC_REQUIRE([AC_PROG_CC])]) -# Copyright (C) 2001-2014 Free Software Foundation, Inc. +# Copyright (C) 1999-2018 Free Software Foundation, Inc. +# +# This file is free software; the Free Software Foundation +# gives unlimited permission to copy and/or distribute it, +# with or without modifications, as long as this notice is preserved. + + +# AM_PATH_PYTHON([MINIMUM-VERSION], [ACTION-IF-FOUND], [ACTION-IF-NOT-FOUND]) +# --------------------------------------------------------------------------- +# Adds support for distributing Python modules and packages. To +# install modules, copy them to $(pythondir), using the python_PYTHON +# automake variable. To install a package with the same name as the +# automake package, install to $(pkgpythondir), or use the +# pkgpython_PYTHON automake variable. +# +# The variables $(pyexecdir) and $(pkgpyexecdir) are provided as +# locations to install python extension modules (shared libraries). +# Another macro is required to find the appropriate flags to compile +# extension modules. +# +# If your package is configured with a different prefix to python, +# users will have to add the install directory to the PYTHONPATH +# environment variable, or create a .pth file (see the python +# documentation for details). +# +# If the MINIMUM-VERSION argument is passed, AM_PATH_PYTHON will +# cause an error if the version of python installed on the system +# doesn't meet the requirement. MINIMUM-VERSION should consist of +# numbers and dots only. +AC_DEFUN([AM_PATH_PYTHON], + [ + dnl Find a Python interpreter. Python versions prior to 2.0 are not + dnl supported. (2.0 was released on October 16, 2000). + m4_define_default([_AM_PYTHON_INTERPRETER_LIST], +[python python2 python3 dnl + python3.9 python3.8 python3.7 python3.6 python3.5 python3.4 python3.3 dnl + python3.2 python3.1 python3.0 dnl + python2.7 python2.6 python2.5 python2.4 python2.3 python2.2 python2.1 dnl + python2.0]) + + AC_ARG_VAR([PYTHON], [the Python interpreter]) + + m4_if([$1],[],[ + dnl No version check is needed. + # Find any Python interpreter. + if test -z "$PYTHON"; then + AC_PATH_PROGS([PYTHON], _AM_PYTHON_INTERPRETER_LIST, :) + fi + am_display_PYTHON=python + ], [ + dnl A version check is needed. + if test -n "$PYTHON"; then + # If the user set $PYTHON, use it and don't search something else. + AC_MSG_CHECKING([whether $PYTHON version is >= $1]) + AM_PYTHON_CHECK_VERSION([$PYTHON], [$1], + [AC_MSG_RESULT([yes])], + [AC_MSG_RESULT([no]) + AC_MSG_ERROR([Python interpreter is too old])]) + am_display_PYTHON=$PYTHON + else + # Otherwise, try each interpreter until we find one that satisfies + # VERSION. + AC_CACHE_CHECK([for a Python interpreter with version >= $1], + [am_cv_pathless_PYTHON],[ + for am_cv_pathless_PYTHON in _AM_PYTHON_INTERPRETER_LIST none; do + test "$am_cv_pathless_PYTHON" = none && break + AM_PYTHON_CHECK_VERSION([$am_cv_pathless_PYTHON], [$1], [break]) + done]) + # Set $PYTHON to the absolute path of $am_cv_pathless_PYTHON. + if test "$am_cv_pathless_PYTHON" = none; then + PYTHON=: + else + AC_PATH_PROG([PYTHON], [$am_cv_pathless_PYTHON]) + fi + am_display_PYTHON=$am_cv_pathless_PYTHON + fi + ]) + + if test "$PYTHON" = :; then + dnl Run any user-specified action, or abort. + m4_default([$3], [AC_MSG_ERROR([no suitable Python interpreter found])]) + else + + dnl Query Python for its version number. Getting [:3] seems to be + dnl the best way to do this; it's what "site.py" does in the standard + dnl library. + + AC_CACHE_CHECK([for $am_display_PYTHON version], [am_cv_python_version], + [am_cv_python_version=`$PYTHON -c "import sys; sys.stdout.write(sys.version[[:3]])"`]) + AC_SUBST([PYTHON_VERSION], [$am_cv_python_version]) + + dnl Use the values of $prefix and $exec_prefix for the corresponding + dnl values of PYTHON_PREFIX and PYTHON_EXEC_PREFIX. These are made + dnl distinct variables so they can be overridden if need be. However, + dnl general consensus is that you shouldn't need this ability. + + AC_SUBST([PYTHON_PREFIX], ['${prefix}']) + AC_SUBST([PYTHON_EXEC_PREFIX], ['${exec_prefix}']) + + dnl At times (like when building shared libraries) you may want + dnl to know which OS platform Python thinks this is. + + AC_CACHE_CHECK([for $am_display_PYTHON platform], [am_cv_python_platform], + [am_cv_python_platform=`$PYTHON -c "import sys; sys.stdout.write(sys.platform)"`]) + AC_SUBST([PYTHON_PLATFORM], [$am_cv_python_platform]) + + # Just factor out some code duplication. + am_python_setup_sysconfig="\ +import sys +# Prefer sysconfig over distutils.sysconfig, for better compatibility +# with python 3.x. See automake bug#10227. +try: + import sysconfig +except ImportError: + can_use_sysconfig = 0 +else: + can_use_sysconfig = 1 +# Can't use sysconfig in CPython 2.7, since it's broken in virtualenvs: +# +try: + from platform import python_implementation + if python_implementation() == 'CPython' and sys.version[[:3]] == '2.7': + can_use_sysconfig = 0 +except ImportError: + pass" + + dnl Set up 4 directories: + + dnl pythondir -- where to install python scripts. This is the + dnl site-packages directory, not the python standard library + dnl directory like in previous automake betas. This behavior + dnl is more consistent with lispdir.m4 for example. + dnl Query distutils for this directory. + AC_CACHE_CHECK([for $am_display_PYTHON script directory], + [am_cv_python_pythondir], + [if test "x$prefix" = xNONE + then + am_py_prefix=$ac_default_prefix + else + am_py_prefix=$prefix + fi + am_cv_python_pythondir=`$PYTHON -c " +$am_python_setup_sysconfig +if can_use_sysconfig: + sitedir = sysconfig.get_path('purelib', vars={'base':'$am_py_prefix'}) +else: + from distutils import sysconfig + sitedir = sysconfig.get_python_lib(0, 0, prefix='$am_py_prefix') +sys.stdout.write(sitedir)"` + case $am_cv_python_pythondir in + $am_py_prefix*) + am__strip_prefix=`echo "$am_py_prefix" | sed 's|.|.|g'` + am_cv_python_pythondir=`echo "$am_cv_python_pythondir" | sed "s,^$am__strip_prefix,$PYTHON_PREFIX,"` + ;; + *) + case $am_py_prefix in + /usr|/System*) ;; + *) + am_cv_python_pythondir=$PYTHON_PREFIX/lib/python$PYTHON_VERSION/site-packages + ;; + esac + ;; + esac + ]) + AC_SUBST([pythondir], [$am_cv_python_pythondir]) + + dnl pkgpythondir -- $PACKAGE directory under pythondir. Was + dnl PYTHON_SITE_PACKAGE in previous betas, but this naming is + dnl more consistent with the rest of automake. + + AC_SUBST([pkgpythondir], [\${pythondir}/$PACKAGE]) + + dnl pyexecdir -- directory for installing python extension modules + dnl (shared libraries) + dnl Query distutils for this directory. + AC_CACHE_CHECK([for $am_display_PYTHON extension module directory], + [am_cv_python_pyexecdir], + [if test "x$exec_prefix" = xNONE + then + am_py_exec_prefix=$am_py_prefix + else + am_py_exec_prefix=$exec_prefix + fi + am_cv_python_pyexecdir=`$PYTHON -c " +$am_python_setup_sysconfig +if can_use_sysconfig: + sitedir = sysconfig.get_path('platlib', vars={'platbase':'$am_py_prefix'}) +else: + from distutils import sysconfig + sitedir = sysconfig.get_python_lib(1, 0, prefix='$am_py_prefix') +sys.stdout.write(sitedir)"` + case $am_cv_python_pyexecdir in + $am_py_exec_prefix*) + am__strip_prefix=`echo "$am_py_exec_prefix" | sed 's|.|.|g'` + am_cv_python_pyexecdir=`echo "$am_cv_python_pyexecdir" | sed "s,^$am__strip_prefix,$PYTHON_EXEC_PREFIX,"` + ;; + *) + case $am_py_exec_prefix in + /usr|/System*) ;; + *) + am_cv_python_pyexecdir=$PYTHON_EXEC_PREFIX/lib/python$PYTHON_VERSION/site-packages + ;; + esac + ;; + esac + ]) + AC_SUBST([pyexecdir], [$am_cv_python_pyexecdir]) + + dnl pkgpyexecdir -- $(pyexecdir)/$(PACKAGE) + + AC_SUBST([pkgpyexecdir], [\${pyexecdir}/$PACKAGE]) + + dnl Run any user-specified action. + $2 + fi + +]) + + +# AM_PYTHON_CHECK_VERSION(PROG, VERSION, [ACTION-IF-TRUE], [ACTION-IF-FALSE]) +# --------------------------------------------------------------------------- +# Run ACTION-IF-TRUE if the Python interpreter PROG has version >= VERSION. +# Run ACTION-IF-FALSE otherwise. +# This test uses sys.hexversion instead of the string equivalent (first +# word of sys.version), in order to cope with versions such as 2.2c1. +# This supports Python 2.0 or higher. (2.0 was released on October 16, 2000). +AC_DEFUN([AM_PYTHON_CHECK_VERSION], + [prog="import sys +# split strings by '.' and convert to numeric. Append some zeros +# because we need at least 4 digits for the hex conversion. +# map returns an iterator in Python 3.0 and a list in 2.x +minver = list(map(int, '$2'.split('.'))) + [[0, 0, 0]] +minverhex = 0 +# xrange is not present in Python 3.0 and range returns an iterator +for i in list(range(0, 4)): minverhex = (minverhex << 8) + minver[[i]] +sys.exit(sys.hexversion < minverhex)" + AS_IF([AM_RUN_LOG([$1 -c "$prog"])], [$3], [$4])]) + +# Copyright (C) 2001-2018 Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, @@ -1143,7 +1432,7 @@ # Check to make sure that the build environment is sane. -*- Autoconf -*- -# Copyright (C) 1996-2014 Free Software Foundation, Inc. +# Copyright (C) 1996-2018 Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, @@ -1224,7 +1513,7 @@ rm -f conftest.file ]) -# Copyright (C) 2009-2014 Free Software Foundation, Inc. +# Copyright (C) 2009-2018 Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, @@ -1284,7 +1573,7 @@ _AM_SUBST_NOTMAKE([AM_BACKSLASH])dnl ]) -# Copyright (C) 2001-2014 Free Software Foundation, Inc. +# Copyright (C) 2001-2018 Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, @@ -1312,7 +1601,7 @@ INSTALL_STRIP_PROGRAM="\$(install_sh) -c -s" AC_SUBST([INSTALL_STRIP_PROGRAM])]) -# Copyright (C) 2006-2014 Free Software Foundation, Inc. +# Copyright (C) 2006-2018 Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, @@ -1331,7 +1620,7 @@ # Check how to create a tarball. -*- Autoconf -*- -# Copyright (C) 2004-2014 Free Software Foundation, Inc. +# Copyright (C) 2004-2018 Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, diff -Nru libqmi-1.18.0/AUTHORS libqmi-1.22.0/AUTHORS --- libqmi-1.18.0/AUTHORS 2017-03-22 12:19:49.000000000 +0100 +++ libqmi-1.22.0/AUTHORS 2018-03-20 21:33:05.000000000 +0100 @@ -3,27 +3,31 @@ Dan Williams Other contributors: - Bjørn Mork Ben Chan + Bjørn Mork Elly Jones - Reinhard Speyerer Shawn J. Goff - Albert Diserholt Aliaksandr Barouski Christophe Ronco - Thomas Haller + Carlo Lobrano + Reinhard Speyerer Roshan Pius + Albert Diserholt André Valentin Arman Uguray - Carlo Lobrano - Lubomir Rintel - Marius B. Kotsbak + Thomas Haller Colin Walters + Daniele Palmas Džiugas Baltrūnas + Eric Caruso Evan Nemerson Kasper Holtze + Lubomir Rintel + Marius B. Kotsbak Mike Frysinger + Mikhail Efremov Stuart Cardall Volker Sobek + Wolfgang Tolkien Yanko Kaneti Thomas Tuttle diff -Nru libqmi-1.18.0/build-aux/Makefile.in libqmi-1.22.0/build-aux/Makefile.in --- libqmi-1.18.0/build-aux/Makefile.in 2017-03-22 12:20:25.000000000 +0100 +++ libqmi-1.22.0/build-aux/Makefile.in 2019-01-08 15:17:16.000000000 +0100 @@ -1,7 +1,7 @@ -# Makefile.in generated by automake 1.15 from Makefile.am. +# Makefile.in generated by automake 1.16.1 from Makefile.am. # @configure_input@ -# Copyright (C) 1994-2014 Free Software Foundation, Inc. +# Copyright (C) 1994-2018 Free Software Foundation, Inc. # This Makefile.in is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, @@ -135,7 +135,7 @@ $(RECURSIVE_CLEAN_TARGETS) \ $(am__extra_recursive_targets) AM_RECURSIVE_TARGETS = $(am__recursive_targets:-recursive=) TAGS CTAGS \ - distdir + distdir distdir-am am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP) # Read a list of newline-separated strings from the standard input, # and print each of them once, without duplicates. Input order is @@ -259,6 +259,11 @@ PKG_CONFIG = @PKG_CONFIG@ PKG_CONFIG_LIBDIR = @PKG_CONFIG_LIBDIR@ PKG_CONFIG_PATH = @PKG_CONFIG_PATH@ +PYTHON = @PYTHON@ +PYTHON_EXEC_PREFIX = @PYTHON_EXEC_PREFIX@ +PYTHON_PLATFORM = @PYTHON_PLATFORM@ +PYTHON_PREFIX = @PYTHON_PREFIX@ +PYTHON_VERSION = @PYTHON_VERSION@ QMI_GLIB_LT_AGE = @QMI_GLIB_LT_AGE@ QMI_GLIB_LT_CURRENT = @QMI_GLIB_LT_CURRENT@ QMI_GLIB_LT_REVISION = @QMI_GLIB_LT_REVISION@ @@ -316,9 +321,13 @@ mkdir_p = @mkdir_p@ oldincludedir = @oldincludedir@ pdfdir = @pdfdir@ +pkgpyexecdir = @pkgpyexecdir@ +pkgpythondir = @pkgpythondir@ prefix = @prefix@ program_transform_name = @program_transform_name@ psdir = @psdir@ +pyexecdir = @pyexecdir@ +pythondir = @pythondir@ sbindir = @sbindir@ sharedstatedir = @sharedstatedir@ srcdir = @srcdir@ @@ -348,8 +357,8 @@ *config.status*) \ cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ *) \ - echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ - cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ + echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles)'; \ + cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles);; \ esac; $(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) @@ -466,7 +475,10 @@ distclean-tags: -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags -distdir: $(DISTFILES) +distdir: $(BUILT_SOURCES) + $(MAKE) $(AM_MAKEFLAGS) distdir-am + +distdir-am: $(DISTFILES) @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ list='$(DISTFILES)'; \ diff -Nru libqmi-1.18.0/build-aux/qmi-codegen/Client.py libqmi-1.22.0/build-aux/qmi-codegen/Client.py --- libqmi-1.18.0/build-aux/qmi-codegen/Client.py 2017-03-21 14:26:54.000000000 +0100 +++ libqmi-1.22.0/build-aux/qmi-codegen/Client.py 2019-01-08 14:09:47.000000000 +0100 @@ -1,4 +1,3 @@ -#!/usr/bin/env python # -*- Mode: python; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- # # This program is free software; you can redistribute it and/or modify it under @@ -223,7 +222,7 @@ ' * @object: A #${camelcase}.\n' ' * @output: A #${output_camelcase}.\n' ' *\n' - ' * The ::${signal_name} signal gets emitted when a \'${message_name}\' indication is received.\n' + ' * The ::${signal_name} signal gets emitted when a \'${message_name}\' indication is received.\n' ' *\n' ' * Since: ${since}\n' ' */\n' @@ -357,10 +356,7 @@ ' GAsyncResult *res,\n' ' GError **error)\n' '{\n' - ' if (g_simple_async_result_propagate_error (G_SIMPLE_ASYNC_RESULT (res), error))\n' - ' return NULL;\n' - '\n' - ' return ${output_underscore}_ref (g_simple_async_result_get_op_res_gpointer (G_SIMPLE_ASYNC_RESULT (res)));\n' + ' return g_task_propagate_pointer (G_TASK (res), error);\n' '}\n') if message.abort: @@ -395,7 +391,7 @@ '${message_underscore}_ready (\n' ' QmiDevice *device,\n' ' GAsyncResult *res,\n' - ' GSimpleAsyncResult *simple)\n' + ' GTask *task)\n' '{\n' ' GError *error = NULL;\n' ' QmiMessage *reply;\n' @@ -413,11 +409,10 @@ ' guint16 transaction_id;\n' ' QmiMessage${service_camelcase}AbortInput *input;\n' '\n' - ' self = g_async_result_get_source_object (G_ASYNC_RESULT (simple));\n' + ' self = g_task_get_source_object (task);\n' ' g_assert (self != NULL);\n' '\n' - ' transaction_id = (guint16) GPOINTER_TO_UINT (g_object_get_data (G_OBJECT (simple),\n' - ' "transaction-id"));\n' + ' transaction_id = (guint16) GPOINTER_TO_UINT (g_task_get_task_data (task));\n' ' g_assert (transaction_id != 0);\n' '\n' ' input = qmi_message_${service_lowercase}_abort_input_new ();\n' @@ -439,27 +434,24 @@ ' NULL);\n' ' qmi_message_${service_lowercase}_abort_input_unref (input);\n' ' qmi_message_unref (abort);\n' - ' g_object_unref (self);\n' ' }\n' '\n') template += ( - ' g_simple_async_result_take_error (simple, error);\n' - ' g_simple_async_result_complete (simple);\n' - ' g_object_unref (simple);\n' + ' g_task_return_error (task, error);\n' + ' g_object_unref (task);\n' ' return;\n' ' }\n' '\n' ' /* Parse reply */\n' ' output = __${message_fullname_underscore}_response_parse (reply, &error);\n' ' if (!output)\n' - ' g_simple_async_result_take_error (simple, error);\n' + ' g_task_return_error (task, error);\n' ' else\n' - ' g_simple_async_result_set_op_res_gpointer (simple,\n' - ' output,\n' - ' (GDestroyNotify)${output_underscore}_unref);\n' - ' g_simple_async_result_complete (simple);\n' - ' g_object_unref (simple);\n' + ' g_task_return_pointer (task,\n' + ' output,\n' + ' (GDestroyNotify)${output_underscore}_unref);\n' + ' g_object_unref (task);\n' ' qmi_message_unref (reply);\n' '}\n' '\n' @@ -472,7 +464,7 @@ ' GAsyncReadyCallback callback,\n' ' gpointer user_data)\n' '{\n' - ' GSimpleAsyncResult *result;\n' + ' GTask *task;\n' ' QmiMessage *request;\n' ' GError *error = NULL;\n' ' guint16 transaction_id;\n') @@ -483,10 +475,12 @@ template += ( '\n' - ' result = g_simple_async_result_new (G_OBJECT (self),\n' - ' callback,\n' - ' user_data,\n' - ' ${underscore}_${message_underscore});\n' + ' task = g_task_new (self, cancellable, callback, user_data);\n' + ' if (!qmi_client_is_valid (QMI_CLIENT (self))) {\n' + ' g_task_return_new_error (task, QMI_CORE_ERROR, QMI_CORE_ERROR_WRONG_STATE, "client invalid");\n' + ' g_object_unref (task);\n' + ' return;\n' + ' }\n' '\n' ' transaction_id = qmi_client_get_next_transaction_id (QMI_CLIENT (self));\n' '\n' @@ -497,18 +491,15 @@ ' &error);\n' ' if (!request) {\n' ' g_prefix_error (&error, "Couldn\'t create request message: ");\n' - ' g_simple_async_result_take_error (result, error);\n' - ' g_simple_async_result_complete_in_idle (result);\n' - ' g_object_unref (result);\n' + ' g_task_return_error (task, error);\n' + ' g_object_unref (task);\n' ' return;\n' ' }\n') if message.abort: template += ( '\n' - ' g_object_set_data (G_OBJECT (result),\n' - ' "transaction-id",\n' - ' GUINT_TO_POINTER (transaction_id));\n') + ' g_task_set_task_data (task, GUINT_TO_POINTER (transaction_id), NULL);\n') if message.vendor is not None: template += ( @@ -532,7 +523,7 @@ ' timeout,\n' ' cancellable,\n' ' (GAsyncReadyCallback)${message_underscore}_ready,\n' - ' result);\n' + ' task);\n' ' qmi_message_unref (request);\n') if message.vendor is not None: diff -Nru libqmi-1.18.0/build-aux/qmi-codegen/Container.py libqmi-1.22.0/build-aux/qmi-codegen/Container.py --- libqmi-1.18.0/build-aux/qmi-codegen/Container.py 2017-03-21 14:26:54.000000000 +0100 +++ libqmi-1.22.0/build-aux/qmi-codegen/Container.py 2019-01-08 14:09:47.000000000 +0100 @@ -1,4 +1,3 @@ -#!/usr/bin/env python # -*- Mode: python; tab-width: 4; indent-tabs-mode: nil -*- # # This program is free software; you can redistribute it and/or modify it under diff -Nru libqmi-1.18.0/build-aux/qmi-codegen/Field.py libqmi-1.22.0/build-aux/qmi-codegen/Field.py --- libqmi-1.18.0/build-aux/qmi-codegen/Field.py 2017-03-21 14:26:54.000000000 +0100 +++ libqmi-1.22.0/build-aux/qmi-codegen/Field.py 2019-01-08 14:09:47.000000000 +0100 @@ -1,4 +1,3 @@ -#!/usr/bin/env python # -*- Mode: python; tab-width: 4; indent-tabs-mode: nil -*- # # This program is free software; you can redistribute it and/or modify it under @@ -41,8 +40,8 @@ self.name = dictionary['name'] # The specific TLV ID self.id = dictionary['id'] - # Whether the field is to be considered mandatory in the message - self.mandatory = True if dictionary['mandatory'] == 'yes' else False + # Overridden mandatory field, the default is calculated from id + self._mandatory = dictionary.get('mandatory') # The type, which must always be "TLV" self.type = dictionary['type'] # The container type, which must be either "Input" or "Output" @@ -87,6 +86,13 @@ raise RuntimeError('Common type \'%s\' not found' % prerequisite_dictionary['name']) + @property + def mandatory(self): + if self._mandatory is None: + return int(self.id, 0) < 0x10 + return self._mandatory == 'yes' + + """ Emit new types required by this field """ diff -Nru libqmi-1.18.0/build-aux/qmi-codegen/FieldResult.py libqmi-1.22.0/build-aux/qmi-codegen/FieldResult.py --- libqmi-1.18.0/build-aux/qmi-codegen/FieldResult.py 2017-03-21 14:26:54.000000000 +0100 +++ libqmi-1.22.0/build-aux/qmi-codegen/FieldResult.py 2019-01-08 14:09:47.000000000 +0100 @@ -1,4 +1,3 @@ -#!/usr/bin/env python # -*- Mode: python; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- # # This program is free software; you can redistribute it and/or modify it under @@ -147,42 +146,23 @@ ' QmiMessage *self,\n' ' const gchar *line_prefix)\n' '{\n' - ' const guint8 *buffer;\n' - ' guint16 buffer_len;\n' + ' gsize offset = 0;\n' + ' gsize init_offset;\n' + ' guint16 error_status;\n' + ' guint16 error_code;\n' + '\n' + ' if ((init_offset = qmi_message_tlv_read_init (self, ${tlv_id}, NULL, NULL)) == 0)\n' + ' return NULL;\n' + ' if (!qmi_message_tlv_read_guint16 (self, init_offset, &offset, QMI_ENDIAN_LITTLE, &error_status, NULL))\n' + ' return NULL;\n' + ' if (!qmi_message_tlv_read_guint16 (self, init_offset, &offset, QMI_ENDIAN_LITTLE, &error_code, NULL))\n' + ' return NULL;\n' + ' g_warn_if_fail (__qmi_message_tlv_read_remaining_size (self, init_offset, offset) == 0);\n' '\n' - ' buffer = qmi_message_get_raw_tlv (self,\n' - ' ${tlv_id},\n' - ' &buffer_len);\n' - ' if (buffer) {\n' - ' GString *printable;\n' - ' guint16 error_status;\n' - ' guint16 error_code;\n' - '\n' - ' printable = g_string_new ("");\n' - ' qmi_utils_read_guint16_from_buffer (\n' - ' &buffer,\n' - ' &buffer_len,\n' - ' QMI_ENDIAN_LITTLE,\n' - ' &error_status);\n' - ' qmi_utils_read_guint16_from_buffer (\n' - ' &buffer,\n' - ' &buffer_len,\n' - ' QMI_ENDIAN_LITTLE,\n' - ' &error_code);\n' - '\n' - ' g_warn_if_fail (buffer_len == 0);\n' - '\n' - ' if (error_status == QMI_STATUS_SUCCESS)\n' - ' g_string_append (printable, "SUCCESS");\n' - ' else\n' - ' g_string_append_printf (printable,\n' - ' "FAILURE: %s",\n' - ' qmi_protocol_error_get_string ((QmiProtocolError) error_code));\n' + ' if (error_status == QMI_STATUS_SUCCESS)\n' + ' return g_strdup ("SUCCESS");\n' '\n' - ' return g_string_free (printable, FALSE);\n' - ' }\n' - '\n' - ' return NULL;\n' + ' return g_strdup_printf ("FAILURE: %s", qmi_protocol_error_get_string ((QmiProtocolError) error_code));\n' '}\n') f.write(string.Template(template).substitute(translations)) diff -Nru libqmi-1.18.0/build-aux/qmi-codegen/Makefile.in libqmi-1.22.0/build-aux/qmi-codegen/Makefile.in --- libqmi-1.18.0/build-aux/qmi-codegen/Makefile.in 2017-03-22 12:20:25.000000000 +0100 +++ libqmi-1.22.0/build-aux/qmi-codegen/Makefile.in 2019-01-08 15:17:16.000000000 +0100 @@ -1,7 +1,7 @@ -# Makefile.in generated by automake 1.15 from Makefile.am. +# Makefile.in generated by automake 1.16.1 from Makefile.am. # @configure_input@ -# Copyright (C) 1994-2014 Free Software Foundation, Inc. +# Copyright (C) 1994-2018 Free Software Foundation, Inc. # This Makefile.in is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, @@ -199,6 +199,11 @@ PKG_CONFIG = @PKG_CONFIG@ PKG_CONFIG_LIBDIR = @PKG_CONFIG_LIBDIR@ PKG_CONFIG_PATH = @PKG_CONFIG_PATH@ +PYTHON = @PYTHON@ +PYTHON_EXEC_PREFIX = @PYTHON_EXEC_PREFIX@ +PYTHON_PLATFORM = @PYTHON_PLATFORM@ +PYTHON_PREFIX = @PYTHON_PREFIX@ +PYTHON_VERSION = @PYTHON_VERSION@ QMI_GLIB_LT_AGE = @QMI_GLIB_LT_AGE@ QMI_GLIB_LT_CURRENT = @QMI_GLIB_LT_CURRENT@ QMI_GLIB_LT_REVISION = @QMI_GLIB_LT_REVISION@ @@ -256,9 +261,13 @@ mkdir_p = @mkdir_p@ oldincludedir = @oldincludedir@ pdfdir = @pdfdir@ +pkgpyexecdir = @pkgpyexecdir@ +pkgpythondir = @pkgpythondir@ prefix = @prefix@ program_transform_name = @program_transform_name@ psdir = @psdir@ +pyexecdir = @pyexecdir@ +pythondir = @pythondir@ sbindir = @sbindir@ sharedstatedir = @sharedstatedir@ srcdir = @srcdir@ @@ -306,8 +315,8 @@ *config.status*) \ cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ *) \ - echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ - cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ + echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles)'; \ + cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles);; \ esac; $(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) @@ -331,7 +340,10 @@ cscope cscopelist: -distdir: $(DISTFILES) +distdir: $(BUILT_SOURCES) + $(MAKE) $(AM_MAKEFLAGS) distdir-am + +distdir-am: $(DISTFILES) @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ list='$(DISTFILES)'; \ diff -Nru libqmi-1.18.0/build-aux/qmi-codegen/MessageList.py libqmi-1.22.0/build-aux/qmi-codegen/MessageList.py --- libqmi-1.18.0/build-aux/qmi-codegen/MessageList.py 2017-03-21 14:26:54.000000000 +0100 +++ libqmi-1.22.0/build-aux/qmi-codegen/MessageList.py 2019-01-08 14:09:47.000000000 +0100 @@ -1,4 +1,3 @@ -#!/usr/bin/env python # -*- Mode: python; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- # # This program is free software; you can redistribute it and/or modify it under diff -Nru libqmi-1.18.0/build-aux/qmi-codegen/Message.py libqmi-1.22.0/build-aux/qmi-codegen/Message.py --- libqmi-1.18.0/build-aux/qmi-codegen/Message.py 2017-03-21 14:26:54.000000000 +0100 +++ libqmi-1.22.0/build-aux/qmi-codegen/Message.py 2019-01-08 14:09:47.000000000 +0100 @@ -1,4 +1,3 @@ -#!/usr/bin/env python # -*- Mode: python; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- # # This program is free software; you can redistribute it and/or modify it under @@ -121,11 +120,11 @@ ' ${message_id});\n' % input_arg_template) cfile.write(string.Template(template).substitute(translations)) - if self.input.fields is not None: + if self.input.fields: # Count how many mandatory fields we have n_mandatory = 0 for field in self.input.fields: - if field.mandatory == 'yes': + if field.mandatory: n_mandatory += 1 if n_mandatory == 0: @@ -164,7 +163,7 @@ # Emit the TLV getter field.emit_input_tlv_add(cfile, ' ') - if field.mandatory == 'yes': + if field.mandatory: template = ( ' } else {\n' ' g_set_error (error,\n' @@ -179,7 +178,7 @@ cfile.write( '\n' ' return self;\n') - if self.input.fields is not None: + if self.input.fields: cfile.write( '\n' 'error_out:\n' @@ -446,6 +445,9 @@ 'qmi_client_${service}_${name_underscore}\n' 'qmi_client_${service}_${name_underscore}_finish\n') sections['public-methods'] += string.Template(template).substitute(translations) + translations['message_type'] = 'request' + elif self.type == 'Indication': + translations['message_type'] = 'indication' translations['public_types'] = sections['public-types'] translations['public_methods'] = sections['public-methods'] @@ -455,7 +457,7 @@ template = ( '
\n' '${hyphened}\n' - '${fullname}\n' + '${fullname} ${message_type}\n' '${public_types}' '${public_methods}' '\n' diff -Nru libqmi-1.18.0/build-aux/qmi-codegen/TypeFactory.py libqmi-1.22.0/build-aux/qmi-codegen/TypeFactory.py --- libqmi-1.18.0/build-aux/qmi-codegen/TypeFactory.py 2017-03-21 14:26:54.000000000 +0100 +++ libqmi-1.22.0/build-aux/qmi-codegen/TypeFactory.py 2019-01-08 14:09:47.000000000 +0100 @@ -1,4 +1,3 @@ -#!/usr/bin/env python # -*- Mode: python; tab-width: 4; indent-tabs-mode: nil -*- # # This program is free software; you can redistribute it and/or modify it under diff -Nru libqmi-1.18.0/build-aux/qmi-codegen/utils.py libqmi-1.22.0/build-aux/qmi-codegen/utils.py --- libqmi-1.18.0/build-aux/qmi-codegen/utils.py 2017-03-21 14:26:54.000000000 +0100 +++ libqmi-1.22.0/build-aux/qmi-codegen/utils.py 2019-01-08 14:09:47.000000000 +0100 @@ -1,4 +1,3 @@ -#!/usr/bin/env python # -*- Mode: python; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- # # This program is free software; you can redistribute it and/or modify it under @@ -78,8 +77,8 @@ else: template += ( "#include \"qmi-enums-private.h\"\n") - # DMS and NAS have flags64 - if service == 'DMS' or service == 'NAS': + # DMS, NAS and LOC have flags64 + if service in ('DMS', 'NAS', 'LOC'): template += ( "#include \"qmi-flags64-${service}.h\"\n") template += ( @@ -239,10 +238,7 @@ Returns True if the given format corresponds to a basic floating point type """ def format_is_float(fmt): - if fmt == 'gfloat': - return True - else: - return False + return fmt in ('gfloat', 'gdouble') """ diff -Nru libqmi-1.18.0/build-aux/qmi-codegen/VariableArray.py libqmi-1.22.0/build-aux/qmi-codegen/VariableArray.py --- libqmi-1.18.0/build-aux/qmi-codegen/VariableArray.py 2017-03-21 14:26:54.000000000 +0100 +++ libqmi-1.22.0/build-aux/qmi-codegen/VariableArray.py 2019-01-08 14:09:47.000000000 +0100 @@ -1,4 +1,3 @@ -#!/usr/bin/env python # -*- Mode: python; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- # # This program is free software; you can redistribute it and/or modify it under diff -Nru libqmi-1.18.0/build-aux/qmi-codegen/VariableFactory.py libqmi-1.22.0/build-aux/qmi-codegen/VariableFactory.py --- libqmi-1.18.0/build-aux/qmi-codegen/VariableFactory.py 2017-03-21 14:26:54.000000000 +0100 +++ libqmi-1.22.0/build-aux/qmi-codegen/VariableFactory.py 2019-01-08 14:09:47.000000000 +0100 @@ -1,4 +1,3 @@ -#!/usr/bin/env python # -*- Mode: python; tab-width: 4; indent-tabs-mode: nil -*- # # This program is free software; you can redistribute it and/or modify it under diff -Nru libqmi-1.18.0/build-aux/qmi-codegen/VariableInteger.py libqmi-1.22.0/build-aux/qmi-codegen/VariableInteger.py --- libqmi-1.18.0/build-aux/qmi-codegen/VariableInteger.py 2017-03-21 14:26:54.000000000 +0100 +++ libqmi-1.22.0/build-aux/qmi-codegen/VariableInteger.py 2019-01-08 14:09:47.000000000 +0100 @@ -1,4 +1,3 @@ -#!/usr/bin/env python # -*- Mode: python; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- # # This program is free software; you can redistribute it and/or modify it under @@ -30,7 +29,7 @@ 'guint32', 'gint32' 'guint64', 'gint64' 'guint-sized' - 'gfloat' + 'gfloat', 'gdouble' """ class VariableInteger(Variable): @@ -66,7 +65,7 @@ 'private_format' : self.private_format, 'len' : self.guint_sized_size } - if self.private_format != 'guint8' and self.private_format != 'gint8' and self.private_format != 'gfloat': + if self.private_format not in ('guint8', 'gint8'): translations['endian'] = ' ' + self.endian + ',' else: translations['endian'] = '' @@ -75,6 +74,10 @@ template = ( '${lp}if (!qmi_message_tlv_read_sized_guint (message, init_offset, &offset, ${len},${endian} &(${variable_name}), ${error}))\n' '${lp} goto ${tlv_out};\n') + elif self.format == 'gfloat': + template = ( + '${lp}if (!qmi_message_tlv_read_gfloat_endian (message, init_offset, &offset,${endian} &(${variable_name}), ${error}))\n' + '${lp} goto ${tlv_out};\n') elif self.private_format == self.public_format: template = ( '${lp}if (!qmi_message_tlv_read_${private_format} (message, init_offset, &offset,${endian} &(${variable_name}), ${error}))\n' @@ -183,7 +186,7 @@ common_format = '%" G_GINT32_FORMAT "' elif self.private_format == 'gint64': common_format = '%" G_GINT64_FORMAT "' - elif self.private_format == 'gfloat': + elif self.private_format in ('gfloat', 'gdouble'): common_format = '%f' translations = { 'lp' : line_prefix, @@ -193,7 +196,7 @@ 'common_format' : common_format, 'common_cast' : common_cast } - if self.private_format != 'guint8' and self.private_format != 'gint8' and self.private_format != 'gfloat': + if self.private_format not in ('guint8', 'gint8'): translations['endian'] = ' ' + self.endian + ',' else: translations['endian'] = '' @@ -208,6 +211,10 @@ template += ( '${lp} if (!qmi_message_tlv_read_sized_guint (message, init_offset, &offset, ${len},${endian} &tmp, &error))\n' '${lp} goto out;\n') + elif self.format == 'gfloat': + template += ( + '${lp} if (!qmi_message_tlv_read_gfloat_endian (message, init_offset, &offset,${endian} &tmp, &error))\n' + '${lp} goto out;\n') else: template += ( '${lp} if (!qmi_message_tlv_read_${private_format} (message, init_offset, &offset,${endian} &tmp, &error))\n' diff -Nru libqmi-1.18.0/build-aux/qmi-codegen/Variable.py libqmi-1.22.0/build-aux/qmi-codegen/Variable.py --- libqmi-1.18.0/build-aux/qmi-codegen/Variable.py 2017-03-21 14:26:54.000000000 +0100 +++ libqmi-1.22.0/build-aux/qmi-codegen/Variable.py 2019-01-08 14:09:47.000000000 +0100 @@ -1,4 +1,3 @@ -#!/usr/bin/env python # -*- Mode: python; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- # # This program is free software; you can redistribute it and/or modify it under diff -Nru libqmi-1.18.0/build-aux/qmi-codegen/VariableSequence.py libqmi-1.22.0/build-aux/qmi-codegen/VariableSequence.py --- libqmi-1.18.0/build-aux/qmi-codegen/VariableSequence.py 2017-03-21 14:26:54.000000000 +0100 +++ libqmi-1.22.0/build-aux/qmi-codegen/VariableSequence.py 2019-01-08 14:09:47.000000000 +0100 @@ -1,4 +1,3 @@ -#!/usr/bin/env python # -*- Mode: python; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- # # This program is free software; you can redistribute it and/or modify it under diff -Nru libqmi-1.18.0/build-aux/qmi-codegen/VariableString.py libqmi-1.22.0/build-aux/qmi-codegen/VariableString.py --- libqmi-1.18.0/build-aux/qmi-codegen/VariableString.py 2017-03-21 14:26:54.000000000 +0100 +++ libqmi-1.22.0/build-aux/qmi-codegen/VariableString.py 2019-01-08 14:09:47.000000000 +0100 @@ -1,4 +1,3 @@ -#!/usr/bin/env python # -*- Mode: python; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- # # This program is free software; you can redistribute it and/or modify it under diff -Nru libqmi-1.18.0/build-aux/qmi-codegen/VariableStruct.py libqmi-1.22.0/build-aux/qmi-codegen/VariableStruct.py --- libqmi-1.18.0/build-aux/qmi-codegen/VariableStruct.py 2017-03-21 14:26:54.000000000 +0100 +++ libqmi-1.22.0/build-aux/qmi-codegen/VariableStruct.py 2019-01-08 14:09:47.000000000 +0100 @@ -1,4 +1,3 @@ -#!/usr/bin/env python # -*- Mode: python; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- # # This program is free software; you can redistribute it and/or modify it under diff -Nru libqmi-1.18.0/build-aux/templates/Makefile.in libqmi-1.22.0/build-aux/templates/Makefile.in --- libqmi-1.18.0/build-aux/templates/Makefile.in 2017-03-22 12:20:25.000000000 +0100 +++ libqmi-1.22.0/build-aux/templates/Makefile.in 2019-01-08 15:17:16.000000000 +0100 @@ -1,7 +1,7 @@ -# Makefile.in generated by automake 1.15 from Makefile.am. +# Makefile.in generated by automake 1.16.1 from Makefile.am. # @configure_input@ -# Copyright (C) 1994-2014 Free Software Foundation, Inc. +# Copyright (C) 1994-2018 Free Software Foundation, Inc. # This Makefile.in is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, @@ -199,6 +199,11 @@ PKG_CONFIG = @PKG_CONFIG@ PKG_CONFIG_LIBDIR = @PKG_CONFIG_LIBDIR@ PKG_CONFIG_PATH = @PKG_CONFIG_PATH@ +PYTHON = @PYTHON@ +PYTHON_EXEC_PREFIX = @PYTHON_EXEC_PREFIX@ +PYTHON_PLATFORM = @PYTHON_PLATFORM@ +PYTHON_PREFIX = @PYTHON_PREFIX@ +PYTHON_VERSION = @PYTHON_VERSION@ QMI_GLIB_LT_AGE = @QMI_GLIB_LT_AGE@ QMI_GLIB_LT_CURRENT = @QMI_GLIB_LT_CURRENT@ QMI_GLIB_LT_REVISION = @QMI_GLIB_LT_REVISION@ @@ -256,9 +261,13 @@ mkdir_p = @mkdir_p@ oldincludedir = @oldincludedir@ pdfdir = @pdfdir@ +pkgpyexecdir = @pkgpyexecdir@ +pkgpythondir = @pkgpythondir@ prefix = @prefix@ program_transform_name = @program_transform_name@ psdir = @psdir@ +pyexecdir = @pyexecdir@ +pythondir = @pythondir@ sbindir = @sbindir@ sharedstatedir = @sharedstatedir@ srcdir = @srcdir@ @@ -296,8 +305,8 @@ *config.status*) \ cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ *) \ - echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ - cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ + echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles)'; \ + cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles);; \ esac; $(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) @@ -321,7 +330,10 @@ cscope cscopelist: -distdir: $(DISTFILES) +distdir: $(BUILT_SOURCES) + $(MAKE) $(AM_MAKEFLAGS) distdir-am + +distdir-am: $(DISTFILES) @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ list='$(DISTFILES)'; \ diff -Nru libqmi-1.18.0/compile libqmi-1.22.0/compile --- libqmi-1.18.0/compile 2017-03-22 12:20:25.000000000 +0100 +++ libqmi-1.22.0/compile 2019-01-08 15:17:16.000000000 +0100 @@ -1,9 +1,9 @@ #! /bin/sh # Wrapper for compilers which do not understand '-c -o'. -scriptversion=2012-10-14.11; # UTC +scriptversion=2018-03-07.03; # UTC -# Copyright (C) 1999-2014 Free Software Foundation, Inc. +# Copyright (C) 1999-2018 Free Software Foundation, Inc. # Written by Tom Tromey . # # This program is free software; you can redistribute it and/or modify @@ -17,7 +17,7 @@ # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License -# along with this program. If not, see . +# along with this program. If not, see . # As a special exception to the GNU General Public License, if you # distribute this file as part of a program that contains a @@ -255,7 +255,8 @@ echo "compile $scriptversion" exit $? ;; - cl | *[/\\]cl | cl.exe | *[/\\]cl.exe ) + cl | *[/\\]cl | cl.exe | *[/\\]cl.exe | \ + icl | *[/\\]icl | icl.exe | *[/\\]icl.exe ) func_cl_wrapper "$@" # Doesn't return... ;; esac @@ -339,9 +340,9 @@ # Local Variables: # mode: shell-script # sh-indentation: 2 -# eval: (add-hook 'write-file-hooks 'time-stamp) +# eval: (add-hook 'before-save-hook 'time-stamp) # time-stamp-start: "scriptversion=" # time-stamp-format: "%:y-%02m-%02d.%02H" -# time-stamp-time-zone: "UTC" +# time-stamp-time-zone: "UTC0" # time-stamp-end: "; # UTC" # End: diff -Nru libqmi-1.18.0/config.guess libqmi-1.22.0/config.guess --- libqmi-1.18.0/config.guess 2017-03-22 12:20:25.000000000 +0100 +++ libqmi-1.22.0/config.guess 2019-01-08 15:17:16.000000000 +0100 @@ -1,8 +1,8 @@ #! /bin/sh # Attempt to guess a canonical system name. -# Copyright 1992-2014 Free Software Foundation, Inc. +# Copyright 1992-2018 Free Software Foundation, Inc. -timestamp='2014-11-04' +timestamp='2018-03-08' # This file is free software; you can redistribute it and/or modify it # under the terms of the GNU General Public License as published by @@ -15,7 +15,7 @@ # General Public License for more details. # # You should have received a copy of the GNU General Public License -# along with this program; if not, see . +# along with this program; if not, see . # # As a special exception to the GNU General Public License, if you # distribute this file as part of a program that contains a @@ -27,7 +27,7 @@ # Originally written by Per Bothner; maintained since 2000 by Ben Elliston. # # You can get the latest version of this script from: -# http://git.savannah.gnu.org/gitweb/?p=config.git;a=blob_plain;f=config.guess;hb=HEAD +# https://git.savannah.gnu.org/gitweb/?p=config.git;a=blob_plain;f=config.guess # # Please send patches to . @@ -39,7 +39,7 @@ Output the configuration name of the system \`$me' is run on. -Operation modes: +Options: -h, --help print this help, then exit -t, --time-stamp print date of last modification, then exit -v, --version print version number, then exit @@ -50,7 +50,7 @@ GNU config.guess ($timestamp) Originally written by Per Bothner. -Copyright 1992-2014 Free Software Foundation, Inc. +Copyright 1992-2018 Free Software Foundation, Inc. This is free software; see the source for copying conditions. There is NO warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE." @@ -107,9 +107,9 @@ dummy=$tmp/dummy ; tmpfiles="$dummy.c $dummy.o $dummy.rel $dummy" ; case $CC_FOR_BUILD,$HOST_CC,$CC in - ,,) echo "int x;" > $dummy.c ; + ,,) echo "int x;" > "$dummy.c" ; for c in cc gcc c89 c99 ; do - if ($c -c -o $dummy.o $dummy.c) >/dev/null 2>&1 ; then + if ($c -c -o "$dummy.o" "$dummy.c") >/dev/null 2>&1 ; then CC_FOR_BUILD="$c"; break ; fi ; done ; @@ -132,14 +132,14 @@ UNAME_SYSTEM=`(uname -s) 2>/dev/null` || UNAME_SYSTEM=unknown UNAME_VERSION=`(uname -v) 2>/dev/null` || UNAME_VERSION=unknown -case "${UNAME_SYSTEM}" in +case "$UNAME_SYSTEM" in Linux|GNU|GNU/*) # If the system lacks a compiler, then just pick glibc. # We could probably try harder. LIBC=gnu - eval $set_cc_for_build - cat <<-EOF > $dummy.c + eval "$set_cc_for_build" + cat <<-EOF > "$dummy.c" #include #if defined(__UCLIBC__) LIBC=uclibc @@ -149,13 +149,20 @@ LIBC=gnu #endif EOF - eval `$CC_FOR_BUILD -E $dummy.c 2>/dev/null | grep '^LIBC' | sed 's, ,,g'` + eval "`$CC_FOR_BUILD -E "$dummy.c" 2>/dev/null | grep '^LIBC' | sed 's, ,,g'`" + + # If ldd exists, use it to detect musl libc. + if command -v ldd >/dev/null && \ + ldd --version 2>&1 | grep -q ^musl + then + LIBC=musl + fi ;; esac # Note: order is significant - the case branches are not exclusive. -case "${UNAME_MACHINE}:${UNAME_SYSTEM}:${UNAME_RELEASE}:${UNAME_VERSION}" in +case "$UNAME_MACHINE:$UNAME_SYSTEM:$UNAME_RELEASE:$UNAME_VERSION" in *:NetBSD:*:*) # NetBSD (nbsd) targets should (where applicable) match one or # more of the tuples: *-*-netbsdelf*, *-*-netbsdaout*, @@ -168,21 +175,31 @@ # Note: NetBSD doesn't particularly care about the vendor # portion of the name. We always set it to "unknown". sysctl="sysctl -n hw.machine_arch" - UNAME_MACHINE_ARCH=`(/sbin/$sysctl 2>/dev/null || \ - /usr/sbin/$sysctl 2>/dev/null || echo unknown)` - case "${UNAME_MACHINE_ARCH}" in + UNAME_MACHINE_ARCH=`(uname -p 2>/dev/null || \ + "/sbin/$sysctl" 2>/dev/null || \ + "/usr/sbin/$sysctl" 2>/dev/null || \ + echo unknown)` + case "$UNAME_MACHINE_ARCH" in armeb) machine=armeb-unknown ;; arm*) machine=arm-unknown ;; sh3el) machine=shl-unknown ;; sh3eb) machine=sh-unknown ;; sh5el) machine=sh5le-unknown ;; - *) machine=${UNAME_MACHINE_ARCH}-unknown ;; + earmv*) + arch=`echo "$UNAME_MACHINE_ARCH" | sed -e 's,^e\(armv[0-9]\).*$,\1,'` + endian=`echo "$UNAME_MACHINE_ARCH" | sed -ne 's,^.*\(eb\)$,\1,p'` + machine="${arch}${endian}"-unknown + ;; + *) machine="$UNAME_MACHINE_ARCH"-unknown ;; esac # The Operating System including object format, if it has switched - # to ELF recently, or will in the future. - case "${UNAME_MACHINE_ARCH}" in + # to ELF recently (or will in the future) and ABI. + case "$UNAME_MACHINE_ARCH" in + earm*) + os=netbsdelf + ;; arm*|i386|m68k|ns32k|sh3*|sparc|vax) - eval $set_cc_for_build + eval "$set_cc_for_build" if echo __ELF__ | $CC_FOR_BUILD -E - 2>/dev/null \ | grep -q __ELF__ then @@ -197,44 +214,67 @@ os=netbsd ;; esac + # Determine ABI tags. + case "$UNAME_MACHINE_ARCH" in + earm*) + expr='s/^earmv[0-9]/-eabi/;s/eb$//' + abi=`echo "$UNAME_MACHINE_ARCH" | sed -e "$expr"` + ;; + esac # The OS release # Debian GNU/NetBSD machines have a different userland, and # thus, need a distinct triplet. However, they do not need # kernel version information, so it can be replaced with a # suitable tag, in the style of linux-gnu. - case "${UNAME_VERSION}" in + case "$UNAME_VERSION" in Debian*) release='-gnu' ;; *) - release=`echo ${UNAME_RELEASE}|sed -e 's/[-_].*/\./'` + release=`echo "$UNAME_RELEASE" | sed -e 's/[-_].*//' | cut -d. -f1,2` ;; esac # Since CPU_TYPE-MANUFACTURER-KERNEL-OPERATING_SYSTEM: # contains redundant information, the shorter form: # CPU_TYPE-MANUFACTURER-OPERATING_SYSTEM is used. - echo "${machine}-${os}${release}" + echo "$machine-${os}${release}${abi}" exit ;; *:Bitrig:*:*) UNAME_MACHINE_ARCH=`arch | sed 's/Bitrig.//'` - echo ${UNAME_MACHINE_ARCH}-unknown-bitrig${UNAME_RELEASE} + echo "$UNAME_MACHINE_ARCH"-unknown-bitrig"$UNAME_RELEASE" exit ;; *:OpenBSD:*:*) UNAME_MACHINE_ARCH=`arch | sed 's/OpenBSD.//'` - echo ${UNAME_MACHINE_ARCH}-unknown-openbsd${UNAME_RELEASE} + echo "$UNAME_MACHINE_ARCH"-unknown-openbsd"$UNAME_RELEASE" + exit ;; + *:LibertyBSD:*:*) + UNAME_MACHINE_ARCH=`arch | sed 's/^.*BSD\.//'` + echo "$UNAME_MACHINE_ARCH"-unknown-libertybsd"$UNAME_RELEASE" + exit ;; + *:MidnightBSD:*:*) + echo "$UNAME_MACHINE"-unknown-midnightbsd"$UNAME_RELEASE" exit ;; *:ekkoBSD:*:*) - echo ${UNAME_MACHINE}-unknown-ekkobsd${UNAME_RELEASE} + echo "$UNAME_MACHINE"-unknown-ekkobsd"$UNAME_RELEASE" exit ;; *:SolidBSD:*:*) - echo ${UNAME_MACHINE}-unknown-solidbsd${UNAME_RELEASE} + echo "$UNAME_MACHINE"-unknown-solidbsd"$UNAME_RELEASE" exit ;; macppc:MirBSD:*:*) - echo powerpc-unknown-mirbsd${UNAME_RELEASE} + echo powerpc-unknown-mirbsd"$UNAME_RELEASE" exit ;; *:MirBSD:*:*) - echo ${UNAME_MACHINE}-unknown-mirbsd${UNAME_RELEASE} + echo "$UNAME_MACHINE"-unknown-mirbsd"$UNAME_RELEASE" exit ;; + *:Sortix:*:*) + echo "$UNAME_MACHINE"-unknown-sortix + exit ;; + *:Redox:*:*) + echo "$UNAME_MACHINE"-unknown-redox + exit ;; + mips:OSF1:*.*) + echo mips-dec-osf1 + exit ;; alpha:OSF1:*:*) case $UNAME_RELEASE in *4.0) @@ -251,63 +291,54 @@ ALPHA_CPU_TYPE=`/usr/sbin/psrinfo -v | sed -n -e 's/^ The alpha \(.*\) processor.*$/\1/p' | head -n 1` case "$ALPHA_CPU_TYPE" in "EV4 (21064)") - UNAME_MACHINE="alpha" ;; + UNAME_MACHINE=alpha ;; "EV4.5 (21064)") - UNAME_MACHINE="alpha" ;; + UNAME_MACHINE=alpha ;; "LCA4 (21066/21068)") - UNAME_MACHINE="alpha" ;; + UNAME_MACHINE=alpha ;; "EV5 (21164)") - UNAME_MACHINE="alphaev5" ;; + UNAME_MACHINE=alphaev5 ;; "EV5.6 (21164A)") - UNAME_MACHINE="alphaev56" ;; + UNAME_MACHINE=alphaev56 ;; "EV5.6 (21164PC)") - UNAME_MACHINE="alphapca56" ;; + UNAME_MACHINE=alphapca56 ;; "EV5.7 (21164PC)") - UNAME_MACHINE="alphapca57" ;; + UNAME_MACHINE=alphapca57 ;; "EV6 (21264)") - UNAME_MACHINE="alphaev6" ;; + UNAME_MACHINE=alphaev6 ;; "EV6.7 (21264A)") - UNAME_MACHINE="alphaev67" ;; + UNAME_MACHINE=alphaev67 ;; "EV6.8CB (21264C)") - UNAME_MACHINE="alphaev68" ;; + UNAME_MACHINE=alphaev68 ;; "EV6.8AL (21264B)") - UNAME_MACHINE="alphaev68" ;; + UNAME_MACHINE=alphaev68 ;; "EV6.8CX (21264D)") - UNAME_MACHINE="alphaev68" ;; + UNAME_MACHINE=alphaev68 ;; "EV6.9A (21264/EV69A)") - UNAME_MACHINE="alphaev69" ;; + UNAME_MACHINE=alphaev69 ;; "EV7 (21364)") - UNAME_MACHINE="alphaev7" ;; + UNAME_MACHINE=alphaev7 ;; "EV7.9 (21364A)") - UNAME_MACHINE="alphaev79" ;; + UNAME_MACHINE=alphaev79 ;; esac # A Pn.n version is a patched version. # A Vn.n version is a released version. # A Tn.n version is a released field test version. # A Xn.n version is an unreleased experimental baselevel. # 1.2 uses "1.2" for uname -r. - echo ${UNAME_MACHINE}-dec-osf`echo ${UNAME_RELEASE} | sed -e 's/^[PVTX]//' | tr 'ABCDEFGHIJKLMNOPQRSTUVWXYZ' 'abcdefghijklmnopqrstuvwxyz'` + echo "$UNAME_MACHINE"-dec-osf"`echo "$UNAME_RELEASE" | sed -e 's/^[PVTX]//' | tr ABCDEFGHIJKLMNOPQRSTUVWXYZ abcdefghijklmnopqrstuvwxyz`" # Reset EXIT trap before exiting to avoid spurious non-zero exit code. exitcode=$? trap '' 0 exit $exitcode ;; - Alpha\ *:Windows_NT*:*) - # How do we know it's Interix rather than the generic POSIX subsystem? - # Should we change UNAME_MACHINE based on the output of uname instead - # of the specific Alpha model? - echo alpha-pc-interix - exit ;; - 21064:Windows_NT:50:3) - echo alpha-dec-winnt3.5 - exit ;; Amiga*:UNIX_System_V:4.0:*) echo m68k-unknown-sysv4 exit ;; *:[Aa]miga[Oo][Ss]:*:*) - echo ${UNAME_MACHINE}-unknown-amigaos + echo "$UNAME_MACHINE"-unknown-amigaos exit ;; *:[Mm]orph[Oo][Ss]:*:*) - echo ${UNAME_MACHINE}-unknown-morphos + echo "$UNAME_MACHINE"-unknown-morphos exit ;; *:OS/390:*:*) echo i370-ibm-openedition @@ -319,7 +350,7 @@ echo powerpc-ibm-os400 exit ;; arm:RISC*:1.[012]*:*|arm:riscix:1.[012]*:*) - echo arm-acorn-riscix${UNAME_RELEASE} + echo arm-acorn-riscix"$UNAME_RELEASE" exit ;; arm*:riscos:*:*|arm*:RISCOS:*:*) echo arm-unknown-riscos @@ -346,38 +377,38 @@ sparc) echo sparc-icl-nx7; exit ;; esac ;; s390x:SunOS:*:*) - echo ${UNAME_MACHINE}-ibm-solaris2`echo ${UNAME_RELEASE}|sed -e 's/[^.]*//'` + echo "$UNAME_MACHINE"-ibm-solaris2"`echo "$UNAME_RELEASE" | sed -e 's/[^.]*//'`" exit ;; sun4H:SunOS:5.*:*) - echo sparc-hal-solaris2`echo ${UNAME_RELEASE}|sed -e 's/[^.]*//'` + echo sparc-hal-solaris2"`echo "$UNAME_RELEASE"|sed -e 's/[^.]*//'`" exit ;; sun4*:SunOS:5.*:* | tadpole*:SunOS:5.*:*) - echo sparc-sun-solaris2`echo ${UNAME_RELEASE}|sed -e 's/[^.]*//'` + echo sparc-sun-solaris2"`echo "$UNAME_RELEASE" | sed -e 's/[^.]*//'`" exit ;; i86pc:AuroraUX:5.*:* | i86xen:AuroraUX:5.*:*) - echo i386-pc-auroraux${UNAME_RELEASE} + echo i386-pc-auroraux"$UNAME_RELEASE" exit ;; i86pc:SunOS:5.*:* | i86xen:SunOS:5.*:*) - eval $set_cc_for_build - SUN_ARCH="i386" + eval "$set_cc_for_build" + SUN_ARCH=i386 # If there is a compiler, see if it is configured for 64-bit objects. # Note that the Sun cc does not turn __LP64__ into 1 like gcc does. # This test works for both compilers. - if [ "$CC_FOR_BUILD" != 'no_compiler_found' ]; then + if [ "$CC_FOR_BUILD" != no_compiler_found ]; then if (echo '#ifdef __amd64'; echo IS_64BIT_ARCH; echo '#endif') | \ - (CCOPTS= $CC_FOR_BUILD -E - 2>/dev/null) | \ + (CCOPTS="" $CC_FOR_BUILD -E - 2>/dev/null) | \ grep IS_64BIT_ARCH >/dev/null then - SUN_ARCH="x86_64" + SUN_ARCH=x86_64 fi fi - echo ${SUN_ARCH}-pc-solaris2`echo ${UNAME_RELEASE}|sed -e 's/[^.]*//'` + echo "$SUN_ARCH"-pc-solaris2"`echo "$UNAME_RELEASE"|sed -e 's/[^.]*//'`" exit ;; sun4*:SunOS:6*:*) # According to config.sub, this is the proper way to canonicalize # SunOS6. Hard to guess exactly what SunOS6 will be like, but # it's likely to be more like Solaris than SunOS4. - echo sparc-sun-solaris3`echo ${UNAME_RELEASE}|sed -e 's/[^.]*//'` + echo sparc-sun-solaris3"`echo "$UNAME_RELEASE"|sed -e 's/[^.]*//'`" exit ;; sun4*:SunOS:*:*) case "`/usr/bin/arch -k`" in @@ -386,25 +417,25 @@ ;; esac # Japanese Language versions have a version number like `4.1.3-JL'. - echo sparc-sun-sunos`echo ${UNAME_RELEASE}|sed -e 's/-/_/'` + echo sparc-sun-sunos"`echo "$UNAME_RELEASE"|sed -e 's/-/_/'`" exit ;; sun3*:SunOS:*:*) - echo m68k-sun-sunos${UNAME_RELEASE} + echo m68k-sun-sunos"$UNAME_RELEASE" exit ;; sun*:*:4.2BSD:*) UNAME_RELEASE=`(sed 1q /etc/motd | awk '{print substr($5,1,3)}') 2>/dev/null` - test "x${UNAME_RELEASE}" = "x" && UNAME_RELEASE=3 + test "x$UNAME_RELEASE" = x && UNAME_RELEASE=3 case "`/bin/arch`" in sun3) - echo m68k-sun-sunos${UNAME_RELEASE} + echo m68k-sun-sunos"$UNAME_RELEASE" ;; sun4) - echo sparc-sun-sunos${UNAME_RELEASE} + echo sparc-sun-sunos"$UNAME_RELEASE" ;; esac exit ;; aushp:SunOS:*:*) - echo sparc-auspex-sunos${UNAME_RELEASE} + echo sparc-auspex-sunos"$UNAME_RELEASE" exit ;; # The situation for MiNT is a little confusing. The machine name # can be virtually everything (everything which is not @@ -415,44 +446,44 @@ # MiNT. But MiNT is downward compatible to TOS, so this should # be no problem. atarist[e]:*MiNT:*:* | atarist[e]:*mint:*:* | atarist[e]:*TOS:*:*) - echo m68k-atari-mint${UNAME_RELEASE} + echo m68k-atari-mint"$UNAME_RELEASE" exit ;; atari*:*MiNT:*:* | atari*:*mint:*:* | atarist[e]:*TOS:*:*) - echo m68k-atari-mint${UNAME_RELEASE} + echo m68k-atari-mint"$UNAME_RELEASE" exit ;; *falcon*:*MiNT:*:* | *falcon*:*mint:*:* | *falcon*:*TOS:*:*) - echo m68k-atari-mint${UNAME_RELEASE} + echo m68k-atari-mint"$UNAME_RELEASE" exit ;; milan*:*MiNT:*:* | milan*:*mint:*:* | *milan*:*TOS:*:*) - echo m68k-milan-mint${UNAME_RELEASE} + echo m68k-milan-mint"$UNAME_RELEASE" exit ;; hades*:*MiNT:*:* | hades*:*mint:*:* | *hades*:*TOS:*:*) - echo m68k-hades-mint${UNAME_RELEASE} + echo m68k-hades-mint"$UNAME_RELEASE" exit ;; *:*MiNT:*:* | *:*mint:*:* | *:*TOS:*:*) - echo m68k-unknown-mint${UNAME_RELEASE} + echo m68k-unknown-mint"$UNAME_RELEASE" exit ;; m68k:machten:*:*) - echo m68k-apple-machten${UNAME_RELEASE} + echo m68k-apple-machten"$UNAME_RELEASE" exit ;; powerpc:machten:*:*) - echo powerpc-apple-machten${UNAME_RELEASE} + echo powerpc-apple-machten"$UNAME_RELEASE" exit ;; RISC*:Mach:*:*) echo mips-dec-mach_bsd4.3 exit ;; RISC*:ULTRIX:*:*) - echo mips-dec-ultrix${UNAME_RELEASE} + echo mips-dec-ultrix"$UNAME_RELEASE" exit ;; VAX*:ULTRIX*:*:*) - echo vax-dec-ultrix${UNAME_RELEASE} + echo vax-dec-ultrix"$UNAME_RELEASE" exit ;; 2020:CLIX:*:* | 2430:CLIX:*:*) - echo clipper-intergraph-clix${UNAME_RELEASE} + echo clipper-intergraph-clix"$UNAME_RELEASE" exit ;; mips:*:*:UMIPS | mips:*:*:RISCos) - eval $set_cc_for_build - sed 's/^ //' << EOF >$dummy.c + eval "$set_cc_for_build" + sed 's/^ //' << EOF > "$dummy.c" #ifdef __cplusplus #include /* for printf() prototype */ int main (int argc, char *argv[]) { @@ -461,23 +492,23 @@ #endif #if defined (host_mips) && defined (MIPSEB) #if defined (SYSTYPE_SYSV) - printf ("mips-mips-riscos%ssysv\n", argv[1]); exit (0); + printf ("mips-mips-riscos%ssysv\\n", argv[1]); exit (0); #endif #if defined (SYSTYPE_SVR4) - printf ("mips-mips-riscos%ssvr4\n", argv[1]); exit (0); + printf ("mips-mips-riscos%ssvr4\\n", argv[1]); exit (0); #endif #if defined (SYSTYPE_BSD43) || defined(SYSTYPE_BSD) - printf ("mips-mips-riscos%sbsd\n", argv[1]); exit (0); + printf ("mips-mips-riscos%sbsd\\n", argv[1]); exit (0); #endif #endif exit (-1); } EOF - $CC_FOR_BUILD -o $dummy $dummy.c && - dummyarg=`echo "${UNAME_RELEASE}" | sed -n 's/\([0-9]*\).*/\1/p'` && - SYSTEM_NAME=`$dummy $dummyarg` && + $CC_FOR_BUILD -o "$dummy" "$dummy.c" && + dummyarg=`echo "$UNAME_RELEASE" | sed -n 's/\([0-9]*\).*/\1/p'` && + SYSTEM_NAME=`"$dummy" "$dummyarg"` && { echo "$SYSTEM_NAME"; exit; } - echo mips-mips-riscos${UNAME_RELEASE} + echo mips-mips-riscos"$UNAME_RELEASE" exit ;; Motorola:PowerMAX_OS:*:*) echo powerpc-motorola-powermax @@ -503,17 +534,17 @@ AViiON:dgux:*:*) # DG/UX returns AViiON for all architectures UNAME_PROCESSOR=`/usr/bin/uname -p` - if [ $UNAME_PROCESSOR = mc88100 ] || [ $UNAME_PROCESSOR = mc88110 ] + if [ "$UNAME_PROCESSOR" = mc88100 ] || [ "$UNAME_PROCESSOR" = mc88110 ] then - if [ ${TARGET_BINARY_INTERFACE}x = m88kdguxelfx ] || \ - [ ${TARGET_BINARY_INTERFACE}x = x ] + if [ "$TARGET_BINARY_INTERFACE"x = m88kdguxelfx ] || \ + [ "$TARGET_BINARY_INTERFACE"x = x ] then - echo m88k-dg-dgux${UNAME_RELEASE} + echo m88k-dg-dgux"$UNAME_RELEASE" else - echo m88k-dg-dguxbcs${UNAME_RELEASE} + echo m88k-dg-dguxbcs"$UNAME_RELEASE" fi else - echo i586-dg-dgux${UNAME_RELEASE} + echo i586-dg-dgux"$UNAME_RELEASE" fi exit ;; M88*:DolphinOS:*:*) # DolphinOS (SVR3) @@ -530,7 +561,7 @@ echo m68k-tektronix-bsd exit ;; *:IRIX*:*:*) - echo mips-sgi-irix`echo ${UNAME_RELEASE}|sed -e 's/-/_/g'` + echo mips-sgi-irix"`echo "$UNAME_RELEASE"|sed -e 's/-/_/g'`" exit ;; ????????:AIX?:[12].1:2) # AIX 2.2.1 or AIX 2.1.1 is RT/PC AIX. echo romp-ibm-aix # uname -m gives an 8 hex-code CPU id @@ -542,14 +573,14 @@ if [ -x /usr/bin/oslevel ] ; then IBM_REV=`/usr/bin/oslevel` else - IBM_REV=${UNAME_VERSION}.${UNAME_RELEASE} + IBM_REV="$UNAME_VERSION.$UNAME_RELEASE" fi - echo ${UNAME_MACHINE}-ibm-aix${IBM_REV} + echo "$UNAME_MACHINE"-ibm-aix"$IBM_REV" exit ;; *:AIX:2:3) if grep bos325 /usr/include/stdio.h >/dev/null 2>&1; then - eval $set_cc_for_build - sed 's/^ //' << EOF >$dummy.c + eval "$set_cc_for_build" + sed 's/^ //' << EOF > "$dummy.c" #include main() @@ -560,7 +591,7 @@ exit(0); } EOF - if $CC_FOR_BUILD -o $dummy $dummy.c && SYSTEM_NAME=`$dummy` + if $CC_FOR_BUILD -o "$dummy" "$dummy.c" && SYSTEM_NAME=`"$dummy"` then echo "$SYSTEM_NAME" else @@ -574,7 +605,7 @@ exit ;; *:AIX:*:[4567]) IBM_CPU_ID=`/usr/sbin/lsdev -C -c processor -S available | sed 1q | awk '{ print $1 }'` - if /usr/sbin/lsattr -El ${IBM_CPU_ID} | grep ' POWER' >/dev/null 2>&1; then + if /usr/sbin/lsattr -El "$IBM_CPU_ID" | grep ' POWER' >/dev/null 2>&1; then IBM_ARCH=rs6000 else IBM_ARCH=powerpc @@ -583,18 +614,18 @@ IBM_REV=`/usr/bin/lslpp -Lqc bos.rte.libc | awk -F: '{ print $3 }' | sed s/[0-9]*$/0/` else - IBM_REV=${UNAME_VERSION}.${UNAME_RELEASE} + IBM_REV="$UNAME_VERSION.$UNAME_RELEASE" fi - echo ${IBM_ARCH}-ibm-aix${IBM_REV} + echo "$IBM_ARCH"-ibm-aix"$IBM_REV" exit ;; *:AIX:*:*) echo rs6000-ibm-aix exit ;; - ibmrt:4.4BSD:*|romp-ibm:BSD:*) + ibmrt:4.4BSD:*|romp-ibm:4.4BSD:*) echo romp-ibm-bsd4.4 exit ;; ibmrt:*BSD:*|romp-ibm:BSD:*) # covers RT/PC BSD and - echo romp-ibm-bsd${UNAME_RELEASE} # 4.3 with uname added to + echo romp-ibm-bsd"$UNAME_RELEASE" # 4.3 with uname added to exit ;; # report: romp-ibm BSD 4.3 *:BOSX:*:*) echo rs6000-bull-bosx @@ -609,28 +640,28 @@ echo m68k-hp-bsd4.4 exit ;; 9000/[34678]??:HP-UX:*:*) - HPUX_REV=`echo ${UNAME_RELEASE}|sed -e 's/[^.]*.[0B]*//'` - case "${UNAME_MACHINE}" in - 9000/31? ) HP_ARCH=m68000 ;; - 9000/[34]?? ) HP_ARCH=m68k ;; + HPUX_REV=`echo "$UNAME_RELEASE"|sed -e 's/[^.]*.[0B]*//'` + case "$UNAME_MACHINE" in + 9000/31?) HP_ARCH=m68000 ;; + 9000/[34]??) HP_ARCH=m68k ;; 9000/[678][0-9][0-9]) if [ -x /usr/bin/getconf ]; then sc_cpu_version=`/usr/bin/getconf SC_CPU_VERSION 2>/dev/null` sc_kernel_bits=`/usr/bin/getconf SC_KERNEL_BITS 2>/dev/null` - case "${sc_cpu_version}" in - 523) HP_ARCH="hppa1.0" ;; # CPU_PA_RISC1_0 - 528) HP_ARCH="hppa1.1" ;; # CPU_PA_RISC1_1 + case "$sc_cpu_version" in + 523) HP_ARCH=hppa1.0 ;; # CPU_PA_RISC1_0 + 528) HP_ARCH=hppa1.1 ;; # CPU_PA_RISC1_1 532) # CPU_PA_RISC2_0 - case "${sc_kernel_bits}" in - 32) HP_ARCH="hppa2.0n" ;; - 64) HP_ARCH="hppa2.0w" ;; - '') HP_ARCH="hppa2.0" ;; # HP-UX 10.20 + case "$sc_kernel_bits" in + 32) HP_ARCH=hppa2.0n ;; + 64) HP_ARCH=hppa2.0w ;; + '') HP_ARCH=hppa2.0 ;; # HP-UX 10.20 esac ;; esac fi - if [ "${HP_ARCH}" = "" ]; then - eval $set_cc_for_build - sed 's/^ //' << EOF >$dummy.c + if [ "$HP_ARCH" = "" ]; then + eval "$set_cc_for_build" + sed 's/^ //' << EOF > "$dummy.c" #define _HPUX_SOURCE #include @@ -663,13 +694,13 @@ exit (0); } EOF - (CCOPTS= $CC_FOR_BUILD -o $dummy $dummy.c 2>/dev/null) && HP_ARCH=`$dummy` + (CCOPTS="" $CC_FOR_BUILD -o "$dummy" "$dummy.c" 2>/dev/null) && HP_ARCH=`"$dummy"` test -z "$HP_ARCH" && HP_ARCH=hppa fi ;; esac - if [ ${HP_ARCH} = "hppa2.0w" ] + if [ "$HP_ARCH" = hppa2.0w ] then - eval $set_cc_for_build + eval "$set_cc_for_build" # hppa2.0w-hp-hpux* has a 64-bit kernel and a compiler generating # 32-bit code. hppa64-hp-hpux* has the same kernel and a compiler @@ -680,23 +711,23 @@ # $ CC_FOR_BUILD="cc +DA2.0w" ./config.guess # => hppa64-hp-hpux11.23 - if echo __LP64__ | (CCOPTS= $CC_FOR_BUILD -E - 2>/dev/null) | + if echo __LP64__ | (CCOPTS="" $CC_FOR_BUILD -E - 2>/dev/null) | grep -q __LP64__ then - HP_ARCH="hppa2.0w" + HP_ARCH=hppa2.0w else - HP_ARCH="hppa64" + HP_ARCH=hppa64 fi fi - echo ${HP_ARCH}-hp-hpux${HPUX_REV} + echo "$HP_ARCH"-hp-hpux"$HPUX_REV" exit ;; ia64:HP-UX:*:*) - HPUX_REV=`echo ${UNAME_RELEASE}|sed -e 's/[^.]*.[0B]*//'` - echo ia64-hp-hpux${HPUX_REV} + HPUX_REV=`echo "$UNAME_RELEASE"|sed -e 's/[^.]*.[0B]*//'` + echo ia64-hp-hpux"$HPUX_REV" exit ;; 3050*:HI-UX:*:*) - eval $set_cc_for_build - sed 's/^ //' << EOF >$dummy.c + eval "$set_cc_for_build" + sed 's/^ //' << EOF > "$dummy.c" #include int main () @@ -721,11 +752,11 @@ exit (0); } EOF - $CC_FOR_BUILD -o $dummy $dummy.c && SYSTEM_NAME=`$dummy` && + $CC_FOR_BUILD -o "$dummy" "$dummy.c" && SYSTEM_NAME=`"$dummy"` && { echo "$SYSTEM_NAME"; exit; } echo unknown-hitachi-hiuxwe2 exit ;; - 9000/7??:4.3bsd:*:* | 9000/8?[79]:4.3bsd:*:* ) + 9000/7??:4.3bsd:*:* | 9000/8?[79]:4.3bsd:*:*) echo hppa1.1-hp-bsd exit ;; 9000/8??:4.3bsd:*:*) @@ -734,7 +765,7 @@ *9??*:MPE/iX:*:* | *3000*:MPE/iX:*:*) echo hppa1.0-hp-mpeix exit ;; - hp7??:OSF1:*:* | hp8?[79]:OSF1:*:* ) + hp7??:OSF1:*:* | hp8?[79]:OSF1:*:*) echo hppa1.1-hp-osf exit ;; hp8??:OSF1:*:*) @@ -742,9 +773,9 @@ exit ;; i*86:OSF1:*:*) if [ -x /usr/sbin/sysversion ] ; then - echo ${UNAME_MACHINE}-unknown-osf1mk + echo "$UNAME_MACHINE"-unknown-osf1mk else - echo ${UNAME_MACHINE}-unknown-osf1 + echo "$UNAME_MACHINE"-unknown-osf1 fi exit ;; parisc*:Lites*:*:*) @@ -769,127 +800,109 @@ echo c4-convex-bsd exit ;; CRAY*Y-MP:*:*:*) - echo ymp-cray-unicos${UNAME_RELEASE} | sed -e 's/\.[^.]*$/.X/' + echo ymp-cray-unicos"$UNAME_RELEASE" | sed -e 's/\.[^.]*$/.X/' exit ;; CRAY*[A-Z]90:*:*:*) - echo ${UNAME_MACHINE}-cray-unicos${UNAME_RELEASE} \ + echo "$UNAME_MACHINE"-cray-unicos"$UNAME_RELEASE" \ | sed -e 's/CRAY.*\([A-Z]90\)/\1/' \ -e y/ABCDEFGHIJKLMNOPQRSTUVWXYZ/abcdefghijklmnopqrstuvwxyz/ \ -e 's/\.[^.]*$/.X/' exit ;; CRAY*TS:*:*:*) - echo t90-cray-unicos${UNAME_RELEASE} | sed -e 's/\.[^.]*$/.X/' + echo t90-cray-unicos"$UNAME_RELEASE" | sed -e 's/\.[^.]*$/.X/' exit ;; CRAY*T3E:*:*:*) - echo alphaev5-cray-unicosmk${UNAME_RELEASE} | sed -e 's/\.[^.]*$/.X/' + echo alphaev5-cray-unicosmk"$UNAME_RELEASE" | sed -e 's/\.[^.]*$/.X/' exit ;; CRAY*SV1:*:*:*) - echo sv1-cray-unicos${UNAME_RELEASE} | sed -e 's/\.[^.]*$/.X/' + echo sv1-cray-unicos"$UNAME_RELEASE" | sed -e 's/\.[^.]*$/.X/' exit ;; *:UNICOS/mp:*:*) - echo craynv-cray-unicosmp${UNAME_RELEASE} | sed -e 's/\.[^.]*$/.X/' + echo craynv-cray-unicosmp"$UNAME_RELEASE" | sed -e 's/\.[^.]*$/.X/' exit ;; F30[01]:UNIX_System_V:*:* | F700:UNIX_System_V:*:*) - FUJITSU_PROC=`uname -m | tr 'ABCDEFGHIJKLMNOPQRSTUVWXYZ' 'abcdefghijklmnopqrstuvwxyz'` - FUJITSU_SYS=`uname -p | tr 'ABCDEFGHIJKLMNOPQRSTUVWXYZ' 'abcdefghijklmnopqrstuvwxyz' | sed -e 's/\///'` - FUJITSU_REL=`echo ${UNAME_RELEASE} | sed -e 's/ /_/'` + FUJITSU_PROC=`uname -m | tr ABCDEFGHIJKLMNOPQRSTUVWXYZ abcdefghijklmnopqrstuvwxyz` + FUJITSU_SYS=`uname -p | tr ABCDEFGHIJKLMNOPQRSTUVWXYZ abcdefghijklmnopqrstuvwxyz | sed -e 's/\///'` + FUJITSU_REL=`echo "$UNAME_RELEASE" | sed -e 's/ /_/'` echo "${FUJITSU_PROC}-fujitsu-${FUJITSU_SYS}${FUJITSU_REL}" exit ;; 5000:UNIX_System_V:4.*:*) - FUJITSU_SYS=`uname -p | tr 'ABCDEFGHIJKLMNOPQRSTUVWXYZ' 'abcdefghijklmnopqrstuvwxyz' | sed -e 's/\///'` - FUJITSU_REL=`echo ${UNAME_RELEASE} | tr 'ABCDEFGHIJKLMNOPQRSTUVWXYZ' 'abcdefghijklmnopqrstuvwxyz' | sed -e 's/ /_/'` + FUJITSU_SYS=`uname -p | tr ABCDEFGHIJKLMNOPQRSTUVWXYZ abcdefghijklmnopqrstuvwxyz | sed -e 's/\///'` + FUJITSU_REL=`echo "$UNAME_RELEASE" | tr ABCDEFGHIJKLMNOPQRSTUVWXYZ abcdefghijklmnopqrstuvwxyz | sed -e 's/ /_/'` echo "sparc-fujitsu-${FUJITSU_SYS}${FUJITSU_REL}" exit ;; i*86:BSD/386:*:* | i*86:BSD/OS:*:* | *:Ascend\ Embedded/OS:*:*) - echo ${UNAME_MACHINE}-pc-bsdi${UNAME_RELEASE} + echo "$UNAME_MACHINE"-pc-bsdi"$UNAME_RELEASE" exit ;; sparc*:BSD/OS:*:*) - echo sparc-unknown-bsdi${UNAME_RELEASE} + echo sparc-unknown-bsdi"$UNAME_RELEASE" exit ;; *:BSD/OS:*:*) - echo ${UNAME_MACHINE}-unknown-bsdi${UNAME_RELEASE} + echo "$UNAME_MACHINE"-unknown-bsdi"$UNAME_RELEASE" exit ;; *:FreeBSD:*:*) UNAME_PROCESSOR=`/usr/bin/uname -p` - case ${UNAME_PROCESSOR} in + case "$UNAME_PROCESSOR" in amd64) - echo x86_64-unknown-freebsd`echo ${UNAME_RELEASE}|sed -e 's/[-(].*//'` ;; - *) - echo ${UNAME_PROCESSOR}-unknown-freebsd`echo ${UNAME_RELEASE}|sed -e 's/[-(].*//'` ;; + UNAME_PROCESSOR=x86_64 ;; + i386) + UNAME_PROCESSOR=i586 ;; esac + echo "$UNAME_PROCESSOR"-unknown-freebsd"`echo "$UNAME_RELEASE"|sed -e 's/[-(].*//'`" exit ;; i*:CYGWIN*:*) - echo ${UNAME_MACHINE}-pc-cygwin + echo "$UNAME_MACHINE"-pc-cygwin exit ;; *:MINGW64*:*) - echo ${UNAME_MACHINE}-pc-mingw64 + echo "$UNAME_MACHINE"-pc-mingw64 exit ;; *:MINGW*:*) - echo ${UNAME_MACHINE}-pc-mingw32 + echo "$UNAME_MACHINE"-pc-mingw32 exit ;; *:MSYS*:*) - echo ${UNAME_MACHINE}-pc-msys - exit ;; - i*:windows32*:*) - # uname -m includes "-pc" on this system. - echo ${UNAME_MACHINE}-mingw32 + echo "$UNAME_MACHINE"-pc-msys exit ;; i*:PW*:*) - echo ${UNAME_MACHINE}-pc-pw32 + echo "$UNAME_MACHINE"-pc-pw32 exit ;; *:Interix*:*) - case ${UNAME_MACHINE} in + case "$UNAME_MACHINE" in x86) - echo i586-pc-interix${UNAME_RELEASE} + echo i586-pc-interix"$UNAME_RELEASE" exit ;; authenticamd | genuineintel | EM64T) - echo x86_64-unknown-interix${UNAME_RELEASE} + echo x86_64-unknown-interix"$UNAME_RELEASE" exit ;; IA64) - echo ia64-unknown-interix${UNAME_RELEASE} + echo ia64-unknown-interix"$UNAME_RELEASE" exit ;; esac ;; - [345]86:Windows_95:* | [345]86:Windows_98:* | [345]86:Windows_NT:*) - echo i${UNAME_MACHINE}-pc-mks - exit ;; - 8664:Windows_NT:*) - echo x86_64-pc-mks - exit ;; - i*:Windows_NT*:* | Pentium*:Windows_NT*:*) - # How do we know it's Interix rather than the generic POSIX subsystem? - # It also conflicts with pre-2.0 versions of AT&T UWIN. Should we - # UNAME_MACHINE based on the output of uname instead of i386? - echo i586-pc-interix - exit ;; i*:UWIN*:*) - echo ${UNAME_MACHINE}-pc-uwin + echo "$UNAME_MACHINE"-pc-uwin exit ;; amd64:CYGWIN*:*:* | x86_64:CYGWIN*:*:*) echo x86_64-unknown-cygwin exit ;; - p*:CYGWIN*:*) - echo powerpcle-unknown-cygwin - exit ;; prep*:SunOS:5.*:*) - echo powerpcle-unknown-solaris2`echo ${UNAME_RELEASE}|sed -e 's/[^.]*//'` + echo powerpcle-unknown-solaris2"`echo "$UNAME_RELEASE"|sed -e 's/[^.]*//'`" exit ;; *:GNU:*:*) # the GNU system - echo `echo ${UNAME_MACHINE}|sed -e 's,[-/].*$,,'`-unknown-${LIBC}`echo ${UNAME_RELEASE}|sed -e 's,/.*$,,'` + echo "`echo "$UNAME_MACHINE"|sed -e 's,[-/].*$,,'`-unknown-$LIBC`echo "$UNAME_RELEASE"|sed -e 's,/.*$,,'`" exit ;; *:GNU/*:*:*) # other systems with GNU libc and userland - echo ${UNAME_MACHINE}-unknown-`echo ${UNAME_SYSTEM} | sed 's,^[^/]*/,,' | tr '[A-Z]' '[a-z]'``echo ${UNAME_RELEASE}|sed -e 's/[-(].*//'`-${LIBC} + echo "$UNAME_MACHINE-unknown-`echo "$UNAME_SYSTEM" | sed 's,^[^/]*/,,' | tr "[:upper:]" "[:lower:]"``echo "$UNAME_RELEASE"|sed -e 's/[-(].*//'`-$LIBC" exit ;; i*86:Minix:*:*) - echo ${UNAME_MACHINE}-pc-minix + echo "$UNAME_MACHINE"-pc-minix exit ;; aarch64:Linux:*:*) - echo ${UNAME_MACHINE}-unknown-linux-${LIBC} + echo "$UNAME_MACHINE"-unknown-linux-"$LIBC" exit ;; aarch64_be:Linux:*:*) UNAME_MACHINE=aarch64_be - echo ${UNAME_MACHINE}-unknown-linux-${LIBC} + echo "$UNAME_MACHINE"-unknown-linux-"$LIBC" exit ;; alpha:Linux:*:*) case `sed -n '/^cpu model/s/^.*: \(.*\)/\1/p' < /proc/cpuinfo` in @@ -902,58 +915,64 @@ EV68*) UNAME_MACHINE=alphaev68 ;; esac objdump --private-headers /bin/sh | grep -q ld.so.1 - if test "$?" = 0 ; then LIBC="gnulibc1" ; fi - echo ${UNAME_MACHINE}-unknown-linux-${LIBC} + if test "$?" = 0 ; then LIBC=gnulibc1 ; fi + echo "$UNAME_MACHINE"-unknown-linux-"$LIBC" exit ;; arc:Linux:*:* | arceb:Linux:*:*) - echo ${UNAME_MACHINE}-unknown-linux-${LIBC} + echo "$UNAME_MACHINE"-unknown-linux-"$LIBC" exit ;; arm*:Linux:*:*) - eval $set_cc_for_build + eval "$set_cc_for_build" if echo __ARM_EABI__ | $CC_FOR_BUILD -E - 2>/dev/null \ | grep -q __ARM_EABI__ then - echo ${UNAME_MACHINE}-unknown-linux-${LIBC} + echo "$UNAME_MACHINE"-unknown-linux-"$LIBC" else if echo __ARM_PCS_VFP | $CC_FOR_BUILD -E - 2>/dev/null \ | grep -q __ARM_PCS_VFP then - echo ${UNAME_MACHINE}-unknown-linux-${LIBC}eabi + echo "$UNAME_MACHINE"-unknown-linux-"$LIBC"eabi else - echo ${UNAME_MACHINE}-unknown-linux-${LIBC}eabihf + echo "$UNAME_MACHINE"-unknown-linux-"$LIBC"eabihf fi fi exit ;; avr32*:Linux:*:*) - echo ${UNAME_MACHINE}-unknown-linux-${LIBC} + echo "$UNAME_MACHINE"-unknown-linux-"$LIBC" exit ;; cris:Linux:*:*) - echo ${UNAME_MACHINE}-axis-linux-${LIBC} + echo "$UNAME_MACHINE"-axis-linux-"$LIBC" exit ;; crisv32:Linux:*:*) - echo ${UNAME_MACHINE}-axis-linux-${LIBC} + echo "$UNAME_MACHINE"-axis-linux-"$LIBC" + exit ;; + e2k:Linux:*:*) + echo "$UNAME_MACHINE"-unknown-linux-"$LIBC" exit ;; frv:Linux:*:*) - echo ${UNAME_MACHINE}-unknown-linux-${LIBC} + echo "$UNAME_MACHINE"-unknown-linux-"$LIBC" exit ;; hexagon:Linux:*:*) - echo ${UNAME_MACHINE}-unknown-linux-${LIBC} + echo "$UNAME_MACHINE"-unknown-linux-"$LIBC" exit ;; i*86:Linux:*:*) - echo ${UNAME_MACHINE}-pc-linux-${LIBC} + echo "$UNAME_MACHINE"-pc-linux-"$LIBC" exit ;; ia64:Linux:*:*) - echo ${UNAME_MACHINE}-unknown-linux-${LIBC} + echo "$UNAME_MACHINE"-unknown-linux-"$LIBC" + exit ;; + k1om:Linux:*:*) + echo "$UNAME_MACHINE"-unknown-linux-"$LIBC" exit ;; m32r*:Linux:*:*) - echo ${UNAME_MACHINE}-unknown-linux-${LIBC} + echo "$UNAME_MACHINE"-unknown-linux-"$LIBC" exit ;; m68*:Linux:*:*) - echo ${UNAME_MACHINE}-unknown-linux-${LIBC} + echo "$UNAME_MACHINE"-unknown-linux-"$LIBC" exit ;; mips:Linux:*:* | mips64:Linux:*:*) - eval $set_cc_for_build - sed 's/^ //' << EOF >$dummy.c + eval "$set_cc_for_build" + sed 's/^ //' << EOF > "$dummy.c" #undef CPU #undef ${UNAME_MACHINE} #undef ${UNAME_MACHINE}el @@ -967,64 +986,70 @@ #endif #endif EOF - eval `$CC_FOR_BUILD -E $dummy.c 2>/dev/null | grep '^CPU'` - test x"${CPU}" != x && { echo "${CPU}-unknown-linux-${LIBC}"; exit; } + eval "`$CC_FOR_BUILD -E "$dummy.c" 2>/dev/null | grep '^CPU'`" + test "x$CPU" != x && { echo "$CPU-unknown-linux-$LIBC"; exit; } ;; + mips64el:Linux:*:*) + echo "$UNAME_MACHINE"-unknown-linux-"$LIBC" + exit ;; openrisc*:Linux:*:*) - echo or1k-unknown-linux-${LIBC} + echo or1k-unknown-linux-"$LIBC" exit ;; or32:Linux:*:* | or1k*:Linux:*:*) - echo ${UNAME_MACHINE}-unknown-linux-${LIBC} + echo "$UNAME_MACHINE"-unknown-linux-"$LIBC" exit ;; padre:Linux:*:*) - echo sparc-unknown-linux-${LIBC} + echo sparc-unknown-linux-"$LIBC" exit ;; parisc64:Linux:*:* | hppa64:Linux:*:*) - echo hppa64-unknown-linux-${LIBC} + echo hppa64-unknown-linux-"$LIBC" exit ;; parisc:Linux:*:* | hppa:Linux:*:*) # Look for CPU level case `grep '^cpu[^a-z]*:' /proc/cpuinfo 2>/dev/null | cut -d' ' -f2` in - PA7*) echo hppa1.1-unknown-linux-${LIBC} ;; - PA8*) echo hppa2.0-unknown-linux-${LIBC} ;; - *) echo hppa-unknown-linux-${LIBC} ;; + PA7*) echo hppa1.1-unknown-linux-"$LIBC" ;; + PA8*) echo hppa2.0-unknown-linux-"$LIBC" ;; + *) echo hppa-unknown-linux-"$LIBC" ;; esac exit ;; ppc64:Linux:*:*) - echo powerpc64-unknown-linux-${LIBC} + echo powerpc64-unknown-linux-"$LIBC" exit ;; ppc:Linux:*:*) - echo powerpc-unknown-linux-${LIBC} + echo powerpc-unknown-linux-"$LIBC" exit ;; ppc64le:Linux:*:*) - echo powerpc64le-unknown-linux-${LIBC} + echo powerpc64le-unknown-linux-"$LIBC" exit ;; ppcle:Linux:*:*) - echo powerpcle-unknown-linux-${LIBC} + echo powerpcle-unknown-linux-"$LIBC" + exit ;; + riscv32:Linux:*:* | riscv64:Linux:*:*) + echo "$UNAME_MACHINE"-unknown-linux-"$LIBC" exit ;; s390:Linux:*:* | s390x:Linux:*:*) - echo ${UNAME_MACHINE}-ibm-linux-${LIBC} + echo "$UNAME_MACHINE"-ibm-linux-"$LIBC" exit ;; sh64*:Linux:*:*) - echo ${UNAME_MACHINE}-unknown-linux-${LIBC} + echo "$UNAME_MACHINE"-unknown-linux-"$LIBC" exit ;; sh*:Linux:*:*) - echo ${UNAME_MACHINE}-unknown-linux-${LIBC} + echo "$UNAME_MACHINE"-unknown-linux-"$LIBC" exit ;; sparc:Linux:*:* | sparc64:Linux:*:*) - echo ${UNAME_MACHINE}-unknown-linux-${LIBC} + echo "$UNAME_MACHINE"-unknown-linux-"$LIBC" exit ;; tile*:Linux:*:*) - echo ${UNAME_MACHINE}-unknown-linux-${LIBC} + echo "$UNAME_MACHINE"-unknown-linux-"$LIBC" exit ;; vax:Linux:*:*) - echo ${UNAME_MACHINE}-dec-linux-${LIBC} + echo "$UNAME_MACHINE"-dec-linux-"$LIBC" exit ;; x86_64:Linux:*:*) - echo ${UNAME_MACHINE}-unknown-linux-${LIBC} + echo "$UNAME_MACHINE"-pc-linux-"$LIBC" exit ;; xtensa*:Linux:*:*) - echo ${UNAME_MACHINE}-unknown-linux-${LIBC} + echo "$UNAME_MACHINE"-unknown-linux-"$LIBC" exit ;; i*86:DYNIX/ptx:4*:*) # ptx 4.0 does uname -s correctly, with DYNIX/ptx in there. @@ -1038,34 +1063,34 @@ # I am not positive that other SVR4 systems won't match this, # I just have to hope. -- rms. # Use sysv4.2uw... so that sysv4* matches it. - echo ${UNAME_MACHINE}-pc-sysv4.2uw${UNAME_VERSION} + echo "$UNAME_MACHINE"-pc-sysv4.2uw"$UNAME_VERSION" exit ;; i*86:OS/2:*:*) # If we were able to find `uname', then EMX Unix compatibility # is probably installed. - echo ${UNAME_MACHINE}-pc-os2-emx + echo "$UNAME_MACHINE"-pc-os2-emx exit ;; i*86:XTS-300:*:STOP) - echo ${UNAME_MACHINE}-unknown-stop + echo "$UNAME_MACHINE"-unknown-stop exit ;; i*86:atheos:*:*) - echo ${UNAME_MACHINE}-unknown-atheos + echo "$UNAME_MACHINE"-unknown-atheos exit ;; i*86:syllable:*:*) - echo ${UNAME_MACHINE}-pc-syllable + echo "$UNAME_MACHINE"-pc-syllable exit ;; i*86:LynxOS:2.*:* | i*86:LynxOS:3.[01]*:* | i*86:LynxOS:4.[02]*:*) - echo i386-unknown-lynxos${UNAME_RELEASE} + echo i386-unknown-lynxos"$UNAME_RELEASE" exit ;; i*86:*DOS:*:*) - echo ${UNAME_MACHINE}-pc-msdosdjgpp + echo "$UNAME_MACHINE"-pc-msdosdjgpp exit ;; - i*86:*:4.*:* | i*86:SYSTEM_V:4.*:*) - UNAME_REL=`echo ${UNAME_RELEASE} | sed 's/\/MP$//'` + i*86:*:4.*:*) + UNAME_REL=`echo "$UNAME_RELEASE" | sed 's/\/MP$//'` if grep Novell /usr/include/link.h >/dev/null 2>/dev/null; then - echo ${UNAME_MACHINE}-univel-sysv${UNAME_REL} + echo "$UNAME_MACHINE"-univel-sysv"$UNAME_REL" else - echo ${UNAME_MACHINE}-pc-sysv${UNAME_REL} + echo "$UNAME_MACHINE"-pc-sysv"$UNAME_REL" fi exit ;; i*86:*:5:[678]*) @@ -1075,12 +1100,12 @@ *Pentium) UNAME_MACHINE=i586 ;; *Pent*|*Celeron) UNAME_MACHINE=i686 ;; esac - echo ${UNAME_MACHINE}-unknown-sysv${UNAME_RELEASE}${UNAME_SYSTEM}${UNAME_VERSION} + echo "$UNAME_MACHINE-unknown-sysv${UNAME_RELEASE}${UNAME_SYSTEM}{$UNAME_VERSION}" exit ;; i*86:*:3.2:*) if test -f /usr/options/cb.name; then UNAME_REL=`sed -n 's/.*Version //p' /dev/null >/dev/null ; then UNAME_REL=`(/bin/uname -X|grep Release|sed -e 's/.*= //')` (/bin/uname -X|grep i80486 >/dev/null) && UNAME_MACHINE=i486 @@ -1090,9 +1115,9 @@ && UNAME_MACHINE=i686 (/bin/uname -X|grep '^Machine.*Pentium Pro' >/dev/null) \ && UNAME_MACHINE=i686 - echo ${UNAME_MACHINE}-pc-sco$UNAME_REL + echo "$UNAME_MACHINE"-pc-sco"$UNAME_REL" else - echo ${UNAME_MACHINE}-pc-sysv32 + echo "$UNAME_MACHINE"-pc-sysv32 fi exit ;; pc:*:*:*) @@ -1100,7 +1125,7 @@ # uname -m prints for DJGPP always 'pc', but it prints nothing about # the processor, so we play safe by assuming i586. # Note: whatever this is, it MUST be the same as what config.sub - # prints for the "djgpp" host, or else GDB configury will decide that + # prints for the "djgpp" host, or else GDB configure will decide that # this is a cross-build. echo i586-pc-msdosdjgpp exit ;; @@ -1112,9 +1137,9 @@ exit ;; i860:*:4.*:*) # i860-SVR4 if grep Stardent /usr/include/sys/uadmin.h >/dev/null 2>&1 ; then - echo i860-stardent-sysv${UNAME_RELEASE} # Stardent Vistra i860-SVR4 + echo i860-stardent-sysv"$UNAME_RELEASE" # Stardent Vistra i860-SVR4 else # Add other i860-SVR4 vendors below as they are discovered. - echo i860-unknown-sysv${UNAME_RELEASE} # Unknown i860-SVR4 + echo i860-unknown-sysv"$UNAME_RELEASE" # Unknown i860-SVR4 fi exit ;; mini*:CTIX:SYS*5:*) @@ -1134,9 +1159,9 @@ test -r /etc/.relid \ && OS_REL=.`sed -n 's/[^ ]* [^ ]* \([0-9][0-9]\).*/\1/p' < /etc/.relid` /bin/uname -p 2>/dev/null | grep 86 >/dev/null \ - && { echo i486-ncr-sysv4.3${OS_REL}; exit; } + && { echo i486-ncr-sysv4.3"$OS_REL"; exit; } /bin/uname -p 2>/dev/null | /bin/grep entium >/dev/null \ - && { echo i586-ncr-sysv4.3${OS_REL}; exit; } ;; + && { echo i586-ncr-sysv4.3"$OS_REL"; exit; } ;; 3[34]??:*:4.0:* | 3[34]??,*:*:4.0:*) /bin/uname -p 2>/dev/null | grep 86 >/dev/null \ && { echo i486-ncr-sysv4; exit; } ;; @@ -1145,28 +1170,28 @@ test -r /etc/.relid \ && OS_REL=.`sed -n 's/[^ ]* [^ ]* \([0-9][0-9]\).*/\1/p' < /etc/.relid` /bin/uname -p 2>/dev/null | grep 86 >/dev/null \ - && { echo i486-ncr-sysv4.3${OS_REL}; exit; } + && { echo i486-ncr-sysv4.3"$OS_REL"; exit; } /bin/uname -p 2>/dev/null | /bin/grep entium >/dev/null \ - && { echo i586-ncr-sysv4.3${OS_REL}; exit; } + && { echo i586-ncr-sysv4.3"$OS_REL"; exit; } /bin/uname -p 2>/dev/null | /bin/grep pteron >/dev/null \ - && { echo i586-ncr-sysv4.3${OS_REL}; exit; } ;; + && { echo i586-ncr-sysv4.3"$OS_REL"; exit; } ;; m68*:LynxOS:2.*:* | m68*:LynxOS:3.0*:*) - echo m68k-unknown-lynxos${UNAME_RELEASE} + echo m68k-unknown-lynxos"$UNAME_RELEASE" exit ;; mc68030:UNIX_System_V:4.*:*) echo m68k-atari-sysv4 exit ;; TSUNAMI:LynxOS:2.*:*) - echo sparc-unknown-lynxos${UNAME_RELEASE} + echo sparc-unknown-lynxos"$UNAME_RELEASE" exit ;; rs6000:LynxOS:2.*:*) - echo rs6000-unknown-lynxos${UNAME_RELEASE} + echo rs6000-unknown-lynxos"$UNAME_RELEASE" exit ;; PowerPC:LynxOS:2.*:* | PowerPC:LynxOS:3.[01]*:* | PowerPC:LynxOS:4.[02]*:*) - echo powerpc-unknown-lynxos${UNAME_RELEASE} + echo powerpc-unknown-lynxos"$UNAME_RELEASE" exit ;; SM[BE]S:UNIX_SV:*:*) - echo mips-dde-sysv${UNAME_RELEASE} + echo mips-dde-sysv"$UNAME_RELEASE" exit ;; RM*:ReliantUNIX-*:*:*) echo mips-sni-sysv4 @@ -1177,7 +1202,7 @@ *:SINIX-*:*:*) if uname -p 2>/dev/null >/dev/null ; then UNAME_MACHINE=`(uname -p) 2>/dev/null` - echo ${UNAME_MACHINE}-sni-sysv4 + echo "$UNAME_MACHINE"-sni-sysv4 else echo ns32k-sni-sysv fi @@ -1197,23 +1222,23 @@ exit ;; i*86:VOS:*:*) # From Paul.Green@stratus.com. - echo ${UNAME_MACHINE}-stratus-vos + echo "$UNAME_MACHINE"-stratus-vos exit ;; *:VOS:*:*) # From Paul.Green@stratus.com. echo hppa1.1-stratus-vos exit ;; mc68*:A/UX:*:*) - echo m68k-apple-aux${UNAME_RELEASE} + echo m68k-apple-aux"$UNAME_RELEASE" exit ;; news*:NEWS-OS:6*:*) echo mips-sony-newsos6 exit ;; R[34]000:*System_V*:*:* | R4000:UNIX_SYSV:*:* | R*000:UNIX_SV:*:*) if [ -d /usr/nec ]; then - echo mips-nec-sysv${UNAME_RELEASE} + echo mips-nec-sysv"$UNAME_RELEASE" else - echo mips-unknown-sysv${UNAME_RELEASE} + echo mips-unknown-sysv"$UNAME_RELEASE" fi exit ;; BeBox:BeOS:*:*) # BeOS running on hardware made by Be, PPC only. @@ -1232,46 +1257,56 @@ echo x86_64-unknown-haiku exit ;; SX-4:SUPER-UX:*:*) - echo sx4-nec-superux${UNAME_RELEASE} + echo sx4-nec-superux"$UNAME_RELEASE" exit ;; SX-5:SUPER-UX:*:*) - echo sx5-nec-superux${UNAME_RELEASE} + echo sx5-nec-superux"$UNAME_RELEASE" exit ;; SX-6:SUPER-UX:*:*) - echo sx6-nec-superux${UNAME_RELEASE} + echo sx6-nec-superux"$UNAME_RELEASE" exit ;; SX-7:SUPER-UX:*:*) - echo sx7-nec-superux${UNAME_RELEASE} + echo sx7-nec-superux"$UNAME_RELEASE" exit ;; SX-8:SUPER-UX:*:*) - echo sx8-nec-superux${UNAME_RELEASE} + echo sx8-nec-superux"$UNAME_RELEASE" exit ;; SX-8R:SUPER-UX:*:*) - echo sx8r-nec-superux${UNAME_RELEASE} + echo sx8r-nec-superux"$UNAME_RELEASE" + exit ;; + SX-ACE:SUPER-UX:*:*) + echo sxace-nec-superux"$UNAME_RELEASE" exit ;; Power*:Rhapsody:*:*) - echo powerpc-apple-rhapsody${UNAME_RELEASE} + echo powerpc-apple-rhapsody"$UNAME_RELEASE" exit ;; *:Rhapsody:*:*) - echo ${UNAME_MACHINE}-apple-rhapsody${UNAME_RELEASE} + echo "$UNAME_MACHINE"-apple-rhapsody"$UNAME_RELEASE" exit ;; *:Darwin:*:*) UNAME_PROCESSOR=`uname -p` || UNAME_PROCESSOR=unknown - eval $set_cc_for_build + eval "$set_cc_for_build" if test "$UNAME_PROCESSOR" = unknown ; then UNAME_PROCESSOR=powerpc fi - if test `echo "$UNAME_RELEASE" | sed -e 's/\..*//'` -le 10 ; then - if [ "$CC_FOR_BUILD" != 'no_compiler_found' ]; then + if test "`echo "$UNAME_RELEASE" | sed -e 's/\..*//'`" -le 10 ; then + if [ "$CC_FOR_BUILD" != no_compiler_found ]; then if (echo '#ifdef __LP64__'; echo IS_64BIT_ARCH; echo '#endif') | \ - (CCOPTS= $CC_FOR_BUILD -E - 2>/dev/null) | \ - grep IS_64BIT_ARCH >/dev/null + (CCOPTS="" $CC_FOR_BUILD -E - 2>/dev/null) | \ + grep IS_64BIT_ARCH >/dev/null then case $UNAME_PROCESSOR in i386) UNAME_PROCESSOR=x86_64 ;; powerpc) UNAME_PROCESSOR=powerpc64 ;; esac fi + # On 10.4-10.6 one might compile for PowerPC via gcc -arch ppc + if (echo '#ifdef __POWERPC__'; echo IS_PPC; echo '#endif') | \ + (CCOPTS="" $CC_FOR_BUILD -E - 2>/dev/null) | \ + grep IS_PPC >/dev/null + then + UNAME_PROCESSOR=powerpc + fi fi elif test "$UNAME_PROCESSOR" = i386 ; then # Avoid executing cc on OS X 10.9, as it ships with a stub @@ -1282,27 +1317,33 @@ # that Apple uses in portable devices. UNAME_PROCESSOR=x86_64 fi - echo ${UNAME_PROCESSOR}-apple-darwin${UNAME_RELEASE} + echo "$UNAME_PROCESSOR"-apple-darwin"$UNAME_RELEASE" exit ;; *:procnto*:*:* | *:QNX:[0123456789]*:*) UNAME_PROCESSOR=`uname -p` - if test "$UNAME_PROCESSOR" = "x86"; then + if test "$UNAME_PROCESSOR" = x86; then UNAME_PROCESSOR=i386 UNAME_MACHINE=pc fi - echo ${UNAME_PROCESSOR}-${UNAME_MACHINE}-nto-qnx${UNAME_RELEASE} + echo "$UNAME_PROCESSOR"-"$UNAME_MACHINE"-nto-qnx"$UNAME_RELEASE" exit ;; *:QNX:*:4*) echo i386-pc-qnx exit ;; - NEO-?:NONSTOP_KERNEL:*:*) - echo neo-tandem-nsk${UNAME_RELEASE} + NEO-*:NONSTOP_KERNEL:*:*) + echo neo-tandem-nsk"$UNAME_RELEASE" exit ;; NSE-*:NONSTOP_KERNEL:*:*) - echo nse-tandem-nsk${UNAME_RELEASE} + echo nse-tandem-nsk"$UNAME_RELEASE" + exit ;; + NSR-*:NONSTOP_KERNEL:*:*) + echo nsr-tandem-nsk"$UNAME_RELEASE" exit ;; - NSR-?:NONSTOP_KERNEL:*:*) - echo nsr-tandem-nsk${UNAME_RELEASE} + NSV-*:NONSTOP_KERNEL:*:*) + echo nsv-tandem-nsk"$UNAME_RELEASE" + exit ;; + NSX-*:NONSTOP_KERNEL:*:*) + echo nsx-tandem-nsk"$UNAME_RELEASE" exit ;; *:NonStop-UX:*:*) echo mips-compaq-nonstopux @@ -1311,18 +1352,18 @@ echo bs2000-siemens-sysv exit ;; DS/*:UNIX_System_V:*:*) - echo ${UNAME_MACHINE}-${UNAME_SYSTEM}-${UNAME_RELEASE} + echo "$UNAME_MACHINE"-"$UNAME_SYSTEM"-"$UNAME_RELEASE" exit ;; *:Plan9:*:*) # "uname -m" is not consistent, so use $cputype instead. 386 # is converted to i386 for consistency with other x86 # operating systems. - if test "$cputype" = "386"; then + if test "$cputype" = 386; then UNAME_MACHINE=i386 else UNAME_MACHINE="$cputype" fi - echo ${UNAME_MACHINE}-unknown-plan9 + echo "$UNAME_MACHINE"-unknown-plan9 exit ;; *:TOPS-10:*:*) echo pdp10-unknown-tops10 @@ -1343,14 +1384,14 @@ echo pdp10-unknown-its exit ;; SEI:*:*:SEIUX) - echo mips-sei-seiux${UNAME_RELEASE} + echo mips-sei-seiux"$UNAME_RELEASE" exit ;; *:DragonFly:*:*) - echo ${UNAME_MACHINE}-unknown-dragonfly`echo ${UNAME_RELEASE}|sed -e 's/[-(].*//'` + echo "$UNAME_MACHINE"-unknown-dragonfly"`echo "$UNAME_RELEASE"|sed -e 's/[-(].*//'`" exit ;; *:*VMS:*:*) UNAME_MACHINE=`(uname -p) 2>/dev/null` - case "${UNAME_MACHINE}" in + case "$UNAME_MACHINE" in A*) echo alpha-dec-vms ; exit ;; I*) echo ia64-dec-vms ; exit ;; V*) echo vax-dec-vms ; exit ;; @@ -1359,34 +1400,48 @@ echo i386-pc-xenix exit ;; i*86:skyos:*:*) - echo ${UNAME_MACHINE}-pc-skyos`echo ${UNAME_RELEASE}` | sed -e 's/ .*$//' + echo "$UNAME_MACHINE"-pc-skyos"`echo "$UNAME_RELEASE" | sed -e 's/ .*$//'`" exit ;; i*86:rdos:*:*) - echo ${UNAME_MACHINE}-pc-rdos + echo "$UNAME_MACHINE"-pc-rdos exit ;; i*86:AROS:*:*) - echo ${UNAME_MACHINE}-pc-aros + echo "$UNAME_MACHINE"-pc-aros exit ;; x86_64:VMkernel:*:*) - echo ${UNAME_MACHINE}-unknown-esx + echo "$UNAME_MACHINE"-unknown-esx + exit ;; + amd64:Isilon\ OneFS:*:*) + echo x86_64-unknown-onefs exit ;; esac +echo "$0: unable to guess system type" >&2 + +case "$UNAME_MACHINE:$UNAME_SYSTEM" in + mips:Linux | mips64:Linux) + # If we got here on MIPS GNU/Linux, output extra information. + cat >&2 <&2 < in order to provide the needed -information to handle your system. +If $0 has already been updated, send the following data and any +information you think might be pertinent to config-patches@gnu.org to +provide the necessary information to handle your system. config.guess timestamp = $timestamp @@ -1405,16 +1460,16 @@ /usr/bin/oslevel = `(/usr/bin/oslevel) 2>/dev/null` /usr/convex/getsysinfo = `(/usr/convex/getsysinfo) 2>/dev/null` -UNAME_MACHINE = ${UNAME_MACHINE} -UNAME_RELEASE = ${UNAME_RELEASE} -UNAME_SYSTEM = ${UNAME_SYSTEM} -UNAME_VERSION = ${UNAME_VERSION} +UNAME_MACHINE = "$UNAME_MACHINE" +UNAME_RELEASE = "$UNAME_RELEASE" +UNAME_SYSTEM = "$UNAME_SYSTEM" +UNAME_VERSION = "$UNAME_VERSION" EOF exit 1 # Local variables: -# eval: (add-hook 'write-file-hooks 'time-stamp) +# eval: (add-hook 'before-save-hook 'time-stamp) # time-stamp-start: "timestamp='" # time-stamp-format: "%:y-%02m-%02d" # time-stamp-end: "'" diff -Nru libqmi-1.18.0/config.sub libqmi-1.22.0/config.sub --- libqmi-1.18.0/config.sub 2017-03-22 12:20:25.000000000 +0100 +++ libqmi-1.22.0/config.sub 2019-01-08 15:17:16.000000000 +0100 @@ -1,8 +1,8 @@ #! /bin/sh # Configuration validation subroutine script. -# Copyright 1992-2014 Free Software Foundation, Inc. +# Copyright 1992-2018 Free Software Foundation, Inc. -timestamp='2014-12-03' +timestamp='2018-03-08' # This file is free software; you can redistribute it and/or modify it # under the terms of the GNU General Public License as published by @@ -15,7 +15,7 @@ # General Public License for more details. # # You should have received a copy of the GNU General Public License -# along with this program; if not, see . +# along with this program; if not, see . # # As a special exception to the GNU General Public License, if you # distribute this file as part of a program that contains a @@ -33,7 +33,7 @@ # Otherwise, we print the canonical config type on stdout and succeed. # You can get the latest version of this script from: -# http://git.savannah.gnu.org/gitweb/?p=config.git;a=blob_plain;f=config.sub;hb=HEAD +# https://git.savannah.gnu.org/gitweb/?p=config.git;a=blob_plain;f=config.sub # This file is supposed to be the same for all GNU packages # and recognize all the CPU types, system types and aliases @@ -53,12 +53,11 @@ me=`echo "$0" | sed -e 's,.*/,,'` usage="\ -Usage: $0 [OPTION] CPU-MFR-OPSYS - $0 [OPTION] ALIAS +Usage: $0 [OPTION] CPU-MFR-OPSYS or ALIAS Canonicalize a configuration name. -Operation modes: +Options: -h, --help print this help, then exit -t, --time-stamp print date of last modification, then exit -v, --version print version number, then exit @@ -68,7 +67,7 @@ version="\ GNU config.sub ($timestamp) -Copyright 1992-2014 Free Software Foundation, Inc. +Copyright 1992-2018 Free Software Foundation, Inc. This is free software; see the source for copying conditions. There is NO warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE." @@ -95,7 +94,7 @@ *local*) # First pass through any local machine types. - echo $1 + echo "$1" exit ;; * ) @@ -113,24 +112,24 @@ # Separate what the user gave into CPU-COMPANY and OS or KERNEL-OS (if any). # Here we must recognize all the valid KERNEL-OS combinations. -maybe_os=`echo $1 | sed 's/^\(.*\)-\([^-]*-[^-]*\)$/\2/'` +maybe_os=`echo "$1" | sed 's/^\(.*\)-\([^-]*-[^-]*\)$/\2/'` case $maybe_os in nto-qnx* | linux-gnu* | linux-android* | linux-dietlibc | linux-newlib* | \ linux-musl* | linux-uclibc* | uclinux-uclibc* | uclinux-gnu* | kfreebsd*-gnu* | \ - knetbsd*-gnu* | netbsd*-gnu* | \ - kopensolaris*-gnu* | \ + knetbsd*-gnu* | netbsd*-gnu* | netbsd*-eabi* | \ + kopensolaris*-gnu* | cloudabi*-eabi* | \ storm-chaos* | os2-emx* | rtmk-nova*) os=-$maybe_os - basic_machine=`echo $1 | sed 's/^\(.*\)-\([^-]*-[^-]*\)$/\1/'` + basic_machine=`echo "$1" | sed 's/^\(.*\)-\([^-]*-[^-]*\)$/\1/'` ;; android-linux) os=-linux-android - basic_machine=`echo $1 | sed 's/^\(.*\)-\([^-]*-[^-]*\)$/\1/'`-unknown + basic_machine=`echo "$1" | sed 's/^\(.*\)-\([^-]*-[^-]*\)$/\1/'`-unknown ;; *) - basic_machine=`echo $1 | sed 's/-[^-]*$//'` - if [ $basic_machine != $1 ] - then os=`echo $1 | sed 's/.*-/-/'` + basic_machine=`echo "$1" | sed 's/-[^-]*$//'` + if [ "$basic_machine" != "$1" ] + then os=`echo "$1" | sed 's/.*-/-/'` else os=; fi ;; esac @@ -179,44 +178,44 @@ ;; -sco6) os=-sco5v6 - basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'` + basic_machine=`echo "$1" | sed -e 's/86-.*/86-pc/'` ;; -sco5) os=-sco3.2v5 - basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'` + basic_machine=`echo "$1" | sed -e 's/86-.*/86-pc/'` ;; -sco4) os=-sco3.2v4 - basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'` + basic_machine=`echo "$1" | sed -e 's/86-.*/86-pc/'` ;; -sco3.2.[4-9]*) os=`echo $os | sed -e 's/sco3.2./sco3.2v/'` - basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'` + basic_machine=`echo "$1" | sed -e 's/86-.*/86-pc/'` ;; -sco3.2v[4-9]*) # Don't forget version if it is 3.2v4 or newer. - basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'` + basic_machine=`echo "$1" | sed -e 's/86-.*/86-pc/'` ;; -sco5v6*) # Don't forget version if it is 3.2v4 or newer. - basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'` + basic_machine=`echo "$1" | sed -e 's/86-.*/86-pc/'` ;; -sco*) os=-sco3.2v2 - basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'` + basic_machine=`echo "$1" | sed -e 's/86-.*/86-pc/'` ;; -udk*) - basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'` + basic_machine=`echo "$1" | sed -e 's/86-.*/86-pc/'` ;; -isc) os=-isc2.2 - basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'` + basic_machine=`echo "$1" | sed -e 's/86-.*/86-pc/'` ;; -clix*) basic_machine=clipper-intergraph ;; -isc*) - basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'` + basic_machine=`echo "$1" | sed -e 's/86-.*/86-pc/'` ;; -lynx*178) os=-lynxos178 @@ -228,10 +227,7 @@ os=-lynxos ;; -ptx*) - basic_machine=`echo $1 | sed -e 's/86-.*/86-sequent/'` - ;; - -windowsnt*) - os=`echo $os | sed -e 's/windowsnt/winnt/'` + basic_machine=`echo "$1" | sed -e 's/86-.*/86-sequent/'` ;; -psos*) os=-psos @@ -255,15 +251,16 @@ | arc | arceb \ | arm | arm[bl]e | arme[lb] | armv[2-8] | armv[3-8][lb] | armv7[arm] \ | avr | avr32 \ + | ba \ | be32 | be64 \ | bfin \ | c4x | c8051 | clipper \ | d10v | d30v | dlx | dsp16xx \ - | epiphany \ - | fido | fr30 | frv \ + | e2k | epiphany \ + | fido | fr30 | frv | ft32 \ | h8300 | h8500 | hppa | hppa1.[01] | hppa2.0 | hppa2.0[nw] | hppa64 \ | hexagon \ - | i370 | i860 | i960 | ia64 \ + | i370 | i860 | i960 | ia16 | ia64 \ | ip2k | iq2000 \ | k1om \ | le32 | le64 \ @@ -299,13 +296,14 @@ | nios | nios2 | nios2eb | nios2el \ | ns16k | ns32k \ | open8 | or1k | or1knd | or32 \ - | pdp10 | pdp11 | pj | pjl \ + | pdp10 | pj | pjl \ | powerpc | powerpc64 | powerpc64le | powerpcle \ + | pru \ | pyramid \ | riscv32 | riscv64 \ | rl78 | rx \ | score \ - | sh | sh[1234] | sh[24]a | sh[24]aeb | sh[23]e | sh[34]eb | sheb | shbe | shle | sh[1234]le | sh3ele \ + | sh | sh[1234] | sh[24]a | sh[24]aeb | sh[23]e | sh[234]eb | sheb | shbe | shle | sh[1234]le | sh3ele \ | sh64 | sh64le \ | sparc | sparc64 | sparc64b | sparc64v | sparc86x | sparclet | sparclite \ | sparcv8 | sparcv9 | sparcv9b | sparcv9v \ @@ -314,7 +312,7 @@ | ubicom32 \ | v850 | v850e | v850e1 | v850e2 | v850es | v850e2v3 \ | visium \ - | we32k \ + | wasm32 \ | x86 | xc16x | xstormy16 | xtensa \ | z8k | z80) basic_machine=$basic_machine-unknown @@ -335,7 +333,7 @@ basic_machine=$basic_machine-unknown os=-none ;; - m88110 | m680[12346]0 | m683?2 | m68360 | m5200 | v70 | w65 | z8k) + m88110 | m680[12346]0 | m683?2 | m68360 | m5200 | v70 | w65) ;; ms1) basic_machine=mt-unknown @@ -364,7 +362,7 @@ ;; # Object if more than one company name word. *-*-*) - echo Invalid configuration \`$1\': machine \`$basic_machine\' not recognized 1>&2 + echo Invalid configuration \`"$1"\': machine \`"$basic_machine"\' not recognized 1>&2 exit 1 ;; # Recognize the basic CPU types with company name. @@ -376,17 +374,18 @@ | alphapca5[67]-* | alpha64pca5[67]-* | arc-* | arceb-* \ | arm-* | armbe-* | armle-* | armeb-* | armv*-* \ | avr-* | avr32-* \ + | ba-* \ | be32-* | be64-* \ | bfin-* | bs2000-* \ | c[123]* | c30-* | [cjt]90-* | c4x-* \ | c8051-* | clipper-* | craynv-* | cydra-* \ | d10v-* | d30v-* | dlx-* \ - | elxsi-* \ + | e2k-* | elxsi-* \ | f30[01]-* | f700-* | fido-* | fr30-* | frv-* | fx80-* \ | h8300-* | h8500-* \ | hppa-* | hppa1.[01]-* | hppa2.0-* | hppa2.0[nw]-* | hppa64-* \ | hexagon-* \ - | i*86-* | i860-* | i960-* | ia64-* \ + | i*86-* | i860-* | i960-* | ia16-* | ia64-* \ | ip2k-* | iq2000-* \ | k1om-* \ | le32-* | le64-* \ @@ -427,13 +426,15 @@ | orion-* \ | pdp10-* | pdp11-* | pj-* | pjl-* | pn-* | power-* \ | powerpc-* | powerpc64-* | powerpc64le-* | powerpcle-* \ + | pru-* \ | pyramid-* \ + | riscv32-* | riscv64-* \ | rl78-* | romp-* | rs6000-* | rx-* \ | sh-* | sh[1234]-* | sh[24]a-* | sh[24]aeb-* | sh[23]e-* | sh[34]eb-* | sheb-* | shbe-* \ | shle-* | sh[1234]le-* | sh3ele-* | sh64-* | sh64le-* \ | sparc-* | sparc64-* | sparc64b-* | sparc64v-* | sparc86x-* | sparclet-* \ | sparclite-* \ - | sparcv8-* | sparcv9-* | sparcv9b-* | sparcv9v-* | sv1-* | sx?-* \ + | sparcv8-* | sparcv9-* | sparcv9b-* | sparcv9v-* | sv1-* | sx*-* \ | tahoe-* \ | tic30-* | tic4x-* | tic54x-* | tic55x-* | tic6x-* | tic80-* \ | tile*-* \ @@ -442,6 +443,7 @@ | v850-* | v850e-* | v850e1-* | v850es-* | v850e2-* | v850e2v3-* \ | vax-* \ | visium-* \ + | wasm32-* \ | we32k-* \ | x86-* | x86_64-* | xc16x-* | xps100-* \ | xstormy16-* | xtensa*-* \ @@ -455,7 +457,7 @@ # Recognize the various machine names and aliases which stand # for a CPU type and a company and sometimes even an OS. 386bsd) - basic_machine=i386-unknown + basic_machine=i386-pc os=-bsd ;; 3b1 | 7300 | 7300-att | att-7300 | pc7300 | safari | unixpc) @@ -489,7 +491,7 @@ basic_machine=x86_64-pc ;; amd64-*) - basic_machine=x86_64-`echo $basic_machine | sed 's/^[^-]*-//'` + basic_machine=x86_64-`echo "$basic_machine" | sed 's/^[^-]*-//'` ;; amdahl) basic_machine=580-amdahl @@ -518,6 +520,9 @@ basic_machine=i386-pc os=-aros ;; + asmjs) + basic_machine=asmjs-unknown + ;; aux) basic_machine=m68k-apple os=-aux @@ -531,7 +536,7 @@ os=-linux ;; blackfin-*) - basic_machine=bfin-`echo $basic_machine | sed 's/^[^-]*-//'` + basic_machine=bfin-`echo "$basic_machine" | sed 's/^[^-]*-//'` os=-linux ;; bluegene*) @@ -539,13 +544,13 @@ os=-cnk ;; c54x-*) - basic_machine=tic54x-`echo $basic_machine | sed 's/^[^-]*-//'` + basic_machine=tic54x-`echo "$basic_machine" | sed 's/^[^-]*-//'` ;; c55x-*) - basic_machine=tic55x-`echo $basic_machine | sed 's/^[^-]*-//'` + basic_machine=tic55x-`echo "$basic_machine" | sed 's/^[^-]*-//'` ;; c6x-*) - basic_machine=tic6x-`echo $basic_machine | sed 's/^[^-]*-//'` + basic_machine=tic6x-`echo "$basic_machine" | sed 's/^[^-]*-//'` ;; c90) basic_machine=c90-cray @@ -634,10 +639,18 @@ basic_machine=rs6000-bull os=-bosx ;; - dpx2* | dpx2*-bull) + dpx2*) basic_machine=m68k-bull os=-sysv3 ;; + e500v[12]) + basic_machine=powerpc-unknown + os=$os"spe" + ;; + e500v[12]-*) + basic_machine=powerpc-`echo "$basic_machine" | sed 's/^[^-]*-//'` + os=$os"spe" + ;; ebmon29k) basic_machine=a29k-amd os=-ebmon @@ -727,9 +740,6 @@ hp9k8[0-9][0-9] | hp8[0-9][0-9]) basic_machine=hppa1.0-hp ;; - hppa-next) - os=-nextstep3 - ;; hppaosf) basic_machine=hppa1.1-hp os=-osf @@ -742,26 +752,26 @@ basic_machine=i370-ibm ;; i*86v32) - basic_machine=`echo $1 | sed -e 's/86.*/86-pc/'` + basic_machine=`echo "$1" | sed -e 's/86.*/86-pc/'` os=-sysv32 ;; i*86v4*) - basic_machine=`echo $1 | sed -e 's/86.*/86-pc/'` + basic_machine=`echo "$1" | sed -e 's/86.*/86-pc/'` os=-sysv4 ;; i*86v) - basic_machine=`echo $1 | sed -e 's/86.*/86-pc/'` + basic_machine=`echo "$1" | sed -e 's/86.*/86-pc/'` os=-sysv ;; i*86sol2) - basic_machine=`echo $1 | sed -e 's/86.*/86-pc/'` + basic_machine=`echo "$1" | sed -e 's/86.*/86-pc/'` os=-solaris2 ;; i386mach) basic_machine=i386-mach os=-mach ;; - i386-vsta | vsta) + vsta) basic_machine=i386-unknown os=-vsta ;; @@ -780,19 +790,16 @@ os=-sysv ;; leon-*|leon[3-9]-*) - basic_machine=sparc-`echo $basic_machine | sed 's/-.*//'` + basic_machine=sparc-`echo "$basic_machine" | sed 's/-.*//'` ;; m68knommu) basic_machine=m68k-unknown os=-linux ;; m68knommu-*) - basic_machine=m68k-`echo $basic_machine | sed 's/^[^-]*-//'` + basic_machine=m68k-`echo "$basic_machine" | sed 's/^[^-]*-//'` os=-linux ;; - m88k-omron*) - basic_machine=m88k-omron - ;; magnum | m3230) basic_machine=mips-mips os=-sysv @@ -824,10 +831,10 @@ os=-mint ;; mips3*-*) - basic_machine=`echo $basic_machine | sed -e 's/mips3/mips64/'` + basic_machine=`echo "$basic_machine" | sed -e 's/mips3/mips64/'` ;; mips3*) - basic_machine=`echo $basic_machine | sed -e 's/mips3/mips64/'`-unknown + basic_machine=`echo "$basic_machine" | sed -e 's/mips3/mips64/'`-unknown ;; monitor) basic_machine=m68k-rom68k @@ -846,7 +853,7 @@ os=-msdos ;; ms1-*) - basic_machine=`echo $basic_machine | sed -e 's/ms1-/mt-/'` + basic_machine=`echo "$basic_machine" | sed -e 's/ms1-/mt-/'` ;; msys) basic_machine=i686-pc @@ -888,7 +895,7 @@ basic_machine=v70-nec os=-sysv ;; - next | m*-next ) + next | m*-next) basic_machine=m68k-next case $os in -nextstep* ) @@ -933,6 +940,12 @@ nsr-tandem) basic_machine=nsr-tandem ;; + nsv-tandem) + basic_machine=nsv-tandem + ;; + nsx-tandem) + basic_machine=nsx-tandem + ;; op50n-* | op60c-*) basic_machine=hppa1.1-oki os=-proelf @@ -965,7 +978,7 @@ os=-linux ;; parisc-*) - basic_machine=hppa-`echo $basic_machine | sed 's/^[^-]*-//'` + basic_machine=hppa-`echo "$basic_machine" | sed 's/^[^-]*-//'` os=-linux ;; pbd) @@ -981,7 +994,7 @@ basic_machine=i386-pc ;; pc98-*) - basic_machine=i386-`echo $basic_machine | sed 's/^[^-]*-//'` + basic_machine=i386-`echo "$basic_machine" | sed 's/^[^-]*-//'` ;; pentium | p5 | k5 | k6 | nexgen | viac3) basic_machine=i586-pc @@ -996,16 +1009,16 @@ basic_machine=i786-pc ;; pentium-* | p5-* | k5-* | k6-* | nexgen-* | viac3-*) - basic_machine=i586-`echo $basic_machine | sed 's/^[^-]*-//'` + basic_machine=i586-`echo "$basic_machine" | sed 's/^[^-]*-//'` ;; pentiumpro-* | p6-* | 6x86-* | athlon-*) - basic_machine=i686-`echo $basic_machine | sed 's/^[^-]*-//'` + basic_machine=i686-`echo "$basic_machine" | sed 's/^[^-]*-//'` ;; pentiumii-* | pentium2-* | pentiumiii-* | pentium3-*) - basic_machine=i686-`echo $basic_machine | sed 's/^[^-]*-//'` + basic_machine=i686-`echo "$basic_machine" | sed 's/^[^-]*-//'` ;; pentium4-*) - basic_machine=i786-`echo $basic_machine | sed 's/^[^-]*-//'` + basic_machine=i786-`echo "$basic_machine" | sed 's/^[^-]*-//'` ;; pn) basic_machine=pn-gould @@ -1015,23 +1028,23 @@ ppc | ppcbe) basic_machine=powerpc-unknown ;; ppc-* | ppcbe-*) - basic_machine=powerpc-`echo $basic_machine | sed 's/^[^-]*-//'` + basic_machine=powerpc-`echo "$basic_machine" | sed 's/^[^-]*-//'` ;; - ppcle | powerpclittle | ppc-le | powerpc-little) + ppcle | powerpclittle) basic_machine=powerpcle-unknown ;; ppcle-* | powerpclittle-*) - basic_machine=powerpcle-`echo $basic_machine | sed 's/^[^-]*-//'` + basic_machine=powerpcle-`echo "$basic_machine" | sed 's/^[^-]*-//'` ;; ppc64) basic_machine=powerpc64-unknown ;; - ppc64-*) basic_machine=powerpc64-`echo $basic_machine | sed 's/^[^-]*-//'` + ppc64-*) basic_machine=powerpc64-`echo "$basic_machine" | sed 's/^[^-]*-//'` ;; - ppc64le | powerpc64little | ppc64-le | powerpc64-little) + ppc64le | powerpc64little) basic_machine=powerpc64le-unknown ;; ppc64le-* | powerpc64little-*) - basic_machine=powerpc64le-`echo $basic_machine | sed 's/^[^-]*-//'` + basic_machine=powerpc64le-`echo "$basic_machine" | sed 's/^[^-]*-//'` ;; ps2) basic_machine=i386-ibm @@ -1085,17 +1098,10 @@ sequent) basic_machine=i386-sequent ;; - sh) - basic_machine=sh-hitachi - os=-hms - ;; sh5el) basic_machine=sh5le-unknown ;; - sh64) - basic_machine=sh64-unknown - ;; - sparclite-wrs | simso-wrs) + simso-wrs) basic_machine=sparclite-wrs os=-vxworks ;; @@ -1114,7 +1120,7 @@ os=-sysv4 ;; strongarm-* | thumb-*) - basic_machine=arm-`echo $basic_machine | sed 's/^[^-]*-//'` + basic_machine=arm-`echo "$basic_machine" | sed 's/^[^-]*-//'` ;; sun2) basic_machine=m68000-sun @@ -1236,6 +1242,9 @@ basic_machine=hppa1.1-winbond os=-proelf ;; + x64) + basic_machine=x86_64-pc + ;; xbox) basic_machine=i686-pc os=-mingw32 @@ -1244,20 +1253,12 @@ basic_machine=xps100-honeywell ;; xscale-* | xscalee[bl]-*) - basic_machine=`echo $basic_machine | sed 's/^xscale/arm/'` + basic_machine=`echo "$basic_machine" | sed 's/^xscale/arm/'` ;; ymp) basic_machine=ymp-cray os=-unicos ;; - z8k-*-coff) - basic_machine=z8k-unknown - os=-sim - ;; - z80-*-coff) - basic_machine=z80-unknown - os=-sim - ;; none) basic_machine=none-none os=-none @@ -1286,10 +1287,6 @@ vax) basic_machine=vax-dec ;; - pdp10) - # there are many clones, so DEC is not a safe bet - basic_machine=pdp10-unknown - ;; pdp11) basic_machine=pdp11-dec ;; @@ -1299,9 +1296,6 @@ sh[1234] | sh[24]a | sh[24]aeb | sh[34]eb | sh[1234]le | sh[23]ele) basic_machine=sh-unknown ;; - sparc | sparcv8 | sparcv9 | sparcv9b | sparcv9v) - basic_machine=sparc-sun - ;; cydra) basic_machine=cydra-cydrome ;; @@ -1321,7 +1315,7 @@ # Make sure to match an already-canonicalized machine name. ;; *) - echo Invalid configuration \`$1\': machine \`$basic_machine\' not recognized 1>&2 + echo Invalid configuration \`"$1"\': machine \`"$basic_machine"\' not recognized 1>&2 exit 1 ;; esac @@ -1329,10 +1323,10 @@ # Here we canonicalize certain aliases for manufacturers. case $basic_machine in *-digital*) - basic_machine=`echo $basic_machine | sed 's/digital.*/dec/'` + basic_machine=`echo "$basic_machine" | sed 's/digital.*/dec/'` ;; *-commodore*) - basic_machine=`echo $basic_machine | sed 's/commodore.*/cbm/'` + basic_machine=`echo "$basic_machine" | sed 's/commodore.*/cbm/'` ;; *) ;; @@ -1343,8 +1337,8 @@ if [ x"$os" != x"" ] then case $os in - # First match some system type aliases - # that might get confused with valid system types. + # First match some system type aliases that might get confused + # with valid system types. # -solaris* is a basic system type, with this one exception. -auroraux) os=-auroraux @@ -1355,45 +1349,48 @@ -solaris) os=-solaris2 ;; - -svr4*) - os=-sysv4 - ;; -unixware*) os=-sysv4.2uw ;; -gnu/linux*) os=`echo $os | sed -e 's|gnu/linux|linux-gnu|'` ;; - # First accept the basic system types. + # es1800 is here to avoid being matched by es* (a different OS) + -es1800*) + os=-ose + ;; + # Now accept the basic system types. # The portable systems comes first. - # Each alternative MUST END IN A *, to match a version number. + # Each alternative MUST end in a * to match a version number. # -sysv* is not here because it comes later, after sysvr4. -gnu* | -bsd* | -mach* | -minix* | -genix* | -ultrix* | -irix* \ | -*vms* | -sco* | -esix* | -isc* | -aix* | -cnk* | -sunos | -sunos[34]*\ | -hpux* | -unos* | -osf* | -luna* | -dgux* | -auroraux* | -solaris* \ | -sym* | -kopensolaris* | -plan9* \ | -amigaos* | -amigados* | -msdos* | -newsos* | -unicos* | -aof* \ - | -aos* | -aros* \ + | -aos* | -aros* | -cloudabi* | -sortix* \ | -nindy* | -vxsim* | -vxworks* | -ebmon* | -hms* | -mvs* \ | -clix* | -riscos* | -uniplus* | -iris* | -rtu* | -xenix* \ - | -hiux* | -386bsd* | -knetbsd* | -mirbsd* | -netbsd* \ - | -bitrig* | -openbsd* | -solidbsd* \ + | -hiux* | -knetbsd* | -mirbsd* | -netbsd* \ + | -bitrig* | -openbsd* | -solidbsd* | -libertybsd* \ | -ekkobsd* | -kfreebsd* | -freebsd* | -riscix* | -lynxos* \ | -bosx* | -nextstep* | -cxux* | -aout* | -elf* | -oabi* \ | -ptx* | -coff* | -ecoff* | -winnt* | -domain* | -vsta* \ - | -udi* | -eabi* | -lites* | -ieee* | -go32* | -aux* \ - | -chorusos* | -chorusrdb* | -cegcc* \ + | -udi* | -eabi* | -lites* | -ieee* | -go32* | -aux* | -hcos* \ + | -chorusos* | -chorusrdb* | -cegcc* | -glidix* \ | -cygwin* | -msys* | -pe* | -psos* | -moss* | -proelf* | -rtems* \ - | -mingw32* | -mingw64* | -linux-gnu* | -linux-android* \ + | -midipix* | -mingw32* | -mingw64* | -linux-gnu* | -linux-android* \ | -linux-newlib* | -linux-musl* | -linux-uclibc* \ | -uxpv* | -beos* | -mpeix* | -udk* | -moxiebox* \ - | -interix* | -uwin* | -mks* | -rhapsody* | -darwin* | -opened* \ + | -interix* | -uwin* | -mks* | -rhapsody* | -darwin* \ | -openstep* | -oskit* | -conix* | -pw32* | -nonstopux* \ | -storm-chaos* | -tops10* | -tenex* | -tops20* | -its* \ | -os2* | -vos* | -palmos* | -uclinux* | -nucleus* \ - | -morphos* | -superux* | -rtmk* | -rtmk-nova* | -windiss* \ + | -morphos* | -superux* | -rtmk* | -windiss* \ | -powermax* | -dnix* | -nx6 | -nx7 | -sei* | -dragonfly* \ - | -skyos* | -haiku* | -rdos* | -toppers* | -drops* | -es* | -tirtos*) + | -skyos* | -haiku* | -rdos* | -toppers* | -drops* | -es* \ + | -onefs* | -tirtos* | -phoenix* | -fuchsia* | -redox* | -bme* \ + | -midnightbsd*) # Remember, each alternative MUST END IN *, to match a version number. ;; -qnx*) @@ -1410,12 +1407,12 @@ -nto*) os=`echo $os | sed -e 's|nto|nto-qnx|'` ;; - -sim | -es1800* | -hms* | -xray | -os68k* | -none* | -v88r* \ - | -windows* | -osx | -abug | -netware* | -os9* | -beos* | -haiku* \ + -sim | -xray | -os68k* | -v88r* \ + | -windows* | -osx | -abug | -netware* | -os9* \ | -macos* | -mpw* | -magic* | -mmixware* | -mon960* | -lnews*) ;; -mac*) - os=`echo $os | sed -e 's|mac|macos|'` + os=`echo "$os" | sed -e 's|mac|macos|'` ;; -linux-dietlibc) os=-linux-dietlibc @@ -1424,10 +1421,10 @@ os=`echo $os | sed -e 's|linux|linux-gnu|'` ;; -sunos5*) - os=`echo $os | sed -e 's|sunos5|solaris2|'` + os=`echo "$os" | sed -e 's|sunos5|solaris2|'` ;; -sunos6*) - os=`echo $os | sed -e 's|sunos6|solaris3|'` + os=`echo "$os" | sed -e 's|sunos6|solaris3|'` ;; -opened*) os=-openedition @@ -1438,12 +1435,6 @@ -wince*) os=-wince ;; - -osfrose*) - os=-osfrose - ;; - -osf*) - os=-osf - ;; -utek*) os=-bsd ;; @@ -1468,7 +1459,7 @@ -nova*) os=-rtmk-nova ;; - -ns2 ) + -ns2) os=-nextstep2 ;; -nsk*) @@ -1490,7 +1481,7 @@ -oss*) os=-sysv3 ;; - -svr4) + -svr4*) os=-sysv4 ;; -svr3) @@ -1505,32 +1496,38 @@ -ose*) os=-ose ;; - -es1800*) - os=-ose - ;; - -xenix) - os=-xenix - ;; -*mint | -mint[0-9]* | -*MiNT | -MiNT[0-9]*) os=-mint ;; - -aros*) - os=-aros - ;; -zvmoe) os=-zvmoe ;; -dicos*) os=-dicos ;; + -pikeos*) + # Until real need of OS specific support for + # particular features comes up, bare metal + # configurations are quite functional. + case $basic_machine in + arm*) + os=-eabi + ;; + *) + os=-elf + ;; + esac + ;; -nacl*) ;; + -ios) + ;; -none) ;; *) # Get rid of the `-' at the beginning of $os. os=`echo $os | sed 's/[^-]*-//'` - echo Invalid configuration \`$1\': system \`$os\' not recognized 1>&2 + echo Invalid configuration \`"$1"\': system \`"$os"\' not recognized 1>&2 exit 1 ;; esac @@ -1620,12 +1617,12 @@ sparc-* | *-sun) os=-sunos4.1.1 ;; + pru-*) + os=-elf + ;; *-be) os=-beos ;; - *-haiku) - os=-haiku - ;; *-ibm) os=-aix ;; @@ -1665,7 +1662,7 @@ m88k-omron*) os=-luna ;; - *-next ) + *-next) os=-nextstep ;; *-sequent) @@ -1680,9 +1677,6 @@ i370-*) os=-mvs ;; - *-next) - os=-nextstep3 - ;; *-gould) os=-sysv ;; @@ -1792,15 +1786,15 @@ vendor=stratus ;; esac - basic_machine=`echo $basic_machine | sed "s/unknown/$vendor/"` + basic_machine=`echo "$basic_machine" | sed "s/unknown/$vendor/"` ;; esac -echo $basic_machine$os +echo "$basic_machine$os" exit # Local variables: -# eval: (add-hook 'write-file-hooks 'time-stamp) +# eval: (add-hook 'before-save-hook 'time-stamp) # time-stamp-start: "timestamp='" # time-stamp-format: "%:y-%02m-%02d" # time-stamp-end: "'" diff -Nru libqmi-1.18.0/configure libqmi-1.22.0/configure --- libqmi-1.18.0/configure 2017-03-22 12:20:23.000000000 +0100 +++ libqmi-1.22.0/configure 2019-01-08 15:17:15.000000000 +0100 @@ -1,6 +1,6 @@ #! /bin/sh # Guess values for system-dependent variables and create Makefiles. -# Generated by GNU Autoconf 2.69 for libqmi 1.18.0. +# Generated by GNU Autoconf 2.69 for libqmi 1.22.0. # # Report bugs to . # @@ -590,8 +590,8 @@ # Identity of this package. PACKAGE_NAME='libqmi' PACKAGE_TARNAME='libqmi' -PACKAGE_VERSION='1.18.0' -PACKAGE_STRING='libqmi 1.18.0' +PACKAGE_VERSION='1.22.0' +PACKAGE_STRING='libqmi 1.22.0' PACKAGE_BUGREPORT='libqmi-devel@lists.freedesktop.org' PACKAGE_URL='' @@ -669,6 +669,15 @@ GUDEV_CFLAGS BUILD_FIRMWARE_UPDATE_FALSE BUILD_FIRMWARE_UPDATE_TRUE +pkgpyexecdir +pyexecdir +pkgpythondir +pythondir +PYTHON_PLATFORM +PYTHON_EXEC_PREFIX +PYTHON_PREFIX +PYTHON_VERSION +PYTHON GLIB_MKENUMS GLIB_LIBS GLIB_CFLAGS @@ -720,7 +729,6 @@ AMDEPBACKSLASH AMDEP_FALSE AMDEP_TRUE -am__quote am__include DEPDIR OBJEXT @@ -797,7 +805,8 @@ PACKAGE_TARNAME PACKAGE_NAME PATH_SEPARATOR -SHELL' +SHELL +am__quote' ac_subst_files='' ac_user_opts=' enable_option_checking @@ -839,6 +848,7 @@ PKG_CONFIG_LIBDIR GLIB_CFLAGS GLIB_LIBS +PYTHON GUDEV_CFLAGS GUDEV_LIBS GTKDOC_DEPS_CFLAGS @@ -1385,7 +1395,7 @@ # Omit some internal or obsolete options to make the list less imposing. # This message is too long to be a string in the A/UX 3.1 sh. cat <<_ACEOF -\`configure' configures libqmi 1.18.0 to adapt to many kinds of systems. +\`configure' configures libqmi 1.22.0 to adapt to many kinds of systems. Usage: $0 [OPTION]... [VAR=VALUE]... @@ -1455,7 +1465,7 @@ if test -n "$ac_init_help"; then case $ac_init_help in - short | recursive ) echo "Configuration of libqmi 1.18.0:";; + short | recursive ) echo "Configuration of libqmi 1.22.0:";; esac cat <<\_ACEOF @@ -1525,6 +1535,7 @@ path overriding pkg-config's built-in search path GLIB_CFLAGS C compiler flags for GLIB, overriding pkg-config GLIB_LIBS linker flags for GLIB, overriding pkg-config + PYTHON the Python interpreter GUDEV_CFLAGS C compiler flags for GUDEV, overriding pkg-config GUDEV_LIBS linker flags for GUDEV, overriding pkg-config @@ -1601,7 +1612,7 @@ test -n "$ac_init_help" && exit $ac_status if $ac_init_version; then cat <<\_ACEOF -libqmi configure 1.18.0 +libqmi configure 1.22.0 generated by GNU Autoconf 2.69 Copyright (C) 2012 Free Software Foundation, Inc. @@ -1879,7 +1890,7 @@ This file contains any messages produced by compilers while running configure, to aid debugging if configure makes a mistake. -It was created by libqmi $as_me 1.18.0, which was +It was created by libqmi $as_me 1.22.0, which was generated by GNU Autoconf 2.69. Invocation command line was $ $0 $@ @@ -2232,7 +2243,7 @@ -am__api_version='1.15' +am__api_version='1.16' ac_aux_dir= for ac_dir in "$srcdir" "$srcdir/.." "$srcdir/../.."; do @@ -2747,7 +2758,7 @@ # Define the identity of the package. PACKAGE='libqmi' - VERSION='1.18.0' + VERSION='1.22.0' # Some tools Automake needs. @@ -2768,8 +2779,8 @@ # For better backward compatibility. To be removed once Automake 1.9.x # dies out for good. For more background, see: -# -# +# +# mkdir_p='$(MKDIR_P)' # We need awk for the "check" target (and possibly the TAP driver). The @@ -2936,7 +2947,7 @@ Aborting the configuration process, to ensure you take notice of the issue. You can download and install GNU coreutils to get an 'rm' implementation -that behaves properly: . +that behaves properly: . If you want to complete the configuration process using your problematic 'rm' anyway, export the environment variable ACCEPT_INFERIOR_RM_PROGRAM @@ -3862,45 +3873,45 @@ ac_config_commands="$ac_config_commands depfiles" - -am_make=${MAKE-make} -cat > confinc << 'END' +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether ${MAKE-make} supports the include directive" >&5 +$as_echo_n "checking whether ${MAKE-make} supports the include directive... " >&6; } +cat > confinc.mk << 'END' am__doit: - @echo this is the am__doit target + @echo this is the am__doit target >confinc.out .PHONY: am__doit END -# If we don't find an include directive, just comment out the code. -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for style of include used by $am_make" >&5 -$as_echo_n "checking for style of include used by $am_make... " >&6; } am__include="#" am__quote= -_am_result=none -# First try GNU make style include. -echo "include confinc" > confmf -# Ignore all kinds of additional output from 'make'. -case `$am_make -s -f confmf 2> /dev/null` in #( -*the\ am__doit\ target*) - am__include=include - am__quote= - _am_result=GNU - ;; -esac -# Now try BSD make style include. -if test "$am__include" = "#"; then - echo '.include "confinc"' > confmf - case `$am_make -s -f confmf 2> /dev/null` in #( - *the\ am__doit\ target*) - am__include=.include - am__quote="\"" - _am_result=BSD +# BSD make does it like this. +echo '.include "confinc.mk" # ignored' > confmf.BSD +# Other make implementations (GNU, Solaris 10, AIX) do it like this. +echo 'include confinc.mk # ignored' > confmf.GNU +_am_result=no +for s in GNU BSD; do + { echo "$as_me:$LINENO: ${MAKE-make} -f confmf.$s && cat confinc.out" >&5 + (${MAKE-make} -f confmf.$s && cat confinc.out) >&5 2>&5 + ac_status=$? + echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } + case $?:`cat confinc.out 2>/dev/null` in #( + '0:this is the am__doit target') : + case $s in #( + BSD) : + am__include='.include' am__quote='"' ;; #( + *) : + am__include='include' am__quote='' ;; +esac ;; #( + *) : ;; - esac -fi - - -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $_am_result" >&5 -$as_echo "$_am_result" >&6; } -rm -f confinc confmf +esac + if test "$am__include" != "#"; then + _am_result="yes ($s style)" + break + fi +done +rm -f confinc.* confmf.* +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: ${_am_result}" >&5 +$as_echo "${_am_result}" >&6; } # Check whether --enable-dependency-tracking was given. if test "${enable_dependency_tracking+set}" = set; then : @@ -4062,8 +4073,8 @@ -macro_version='2.4.6' -macro_revision='2.4.6' +macro_version='2.4.6.42-b88ce' +macro_revision='2.4.6.42' @@ -5726,13 +5737,29 @@ fi : ${AR=ar} -: ${AR_FLAGS=cru} +# Use ARFLAGS variable as AR's operation code to sync the variable naming with +# Automake. If both AR_FLAGS and ARFLAGS are specified, AR_FLAGS should have +# higher priority because thats what people were doing historically (setting +# ARFLAGS for automake and AR_FLAGS for libtool). FIXME: Make the AR_FLAGS +# variable obsoleted/removed. + +test ${AR_FLAGS+y} || AR_FLAGS=${ARFLAGS-cr} +lt_ar_flags=$AR_FLAGS + + + + + + +# Make AR_FLAGS overridable by 'make ARFLAGS='. Don't try to run-time override +# by AR_FLAGS because that was never working and AR_FLAGS is about to die. + @@ -6181,7 +6208,7 @@ if test "$lt_cv_nm_interface" = "MS dumpbin"; then # Fake it for dumpbin and say T for any non-static function, # D for any global variable and I for any imported variable. - # Also find C++ and __fastcall symbols from MSVC++, + # Also find C++ and __fastcall symbols from MSVC++ or ICC, # which start with @ or ?. lt_cv_sys_global_symbol_pipe="$AWK '"\ " {last_section=section; section=\$ 3};"\ @@ -7450,8 +7477,8 @@ _LT_EOF echo "$LTCC $LTCFLAGS -c -o conftest.o conftest.c" >&5 $LTCC $LTCFLAGS -c -o conftest.o conftest.c 2>&5 - echo "$AR cru libconftest.a conftest.o" >&5 - $AR cru libconftest.a conftest.o 2>&5 + echo "$AR $AR_FLAGS libconftest.a conftest.o" >&5 + $AR $AR_FLAGS libconftest.a conftest.o 2>&5 echo "$RANLIB libconftest.a" >&5 $RANLIB libconftest.a 2>&5 cat > conftest.c << _LT_EOF @@ -8114,8 +8141,8 @@ ofile=libtool can_build_shared=yes -# All known linkers require a '.a' archive for static linking (except MSVC, -# which needs '.lib'). +# All known linkers require a '.a' archive for static linking (except MSVC and +# ICC, which need '.lib'). libext=a with_gnu_ld=$lt_cv_prog_gnu_ld @@ -9042,15 +9069,15 @@ case $host_os in cygwin* | mingw* | pw32* | cegcc*) - # FIXME: the MSVC++ port hasn't been tested in a loooong time + # FIXME: the MSVC++ and ICC port hasn't been tested in a loooong time # When not using gcc, we currently assume that we are using - # Microsoft Visual C++. + # Microsoft Visual C++ or Intel C++ Compiler. if test yes != "$GCC"; then with_gnu_ld=no fi ;; interix*) - # we just hope/assume this is gcc and not c89 (= MSVC++) + # we just hope/assume this is gcc and not c89 (= MSVC++ or ICC) with_gnu_ld=yes ;; openbsd* | bitrig*) @@ -9214,6 +9241,7 @@ emximp -o $lib $output_objdir/$libname.def' old_archive_From_new_cmds='emximp -o $output_objdir/${libname}_dll.a $output_objdir/$libname.def' enable_shared_with_static_runtimes=yes + file_list_spec='@' ;; interix[3-9]*) @@ -9431,7 +9459,7 @@ if $NM -V 2>&1 | $GREP 'GNU' > /dev/null; then export_symbols_cmds='$NM -Bpg $libobjs $convenience | awk '\''{ if (((\$ 2 == "T") || (\$ 2 == "D") || (\$ 2 == "B") || (\$ 2 == "W")) && (substr(\$ 3,1,1) != ".")) { if (\$ 2 == "W") { print \$ 3 " weak" } else { print \$ 3 } } }'\'' | sort -u > $export_symbols' else - export_symbols_cmds='`func_echo_all $NM | $SED -e '\''s/B\([^B]*\)$/P\1/'\''` -PCpgl $libobjs $convenience | awk '\''{ if (((\$ 2 == "T") || (\$ 2 == "D") || (\$ 2 == "B") || (\$ 2 == "W") || (\$ 2 == "V") || (\$ 2 == "Z")) && (substr(\$ 1,1,1) != ".")) { if ((\$ 2 == "W") || (\$ 2 == "V") || (\$ 2 == "Z")) { print \$ 1 " weak" } else { print \$ 1 } } }'\'' | sort -u > $export_symbols' + export_symbols_cmds='`func_echo_all $NM | $SED -e '\''s/B\([^B]*\)$/P\1/'\''` -PCpgl $libobjs $convenience | awk '\''{ if (((\$ 2 == "T") || (\$ 2 == "D") || (\$ 2 == "B") || (\$ 2 == "L") || (\$ 2 == "W") || (\$ 2 == "V") || (\$ 2 == "Z")) && (substr(\$ 1,1,1) != ".")) { if ((\$ 2 == "W") || (\$ 2 == "V") || (\$ 2 == "Z")) { print \$ 1 " weak" } else { print \$ 1 } } }'\'' | sort -u > $export_symbols' fi aix_use_runtimelinking=no @@ -9698,12 +9726,12 @@ cygwin* | mingw* | pw32* | cegcc*) # When not using gcc, we currently assume that we are using - # Microsoft Visual C++. + # Microsoft Visual C++ or Intel C++ Compiler. # hardcode_libdir_flag_spec is actually meaningless, as there is # no search path for DLLs. case $cc_basename in - cl*) - # Native MSVC + cl* | icl*) + # Native MSVC or ICC hardcode_libdir_flag_spec=' ' allow_undefined_flag=unsupported always_export_symbols=yes @@ -9744,7 +9772,7 @@ fi' ;; *) - # Assume MSVC wrapper + # Assume MSVC and ICC wrapper hardcode_libdir_flag_spec=' ' allow_undefined_flag=unsupported # Tell ltmain to make .lib files, not .a files. @@ -10068,6 +10096,7 @@ emximp -o $lib $output_objdir/$libname.def' old_archive_From_new_cmds='emximp -o $output_objdir/${libname}_dll.a $output_objdir/$libname.def' enable_shared_with_static_runtimes=yes + file_list_spec='@' ;; osf3*) @@ -10775,8 +10804,8 @@ dynamic_linker='Win32 ld.exe' ;; - *,cl*) - # Native MSVC + *,cl* | *,icl*) + # Native MSVC or ICC libname_spec='$name' soname_spec='$libname`echo $release | $SED -e 's/[.]/-/g'`$versuffix$shared_ext' library_names_spec='$libname.dll.lib' @@ -10832,7 +10861,7 @@ ;; *) - # Assume MSVC wrapper + # Assume MSVC and ICC wrapper library_names_spec='$libname`echo $release | $SED -e 's/[.]/-/g'`$versuffix$shared_ext $libname.lib' dynamic_linker='Win32 ld.exe' ;; @@ -12011,30 +12040,41 @@ old_striplib= { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether stripping libraries is possible" >&5 $as_echo_n "checking whether stripping libraries is possible... " >&6; } -if test -n "$STRIP" && $STRIP -V 2>&1 | $GREP "GNU strip" >/dev/null; then - test -z "$old_striplib" && old_striplib="$STRIP --strip-debug" - test -z "$striplib" && striplib="$STRIP --strip-unneeded" - { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 -$as_echo "yes" >&6; } +if test -z "$STRIP"; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } else -# FIXME - insert some real tests, host_os isn't really good enough - case $host_os in - darwin*) - if test -n "$STRIP"; then + if $STRIP -V 2>&1 | $GREP "GNU strip" >/dev/null; then + old_striplib="$STRIP --strip-debug" + striplib="$STRIP --strip-unneeded" + { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 +$as_echo "yes" >&6; } + else + case $host_os in + darwin*) + # FIXME - insert some real tests, host_os isn't really good enough striplib="$STRIP -x" old_striplib="$STRIP -S" { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 $as_echo "yes" >&6; } - else - { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 + ;; + freebsd*) + if $STRIP -V 2>&1 | $GREP "elftoolchain" >/dev/null; then + old_striplib="$STRIP --strip-debug" + striplib="$STRIP --strip-unneeded" + { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 +$as_echo "yes" >&6; } + else + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } - fi - ;; - *) - { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 + fi + ;; + *) + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } - ;; - esac + ;; + esac + fi fi @@ -12187,17 +12227,17 @@ QMI_MAJOR_VERSION=1 -QMI_MINOR_VERSION=18 +QMI_MINOR_VERSION=22 QMI_MICRO_VERSION=0 -QMI_VERSION=1.18.0 +QMI_VERSION=1.22.0 -QMI_GLIB_LT_CURRENT=7 +QMI_GLIB_LT_CURRENT=9 QMI_GLIB_LT_REVISION=0 -QMI_GLIB_LT_AGE=2 +QMI_GLIB_LT_AGE=4 @@ -12449,6 +12489,214 @@ GLIB_MKENUMS=`$PKG_CONFIG --variable=glib_mkenums glib-2.0` + + + + + + + # Find any Python interpreter. + if test -z "$PYTHON"; then + for ac_prog in python python2 python3 python3.9 python3.8 python3.7 python3.6 python3.5 python3.4 python3.3 python3.2 python3.1 python3.0 python2.7 python2.6 python2.5 python2.4 python2.3 python2.2 python2.1 python2.0 +do + # Extract the first word of "$ac_prog", so it can be a program name with args. +set dummy $ac_prog; ac_word=$2 +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 +$as_echo_n "checking for $ac_word... " >&6; } +if ${ac_cv_path_PYTHON+:} false; then : + $as_echo_n "(cached) " >&6 +else + case $PYTHON in + [\\/]* | ?:[\\/]*) + ac_cv_path_PYTHON="$PYTHON" # Let the user override the test with a path. + ;; + *) + as_save_IFS=$IFS; IFS=$PATH_SEPARATOR +for as_dir in $PATH +do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. + for ac_exec_ext in '' $ac_executable_extensions; do + if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then + ac_cv_path_PYTHON="$as_dir/$ac_word$ac_exec_ext" + $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 + fi +done + done +IFS=$as_save_IFS + + ;; +esac +fi +PYTHON=$ac_cv_path_PYTHON +if test -n "$PYTHON"; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $PYTHON" >&5 +$as_echo "$PYTHON" >&6; } +else + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } +fi + + + test -n "$PYTHON" && break +done +test -n "$PYTHON" || PYTHON=":" + + fi + am_display_PYTHON=python + + + if test "$PYTHON" = :; then + PYTHON=python + else + + + { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $am_display_PYTHON version" >&5 +$as_echo_n "checking for $am_display_PYTHON version... " >&6; } +if ${am_cv_python_version+:} false; then : + $as_echo_n "(cached) " >&6 +else + am_cv_python_version=`$PYTHON -c "import sys; sys.stdout.write(sys.version[:3])"` +fi +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $am_cv_python_version" >&5 +$as_echo "$am_cv_python_version" >&6; } + PYTHON_VERSION=$am_cv_python_version + + + + PYTHON_PREFIX='${prefix}' + + PYTHON_EXEC_PREFIX='${exec_prefix}' + + + + { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $am_display_PYTHON platform" >&5 +$as_echo_n "checking for $am_display_PYTHON platform... " >&6; } +if ${am_cv_python_platform+:} false; then : + $as_echo_n "(cached) " >&6 +else + am_cv_python_platform=`$PYTHON -c "import sys; sys.stdout.write(sys.platform)"` +fi +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $am_cv_python_platform" >&5 +$as_echo "$am_cv_python_platform" >&6; } + PYTHON_PLATFORM=$am_cv_python_platform + + + # Just factor out some code duplication. + am_python_setup_sysconfig="\ +import sys +# Prefer sysconfig over distutils.sysconfig, for better compatibility +# with python 3.x. See automake bug#10227. +try: + import sysconfig +except ImportError: + can_use_sysconfig = 0 +else: + can_use_sysconfig = 1 +# Can't use sysconfig in CPython 2.7, since it's broken in virtualenvs: +# +try: + from platform import python_implementation + if python_implementation() == 'CPython' and sys.version[:3] == '2.7': + can_use_sysconfig = 0 +except ImportError: + pass" + + + { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $am_display_PYTHON script directory" >&5 +$as_echo_n "checking for $am_display_PYTHON script directory... " >&6; } +if ${am_cv_python_pythondir+:} false; then : + $as_echo_n "(cached) " >&6 +else + if test "x$prefix" = xNONE + then + am_py_prefix=$ac_default_prefix + else + am_py_prefix=$prefix + fi + am_cv_python_pythondir=`$PYTHON -c " +$am_python_setup_sysconfig +if can_use_sysconfig: + sitedir = sysconfig.get_path('purelib', vars={'base':'$am_py_prefix'}) +else: + from distutils import sysconfig + sitedir = sysconfig.get_python_lib(0, 0, prefix='$am_py_prefix') +sys.stdout.write(sitedir)"` + case $am_cv_python_pythondir in + $am_py_prefix*) + am__strip_prefix=`echo "$am_py_prefix" | sed 's|.|.|g'` + am_cv_python_pythondir=`echo "$am_cv_python_pythondir" | sed "s,^$am__strip_prefix,$PYTHON_PREFIX,"` + ;; + *) + case $am_py_prefix in + /usr|/System*) ;; + *) + am_cv_python_pythondir=$PYTHON_PREFIX/lib/python$PYTHON_VERSION/site-packages + ;; + esac + ;; + esac + +fi +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $am_cv_python_pythondir" >&5 +$as_echo "$am_cv_python_pythondir" >&6; } + pythondir=$am_cv_python_pythondir + + + + pkgpythondir=\${pythondir}/$PACKAGE + + + { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $am_display_PYTHON extension module directory" >&5 +$as_echo_n "checking for $am_display_PYTHON extension module directory... " >&6; } +if ${am_cv_python_pyexecdir+:} false; then : + $as_echo_n "(cached) " >&6 +else + if test "x$exec_prefix" = xNONE + then + am_py_exec_prefix=$am_py_prefix + else + am_py_exec_prefix=$exec_prefix + fi + am_cv_python_pyexecdir=`$PYTHON -c " +$am_python_setup_sysconfig +if can_use_sysconfig: + sitedir = sysconfig.get_path('platlib', vars={'platbase':'$am_py_prefix'}) +else: + from distutils import sysconfig + sitedir = sysconfig.get_python_lib(1, 0, prefix='$am_py_prefix') +sys.stdout.write(sitedir)"` + case $am_cv_python_pyexecdir in + $am_py_exec_prefix*) + am__strip_prefix=`echo "$am_py_exec_prefix" | sed 's|.|.|g'` + am_cv_python_pyexecdir=`echo "$am_cv_python_pyexecdir" | sed "s,^$am__strip_prefix,$PYTHON_EXEC_PREFIX,"` + ;; + *) + case $am_py_exec_prefix in + /usr|/System*) ;; + *) + am_cv_python_pyexecdir=$PYTHON_EXEC_PREFIX/lib/python$PYTHON_VERSION/site-packages + ;; + esac + ;; + esac + +fi +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $am_cv_python_pyexecdir" >&5 +$as_echo "$am_cv_python_pyexecdir" >&6; } + pyexecdir=$am_cv_python_pyexecdir + + + + pkgpyexecdir=\${pyexecdir}/$PACKAGE + + + + fi + + + # Check whether --enable-firmware-update was given. if test "${enable_firmware_update+set}" = set; then : enableval=$enable_firmware_update; build_firmware_update=$enableval @@ -12991,7 +13239,7 @@ # MBIM QMUX service support -MBIM_GLIB_VERSION=1.14.0 +MBIM_GLIB_VERSION=1.18.0 pkg_failed=no { $as_echo "$as_me:${as_lineno-$LINENO}: checking for MBIM" >&5 @@ -13732,7 +13980,7 @@ # report actual input values of CONFIG_FILES etc. instead of their # values after options handling. ac_log=" -This file was extended by libqmi $as_me 1.18.0, which was +This file was extended by libqmi $as_me 1.22.0, which was generated by GNU Autoconf 2.69. Invocation command line was CONFIG_FILES = $CONFIG_FILES @@ -13798,7 +14046,7 @@ cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 ac_cs_config="`$as_echo "$ac_configure_args" | sed 's/^ //; s/[\\""\`\$]/\\\\&/g'`" ac_cs_version="\\ -libqmi config.status 1.18.0 +libqmi config.status 1.22.0 configured by $0, generated by GNU Autoconf 2.69, with options \\"\$ac_cs_config\\" @@ -13917,7 +14165,7 @@ # # INIT-COMMANDS # -AMDEP_TRUE="$AMDEP_TRUE" ac_aux_dir="$ac_aux_dir" +AMDEP_TRUE="$AMDEP_TRUE" MAKE="${MAKE-make}" # The HP-UX ksh and POSIX shell print the target directory to stdout @@ -13969,6 +14217,7 @@ DLLTOOL='`$ECHO "$DLLTOOL" | $SED "$delay_single_quote_subst"`' sharedlib_from_linklib_cmd='`$ECHO "$sharedlib_from_linklib_cmd" | $SED "$delay_single_quote_subst"`' AR='`$ECHO "$AR" | $SED "$delay_single_quote_subst"`' +lt_ar_flags='`$ECHO "$lt_ar_flags" | $SED "$delay_single_quote_subst"`' AR_FLAGS='`$ECHO "$AR_FLAGS" | $SED "$delay_single_quote_subst"`' archiver_list_spec='`$ECHO "$archiver_list_spec" | $SED "$delay_single_quote_subst"`' STRIP='`$ECHO "$STRIP" | $SED "$delay_single_quote_subst"`' @@ -14097,7 +14346,6 @@ DLLTOOL \ sharedlib_from_linklib_cmd \ AR \ -AR_FLAGS \ archiver_list_spec \ STRIP \ RANLIB \ @@ -14836,29 +15084,35 @@ # Older Autoconf quotes --file arguments for eval, but not when files # are listed without --file. Let's play safe and only enable the eval # if we detect the quoting. - case $CONFIG_FILES in - *\'*) eval set x "$CONFIG_FILES" ;; - *) set x $CONFIG_FILES ;; - esac + # TODO: see whether this extra hack can be removed once we start + # requiring Autoconf 2.70 or later. + case $CONFIG_FILES in #( + *\'*) : + eval set x "$CONFIG_FILES" ;; #( + *) : + set x $CONFIG_FILES ;; #( + *) : + ;; +esac shift - for mf + # Used to flag and report bootstrapping failures. + am_rc=0 + for am_mf do # Strip MF so we end up with the name of the file. - mf=`echo "$mf" | sed -e 's/:.*$//'` - # Check whether this is an Automake generated Makefile or not. - # We used to match only the files named 'Makefile.in', but - # some people rename them; so instead we look at the file content. - # Grep'ing the first line is not enough: some people post-process - # each Makefile.in and add a new line on top of each file to say so. - # Grep'ing the whole file is not good either: AIX grep has a line + am_mf=`$as_echo "$am_mf" | sed -e 's/:.*$//'` + # Check whether this is an Automake generated Makefile which includes + # dependency-tracking related rules and includes. + # Grep'ing the whole file directly is not great: AIX grep has a line # limit of 2048, but all sed's we know have understand at least 4000. - if sed -n 's,^#.*generated by automake.*,X,p' "$mf" | grep X >/dev/null 2>&1; then - dirpart=`$as_dirname -- "$mf" || -$as_expr X"$mf" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \ - X"$mf" : 'X\(//\)[^/]' \| \ - X"$mf" : 'X\(//\)$' \| \ - X"$mf" : 'X\(/\)' \| . 2>/dev/null || -$as_echo X"$mf" | + sed -n 's,^am--depfiles:.*,X,p' "$am_mf" | grep X >/dev/null 2>&1 \ + || continue + am_dirpart=`$as_dirname -- "$am_mf" || +$as_expr X"$am_mf" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \ + X"$am_mf" : 'X\(//\)[^/]' \| \ + X"$am_mf" : 'X\(//\)$' \| \ + X"$am_mf" : 'X\(/\)' \| . 2>/dev/null || +$as_echo X"$am_mf" | sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ s//\1/ q @@ -14876,53 +15130,48 @@ q } s/.*/./; q'` - else - continue - fi - # Extract the definition of DEPDIR, am__include, and am__quote - # from the Makefile without running 'make'. - DEPDIR=`sed -n 's/^DEPDIR = //p' < "$mf"` - test -z "$DEPDIR" && continue - am__include=`sed -n 's/^am__include = //p' < "$mf"` - test -z "$am__include" && continue - am__quote=`sed -n 's/^am__quote = //p' < "$mf"` - # Find all dependency output files, they are included files with - # $(DEPDIR) in their names. We invoke sed twice because it is the - # simplest approach to changing $(DEPDIR) to its actual value in the - # expansion. - for file in `sed -n " - s/^$am__include $am__quote\(.*(DEPDIR).*\)$am__quote"'$/\1/p' <"$mf" | \ - sed -e 's/\$(DEPDIR)/'"$DEPDIR"'/g'`; do - # Make sure the directory exists. - test -f "$dirpart/$file" && continue - fdir=`$as_dirname -- "$file" || -$as_expr X"$file" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \ - X"$file" : 'X\(//\)[^/]' \| \ - X"$file" : 'X\(//\)$' \| \ - X"$file" : 'X\(/\)' \| . 2>/dev/null || -$as_echo X"$file" | - sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ - s//\1/ - q - } - /^X\(\/\/\)[^/].*/{ + am_filepart=`$as_basename -- "$am_mf" || +$as_expr X/"$am_mf" : '.*/\([^/][^/]*\)/*$' \| \ + X"$am_mf" : 'X\(//\)$' \| \ + X"$am_mf" : 'X\(/\)' \| . 2>/dev/null || +$as_echo X/"$am_mf" | + sed '/^.*\/\([^/][^/]*\)\/*$/{ s//\1/ q } - /^X\(\/\/\)$/{ + /^X\/\(\/\/\)$/{ s//\1/ q } - /^X\(\/\).*/{ + /^X\/\(\/\).*/{ s//\1/ q } s/.*/./; q'` - as_dir=$dirpart/$fdir; as_fn_mkdir_p - # echo "creating $dirpart/$file" - echo '# dummy' > "$dirpart/$file" - done + { echo "$as_me:$LINENO: cd "$am_dirpart" \ + && sed -e '/# am--include-marker/d' "$am_filepart" \ + | $MAKE -f - am--depfiles" >&5 + (cd "$am_dirpart" \ + && sed -e '/# am--include-marker/d' "$am_filepart" \ + | $MAKE -f - am--depfiles) >&5 2>&5 + ac_status=$? + echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } || am_rc=$? done + if test $am_rc -ne 0; then + { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 +$as_echo "$as_me: error: in \`$ac_pwd':" >&2;} +as_fn_error $? "Something went wrong bootstrapping makefile fragments + for automatic dependency tracking. Try re-running configure with the + '--disable-dependency-tracking' option to at least be able to build + the package (albeit without support for automatic dependency tracking). +See \`config.log' for more details" "$LINENO" 5; } + fi + { am_dirpart=; unset am_dirpart;} + { am_filepart=; unset am_filepart;} + { am_mf=; unset am_mf;} + { am_rc=; unset am_rc;} + rm -f conftest-deps.mk } ;; "libtool":C) @@ -15084,8 +15333,11 @@ # The archiver. AR=$lt_AR +# Flags to create an archive (by configure). +lt_ar_flags=$lt_ar_flags + # Flags to create an archive. -AR_FLAGS=$lt_AR_FLAGS +AR_FLAGS=\${ARFLAGS-"\$lt_ar_flags"} # How to feed a file listing to the archiver. archiver_list_spec=$lt_archiver_list_spec diff -Nru libqmi-1.18.0/configure.ac libqmi-1.22.0/configure.ac --- libqmi-1.18.0/configure.ac 2017-03-22 12:19:49.000000000 +0100 +++ libqmi-1.22.0/configure.ac 2019-01-08 15:15:35.000000000 +0100 @@ -3,7 +3,7 @@ dnl The QMI version number m4_define([qmi_major_version], [1]) -m4_define([qmi_minor_version], [18]) +m4_define([qmi_minor_version], [22]) m4_define([qmi_micro_version], [0]) m4_define([qmi_version], [qmi_major_version.qmi_minor_version.qmi_micro_version]) @@ -16,9 +16,9 @@ dnl with old code), increment a. dnl If the interface has changed in an incompatible way (that is, dnl functions have changed or been removed), then zero a. -m4_define([qmi_glib_lt_current], [7]) +m4_define([qmi_glib_lt_current], [9]) m4_define([qmi_glib_lt_revision], [0]) -m4_define([qmi_glib_lt_age], [2]) +m4_define([qmi_glib_lt_age], [4]) AC_INIT([libqmi], [qmi_version], [libqmi-devel@lists.freedesktop.org]) @@ -80,6 +80,8 @@ GLIB_MKENUMS=`$PKG_CONFIG --variable=glib_mkenums glib-2.0` AC_SUBST(GLIB_MKENUMS) +AM_PATH_PYTHON([], [], [PYTHON=python]) + dnl qmi-firmware-update is optional, enabled by default AC_ARG_ENABLE([firmware-update], AS_HELP_STRING([--enable-firmware-update], @@ -145,7 +147,7 @@ AM_CONDITIONAL([QMI_USERNAME_ENABLED], [test "x$QMI_USERNAME_ENABLED" = "xyes"]) # MBIM QMUX service support -MBIM_GLIB_VERSION=1.14.0 +MBIM_GLIB_VERSION=1.18.0 PKG_CHECK_MODULES([MBIM], [mbim-glib >= ${MBIM_GLIB_VERSION}], [have_mbim=yes], [have_mbim=no]) AC_ARG_ENABLE(mbim-qmux, AS_HELP_STRING([--enable-mbim-qmux], [Enable support for QMI over MBIM QMUX service [default=auto]]), diff -Nru libqmi-1.18.0/data/Makefile.am libqmi-1.22.0/data/Makefile.am --- libqmi-1.18.0/data/Makefile.am 2017-03-21 14:26:54.000000000 +0100 +++ libqmi-1.22.0/data/Makefile.am 2019-01-08 14:09:47.000000000 +0100 @@ -13,4 +13,7 @@ qmi-service-uim.json \ qmi-service-oma.json \ qmi-service-wda.json \ - qmi-service-voice.json + qmi-service-voice.json \ + qmi-service-loc.json \ + qmi-service-qos.json \ + $(NULL) diff -Nru libqmi-1.18.0/data/Makefile.in libqmi-1.22.0/data/Makefile.in --- libqmi-1.18.0/data/Makefile.in 2017-03-22 12:20:25.000000000 +0100 +++ libqmi-1.22.0/data/Makefile.in 2019-01-08 15:17:16.000000000 +0100 @@ -1,7 +1,7 @@ -# Makefile.in generated by automake 1.15 from Makefile.am. +# Makefile.in generated by automake 1.16.1 from Makefile.am. # @configure_input@ -# Copyright (C) 1994-2014 Free Software Foundation, Inc. +# Copyright (C) 1994-2018 Free Software Foundation, Inc. # This Makefile.in is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, @@ -135,7 +135,7 @@ $(RECURSIVE_CLEAN_TARGETS) \ $(am__extra_recursive_targets) AM_RECURSIVE_TARGETS = $(am__recursive_targets:-recursive=) TAGS CTAGS \ - distdir + distdir distdir-am am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP) # Read a list of newline-separated strings from the standard input, # and print each of them once, without duplicates. Input order is @@ -259,6 +259,11 @@ PKG_CONFIG = @PKG_CONFIG@ PKG_CONFIG_LIBDIR = @PKG_CONFIG_LIBDIR@ PKG_CONFIG_PATH = @PKG_CONFIG_PATH@ +PYTHON = @PYTHON@ +PYTHON_EXEC_PREFIX = @PYTHON_EXEC_PREFIX@ +PYTHON_PLATFORM = @PYTHON_PLATFORM@ +PYTHON_PREFIX = @PYTHON_PREFIX@ +PYTHON_VERSION = @PYTHON_VERSION@ QMI_GLIB_LT_AGE = @QMI_GLIB_LT_AGE@ QMI_GLIB_LT_CURRENT = @QMI_GLIB_LT_CURRENT@ QMI_GLIB_LT_REVISION = @QMI_GLIB_LT_REVISION@ @@ -316,9 +321,13 @@ mkdir_p = @mkdir_p@ oldincludedir = @oldincludedir@ pdfdir = @pdfdir@ +pkgpyexecdir = @pkgpyexecdir@ +pkgpythondir = @pkgpythondir@ prefix = @prefix@ program_transform_name = @program_transform_name@ psdir = @psdir@ +pyexecdir = @pyexecdir@ +pythondir = @pythondir@ sbindir = @sbindir@ sharedstatedir = @sharedstatedir@ srcdir = @srcdir@ @@ -341,7 +350,10 @@ qmi-service-uim.json \ qmi-service-oma.json \ qmi-service-wda.json \ - qmi-service-voice.json + qmi-service-voice.json \ + qmi-service-loc.json \ + qmi-service-qos.json \ + $(NULL) all: all-recursive @@ -363,8 +375,8 @@ *config.status*) \ cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ *) \ - echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ - cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ + echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles)'; \ + cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles);; \ esac; $(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) @@ -481,7 +493,10 @@ distclean-tags: -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags -distdir: $(DISTFILES) +distdir: $(BUILT_SOURCES) + $(MAKE) $(AM_MAKEFLAGS) distdir-am + +distdir-am: $(DISTFILES) @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ list='$(DISTFILES)'; \ diff -Nru libqmi-1.18.0/data/pkg-config/Makefile.in libqmi-1.22.0/data/pkg-config/Makefile.in --- libqmi-1.18.0/data/pkg-config/Makefile.in 2017-03-22 12:20:25.000000000 +0100 +++ libqmi-1.22.0/data/pkg-config/Makefile.in 2019-01-08 15:17:16.000000000 +0100 @@ -1,7 +1,7 @@ -# Makefile.in generated by automake 1.15 from Makefile.am. +# Makefile.in generated by automake 1.16.1 from Makefile.am. # @configure_input@ -# Copyright (C) 1994-2014 Free Software Foundation, Inc. +# Copyright (C) 1994-2018 Free Software Foundation, Inc. # This Makefile.in is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, @@ -229,6 +229,11 @@ PKG_CONFIG = @PKG_CONFIG@ PKG_CONFIG_LIBDIR = @PKG_CONFIG_LIBDIR@ PKG_CONFIG_PATH = @PKG_CONFIG_PATH@ +PYTHON = @PYTHON@ +PYTHON_EXEC_PREFIX = @PYTHON_EXEC_PREFIX@ +PYTHON_PLATFORM = @PYTHON_PLATFORM@ +PYTHON_PREFIX = @PYTHON_PREFIX@ +PYTHON_VERSION = @PYTHON_VERSION@ QMI_GLIB_LT_AGE = @QMI_GLIB_LT_AGE@ QMI_GLIB_LT_CURRENT = @QMI_GLIB_LT_CURRENT@ QMI_GLIB_LT_REVISION = @QMI_GLIB_LT_REVISION@ @@ -286,9 +291,13 @@ mkdir_p = @mkdir_p@ oldincludedir = @oldincludedir@ pdfdir = @pdfdir@ +pkgpyexecdir = @pkgpyexecdir@ +pkgpythondir = @pkgpythondir@ prefix = @prefix@ program_transform_name = @program_transform_name@ psdir = @psdir@ +pyexecdir = @pyexecdir@ +pythondir = @pythondir@ sbindir = @sbindir@ sharedstatedir = @sharedstatedir@ srcdir = @srcdir@ @@ -321,8 +330,8 @@ *config.status*) \ cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ *) \ - echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ - cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ + echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles)'; \ + cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles);; \ esac; $(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) @@ -369,7 +378,10 @@ cscope cscopelist: -distdir: $(DISTFILES) +distdir: $(BUILT_SOURCES) + $(MAKE) $(AM_MAKEFLAGS) distdir-am + +distdir-am: $(DISTFILES) @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ list='$(DISTFILES)'; \ diff -Nru libqmi-1.18.0/data/qmi-common.json libqmi-1.22.0/data/qmi-common.json --- libqmi-1.18.0/data/qmi-common.json 2017-03-21 14:26:54.000000000 +0100 +++ libqmi-1.22.0/data/qmi-common.json 2019-01-08 14:09:47.000000000 +0100 @@ -3,7 +3,6 @@ "name" : "Result", "fullname" : "Qmi Message Result", "id" : "0x02", - "mandatory" : "yes", "type" : "TLV", "format" : "struct", "contents" : [ { "name" : "Error Status", @@ -29,7 +28,6 @@ { "common-ref" : "WDS Extended Error Code", "name" : "Extended Error Code", "id" : "0xE0", - "mandatory" : "no", "type" : "TLV", "format" : "guint16", "public-format" : "QmiWdsDsProfileError", @@ -43,7 +41,6 @@ { "common-ref" : "WDS Profile Identifier", "name" : "Profile Identifier", "id" : "0x01", - "mandatory" : "yes", "type" : "TLV", "format" : "sequence", "contents" : [ { "name" : "Profile Type", @@ -55,14 +52,12 @@ { "common-ref" : "WDS Profile Name", "name" : "Profile Name", "id" : "0x10", - "mandatory" : "no", "type" : "TLV", "format" : "string" }, { "common-ref" : "WDS PDP Type", "name" : "PDP Type", "id" : "0x11", - "mandatory" : "no", "type" : "TLV", "format" : "guint8", "public-format" : "QmiWdsPdpType" }, @@ -70,7 +65,6 @@ { "common-ref" : "WDS PDP Header Compression Type", "name" : "PDP Header Compression Type", "id" : "0x12", - "mandatory" : "no", "type" : "TLV", "format" : "guint8", "public-format" : "QmiWdsPdpHeaderCompressionType" }, @@ -78,7 +72,6 @@ { "common-ref" : "WDS PDP Data Compression Type", "name" : "PDP Data Compression Type", "id" : "0x13", - "mandatory" : "no", "type" : "TLV", "format" : "guint8", "public-format" : "QmiWdsPdpDataCompressionType" }, @@ -86,14 +79,12 @@ { "common-ref" : "WDS APN Name", "name" : "APN Name", "id" : "0x14", - "mandatory" : "no", "type" : "TLV", "format" : "string" }, { "common-ref" : "WDS Primary IPv4 DNS Address", "name" : "Primary IPv4 DNS Address", "id" : "0x15", - "mandatory" : "no", "type" : "TLV", "endian" : "little", "format" : "guint32" }, @@ -101,7 +92,6 @@ { "common-ref" : "WDS Secondary IPv4 DNS Address", "name" : "Secondary IPv4 DNS Address", "id" : "0x16", - "mandatory" : "no", "type" : "TLV", "endian" : "little", "format" : "guint32" }, @@ -109,7 +99,6 @@ { "common-ref" : "WDS UMTS Requested QoS", "name" : "UMTS Requested QoS", "id" : "0x17", - "mandatory" : "no", "type" : "TLV", "format" : "sequence", "contents" : [ { "name" : "Traffic Class", @@ -145,7 +134,6 @@ { "common-ref" : "WDS UMTS Minimum QoS", "name" : "UMTS Minimum QoS", "id" : "0x18", - "mandatory" : "no", "type" : "TLV", "format" : "sequence", "contents" : [ { "name" : "Traffic Class", @@ -181,7 +169,6 @@ { "common-ref" : "WDS GPRS Requested QoS", "name" : "GPRS Requested QoS", "id" : "0x19", - "mandatory" : "no", "type" : "TLV", "format" : "sequence", "contents" : [ { "name" : "Precedence Class", @@ -198,7 +185,6 @@ { "common-ref" : "WDS GPRS Minimum QoS", "name" : "GPRS Minimum QoS", "id" : "0x1A", - "mandatory" : "no", "type" : "TLV", "format" : "sequence", "contents" : [ { "name" : "Precedence Class", @@ -215,21 +201,18 @@ { "common-ref" : "WDS Username", "name" : "Username", "id" : "0x1B", - "mandatory" : "no", "type" : "TLV", "format" : "string" }, { "common-ref" : "WDS Password", "name" : "Password", "id" : "0x1C", - "mandatory" : "no", "type" : "TLV", "format" : "string" }, { "common-ref" : "WDS Authentication", "name" : "Authentication", "id" : "0x1D", - "mandatory" : "no", "type" : "TLV", "format" : "guint8", "public-format" : "QmiWdsAuthentication" }, @@ -237,7 +220,6 @@ { "common-ref" : "WDS IPv4 Address Preference", "name" : "IPv4 Address Preference", "id" : "0x1E", - "mandatory" : "no", "type" : "TLV", "endian" : "little", "format" : "guint32" }, @@ -245,7 +227,6 @@ { "common-ref" : "WDS PCSCF Address Using PCO", "name" : "PCSCF Address Using PCO", "id" : "0x1F", - "mandatory" : "no", "type" : "TLV", "format" : "guint8", "public-format" : "gboolean" }, @@ -253,7 +234,6 @@ { "common-ref" : "WDS PCSCF Address Using DHCP", "name" : "PCSCF Address Using DHCP", "id" : "0x21", - "mandatory" : "no", "type" : "TLV", "format" : "guint8", "public-format" : "gboolean" }, @@ -261,7 +241,6 @@ { "common-ref" : "WDS IMCN Flag", "name" : "IMCN Flag", "id" : "0x22", - "mandatory" : "no", "type" : "TLV", "format" : "guint8", "public-format" : "gboolean" }, @@ -269,14 +248,12 @@ { "common-ref" : "WDS PDP Context Number", "name" : "PDP Context Number", "id" : "0x25", - "mandatory" : "no", "type" : "TLV", "format" : "guint8" }, { "common-ref" : "WDS PDP Context Secondary Flag", "name" : "PDP Context Secondary Flag", "id" : "0x26", - "mandatory" : "no", "type" : "TLV", "format" : "guint8", "public-format" : "gboolean" }, @@ -284,14 +261,12 @@ { "common-ref" : "WDS PDP Context Primary ID", "name" : "PDP Context Primary ID", "id" : "0x27", - "mandatory" : "no", "type" : "TLV", "format" : "guint8" }, { "common-ref" : "WDS IPv6 Address Preference", "name" : "IPv6 Address Preference", "id" : "0x28", - "mandatory" : "no", "type" : "TLV", "format" : "sequence", "contents" : [ { "name" : "Address", @@ -302,7 +277,6 @@ { "common-ref" : "WDS UMTS Requested QoS With Signaling Indication Flag", "name" : "UMTS Requested QoS With Signaling Indication Flag", "id" : "0x29", - "mandatory" : "no", "type" : "TLV", "format" : "sequence", "contents" : [ { "name" : "Traffic Class", @@ -340,7 +314,6 @@ { "common-ref" : "WDS UMTS Minimum QoS With Signaling Indication Flag", "name" : "UMTS Minimum QoS With Signaling Indication Flag", "id" : "0x2A", - "mandatory" : "no", "type" : "TLV", "format" : "sequence", "contents" : [ { "name" : "Traffic Class", @@ -378,7 +351,6 @@ { "common-ref" : "WDS IPv6 Primary DNS Address Preference", "name" : "IPv6 Primary DNS Address Preference", "id" : "0x2B", - "mandatory" : "no", "type" : "TLV", "format" : "array", "fixed-size" : "8", @@ -387,7 +359,6 @@ { "common-ref" : "WDS IPv6 Secondary DNS Address Preference", "name" : "IPv6 Secondary DNS Address Preference", "id" : "0x2C", - "mandatory" : "no", "type" : "TLV", "format" : "array", "fixed-size" : "8", @@ -396,7 +367,6 @@ { "common-ref" : "WDS LTE QoS Parameters", "name" : "LTE QoS Parameters", "id" : "0x2E", - "mandatory" : "no", "type" : "TLV", "format" : "sequence", "contents" : [ { "name" : "QoS Class Identifier", @@ -411,13 +381,27 @@ { "name" : "Max Uplink Bitrate", "format" : "guint32" } ] }, + { "common-ref" : "WDS APN Disabled Flag", + "name" : "APN Disabled Flag", + "id" : "0x2F", + "type" : "TLV", + "format" : "guint8", + "public-format" : "gboolean" }, + + { "common-ref" : "WDS Roaming Disallowed Flag", + "name" : "Roaming Disallowed Flag", + "id" : "0x3E", + "type" : "TLV", + "format" : "guint8", + "public-format" : "gboolean" }, + + // ********************************************************************************* // NAS common TLVs { "common-ref" : "NAS Service Provider Name", "name" : "Service Provider Name", "id" : "0x10", - "mandatory" : "no", "type" : "TLV", "format" : "sequence", "contents" : [ { "name" : "Name Display Condition", @@ -429,7 +413,6 @@ { "common-ref" : "NAS Operator PLMN List", "name" : "Operator PLMN List", "id" : "0x11", - "mandatory" : "no", "type" : "TLV", "format" : "array", "size-prefix-format" : "guint16", @@ -451,7 +434,6 @@ { "common-ref" : "NAS Operator PLMN Name", "name" : "Operator PLMN Name", "id" : "0x12", - "mandatory" : "no", "type" : "TLV", "format" : "array", "array-element" : { "name" : "Element", @@ -478,14 +460,12 @@ { "common-ref" : "NAS Operator String Name", "name" : "Operator String Name", "id" : "0x13", - "mandatory" : "no", "type" : "TLV", "format" : "string" }, { "common-ref" : "NAS Operator NITZ Information", "name" : "Operator NITZ Information", "id" : "0x14", - "mandatory" : "no", "type" : "TLV", "format" : "sequence", "contents" : [ { "name" : "Name Encoding", diff -Nru libqmi-1.18.0/data/qmi-service-ctl.json libqmi-1.22.0/data/qmi-service-ctl.json --- libqmi-1.18.0/data/qmi-service-ctl.json 2017-03-21 14:26:54.000000000 +0100 +++ libqmi-1.22.0/data/qmi-service-ctl.json 2019-01-08 14:09:47.000000000 +0100 @@ -25,14 +25,12 @@ "since" : "1.0", "input" : [ { "name" : "ID", "id" : "0x01", - "mandatory" : "yes", "type" : "TLV", "since" : "1.0", "format" : "guint8" } ], "output" : [ { "common-ref" : "Operation Result" }, { "name" : "Link ID", "id" : "0x01", - "mandatory" : "yes", "type" : "TLV", "since" : "1.0", "format" : "guint16", @@ -47,7 +45,6 @@ "output" : [ { "common-ref" : "Operation Result" }, { "name" : "Service list", "id" : "0x01", - "mandatory" : "yes", "type" : "TLV", "since" : "1.0", "format" : "array", @@ -70,7 +67,6 @@ "since" : "1.0", "input" : [ { "name" : "Service", "id" : "0x01", - "mandatory" : "yes", "type" : "TLV", "since" : "1.0", "format" : "guint8" , @@ -78,7 +74,6 @@ "output" : [ { "common-ref" : "Operation Result" }, { "name" : "Allocation Info", "id" : "0x01", - "mandatory" : "yes", "type" : "TLV", "since" : "1.0", "format" : "sequence", @@ -97,7 +92,6 @@ "since" : "1.0", "input" : [ { "name" : "Release Info", "id" : "0x01", - "mandatory" : "yes", "type" : "TLV", "since" : "1.0", "format" : "sequence", @@ -109,7 +103,6 @@ "output" : [ { "common-ref" : "Operation Result" }, { "name" : "Release Info", "id" : "0x01", - "mandatory" : "yes", "type" : "TLV", "since" : "1.0", "format" : "sequence", @@ -128,14 +121,12 @@ "since" : "1.0", "input" : [ { "name" : "Format", "id" : "0x01", - "mandatory" : "yes", "type" : "TLV", "since" : "1.0", "format" : "guint8", "public-format" : "QmiCtlDataFormat" }, { "name" : "Protocol", "id" : "0x10", - "mandatory" : "yes", "type" : "TLV", "since" : "1.0", "format" : "guint16", @@ -143,7 +134,7 @@ "output" : [ { "common-ref" : "Operation Result" }, { "name" : "Protocol", "id" : "0x10", - "mandatory" : "no", + "mandatory" : "yes", "type" : "TLV", "since" : "1.0", "format" : "guint16", @@ -173,7 +164,6 @@ "since" : "1.8", "input" : [ { "name" : "Device Path", "id" : "0x01", - "mandatory" : "yes", "type" : "TLV", "since" : "1.8", "format" : "string" } ], diff -Nru libqmi-1.18.0/data/qmi-service-dms.json libqmi-1.22.0/data/qmi-service-dms.json --- libqmi-1.18.0/data/qmi-service-dms.json 2017-03-21 14:26:54.000000000 +0100 +++ libqmi-1.22.0/data/qmi-service-dms.json 2019-01-08 14:09:47.000000000 +0100 @@ -35,14 +35,12 @@ "since" : "1.0", "input" : [ { "name" : "Power State Reporting", "id" : "0x10", - "mandatory" : "no", "type" : "TLV", "since" : "1.0", "format" : "guint8", "public-format" : "gboolean" }, { "name" : "Battery Level Report Limits", "id" : "0x11", - "mandatory" : "no", "type" : "TLV", "since" : "1.0", "format" : "sequence", @@ -52,42 +50,36 @@ "format" : "guint8" } ] }, { "name" : "PIN State Reporting", "id" : "0x12", - "mandatory" : "no", "type" : "TLV", "since" : "1.0", "format" : "guint8", "public-format" : "gboolean" }, { "name" : "Activation State Reporting", "id" : "0x13", - "mandatory" : "no", "type" : "TLV", "since" : "1.0", "format" : "guint8", "public-format" : "gboolean" }, { "name" : "Operating Mode Reporting", "id" : "0x14", - "mandatory" : "no", "type" : "TLV", "since" : "1.0", "format" : "guint8", "public-format" : "gboolean" }, { "name" : "UIM State Reporting", "id" : "0x15", - "mandatory" : "no", "type" : "TLV", "since" : "1.0", "format" : "guint8", "public-format" : "gboolean" }, { "name" : "Wireless Disable State Reporting", "id" : "0x16", - "mandatory" : "no", "type" : "TLV", "since" : "1.0", "format" : "guint8", "public-format" : "gboolean" }, { "name" : "PRL Init Reporting", "id" : "0x17", - "mandatory" : "no", "type" : "TLV", "since" : "1.0", "format" : "guint8", @@ -101,7 +93,6 @@ "since" : "1.0", "output" : [ { "name" : "Power State", "id" : "0x10", - "mandatory" : "no", "type" : "TLV", "since" : "1.0", "format" : "sequence", @@ -111,7 +102,6 @@ "format" : "guint8" } ] }, { "name" : "PIN1 Status", "id" : "0x11", - "mandatory" : "no", "type" : "TLV", "since" : "1.0", "format" : "sequence", @@ -124,7 +114,6 @@ "format" : "guint8" } ] }, { "name" : "PIN2 Status", "id" : "0x12", - "mandatory" : "no", "type" : "TLV", "since" : "1.0", "format" : "sequence", @@ -137,35 +126,30 @@ "format" : "guint8" } ] }, { "name" : "Activation State", "id" : "0x13", - "mandatory" : "no", "type" : "TLV", "since" : "1.0", "format" : "guint16", "public-format" : "QmiDmsActivationState" }, { "name" : "Operating Mode", "id" : "0x14", - "mandatory" : "no", "type" : "TLV", "since" : "1.0", "format" : "guint8", "public-format" : "QmiDmsOperatingMode" }, { "name" : "UIM State", "id" : "0x15", - "mandatory" : "no", "type" : "TLV", "since" : "1.0", "format" : "guint8", "public-format" : "QmiDmsUimState" }, { "name" : "Wireless Disable State", "id" : "0x16", - "mandatory" : "no", "type" : "TLV", "since" : "1.0", "format" : "guint8", "public-format" : "gboolean" }, { "name" : "PRL Init Notification", "id" : "0x17", - "mandatory" : "no", "type" : "TLV", "since" : "1.0", "format" : "guint8", @@ -181,7 +165,6 @@ "output" : [ { "common-ref" : "Operation Result" }, { "name" : "Info", "id" : "0x01", - "mandatory" : "yes", "type" : "TLV", "since" : "1.0", "format" : "sequence", @@ -211,7 +194,6 @@ "output" : [ { "common-ref" : "Operation Result" }, { "name" : "Manufacturer", "id" : "0x01", - "mandatory" : "yes", "type" : "TLV", "since" : "1.0", "format" : "string", @@ -227,7 +209,6 @@ "output" : [ { "common-ref" : "Operation Result" }, { "name" : "Model", "id" : "0x01", - "mandatory" : "yes", "type" : "TLV", "since" : "1.0", "format" : "string", @@ -243,7 +224,6 @@ "output" : [ { "common-ref" : "Operation Result" }, { "name" : "Revision", "id" : "0x01", - "mandatory" : "yes", "type" : "TLV", "since" : "1.0", "format" : "string", @@ -259,7 +239,6 @@ "output" : [ { "common-ref" : "Operation Result" }, { "name" : "MSISDN", "id" : "0x01", - "mandatory" : "yes", "type" : "TLV", "since" : "1.0", "format" : "string", @@ -275,14 +254,12 @@ "output" : [ { "common-ref" : "Operation Result" }, { "name" : "Esn", "id" : "0x10", - "mandatory" : "no", "type" : "TLV", "since" : "1.0", "format" : "string", "prerequisites": [ { "common-ref" : "Success" } ] }, { "name" : "Imei", "id" : "0x11", - "mandatory" : "no", "type" : "TLV", "since" : "1.0", "format" : "string", @@ -290,7 +267,6 @@ "prerequisites": [ { "common-ref" : "Success" } ] }, { "name" : "Meid", "id" : "0x12", - "mandatory" : "no", "type" : "TLV", "since" : "1.0", "format" : "string", @@ -306,7 +282,6 @@ "output" : [ { "common-ref" : "Operation Result" }, { "name" : "Info", "id" : "0x01", - "mandatory" : "yes", "type" : "TLV", "since" : "1.0", "format" : "sequence", @@ -325,7 +300,6 @@ "since" : "1.0", "input" : [ { "name" : "Info", "id" : "0x01", - "mandatory" : "yes", "type" : "TLV", "since" : "1.0", "format" : "sequence", @@ -340,7 +314,6 @@ "output" : [ { "common-ref" : "Operation Result" }, { "name" : "Pin Retries Status", "id" : "0x10", - "mandatory" : "no", "type" : "TLV", "since" : "1.0", "format" : "sequence", @@ -359,7 +332,6 @@ "since" : "1.0", "input" : [ { "name" : "Info", "id" : "0x01", - "mandatory" : "yes", "type" : "TLV", "since" : "1.0", "format" : "sequence", @@ -371,7 +343,6 @@ "output" : [ { "common-ref" : "Operation Result" }, { "name" : "Pin Retries Status", "id" : "0x10", - "mandatory" : "no", "type" : "TLV", "since" : "1.0", "format" : "sequence", @@ -390,7 +361,6 @@ "since" : "1.0", "input" : [ { "name" : "Info", "id" : "0x01", - "mandatory" : "yes", "type" : "TLV", "since" : "1.0", "format" : "sequence", @@ -404,7 +374,6 @@ "output" : [ { "common-ref" : "Operation Result" }, { "name" : "Pin Retries Status", "id" : "0x10", - "mandatory" : "no", "type" : "TLV", "since" : "1.0", "format" : "sequence", @@ -423,7 +392,6 @@ "since" : "1.0", "input" : [ { "name" : "Info", "id" : "0x01", - "mandatory" : "yes", "type" : "TLV", "since" : "1.0", "format" : "sequence", @@ -437,7 +405,6 @@ "output" : [ { "common-ref" : "Operation Result" }, { "name" : "Pin Retries Status", "id" : "0x10", - "mandatory" : "no", "type" : "TLV", "since" : "1.0", "format" : "sequence", @@ -457,7 +424,6 @@ "output" : [ { "common-ref" : "Operation Result" }, { "name" : "PIN1 Status", "id" : "0x11", - "mandatory" : "no", "type" : "TLV", "since" : "1.0", "format" : "sequence", @@ -470,7 +436,6 @@ "format" : "guint8" } ] }, { "name" : "PIN2 Status", "id" : "0x12", - "mandatory" : "no", "type" : "TLV", "since" : "1.0", "format" : "sequence", @@ -492,7 +457,6 @@ "output" : [ { "common-ref" : "Operation Result" }, { "name" : "Revision", "id" : "0x01", - "mandatory" : "yes", "type" : "TLV", "since" : "1.0", "format" : "string", @@ -508,7 +472,6 @@ "output" : [ { "common-ref" : "Operation Result" }, { "name" : "Mode", "id" : "0x01", - "mandatory" : "yes", "type" : "TLV", "since" : "1.0", "format" : "guint8", @@ -516,7 +479,6 @@ "prerequisites": [ { "common-ref" : "Success" } ] }, { "name" : "Offline Reason", "id" : "0x10", - "mandatory" : "no", "type" : "TLV", "since" : "1.0", "format" : "guint16", @@ -526,7 +488,6 @@ "value" : "QMI_DMS_OPERATING_MODE_OFFLINE" } ] }, { "name" : "Hardware Restricted Mode", "id" : "0x11", - "mandatory" : "no", "type" : "TLV", "since" : "1.0", "format" : "guint8", @@ -542,7 +503,6 @@ "since" : "1.0", "input" : [ { "name" : "Mode", "id" : "0x01", - "mandatory" : "yes", "type" : "TLV", "since" : "1.0", "format" : "guint8", @@ -559,7 +519,6 @@ "output" : [ { "common-ref" : "Operation Result" }, { "name" : "Device Time", "id" : "0x01", - "mandatory" : "yes", "type" : "TLV", "since" : "1.0", "format" : "sequence", @@ -572,14 +531,12 @@ "prerequisites": [ { "common-ref" : "Success" } ] }, { "name" : "System Time", "id" : "0x10", - "mandatory" : "no", "type" : "TLV", "since" : "1.0", "format" : "guint64", "prerequisites": [ { "common-ref" : "Success" } ] }, { "name" : "User Time", "id" : "0x11", - "mandatory" : "no", "type" : "TLV", "since" : "1.0", "format" : "guint64", @@ -595,14 +552,12 @@ "output" : [ { "common-ref" : "Operation Result" }, { "name" : "Version", "id" : "0x01", - "mandatory" : "yes", "type" : "TLV", "since" : "1.0", "format" : "guint16", "prerequisites": [ { "common-ref" : "Success" } ] }, { "name" : "PRL Only Preference", "id" : "0x10", - "mandatory" : "no", "type" : "TLV", "since" : "1.0", "format" : "guint8", @@ -619,7 +574,6 @@ "output" : [ { "common-ref" : "Operation Result" }, { "name" : "Info", "id" : "0x01", - "mandatory" : "yes", "type" : "TLV", "since" : "1.0", "format" : "guint16", @@ -635,7 +589,6 @@ "since" : "1.0", "input" : [ { "name" : "Activation Code", "id" : "0x01", - "mandatory" : "yes", "type" : "TLV", "since" : "1.0", "format" : "string", @@ -651,7 +604,6 @@ "since" : "1.0", "input" : [ { "name" : "Info", "id" : "0x01", - "mandatory" : "yes", "type" : "TLV", // API updated in 1.6 "since" : "1.6", @@ -669,7 +621,6 @@ "max-size" : "15" } ] }, { "name" : "MN HA key", "id" : "0x11", - "mandatory" : "no", "type" : "TLV", "since" : "1.0", "format" : "string", @@ -677,7 +628,6 @@ "size-prefix-format" : "guint8" }, { "name" : "MN AAA key", "id" : "0x12", - "mandatory" : "no", "type" : "TLV", "since" : "1.0", "format" : "string", @@ -685,7 +635,6 @@ "size-prefix-format" : "guint8" }, { "name" : "PRL", "id" : "0x13", - "mandatory" : "no", "type" : "TLV", "since" : "1.6", "format" : "sequence", @@ -708,7 +657,6 @@ "output" : [ { "common-ref" : "Operation Result" }, { "name" : "Enabled", "id" : "0x01", - "mandatory" : "yes", "type" : "TLV", "since" : "1.0", "format" : "guint8", @@ -724,7 +672,6 @@ "since" : "1.0", "input" : [ { "name" : "Info", "id" : "0x01", - "mandatory" : "yes", "type" : "TLV", "since" : "1.0", "format" : "sequence", @@ -745,7 +692,6 @@ "since" : "1.0", "input" : [ { "name" : "Info", "id" : "0x01", - "mandatory" : "yes", "type" : "TLV", "since" : "1.0", "format" : "sequence", @@ -767,7 +713,6 @@ "output" : [ { "common-ref" : "Operation Result" }, { "name" : "User Data", "id" : "0x01", - "mandatory" : "yes", "type" : "TLV", "since" : "1.0", "format" : "array", @@ -784,7 +729,6 @@ "since" : "1.0", "input" : [ { "name" : "User Data", "id" : "0x01", - "mandatory" : "yes", "type" : "TLV", "since" : "1.0", "format" : "array", @@ -802,7 +746,6 @@ "output" : [ { "common-ref" : "Operation Result" }, { "name" : "ERI File", "id" : "0x01", - "mandatory" : "yes", "type" : "TLV", "since" : "1.0", "format" : "array", @@ -815,11 +758,10 @@ "type" : "Message", "service" : "DMS", "id" : "0x003A", - "version" : "1.6", + "version" : "1.0", "since" : "1.0", "input" : [ { "name" : "Service Programming Code", "id" : "0x01", - "mandatory" : "yes", "type" : "TLV", "since" : "1.0", "format" : "string", @@ -831,11 +773,10 @@ "type" : "Message", "service" : "DMS", "id" : "0x003B", - "version" : "1.3", + "version" : "1.0", "since" : "1.0", "input" : [ { "name" : "Service Programming Code", "id" : "0x01", - "mandatory" : "yes", "type" : "TLV", "since" : "1.0", "format" : "string", @@ -852,7 +793,6 @@ "output" : [ { "common-ref" : "Operation Result" }, { "name" : "ICCID", "id" : "0x01", - "mandatory" : "yes", "type" : "TLV", "since" : "1.0", "format" : "string", @@ -876,7 +816,6 @@ "since" : "1.0", "input" : [ { "name" : "Facility", "id" : "0x01", - "mandatory" : "yes", "type" : "TLV", "since" : "1.0", "format" : "guint8", @@ -884,7 +823,6 @@ "output" : [ { "common-ref" : "Operation Result" }, { "name" : "CK Status", "id" : "0x01", - "mandatory" : "yes", "type" : "TLV", "since" : "1.0", "format" : "sequence", @@ -898,7 +836,6 @@ "prerequisites": [ { "common-ref" : "Success" } ] }, { "name" : "Operation Blocking Facility", "id" : "0x10", - "mandatory" : "false", "type" : "TLV", "since" : "1.0", "format" : "guint8", @@ -914,7 +851,6 @@ "since" : "1.0", "input" : [ { "name" : "Facility", "id" : "0x01", - "mandatory" : "yes", "type" : "TLV", "since" : "1.0", "format" : "sequence", @@ -929,7 +865,6 @@ "output" : [ { "common-ref" : "Operation Result" }, { "name" : "Verify Retries Left", "id" : "0x10", - "mandatory" : "no", "type" : "TLV", "since" : "1.0", "format" : "guint8" } ] }, @@ -943,7 +878,6 @@ "since" : "1.0", "input" : [ { "name" : "Facility", "id" : "0x01", - "mandatory" : "yes", "type" : "TLV", "since" : "1.0", "format" : "sequence", @@ -955,7 +889,6 @@ "output" : [ { "common-ref" : "Operation Result" }, { "name" : "Unblock Retries Left", "id" : "0x10", - "mandatory" : "no", "type" : "TLV", "since" : "1.0", "format" : "guint8" } ] }, @@ -970,7 +903,6 @@ "output" : [ { "common-ref" : "Operation Result" }, { "name" : "IMSI", "id" : "0x01", - "mandatory" : "yes", "type" : "TLV", "since" : "1.0", "format" : "string", @@ -986,7 +918,6 @@ "output" : [ { "common-ref" : "Operation Result" }, { "name" : "State", "id" : "0x01", - "mandatory" : "yes", "type" : "TLV", "since" : "1.0", "format" : "guint8", @@ -1003,7 +934,6 @@ "output" : [ { "common-ref" : "Operation Result" }, { "name" : "Band Capability", "id" : "0x01", - "mandatory" : "yes", "type" : "TLV", "since" : "1.0", "format" : "guint64", @@ -1011,12 +941,19 @@ "prerequisites": [ { "common-ref" : "Success" } ] }, { "name" : "LTE Band Capability", "id" : "0x10", - "mandatory" : "no", "type" : "TLV", "since" : "1.0", "format" : "guint64", "public-format" : "QmiDmsLteBandCapability", - "prerequisites": [ { "common-ref" : "Success" } ] } ] }, + "prerequisites": [ { "common-ref" : "Success" } ] }, + { "name" : "Extended LTE Band Capability", + "id" : "0x12", + "type" : "TLV", + "since" : "1.20", + "format" : "array", + "size-prefix-format" : "guint16", + "array-element" : { "format" : "guint16" }, + "prerequisites" : [ { "common-ref" : "Success" } ] } ] }, // ********************************************************************************* { "name" : "Get Factory SKU", @@ -1028,7 +965,6 @@ "output" : [ { "common-ref" : "Operation Result" }, { "name" : "SKU", "id" : "0x01", - "mandatory" : "yes", "type" : "TLV", "since" : "1.0", "format" : "string", @@ -1044,7 +980,6 @@ "output" : [ { "common-ref" : "Operation Result" }, { "name" : "List", "id" : "0x01", - "mandatory" : "yes", "type" : "TLV", "since" : "1.0", "format" : "array", @@ -1070,7 +1005,6 @@ "since" : "1.0", "input" : [ { "name" : "List", "id" : "0x01", - "mandatory" : "yes", "type" : "TLV", "since" : "1.0", "format" : "array", @@ -1087,21 +1021,18 @@ "format" : "string" } ] } }, { "name" : "Download Override", "id" : "0x10", - "mandatory" : "no", "type" : "TLV", "since" : "1.0", "format" : "guint8", "public-format" : "gboolean" }, { "name" : "Modem Storage Index", "id" : "0x11", - "mandatory" : "no", "type" : "TLV", "since" : "1.0", "format" : "guint8" } ], "output" : [ { "common-ref" : "Operation Result" }, { "name" : "Image Download List", "id" : "0x01", - "mandatory" : "yes", "type" : "TLV", "since" : "1.0", "format" : "array", @@ -1120,7 +1051,6 @@ "output" : [ { "common-ref" : "Operation Result" }, { "name" : "List", "id" : "0x01", - "mandatory" : "yes", "type" : "TLV", "since" : "1.0", "format" : "array", @@ -1158,7 +1088,6 @@ "since" : "1.0", "input" : [ { "name" : "Image", "id" : "0x01", - "mandatory" : "yes", "type" : "TLV", "since" : "1.0", "format" : "struct", @@ -1182,7 +1111,6 @@ "since" : "1.0", "input" : [ { "name" : "Time Value", "id" : "0x01", - "mandatory" : "yes", "type" : "TLV", "since" : "1.0", "format" : "guint64" }, @@ -1204,7 +1132,6 @@ "since" : "1.0", "input" : [ { "name" : "Image", "id" : "0x01", - "mandatory" : "yes", "type" : "TLV", "since" : "1.0", "format" : "struct", @@ -1220,7 +1147,6 @@ "output" : [ { "common-ref" : "Operation Result" }, { "name" : "Boot Version", "id" : "0x10", - "mandatory" : "no", "type" : "TLV", "since" : "1.0", "format" : "sequence", @@ -1231,7 +1157,6 @@ "prerequisites": [ { "common-ref" : "Success" } ] }, { "name" : "PRI Version", "id" : "0x11", - "mandatory" : "no", "type" : "TLV", "since" : "1.0", "format" : "sequence", @@ -1243,7 +1168,6 @@ "prerequisites": [ { "common-ref" : "Success" } ] }, { "name" : "OEM Lock ID", "id" : "0x12", - "mandatory" : "no", "type" : "TLV", "since" : "1.0", "format" : "guint32", @@ -1259,7 +1183,6 @@ "output" : [ { "common-ref" : "Operation Result" }, { "name" : "Config", "id" : "0x01", - "mandatory" : "yes", "type" : "TLV", "since" : "1.0", "format" : "guint8", @@ -1275,7 +1198,6 @@ "since" : "1.0", "input" : [ { "name" : "Config", "id" : "0x01", - "mandatory" : "yes", "type" : "TLV", "since" : "1.0", "format" : "guint8", @@ -1292,7 +1214,6 @@ "output" : [ { "common-ref" : "Operation Result" }, { "name" : "Mode", "id" : "0x10", - "mandatory" : "no", "type" : "TLV", "since" : "1.18", "format" : "guint8", @@ -1308,7 +1229,6 @@ "since" : "1.18", "input" : [ { "name" : "Mode", "id" : "0x01", - "mandatory" : "yes", "type" : "TLV", "since" : "1.18", "format" : "guint8", @@ -1325,7 +1245,6 @@ "output" : [ { "common-ref" : "Operation Result" }, { "name" : "Version", "id" : "0x01", - "mandatory" : "yes", "type" : "TLV", "since" : "1.0", "format" : "string", @@ -1340,14 +1259,12 @@ "since" : "1.0", "input" : [ { "name" : "Current Code", "id" : "0x01", - "mandatory" : "yes", "type" : "TLV", "since" : "1.0", "format" : "string", "fixed-size" : "6" }, { "name" : "New Code", "id" : "0x02", - "mandatory" : "yes", "type" : "TLV", "since" : "1.0", "format" : "string", @@ -1364,7 +1281,6 @@ "output" : [ { "common-ref" : "Operation Result" }, { "name" : "List", "id" : "0x10", - "mandatory" : "no", "type" : "TLV", "since" : "1.14", "format" : "array", @@ -1382,7 +1298,6 @@ "since" : "1.18", "input" : [ { "name" : "Mode", "id" : "0x01", - "mandatory" : "yes", "type" : "TLV", "since" : "1.18", "format" : "guint8", @@ -1400,69 +1315,100 @@ "output" : [ { "common-ref" : "Operation Result" }, { "name" : "Model", "id" : "0x10", - "mandatory" : "no", "type" : "TLV", "since" : "1.18", "format" : "string", "prerequisites" : [ { "common-ref" : "Success" } ] }, { "name" : "Boot version", "id" : "0x11", - "mandatory" : "no", "type" : "TLV", "since" : "1.18", "format" : "string", "prerequisites" : [ { "common-ref" : "Success" } ] }, { "name" : "AMSS version", "id" : "0x12", - "mandatory" : "no", "type" : "TLV", "since" : "1.18", "format" : "string", "prerequisites" : [ { "common-ref" : "Success" } ] }, { "name" : "SKU ID", "id" : "0x13", - "mandatory" : "no", "type" : "TLV", "since" : "1.18", "format" : "string", "prerequisites" : [ { "common-ref" : "Success" } ] }, { "name" : "Package ID", "id" : "0x14", - "mandatory" : "no", "type" : "TLV", "since" : "1.18", "format" : "string", "prerequisites" : [ { "common-ref" : "Success" } ] }, { "name" : "Carrier ID", "id" : "0x15", - "mandatory" : "no", "type" : "TLV", "since" : "1.18", "format" : "string", "prerequisites" : [ { "common-ref" : "Success" } ] }, { "name" : "PRI version", "id" : "0x16", - "mandatory" : "no", "type" : "TLV", "since" : "1.18", "format" : "string", "prerequisites" : [ { "common-ref" : "Success" } ] }, { "name" : "Carrier", "id" : "0x17", - "mandatory" : "no", "type" : "TLV", "since" : "1.18", "format" : "string", "prerequisites" : [ { "common-ref" : "Success" } ] }, { "name" : "Config version", "id" : "0x18", - "mandatory" : "no", "type" : "TLV", "since" : "1.18", "format" : "string", "prerequisites" : [ { "common-ref" : "Success" } ] } ] }, // ********************************************************************************* + { "name" : "Swi Get USB Composition", + "type" : "Message", + "service" : "DMS", + "id" : "0x555B", + "vendor" : "0x1199", + "since" : "1.20", + "output" : [ { "common-ref" : "Operation Result" }, + { "name" : "Current", + "id" : "0x10", + "type" : "TLV", + "since" : "1.20", + "format" : "guint8", + "public-format" : "QmiDmsSwiUsbComposition", + "prerequisites" : [ { "common-ref" : "Success" } ] }, + { "name" : "Supported", + "id" : "0x11", + "type" : "TLV", + "since" : "1.20", + "format" : "array", + "array-element" : { "format" : "guint8", + "public-format" : "QmiDmsSwiUsbComposition" }, + "prerequisites" : [ { "common-ref" : "Success" } ] } ] }, + + // ********************************************************************************* + { "name" : "Swi Set USB Composition", + "type" : "Message", + "service" : "DMS", + "id" : "0x555C", + "vendor" : "0x1199", + "since" : "1.20", + "input" : [ { "name" : "Current", + "id" : "0x01", + "type" : "TLV", + "since" : "1.20", + "format" : "guint8", + "public-format" : "QmiDmsSwiUsbComposition" + } ], + "output" : [ { "common-ref" : "Operation Result" } ] }, + + // ********************************************************************************* { "name" : "Set FCC Authentication", "type" : "Message", "service" : "DMS", diff -Nru libqmi-1.18.0/data/qmi-service-loc.json libqmi-1.22.0/data/qmi-service-loc.json --- libqmi-1.18.0/data/qmi-service-loc.json 1970-01-01 01:00:00.000000000 +0100 +++ libqmi-1.22.0/data/qmi-service-loc.json 2019-01-08 14:09:47.000000000 +0100 @@ -0,0 +1,684 @@ + +[ + // ********************************************************************************* + { "name" : "LOC", + "type" : "Service" }, + + // ********************************************************************************* + { "name" : "QMI Client LOC", + "type" : "Client", + "since" : "1.0" }, + + // ********************************************************************************* + { "name" : "QMI Message LOC", + "type" : "Message-ID-Enum" }, + + { "name" : "QMI Indication LOC", + "type" : "Indication-ID-Enum" }, + + // ********************************************************************************* + + { "common-ref" : "LOC Indication Status", + "name" : "Indication Status", + "fullname" : "Qmi LOC Message Status", + "id" : "0x01", + "mandatory" : "yes", + "type" : "TLV", + "since" : "1.22", + "format" : "guint32", + "public-format" : "QmiLocIndicationStatus" }, + + { "common-ref" : "LOC Fix Recurrence Type", + "name" : "Fix Recurrence Type", + "id" : "0x10", + "mandatory" : "no", + "type" : "TLV", + "since" : "1.22", + "format" : "guint32", + "public-format" : "QmiLocFixRecurrenceType" }, + + { "common-ref" : "LOC Server IPv4", + "name" : "IPv4", + "id" : "0x10", + "type" : "TLV", + "since" : "1.22", + "format" : "sequence", + "contents" : [ { "name" : "IPv4 Address", + "format" : "guint32", + "endian" : "little" }, + { "name" : "IPv4 Port", + "format" : "guint16" } ] }, + + { "common-ref" : "LOC Server IPv6", + "name" : "IPv6", + "id" : "0x11", + "type" : "TLV", + "since" : "1.22", + "format" : "sequence", + "contents" : [ { "name" : "IPv6 Address", + "format" : "array", + "array-element" : { "format" : "guint16", + "endian" : "network" } , + "fixed-size" : "8" }, + { "name" : "IPv6 Port", + "format" : "guint32" } ] }, + + { "common-ref" : "LOC Server URL", + "name" : "URL", + "id" : "0x12", + "type" : "TLV", + "since" : "1.22", + "format" : "string", + "max-size" : "256" }, + + // ********************************************************************************* + + { "name" : "Register Events", + "type" : "Message", + "service" : "LOC", + "id" : "0x0021", + "since" : "1.22", + "input" : [ { "name" : "Event Registration Mask", + "id" : "0x01", + "type" : "TLV", + "since" : "1.22", + "format" : "guint64", + "public-format" : "QmiLocEventRegistrationFlag" } ], + "output" : [ { "common-ref" : "Operation Result" } ] }, + + // ********************************************************************************* + { "name" : "Start", + "type" : "Message", + "service" : "LOC", + "id" : "0x0022", + "version" : "1.0", + "since" : "1.20", + "input" : [ { "name" : "Session ID", + "id" : "0x01", + "type" : "TLV", + "since" : "1.20", + "format" : "guint8" }, + { "common-ref" : "LOC Fix Recurrence Type" }, + { "name" : "Intermediate Report State", + "id" : "0x12", + "type" : "TLV", + "since" : "1.20", + "format" : "guint32", + "public-format" : "QmiLocIntermediateReportState" }, + { "name" : "Minimum Interval between Position Reports", + "id" : "0x13", + "type" : "TLV", + "since" : "1.22", + "format" : "guint32" } ], + "output" : [ { "common-ref" : "Operation Result" } ] }, + + // ********************************************************************************* + { "name" : "Stop", + "type" : "Message", + "service" : "LOC", + "id" : "0x0023", + "version" : "1.0", + "since" : "1.20", + "input" : [ { "name" : "Session ID", + "id" : "0x01", + "type" : "TLV", + "since" : "1.22", + "format" : "guint8" } ], + "output" : [ { "common-ref" : "Operation Result" } ] }, + + // ********************************************************************************* + + { "name" : "Position Report", + "type" : "Indication", + "service" : "LOC", + "id" : "0x0024", + "since" : "1.22", + "output" : [ { "name" : "Session Status", + "id" : "0x01", + "type" : "TLV", + "since" : "1.22", + "format" : "guint32", + "public-format" : "QmiLocSessionStatus" }, + { "name" : "Session ID", + "id" : "0x02", + "type" : "TLV", + "since" : "1.22", + "format" : "guint8" }, + { "name" : "Latitude", + "id" : "0x10", + "type" : "TLV", + "since" : "1.22", + "format" : "gdouble" }, + { "name" : "Longitude", + "id" : "0x11", + "type" : "TLV", + "since" : "1.22", + "format" : "gdouble" }, + { "name" : "Horizontal Uncertainty Circular", + "id" : "0x12", + "type" : "TLV", + "since" : "1.22", + "format" : "gfloat" }, + { "name" : "Horizontal Uncertainty Elliptical Minor", + "id" : "0x13", + "type" : "TLV", + "since" : "1.22", + "format" : "gfloat" }, + { "name" : "Horizontal Uncertainty Elliptical Major", + "id" : "0x14", + "type" : "TLV", + "since" : "1.22", + "format" : "gfloat" }, + { "name" : "Horizontal Uncertainty Elliptical Azimuth", + "id" : "0x15", + "type" : "TLV", + "since" : "1.22", + "format" : "gfloat" }, + { "name" : "Horizontal Confidence", + "id" : "0x16", + "type" : "TLV", + "since" : "1.22", + "format" : "guint8" }, + { "name" : "Horizontal Reliability", + "id" : "0x17", + "type" : "TLV", + "since" : "1.22", + "format" : "guint32", + "public-format" : "QmiLocReliability" }, + { "name" : "Horizontal Speed", + "id" : "0x18", + "type" : "TLV", + "since" : "1.22", + "format" : "gfloat" }, + { "name" : "Speed Uncertainty", + "id" : "0x19", + "type" : "TLV", + "since" : "1.22", + "format" : "gfloat" }, + { "name" : "Altitude from Ellipsoid", + "id" : "0x1A", + "type" : "TLV", + "since" : "1.22", + "format" : "gfloat" }, + { "name" : "Altitude from Sealevel", + "id" : "0x1B", + "type" : "TLV", + "since" : "1.22", + "format" : "gfloat" }, + { "name" : "Vertical Uncertainty", + "id" : "0x1C", + "type" : "TLV", + "since" : "1.22", + "format" : "gfloat" }, + { "name" : "Vertical Confidence", + "id" : "0x1D", + "type" : "TLV", + "since" : "1.22", + "format" : "guint8" }, + { "name" : "Vertical Reliability", + "id" : "0x1E", + "type" : "TLV", + "since" : "1.22", + "format" : "guint32" }, + { "name" : "Vertical Speed", + "id" : "0x1F", + "type" : "TLV", + "since" : "1.22", + "format" : "gfloat" }, + { "name" : "Heading", + "id" : "0x20", + "type" : "TLV", + "since" : "1.22", + "format" : "gfloat" }, + { "name" : "Heading Uncertainty", + "id" : "0x21", + "type" : "TLV", + "since" : "1.22", + "format" : "gfloat" }, + { "name" : "Magnetic Deviation", + "id" : "0x22", + "type" : "TLV", + "since" : "1.22", + "format" : "gfloat" }, + { "name" : "Technology Used", + "id" : "0x23", + "type" : "TLV", + "since" : "1.22", + "format" : "guint32", + "public-format" : "QmiLocTechnologyUsed" }, + { "name" : "Dilution of Precision", + "id" : "0x24", + "type" : "TLV", + "since" : "1.22", + "format" : "struct", + "contents" : [ { "name" : "Position Dilution of Precision", + "format" : "gfloat" }, + { "name" : "Horizontal Dilution of Precision", + "format" : "gfloat" }, + { "name" : "Vertical Dilution of Precision", + "format" : "gfloat" } ] }, + { "name" : "UTC Timestamp", + "id" : "0x25", + "type" : "TLV", + "since" : "1.22", + "format" : "guint64" }, + { "name" : "Leap Seconds", + "id" : "0x26", + "type" : "TLV", + "since" : "1.22", + "format" : "guint8" }, + { "name" : "GPS Time", + "id" : "0x27", + "type" : "TLV", + "since" : "1.22", + "format" : "struct", + "contents" : [ { "name" : "GPS Weeks", + "format" : "guint16" }, + { "name" : "GPS Time of Week Milliseconds", + "format" : "guint32" } ] }, + { "name" : "Time Uncertainty", + "id" : "0x28", + "type" : "TLV", + "since" : "1.22", + "format" : "gfloat" }, + { "name" : "Time Source", + "id" : "0x29", + "type" : "TLV", + "since" : "1.22", + "format" : "guint32", + "public-format" : "QmiLocTimeSource" }, + { "name" : "Sensor Data Usage", + "id" : "0x2A", + "type" : "TLV", + "since" : "1.22", + "format" : "guint64", + "public-format" : "QmiLocSensorDataUsage" }, + { "name" : "Session Fix Count", + "id" : "0x2B", + "type" : "TLV", + "since" : "1.22", + "format" : "guint32" }, + { "name" : "Satellites Used", + "id" : "0x2C", + "type" : "TLV", + "since" : "1.22", + "format" : "struct", + "format" : "array", + "array-element" : { "format" : "guint16" } }, + { "name" : "Altitude Assumed", + "id" : "0x2D", + "type" : "TLV", + "since" : "1.22", + "format" : "guint8", + "public-format" : "gboolean" } ] }, + + // ********************************************************************************* + + { "name" : "NMEA", + "type" : "Indication", + "service" : "LOC", + "id" : "0x0026", + "since" : "1.22", + "output" : [ { "name" : "NMEA String", + "id" : "0x01", + "type" : "TLV", + "since" : "1.22", + "format" : "string" } ] }, + + // ********************************************************************************* + + { "name" : "Engine State", + "type" : "Indication", + "service" : "LOC", + "id" : "0x002B", + "since" : "1.22", + "output" : [ { "name" : "Engine State", + "id" : "0x01", + "type" : "TLV", + "since" : "1.22", + "format" : "gint32", + "public-format" : "QmiLocEngineState" } ] }, + + // ********************************************************************************* + + { "name" : "Fix Recurrence Type", + "type" : "Indication", + "service" : "LOC", + "id" : "0x002C", + "since" : "1.22", + "output" : [ { "common-ref" : "LOC Fix Recurrence Type" } ] }, + + // ********************************************************************************* + + { "name" : "GNSS Sv Info", + "type" : "Indication", + "service" : "LOC", + "id" : "0x0025", + "since" : "1.22", + "output" : [ { "name" : "Altitude Assumed", + "id" : "0x01", + "type" : "TLV", + "since" : "1.22", + "format" : "guint8", + "public-format" : "gboolean" }, + { "name" : "List", + "id" : "0x10", + "type" : "TLV", + "since" : "1.22", + "format" : "array", + "array-element" : { "name" : "Element", + "format" : "struct", + "contents" : [ { "name" : "Valid Information", + "format" : "guint32", + "public-format" : "QmiLocSatelliteValidInformation" }, + { "name" : "System", + "format" : "guint32", + "public-format" : "QmiLocSystem" }, + { "name" : "GNSS Satellite ID", + "format" : "guint16" }, + { "name" : "Health Status", + "format" : "guint8", + "public-format" : "QmiLocHealthStatus" }, + { "name" : "Satellite Status", + "format" : "guint32", + "public-format" : "QmiLocSatelliteStatus" }, + { "name" : "Navigation Data", + "format" : "guint8", + "public-format" : "QmiLocNavigationData"}, + { "name" : "Elevation Degrees", + "format" : "gfloat" }, + { "name" : "Azimuth Degrees", + "format" : "gfloat" }, + { "name" : "Signal to Noise Ratio BHz", + "format" : "gfloat" } ] } } ] }, + + // ********************************************************************************* + + { "name" : "Inject Predicted Orbits Data", + "type" : "Message", + "service" : "LOC", + "id" : "0x0035", + "since" : "1.22", + "input" : [ { "name" : "Total Size", + "id" : "0x01", + "type" : "TLV", + "since" : "1.22", + "format" : "guint32" }, + { "name" : "Total Parts", + "id" : "0x02", + "type" : "TLV", + "since" : "1.22", + "format" : "guint16" }, + { "name" : "Part Number", + "id" : "0x03", + "type" : "TLV", + "since" : "1.22", + "format" : "guint16" }, + { "name" : "Part Data", + "id" : "0x04", + "type" : "TLV", + "since" : "1.22", + "format" : "array", + "array-element" : { "format" : "guint8" }, + "size-prefix-format" : "guint16", + "max-size" : "1024" }, + { "name" : "Format Type", + "id" : "0x10", + "type" : "TLV", + "since" : "1.22", + "format" : "guint32", + "public-format" : "QmiLocPredictedOrbitsDataFormat" } ], + "output" : [ { "common-ref" : "Operation Result" } ] }, + + { "name" : "Inject Predicted Orbits Data", + "type" : "Indication", + "service" : "LOC", + "id" : "0x0035", + "since" : "1.22", + "output" : [ { "common-ref" : "LOC Indication Status" }, + { "name" : "Part Number", + "id" : "0x10", + "type" : "TLV", + "since" : "1.22", + "format" : "guint16" } ] }, + + // ********************************************************************************* + + { "name" : "Get Predicted Orbits Data Source", + "type" : "Message", + "service" : "LOC", + "id" : "0x0036", + "since" : "1.22", + "output" : [ { "common-ref" : "Operation Result" } ] }, + + { "name" : "Get Predicted Orbits Data Source", + "type" : "Indication", + "service" : "LOC", + "id" : "0x0036", + "since" : "1.22", + "output" : [ { "common-ref" : "LOC Indication Status" }, + { "name" : "Allowed Sizes", + "id" : "0x10", + "type" : "TLV", + "since" : "1.22", + "format" : "sequence", + "contents" : [ { "name" : "Max File Size", + "format" : "guint32" }, + { "name" : "Max Part Size", + "format" : "guint32" } ] }, + { "name" : "Server List", + "id" : "0x11", + "type" : "TLV", + "since" : "1.22", + "format" : "array", + "size-prefix-format" : "guint8", + "array-element" : { "format" : "string", + "size-prefix-format" : "guint8" } } ] }, + + // ********************************************************************************* + + { "name" : "Set Server", + "type" : "Message", + "service" : "LOC", + "id" : "0x0042", + "since" : "1.22", + "input" : [ { "name" : "Server Type", + "id" : "0x01", + "type" : "TLV", + "since" : "1.22", + "format" : "guint32", + "public-format" : "QmiLocServerType" }, + { "common-ref" : "LOC Server IPv4" }, + { "common-ref" : "LOC Server IPv6" }, + { "common-ref" : "LOC Server URL" } ], + "output" : [ { "common-ref" : "Operation Result" } ] }, + + { "name" : "Set Server", + "type" : "Indication", + "service" : "LOC", + "id" : "0x0042", + "since" : "1.22", + "output" : [ { "common-ref" : "LOC Indication Status" } ] }, + + + // ********************************************************************************* + + { "name" : "Get Server", + "type" : "Message", + "service" : "LOC", + "id" : "0x0043", + "since" : "1.22", + "input" : [ { "name" : "Server Type", + "id" : "0x01", + "type" : "TLV", + "since" : "1.22", + "format" : "guint32", + "public-format" : "QmiLocServerType" }, + { "name" : "Server Address Type", + "id" : "0x10", + "type" : "TLV", + "since" : "1.22", + "format" : "guint8", + "public-format" : "QmiLocServerAddressType" }], + "output" : [ { "common-ref" : "Operation Result" } ] }, + + { "name" : "Get Server", + "type" : "Indication", + "service" : "LOC", + "id" : "0x0043", + "since" : "1.22", + "output" : [ { "common-ref" : "LOC Indication Status" }, + { "name" : "Server Type", + "id" : "0x02", + "type" : "TLV", + "since" : "1.22", + "format" : "guint32", + "public-format" : "QmiLocServerType" }, + { "common-ref" : "LOC Server IPv4" }, + { "common-ref" : "LOC Server IPv6" }, + { "common-ref" : "LOC Server URL" } ] }, + + // ********************************************************************************* + + { "name" : "Delete Assistance Data", + "type" : "Message", + "service" : "LOC", + "id" : "0x0044", + "since" : "1.22", + "input" : [ { "name" : "Delete All", + "id" : "0x01", + "type" : "TLV", + "since" : "1.22", + "format" : "guint8", + "public-format" : "gboolean" }, + { "name" : "Delete SV Info", + "id" : "0x10", + "type" : "TLV", + "since" : "1.22", + "format" : "array", + "size-prefix-format" : "guint8", + "array-element" : { "name" : "Element", + "format" : "struct", + "contents" : [ { "name" : "GNSS SV ID", + "format" : "guint16" }, + { "name" : "System", + "format" : "guint32", + "public-format" : "QmiLocSystem" }, + { "name" : "Delete SV Info Mask", + "format" : "guint8", + "public-format" : "QmiLocDeleteSvInfo" } ] } }, + { "name" : "Delete GNSS Data Mask", + "id" : "0x11", + "type" : "TLV", + "since" : "1.22", + "format" : "guint64", + "public-format" : "QmiLocDeleteGnssData" }, + { "name" : "Delete Cell Database Mask", + "id" : "0x12", + "type" : "TLV", + "since" : "1.22", + "format" : "guint32", + "public-format" : "QmiLocDeleteCellDatabase" }, + { "name" : "Delete Clock Info Mask", + "id" : "0x13", + "type" : "TLV", + "since" : "1.22", + "format" : "guint32", + "public-format" : "QmiLocDeleteClockInfo" } ], + "output" : [ { "common-ref" : "Operation Result" } ] }, + + { "name" : "Delete Assistance Data", + "type" : "Indication", + "service" : "LOC", + "id" : "0x0044", + "since" : "1.22", + "output" : [ { "common-ref" : "LOC Indication Status" } ] }, + + // ********************************************************************************* + + { "name" : "Set Operation Mode", + "type" : "Message", + "service" : "LOC", + "id" : "0x004A", + "since" : "1.22", + "input" : [ { "name" : "Operation Mode", + "id" : "0x01", + "type" : "TLV", + "since" : "1.22", + "format" : "guint32", + "public-format" : "QmiLocOperationMode" } ], + "output" : [ { "common-ref" : "Operation Result" } ] }, + + { "name" : "Set Operation Mode", + "type" : "Indication", + "service" : "LOC", + "id" : "0x004A", + "since" : "1.22", + "output" : [ { "common-ref" : "LOC Indication Status" } ] }, + + // ********************************************************************************* + + { "name" : "Get Operation Mode", + "type" : "Message", + "service" : "LOC", + "id" : "0x004B", + "since" : "1.22", + "output" : [ { "common-ref" : "Operation Result" } ] }, + + { "name" : "Get Operation Mode", + "type" : "Indication", + "service" : "LOC", + "id" : "0x004B", + "since" : "1.22", + "output" : [ { "common-ref" : "LOC Indication Status" }, + { "name" : "Operation Mode", + "id" : "0x10", + "type" : "TLV", + "since" : "1.22", + "format" : "guint32", + "public-format" : "QmiLocOperationMode" } ] }, + + // ********************************************************************************* + + { "name" : "Inject Xtra Data", + "type" : "Message", + "service" : "LOC", + "id" : "0x00A7", + "since" : "1.22", + "input" : [ { "name" : "Total Size", + "id" : "0x01", + "type" : "TLV", + "since" : "1.22", + "format" : "guint32" }, + { "name" : "Total Parts", + "id" : "0x02", + "type" : "TLV", + "since" : "1.22", + "format" : "guint16" }, + { "name" : "Part Number", + "id" : "0x03", + "type" : "TLV", + "since" : "1.22", + "format" : "guint16" }, + { "name" : "Part Data", + "id" : "0x04", + "type" : "TLV", + "since" : "1.22", + "format" : "array", + "array-element" : { "format" : "guint8" }, + "size-prefix-format" : "guint16", + "max-size" : "1024" } ], + "output" : [ { "common-ref" : "Operation Result" } ] }, + + { "name" : "Inject Xtra Data", + "type" : "Indication", + "service" : "LOC", + "id" : "0x00A7", + "since" : "1.22", + "output" : [ { "common-ref" : "LOC Indication Status" }, + { "name" : "Part Number", + "id" : "0x10", + "type" : "TLV", + "since" : "1.22", + "format" : "guint16" } ] } +] diff -Nru libqmi-1.18.0/data/qmi-service-nas.json libqmi-1.22.0/data/qmi-service-nas.json --- libqmi-1.18.0/data/qmi-service-nas.json 2017-03-21 14:26:54.000000000 +0100 +++ libqmi-1.22.0/data/qmi-service-nas.json 2019-01-08 15:15:35.000000000 +0100 @@ -36,7 +36,6 @@ "scope" : "library-only", "input" : [ { "name" : "Transaction ID", "id" : "0x01", - "mandatory" : "yes", "type" : "TLV", "since" : "1.0", "format" : "guint16" } ], @@ -51,7 +50,6 @@ "since" : "1.0", "input" : [ { "name" : "Signal Strength Indicator", "id" : "0x10", - "mandatory" : "no", "type" : "TLV", "since" : "1.0", "format" : "sequence", @@ -63,21 +61,18 @@ "array-element" : { "format" : "gint8" } } ] }, { "name" : "RF Band Information", "id" : "0x11", - "mandatory" : "no", "type" : "TLV", "since" : "1.0", "format" : "guint8", "public-format" : "gboolean" }, { "name" : "Registration Reject Reason", "id" : "0x12", - "mandatory" : "no", "type" : "TLV", "since" : "1.0", "format" : "guint8", "public-format" : "gboolean" }, { "name" : "RSSI Indicator", "id" : "0x13", - "mandatory" : "no", "type" : "TLV", "since" : "1.0", "format" : "sequence", @@ -88,7 +83,6 @@ "format" : "guint8" } ] }, { "name" : "ECIO Indicator", "id" : "0x14", - "mandatory" : "no", "type" : "TLV", "since" : "1.0", "format" : "sequence", @@ -99,7 +93,6 @@ "format" : "guint8" } ] }, { "name" : "IO Indicator", "id" : "0x15", - "mandatory" : "no", "type" : "TLV", "since" : "1.0", "format" : "sequence", @@ -110,7 +103,6 @@ "format" : "guint8" } ] }, { "name" : "SINR Indicator", "id" : "0x16", - "mandatory" : "no", "type" : "TLV", "since" : "1.0", "format" : "sequence", @@ -121,14 +113,12 @@ "format" : "guint8" } ] }, { "name" : "Error Rate Indicator", "id" : "0x17", - "mandatory" : "no", "type" : "TLV", "since" : "1.0", "format" : "guint8", "public-format" : "gboolean" }, { "name" : "ECIO Threshold", "id" : "0x19", - "mandatory" : "no", "type" : "TLV", "since" : "1.0", "format" : "sequence", @@ -140,7 +130,6 @@ "array-element" : { "format" : "gint16" } } ] }, { "name" : "SINR Threshold", "id" : "0x1A", - "mandatory" : "no", "type" : "TLV", "since" : "1.0", "format" : "sequence", @@ -152,7 +141,6 @@ "array-element" : { "format" : "guint8" } } ] }, { "name" : "LTE SNR Delta", "id" : "0x1B", - "mandatory" : "no", "type" : "TLV", "since" : "1.0", "format" : "sequence", @@ -163,7 +151,6 @@ "format" : "guint8" } ] }, { "name" : "LTE RSRP Delta", "id" : "0x1C", - "mandatory" : "no", "type" : "TLV", "since" : "1.0", "format" : "sequence", @@ -181,7 +168,6 @@ "since" : "1.0", "output" : [ { "name" : "Signal Strength", "id" : "0x10", - "mandatory" : "no", "type" : "TLV", "since" : "1.0", "format" : "sequence", @@ -192,7 +178,6 @@ "public-format" : "QmiNasRadioInterface" } ] }, { "name" : "RF Band Information", "id" : "0x11", - "mandatory" : "no", "type" : "TLV", "since" : "1.0", "format" : "array", @@ -208,7 +193,6 @@ "format" : "guint16" } ] } }, { "name" : "Registration Reject Reason", "id" : "0x12", - "mandatory" : "no", "type" : "TLV", "since" : "1.0", "format" : "sequence", @@ -219,7 +203,6 @@ "format" : "guint16" } ] }, { "name" : "RSSI", "id" : "0x13", - "mandatory" : "no", "type" : "TLV", "since" : "1.0", "format" : "sequence", @@ -230,7 +213,6 @@ "public-format" : "QmiNasRadioInterface" } ] }, { "name" : "ECIO", "id" : "0x14", - "mandatory" : "no", "type" : "TLV", // API changed in 1.14 "since" : "1.14", @@ -242,20 +224,17 @@ "public-format" : "QmiNasRadioInterface" } ] }, { "name" : "IO", "id" : "0x15", - "mandatory" : "no", "type" : "TLV", "since" : "1.0", "format" : "gint32" }, { "name" : "SINR", "id" : "0x16", - "mandatory" : "no", "type" : "TLV", "since" : "1.0", "format" : "guint8", "public-format" : "QmiNasEvdoSinrLevel" }, { "name" : "Error Rate", "id" : "0x17", - "mandatory" : "no", "type" : "TLV", "since" : "1.0", "format" : "sequence", @@ -266,7 +245,6 @@ "public-format" : "QmiNasRadioInterface" } ] }, { "name" : "RSRQ", "id" : "0x18", - "mandatory" : "no", "type" : "TLV", "since" : "1.0", "format" : "sequence", @@ -277,13 +255,11 @@ "public-format" : "QmiNasRadioInterface" } ] }, { "name" : "LTE SNR", "id" : "0x19", - "mandatory" : "no", "type" : "TLV", "since" : "1.0", "format" : "gint16" }, { "name" : "LTE RSRP", "id" : "0x1A", - "mandatory" : "no", "type" : "TLV", "since" : "1.0", "format" : "gint16" } ] }, @@ -297,105 +273,90 @@ "since" : "1.0", "input" : [ { "name" : "System Selection Preference", "id" : "0x10", - "mandatory" : "no", "type" : "TLV", "since" : "1.0", "format" : "guint8", "public-format" : "gboolean" }, { "name" : "DDTM Events", "id" : "0x12", - "mandatory" : "no", "type" : "TLV", "since" : "1.0", "format" : "guint8", "public-format" : "gboolean" }, { "name" : "Serving System Events", "id" : "0x13", - "mandatory" : "no", "type" : "TLV", "since" : "1.0", "format" : "guint8", "public-format" : "gboolean" }, { "name" : "Dual Standby Preference", "id" : "0x14", - "mandatory" : "no", "type" : "TLV", "since" : "1.0", "format" : "guint8", "public-format" : "gboolean" }, { "name" : "Subscription Info", "id" : "0x15", - "mandatory" : "no", "type" : "TLV", "since" : "1.0", "format" : "guint8", "public-format" : "gboolean" }, { "name" : "Network Time", "id" : "0x17", - "mandatory" : "no", "type" : "TLV", "since" : "1.0", "format" : "guint8", "public-format" : "gboolean" }, { "name" : "System Info", "id" : "0x18", - "mandatory" : "no", "type" : "TLV", "since" : "1.0", "format" : "guint8", "public-format" : "gboolean" }, { "name" : "Signal Info", "id" : "0x19", - "mandatory" : "no", "type" : "TLV", "since" : "1.0", "format" : "guint8", "public-format" : "gboolean" }, { "name" : "Error Rate", "id" : "0x1A", - "mandatory" : "no", "type" : "TLV", "since" : "1.0", "format" : "guint8", "public-format" : "gboolean" }, { "name" : "HDR New UATI Assigned", "id" : "0x1B", - "mandatory" : "no", "type" : "TLV", "since" : "1.0", "format" : "guint8", "public-format" : "gboolean" }, { "name" : "HDR Session Closed", "id" : "0x1C", - "mandatory" : "no", "type" : "TLV", "since" : "1.0", "format" : "guint8", "public-format" : "gboolean" }, { "name" : "Managed Roaming", "id" : "0x1D", - "mandatory" : "no", "type" : "TLV", "since" : "1.0", "format" : "guint8", "public-format" : "gboolean" }, { "name" : "Current PLMN Name", "id" : "0x1E", - "mandatory" : "no", "type" : "TLV", "since" : "1.0", "format" : "guint8", "public-format" : "gboolean" }, { "name" : "eMBMS Status", "id" : "0x1F", - "mandatory" : "no", "type" : "TLV", "since" : "1.0", "format" : "guint8", "public-format" : "gboolean" }, { "name" : "RF Band Information", "id" : "0x20", - "mandatory" : "no", "type" : "TLV", "since" : "1.0", "format" : "guint8", @@ -412,7 +373,6 @@ "output" : [ { "common-ref" : "Operation Result" }, { "name" : "List", "id" : "0x10", - "mandatory" : "no", "type" : "TLV", "since" : "1.0", "format" : "array", @@ -429,7 +389,6 @@ "since" : "1.0", "input" : [ { "name" : "Request Mask", "id" : "0x10", - "mandatory" : "no", "type" : "TLV", "since" : "1.0", "format" : "guint16", @@ -437,7 +396,6 @@ "output" : [ { "common-ref" : "Operation Result" }, { "name" : "Signal Strength", "id" : "0x01", - "mandatory" : "yes", "type" : "TLV", "since" : "1.0", "format" : "sequence", @@ -449,7 +407,6 @@ "prerequisites": [ { "common-ref" : "Success" } ] }, { "name" : "Strength List", "id" : "0x10", - "mandatory" : "no", "type" : "TLV", "since" : "1.0", "format" : "array", @@ -463,7 +420,6 @@ "public-format" : "QmiNasRadioInterface" } ] } }, { "name" : "RSSI List", "id" : "0x11", - "mandatory" : "no", "type" : "TLV", "since" : "1.0", "format" : "array", @@ -477,7 +433,6 @@ "public-format" : "QmiNasRadioInterface" } ] } }, { "name" : "ECIO List", "id" : "0x12", - "mandatory" : "no", "type" : "TLV", "since" : "1.0", "format" : "array", @@ -491,20 +446,17 @@ "public-format" : "QmiNasRadioInterface" } ] } }, { "name" : "IO", "id" : "0x13", - "mandatory" : "no", "type" : "TLV", "since" : "1.0", "format" : "gint32" }, { "name" : "SINR", "id" : "0x14", - "mandatory" : "no", "type" : "TLV", "since" : "1.0", "format" : "guint8", "public-format" : "QmiNasEvdoSinrLevel" }, { "name" : "Error Rate List", "id" : "0x15", - "mandatory" : "no", "type" : "TLV", "since" : "1.0", "format" : "array", @@ -518,7 +470,6 @@ "public-format" : "QmiNasRadioInterface" } ] } }, { "name" : "RSRQ", "id" : "0x16", - "mandatory" : "no", "type" : "TLV", "since" : "1.0", "format" : "sequence", @@ -529,13 +480,11 @@ "public-format" : "QmiNasRadioInterface" } ] }, { "name" : "LTE SNR", "id" : "0x17", - "mandatory" : "no", "type" : "TLV", "since" : "1.0", "format" : "gint16" }, { "name" : "LTE RSRP", "id" : "0x18", - "mandatory" : "no", "type" : "TLV", "since" : "1.0", "format" : "gint16" } ] }, @@ -551,7 +500,6 @@ "abort" : "yes", "input" : [ { "name" : "Network Type", "id" : "0x10", - "mandatory" : "no", "type" : "TLV", "since" : "1.0", "format" : "guint8", @@ -559,7 +507,6 @@ "output" : [ { "common-ref" : "Operation Result" }, { "name" : "Network Information", "id" : "0x10", - "mandatory" : "no", "type" : "TLV", "since" : "1.0", "format" : "array", @@ -577,7 +524,6 @@ "format" : "string" } ] } }, { "name" : "Radio Access Technology", "id" : "0x11", - "mandatory" : "no", "type" : "TLV", "since" : "1.0", "format" : "array", @@ -593,7 +539,6 @@ "public-format" : "QmiNasRadioInterface" } ] } }, { "name" : "MNC PCS Digit Include Status", "id" : "0x12", - "mandatory" : "no", "type" : "TLV", "since" : "1.0", "format" : "array", @@ -617,14 +562,12 @@ "since" : "1.0", "input" : [ { "name" : "Action", "id" : "0x01", - "mandatory" : "yes", "type" : "TLV", "since" : "1.0", "format" : "guint8", "public-format" : "QmiNasNetworkRegisterType" }, { "name" : "Manual Registration Info 3GPP", "id" : "0x10", - "mandatory" : "no", "type" : "TLV", "since" : "1.0", "format" : "sequence", @@ -637,14 +580,12 @@ "public-format" : "QmiNasRadioInterface" } ] }, { "name" : "Change Duration", "id" : "0x11", - "mandatory" : "no", "type" : "TLV", "since" : "1.0", "format" : "guint8", "public-format" : "QmiNasChangeDuration" }, { "name" : "MNC PCS Digit Include Status", "id" : "0x12", - "mandatory" : "no", "type" : "TLV", "since" : "1.0", "format" : "guint8", @@ -652,6 +593,22 @@ "output" : [ { "common-ref" : "Operation Result" } ] }, // ********************************************************************************* + { "name" : "Attach Detach", + "type" : "Message", + "service" : "NAS", + "id" : "0x0023", + "version" : "1.0", + "since" : "1.20", + "input" : [ { "name" : "Action", + "id" : "0x10", + "mandatory" : "yes", + "type" : "TLV", + "since" : "1.20", + "format" : "guint8", + "public-format" : "QmiNasPsAttachAction" } ], + "output" : [ { "common-ref" : "Operation Result" } ] }, + + // ********************************************************************************* { "name" : "Get Serving System", "type" : "Message", "service" : "NAS", @@ -661,7 +618,6 @@ "output" : [ { "common-ref" : "Operation Result" }, { "name" : "Serving System", "id" : "0x01", - "mandatory" : "yes", "type" : "TLV", "since" : "1.0", "format" : "sequence", @@ -684,14 +640,12 @@ "prerequisites": [ { "common-ref" : "Success" } ] }, { "name" : "Roaming Indicator", "id" : "0x10", - "mandatory" : "no", "type" : "TLV", "since" : "1.0", "format" : "guint8", "public-format" : "QmiNasRoamingIndicatorStatus" }, { "name" : "Data Service Capability", "id" : "0x11", - "mandatory" : "no", "type" : "TLV", "since" : "1.0", "format" : "array", @@ -699,7 +653,6 @@ "public-format" : "QmiNasDataCapability" } }, { "name" : "Current PLMN", "id" : "0x12", - "mandatory" : "no", "type" : "TLV", "since" : "1.0", "format" : "sequence", @@ -711,7 +664,6 @@ "format" : "string" } ] }, { "name" : "CDMA System ID", "id" : "0x13", - "mandatory" : "no", "type" : "TLV", "since" : "1.0", "format" : "sequence", @@ -721,7 +673,6 @@ "format" : "guint16" } ] }, { "name" : "CDMA Base Station Info", "id" : "0x14", - "mandatory" : "no", "type" : "TLV", "since" : "1.0", "format" : "sequence", @@ -733,7 +684,6 @@ "format" : "gint32" } ] }, { "name" : "Roaming Indicator List", "id" : "0x15", - "mandatory" : "no", "type" : "TLV", "since" : "1.0", "format" : "array", @@ -747,14 +697,12 @@ "public-format" : "QmiNasRoamingIndicatorStatus" } ] } }, { "name" : "Default Roaming Indicator", "id" : "0x16", - "mandatory" : "no", "type" : "TLV", "since" : "1.0", "format" : "guint8", "public-format" : "QmiNasRoamingIndicatorStatus" }, { "name" : "Time Zone 3GPP2", "id" : "0x17", - "mandatory" : "no", "type" : "TLV", "since" : "1.0", "format" : "sequence", @@ -767,58 +715,49 @@ "public-format" : "gboolean" } ] }, { "name" : "CDMA P Rev", "id" : "0x18", - "mandatory" : "no", "type" : "TLV", "since" : "1.0", "format" : "guint8" }, { "name" : "Time Zone 3GPP", "id" : "0x1A", - "mandatory" : "no", "type" : "TLV", "since" : "1.0", "format" : "gint8" }, { "name" : "Daylight Saving Time Adjustment 3GPP", "id" : "0x1B", - "mandatory" : "no", "type" : "TLV", "since" : "1.0", "format" : "guint8" }, { "name" : "LAC 3GPP", "id" : "0x1C", - "mandatory" : "no", "type" : "TLV", "since" : "1.0", "format" : "guint16" }, { "name" : "CID 3GPP", "id" : "0x1D", - "mandatory" : "no", "type" : "TLV", "since" : "1.0", "format" : "guint32" }, { "name" : "Concurrent Service Info 3GPP2", "id" : "0x1E", - "mandatory" : "no", "type" : "TLV", "since" : "1.0", "format" : "guint8", "public-format" : "gboolean"}, { "name" : "PRL Indicator 3GPP2", "id" : "0x1F", - "mandatory" : "no", "type" : "TLV", "since" : "1.0", "format" : "guint8", "public-format" : "gboolean"}, { "name" : "DTM Support", "id" : "0x20", - "mandatory" : "no", "type" : "TLV", "since" : "1.0", "format" : "guint8", "public-format" : "gboolean"}, { "name" : "Detailed Service Status", "id" : "0x21", - "mandatory" : "no", "type" : "TLV", "since" : "1.0", "format" : "sequence", @@ -839,7 +778,6 @@ "public-format" : "gboolean" } ] }, { "name" : "CDMA System Info", "id" : "0x22", - "mandatory" : "no", "type" : "TLV", "since" : "1.0", "format" : "sequence", @@ -849,20 +787,17 @@ "format" : "guint8" } ] }, { "name" : "HDR Personality", "id" : "0x23", - "mandatory" : "no", "type" : "TLV", "since" : "1.0", "format" : "guint8", "public-format" : "QmiNasHdrPersonality"}, { "name" : "LTE TAC", "id" : "0x24", - "mandatory" : "no", "type" : "TLV", "since" : "1.0", "format" : "guint16" }, { "name" : "Call Barring Status", "id" : "0x25", - "mandatory" : "no", "type" : "TLV", "since" : "1.0", "format" : "sequence", @@ -874,13 +809,11 @@ "public-format" : "QmiNasCallBarringStatus" } ] }, { "name" : "UMTS Primary Scrambling Code", "id" : "0x26", - "mandatory" : "no", "type" : "TLV", "since" : "1.0", "format" : "guint16" }, { "name" : "MNC PCS Digit Include Status", "id" : "0x27", - "mandatory" : "no", "type" : "TLV", "since" : "1.0", "format" : "sequence", @@ -900,7 +833,6 @@ "since" : "1.0", "output" : [ { "name" : "Serving System", "id" : "0x01", - "mandatory" : "yes", "type" : "TLV", "since" : "1.0", "format" : "sequence", @@ -922,14 +854,12 @@ "public-format" : "QmiNasRadioInterface" } } ] }, { "name" : "Roaming Indicator", "id" : "0x10", - "mandatory" : "no", "type" : "TLV", "since" : "1.0", "format" : "guint8", "public-format" : "QmiNasRoamingIndicatorStatus" }, { "name" : "Data Service Capability", "id" : "0x11", - "mandatory" : "no", "type" : "TLV", "since" : "1.0", "format" : "array", @@ -937,7 +867,6 @@ "public-format" : "QmiNasDataCapability" } }, { "name" : "Current PLMN", "id" : "0x12", - "mandatory" : "no", "type" : "TLV", "since" : "1.0", "format" : "sequence", @@ -949,7 +878,6 @@ "format" : "string" } ] }, { "name" : "CDMA System ID", "id" : "0x13", - "mandatory" : "no", "type" : "TLV", "since" : "1.0", "format" : "sequence", @@ -959,7 +887,6 @@ "format" : "guint16" } ] }, { "name" : "CDMA Base Station Info", "id" : "0x14", - "mandatory" : "no", "type" : "TLV", "since" : "1.0", "format" : "sequence", @@ -971,7 +898,6 @@ "format" : "gint32" } ] }, { "name" : "Roaming Indicator List", "id" : "0x15", - "mandatory" : "no", "type" : "TLV", "since" : "1.0", "format" : "array", @@ -985,14 +911,12 @@ "public-format" : "QmiNasRoamingIndicatorStatus" } ] } }, { "name" : "Default Roaming Indicator", "id" : "0x16", - "mandatory" : "no", "type" : "TLV", "since" : "1.0", "format" : "guint8", "public-format" : "QmiNasRoamingIndicatorStatus" }, { "name" : "Time Zone 3GPP2", "id" : "0x17", - "mandatory" : "no", "type" : "TLV", "since" : "1.0", "format" : "sequence", @@ -1005,32 +929,27 @@ "public-format" : "gboolean" } ] }, { "name" : "CDMA P Rev", "id" : "0x18", - "mandatory" : "no", "type" : "TLV", "since" : "1.0", "format" : "guint8" }, { "name" : "PLMN Name Flag 3GPP", "id" : "0x19", - "mandatory" : "no", "type" : "TLV", "since" : "1.0", "format" : "gint8", "public-format" : "gboolean" }, { "name" : "Time Zone 3GPP", "id" : "0x1A", - "mandatory" : "no", "type" : "TLV", "since" : "1.0", "format" : "gint8" }, { "name" : "Daylight Saving Time Adjustment 3GPP", "id" : "0x1B", - "mandatory" : "no", "type" : "TLV", "since" : "1.0", "format" : "guint8" }, { "name" : "Universal Time and Local Time Zone 3GPP", "id" : "0x1C", - "mandatory" : "no", "type" : "TLV", "since" : "1.0", "format" : "sequence", @@ -1050,40 +969,34 @@ "format" : "guint8" } ] }, { "name" : "LAC 3GPP", "id" : "0x1D", - "mandatory" : "no", "type" : "TLV", "since" : "1.0", "format" : "guint16" }, { "name" : "CID 3GPP", "id" : "0x1E", - "mandatory" : "no", "type" : "TLV", "since" : "1.0", "format" : "guint32" }, { "name" : "Concurrent Service Info 3GPP2", "id" : "0x1F", - "mandatory" : "no", "type" : "TLV", "since" : "1.0", "format" : "guint8", "public-format" : "gboolean"}, { "name" : "PRL Indicator 3GPP2", "id" : "0x20", - "mandatory" : "no", "type" : "TLV", "since" : "1.0", "format" : "guint8", "public-format" : "gboolean"}, { "name" : "DTM Support", "id" : "0x21", - "mandatory" : "no", "type" : "TLV", "since" : "1.0", "format" : "guint8", "public-format" : "gboolean"}, { "name" : "Detailed Service Status", "id" : "0x22", - "mandatory" : "no", "type" : "TLV", "since" : "1.0", "format" : "sequence", @@ -1104,7 +1017,6 @@ "public-format" : "gboolean" } ] }, { "name" : "CDMA System Info", "id" : "0x23", - "mandatory" : "no", "type" : "TLV", "since" : "1.0", "format" : "sequence", @@ -1114,20 +1026,17 @@ "format" : "guint8" } ] }, { "name" : "HDR Personality", "id" : "0x24", - "mandatory" : "no", "type" : "TLV", "since" : "1.0", "format" : "guint8", "public-format" : "QmiNasHdrPersonality"}, { "name" : "LTE TAC", "id" : "0x25", - "mandatory" : "no", "type" : "TLV", "since" : "1.0", "format" : "guint16" }, { "name" : "Call Barring Status", "id" : "0x26", - "mandatory" : "no", "type" : "TLV", "since" : "1.0", "format" : "sequence", @@ -1139,20 +1048,17 @@ "public-format" : "QmiNasCallBarringStatus" } ] }, { "name" : "PLMN Not Changed Indication", "id" : "0x27", - "mandatory" : "no", "type" : "TLV", "since" : "1.0", "format" : "guint8", "public-format" : "gboolean" }, { "name" : "UMTS Primary Scrambling Code", "id" : "0x28", - "mandatory" : "no", "type" : "TLV", "since" : "1.0", "format" : "guint16" }, { "name" : "MNC PCS Digit Include Status", "id" : "0x29", - "mandatory" : "no", "type" : "TLV", "since" : "1.0", "format" : "sequence", @@ -1174,7 +1080,6 @@ "output" : [ { "common-ref" : "Operation Result" }, { "name" : "Home Network", "id" : "0x01", - "mandatory" : "yes", "type" : "TLV", "since" : "1.0", "format" : "sequence", @@ -1187,7 +1092,6 @@ "prerequisites": [ { "common-ref" : "Success" } ] }, { "name" : "Home System ID", "id" : "0x10", - "mandatory" : "no", "type" : "TLV", "since" : "1.0", "format" : "sequence", @@ -1197,7 +1101,6 @@ "format" : "guint16" } ] }, { "name" : "Home Network 3GPP2", "id" : "0x11", - "mandatory" : "no", "type" : "TLV", "since" : "1.0", "format" : "sequence", @@ -1215,7 +1118,6 @@ "format" : "string" } ] }, { "name" : "Home Network 3GPP MNC", "id" : "0x12", - "mandatory" : "no", "type" : "TLV", "since" : "1.0", "format" : "sequence", @@ -1235,7 +1137,6 @@ "since" : "1.0", "input" : [ { "name" : "Current", "id" : "0x01", - "mandatory" : "yes", "type" : "TLV", "since" : "1.0", "format" : "sequence", @@ -1257,7 +1158,6 @@ "output" : [ { "common-ref" : "Operation Result" }, { "name" : "Active", "id" : "0x01", - "mandatory" : "yes", "type" : "TLV", "since" : "1.0", "format" : "sequence", @@ -1270,7 +1170,6 @@ "prerequisites": [ { "common-ref" : "Success" } ] }, { "name" : "Persistent", "id" : "0x10", - "mandatory" : "no", "type" : "TLV", "since" : "1.0", "format" : "guint16", @@ -1286,7 +1185,6 @@ "output" : [ { "common-ref" : "Operation Result" }, { "name" : "List", "id" : "0x01", - "mandatory" : "yes", "type" : "TLV", "since" : "1.0", "format" : "array", @@ -1310,49 +1208,42 @@ "since" : "1.0", "input" : [ { "name" : "Emergency mode", "id" : "0x10", - "mandatory" : "no", "type" : "TLV", "since" : "1.0", "format" : "guint8", "public-format" : "gboolean" }, { "name" : "Mode Preference", "id" : "0x11", - "mandatory" : "no", "type" : "TLV", "since" : "1.0", "format" : "guint16", "public-format" : "QmiNasRatModePreference" }, { "name" : "Band Preference", "id" : "0x12", - "mandatory" : "no", "type" : "TLV", "since" : "1.0", "format" : "guint64", "public-format" : "QmiNasBandPreference" }, { "name" : "CDMA PRL Preference", "id" : "0x13", - "mandatory" : "no", "type" : "TLV", "since" : "1.0", "format" : "guint16", "public-format" : "QmiNasCdmaPrlPreference" }, { "name" : "Roaming Preference", "id" : "0x14", - "mandatory" : "no", "type" : "TLV", "since" : "1.0", "format" : "guint16", "public-format" : "QmiNasRoamingPreference" }, { "name" : "LTE Band Preference", "id" : "0x15", - "mandatory" : "no", "type" : "TLV", "since" : "1.0", "format" : "guint64", "public-format" : "QmiNasLteBandPreference" }, { "name" : "Network Selection Preference", "id" : "0x16", - "mandatory" : "no", "type" : "TLV", "since" : "1.0", "format" : "sequence", @@ -1365,39 +1256,55 @@ "format" : "guint16" } ] }, { "name" : "Change Duration", "id" : "0x17", - "mandatory" : "no", "type" : "TLV", "since" : "1.0", "format" : "guint8", "public-format" : "QmiNasChangeDuration" }, { "name" : "Service Domain Preference", "id" : "0x18", - "mandatory" : "no", "type" : "TLV", "since" : "1.0", "format" : "guint32", "public-format" : "QmiNasServiceDomainPreference" }, { "name" : "GSM WCDMA Acquisition Order Preference", "id" : "0x19", - "mandatory" : "no", "type" : "TLV", "since" : "1.0", "format" : "guint32", "public-format" : "QmiNasGsmWcdmaAcquisitionOrderPreference" }, { "name" : "MNC PDS Digit Include Status", "id" : "0x1A", - "mandatory" : "no", "type" : "TLV", "since" : "1.0", "format" : "guint8", "public-format" : "gboolean" }, { "name" : "TD SCDMA Band Preference", "id" : "0x1D", - "mandatory" : "no", "type" : "TLV", "since" : "1.0", "format" : "guint64", - "public-format" : "QmiNasTdScdmaBandPreference" } ], + "public-format" : "QmiNasTdScdmaBandPreference" }, + { "name" : "Acquisition Order Preference", + "id" : "0x1E", + "type" : "TLV", + "since" : "1.22", + "format" : "array", + "size-prefix-format" : "guint8", + "array-element" : { "format" : "gint8", + "public-format" : "QmiNasRadioInterface" } }, + { "name" : "Extended LTE Band Preference", + "id" : "0x24", + "type" : "TLV", + "since" : "1.20", + "format" : "sequence", + "contents" : [ { "name" : "Mask Low", + "format" : "guint64" }, + { "name" : "Mask Mid Low", + "format" : "guint64" }, + { "name" : "Mask Mid High", + "format" : "guint64" }, + { "name" : "Mask High", + "format" : "guint64" } ] } ], "output" : [ { "common-ref" : "Operation Result" } ] }, // ********************************************************************************* @@ -1410,77 +1317,74 @@ "output" : [ { "common-ref" : "Operation Result" }, { "name" : "Emergency mode", "id" : "0x10", - "mandatory" : "no", "type" : "TLV", "since" : "1.0", "format" : "guint8", "public-format" : "gboolean" }, { "name" : "Mode Preference", "id" : "0x11", - "mandatory" : "no", "type" : "TLV", "since" : "1.0", "format" : "guint16", "public-format" : "QmiNasRatModePreference" }, { "name" : "Band Preference", "id" : "0x12", - "mandatory" : "no", "type" : "TLV", "since" : "1.0", "format" : "guint64", "public-format" : "QmiNasBandPreference" }, { "name" : "CDMA PRL Preference", "id" : "0x13", - "mandatory" : "no", "type" : "TLV", "since" : "1.0", "format" : "guint16", "public-format" : "QmiNasCdmaPrlPreference" }, { "name" : "Roaming Preference", "id" : "0x14", - "mandatory" : "no", "type" : "TLV", "since" : "1.0", "format" : "guint16", "public-format" : "QmiNasRoamingPreference" }, { "name" : "LTE Band Preference", "id" : "0x15", - "mandatory" : "no", "type" : "TLV", "since" : "1.0", "format" : "guint64", "public-format" : "QmiNasLteBandPreference" }, { "name" : "Network Selection Preference", "id" : "0x16", - "mandatory" : "no", "type" : "TLV", "since" : "1.0", "format" : "guint8", "public-format" : "QmiNasNetworkSelectionPreference" }, { "name" : "Service Domain Preference", "id" : "0x18", - "mandatory" : "no", "type" : "TLV", "since" : "1.0", "format" : "guint32", "public-format" : "QmiNasServiceDomainPreference" }, { "name" : "GSM WCDMA Acquisition Order Preference", "id" : "0x19", - "mandatory" : "no", "type" : "TLV", "since" : "1.0", "format" : "guint32", "public-format" : "QmiNasGsmWcdmaAcquisitionOrderPreference" }, { "name" : "TD SCDMA Band Preference", "id" : "0x1A", - "mandatory" : "no", "type" : "TLV", "since" : "1.0", "format" : "guint64", "public-format" : "QmiNasTdScdmaBandPreference" }, + { "name" : "Acquisition Order Preference", + "id" : "0x1C", + "type" : "TLV", + "since" : "1.22", + "format" : "array", + "size-prefix-format" : "guint8", + "array-element" : { "format" : "gint8", + "public-format" : "QmiNasRadioInterface" } }, { "name" : "Manual Network Selection", "id" : "0x1B", - "mandatory" : "no", "type" : "TLV", "since" : "1.0", "format" : "sequence", @@ -1490,7 +1394,20 @@ "format" : "guint16" }, { "name" : "Includes PCS Digit", "format" : "guint8", - "public-format" : "gboolean" } ] } ] }, + "public-format" : "gboolean" } ] }, + { "name" : "Extended LTE Band Preference", + "id" : "0x23", + "type" : "TLV", + "since" : "1.20", + "format" : "sequence", + "contents" : [ { "name" : "Mask Low", + "format" : "guint64" }, + { "name" : "Mask Mid Low", + "format" : "guint64" }, + { "name" : "Mask Mid High", + "format" : "guint64" }, + { "name" : "Mask High", + "format" : "guint64" } ] } ] }, // ********************************************************************************* { "name" : "Get Operator Name", @@ -1543,7 +1460,6 @@ "output" : [ { "common-ref" : "Operation Result" }, { "name" : "GERAN Info", "id" : "0x10", - "mandatory" : "no", "type" : "TLV", "since" : "1.10", "format" : "sequence", @@ -1581,7 +1497,6 @@ "format" : "guint16" } ] } } ] }, { "name" : "UMTS Info", "id" : "0x11", - "mandatory" : "no", "type" : "TLV", "since" : "1.10", "format" : "sequence", @@ -1626,7 +1541,6 @@ "format" : "gint16" } ] } } ] }, { "name" : "CDMA Info", "id" : "0x12", - "mandatory" : "no", "type" : "TLV", "since" : "1.10", "format" : "sequence", @@ -1644,7 +1558,6 @@ "format" : "guint32" } ] }, { "name" : "Intrafrequency LTE Info", "id" : "0x13", - "mandatory" : "no", "type" : "TLV", "since" : "1.10", "format" : "sequence", @@ -1686,7 +1599,6 @@ "format" : "gint16" } ] } } ] }, { "name" : "Interfrequency LTE Info", "id" : "0x14", - "mandatory" : "no", "type" : "TLV", "since" : "1.10", "format" : "sequence", @@ -1721,7 +1633,6 @@ "format" : "gint16" } ] } } ] } } ] }, { "name" : "LTE Info Neighboring GSM", "id" : "0x15", - "mandatory" : "no", "type" : "TLV", "since" : "1.10", "format" : "sequence", @@ -1760,7 +1671,6 @@ "format" : "gint16" } ] } } ] } } ] }, { "name" : "LTE Info Neighboring WCDMA", "id" : "0x16", - "mandatory" : "no", "type" : "TLV", "since" : "1.10", "format" : "sequence", @@ -1793,13 +1703,11 @@ "format" : "gint16" } ] } } ] } } ] }, { "name" : "UMTS Cell ID", "id" : "0x17", - "mandatory" : "no", "type" : "TLV", "since" : "1.10", "format" : "guint32" }, { "name" : "UMTS Info Neighboring LTE", "id" : "0x18", - "mandatory" : "no", "type" : "TLV", "since" : "1.10", "format" : "sequence", @@ -1833,7 +1741,6 @@ "since" : "1.0", "output" : [ { "name" : "Universal Time", "id" : "0x01", - "mandatory" : "yes", "type" : "TLV", "since" : "1.4", "format" : "sequence", @@ -1854,20 +1761,17 @@ "public-format" : "QmiNasDayOfWeek" } ] }, { "name" : "Timezone Offset", "id" : "0x10", - "mandatory" : "no", "type" : "TLV", "since" : "1.4", "format" : "gint8" }, { "name" : "Daylight Savings Adjustment", "id" : "0x11", - "mandatory" : "no", "type" : "TLV", "since" : "1.4", "format" : "guint8", "public-format" : "QmiNasDaylightSavingsAdjustment" }, { "name" : "Radio Interface", "id" : "0x12", - "mandatory" : "no", "type" : "TLV", "since" : "1.4", "format" : "gint8", @@ -1883,7 +1787,6 @@ "output" : [ { "common-ref" : "Operation Result" }, { "name" : "CDMA Service Status", "id" : "0x10", - "mandatory" : "no", "type" : "TLV", "since" : "1.0", "format" : "sequence", @@ -1895,7 +1798,6 @@ "public-format" : "gboolean" } ] }, { "name" : "HDR Service Status", "id" : "0x11", - "mandatory" : "no", "type" : "TLV", "since" : "1.0", "format" : "sequence", @@ -1907,7 +1809,6 @@ "public-format" : "gboolean" } ] }, { "name" : "GSM Service Status", "id" : "0x12", - "mandatory" : "no", "type" : "TLV", "since" : "1.0", "format" : "sequence", @@ -1922,7 +1823,6 @@ "public-format" : "gboolean" } ] }, { "name" : "WCDMA Service Status", "id" : "0x13", - "mandatory" : "no", "type" : "TLV", "since" : "1.0", "format" : "sequence", @@ -1937,7 +1837,6 @@ "public-format" : "gboolean" } ] }, { "name" : "LTE Service Status", "id" : "0x14", - "mandatory" : "no", "type" : "TLV", "since" : "1.0", "format" : "sequence", @@ -1952,7 +1851,6 @@ "public-format" : "gboolean" } ] }, { "name" : "CDMA System Info", "id" : "0x15", - "mandatory" : "no", "type" : "TLV", "since" : "1.0", "format" : "sequence", @@ -2034,7 +1932,6 @@ "fixed-size" : "3" } ] }, { "name" : "HDR System Info", "id" : "0x16", - "mandatory" : "no", "type" : "TLV", "since" : "1.0", "format" : "sequence", @@ -2088,7 +1985,6 @@ "fixed-size" : "16" } ] }, { "name" : "GSM System Info", "id" : "0x17", - "mandatory" : "no", "type" : "TLV", "since" : "1.0", "format" : "sequence", @@ -2157,7 +2053,6 @@ "public-format" : "gboolean" } ] }, { "name" : "WCDMA System Info", "id" : "0x18", - "mandatory" : "no", "type" : "TLV", "since" : "1.0", "format" : "sequence", @@ -2231,7 +2126,6 @@ "format" : "guint16" } ] }, { "name" : "LTE System Info", "id" : "0x19", - "mandatory" : "no", "type" : "TLV", "since" : "1.0", "format" : "sequence", @@ -2293,7 +2187,6 @@ "format" : "guint16" } ] }, { "name" : "Additional CDMA System Info", "id" : "0x1A", - "mandatory" : "no", "type" : "TLV", "since" : "1.0", "format" : "sequence", @@ -2303,7 +2196,6 @@ "format" : "guint16" } ] }, { "name" : "Additional HDR System Info", "id" : "0x1B", - "mandatory" : "no", "type" : "TLV", "since" : "1.0", "format" : "sequence", @@ -2311,7 +2203,6 @@ "format" : "guint16" } ] }, { "name" : "Additional GSM System Info", "id" : "0x1C", - "mandatory" : "no", "type" : "TLV", "since" : "1.0", "format" : "sequence", @@ -2322,7 +2213,6 @@ "public-format" : "QmiNasCellBroadcastCapability" } ] }, { "name" : "Additional WCDMA System Info", "id" : "0x1D", - "mandatory" : "no", "type" : "TLV", "since" : "1.0", "format" : "sequence", @@ -2333,7 +2223,6 @@ "public-format" : "QmiNasCellBroadcastCapability" } ] }, { "name" : "Additional LTE System Info", "id" : "0x1E", - "mandatory" : "no", "type" : "TLV", "since" : "1.0", "format" : "sequence", @@ -2341,7 +2230,6 @@ "format" : "guint16" } ] }, { "name" : "GSM Call Barring Status", "id" : "0x1F", - "mandatory" : "no", "type" : "TLV", "since" : "1.0", "format" : "sequence", @@ -2353,7 +2241,6 @@ "public-format" : "QmiNasCallBarringStatus" } ] }, { "name" : "WCDMA Call Barring Status", "id" : "0x20", - "mandatory" : "no", "type" : "TLV", "since" : "1.0", "format" : "sequence", @@ -2365,28 +2252,24 @@ "public-format" : "QmiNasCallBarringStatus" } ] }, { "name" : "LTE Voice Support", "id" : "0x21", - "mandatory" : "no", "type" : "TLV", "since" : "1.0", "format" : "guint8", "public-format" : "gboolean" }, { "name" : "GSM Cipher Domain", "id" : "0x22", - "mandatory" : "no", "type" : "TLV", "since" : "1.0", "format" : "guint8", "public-format" : "QmiNasNetworkServiceDomain" }, { "name" : "WCDMA Cipher Domain", "id" : "0x23", - "mandatory" : "no", "type" : "TLV", "since" : "1.0", "format" : "guint8", "public-format" : "QmiNasNetworkServiceDomain" }, { "name" : "TD SCDMA Service Status", "id" : "0x24", - "mandatory" : "no", "type" : "TLV", "since" : "1.0", "format" : "sequence", @@ -2401,7 +2284,6 @@ "public-format" : "gboolean" } ] }, { "name" : "TD SCDMA System Info", "id" : "0x25", - "mandatory" : "no", "type" : "TLV", "since" : "1.0", "format" : "sequence", @@ -2499,14 +2381,12 @@ "public-format" : "QmiNasNetworkServiceDomain" } ] }, { "name" : "LTE eMBMS Coverage Info Support", "id" : "0x26", - "mandatory" : "no", "type" : "TLV", "since" : "1.0", "format" : "guint8", "public-format" : "gboolean" }, { "name" : "SIM Reject Info", "id" : "0x27", - "mandatory" : "no", "type" : "TLV", "since" : "1.0", "format" : "guint32", @@ -2521,7 +2401,6 @@ "since" : "1.0", "output" : [ { "name" : "CDMA Service Status", "id" : "0x10", - "mandatory" : "no", "type" : "TLV", "since" : "1.0", "format" : "sequence", @@ -2533,7 +2412,6 @@ "public-format" : "gboolean" } ] }, { "name" : "HDR Service Status", "id" : "0x11", - "mandatory" : "no", "type" : "TLV", "since" : "1.0", "format" : "sequence", @@ -2545,7 +2423,6 @@ "public-format" : "gboolean" } ] }, { "name" : "GSM Service Status", "id" : "0x12", - "mandatory" : "no", "type" : "TLV", "since" : "1.0", "format" : "sequence", @@ -2560,7 +2437,6 @@ "public-format" : "gboolean" } ] }, { "name" : "WCDMA Service Status", "id" : "0x13", - "mandatory" : "no", "type" : "TLV", "since" : "1.0", "format" : "sequence", @@ -2575,7 +2451,6 @@ "public-format" : "gboolean" } ] }, { "name" : "LTE Service Status", "id" : "0x14", - "mandatory" : "no", "type" : "TLV", "since" : "1.0", "format" : "sequence", @@ -2590,7 +2465,6 @@ "public-format" : "gboolean" } ] }, { "name" : "CDMA System Info", "id" : "0x15", - "mandatory" : "no", "type" : "TLV", "since" : "1.0", "format" : "sequence", @@ -2672,7 +2546,6 @@ "fixed-size" : "3" } ] }, { "name" : "HDR System Info", "id" : "0x16", - "mandatory" : "no", "type" : "TLV", "since" : "1.0", "format" : "sequence", @@ -2726,7 +2599,6 @@ "fixed-size" : "16" } ] }, { "name" : "GSM System Info", "id" : "0x17", - "mandatory" : "no", "type" : "TLV", "since" : "1.0", "format" : "sequence", @@ -2795,7 +2667,6 @@ "public-format" : "gboolean" } ] }, { "name" : "WCDMA System Info", "id" : "0x18", - "mandatory" : "no", "type" : "TLV", "since" : "1.0", "format" : "sequence", @@ -2869,7 +2740,6 @@ "format" : "guint16" } ] }, { "name" : "LTE System Info", "id" : "0x19", - "mandatory" : "no", "type" : "TLV", "since" : "1.0", "format" : "sequence", @@ -2931,7 +2801,6 @@ "format" : "guint16" } ] }, { "name" : "Additional CDMA System Info", "id" : "0x1A", - "mandatory" : "no", "type" : "TLV", "since" : "1.0", "format" : "sequence", @@ -2941,7 +2810,6 @@ "format" : "guint16" } ] }, { "name" : "Additional HDR System Info", "id" : "0x1B", - "mandatory" : "no", "type" : "TLV", "since" : "1.0", "format" : "sequence", @@ -2949,7 +2817,6 @@ "format" : "guint16" } ] }, { "name" : "Additional GSM System Info", "id" : "0x1C", - "mandatory" : "no", "type" : "TLV", "since" : "1.0", "format" : "sequence", @@ -2960,7 +2827,6 @@ "public-format" : "QmiNasCellBroadcastCapability" } ] }, { "name" : "Additional WCDMA System Info", "id" : "0x1D", - "mandatory" : "no", "type" : "TLV", "since" : "1.0", "format" : "sequence", @@ -2971,7 +2837,6 @@ "public-format" : "QmiNasCellBroadcastCapability" } ] }, { "name" : "Additional LTE System Info", "id" : "0x1E", - "mandatory" : "no", "type" : "TLV", "since" : "1.0", "format" : "sequence", @@ -2979,7 +2844,6 @@ "format" : "guint16" } ] }, { "name" : "GSM Call Barring Status", "id" : "0x1F", - "mandatory" : "no", "type" : "TLV", "since" : "1.0", "format" : "sequence", @@ -2991,7 +2855,6 @@ "public-format" : "QmiNasCallBarringStatus" } ] }, { "name" : "WCDMA Call Barring Status", "id" : "0x20", - "mandatory" : "no", "type" : "TLV", "since" : "1.0", "format" : "sequence", @@ -3003,35 +2866,30 @@ "public-format" : "QmiNasCallBarringStatus" } ] }, { "name" : "LTE Voice Support", "id" : "0x21", - "mandatory" : "no", "type" : "TLV", "since" : "1.0", "format" : "guint8", "public-format" : "gboolean" }, { "name" : "GSM Cipher Domain", "id" : "0x22", - "mandatory" : "no", "type" : "TLV", "since" : "1.0", "format" : "guint8", "public-format" : "QmiNasNetworkServiceDomain" }, { "name" : "WCDMA Cipher Domain", "id" : "0x23", - "mandatory" : "no", "type" : "TLV", "since" : "1.0", "format" : "guint8", "public-format" : "QmiNasNetworkServiceDomain" }, { "name" : "PLMN Not Changed Indication", "id" : "0x24", - "mandatory" : "no", "type" : "TLV", "since" : "1.0", "format" : "guint8", "public-format" : "gboolean" }, { "name" : "TD SCDMA Service Status", "id" : "0x25", - "mandatory" : "no", "type" : "TLV", "since" : "1.0", "format" : "sequence", @@ -3046,7 +2904,6 @@ "public-format" : "gboolean" } ] }, { "name" : "TD SCMA System Info", "id" : "0x26", - "mandatory" : "no", "type" : "TLV", "since" : "1.0", "format" : "sequence", @@ -3144,14 +3001,12 @@ "public-format" : "QmiNasNetworkServiceDomain" } ] }, { "name" : "LTE eMBMS Coverage Info Support", "id" : "0x27", - "mandatory" : "no", "type" : "TLV", "since" : "1.0", "format" : "guint8", "public-format" : "gboolean" }, { "name" : "SIM Reject Info", "id" : "0x28", - "mandatory" : "no", "type" : "TLV", "since" : "1.0", "format" : "guint32", @@ -3167,7 +3022,6 @@ "output" : [ { "common-ref" : "Operation Result" }, { "name" : "CDMA Signal Strength", "id" : "0x10", - "mandatory" : "no", "type" : "TLV", "since" : "1.0", "format" : "sequence", @@ -3177,7 +3031,6 @@ "format" : "gint16" } ] }, { "name" : "HDR Signal Strength", "id" : "0x11", - "mandatory" : "no", "type" : "TLV", "since" : "1.0", "format" : "sequence", @@ -3192,13 +3045,11 @@ "format" : "gint32" } ] }, { "name" : "GSM Signal Strength", "id" : "0x12", - "mandatory" : "no", "type" : "TLV", "since" : "1.0", "format" : "gint8" }, { "name" : "WCDMA Signal Strength", "id" : "0x13", - "mandatory" : "no", "type" : "TLV", "since" : "1.0", "format" : "sequence", @@ -3208,7 +3059,6 @@ "format" : "gint16" } ] }, { "name" : "LTE Signal Strength", "id" : "0x14", - "mandatory" : "no", "type" : "TLV", "since" : "1.0", "format" : "sequence", @@ -3222,7 +3072,6 @@ "format" : "gint16" } ] }, { "name" : "TDMA Signal Strength", "id" : "0x15", - "mandatory" : "no", "type" : "TLV", "since" : "1.0", "format" : "gint8" } ] }, @@ -3236,56 +3085,48 @@ "since" : "1.0", "input" : [ { "name" : "RSSI Threshold", "id" : "0x10", - "mandatory" : "no", "type" : "TLV", "since" : "1.0", "format" : "array", "array-element" : { "format" : "gint8" } }, { "name" : "ECIO Threshold", "id" : "0x11", - "mandatory" : "no", "type" : "TLV", "since" : "1.0", "format" : "array", "array-element" : { "format" : "gint16" } }, { "name" : "SINR Threshold", "id" : "0x12", - "mandatory" : "no", "type" : "TLV", "since" : "1.0", "format" : "array", "array-element" : { "format" : "guint8" } }, { "name" : "LTE SNR Threshold", "id" : "0x13", - "mandatory" : "no", "type" : "TLV", "since" : "1.0", "format" : "array", "array-element" : { "format" : "gint16" } }, { "name" : "IO Threshold", "id" : "0x14", - "mandatory" : "no", "type" : "TLV", "since" : "1.0", "format" : "array", "array-element" : { "format" : "gint32" } }, { "name" : "RSRQ Threshold", "id" : "0x15", - "mandatory" : "no", "type" : "TLV", "since" : "1.0", "format" : "array", "array-element" : { "format" : "gint8" } }, { "name" : "RSRP Threshold", "id" : "0x16", - "mandatory" : "no", "type" : "TLV", "since" : "1.0", "format" : "array", "array-element" : { "format" : "gint16" } }, { "name" : "LTE Report", "id" : "0x17", - "mandatory" : "no", "type" : "TLV", "since" : "1.0", "format" : "sequence", @@ -3295,7 +3136,6 @@ "format" : "guint8" } ] }, { "name" : "RSCP Threshold", "id" : "0x18", - "mandatory" : "no", "type" : "TLV", "since" : "1.0", "format" : "array", @@ -3311,7 +3151,6 @@ "since" : "1.0", "output" : [ { "name" : "CDMA Signal Strength", "id" : "0x10", - "mandatory" : "no", "type" : "TLV", "since" : "1.0", "format" : "sequence", @@ -3321,7 +3160,6 @@ "format" : "gint16" } ] }, { "name" : "HDR Signal Strength", "id" : "0x11", - "mandatory" : "no", "type" : "TLV", "since" : "1.0", "format" : "sequence", @@ -3336,13 +3174,11 @@ "format" : "gint32" } ] }, { "name" : "GSM Signal Strength", "id" : "0x12", - "mandatory" : "no", "type" : "TLV", "since" : "1.0", "format" : "gint8" }, { "name" : "WCDMA Signal Strength", "id" : "0x13", - "mandatory" : "no", "type" : "TLV", "since" : "1.0", "format" : "sequence", @@ -3352,7 +3188,6 @@ "format" : "gint16" } ] }, { "name" : "LTE Signal Strength", "id" : "0x14", - "mandatory" : "no", "type" : "TLV", "since" : "1.0", "format" : "sequence", @@ -3366,7 +3201,6 @@ "format" : "gint16" } ] }, { "name" : "TDMA Signal Strength", "id" : "0x15", - "mandatory" : "no", "type" : "TLV", "since" : "1.0", "format" : "gint8" } ] }, @@ -3380,7 +3214,6 @@ "since" : "1.6", "input" : [ { "name" : "Radio Interface", "id" : "0x01", - "mandatory" : "yes", "type" : "TLV", "since" : "1.6", "format" : "gint8", @@ -3388,7 +3221,6 @@ "output" : [ { "common-ref" : "Operation Result" }, { "name" : "Rx Chain 0 Info", "id" : "0x10", - "mandatory" : "no", "type" : "TLV", "since" : "1.6", "format" : "sequence", @@ -3408,7 +3240,6 @@ "prerequisites": [ { "common-ref" : "Success" } ] }, { "name" : "Rx Chain 1 Info", "id" : "0x11", - "mandatory" : "no", "type" : "TLV", "since" : "1.6", "format" : "sequence", @@ -3428,7 +3259,6 @@ "prerequisites": [ { "common-ref" : "Success" } ] }, { "name" : "Tx Info", "id" : "0x12", - "mandatory" : "no", "type" : "TLV", "since" : "1.6", "format" : "sequence", @@ -3458,7 +3288,6 @@ "output" : [ { "common-ref" : "Operation Result" }, { "name" : "CDMA Position Info", "id" : "0x10", - "mandatory" : "no", "type" : "TLV", "since" : "1.0", "format" : "sequence", @@ -3499,7 +3328,6 @@ "output" : [ { "common-ref" : "Operation Result" }, { "name" : "DL Bandwidth", "id" : "0x11", - "mandatory" : "no", "type" : "TLV", "since" : "1.16", "format" : "guint32", @@ -3507,7 +3335,6 @@ "prerequisites": [ { "common-ref" : "Success" } ] }, { "name" : "Phy CA Agg SCell Info", "id" : "0x12", - "mandatory" : "no", "type" : "TLV", "since" : "1.16", "format" : "sequence", @@ -3527,7 +3354,6 @@ "prerequisites": [ { "common-ref" : "Success" } ] }, { "name" : "Phy CA Agg PCell Info", "id" : "0x13", - "mandatory" : "no", "type" : "TLV", "since" : "1.16", "format" : "sequence", @@ -3544,9 +3370,32 @@ "prerequisites": [ { "common-ref" : "Success" } ] }, { "name" : "SCell index", "id" : "0x14", - "mandatory" : "no", "type" : "TLV", "since" : "1.16", "format" : "guint8", - "prerequisites": [ { "common-ref" : "Success" } ] } ] } + "prerequisites": [ { "common-ref" : "Success" } ] }, + { "name" : "Phy CA Agg Secondary Cells", + "id" : "0x15", + "type" : "TLV", + "since" : "1.22", + "format" : "array", + "size-prefix-format" : "guint8", + "array-element" : { "name" : "SSC", + "format" : "struct", + "contents" : [ { "name" : "Physical Cell ID", + "format" : "guint16"}, + { "name" : "Rx Channel", + "format" : "guint16" }, + { "name" : "DL Bandwidth", + "format" : "guint32", + "public-format" : "QmiNasDLBandwidth" }, + { "name" : "LTE Band", + "format" : "guint16", + "public-format" : "QmiNasActiveBand" }, + { "name" : "State", + "format" : "guint32", + "public-format" : "QmiNasScellState" }, + { "name" : "Cell Index", + "format" : "guint8" } ] }, + "prerequisites" : [ { "common-ref" : "Success" } ] } ] } ] diff -Nru libqmi-1.18.0/data/qmi-service-oma.json libqmi-1.22.0/data/qmi-service-oma.json --- libqmi-1.18.0/data/qmi-service-oma.json 2017-03-21 14:26:54.000000000 +0100 +++ libqmi-1.22.0/data/qmi-service-oma.json 2019-01-08 14:09:47.000000000 +0100 @@ -35,14 +35,12 @@ "since" : "1.6", "input" : [ { "name" : "Network Initiated Alert Reporting", "id" : "0x10", - "mandatory" : "no", "type" : "TLV", "since" : "1.6", "format" : "guint8", "public-format" : "gboolean" }, { "name" : "Session State Reporting", "id" : "0x11", - "mandatory" : "no", "type" : "TLV", "since" : "1.6", "format" : "guint8", @@ -56,7 +54,6 @@ "since" : "1.6", "output" : [ { "name" : "Network Initiated Alert", "id" : "0x10", - "mandatory" : "no", "type" : "TLV", "since" : "1.6", "format" : "sequence", @@ -67,14 +64,12 @@ "format" : "guint16" } ] }, { "name" : "Session State", "id" : "0x11", - "mandatory" : "no", "type" : "TLV", "since" : "1.6", "format" : "guint8", "public-format" : "QmiOmaSessionState" }, { "name" : "Session Fail Reason", "id" : "0x12", - "mandatory" : "no", "type" : "TLV", "since" : "1.6", "format" : "guint8", @@ -89,7 +84,6 @@ "since" : "1.6", "input" : [ { "name" : "Session Type", "id" : "0x10", - "mandatory" : "no", "type" : "TLV", "since" : "1.6", "format" : "guint8", @@ -113,7 +107,6 @@ "since" : "1.6", "output" : [ { "name" : "Session Info", "id" : "0x10", - "mandatory" : "no", "type" : "TLV", "since" : "1.6", "format" : "sequence", @@ -126,7 +119,6 @@ "prerequisites": [ { "common-ref" : "Success" } ] }, { "name" : "Session Failed Reason", "id" : "0x11", - "mandatory" : "no", "type" : "TLV", "since" : "1.6", "format" : "guint8", @@ -136,7 +128,6 @@ "value" : "QMI_OMA_SESSION_STATE_FAILED" } ] }, { "name" : "Retry Info", "id" : "0x12", - "mandatory" : "no", "type" : "TLV", "since" : "1.6", "format" : "sequence", @@ -149,7 +140,6 @@ "prerequisites": [ { "common-ref" : "Success" } ] }, { "name" : "Network Initiated Alert", "id" : "0x13", - "mandatory" : "no", "type" : "TLV", "since" : "1.6", "format" : "sequence", @@ -169,7 +159,6 @@ "since" : "1.6", "input" : [ { "name" : "Network Initiated Alert Selection", "id" : "0x10", - "mandatory" : "no", "type" : "TLV", "since" : "1.6", "format" : "sequence", @@ -188,7 +177,6 @@ "since" : "1.6", "output" : [ { "name" : "Device Provisioning Service Update Config", "id" : "0x10", - "mandatory" : "no", "type" : "TLV", "since" : "1.6", "format" : "guint8", @@ -196,7 +184,6 @@ "prerequisites" : [ { "common-ref" : "Success" } ] }, { "name" : "PRL Update Service Config", "id" : "0x11", - "mandatory" : "no", "type" : "TLV", "since" : "1.6", "format" : "guint8", @@ -204,7 +191,6 @@ "prerequisites" : [ { "common-ref" : "Success" } ] }, { "name" : "HFA Feature Config", "id" : "0x12", - "mandatory" : "no", "type" : "TLV", "since" : "1.6", "format" : "guint8", @@ -212,7 +198,6 @@ "prerequisites" : [ { "common-ref" : "Success" } ] }, { "name" : "HFA Feature Done State", "id" : "0x13", - "mandatory" : "no", "type" : "TLV", "since" : "1.6", "format" : "guint8", @@ -228,21 +213,18 @@ "since" : "1.6", "input" : [ { "name" : "Device Provisioning Service Update Config", "id" : "0x10", - "mandatory" : "no", "type" : "TLV", "since" : "1.6", "format" : "guint8", "public-format" : "gboolean" }, { "name" : "PRL Update Service Config", "id" : "0x11", - "mandatory" : "no", "type" : "TLV", "since" : "1.6", "format" : "guint8", "public-format" : "gboolean" }, { "name" : "HFA Feature Config", "id" : "0x12", - "mandatory" : "no", "type" : "TLV", "since" : "1.6", "format" : "guint8", diff -Nru libqmi-1.18.0/data/qmi-service-pbm.json libqmi-1.22.0/data/qmi-service-pbm.json --- libqmi-1.18.0/data/qmi-service-pbm.json 2017-03-21 14:26:54.000000000 +0100 +++ libqmi-1.22.0/data/qmi-service-pbm.json 2019-01-08 14:09:47.000000000 +0100 @@ -22,7 +22,6 @@ "since" : "1.6", "input" : [ { "name" : "Event Registration Mask", "id" : "0x01", - "mandatory" : "yes", "type" : "TLV", "since" : "1.6", "format" : "guint32", @@ -30,7 +29,6 @@ "output" : [ { "common-ref" : "Operation Result" }, { "name" : "Event Registration Mask", "id" : "0x10", - "mandatory" : "no", "type" : "TLV", "since" : "1.6", "format" : "guint32", @@ -46,7 +44,6 @@ "since" : "1.6", "input" : [ { "name" : "Phonebook Information", "id" : "0x01", - "mandatory" : "yes", "type" : "TLV", "since" : "1.6", "format" : "sequence", @@ -59,7 +56,6 @@ "output" : [ { "common-ref" : "Operation Result" }, { "name" : "Capability Basic Information", "id" : "0x10", - "mandatory" : "no", "type" : "TLV", "since" : "1.6", "format" : "sequence", @@ -80,7 +76,6 @@ "prerequisites" : [ { "common-ref" : "Success" } ] }, { "name" : "Group Capability", "id" : "0x11", - "mandatory" : "no", "type" : "TLV", "since" : "1.6", "format" : "sequence", @@ -91,7 +86,6 @@ "prerequisites" : [ { "common-ref" : "Success" } ] }, { "name" : "Additional Number Capability", "id" : "0x12", - "mandatory" : "no", "type" : "TLV", "since" : "1.6", "format" : "sequence", @@ -104,7 +98,6 @@ "prerequisites" : [ { "common-ref" : "Success" } ] }, { "name" : "Email Capability", "id" : "0x13", - "mandatory" : "no", "type" : "TLV", "since" : "1.6", "format" : "sequence", @@ -115,7 +108,6 @@ "prerequisites" : [ { "common-ref" : "Success" } ] }, { "name" : "Second Name Capability", "id" : "0x14", - "mandatory" : "no", "type" : "TLV", "since" : "1.6", "format" : "sequence", @@ -124,7 +116,6 @@ "prerequisites" : [ { "common-ref" : "Success" } ] }, { "name" : "Hidden Records Capability", "id" : "0x15", - "mandatory" : "no", "type" : "TLV", "since" : "1.6", "format" : "sequence", @@ -134,7 +125,6 @@ "prerequisites" : [ { "common-ref" : "Success" } ] }, { "name" : "Grouping Information Alpha String Capability", "id" : "0x16", - "mandatory" : "no", "type" : "TLV", "since" : "1.6", "format" : "sequence", @@ -147,7 +137,6 @@ "prerequisites" : [ { "common-ref" : "Success" } ] }, { "name" : "Additional Number Alpha String Capability", "id" : "0x17", - "mandatory" : "no", "type" : "TLV", "since" : "1.6", "format" : "sequence", @@ -169,7 +158,6 @@ "output" : [ { "common-ref" : "Operation Result" }, { "name" : "Capability Basic Information", "id" : "0x10", - "mandatory" : "no", "type" : "TLV", "since" : "1.6", "format" : "array", @@ -198,7 +186,6 @@ "prerequisites" : [ { "common-ref" : "Success" } ] }, { "name" : "Group Capability", "id" : "0x11", - "mandatory" : "no", "type" : "TLV", "since" : "1.6", "format" : "array", @@ -215,7 +202,6 @@ "prerequisites" : [ { "common-ref" : "Success" } ] }, { "name" : "Additional Number Capability", "id" : "0x12", - "mandatory" : "no", "type" : "TLV", "since" : "1.6", "format" : "array", @@ -234,7 +220,6 @@ "prerequisites" : [ { "common-ref" : "Success" } ] }, { "name" : "Email Capability", "id" : "0x13", - "mandatory" : "no", "type" : "TLV", "since" : "1.6", "format" : "array", @@ -251,7 +236,6 @@ "prerequisites" : [ { "common-ref" : "Success" } ] }, { "name" : "Second Name Capability", "id" : "0x14", - "mandatory" : "no", "type" : "TLV", "since" : "1.6", "format" : "array", @@ -266,7 +250,6 @@ "prerequisites" : [ { "common-ref" : "Success" } ] }, { "name" : "Hidden Records Capability", "id" : "0x15", - "mandatory" : "no", "type" : "TLV", "since" : "1.6", "format" : "array", @@ -282,7 +265,6 @@ "prerequisites" : [ { "common-ref" : "Success" } ] }, { "name" : "Grouping Information Alpha String Capability", "id" : "0x16", - "mandatory" : "no", "type" : "TLV", "since" : "1.6", "format" : "array", @@ -301,7 +283,6 @@ "prerequisites" : [ { "common-ref" : "Success" } ] }, { "name" : "Additional Number Alpha String Capability", "id" : "0x17", - "mandatory" : "no", "type" : "TLV", "since" : "1.6", "format" : "array", diff -Nru libqmi-1.18.0/data/qmi-service-pdc.json libqmi-1.22.0/data/qmi-service-pdc.json --- libqmi-1.18.0/data/qmi-service-pdc.json 2017-03-21 14:26:54.000000000 +0100 +++ libqmi-1.22.0/data/qmi-service-pdc.json 2019-01-08 14:09:47.000000000 +0100 @@ -20,7 +20,6 @@ { "common-ref" : "Config Type", "name" : "Config Type", "id" : "0x1", - "mandatory" : "yes", "type" : "TLV", "format" : "guint32", "public-format" : "QmiPdcConfigurationType" }, @@ -28,7 +27,6 @@ { "common-ref" : "Indication Result", "name" : "Indication Result", "id" : "0x01", - "mandatory" : "yes", "type" : "TLV", "format" : "guint16" }, @@ -37,7 +35,6 @@ "name" : "Type With Id", "fullname" : "Qmi Config Type And Id", "id" : "0x01", - "mandatory" : "yes", "type" : "TLV", "format" : "struct", "contents" : [ { "name" : "Config Type", @@ -51,7 +48,6 @@ { "common-ref" : "Token", "name" : "Token", "id" : "0x10", - "mandatory" : "no", "type" : "TLV", "format" : "guint32"}, @@ -120,14 +116,12 @@ "since" : "1.18" }, { "name" : "Active Id", "id" : "0x11", - "mandatory" : "no", "type" : "TLV", "since" : "1.18", "format" : "array", "array-element" : { "format" : "guint8" } }, { "name" : "Pending Id", "id" : "0x12", - "mandatory" : "no", "type" : "TLV", "since" : "1.18", "format" : "array", @@ -188,7 +182,6 @@ "since" : "1.18" }, { "name" : "Configs", "id" : "0x11", - "mandatory" : "no", "type" : "TLV", "since" : "1.18", "format" : "array", @@ -233,7 +226,6 @@ "since" : "1.18", "input" : [ { "name" : "Config Chunk", "id" : "0x1", - "mandatory" : "yes", "type" : "TLV", "since" : "1.18", "format" : "sequence", @@ -267,19 +259,16 @@ "since" : "1.18" }, { "name" : "Received", "id" : "0x11", - "mandatory" : "no", "type" : "TLV", "since" : "1.18", "format" : "guint32" }, { "name" : "Remaining Size", "id" : "0x12", - "mandatory" : "no", "type" : "TLV", "since" : "1.18", "format" : "guint32" }, { "name" : "Frame Reset", "id" : "0x13", - "mandatory" : "no", "type" : "TLV", "since" : "1.18", "format" : "guint8", @@ -337,20 +326,17 @@ "since" : "1.18" }, { "name" : "Total Size", "id" : "0x11", - "mandatory" : "no", "type" : "TLV", "since" : "1.18", "format" : "guint32" }, { "name" : "Description", "id" : "0x12", - "mandatory" : "no", "type" : "TLV", "since" : "1.18", "format" : "string", "size-prefix-format" : "guint8"}, { "name" : "Version", "id" : "0x13", - "mandatory" : "no", "type" : "TLV", "since" : "1.18", "format" : "guint32" } @@ -372,13 +358,11 @@ "since" : "1.18" }, { "name" : "Maximum Size", "id" : "0x11", - "mandatory" : "no", "type" : "TLV", "since" : "1.18", "format" : "guint64" }, { "name" : "Current Size", "id" : "0x12", - "mandatory" : "no", "type" : "TLV", "since" : "1.18", "format" : "guint64" }] }, @@ -399,19 +383,16 @@ "since" : "1.18" }, { "name" : "Version", "id" : "0x11", - "mandatory" : "no", "type" : "TLV", "since" : "1.18", "format" : "guint32" }, { "name" : "Total Size", "id" : "0x12", - "mandatory" : "no", "type" : "TLV", "since" : "1.18", "format" : "guint32" }, { "name" : "Description", "id" : "0x13", - "mandatory" : "no", "type" : "TLV", "since" : "1.18", "format" : "string" } diff -Nru libqmi-1.18.0/data/qmi-service-pds.json libqmi-1.22.0/data/qmi-service-pds.json --- libqmi-1.18.0/data/qmi-service-pds.json 2017-03-21 14:26:54.000000000 +0100 +++ libqmi-1.22.0/data/qmi-service-pds.json 2019-01-08 14:09:47.000000000 +0100 @@ -35,140 +35,120 @@ "since" : "1.0", "input" : [ { "name" : "NMEA Position Reporting", "id" : "0x10", - "mandatory" : "no", "type" : "TLV", "since" : "1.0", "format" : "guint8", "public-format" : "gboolean" }, { "name" : "Extended NMEA Position Reporting", "id" : "0x11", - "mandatory" : "no", "type" : "TLV", "since" : "1.0", "format" : "guint8", "public-format" : "gboolean" }, { "name" : "Parsed Position Reporting", "id" : "0x12", - "mandatory" : "no", "type" : "TLV", "since" : "1.0", "format" : "guint8", "public-format" : "gboolean" }, { "name" : "External XTRA Data Request Reporting", "id" : "0x13", - "mandatory" : "no", "type" : "TLV", "since" : "1.0", "format" : "guint8", "public-format" : "gboolean" }, { "name" : "External Time Injection Request Reporting", "id" : "0x14", - "mandatory" : "no", "type" : "TLV", "since" : "1.0", "format" : "guint8", "public-format" : "gboolean" }, { "name" : "External WIFI Position Request Reporting", "id" : "0x15", - "mandatory" : "no", "type" : "TLV", "since" : "1.0", "format" : "guint8", "public-format" : "gboolean" }, { "name" : "Satellite Information Reporting", "id" : "0x16", - "mandatory" : "no", "type" : "TLV", "since" : "1.0", "format" : "guint8", "public-format" : "gboolean" }, { "name" : "VX Network Initiated Request Reporting", "id" : "0x17", - "mandatory" : "no", "type" : "TLV", "since" : "1.0", "format" : "guint8", "public-format" : "gboolean" }, { "name" : "SUPL Network Initiated Prompt Reporting", "id" : "0x18", - "mandatory" : "no", "type" : "TLV", "since" : "1.0", "format" : "guint8", "public-format" : "gboolean" }, { "name" : "UMTS CP Network Initiated Prompt Reporting", "id" : "0x19", - "mandatory" : "no", "type" : "TLV", "since" : "1.0", "format" : "guint8", "public-format" : "gboolean" }, { "name" : "PDS Comm Event Reporting", "id" : "0x1A", - "mandatory" : "no", "type" : "TLV", "since" : "1.0", "format" : "guint8", "public-format" : "gboolean" }, { "name" : "Accelerometer Data Streaming Ready Reporting", "id" : "0x1B", - "mandatory" : "no", "type" : "TLV", "since" : "1.0", "format" : "guint8", "public-format" : "gboolean" }, { "name" : "Gyro Data Streaming Ready Reporting", "id" : "0x1C", - "mandatory" : "no", "type" : "TLV", "since" : "1.0", "format" : "guint8", "public-format" : "gboolean" }, { "name" : "Time Sync Request Reporting", "id" : "0x1D", - "mandatory" : "no", "type" : "TLV", "since" : "1.0", "format" : "guint8", "public-format" : "gboolean" }, { "name" : "Position Reliability Indicator Reporting", "id" : "0x1E", - "mandatory" : "no", "type" : "TLV", "since" : "1.0", "format" : "guint8", "public-format" : "gboolean" }, { "name" : "Sensor Data Usage Indicator Reporting", "id" : "0x1F", - "mandatory" : "no", "type" : "TLV", "since" : "1.0", "format" : "guint8", "public-format" : "gboolean" }, { "name" : "Time Source Information Reporting", "id" : "0x20", - "mandatory" : "no", "type" : "TLV", "since" : "1.0", "format" : "guint8", "public-format" : "gboolean" }, { "name" : "Heading Uncertainty Reporting", "id" : "0x21", - "mandatory" : "no", "type" : "TLV", "since" : "1.0", "format" : "guint8", "public-format" : "gboolean" }, { "name" : "NMEA Debug Strings Reporting", "id" : "0x22", - "mandatory" : "no", "type" : "TLV", "since" : "1.0", "format" : "guint8", "public-format" : "gboolean" }, { "name" : "Extended External XTRA Data Request Reporting", "id" : "0x23", - "mandatory" : "no", "type" : "TLV", "since" : "1.0", "format" : "guint8", @@ -182,14 +162,12 @@ "since" : "1.0", "output" : [ { "name" : "NMEA Position", "id" : "0x10", - "mandatory" : "no", "type" : "TLV", "since" : "1.0", "format" : "string", "max-size" : "200" }, { "name" : "Extended NMEA Position", "id" : "0x11", - "mandatory" : "no", "type" : "TLV", "since" : "1.0", "format" : "sequence", @@ -203,7 +181,6 @@ "max-size" : "200" } ] }, { "name" : "Position Session Status", "id" : "0x12", - "mandatory" : "no", "type" : "TLV", "since" : "1.0", "format" : "guint8", @@ -213,7 +190,6 @@ // Reading gfloat/gdouble is still missing //{ "name" : "Parsed Position", // "id" : "0x13", - // "mandatory" : "no", // "type" : "TLV", // "format" : "sequence", // "contents" : [ { "name" : "Valid Mask", @@ -295,7 +271,6 @@ "output" : [ { "common-ref" : "Operation Result" }, { "name" : "State", "id" : "0x01", - "mandatory" : "yes", "type" : "TLV", "since" : "1.0", "format" : "sequence", @@ -316,7 +291,6 @@ "since" : "1.0", "input" : [ { "name" : "State", "id" : "0x01", - "mandatory" : "yes", "type" : "TLV", "since" : "1.0", "format" : "sequence", @@ -335,7 +309,6 @@ "output" : [ { "common-ref" : "Operation Result" }, { "name" : "Info", "id" : "0x01", - "mandatory" : "yes", "type" : "TLV", "since" : "1.12", "format" : "sequence", @@ -359,7 +332,6 @@ "since" : "1.12", "input" : [ { "name" : "Info", "id" : "0x01", - "mandatory" : "yes", "type" : "TLV", "since" : "1.12", "format" : "sequence", @@ -383,7 +355,6 @@ "since" : "1.12", "input" : [ { "name" : "Network Mode", "id" : "0x12", - "mandatory" : "no", "type" : "TLV", "since" : "1.12", "format" : "guint8", @@ -391,7 +362,6 @@ "output" : [ { "common-ref" : "Operation Result" }, { "name" : "Location Server Address", "id" : "0x10", - "mandatory" : "no", "type" : "TLV", "since" : "1.12", "format" : "sequence", @@ -403,7 +373,6 @@ "prerequisites" : [ { "common-ref" : "Success" } ] }, { "name" : "Location Server URL", "id" : "0x11", - "mandatory" : "no", "type" : "TLV", "since" : "1.12", "format" : "array", @@ -420,7 +389,6 @@ "since" : "1.12", "input" : [ { "name" : "Location Server Address", "id" : "0x10", - "mandatory" : "no", "type" : "TLV", "since" : "1.12", "format" : "sequence", @@ -431,7 +399,6 @@ "format" : "guint32" } ] }, { "name" : "Location Server URL", "id" : "0x11", - "mandatory" : "no", "type" : "TLV", "since" : "1.12", "format" : "array", @@ -439,7 +406,6 @@ "array-element" : { "format" : "guint8" } }, { "name" : "Network Mode", "id" : "0x14", - "mandatory" : "no", "type" : "TLV", "since" : "1.12", "format" : "guint8", @@ -456,7 +422,6 @@ "output" : [ { "common-ref" : "Operation Result" }, { "name" : "State", "id" : "0x01", - "mandatory" : "yes", "type" : "TLV", "since" : "1.0", "format" : "sequence", @@ -474,7 +439,6 @@ "since" : "1.0", "input" : [ { "name" : "State", "id" : "0x01", - "mandatory" : "yes", "type" : "TLV", "since" : "1.0", "format" : "sequence", diff -Nru libqmi-1.18.0/data/qmi-service-qos.json libqmi-1.22.0/data/qmi-service-qos.json --- libqmi-1.18.0/data/qmi-service-qos.json 1970-01-01 01:00:00.000000000 +0100 +++ libqmi-1.22.0/data/qmi-service-qos.json 2019-01-08 14:09:47.000000000 +0100 @@ -0,0 +1,156 @@ + +[ + // ********************************************************************************* + { "name" : "QOS", + "type" : "Service" }, + + // ********************************************************************************* + { "name" : "QMI Client QOS", + "type" : "Client", + "since" : "1.0" }, + + // ********************************************************************************* + { "name" : "QMI Message QOS", + "type" : "Message-ID-Enum" }, + + // ********************************************************************************* + { "name" : "QMI Indication QOS", + "type" : "Indication-ID-Enum" }, + + // ********************************************************************************* + { "name" : "Reset", + "type" : "Message", + "service" : "QOS", + "id" : "0x0000", + "version" : "1.0", + "since" : "1.22", + "output" : [ { "common-ref" : "Operation Result" } ] }, + + // ********************************************************************************* + + { "name" : "Get Flow Status", + "type" : "Message", + "service" : "QOS", + "id" : "0x0026", + "version" : "1.0", + "since" : "1.22", + "input" : [ { "name" : "Qos Id", + "id" : "0x01", + "mandatory" : "yes", + "type" : "TLV", + "since" : "1.22", + "format" : "guint32" } ], + "output" : [ { "common-ref" : "Operation Result" }, + { "name" : "Value", + "id" : "0x01", + "type" : "TLV", + "since" : "1.22", + "format" : "guint8", + "public-format" : "QmiQosStatus", + "prerequisites" : [ { "common-ref" : "Success" } ] } ] }, + + { "name" : "Flow Status", + "type" : "Indication", + "service" : "QOS", + "id" : "0x0026", + "version" : "1.0", + "since" : "1.22", + "output" : [ { "name" : "Value", + "id" : "0x01", + "type" : "TLV", + "since" : "1.22", + "format" : "sequence", + "contents" : [ { "name" : "Qos Id", + "format" : "guint32" }, + { "name" : "Status", + "format" : "guint8", + "public-format" : "QmiQosStatus" }, + { "name" : "Event", + "format" : "guint8", + "public-format" : "QmiQosEvent" } ] } ] }, + + // ********************************************************************************* + + { "name" : "Get Network Status", + "type" : "Message", + "service" : "QOS", + "id" : "0x0027", + "version" : "1.0", + "since" : "1.22", + "output" : [ { "common-ref" : "Operation Result" }, + { "name" : "QoS Supported", + "id" : "0x01", + "type" : "TLV", + "since" : "1.22", + "format" : "guint8", + "public-format" : "gboolean", + "prerequisites" : [ { "common-ref" : "Success" } ] } ] }, + + { "name" : "Network Status", + "type" : "Indication", + "service" : "QOS", + "id" : "0x0027", + "version" : "1.0", + "since" : "1.22", + "output" : [ { "name" : "QoS Supported", + "id" : "0x01", + "type" : "TLV", + "since" : "1.22", + "format" : "guint8", + "public-format" : "gboolean" } ] }, + + // ********************************************************************************* + + { "name" : "Swi Read Data Stats", + "type" : "Message", + "service" : "QOS", + "id" : "0x5556", + "version" : "1.0", + "since" : "1.22", + "input" : [ { "name" : "Apn Id", + "id" : "0x01", + "mandatory" : "yes", + "type" : "TLV", + "since" : "1.22", + "format" : "guint32" } ], + "output" : [ { "common-ref" : "Operation Result" }, + { "name" : "Apn", + "id" : "0x03", + "type" : "TLV", + "since" : "1.22", + "format" : "sequence", + "contents" : [ { "name" : "Apn Id", + "format" : "guint32" }, + { "name" : "Tx packets", + "format" : "guint32" }, + { "name" : "Tx packets dropped", + "format" : "guint32" }, + { "name" : "Rx packets", + "format" : "guint32" }, + { "name" : "Tx bytes", + "format" : "guint64" }, + { "name" : "Tx bytes dropped", + "format" : "guint64" }, + { "name" : "Rx bytes", + "format" : "guint64" } ], + "prerequisites" : [ { "common-ref" : "Success" } ] }, + { "name" : "Flow", + "id" : "0x04", + "type" : "TLV", + "since" : "1.22", + "format" : "array", + "size-prefix-format" : "guint32", + "array-element" : { "name" : "Element", + "format" : "struct", + "contents" : [ { "name" : "Bearer Id", + "format" : "guint32" }, + { "name" : "Tx packets", + "format" : "guint32" }, + { "name" : "Tx packets dropped", + "format" : "guint32" }, + { "name" : "Tx bytes", + "format" : "guint64" }, + { "name" : "Tx bytes dropped", + "format" : "guint64" } ] }, + "prerequisites" : [ { "common-ref" : "Success" } ] } ] } +] diff -Nru libqmi-1.18.0/data/qmi-service-uim.json libqmi-1.22.0/data/qmi-service-uim.json --- libqmi-1.18.0/data/qmi-service-uim.json 2017-03-21 14:26:54.000000000 +0100 +++ libqmi-1.22.0/data/qmi-service-uim.json 2019-01-08 15:15:35.000000000 +0100 @@ -14,6 +14,100 @@ "type" : "Message-ID-Enum" }, // ********************************************************************************* + { "name" : "QMI Indication UIM", + "type" : "Indication-ID-Enum" }, + + // ********************************************************************************* + { "common-ref" : "UIM Card Status", + "name" : "Card Status", + "id" : "0x10", + "type" : "TLV", + "format" : "sequence", + "contents" : [ { "name" : "Index GW Primary", + "format" : "guint16" }, + { "name" : "Index 1x Primary", + "format" : "guint16" }, + { "name" : "Index GW Secondary", + "format" : "guint16" }, + { "name" : "Index 1x Secondary", + "format" : "guint16" }, + { "name" : "Cards", + "format" : "array", + "size-prefix-format" : "guint8", + "array-element" : { "name" : "Element", + "format" : "struct", + "contents" : [ { "name" : "Card State", + "format" : "guint8", + "public-format" : "QmiUimCardState" }, + { "name" : "UPIN State", + "format" : "guint8", + "public-format" : "QmiUimPinState" }, + { "name" : "UPIN Retries", + "format" : "guint8" }, + { "name" : "UPUK Retries", + "format" : "guint8" }, + { "name" : "Error code", + "format" : "guint8", + "public-format" : "QmiUimCardError" }, + { "name" : "Applications", + "format" : "array", + "size-prefix-format" : "guint8", + "array-element" : { "name" : "Element", + "format" : "struct", + "contents" : [ { "name" : "Type", + "format" : "guint8", + "public-format" : "QmiUimCardApplicationType" }, + { "name" : "State", + "format" : "guint8", + "public-format" : "QmiUimCardApplicationState" }, + { "name" : "Personalization State", + "format" : "guint8", + "public-format" : "QmiUimCardApplicationPersonalizationState" }, + { "name" : "Personalization Feature", + "format" : "guint8", + "public-format" : "QmiUimCardApplicationPersonalizationFeature" }, + { "name" : "Personalization Retries", + "format" : "guint8" }, + { "name" : "Personalization Unblock Retries", + "format" : "guint8" }, + { "name" : "Application Identifier Value", + "format" : "array", + "size-prefix-format" : "guint8", + "array-element" : { "format" : "guint8" } }, + { "name" : "UPIN replaces PIN1", + "format" : "guint8", + "public-format" : "gboolean" }, + { "name" : "PIN1 State", + "format" : "guint8", + "public-format" : "QmiUimPinState" }, + { "name" : "PIN1 Retries", + "format" : "guint8" }, + { "name" : "PUK1 Retries", + "format" : "guint8" }, + { "name" : "PIN2 State", + "format" : "guint8", + "public-format" : "QmiUimPinState" }, + { "name" : "PIN2 Retries", + "format" : "guint8" }, + { "name" : "PUK2 Retries", + "format" : "guint8" } ] } } ] } } ] }, + + // ********************************************************************************* + { "common-ref" : "UIM Session", + "name" : "Session", + "fullname" : "Qmi UIM Session", + "id" : "0x01", + "type" : "TLV", + "format" : "sequence", + "contents" : [ { "name" : "Session Type", + "format" : "guint8", + "public-format" : "QmiUimSessionType" }, + { "name" : "Application Identifier", + "format" : "array", + "size-prefix-format" : "guint8", + "array-element" : { "format" : "guint8" } } ] }, + + // ********************************************************************************* { "name" : "Reset", "type" : "Message", "service" : "UIM", @@ -32,7 +126,6 @@ "output" : [ { "common-ref" : "Operation Result" }, { "name" : "List", "id" : "0x10", - "mandatory" : "no", "type" : "TLV", "since" : "1.14", "format" : "array", @@ -47,20 +140,10 @@ "id" : "0x0020", "version" : "1.0", "since" : "1.6", - "input" : [ { "name" : "Session Information", - "id" : "0x01", - "mandatory" : "yes", - "type" : "TLV", - "since" : "1.6", - "format" : "sequence", - "contents" : [ { "name" : "Session Type", - "format" : "guint8", - "public-format" : "QmiUimSessionType" }, - { "name" : "Application Identifier", - "format" : "string" } ] }, + "input" : [ { "common-ref" : "UIM Session", + "since" : "1.6" }, { "name" : "File", "id" : "0x02", - "mandatory" : "yes", "type" : "TLV", "since" : "1.6", "format" : "sequence", @@ -71,7 +154,6 @@ "array-element" : { "format" : "guint8" } } ] }, { "name" : "Read Information", "id" : "0x03", - "mandatory" : "yes", "type" : "TLV", "since" : "1.6", "format" : "sequence", @@ -81,13 +163,11 @@ "format" : "guint16" } ] }, { "name" : "Response In Indication Token", "id" : "0x10", - "mandatory" : "no", "type" : "TLV", "since" : "1.6", "format" : "guint32" }, { "name" : "Encrypt Data", "id" : "0x11", - "mandatory" : "no", "type" : "TLV", "since" : "1.6", "format" : "guint8", @@ -95,7 +175,6 @@ "output" : [ { "common-ref" : "Operation Result" }, { "name" : "Card result", "id" : "0x10", - "mandatory" : "no", "type" : "TLV", "since" : "1.6", "format" : "sequence", @@ -105,7 +184,6 @@ "format" : "guint8" } ] }, { "name" : "Read result", "id" : "0x11", - "mandatory" : "no", "type" : "TLV", "since" : "1.6", "format" : "array", @@ -114,14 +192,12 @@ "prerequisites" : [ { "common-ref" : "Success" } ] }, { "name" : "Response In Indication Token", "id" : "0x12", - "mandatory" : "no", "type" : "TLV", "since" : "1.6", "format" : "guint32", "prerequisites" : [ { "common-ref" : "Success" } ] }, { "name" : "Encrypted Data", "id" : "0x13", - "mandatory" : "no", "type" : "TLV", "since" : "1.6", "format" : "guint8", @@ -135,20 +211,10 @@ "id" : "0x0021", "version" : "1.0", "since" : "1.6", - "input" : [ { "name" : "Session Information", - "id" : "0x01", - "mandatory" : "yes", - "type" : "TLV", - "since" : "1.6", - "format" : "sequence", - "contents" : [ { "name" : "Session Type", - "format" : "guint8", - "public-format" : "QmiUimSessionType" }, - { "name" : "Application Identifier", - "format" : "string" } ] }, + "input" : [ { "common-ref" : "UIM Session", + "since" : "1.6" }, { "name" : "File", "id" : "0x02", - "mandatory" : "yes", "type" : "TLV", "since" : "1.6", "format" : "sequence", @@ -159,7 +225,6 @@ "array-element" : { "format" : "guint8" } } ] }, { "name" : "Record", "id" : "0x03", - "mandatory" : "yes", "type" : "TLV", "since" : "1.6", "format" : "sequence", @@ -169,20 +234,17 @@ "format" : "guint16" } ] }, { "name" : "Last Record", "id" : "0x10", - "mandatory" : "no", "type" : "TLV", "since" : "1.6", "format" : "guint16" }, { "name" : "Response In Indication Token", "id" : "0x11", - "mandatory" : "no", "type" : "TLV", "since" : "1.6", "format" : "guint32" } ], "output" : [ { "common-ref" : "Operation Result" }, { "name" : "Card result", "id" : "0x10", - "mandatory" : "no", "type" : "TLV", "since" : "1.6", "format" : "sequence", @@ -192,7 +254,6 @@ "format" : "guint8" } ] }, { "name" : "Read Result", "id" : "0x11", - "mandatory" : "no", "type" : "TLV", "since" : "1.6", "format" : "array", @@ -201,7 +262,6 @@ "prerequisites" : [ { "common-ref" : "Success" } ] }, { "name" : "Additional Read Result", "id" : "0x12", - "mandatory" : "no", "type" : "TLV", "since" : "1.6", "format" : "array", @@ -210,7 +270,6 @@ "prerequisites" : [ { "common-ref" : "Success" } ] }, { "name" : "Response In Indication Token", "id" : "0x13", - "mandatory" : "no", "type" : "TLV", "since" : "1.6", "format" : "guint32", @@ -223,20 +282,10 @@ "id" : "0x0024", "version" : "1.0", "since" : "1.6", - "input" : [ { "name" : "Session Information", - "id" : "0x01", - "mandatory" : "yes", - "type" : "TLV", - "since" : "1.6", - "format" : "sequence", - "contents" : [ { "name" : "Session Type", - "format" : "guint8", - "public-format" : "QmiUimSessionType" }, - { "name" : "Application Identifier", - "format" : "string" } ] }, + "input" : [ { "common-ref" : "UIM Session", + "since" : "1.6" }, { "name" : "File", "id" : "0x02", - "mandatory" : "yes", "type" : "TLV", "since" : "1.6", "format" : "sequence", @@ -247,14 +296,12 @@ "array-element" : { "format" : "guint8" } } ] }, { "name" : "Response In Indication Token", "id" : "0x10", - "mandatory" : "no", "type" : "TLV", "since" : "1.6", "format" : "guint32" } ], "output" : [ { "common-ref" : "Operation Result" }, { "name" : "Card result", "id" : "0x10", - "mandatory" : "no", "type" : "TLV", "since" : "1.6", "format" : "sequence", @@ -264,7 +311,6 @@ "format" : "guint8" } ] }, { "name" : "File Attributes", "id" : "0x11", - "mandatory" : "no", "type" : "TLV", "since" : "1.6", "format" : "sequence", @@ -316,7 +362,6 @@ "prerequisites" : [ { "common-ref" : "Success" } ] }, { "name" : "Response In Indication Token", "id" : "0x12", - "mandatory" : "no", "type" : "TLV", "since" : "1.6", "format" : "guint32", @@ -329,20 +374,10 @@ "id" : "0x0025", "version" : "1.0", "since" : "1.14", - "input" : [ { "name" : "Session Information", - "id" : "0x01", - "mandatory" : "yes", - "type" : "TLV", - "since" : "1.14", - "format" : "sequence", - "contents" : [ { "name" : "Session Type", - "format" : "guint8", - "public-format" : "QmiUimSessionType" }, - { "name" : "Application Identifier", - "format" : "string" } ] }, + "input" : [ { "common-ref" : "UIM Session", + "since" : "1.14" }, { "name" : "Info", "id" : "0x02", - "mandatory" : "yes", "type" : "TLV", "since" : "1.14", "format" : "sequence", @@ -356,14 +391,12 @@ "format" : "string" } ] }, { "name" : "Response In Indication Token", "id" : "0x11", - "mandatory" : "no", "type" : "TLV", "since" : "1.14", "format" : "guint32" } ], "output" : [ { "common-ref" : "Operation Result" }, { "name" : "Retries Remaining", "id" : "0x10", - "mandatory" : "no", "type" : "TLV", "since" : "1.14", "format" : "sequence", @@ -374,7 +407,6 @@ "prerequisites": [ { "common-ref" : "No Success" } ] }, { "name" : "Response In Indication Token", "id" : "0x12", - "mandatory" : "no", "type" : "TLV", "since" : "1.14", "format" : "guint32", @@ -387,20 +419,10 @@ "id" : "0x0026", "version" : "1.0", "since" : "1.14", - "input" : [ { "name" : "Session Information", - "id" : "0x01", - "mandatory" : "yes", - "type" : "TLV", - "since" : "1.14", - "format" : "sequence", - "contents" : [ { "name" : "Session Type", - "format" : "guint8", - "public-format" : "QmiUimSessionType" }, - { "name" : "Application Identifier", - "format" : "string" } ] }, + "input" : [ { "common-ref" : "UIM Session", + "since" : "1.14" }, { "name" : "Info", "id" : "0x02", - "mandatory" : "yes", "type" : "TLV", "since" : "1.14", "format" : "sequence", @@ -411,14 +433,12 @@ "format" : "string" } ] }, { "name" : "Response In Indication Token", "id" : "0x12", - "mandatory" : "no", "type" : "TLV", "since" : "1.14", "format" : "guint32" } ], "output" : [ { "common-ref" : "Operation Result" }, { "name" : "Retries Remaining", "id" : "0x10", - "mandatory" : "no", "type" : "TLV", "since" : "1.14", "format" : "sequence", @@ -429,14 +449,12 @@ "prerequisites": [ { "common-ref" : "No Success" } ] }, { "name" : "Response In Indication Token", "id" : "0x12", - "mandatory" : "no", "type" : "TLV", "since" : "1.14", "format" : "guint32", "prerequisites" : [ { "common-ref" : "Success" } ] }, { "name" : "Card Result", "id" : "0x13", - "mandatory" : "no", "type" : "TLV", "since" : "1.14", "format" : "sequence", @@ -452,20 +470,10 @@ "id" : "0x0027", "version" : "1.0", "since" : "1.14", - "input" : [ { "name" : "Session Information", - "id" : "0x01", - "mandatory" : "yes", - "type" : "TLV", - "since" : "1.14", - "format" : "sequence", - "contents" : [ { "name" : "Session Type", - "format" : "guint8", - "public-format" : "QmiUimSessionType" }, - { "name" : "Application Identifier", - "format" : "string" } ] }, + "input" : [ { "common-ref" : "UIM Session", + "since" : "1.14" }, { "name" : "Info", "id" : "0x02", - "mandatory" : "yes", "type" : "TLV", "since" : "1.14", "format" : "sequence", @@ -478,14 +486,12 @@ "format" : "string" } ] }, { "name" : "Response In Indication Token", "id" : "0x11", - "mandatory" : "no", "type" : "TLV", "since" : "1.14", "format" : "guint32" } ], "output" : [ { "common-ref" : "Operation Result" }, { "name" : "Retries Remaining", "id" : "0x10", - "mandatory" : "no", "type" : "TLV", "since" : "1.14", "format" : "sequence", @@ -496,14 +502,12 @@ "prerequisites": [ { "common-ref" : "No Success" } ] }, { "name" : "Response In Indication Token", "id" : "0x12", - "mandatory" : "no", "type" : "TLV", "since" : "1.14", "format" : "guint32", "prerequisites" : [ { "common-ref" : "Success" } ] }, { "name" : "Card Result", "id" : "0x13", - "mandatory" : "no", "type" : "TLV", "since" : "1.14", "format" : "sequence", @@ -519,20 +523,10 @@ "id" : "0x0028", "version" : "1.0", "since" : "1.14", - "input" : [ { "name" : "Session Information", - "id" : "0x01", - "mandatory" : "yes", - "type" : "TLV", - "since" : "1.14", - "format" : "sequence", - "contents" : [ { "name" : "Session Type", - "format" : "guint8", - "public-format" : "QmiUimSessionType" }, - { "name" : "Application Identifier", - "format" : "string" } ] }, + "input" : [ { "common-ref" : "UIM Session", + "since" : "1.14" }, { "name" : "Info", "id" : "0x02", - "mandatory" : "yes", "type" : "TLV", "since" : "1.14", "format" : "sequence", @@ -545,14 +539,12 @@ "format" : "string" } ] }, { "name" : "Response In Indication Token", "id" : "0x11", - "mandatory" : "no", "type" : "TLV", "since" : "1.14", "format" : "guint32" } ], "output" : [ { "common-ref" : "Operation Result" }, { "name" : "Retries Remaining", "id" : "0x10", - "mandatory" : "no", "type" : "TLV", "since" : "1.14", "format" : "sequence", @@ -563,14 +555,12 @@ "prerequisites": [ { "common-ref" : "No Success" } ] }, { "name" : "Response In Indication Token", "id" : "0x12", - "mandatory" : "no", "type" : "TLV", "since" : "1.14", "format" : "guint32", "prerequisites" : [ { "common-ref" : "Success" } ] }, { "name" : "Card Result", "id" : "0x13", - "mandatory" : "no", "type" : "TLV", "since" : "1.14", "format" : "sequence", @@ -587,80 +577,8 @@ "version" : "1.0", "since" : "1.10", "output" : [ { "common-ref" : "Operation Result" }, - { "name" : "Card Status", - "id" : "0x10", - "mandatory" : "no", - "type" : "TLV", - "since" : "1.10", - "format" : "sequence", - "contents" : [ { "name" : "Index GW Primary", - "format" : "guint16" }, - { "name" : "Index 1x Primary", - "format" : "guint16" }, - { "name" : "Index GW Secondary ", - "format" : "guint16" }, - { "name" : "Index 1x Secondary", - "format" : "guint16" }, - { "name" : "Cards", - "format" : "array", - "size-prefix-format" : "guint8", - "array-element" : { "name" : "Element", - "format" : "struct", - "contents" : [ { "name" : "Card State", - "format" : "guint8", - "public-format" : "QmiUimCardState" }, - { "name" : "UPIN State", - "format" : "guint8", - "public-format" : "QmiUimPinState" }, - { "name" : "UPIN Retries", - "format" : "guint8" }, - { "name" : "UPUK Retries", - "format" : "guint8" }, - { "name" : "Error code", - "format" : "guint8", - "public-format" : "QmiUimCardError" }, - { "name" : "Applications", - "format" : "array", - "size-prefix-format" : "guint8", - "array-element" : { "name" : "Element", - "format" : "struct", - "contents" : [ { "name" : "Type", - "format" : "guint8", - "public-format" : "QmiUimCardApplicationType" }, - { "name" : "State", - "format" : "guint8", - "public-format" : "QmiUimCardApplicationState" }, - { "name" : "Personalization State", - "format" : "guint8", - "public-format" : "QmiUimCardApplicationPersonalizationState" }, - { "name" : "Personalization Feature", - "format" : "guint8", - "public-format" : "QmiUimCardApplicationPersonalizationFeature" }, - { "name" : "Personalization Retries", - "format" : "guint8" }, - { "name" : "Personalization Unblock Retries", - "format" : "guint8" }, - { "name" : "Application Identifier Value", - "format" : "array", - "size-prefix-format" : "guint8", - "array-element" : { "format" : "guint8" } }, - { "name" : "UPIN replaces PIN1", - "format" : "guint8", - "public-format" : "gboolean" }, - { "name" : "PIN1 State", - "format" : "guint8", - "public-format" : "QmiUimPinState" }, - { "name" : "PIN1 Retries", - "format" : "guint8" }, - { "name" : "PUK1 Retries", - "format" : "guint8" }, - { "name" : "PIN2 State", - "format" : "guint8", - "public-format" : "QmiUimPinState" }, - { "name" : "PIN2 Retries", - "format" : "guint8" }, - { "name" : "PUK2 Retries", - "format" : "guint8" } ] } } ] } } ] } ] }, + { "common-ref" : "UIM Card Status", + "since" : "1.10" } ] }, // ********************************************************************************* { "name" : "Power Off SIM", @@ -671,13 +589,9 @@ "since" : "1.18", "input" : [ { "name" : "Slot", "id" : "0x01", - "mandatory" : "yes", "type" : "TLV", "since" : "1.18", - "format" : "sequence", - "contents" : [ { "name" : "Slot", - "format" : "guint8" } ] } - ], + "format" : "guint8" } ], "output" : [ { "common-ref" : "Operation Result" } ] }, // ********************************************************************************* @@ -690,13 +604,19 @@ "since" : "1.18", "input" : [ { "name" : "Slot", "id" : "0x01", - "mandatory" : "yes", "type" : "TLV", "since" : "1.18", - "format" : "sequence", - "contents" : [ { "name" : "Slot", - "format" : "guint8" } ] } - ], - "output" : [ { "common-ref" : "Operation Result" } ] } + "format" : "guint8" } ], + "output" : [ { "common-ref" : "Operation Result" } ] }, + + // ********************************************************************************* + { "name" : "Card Status", + "type" : "Indication", + "service" : "UIM", + "id" : "0x0032", + "version" : "1.0", + "since" : "1.22", + "output" : [ { "common-ref" : "UIM Card Status", + "since" : "1.22" } ] } ] diff -Nru libqmi-1.18.0/data/qmi-service-voice.json libqmi-1.22.0/data/qmi-service-voice.json --- libqmi-1.18.0/data/qmi-service-voice.json 2017-03-21 14:26:54.000000000 +0100 +++ libqmi-1.22.0/data/qmi-service-voice.json 2019-01-08 14:09:47.000000000 +0100 @@ -27,7 +27,6 @@ "output" : [ { "common-ref" : "Operation Result" }, { "name" : "List", "id" : "0x10", - "mandatory" : "no", "type" : "TLV", "since" : "1.14", "format" : "array", @@ -44,14 +43,12 @@ "since" : "1.14", "input" : [ { "name" : "Calling Number", "id" : "0x01", - "mandatory" : "yes", "type" : "TLV", "since" : "1.14", "format" : "string" } ], "output" : [ { "common-ref" : "Operation Result" }, { "name" : "Call ID", "id" : "0x10", - "mandatory" : "no", "type" : "TLV", "since" : "1.14", "format" : "guint8" } ] }, @@ -65,14 +62,12 @@ "since" : "1.14", "input" : [ { "name" : "Call ID", "id" : "0x01", - "mandatory" : "yes", "type" : "TLV", "since" : "1.14", "format" : "guint8" } ], "output" : [ { "common-ref" : "Operation Result" }, { "name" : "Call ID", "id" : "0x10", - "mandatory" : "no", "type" : "TLV", "since" : "1.14", "format" : "guint8" } ] }, @@ -86,14 +81,12 @@ "since" : "1.14", "input" : [ { "name" : "Call ID", "id" : "0x01", - "mandatory" : "yes", "type" : "TLV", "since" : "1.14", "format" : "guint8" } ], "output" : [ { "common-ref" : "Operation Result" }, { "name" : "Call ID", "id" : "0x10", - "mandatory" : "no", "type" : "TLV", "since" : "1.14", "format" : "guint8" } ] }, @@ -107,7 +100,6 @@ "since" : "1.14", "output" : [ { "name" : "Call Information", "id" : "0x01", - "mandatory" : "yes", "type" : "TLV", "since" : "1.14", "format" : "array", @@ -136,7 +128,6 @@ "public-format" : "QmiVoiceAls" } ] } }, { "name" : "Remote Party Number", "id" : "0x10", - "mandatory" : "yes", "type" : "TLV", "since" : "1.14", "format" : "array", @@ -160,63 +151,54 @@ "since" : "1.14", "input" : [ { "name" : "Auto Answer", "id" : "0x10", - "mandatory" : "no", "type" : "TLV", "since" : "1.14", "format" : "guint8", "public-format" : "gboolean" }, { "name" : "Air Timer", "id" : "0x11", - "mandatory" : "no", "type" : "TLV", "since" : "1.14", "format" : "guint8", "public-format" : "gboolean" }, { "name" : "Roam Timer", "id" : "0x12", - "mandatory" : "no", "type" : "TLV", "since" : "1.14", "format" : "guint8", "public-format" : "gboolean" }, { "name" : "TTY Mode", "id" : "0x13", - "mandatory" : "no", "type" : "TLV", "since" : "1.14", "format" : "guint8", "public-format" : "gboolean" }, { "name" : "Preferred Voice Service Option", "id" : "0x14", - "mandatory" : "no", "type" : "TLV", "since" : "1.14", "format" : "guint8", "public-format" : "gboolean" }, { "name" : "AMR Status", "id" : "0x15", - "mandatory" : "no", "type" : "TLV", "since" : "1.14", "format" : "guint8", "public-format" : "gboolean" }, { "name" : "Preferred Voice Privacy", "id" : "0x16", - "mandatory" : "no", "type" : "TLV", "since" : "1.14", "format" : "guint8", "public-format" : "gboolean" }, { "name" : "NAM Index", "id" : "0x17", - "mandatory" : "no", "type" : "TLV", "since" : "1.14", "format" : "guint8", "public-format" : "gboolean" }, { "name" : "Voice Domain Preference", "id" : "0x18", - "mandatory" : "no", "type" : "TLV", "since" : "1.14", "format" : "guint8", @@ -224,14 +206,12 @@ "output" : [ { "common-ref" : "Operation Result" }, { "name" : "Auto Answer Status", "id" : "0x10", - "mandatory" : "no", "type" : "TLV", "since" : "1.14", "format" : "guint8", "public-format" : "gboolean" }, { "name" : "Air Timer Count", "id" : "0x11", - "mandatory" : "no", "type" : "TLV", "since" : "1.14", "format" : "sequence", @@ -241,7 +221,6 @@ "format" : "guint32" } ] }, { "name" : "Roam Timer Count", "id" : "0x12", - "mandatory" : "no", "type" : "TLV", "since" : "1.14", "format" : "sequence", @@ -251,14 +230,12 @@ "format" : "guint32" } ] }, { "name" : "Current TTY Mode", "id" : "0x13", - "mandatory" : "no", "type" : "TLV", "since" : "1.14", "format" : "guint8", "public-format" : "QmiVoiceTtyMode" }, { "name" : "Current Preferred Voice SO", "id" : "0x14", - "mandatory" : "no", "type" : "TLV", "since" : "1.14", "format" : "sequence", @@ -278,7 +255,6 @@ "public-format" : "QmiVoiceServiceOption" } ] }, { "name" : "Current AMR Status", "id" : "0x15", - "mandatory" : "no", "type" : "TLV", "since" : "1.14", "format" : "sequence", @@ -290,14 +266,12 @@ "public-format" : "QmiVoiceWcdmaAmrStatus" } ] }, { "name" : "Current Voice Privacy Preference", "id" : "0x16", - "mandatory" : "no", "type" : "TLV", "since" : "1.14", "format" : "guint8", "public-format" : "QmiVoicePrivacy" }, { "name" : "Current Voice Domain Preference", "id" : "0x17", - "mandatory" : "no", "type" : "TLV", "since" : "1.14", "format" : "guint8", diff -Nru libqmi-1.18.0/data/qmi-service-wda.json libqmi-1.22.0/data/qmi-service-wda.json --- libqmi-1.18.0/data/qmi-service-wda.json 2017-03-21 14:26:54.000000000 +0100 +++ libqmi-1.22.0/data/qmi-service-wda.json 2019-01-08 14:09:47.000000000 +0100 @@ -23,7 +23,6 @@ "output" : [ { "common-ref" : "Operation Result" }, { "name" : "List", "id" : "0x10", - "mandatory" : "no", "type" : "TLV", "since" : "1.14", "format" : "array", @@ -40,53 +39,45 @@ "since" : "1.10", "input" : [ { "name" : "QoS Format", "id" : "0x10", - "mandatory" : "no", "type" : "TLV", "since" : "1.10", "format" : "guint8", "public-format" : "gboolean" }, { "name" : "Link Layer Protocol", "id" : "0x11", - "mandatory" : "no", "type" : "TLV", "since" : "1.10", "format" : "guint32", "public-format" : "QmiWdaLinkLayerProtocol" }, { "name" : "Uplink Data Aggregation Protocol", "id" : "0x12", - "mandatory" : "no", "type" : "TLV", "since" : "1.10", "format" : "guint32", "public-format" : "QmiWdaDataAggregationProtocol" }, { "name" : "Downlink Data Aggregation Protocol", "id" : "0x13", - "mandatory" : "no", "type" : "TLV", "since" : "1.10", "format" : "guint32", "public-format" : "QmiWdaDataAggregationProtocol" }, { "name" : "NDP Signature", "id" : "0x14", - "mandatory" : "no", "type" : "TLV", "since" : "1.10", "format" : "guint32" }, { "name" : "Downlink Data Aggregation Max Datagrams", "id" : "0x15", - "mandatory" : "no", "type" : "TLV", "since" : "1.10", "format" : "guint32" }, { "name" : "Downlink Data Aggregation Max Size", "id" : "0x16", - "mandatory" : "no", "type" : "TLV", "since" : "1.10", "format" : "guint32" }, { "name" : "Endpoint Info", "id" : "0x17", - "mandatory" : "no", "type" : "TLV", "since" : "1.18", "format" : "sequence", @@ -98,7 +89,6 @@ "output" : [ { "common-ref" : "Operation Result" }, { "name" : "QoS Format", "id" : "0x10", - "mandatory" : "no", "type" : "TLV", "since" : "1.10", "format" : "guint8", @@ -106,7 +96,6 @@ "prerequisites": [ { "common-ref" : "Success" } ] }, { "name" : "Link Layer Protocol", "id" : "0x11", - "mandatory" : "no", "type" : "TLV", "since" : "1.10", "format" : "guint32", @@ -114,7 +103,6 @@ "prerequisites" : [ { "common-ref" : "Success" } ] }, { "name" : "Uplink Data Aggregation Protocol", "id" : "0x12", - "mandatory" : "no", "type" : "TLV", "since" : "1.10", "format" : "guint32", @@ -122,7 +110,6 @@ "prerequisites" : [ { "common-ref" : "Success" } ] }, { "name" : "Downlink Data Aggregation Protocol", "id" : "0x13", - "mandatory" : "no", "type" : "TLV", "since" : "1.10", "format" : "guint32", @@ -130,21 +117,18 @@ "prerequisites" : [ { "common-ref" : "Success" } ] }, { "name" : "NDP Signature", "id" : "0x14", - "mandatory" : "no", "type" : "TLV", "since" : "1.10", "format" : "guint32", "prerequisites" : [ { "common-ref" : "Success" } ] }, { "name" : "Downlink Data Aggregation Max Datagrams", "id" : "0x15", - "mandatory" : "no", "type" : "TLV", "since" : "1.10", "format" : "guint32", "prerequisites" : [ { "common-ref" : "Success" } ] }, { "name" : "Downlink Data Aggregation Max Size", "id" : "0x16", - "mandatory" : "no", "type" : "TLV", "since" : "1.10", "format" : "guint32", @@ -160,7 +144,6 @@ "output" : [ { "common-ref" : "Operation Result" }, { "name" : "QoS Format", "id" : "0x10", - "mandatory" : "no", "type" : "TLV", "since" : "1.10", "format" : "guint8", @@ -168,7 +151,6 @@ "prerequisites": [ { "common-ref" : "Success" } ] }, { "name" : "Link Layer Protocol", "id" : "0x11", - "mandatory" : "no", "type" : "TLV", "since" : "1.10", "format" : "guint32", @@ -176,7 +158,6 @@ "prerequisites" : [ { "common-ref" : "Success" } ] }, { "name" : "Uplink Data Aggregation Protocol", "id" : "0x12", - "mandatory" : "no", "type" : "TLV", "since" : "1.10", "format" : "guint32", @@ -184,7 +165,6 @@ "prerequisites" : [ { "common-ref" : "Success" } ] }, { "name" : "Downlink Data Aggregation Protocol", "id" : "0x13", - "mandatory" : "no", "type" : "TLV", "since" : "1.10", "format" : "guint32", @@ -192,21 +172,18 @@ "prerequisites" : [ { "common-ref" : "Success" } ] }, { "name" : "NDP Signature", "id" : "0x14", - "mandatory" : "no", "type" : "TLV", "since" : "1.10", "format" : "guint32", "prerequisites" : [ { "common-ref" : "Success" } ] }, { "name" : "Uplink Data Aggregation Max Size", "id" : "0x15", - "mandatory" : "no", "type" : "TLV", "since" : "1.10", "format" : "guint32", "prerequisites" : [ { "common-ref" : "Success" } ] }, { "name" : "Downlink Data Aggregation Max Size", "id" : "0x16", - "mandatory" : "no", "type" : "TLV", "since" : "1.10", "format" : "guint32", diff -Nru libqmi-1.18.0/data/qmi-service-wds.json libqmi-1.22.0/data/qmi-service-wds.json --- libqmi-1.18.0/data/qmi-service-wds.json 2017-03-21 14:26:54.000000000 +0100 +++ libqmi-1.22.0/data/qmi-service-wds.json 2019-01-08 14:09:47.000000000 +0100 @@ -35,14 +35,12 @@ "since" : "1.18", "input" : [ { "name" : "Channel Rate", "id" : "0x10", - "mandatory" : "no", "type" : "TLV", "since" : "1.18", "format" : "guint8", "public-format" : "gboolean" }, { "name" : "Transfer Statistics", "id" : "0x11", - "mandatory" : "no", "type" : "TLV", "since" : "1.18", "format" : "sequence", @@ -53,83 +51,71 @@ "public-format" : "QmiWdsSetEventReportTransferStatistics" } ] }, { "name" : "Data Bearer Technology", "id" : "0x12", - "mandatory" : "no", "type" : "TLV", "since" : "1.18", "format" : "guint8", "public-format" : "gboolean" }, { "name" : "Dormancy Status", "id" : "0x13", - "mandatory" : "no", "type" : "TLV", "since" : "1.18", "format" : "guint8", "public-format" : "gboolean" }, { "name" : "MIP Status", "id" : "0x14", - "mandatory" : "no", "type" : "TLV", "since" : "1.18", "format" : "guint8" }, { "name" : "Current Data Bearer Technology", "id" : "0x15", - "mandatory" : "no", "type" : "TLV", "since" : "1.18", "format" : "guint8", "public-format" : "gboolean" }, { "name" : "Data Call Status", "id" : "0x17", - "mandatory" : "no", "type" : "TLV", "since" : "1.18", "format" : "guint8", "public-format" : "gboolean" }, { "name" : "Preferred Data System", "id" : "0x18", - "mandatory" : "no", "type" : "TLV", "since" : "1.18", "format" : "guint8", "public-format" : "gboolean" }, { "name" : "EVDO PM Change", "id" : "0x19", - "mandatory" : "no", "type" : "TLV", "since" : "1.18", "format" : "guint8", "public-format" : "gboolean" }, { "name" : "Data Systems", "id" : "0x1A", - "mandatory" : "no", "type" : "TLV", "since" : "1.18", "format" : "guint8", "public-format" : "gboolean" }, { "name" : "Uplink Flow Control", "id" : "0x1B", - "mandatory" : "no", "type" : "TLV", "since" : "1.18", "format" : "guint8", "public-format" : "gboolean" }, { "name" : "Limited Data System Status", "id" : "0x1C", - "mandatory" : "no", "type" : "TLV", "since" : "1.18", "format" : "guint8", "public-format" : "gboolean" }, { "name" : "PDN Filter Removals", "id" : "0x1D", - "mandatory" : "no", "type" : "TLV", "since" : "1.18", "format" : "guint8", "public-format" : "gboolean" }, { "name" : "Extended Data Bearer Technology", "id" : "0x1E", - "mandatory" : "no", "type" : "TLV", "since" : "1.18", "format" : "guint8", @@ -143,43 +129,36 @@ "since" : "1.18", "output" : [ { "name" : "Tx Packets Ok", "id" : "0x10", - "mandatory" : "no", "type" : "TLV", "since" : "1.18", "format" : "guint32" }, { "name" : "Rx Packets Ok", "id" : "0x11", - "mandatory" : "no", "type" : "TLV", "since" : "1.18", "format" : "guint32" }, { "name" : "Tx Packets Error", "id" : "0x12", - "mandatory" : "no", "type" : "TLV", "since" : "1.18", "format" : "guint32" }, { "name" : "Rx Packets Error", "id" : "0x13", - "mandatory" : "no", "type" : "TLV", "since" : "1.18", "format" : "guint32" }, { "name" : "Tx Overflows", "id" : "0x14", - "mandatory" : "no", "type" : "TLV", "since" : "1.18", "format" : "guint32" }, { "name" : "Rx Overflows", "id" : "0x15", - "mandatory" : "no", "type" : "TLV", "since" : "1.18", "format" : "guint32" }, { "name" : "Channel Rates", "id" : "0x16", - "mandatory" : "no", "type" : "TLV", "since" : "1.18", "format" : "sequence", @@ -189,40 +168,34 @@ "format" : "gint32" } ] }, { "name" : "Data Bearer Technology", "id" : "0x17", - "mandatory" : "no", "type" : "TLV", "since" : "1.18", "format" : "gint8", "public-format" : "QmiWdsDataBearerTechnology" }, { "name" : "Dormancy Status", "id" : "0x18", - "mandatory" : "no", "type" : "TLV", "since" : "1.18", "format" : "guint8", "public-format" : "QmiWdsDormancyStatus" }, { "name" : "Tx Bytes Ok", "id" : "0x19", - "mandatory" : "no", "type" : "TLV", "since" : "1.18", "format" : "guint64" }, { "name" : "Rx Bytes Ok", "id" : "0x1A", - "mandatory" : "no", "type" : "TLV", "since" : "1.18", "format" : "guint64" }, { "name" : "MIP Status", "id" : "0x1B", - "mandatory" : "no", "type" : "TLV", "since" : "1.18", "format" : "guint8", "public-format" : "gboolean" }, { "name" : "Current Data Bearer Technology", "id" : "0x1D", - "mandatory" : "no", "type" : "TLV", "since" : "1.18", "format" : "sequence", @@ -235,21 +208,18 @@ "format" : "guint32" } ] }, { "name" : "Data Call Status", "id" : "0x1F", - "mandatory" : "no", "type" : "TLV", "since" : "1.18", "format" : "guint8", "public-format" : "QmiWdsDataCallStatus" }, { "name" : "Preferred Data System", "id" : "0x20", - "mandatory" : "no", "type" : "TLV", "since" : "1.18", "format" : "guint32", "public-format" : "QmiWdsDataSystem" }, { "name" : "Data Call Type", "id" : "0x22", - "mandatory" : "no", "type" : "TLV", "since" : "1.18", "format" : "sequence", @@ -261,7 +231,6 @@ "public-format" : "QmiWdsTetheredCallType" } ] }, { "name" : "EVDO Page Monitor Period Change", "id" : "0x23", - "mandatory" : "no", "type" : "TLV", "since" : "1.18", "format" : "sequence", @@ -272,7 +241,6 @@ "public-format" : "gboolean" } ] }, { "name" : "Data Systems", "id" : "0x24", - "mandatory" : "no", "type" : "TLV", "since" : "1.18", "format" : "sequence", @@ -293,26 +261,22 @@ "format" : "guint32" } ] } } ] }, { "name" : "Tx Packets Dropped", "id" : "0x25", - "mandatory" : "no", "type" : "TLV", "since" : "1.18", "format" : "guint32" }, { "name" : "Rx Packets Dropped", "id" : "0x26", - "mandatory" : "no", "type" : "TLV", "since" : "1.18", "format" : "guint32" }, { "name" : "Uplink Flow Control Enabled", "id" : "0x27", - "mandatory" : "no", "type" : "TLV", "since" : "1.18", "format" : "gint8", "public-format" : "gboolean" }, { "name" : "Data Call Address Family", "id" : "0x28", - "mandatory" : "no", "type" : "TLV", "since" : "1.18", // Yes, TLV wants a u32 @@ -320,7 +284,6 @@ "public-format" : "QmiWdsIpFamily" }, { "name" : "PDN Filters Removed", "id" : "0x29", - "mandatory" : "no", "type" : "TLV", "since" : "1.18", "format" : "sequence", @@ -330,7 +293,6 @@ "array-element" : { "format": "guint32" } } ] }, { "name" : "Extended Data Bearer Technology", "id" : "0x2A", - "mandatory" : "no", "type" : "TLV", "since" : "1.18", "format" : "sequence", @@ -370,7 +332,6 @@ "scope" : "library-only", "input" : [ { "name" : "Transaction ID", "id" : "0x01", - "mandatory" : "yes", "type" : "TLV", "since" : "1.0", "format" : "guint16" } ], @@ -386,7 +347,6 @@ "output" : [ { "common-ref" : "Operation Result" }, { "name" : "List", "id" : "0x10", - "mandatory" : "no", "type" : "TLV", "since" : "1.14", "format" : "array", @@ -405,95 +365,80 @@ "abort" : "yes", "input" : [ { "name" : "Primary DNS Address Preference", "id" : "0x10", - "mandatory" : "no", "type" : "TLV", "since" : "1.0", "format" : "guint32" }, { "name" : "Secondary DNS Address Preference", "id" : "0x11", - "mandatory" : "no", "type" : "TLV", "since" : "1.0", "format" : "guint32" }, { "name" : "Primary NBNS Address Preference", "id" : "0x12", - "mandatory" : "no", "type" : "TLV", "since" : "1.0", "format" : "guint32" }, { "name" : "Secondary NBNS Address Preference", "id" : "0x13", - "mandatory" : "no", "type" : "TLV", "since" : "1.0", "format" : "guint32" }, { "name" : "APN", "id" : "0x14", - "mandatory" : "no", "type" : "TLV", "since" : "1.0", "format" : "string" }, { "name" : "IPv4 Address Preference", "id" : "0x15", - "mandatory" : "no", "type" : "TLV", "since" : "1.0", "format" : "guint32" }, { "name" : "Authentication Preference", "id" : "0x16", - "mandatory" : "no", "type" : "TLV", "since" : "1.0", "format" : "guint8", "public-format" : "QmiWdsAuthentication" }, { "name" : "Username", "id" : "0x17", - "mandatory" : "no", "type" : "TLV", "since" : "1.0", "format" : "string" }, { "name" : "Password", "id" : "0x18", - "mandatory" : "no", "type" : "TLV", "since" : "1.0", "format" : "string" }, { "name" : "IP Family Preference", "id" : "0x19", - "mandatory" : "no", "type" : "TLV", "since" : "1.0", "format" : "guint8", "public-format" : "QmiWdsIpFamily" }, { "name" : "Technology Preference", "id" : "0x30", - "mandatory" : "no", "type" : "TLV", "since" : "1.0", "format" : "guint8", "public-format" : "QmiWdsTechnologyPreference" }, { "name" : "Profile Index 3GPP", "id" : "0x31", - "mandatory" : "no", "type" : "TLV", "since" : "1.0", "format" : "guint8" }, { "name" : "Profile Index 3GPP2", "id" : "0x32", - "mandatory" : "no", "type" : "TLV", "since" : "1.0", "format" : "guint8" }, { "name" : "Enable Autoconnect", "id" : "0x33", - "mandatory" : "no", "type" : "TLV", "since" : "1.0", "format" : "guint8", "public-format" : "gboolean" }, { "name" : "Extended Technology Preference", "id" : "0x34", - "mandatory" : "no", "type" : "TLV", "since" : "1.0", // Note: docs give this as gint16 with negative enum values. Instead, we use @@ -502,7 +447,6 @@ "public-format" : "QmiWdsExtendedTechnologyPreference" }, { "name" : "Call Type", "id" : "0x35", - "mandatory" : "no", "type" : "TLV", "since" : "1.0", "format" : "guint8", @@ -510,14 +454,12 @@ "output" : [ { "common-ref" : "Operation Result" }, { "name" : "Packet Data Handle", "id" : "0x01", - "mandatory" : "yes", "type" : "TLV", "since" : "1.0", "format" : "guint32", "prerequisites": [ { "common-ref" : "Success" } ] }, { "name" : "Call End Reason", "id" : "0x10", - "mandatory" : "no", "type" : "TLV", "since" : "1.0", "format" : "guint16", @@ -530,7 +472,6 @@ "value" : "QMI_PROTOCOL_ERROR_CALL_FAILED" } ] }, { "name" : "Verbose Call End Reason", "id" : "0x11", - "mandatory" : "no", "type" : "TLV", "since" : "1.0", "format" : "sequence", @@ -555,13 +496,11 @@ "since" : "1.0", "input" : [ { "name" : "Packet Data Handle", "id" : "0x01", - "mandatory" : "yes", "type" : "TLV", "since" : "1.0", "format" : "guint32" }, { "name" : "Disable Autoconnect", "id" : "0x10", - "mandatory" : "no", "type" : "TLV", "since" : "1.0", "format" : "guint8", @@ -578,7 +517,6 @@ "output" : [ { "common-ref" : "Operation Result" }, { "name" : "Connection Status", "id" : "0x01", - "mandatory" : "yes", "type" : "TLV", "since" : "1.0", "format" : "guint8", @@ -593,7 +531,6 @@ "since" : "1.14", "output" : [ { "name" : "Connection Status", "id" : "0x01", - "mandatory" : "yes", "type" : "TLV", "since" : "1.14", "format" : "sequence", @@ -605,14 +542,12 @@ "public-format" : "gboolean" } ] }, { "name" : "Call End Reason", "id" : "0x10", - "mandatory" : "no", "type" : "TLV", "since" : "1.14", "format" : "guint16", "public-format" : "QmiWdsCallEndReason" }, { "name" : "Verbose Call End Reason", "id" : "0x11", - "mandatory" : "no", "type" : "TLV", "since" : "1.14", "format" : "sequence", @@ -623,14 +558,12 @@ "format" : "gint16" } ] }, { "name" : "IP Family", "id" : "0x12", - "mandatory" : "no", "type" : "TLV", "since" : "1.14", "format" : "guint8", "public-format" : "QmiWdsIpFamily" }, { "name" : "Extended Technology Preference", "id" : "0x34", - "mandatory" : "no", "type" : "TLV", "since" : "1.14", // Note: docs give this as gint16 with negative enum values. Instead, we use @@ -639,6 +572,28 @@ "public-format" : "QmiWdsExtendedTechnologyPreference" } ] }, // ********************************************************************************* + { "name" : "Get Channel Rates", + "type" : "Message", + "service" : "WDS", + "id" : "0x0023", + "version" : "1.0", + "since" : "1.20", + "output" : [ { "common-ref" : "Operation Result" }, + { "name" : "Channel Rates", + "id" : "0x01", + "type" : "TLV", + "since" : "1.0", + "format" : "sequence", + "contents" : [ { "name" : "Channel TX Rate BPS", + "format" : "guint32" }, + { "name" : "Channel RX Rate BPS", + "format" : "guint32" }, + { "name" : "Max Channel TX Rate BPS", + "format" : "guint32" }, + { "name" : "Max Channel RX Rate BPS", + "format" : "guint32" } ] } ] }, + + // ********************************************************************************* { "name" : "Get Packet Statistics", "type" : "Message", "service" : "WDS", @@ -647,7 +602,6 @@ "since" : "1.6", "input" : [ { "name" : "Mask", "id" : "0x01", - "mandatory" : "yes", "type" : "TLV", "since" : "1.6", "format" : "guint32", @@ -655,56 +609,48 @@ "output" : [ { "common-ref" : "Operation Result" }, { "name" : "Tx Packets Ok", "id" : "0x10", - "mandatory" : "no", "type" : "TLV", "since" : "1.6", "format" : "guint32", "prerequisites" : [ { "common-ref" : "Success" } ] }, { "name" : "Rx Packets Ok", "id" : "0x11", - "mandatory" : "no", "type" : "TLV", "since" : "1.6", "format" : "guint32", "prerequisites" : [ { "common-ref" : "Success" } ] }, { "name" : "Tx Packets Error", "id" : "0x12", - "mandatory" : "no", "type" : "TLV", "since" : "1.6", "format" : "guint32", "prerequisites" : [ { "common-ref" : "Success" } ] }, { "name" : "Rx Packets Error", "id" : "0x13", - "mandatory" : "no", "type" : "TLV", "since" : "1.6", "format" : "guint32", "prerequisites" : [ { "common-ref" : "Success" } ] }, { "name" : "Tx Overflows", "id" : "0x14", - "mandatory" : "no", "type" : "TLV", "since" : "1.6", "format" : "guint32", "prerequisites" : [ { "common-ref" : "Success" } ] }, { "name" : "Rx Overflows", "id" : "0x15", - "mandatory" : "no", "type" : "TLV", "since" : "1.6", "format" : "guint32", "prerequisites" : [ { "common-ref" : "Success" } ] }, { "name" : "Tx Bytes Ok", "id" : "0x19", - "mandatory" : "no", "type" : "TLV", "since" : "1.6", "format" : "guint64", "prerequisites" : [ { "common-ref" : "Success" } ] }, { "name" : "Rx Bytes Ok", "id" : "0x1A", - "mandatory" : "no", "type" : "TLV", "since" : "1.6", "format" : "guint64", @@ -712,26 +658,22 @@ // Note: last call TX/RX given along with QMI Error 'out of call' { "name" : "Last Call Tx Bytes Ok", "id" : "0x1B", - "mandatory" : "no", "type" : "TLV", "since" : "1.6", "format" : "guint64" }, { "name" : "Last Call Rx Bytes Ok", "id" : "0x1C", - "mandatory" : "no", "type" : "TLV", "since" : "1.6", "format" : "guint64" }, { "name" : "Tx Packets Dropped", "id" : "0x1D", - "mandatory" : "no", "type" : "TLV", "since" : "1.6", "format" : "guint32", "prerequisites" : [ { "common-ref" : "Success" } ] }, { "name" : "Rx Packets Dropped", "id" : "0x1E", - "mandatory" : "no", "type" : "TLV", "since" : "1.6", "format" : "guint32", @@ -764,7 +706,6 @@ "since" : "1.18", "input" : [ { "name" : "Profile Type", "id" : "0x01", - "mandatory" : "yes", "type" : "TLV", "since" : "1.18", "format" : "guint8", @@ -826,10 +767,13 @@ "since" : "1.18" }, // 0x2D, DHCP/NAS Preference { "common-ref" : "WDS LTE QoS Parameters", - "since" : "1.18" } ], - // 0x2F, APN disabled flag + "since" : "1.18" }, + { "common-ref" : "WDS APN Disabled Flag", + "since" : "1.22" }, // 0x30, PDN inactivity timeout // 0x31, APN class + { "common-ref" : "WDS Roaming Disallowed Flag", + "since" : "1.22" } ], // 0x90, Negotiate DNS server preference // 0x91, PPP session close timer for DO // 0x92, PPP session close timer for 1X @@ -931,10 +875,13 @@ "since" : "1.18" }, // 0x2D, DHCP/NAS Preference { "common-ref" : "WDS LTE QoS Parameters", - "since" : "1.18" } ], - // 0x2F, APN disabled flag + "since" : "1.18" }, + { "common-ref" : "WDS APN Disabled Flag", + "since" : "1.22" }, // 0x30, PDN inactivity timeout // 0x31, APN class + { "common-ref" : "WDS Roaming Disallowed Flag", + "since" : "1.22" } ], // 0x90, Negotiate DNS server preference // 0x91, PPP session close timer for DO // 0x92, PPP session close timer for 1X @@ -989,7 +936,6 @@ "since" : "1.8", "input" : [ { "name" : "Profile Type", "id" : "0x10", - "mandatory" : "no", "type" : "TLV", "since" : "1.8", "format" : "guint8", @@ -997,7 +943,6 @@ "output" : [ { "common-ref" : "Operation Result" }, { "name" : "Profile List", "id" : "0x01", - "mandatory" : "yes", "type" : "TLV", "since" : "1.8", "format" : "array", @@ -1023,7 +968,6 @@ "since" : "1.8", "input" : [ { "name" : "Profile ID", "id" : "0x01", - "mandatory" : "yes", "type" : "TLV", "since" : "1.8", "format" : "sequence", @@ -1118,9 +1062,14 @@ { "common-ref" : "WDS LTE QoS Parameters", "since" : "1.18", "prerequisites" : [ { "common-ref" : "Success" } ] }, - // 0x2F, APN disabled flag + { "common-ref" : "WDS APN Disabled Flag", + "since" : "1.22", + "prerequisites" : [ { "common-ref" : "Success" } ] }, // 0x30, PDN inactivity timeout // 0x31, APN class + { "common-ref" : "WDS Roaming Disallowed Flag", + "since" : "1.22", + "prerequisites" : [ { "common-ref" : "Success" } ] }, // 0x90, Negotiate DNS server preference // 0x91, PPP session close timer for DO // 0x92, PPP session close timer for 1X @@ -1161,7 +1110,6 @@ "since" : "1.8", "input" : [ { "name" : "Profile Type", "id" : "0x01", - "mandatory" : "yes", "type" : "TLV", "since" : "1.8", "format" : "guint8", @@ -1318,7 +1266,6 @@ "prerequisites" : [ { "common-ref" : "Success" } ] }, { "name" : "UMTS Granted QoS", "id" : "0x17", - "mandatory" : "no", "type" : "TLV", "since" : "1.14", "format" : "sequence", @@ -1354,7 +1301,6 @@ "prerequisites" : [ { "common-ref" : "Success" } ] }, { "name" : "GPRS Granted QoS", "id" : "0x19", - "mandatory" : "no", "type" : "TLV", "since" : "1.0", "format" : "sequence", @@ -1377,7 +1323,6 @@ "prerequisites" : [ { "common-ref" : "Success" } ] }, { "name" : "IPv4 Address", "id" : "0x1E", - "mandatory" : "no", "type" : "TLV", "since" : "1.0", "endian" : "little", @@ -1385,7 +1330,6 @@ "prerequisites" : [ { "common-ref" : "Success" } ] }, { "name" : "Profile ID", "id" : "0x1F", - "mandatory" : "no", "type" : "TLV", "since" : "1.0", "format" : "sequence", @@ -1397,7 +1341,6 @@ "prerequisites" : [ { "common-ref" : "Success" } ] }, { "name" : "IPv4 Gateway Address", "id" : "0x20", - "mandatory" : "no", "type" : "TLV", "since" : "1.0", "endian" : "little", @@ -1405,7 +1348,6 @@ "prerequisites" : [ { "common-ref" : "Success" } ] }, { "name" : "IPv4 Gateway Subnet Mask", "id" : "0x21", - "mandatory" : "no", "type" : "TLV", "since" : "1.0", "endian" : "little", @@ -1413,14 +1355,12 @@ "prerequisites" : [ { "common-ref" : "Success" } ] }, { "name" : "PCSCF Address Using PCO", "id" : "0x22", - "mandatory" : "no", "type" : "TLV", "since" : "1.0", "format" : "guint8", "prerequisites" : [ { "common-ref" : "Success" } ] }, { "name" : "PCSCF Server Address List", "id" : "0x23", - "mandatory" : "no", "type" : "TLV", "since" : "1.0", "format" : "array", @@ -1430,7 +1370,6 @@ "prerequisites" : [ { "common-ref" : "Success" } ] }, { "name" : "PCSCF Domain Name List", "id" : "0x24", - "mandatory" : "no", "type" : "TLV", "since" : "1.0", "format" : "array", @@ -1440,7 +1379,6 @@ "prerequisites" : [ { "common-ref" : "Success" } ] }, { "name" : "IPv6 Address", "id" : "0x25", - "mandatory" : "no", "type" : "TLV", "since" : "1.0", "format" : "sequence", @@ -1453,7 +1391,6 @@ "prerequisites" : [ { "common-ref" : "Success" } ] }, { "name" : "IPv6 Gateway Address", "id" : "0x26", - "mandatory" : "no", "type" : "TLV", "since" : "1.0", "format" : "sequence", @@ -1466,7 +1403,6 @@ "prerequisites" : [ { "common-ref" : "Success" } ] }, { "name" : "IPv6 Primary DNS Address", "id" : "0x27", - "mandatory" : "no", "type" : "TLV", "since" : "1.0", "format" : "array", @@ -1475,7 +1411,6 @@ "prerequisites" : [ { "common-ref" : "Success" } ] }, { "name" : "IPv6 Secondary DNS Address", "id" : "0x28", - "mandatory" : "no", "type" : "TLV", "since" : "1.0", "format" : "array", @@ -1484,14 +1419,12 @@ "prerequisites" : [ { "common-ref" : "Success" } ] }, { "name" : "MTU", "id" : "0x29", - "mandatory" : "no", "type" : "TLV", "since" : "1.0", "format" : "guint32", "prerequisites" : [ { "common-ref" : "Success" } ] }, { "name" : "Domain Name List", "id" : "0x2A", - "mandatory" : "no", "type" : "TLV", "since" : "1.0", "format" : "array", @@ -1501,7 +1434,6 @@ "prerequisites" : [ { "common-ref" : "Success" } ] }, { "name" : "IP Family", "id" : "0x2B", - "mandatory" : "no", "type" : "TLV", "since" : "1.0", "format" : "guint8", @@ -1509,14 +1441,12 @@ "prerequisites" : [ { "common-ref" : "Success" } ] }, { "name" : "IMCN Flag", "id" : "0x2C", - "mandatory" : "no", "type" : "TLV", "since" : "1.0", "format" : "gint8", "prerequisites" : [ { "common-ref" : "Success" } ] }, { "name" : "Extended Technology Preference", "id" : "0x2D", - "mandatory" : "no", "type" : "TLV", "since" : "1.0", // Note: docs give this as gint16 with negative enum values. Instead, we use @@ -1535,7 +1465,6 @@ "output" : [ { "common-ref" : "Operation Result" }, { "name" : "Dormancy Status", "id" : "0x01", - "mandatory" : "no", "type" : "TLV", "since" : "1.14", "format" : "guint8", @@ -1552,7 +1481,6 @@ "output" : [ { "common-ref" : "Operation Result" }, { "name" : "Status", "id" : "0x01", - "mandatory" : "yes", "type" : "TLV", "since" : "1.14", "format" : "guint8", @@ -1560,7 +1488,6 @@ "prerequisites" : [ { "common-ref" : "Success" } ] }, { "name" : "Roaming", "id" : "0x10", - "mandatory" : "no", "type" : "TLV", "since" : "1.14", "format" : "guint8", @@ -1577,7 +1504,6 @@ "output" : [ { "common-ref" : "Operation Result" }, { "name" : "Current", "id" : "0x01", - "mandatory" : "yes", "type" : "TLV", "since" : "1.0", "format" : "gint8", @@ -1585,7 +1511,6 @@ "prerequisites" : [ { "common-ref" : "Success" } ] }, { "name" : "Last", "id" : "0x10", - "mandatory" : "no", "type" : "TLV", "since" : "1.0", "format" : "gint8", @@ -1607,7 +1532,6 @@ "output" : [ { "common-ref" : "Operation Result" }, { "name" : "Current", "id" : "0x01", - "mandatory" : "yes", "type" : "TLV", "since" : "1.0", "format" : "sequence", @@ -1621,7 +1545,6 @@ "prerequisites": [ { "common-ref" : "Success" } ] }, { "name" : "Last", "id" : "0x10", - "mandatory" : "no", "type" : "TLV", "since" : "1.0", "format" : "sequence", @@ -1634,6 +1557,61 @@ "format" : "guint32" } ] } ] }, // ********************************************************************************* + { "name" : "Get Default Profile Num", + "type" : "Message", + "service" : "WDS", + "id" : "0x0049", + "version" : "1.38", + "since" : "1.22", + "input" : [ { "name" : "Profile Type", + "id" : "0x01", + "mandatory" : "yes", + "type" : "TLV", + "since" : "1.22", + "format" : "sequence", + "contents" : [ { "name" : "Profile Type", + "format" : "guint8", + "public-format" : "QmiWdsProfileType"}, + { "name" : "Profile Family", + "format" : "guint8", + "public-format" : "QmiWdsProfileFamily"}] }], + "output" : [ { "common-ref" : "Operation Result" }, + { "name" : "Default Profile Number", + "id" : "0x01", + "mandatory" : "yes", + "type" : "TLV", + "since" : "1.22", + "format" : "guint8", + "prerequisites" : [ { "common-ref" : "Success" } ] }, + { "common-ref" : "WDS Extended Error Code", + "since" : "1.22" } ] }, + + // ********************************************************************************* + { "name" : "Set Default Profile Num", + "type" : "Message", + "service" : "WDS", + "id" : "0x004A", + "version" : "1.38", + "since" : "1.22", + "input" : [ { "name" : "Profile Identifier", + "id" : "0x01", + "mandatory" : "yes", + "type" : "TLV", + "since" : "1.22", + "format" : "sequence", + "contents" : [ { "name" : "Profile Type", + "format" : "guint8", + "public-format" : "QmiWdsProfileType"}, + { "name" : "Profile Family", + "format" : "guint8", + "public-format" : "QmiWdsProfileFamily"}, + { "name" : "Profile Index", + "format" : "guint8"}] }], + "output" : [ { "common-ref" : "Operation Result" }, + { "common-ref" : "WDS Extended Error Code", + "since" : "1.22" } ] }, + + // ********************************************************************************* { "name" : "Set IP Family", "type" : "Message", "service" : "WDS", @@ -1642,7 +1620,6 @@ "since" : "1.0", "input" : [ { "name" : "Preference", "id" : "0x01", - "mandatory" : "yes", "type" : "TLV", "since" : "1.0", "format" : "guint8", @@ -1658,14 +1635,12 @@ "since" : "1.14", "input" : [ { "name" : "Status", "id" : "0x01", - "mandatory" : "yes", "type" : "TLV", "since" : "1.14", "format" : "guint8", "public-format" : "QmiWdsAutoconnectSetting" }, { "name" : "Roaming", "id" : "0x10", - "mandatory" : "no", "type" : "TLV", "since" : "1.14", "format" : "guint8", @@ -1681,7 +1656,6 @@ "since" : "1.14", "input" : [ { "name" : "Network Type", "id" : "0x01", - "mandatory" : "yes", "type" : "TLV", "since" : "1.14", "format" : "guint8", @@ -1689,7 +1663,6 @@ "output" : [ { "common-ref" : "Operation Result" }, { "name" : "Info", "id" : "0x10", - "mandatory" : "no", "type" : "TLV", "since" : "1.14", "format" : "array", @@ -1717,7 +1690,6 @@ "since" : "1.18", "input" : [ { "name" : "Endpoint Info", "id" : "0x10", - "mandatory" : "no", "type" : "TLV", "since" : "1.18", "format" : "sequence", @@ -1730,15 +1702,51 @@ "id" : "0x11", "type" : "TLV", "since" : "1.18", - "mandatory" : "no", "format" : "guint8"}, { "name" : "Client Type", "id" : "0x13", "type" : "TLV", "since" : "1.18", - "mandatory" : "no", "format" : "guint32", "public-format" : "QmiWdsClientType"} ], - "output" : [ { "common-ref" : "Operation Result" } ] } + "output" : [ { "common-ref" : "Operation Result" } ] }, + +// ********************************************************************************* +{ "name" : "Swi Create Profile Indexed", + "type" : "Message", + "service" : "WDS", + "id" : "0x5558", + "version" : "1.1", + "since" : "1.22", + "input" : [ { "common-ref" : "WDS Profile Identifier", + "since" : "1.22" } , + { "common-ref" : "WDS Profile Name", + "since" : "1.22" }, + { "common-ref" : "WDS PDP Type", + "since" : "1.22" }, + { "common-ref" : "WDS APN Name", + "since" : "1.22" }, + { "common-ref" : "WDS Primary IPv4 DNS Address", + "since" : "1.22" }, + { "common-ref" : "WDS Secondary IPv4 DNS Address", + "since" : "1.22" }, + { "common-ref" : "WDS Username", + "since" : "1.22" }, + { "common-ref" : "WDS Password", + "since" : "1.22" }, + { "common-ref" : "WDS Authentication", + "since" : "1.22" }, + { "common-ref" : "WDS IPv4 Address Preference", + "since" : "1.22" }, + { "common-ref" : "WDS PDP Context Number", + "since" : "1.22" }, + { "common-ref" : "WDS APN Disabled Flag", + "since" : "1.22" }, + { "common-ref" : "WDS Roaming Disallowed Flag", + "since" : "1.22" } ], + "output" : [ { "common-ref" : "Operation Result" }, + { "common-ref" : "WDS Profile Identifier", + "since" : "1.22", + "prerequisites" : [ { "common-ref" : "Success" } ] } ] } ] diff -Nru libqmi-1.18.0/data/qmi-service-wms.json libqmi-1.22.0/data/qmi-service-wms.json --- libqmi-1.18.0/data/qmi-service-wms.json 2017-03-21 14:26:54.000000000 +0100 +++ libqmi-1.22.0/data/qmi-service-wms.json 2019-01-08 14:09:47.000000000 +0100 @@ -35,7 +35,6 @@ "since" : "1.0", "input" : [ { "name" : "New MT Message Indicator", "id" : "0x10", - "mandatory" : "no", "type" : "TLV", "since" : "1.0", "format" : "sequence", @@ -51,7 +50,6 @@ "since" : "1.0", "output" : [ { "name" : "MT Message", "id" : "0x10", - "mandatory" : "no", "type" : "TLV", "since" : "1.0", "format" : "sequence", @@ -62,7 +60,6 @@ "format" : "guint32" } ] }, { "name" : "Transfer Route MT Message", "id" : "0x11", - "mandatory" : "no", "type" : "TLV", "since" : "1.0", "format" : "sequence", @@ -80,14 +77,12 @@ "array-element" : { "format" : "guint8" } } ] }, { "name" : "Message Mode", "id" : "0x12", - "mandatory" : "no", "type" : "TLV", "since" : "1.0", "format" : "guint8", "public-format" : "QmiWmsMessageMode" }, { "name" : "ETWS Message", "id" : "0x13", - "mandatory" : "no", "type" : "TLV", "since" : "1.0", "format" : "sequence", @@ -100,7 +95,6 @@ "array-element" : { "format" : "guint8" } } ] }, { "name" : "ETWS PLMN Information", "id" : "0x14", - "mandatory" : "no", "type" : "TLV", "since" : "1.0", "format" : "sequence", @@ -110,13 +104,11 @@ "format" : "guint16" } ] }, { "name" : "SMSC Address", "id" : "0x15", - "mandatory" : "no", "type" : "TLV", "since" : "1.0", "format" : "string" }, { "name" : "SMS on IMS", "id" : "0x16", - "mandatory" : "no", "type" : "TLV", "since" : "1.0", "format" : "guint8", @@ -132,7 +124,6 @@ "output" : [ { "common-ref" : "Operation Result" }, { "name" : "List", "id" : "0x10", - "mandatory" : "no", "type" : "TLV", "since" : "1.14", "format" : "array", @@ -149,7 +140,6 @@ "since" : "1.0", "input" : [ { "name" : "Raw Message Data", "id" : "0x01", - "mandatory" : "yes", "type" : "TLV", "since" : "1.0", "format" : "sequence", @@ -162,7 +152,6 @@ "array-element" : { "format" : "guint8" } } ] }, { "name" : "CDMA Force On DC", "id" : "0x10", - "mandatory" : "no", "type" : "TLV", "since" : "1.0", "format" : "sequence", @@ -174,7 +163,6 @@ "public-format" : "QmiWmsCdmaServiceOption" } ] }, { "name" : "CDMA Follow On DC", "id" : "0x11", - "mandatory" : "no", "type" : "TLV", "since" : "1.0", "format" : "sequence", @@ -183,13 +171,11 @@ "public-format" : "gboolean" } ] }, { "name" : "GSM WCDMA Link Timer", "id" : "0x12", - "mandatory" : "no", "type" : "TLV", "since" : "1.0", "format" : "guint8" }, { "name" : "SMS on IMS", "id" : "0x13", - "mandatory" : "no", "type" : "TLV", "since" : "1.0", "format" : "guint8", @@ -198,14 +184,12 @@ { "name" : "Message ID", "id" : "0x01", // Even if we have this TLV as mandatory, it seems it really isn't - "mandatory" : "no", "type" : "TLV", "since" : "1.0", "format" : "guint16", "prerequisites" : [ { "common-ref" : "Success" } ] }, { "name" : "CDMA Cause Code", "id" : "0x10", - "mandatory" : "no", "type" : "TLV", "since" : "1.0", "format" : "guint16", @@ -218,7 +202,6 @@ "value" : "QMI_PROTOCOL_ERROR_WMS_CAUSE_CODE" } ] }, { "name" : "CDMA Error Class", "id" : "0x11", - "mandatory" : "no", "type" : "TLV", "since" : "1.0", "format" : "guint8", @@ -231,7 +214,6 @@ "value" : "QMI_PROTOCOL_ERROR_WMS_CAUSE_CODE" } ] }, { "name" : "GSM WCDMA Cause Info", "id" : "0x12", - "mandatory" : "no", "type" : "TLV", "since" : "1.0", "format" : "sequence", @@ -249,7 +231,6 @@ "value" : "QMI_PROTOCOL_ERROR_WMS_CAUSE_CODE" } ] }, { "name" : "Message Delivery Failure Type", "id" : "0x13", - "mandatory" : "no", "type" : "TLV", "since" : "1.0", "format" : "guint8", @@ -270,7 +251,6 @@ "since" : "1.0", "input" : [ { "name" : "Raw Message Data", "id" : "0x01", - "mandatory" : "yes", "type" : "TLV", "since" : "1.0", "format" : "sequence", @@ -287,7 +267,6 @@ "output" : [ { "common-ref" : "Operation Result" }, { "name" : "Memory Index", "id" : "0x01", - "mandatory" : "yes", "type" : "TLV", "since" : "1.0", "format" : "guint32", @@ -302,7 +281,6 @@ "since" : "1.0", "input" : [ { "name" : "Message Memory Storage ID", "id" : "0x01", - "mandatory" : "yes", "type" : "TLV", "since" : "1.0", "format" : "sequence", @@ -313,14 +291,12 @@ "format" : "guint32" } ] }, { "name" : "Message Mode", "id" : "0x10", - "mandatory" : "no", "type" : "TLV", "since" : "1.0", "format" : "guint8", "public-format" : "QmiWmsMessageMode" }, { "name" : "SMS on IMS", "id" : "0x11", - "mandatory" : "no", "type" : "TLV", "since" : "1.0", "format" : "guint8", @@ -328,7 +304,6 @@ "output" : [ { "common-ref" : "Operation Result" }, { "name" : "Raw Message Data", "id" : "0x01", - "mandatory" : "yes", "type" : "TLV", "since" : "1.0", "format" : "sequence", @@ -353,7 +328,6 @@ "since" : "1.0", "input" : [ { "name" : "Message Tag", "id" : "0x01", - "mandatory" : "yes", "type" : "TLV", "since" : "1.0", "format" : "sequence", @@ -367,7 +341,6 @@ "public-format" : "QmiWmsMessageTagType" } ] }, { "name" : "Message Mode", "id" : "0x10", - "mandatory" : "no", "type" : "TLV", "since" : "1.0", "format" : "guint8", @@ -383,27 +356,23 @@ "since" : "1.0", "input" : [ { "name" : "Memory Storage", "id" : "0x01", - "mandatory" : "yes", "type" : "TLV", "since" : "1.0", "format" : "guint8", "public-format" : "QmiWmsStorageType" }, { "name" : "Memory Index", "id" : "0x10", - "mandatory" : "no", "type" : "TLV", "since" : "1.0", "format" : "guint32" }, { "name" : "Message Tag", "id" : "0x11", - "mandatory" : "no", "type" : "TLV", "since" : "1.0", "format" : "guint8", "public-format" : "QmiWmsMessageTagType" }, { "name" : "Message Mode", "id" : "0x12", - "mandatory" : "no", "type" : "TLV", "since" : "1.0", "format" : "guint8", @@ -420,7 +389,6 @@ "output" : [ { "common-ref" : "Operation Result" }, { "name" : "Message Protocol", "id" : "0x01", - "mandatory" : "yes", "type" : "TLV", "since" : "1.0", "format" : "guint8", @@ -436,21 +404,18 @@ "since" : "1.0", "input" : [ { "name" : "Storage Type", "id" : "0x01", - "mandatory" : "yes", "type" : "TLV", "since" : "1.0", "format" : "guint8", "public-format" : "QmiWmsStorageType" }, { "name" : "Message Tag", "id" : "0x11", - "mandatory" : "no", "type" : "TLV", "since" : "1.0", "format" : "guint8", "public-format" : "QmiWmsMessageTagType" }, { "name" : "Message Mode", "id" : "0x12", - "mandatory" : "no", "type" : "TLV", "since" : "1.0", "format" : "guint8", @@ -458,7 +423,6 @@ "output" : [ { "common-ref" : "Operation Result" }, { "name" : "Message List", "id" : "0x01", - "mandatory" : "yes", "type" : "TLV", "since" : "1.0", "format" : "array", @@ -481,7 +445,6 @@ "since" : "1.0", "input" : [ { "name" : "Route List", "id" : "0x01", - "mandatory" : "yes", "type" : "TLV", "since" : "1.0", "format" : "array", @@ -502,7 +465,6 @@ "public-format" : "QmiWmsReceiptAction" } ] } }, { "name" : "Transfer Status Report", "id" : "0x10", - "mandatory" : "no", "type" : "TLV", "since" : "1.0", "format" : "guint8", @@ -519,7 +481,6 @@ "output" : [ { "common-ref" : "Operation Result" }, { "name" : "Route List", "id" : "0x01", - "mandatory" : "yes", "type" : "TLV", "since" : "1.0", "format" : "array", @@ -541,7 +502,6 @@ "prerequisites" : [ { "common-ref" : "Success" } ] }, { "name" : "Transfer Status Report", "id" : "0x10", - "mandatory" : "no", "type" : "TLV", "since" : "1.0", "format" : "guint8", @@ -557,7 +517,6 @@ "since" : "1.0", "input" : [ { "name" : "Information", "id" : "0x01", - "mandatory" : "yes", "type" : "TLV", "since" : "1.0", "format" : "sequence", @@ -571,7 +530,6 @@ "public-format" : "QmiWmsMessageMode" } ] }, { "name" : "SMS on IMS", "id" : "0x10", - "mandatory" : "no", "type" : "TLV", "since" : "1.0", "format" : "guint8", @@ -579,14 +537,12 @@ "output" : [ { "common-ref" : "Operation Result" }, { "name" : "Message ID", "id" : "0x10", - "mandatory" : "no", "type" : "TLV", "since" : "1.0", "format" : "guint16", "prerequisites" : [ { "common-ref" : "Success" } ] }, { "name" : "CDMA Cause Code", "id" : "0x11", - "mandatory" : "no", "type" : "TLV", "since" : "1.0", "format" : "guint16", @@ -599,7 +555,6 @@ "value" : "QMI_PROTOCOL_ERROR_WMS_CAUSE_CODE" } ] }, { "name" : "CDMA Error Class", "id" : "0x12", - "mandatory" : "no", "type" : "TLV", "since" : "1.0", "format" : "guint8", @@ -612,7 +567,6 @@ "value" : "QMI_PROTOCOL_ERROR_WMS_CAUSE_CODE" } ] }, { "name" : "GSM WCDMA Cause Info", "id" : "0x13", - "mandatory" : "no", "type" : "TLV", "since" : "1.0", "format" : "sequence", @@ -630,7 +584,6 @@ "value" : "QMI_PROTOCOL_ERROR_WMS_CAUSE_CODE" } ] }, { "name" : "Message Delivery Failure Type", "id" : "0x14", - "mandatory" : "no", "type" : "TLV", "since" : "1.0", "format" : "guint8", @@ -651,7 +604,6 @@ "since" : "1.14", "output" : [ { "name" : "Address", "id" : "0x01", - "mandatory" : "yes", "type" : "TLV", "since" : "1.14", "format" : "sequence", diff -Nru libqmi-1.18.0/debian/changelog libqmi-1.22.0/debian/changelog --- libqmi-1.18.0/debian/changelog 2018-04-24 13:03:39.000000000 +0200 +++ libqmi-1.22.0/debian/changelog 2019-03-20 14:28:39.000000000 +0100 @@ -1,9 +1,55 @@ -libqmi (1.18.0-3ubuntu1) bionic; urgency=medium +libqmi (1.22.0-1.2~ubuntu18.04.1) bionic; urgency=medium - * Pass --enable-more-warnings so we build without -Werror, which fixes the - current FTBFS and mitigates against future ones. + * Build for Bionic (LP: #1819615). + * debian/libqmi-glib5.symbols: update symbols for new release. - -- Iain Lane Tue, 24 Apr 2018 12:03:39 +0100 + -- Till Kamppeter Wed, 20 Mar 2019 14:28:39 +0100 + +libqmi (1.22.0-1.2) unstable; urgency=medium + + * Non-maintainer upload. + * Add debian/patches/git_reset-offset-before-2nd-call.patch from upstream. + - equivalent to 1.22.2 release except the broken manpages in that release. + + -- Andreas Henriksson Tue, 12 Mar 2019 14:19:35 +0100 + +libqmi (1.22.0-1.1) unstable; urgency=medium + + * Non-maintainer upload + * Bump Build-Depends on libmbim-glib-dev to 1.18.0 to fix build + (Closes: #921321) + + -- Jeremy Bicha Thu, 07 Feb 2019 18:22:46 -0500 + +libqmi (1.22.0-1) unstable; urgency=medium + + * New upstream release + - Needed by ModemManager 1.10. + * debian/patches/0001-qmicli-remove-implicity-casts-to-GDestroyNotify-in-g.patch: + Dropped, included upstream. + * debian/libqmi-glib5.symbols: update symbols for new release. + + -- Till Kamppeter Tue, 05 Feb 2019 23:24:39 +0100 + +libqmi (1.20.0-1.1) unstable; urgency=medium + + * Non-maintainer upload. + * Add upstream fix for FTBFS with glib 2.58, + thanks to Juhani Numminen. (Closes: #908016) + + -- Adrian Bunk Sat, 22 Sep 2018 22:05:32 +0300 + +libqmi (1.20.0-1) unstable; urgency=medium + + * New upstream version 1.20.0. (Closes: #887975) + * debian/patches/0001-utils-drop-useless-g_file_test-call.patch: dropped, + included upstream. + * debian/libqmi-glib5.symbols: update symbols for new release. + * debian/control: changing Maintainer field to claim the package. Marius is + no longer interested in maintaining it. + * debian/control: bump Standards-Version to 4.1.3. + + -- Mathieu Trudel-Lapierre Thu, 01 Mar 2018 09:39:11 -0500 libqmi (1.18.0-3) unstable; urgency=medium diff -Nru libqmi-1.18.0/debian/control libqmi-1.22.0/debian/control --- libqmi-1.18.0/debian/control 2018-04-24 13:03:39.000000000 +0200 +++ libqmi-1.22.0/debian/control 2019-02-08 00:22:46.000000000 +0100 @@ -1,16 +1,15 @@ Source: libqmi Priority: optional -Maintainer: Ubuntu Developers -XSBC-Original-Maintainer: Marius B. Kotsbak +Maintainer: Mathieu Trudel-Lapierre Build-Depends: debhelper (>= 10), gtk-doc-tools, - libmbim-glib-dev (>= 1.14.0), + libmbim-glib-dev (>= 1.18.0), libgudev-1.0-dev (>= 147), libglib2.0-dev (>= 2.36), libglib2.0-doc, pkg-config, python, -Standards-Version: 4.0.0 +Standards-Version: 4.1.3 Section: libs Homepage: https://www.freedesktop.org/wiki/Software/libqmi Vcs-Git: git://anonscm.debian.org/pkg-libqmi/pkg-libqmi.git diff -Nru libqmi-1.18.0/debian/libqmi-glib5.symbols libqmi-1.22.0/debian/libqmi-glib5.symbols --- libqmi-1.18.0/debian/libqmi-glib5.symbols 2017-10-21 00:49:31.000000000 +0200 +++ libqmi-1.22.0/debian/libqmi-glib5.symbols 2019-02-08 00:22:46.000000000 +0100 @@ -100,6 +100,10 @@ qmi_client_dms_set_user_lock_state_finish@Base 1.6.0 qmi_client_dms_swi_get_current_firmware@Base 1.18.0 qmi_client_dms_swi_get_current_firmware_finish@Base 1.18.0 + qmi_client_dms_swi_get_usb_composition@Base 1.20.0 + qmi_client_dms_swi_get_usb_composition_finish@Base 1.20.0 + qmi_client_dms_swi_set_usb_composition@Base 1.20.0 + qmi_client_dms_swi_set_usb_composition_finish@Base 1.20.0 qmi_client_dms_uim_change_pin@Base 1.6.0 qmi_client_dms_uim_change_pin_finish@Base 1.6.0 qmi_client_dms_uim_get_ck_status@Base 1.6.0 @@ -132,6 +136,32 @@ qmi_client_get_service@Base 1.6.0 qmi_client_get_type@Base 1.6.0 qmi_client_get_version@Base 1.6.0 + qmi_client_is_valid@Base 1.20.0 + qmi_client_loc_delete_assistance_data@Base 1.22.0 + qmi_client_loc_delete_assistance_data_finish@Base 1.22.0 + qmi_client_loc_get_operation_mode@Base 1.22.0 + qmi_client_loc_get_operation_mode_finish@Base 1.22.0 + qmi_client_loc_get_predicted_orbits_data_source@Base 1.22.0 + qmi_client_loc_get_predicted_orbits_data_source_finish@Base 1.22.0 + qmi_client_loc_get_server@Base 1.22.0 + qmi_client_loc_get_server_finish@Base 1.22.0 + qmi_client_loc_get_type@Base 1.20.0 + qmi_client_loc_inject_predicted_orbits_data@Base 1.22.0 + qmi_client_loc_inject_predicted_orbits_data_finish@Base 1.22.0 + qmi_client_loc_inject_xtra_data@Base 1.22.0 + qmi_client_loc_inject_xtra_data_finish@Base 1.22.0 + qmi_client_loc_register_events@Base 1.22.0 + qmi_client_loc_register_events_finish@Base 1.22.0 + qmi_client_loc_set_operation_mode@Base 1.22.0 + qmi_client_loc_set_operation_mode_finish@Base 1.22.0 + qmi_client_loc_set_server@Base 1.22.0 + qmi_client_loc_set_server_finish@Base 1.22.0 + qmi_client_loc_start@Base 1.20.0 + qmi_client_loc_start_finish@Base 1.20.0 + qmi_client_loc_stop@Base 1.20.0 + qmi_client_loc_stop_finish@Base 1.20.0 + qmi_client_nas_attach_detach@Base 1.20.0 + qmi_client_nas_attach_detach_finish@Base 1.20.0 qmi_client_nas_config_signal_info@Base 1.6.0 qmi_client_nas_config_signal_info_finish@Base 1.6.0 qmi_client_nas_force_network_search@Base 1.16.0 @@ -252,6 +282,15 @@ qmi_client_pds_set_gps_service_state@Base 1.6.0 qmi_client_pds_set_gps_service_state_finish@Base 1.6.0 qmi_client_peek_device@Base 1.6.0 + qmi_client_qos_get_flow_status@Base 1.22.0 + qmi_client_qos_get_flow_status_finish@Base 1.22.0 + qmi_client_qos_get_network_status@Base 1.22.0 + qmi_client_qos_get_network_status_finish@Base 1.22.0 + qmi_client_qos_get_type@Base 1.22.0 + qmi_client_qos_reset@Base 1.22.0 + qmi_client_qos_reset_finish@Base 1.22.0 + qmi_client_qos_swi_read_data_stats@Base 1.22.0 + qmi_client_qos_swi_read_data_stats_finish@Base 1.22.0 qmi_client_uim_change_pin@Base 1.14.0 qmi_client_uim_change_pin_finish@Base 1.14.0 qmi_client_uim_get_card_status@Base 1.10.0 @@ -303,12 +342,16 @@ qmi_client_wds_delete_profile_finish@Base 1.18.0 qmi_client_wds_get_autoconnect_settings@Base 1.14.0 qmi_client_wds_get_autoconnect_settings_finish@Base 1.14.0 + qmi_client_wds_get_channel_rates@Base 1.20.0 + qmi_client_wds_get_channel_rates_finish@Base 1.20.0 qmi_client_wds_get_current_data_bearer_technology@Base 1.6.0 qmi_client_wds_get_current_data_bearer_technology_finish@Base 1.6.0 qmi_client_wds_get_current_settings@Base 1.6.0 qmi_client_wds_get_current_settings_finish@Base 1.6.0 qmi_client_wds_get_data_bearer_technology@Base 1.6.0 qmi_client_wds_get_data_bearer_technology_finish@Base 1.6.0 + qmi_client_wds_get_default_profile_num@Base 1.22.0 + qmi_client_wds_get_default_profile_num_finish@Base 1.22.0 qmi_client_wds_get_default_settings@Base 1.8.0 qmi_client_wds_get_default_settings_finish@Base 1.8.0 qmi_client_wds_get_dormancy_status@Base 1.18.0 @@ -336,6 +379,8 @@ qmi_client_wds_reset_finish@Base 1.6.0 qmi_client_wds_set_autoconnect_settings@Base 1.14.0 qmi_client_wds_set_autoconnect_settings_finish@Base 1.14.0 + qmi_client_wds_set_default_profile_num@Base 1.22.0 + qmi_client_wds_set_default_profile_num_finish@Base 1.22.0 qmi_client_wds_set_event_report@Base 1.18.0 qmi_client_wds_set_event_report_finish@Base 1.18.0 qmi_client_wds_set_ip_family@Base 1.6.0 @@ -344,6 +389,8 @@ qmi_client_wds_start_network_finish@Base 1.6.0 qmi_client_wds_stop_network@Base 1.6.0 qmi_client_wds_stop_network_finish@Base 1.6.0 + qmi_client_wds_swi_create_profile_indexed@Base 1.22.0 + qmi_client_wds_swi_create_profile_indexed_finish@Base 1.22.0 qmi_client_wms_delete@Base 1.6.0 qmi_client_wms_delete_finish@Base 1.6.0 qmi_client_wms_get_message_protocol@Base 1.6.0 @@ -438,6 +485,9 @@ qmi_dms_radio_interface_get_type@Base 1.6.0 qmi_dms_sim_capability_get_string@Base 1.6.0 qmi_dms_sim_capability_get_type@Base 1.6.0 + qmi_dms_swi_usb_composition_get_description@Base 1.20.0 + qmi_dms_swi_usb_composition_get_string@Base 1.20.0 + qmi_dms_swi_usb_composition_get_type@Base 1.20.0 qmi_dms_time_reference_type_get_string@Base 1.6.0 qmi_dms_time_reference_type_get_type@Base 1.6.0 qmi_dms_time_source_get_string@Base 1.6.0 @@ -463,6 +513,99 @@ qmi_indication_dms_event_report_output_get_wireless_disable_state@Base 1.6.0 qmi_indication_dms_event_report_output_ref@Base 1.6.0 qmi_indication_dms_event_report_output_unref@Base 1.6.0 + qmi_indication_loc_delete_assistance_data_output_get_indication_status@Base 1.22.0 + qmi_indication_loc_delete_assistance_data_output_get_type@Base 1.22.0 + qmi_indication_loc_delete_assistance_data_output_ref@Base 1.22.0 + qmi_indication_loc_delete_assistance_data_output_unref@Base 1.22.0 + qmi_indication_loc_engine_state_output_get_engine_state@Base 1.22.0 + qmi_indication_loc_engine_state_output_get_type@Base 1.22.0 + qmi_indication_loc_engine_state_output_ref@Base 1.22.0 + qmi_indication_loc_engine_state_output_unref@Base 1.22.0 + qmi_indication_loc_fix_recurrence_type_output_get_fix_recurrence_type@Base 1.22.0 + qmi_indication_loc_fix_recurrence_type_output_get_type@Base 1.22.0 + qmi_indication_loc_fix_recurrence_type_output_ref@Base 1.22.0 + qmi_indication_loc_fix_recurrence_type_output_unref@Base 1.22.0 + qmi_indication_loc_get_operation_mode_output_get_indication_status@Base 1.22.0 + qmi_indication_loc_get_operation_mode_output_get_operation_mode@Base 1.22.0 + qmi_indication_loc_get_operation_mode_output_get_type@Base 1.22.0 + qmi_indication_loc_get_operation_mode_output_ref@Base 1.22.0 + qmi_indication_loc_get_operation_mode_output_unref@Base 1.22.0 + qmi_indication_loc_get_predicted_orbits_data_source_output_get_allowed_sizes@Base 1.22.0 + qmi_indication_loc_get_predicted_orbits_data_source_output_get_indication_status@Base 1.22.0 + qmi_indication_loc_get_predicted_orbits_data_source_output_get_server_list@Base 1.22.0 + qmi_indication_loc_get_predicted_orbits_data_source_output_get_type@Base 1.22.0 + qmi_indication_loc_get_predicted_orbits_data_source_output_ref@Base 1.22.0 + qmi_indication_loc_get_predicted_orbits_data_source_output_unref@Base 1.22.0 + qmi_indication_loc_get_server_output_get_indication_status@Base 1.22.0 + qmi_indication_loc_get_server_output_get_ipv4@Base 1.22.0 + qmi_indication_loc_get_server_output_get_ipv6@Base 1.22.0 + qmi_indication_loc_get_server_output_get_server_type@Base 1.22.0 + qmi_indication_loc_get_server_output_get_type@Base 1.22.0 + qmi_indication_loc_get_server_output_get_url@Base 1.22.0 + qmi_indication_loc_get_server_output_ref@Base 1.22.0 + qmi_indication_loc_get_server_output_unref@Base 1.22.0 + qmi_indication_loc_gnss_sv_info_output_get_altitude_assumed@Base 1.22.0 + qmi_indication_loc_gnss_sv_info_output_get_list@Base 1.22.0 + qmi_indication_loc_gnss_sv_info_output_get_type@Base 1.22.0 + qmi_indication_loc_gnss_sv_info_output_ref@Base 1.22.0 + qmi_indication_loc_gnss_sv_info_output_unref@Base 1.22.0 + qmi_indication_loc_inject_predicted_orbits_data_output_get_indication_status@Base 1.22.0 + qmi_indication_loc_inject_predicted_orbits_data_output_get_part_number@Base 1.22.0 + qmi_indication_loc_inject_predicted_orbits_data_output_get_type@Base 1.22.0 + qmi_indication_loc_inject_predicted_orbits_data_output_ref@Base 1.22.0 + qmi_indication_loc_inject_predicted_orbits_data_output_unref@Base 1.22.0 + qmi_indication_loc_inject_xtra_data_output_get_indication_status@Base 1.22.0 + qmi_indication_loc_inject_xtra_data_output_get_part_number@Base 1.22.0 + qmi_indication_loc_inject_xtra_data_output_get_type@Base 1.22.0 + qmi_indication_loc_inject_xtra_data_output_ref@Base 1.22.0 + qmi_indication_loc_inject_xtra_data_output_unref@Base 1.22.0 + qmi_indication_loc_nmea_output_get_nmea_string@Base 1.22.0 + qmi_indication_loc_nmea_output_get_type@Base 1.22.0 + qmi_indication_loc_nmea_output_ref@Base 1.22.0 + qmi_indication_loc_nmea_output_unref@Base 1.22.0 + qmi_indication_loc_position_report_output_get_altitude_assumed@Base 1.22.0 + qmi_indication_loc_position_report_output_get_altitude_from_ellipsoid@Base 1.22.0 + qmi_indication_loc_position_report_output_get_altitude_from_sealevel@Base 1.22.0 + qmi_indication_loc_position_report_output_get_dilution_of_precision@Base 1.22.0 + qmi_indication_loc_position_report_output_get_gps_time@Base 1.22.0 + qmi_indication_loc_position_report_output_get_heading@Base 1.22.0 + qmi_indication_loc_position_report_output_get_heading_uncertainty@Base 1.22.0 + qmi_indication_loc_position_report_output_get_horizontal_confidence@Base 1.22.0 + qmi_indication_loc_position_report_output_get_horizontal_reliability@Base 1.22.0 + qmi_indication_loc_position_report_output_get_horizontal_speed@Base 1.22.0 + qmi_indication_loc_position_report_output_get_horizontal_uncertainty_circular@Base 1.22.0 + qmi_indication_loc_position_report_output_get_horizontal_uncertainty_elliptical_azimuth@Base 1.22.0 + qmi_indication_loc_position_report_output_get_horizontal_uncertainty_elliptical_major@Base 1.22.0 + qmi_indication_loc_position_report_output_get_horizontal_uncertainty_elliptical_minor@Base 1.22.0 + qmi_indication_loc_position_report_output_get_latitude@Base 1.22.0 + qmi_indication_loc_position_report_output_get_leap_seconds@Base 1.22.0 + qmi_indication_loc_position_report_output_get_longitude@Base 1.22.0 + qmi_indication_loc_position_report_output_get_magnetic_deviation@Base 1.22.0 + qmi_indication_loc_position_report_output_get_satellites_used@Base 1.22.0 + qmi_indication_loc_position_report_output_get_sensor_data_usage@Base 1.22.0 + qmi_indication_loc_position_report_output_get_session_fix_count@Base 1.22.0 + qmi_indication_loc_position_report_output_get_session_id@Base 1.20.0 + qmi_indication_loc_position_report_output_get_session_status@Base 1.22.0 + qmi_indication_loc_position_report_output_get_speed_uncertainty@Base 1.22.0 + qmi_indication_loc_position_report_output_get_technology_used@Base 1.22.0 + qmi_indication_loc_position_report_output_get_time_source@Base 1.22.0 + qmi_indication_loc_position_report_output_get_time_uncertainty@Base 1.22.0 + qmi_indication_loc_position_report_output_get_type@Base 1.20.0 + qmi_indication_loc_position_report_output_get_utc_timestamp@Base 1.22.0 + qmi_indication_loc_position_report_output_get_vertical_confidence@Base 1.22.0 + qmi_indication_loc_position_report_output_get_vertical_reliability@Base 1.22.0 + qmi_indication_loc_position_report_output_get_vertical_speed@Base 1.22.0 + qmi_indication_loc_position_report_output_get_vertical_uncertainty@Base 1.22.0 + qmi_indication_loc_position_report_output_ref@Base 1.20.0 + qmi_indication_loc_position_report_output_unref@Base 1.20.0 + qmi_indication_loc_set_operation_mode_output_get_indication_status@Base 1.22.0 + qmi_indication_loc_set_operation_mode_output_get_type@Base 1.22.0 + qmi_indication_loc_set_operation_mode_output_ref@Base 1.22.0 + qmi_indication_loc_set_operation_mode_output_unref@Base 1.22.0 + qmi_indication_loc_set_server_output_get_indication_status@Base 1.22.0 + qmi_indication_loc_set_server_output_get_type@Base 1.22.0 + qmi_indication_loc_set_server_output_ref@Base 1.22.0 + qmi_indication_loc_set_server_output_unref@Base 1.22.0 qmi_indication_nas_event_report_output_get_ecio@Base 1.6.0 qmi_indication_nas_event_report_output_get_error_rate@Base 1.6.0 qmi_indication_nas_event_report_output_get_io@Base 1.6.0 @@ -615,6 +758,18 @@ qmi_indication_pds_event_report_output_get_type@Base 1.6.0 qmi_indication_pds_event_report_output_ref@Base 1.6.0 qmi_indication_pds_event_report_output_unref@Base 1.6.0 + qmi_indication_qos_flow_status_output_get_type@Base 1.22.0 + qmi_indication_qos_flow_status_output_get_value@Base 1.22.0 + qmi_indication_qos_flow_status_output_ref@Base 1.22.0 + qmi_indication_qos_flow_status_output_unref@Base 1.22.0 + qmi_indication_qos_network_status_output_get_qos_supported@Base 1.22.0 + qmi_indication_qos_network_status_output_get_type@Base 1.22.0 + qmi_indication_qos_network_status_output_ref@Base 1.22.0 + qmi_indication_qos_network_status_output_unref@Base 1.22.0 + qmi_indication_uim_card_status_output_get_card_status@Base 1.22.0 + qmi_indication_uim_card_status_output_get_type@Base 1.22.0 + qmi_indication_uim_card_status_output_ref@Base 1.22.0 + qmi_indication_uim_card_status_output_unref@Base 1.22.0 qmi_indication_voice_all_call_status_output_get_call_information@Base 1.14.0 qmi_indication_voice_all_call_status_output_get_remote_party_number@Base 1.14.0 qmi_indication_voice_all_call_status_output_get_type@Base 1.14.0 @@ -669,6 +824,49 @@ qmi_indication_wms_smsc_address_output_get_type@Base 1.14.0 qmi_indication_wms_smsc_address_output_ref@Base 1.14.0 qmi_indication_wms_smsc_address_output_unref@Base 1.14.0 + qmi_loc_delete_cell_database_build_string_from_mask@Base 1.22.0 + qmi_loc_delete_cell_database_get_type@Base 1.22.0 + qmi_loc_delete_clock_info_build_string_from_mask@Base 1.22.0 + qmi_loc_delete_clock_info_get_type@Base 1.22.0 + qmi_loc_delete_gnss_data_build_string_from_mask@Base 1.22.0 + qmi_loc_delete_sv_info_build_string_from_mask@Base 1.22.0 + qmi_loc_delete_sv_info_get_type@Base 1.22.0 + qmi_loc_engine_state_get_string@Base 1.22.0 + qmi_loc_engine_state_get_type@Base 1.22.0 + qmi_loc_event_registration_flag_build_string_from_mask@Base 1.22.0 + qmi_loc_fix_recurrence_type_get_string@Base 1.22.0 + qmi_loc_fix_recurrence_type_get_type@Base 1.22.0 + qmi_loc_health_status_get_string@Base 1.22.0 + qmi_loc_health_status_get_type@Base 1.22.0 + qmi_loc_indication_status_get_string@Base 1.22.0 + qmi_loc_indication_status_get_type@Base 1.22.0 + qmi_loc_intermediate_report_state_get_string@Base 1.20.0 + qmi_loc_intermediate_report_state_get_type@Base 1.20.0 + qmi_loc_navigation_data_get_string@Base 1.22.0 + qmi_loc_navigation_data_get_type@Base 1.22.0 + qmi_loc_operation_mode_get_string@Base 1.22.0 + qmi_loc_operation_mode_get_type@Base 1.22.0 + qmi_loc_predicted_orbits_data_format_get_string@Base 1.22.0 + qmi_loc_predicted_orbits_data_format_get_type@Base 1.22.0 + qmi_loc_reliability_get_string@Base 1.22.0 + qmi_loc_reliability_get_type@Base 1.22.0 + qmi_loc_satellite_status_get_string@Base 1.22.0 + qmi_loc_satellite_status_get_type@Base 1.22.0 + qmi_loc_satellite_valid_information_build_string_from_mask@Base 1.22.0 + qmi_loc_satellite_valid_information_get_type@Base 1.22.0 + qmi_loc_sensor_data_usage_build_string_from_mask@Base 1.22.0 + qmi_loc_server_address_type_build_string_from_mask@Base 1.22.0 + qmi_loc_server_address_type_get_type@Base 1.22.0 + qmi_loc_server_type_get_string@Base 1.22.0 + qmi_loc_server_type_get_type@Base 1.22.0 + qmi_loc_session_status_get_string@Base 1.22.0 + qmi_loc_session_status_get_type@Base 1.22.0 + qmi_loc_system_get_string@Base 1.22.0 + qmi_loc_system_get_type@Base 1.22.0 + qmi_loc_technology_used_build_string_from_mask@Base 1.22.0 + qmi_loc_technology_used_get_type@Base 1.22.0 + qmi_loc_time_source_get_string@Base 1.22.0 + qmi_loc_time_source_get_type@Base 1.22.0 qmi_message_add_raw_tlv@Base 1.6.0 qmi_message_context_get_type@Base 1.18.0 qmi_message_context_get_vendor_id@Base 1.18.0 @@ -788,6 +986,7 @@ qmi_message_dms_get_alt_net_config_output_ref@Base 1.6.0 qmi_message_dms_get_alt_net_config_output_unref@Base 1.6.0 qmi_message_dms_get_band_capabilities_output_get_band_capability@Base 1.6.0 + qmi_message_dms_get_band_capabilities_output_get_extended_lte_band_capability@Base 1.20.0 qmi_message_dms_get_band_capabilities_output_get_lte_band_capability@Base 1.6.0 qmi_message_dms_get_band_capabilities_output_get_result@Base 1.6.0 qmi_message_dms_get_band_capabilities_output_get_type@Base 1.6.0 @@ -1075,6 +1274,22 @@ qmi_message_dms_swi_get_current_firmware_output_get_type@Base 1.18.0 qmi_message_dms_swi_get_current_firmware_output_ref@Base 1.18.0 qmi_message_dms_swi_get_current_firmware_output_unref@Base 1.18.0 + qmi_message_dms_swi_get_usb_composition_output_get_current@Base 1.20.0 + qmi_message_dms_swi_get_usb_composition_output_get_result@Base 1.20.0 + qmi_message_dms_swi_get_usb_composition_output_get_supported@Base 1.20.0 + qmi_message_dms_swi_get_usb_composition_output_get_type@Base 1.20.0 + qmi_message_dms_swi_get_usb_composition_output_ref@Base 1.20.0 + qmi_message_dms_swi_get_usb_composition_output_unref@Base 1.20.0 + qmi_message_dms_swi_set_usb_composition_input_get_current@Base 1.20.0 + qmi_message_dms_swi_set_usb_composition_input_get_type@Base 1.20.0 + qmi_message_dms_swi_set_usb_composition_input_new@Base 1.20.0 + qmi_message_dms_swi_set_usb_composition_input_ref@Base 1.20.0 + qmi_message_dms_swi_set_usb_composition_input_set_current@Base 1.20.0 + qmi_message_dms_swi_set_usb_composition_input_unref@Base 1.20.0 + qmi_message_dms_swi_set_usb_composition_output_get_result@Base 1.20.0 + qmi_message_dms_swi_set_usb_composition_output_get_type@Base 1.20.0 + qmi_message_dms_swi_set_usb_composition_output_ref@Base 1.20.0 + qmi_message_dms_swi_set_usb_composition_output_unref@Base 1.20.0 qmi_message_dms_uim_change_pin_input_get_info@Base 1.6.0 qmi_message_dms_uim_change_pin_input_get_type@Base 1.6.0 qmi_message_dms_uim_change_pin_input_new@Base 1.6.0 @@ -1210,7 +1425,151 @@ qmi_message_is_indication@Base 1.6.0 qmi_message_is_request@Base 1.8.0 qmi_message_is_response@Base 1.6.0 + qmi_message_loc_delete_assistance_data_input_get_delete_all@Base 1.22.0 + qmi_message_loc_delete_assistance_data_input_get_delete_cell_database_mask@Base 1.22.0 + qmi_message_loc_delete_assistance_data_input_get_delete_clock_info_mask@Base 1.22.0 + qmi_message_loc_delete_assistance_data_input_get_delete_gnss_data_mask@Base 1.22.0 + qmi_message_loc_delete_assistance_data_input_get_delete_sv_info@Base 1.22.0 + qmi_message_loc_delete_assistance_data_input_get_type@Base 1.22.0 + qmi_message_loc_delete_assistance_data_input_new@Base 1.22.0 + qmi_message_loc_delete_assistance_data_input_ref@Base 1.22.0 + qmi_message_loc_delete_assistance_data_input_set_delete_all@Base 1.22.0 + qmi_message_loc_delete_assistance_data_input_set_delete_cell_database_mask@Base 1.22.0 + qmi_message_loc_delete_assistance_data_input_set_delete_clock_info_mask@Base 1.22.0 + qmi_message_loc_delete_assistance_data_input_set_delete_gnss_data_mask@Base 1.22.0 + qmi_message_loc_delete_assistance_data_input_set_delete_sv_info@Base 1.22.0 + qmi_message_loc_delete_assistance_data_input_unref@Base 1.22.0 + qmi_message_loc_delete_assistance_data_output_get_result@Base 1.22.0 + qmi_message_loc_delete_assistance_data_output_get_type@Base 1.22.0 + qmi_message_loc_delete_assistance_data_output_ref@Base 1.22.0 + qmi_message_loc_delete_assistance_data_output_unref@Base 1.22.0 + qmi_message_loc_get_operation_mode_output_get_result@Base 1.22.0 + qmi_message_loc_get_operation_mode_output_get_type@Base 1.22.0 + qmi_message_loc_get_operation_mode_output_ref@Base 1.22.0 + qmi_message_loc_get_operation_mode_output_unref@Base 1.22.0 + qmi_message_loc_get_predicted_orbits_data_source_output_get_result@Base 1.22.0 + qmi_message_loc_get_predicted_orbits_data_source_output_get_type@Base 1.22.0 + qmi_message_loc_get_predicted_orbits_data_source_output_ref@Base 1.22.0 + qmi_message_loc_get_predicted_orbits_data_source_output_unref@Base 1.22.0 + qmi_message_loc_get_server_input_get_server_address_type@Base 1.22.0 + qmi_message_loc_get_server_input_get_server_type@Base 1.22.0 + qmi_message_loc_get_server_input_get_type@Base 1.22.0 + qmi_message_loc_get_server_input_new@Base 1.22.0 + qmi_message_loc_get_server_input_ref@Base 1.22.0 + qmi_message_loc_get_server_input_set_server_address_type@Base 1.22.0 + qmi_message_loc_get_server_input_set_server_type@Base 1.22.0 + qmi_message_loc_get_server_input_unref@Base 1.22.0 + qmi_message_loc_get_server_output_get_result@Base 1.22.0 + qmi_message_loc_get_server_output_get_type@Base 1.22.0 + qmi_message_loc_get_server_output_ref@Base 1.22.0 + qmi_message_loc_get_server_output_unref@Base 1.22.0 + qmi_message_loc_inject_predicted_orbits_data_input_get_format_type@Base 1.22.0 + qmi_message_loc_inject_predicted_orbits_data_input_get_part_data@Base 1.22.0 + qmi_message_loc_inject_predicted_orbits_data_input_get_part_number@Base 1.22.0 + qmi_message_loc_inject_predicted_orbits_data_input_get_total_parts@Base 1.22.0 + qmi_message_loc_inject_predicted_orbits_data_input_get_total_size@Base 1.22.0 + qmi_message_loc_inject_predicted_orbits_data_input_get_type@Base 1.22.0 + qmi_message_loc_inject_predicted_orbits_data_input_new@Base 1.22.0 + qmi_message_loc_inject_predicted_orbits_data_input_ref@Base 1.22.0 + qmi_message_loc_inject_predicted_orbits_data_input_set_format_type@Base 1.22.0 + qmi_message_loc_inject_predicted_orbits_data_input_set_part_data@Base 1.22.0 + qmi_message_loc_inject_predicted_orbits_data_input_set_part_number@Base 1.22.0 + qmi_message_loc_inject_predicted_orbits_data_input_set_total_parts@Base 1.22.0 + qmi_message_loc_inject_predicted_orbits_data_input_set_total_size@Base 1.22.0 + qmi_message_loc_inject_predicted_orbits_data_input_unref@Base 1.22.0 + qmi_message_loc_inject_predicted_orbits_data_output_get_result@Base 1.22.0 + qmi_message_loc_inject_predicted_orbits_data_output_get_type@Base 1.22.0 + qmi_message_loc_inject_predicted_orbits_data_output_ref@Base 1.22.0 + qmi_message_loc_inject_predicted_orbits_data_output_unref@Base 1.22.0 + qmi_message_loc_inject_xtra_data_input_get_part_data@Base 1.22.0 + qmi_message_loc_inject_xtra_data_input_get_part_number@Base 1.22.0 + qmi_message_loc_inject_xtra_data_input_get_total_parts@Base 1.22.0 + qmi_message_loc_inject_xtra_data_input_get_total_size@Base 1.22.0 + qmi_message_loc_inject_xtra_data_input_get_type@Base 1.22.0 + qmi_message_loc_inject_xtra_data_input_new@Base 1.22.0 + qmi_message_loc_inject_xtra_data_input_ref@Base 1.22.0 + qmi_message_loc_inject_xtra_data_input_set_part_data@Base 1.22.0 + qmi_message_loc_inject_xtra_data_input_set_part_number@Base 1.22.0 + qmi_message_loc_inject_xtra_data_input_set_total_parts@Base 1.22.0 + qmi_message_loc_inject_xtra_data_input_set_total_size@Base 1.22.0 + qmi_message_loc_inject_xtra_data_input_unref@Base 1.22.0 + qmi_message_loc_inject_xtra_data_output_get_result@Base 1.22.0 + qmi_message_loc_inject_xtra_data_output_get_type@Base 1.22.0 + qmi_message_loc_inject_xtra_data_output_ref@Base 1.22.0 + qmi_message_loc_inject_xtra_data_output_unref@Base 1.22.0 + qmi_message_loc_register_events_input_get_event_registration_mask@Base 1.22.0 + qmi_message_loc_register_events_input_get_type@Base 1.22.0 + qmi_message_loc_register_events_input_new@Base 1.22.0 + qmi_message_loc_register_events_input_ref@Base 1.22.0 + qmi_message_loc_register_events_input_set_event_registration_mask@Base 1.22.0 + qmi_message_loc_register_events_input_unref@Base 1.22.0 + qmi_message_loc_register_events_output_get_result@Base 1.22.0 + qmi_message_loc_register_events_output_get_type@Base 1.22.0 + qmi_message_loc_register_events_output_ref@Base 1.22.0 + qmi_message_loc_register_events_output_unref@Base 1.22.0 + qmi_message_loc_set_operation_mode_input_get_operation_mode@Base 1.22.0 + qmi_message_loc_set_operation_mode_input_get_type@Base 1.22.0 + qmi_message_loc_set_operation_mode_input_new@Base 1.22.0 + qmi_message_loc_set_operation_mode_input_ref@Base 1.22.0 + qmi_message_loc_set_operation_mode_input_set_operation_mode@Base 1.22.0 + qmi_message_loc_set_operation_mode_input_unref@Base 1.22.0 + qmi_message_loc_set_operation_mode_output_get_result@Base 1.22.0 + qmi_message_loc_set_operation_mode_output_get_type@Base 1.22.0 + qmi_message_loc_set_operation_mode_output_ref@Base 1.22.0 + qmi_message_loc_set_operation_mode_output_unref@Base 1.22.0 + qmi_message_loc_set_server_input_get_ipv4@Base 1.22.0 + qmi_message_loc_set_server_input_get_ipv6@Base 1.22.0 + qmi_message_loc_set_server_input_get_server_type@Base 1.22.0 + qmi_message_loc_set_server_input_get_type@Base 1.22.0 + qmi_message_loc_set_server_input_get_url@Base 1.22.0 + qmi_message_loc_set_server_input_new@Base 1.22.0 + qmi_message_loc_set_server_input_ref@Base 1.22.0 + qmi_message_loc_set_server_input_set_ipv4@Base 1.22.0 + qmi_message_loc_set_server_input_set_ipv6@Base 1.22.0 + qmi_message_loc_set_server_input_set_server_type@Base 1.22.0 + qmi_message_loc_set_server_input_set_url@Base 1.22.0 + qmi_message_loc_set_server_input_unref@Base 1.22.0 + qmi_message_loc_set_server_output_get_result@Base 1.22.0 + qmi_message_loc_set_server_output_get_type@Base 1.22.0 + qmi_message_loc_set_server_output_ref@Base 1.22.0 + qmi_message_loc_set_server_output_unref@Base 1.22.0 + qmi_message_loc_start_input_get_fix_recurrence_type@Base 1.22.0 + qmi_message_loc_start_input_get_intermediate_report_state@Base 1.20.0 + qmi_message_loc_start_input_get_minimum_interval_between_position_reports@Base 1.22.0 + qmi_message_loc_start_input_get_session_id@Base 1.20.0 + qmi_message_loc_start_input_get_type@Base 1.20.0 + qmi_message_loc_start_input_new@Base 1.20.0 + qmi_message_loc_start_input_ref@Base 1.20.0 + qmi_message_loc_start_input_set_fix_recurrence_type@Base 1.22.0 + qmi_message_loc_start_input_set_intermediate_report_state@Base 1.20.0 + qmi_message_loc_start_input_set_minimum_interval_between_position_reports@Base 1.22.0 + qmi_message_loc_start_input_set_session_id@Base 1.20.0 + qmi_message_loc_start_input_unref@Base 1.20.0 + qmi_message_loc_start_output_get_result@Base 1.20.0 + qmi_message_loc_start_output_get_type@Base 1.20.0 + qmi_message_loc_start_output_ref@Base 1.20.0 + qmi_message_loc_start_output_unref@Base 1.20.0 + qmi_message_loc_stop_input_get_session_id@Base 1.20.0 + qmi_message_loc_stop_input_get_type@Base 1.20.0 + qmi_message_loc_stop_input_new@Base 1.20.0 + qmi_message_loc_stop_input_ref@Base 1.20.0 + qmi_message_loc_stop_input_set_session_id@Base 1.20.0 + qmi_message_loc_stop_input_unref@Base 1.20.0 + qmi_message_loc_stop_output_get_result@Base 1.20.0 + qmi_message_loc_stop_output_get_type@Base 1.20.0 + qmi_message_loc_stop_output_ref@Base 1.20.0 + qmi_message_loc_stop_output_unref@Base 1.20.0 qmi_message_nas_abort_output_get_result@Base 1.6.0 + qmi_message_nas_attach_detach_input_get_action@Base 1.20.0 + qmi_message_nas_attach_detach_input_get_type@Base 1.20.0 + qmi_message_nas_attach_detach_input_new@Base 1.20.0 + qmi_message_nas_attach_detach_input_ref@Base 1.20.0 + qmi_message_nas_attach_detach_input_set_action@Base 1.20.0 + qmi_message_nas_attach_detach_input_unref@Base 1.20.0 + qmi_message_nas_attach_detach_output_get_result@Base 1.20.0 + qmi_message_nas_attach_detach_output_get_type@Base 1.20.0 + qmi_message_nas_attach_detach_output_ref@Base 1.20.0 + qmi_message_nas_attach_detach_output_unref@Base 1.20.0 qmi_message_nas_config_signal_info_input_get_ecio_threshold@Base 1.6.0 qmi_message_nas_config_signal_info_input_get_io_threshold@Base 1.6.0 qmi_message_nas_config_signal_info_input_get_lte_report@Base 1.6.0 @@ -1270,6 +1629,7 @@ qmi_message_nas_get_lte_cphy_ca_info_output_get_dl_bandwidth@Base 1.16.0 qmi_message_nas_get_lte_cphy_ca_info_output_get_phy_ca_agg_pcell_info@Base 1.16.0 qmi_message_nas_get_lte_cphy_ca_info_output_get_phy_ca_agg_scell_info@Base 1.16.0 + qmi_message_nas_get_lte_cphy_ca_info_output_get_phy_ca_agg_secondary_cells@Base 1.22.0 qmi_message_nas_get_lte_cphy_ca_info_output_get_result@Base 1.16.0 qmi_message_nas_get_lte_cphy_ca_info_output_get_scell_index@Base 1.16.0 qmi_message_nas_get_lte_cphy_ca_info_output_get_type@Base 1.16.0 @@ -1380,9 +1740,11 @@ qmi_message_nas_get_system_info_output_get_wcdma_system_info@Base 1.6.0 qmi_message_nas_get_system_info_output_ref@Base 1.6.0 qmi_message_nas_get_system_info_output_unref@Base 1.6.0 + qmi_message_nas_get_system_selection_preference_output_get_acquisition_order_preference@Base 1.22.0 qmi_message_nas_get_system_selection_preference_output_get_band_preference@Base 1.6.0 qmi_message_nas_get_system_selection_preference_output_get_cdma_prl_preference@Base 1.6.0 qmi_message_nas_get_system_selection_preference_output_get_emergency_mode@Base 1.6.0 + qmi_message_nas_get_system_selection_preference_output_get_extended_lte_band_preference@Base 1.20.0 qmi_message_nas_get_system_selection_preference_output_get_gsm_wcdma_acquisition_order_preference@Base 1.6.0 qmi_message_nas_get_system_selection_preference_output_get_lte_band_preference@Base 1.6.0 qmi_message_nas_get_system_selection_preference_output_get_manual_network_selection@Base 1.6.0 @@ -1517,10 +1879,12 @@ qmi_message_nas_set_event_report_output_get_type@Base 1.6.0 qmi_message_nas_set_event_report_output_ref@Base 1.6.0 qmi_message_nas_set_event_report_output_unref@Base 1.6.0 + qmi_message_nas_set_system_selection_preference_input_get_acquisition_order_preference@Base 1.22.0 qmi_message_nas_set_system_selection_preference_input_get_band_preference@Base 1.6.0 qmi_message_nas_set_system_selection_preference_input_get_cdma_prl_preference@Base 1.6.0 qmi_message_nas_set_system_selection_preference_input_get_change_duration@Base 1.6.0 qmi_message_nas_set_system_selection_preference_input_get_emergency_mode@Base 1.6.0 + qmi_message_nas_set_system_selection_preference_input_get_extended_lte_band_preference@Base 1.20.0 qmi_message_nas_set_system_selection_preference_input_get_gsm_wcdma_acquisition_order_preference@Base 1.6.0 qmi_message_nas_set_system_selection_preference_input_get_lte_band_preference@Base 1.6.0 qmi_message_nas_set_system_selection_preference_input_get_mnc_pds_digit_include_status@Base 1.6.0 @@ -1532,10 +1896,12 @@ qmi_message_nas_set_system_selection_preference_input_get_type@Base 1.6.0 qmi_message_nas_set_system_selection_preference_input_new@Base 1.6.0 qmi_message_nas_set_system_selection_preference_input_ref@Base 1.6.0 + qmi_message_nas_set_system_selection_preference_input_set_acquisition_order_preference@Base 1.22.0 qmi_message_nas_set_system_selection_preference_input_set_band_preference@Base 1.6.0 qmi_message_nas_set_system_selection_preference_input_set_cdma_prl_preference@Base 1.6.0 qmi_message_nas_set_system_selection_preference_input_set_change_duration@Base 1.6.0 qmi_message_nas_set_system_selection_preference_input_set_emergency_mode@Base 1.6.0 + qmi_message_nas_set_system_selection_preference_input_set_extended_lte_band_preference@Base 1.20.0 qmi_message_nas_set_system_selection_preference_input_set_gsm_wcdma_acquisition_order_preference@Base 1.6.0 qmi_message_nas_set_system_selection_preference_input_set_lte_band_preference@Base 1.6.0 qmi_message_nas_set_system_selection_preference_input_set_mnc_pds_digit_include_status@Base 1.6.0 @@ -1955,11 +2321,45 @@ qmi_message_pds_set_gps_service_state_output_get_type@Base 1.6.0 qmi_message_pds_set_gps_service_state_output_ref@Base 1.6.0 qmi_message_pds_set_gps_service_state_output_unref@Base 1.6.0 + qmi_message_qos_get_flow_status_input_get_qos_id@Base 1.22.0 + qmi_message_qos_get_flow_status_input_get_type@Base 1.22.0 + qmi_message_qos_get_flow_status_input_new@Base 1.22.0 + qmi_message_qos_get_flow_status_input_ref@Base 1.22.0 + qmi_message_qos_get_flow_status_input_set_qos_id@Base 1.22.0 + qmi_message_qos_get_flow_status_input_unref@Base 1.22.0 + qmi_message_qos_get_flow_status_output_get_result@Base 1.22.0 + qmi_message_qos_get_flow_status_output_get_type@Base 1.22.0 + qmi_message_qos_get_flow_status_output_get_value@Base 1.22.0 + qmi_message_qos_get_flow_status_output_ref@Base 1.22.0 + qmi_message_qos_get_flow_status_output_unref@Base 1.22.0 + qmi_message_qos_get_network_status_output_get_qos_supported@Base 1.22.0 + qmi_message_qos_get_network_status_output_get_result@Base 1.22.0 + qmi_message_qos_get_network_status_output_get_type@Base 1.22.0 + qmi_message_qos_get_network_status_output_ref@Base 1.22.0 + qmi_message_qos_get_network_status_output_unref@Base 1.22.0 + qmi_message_qos_reset_output_get_result@Base 1.22.0 + qmi_message_qos_reset_output_get_type@Base 1.22.0 + qmi_message_qos_reset_output_ref@Base 1.22.0 + qmi_message_qos_reset_output_unref@Base 1.22.0 + qmi_message_qos_swi_read_data_stats_input_get_apn_id@Base 1.22.0 + qmi_message_qos_swi_read_data_stats_input_get_type@Base 1.22.0 + qmi_message_qos_swi_read_data_stats_input_new@Base 1.22.0 + qmi_message_qos_swi_read_data_stats_input_ref@Base 1.22.0 + qmi_message_qos_swi_read_data_stats_input_set_apn_id@Base 1.22.0 + qmi_message_qos_swi_read_data_stats_input_unref@Base 1.22.0 + qmi_message_qos_swi_read_data_stats_output_get_apn@Base 1.22.0 + qmi_message_qos_swi_read_data_stats_output_get_flow@Base 1.22.0 + qmi_message_qos_swi_read_data_stats_output_get_result@Base 1.22.0 + qmi_message_qos_swi_read_data_stats_output_get_type@Base 1.22.0 + qmi_message_qos_swi_read_data_stats_output_ref@Base 1.22.0 + qmi_message_qos_swi_read_data_stats_output_unref@Base 1.22.0 qmi_message_ref@Base 1.6.0 qmi_message_response_new@Base 1.8.0 qmi_message_set_transaction_id@Base 1.8.0 qmi_message_tlv_read_fixed_size_string@Base 1.12.0 + qmi_message_tlv_read_gdouble@Base 1.22.0 qmi_message_tlv_read_gfloat@Base 1.12.0 + qmi_message_tlv_read_gfloat_endian@Base 1.22.0 qmi_message_tlv_read_gint16@Base 1.12.0 qmi_message_tlv_read_gint32@Base 1.12.0 qmi_message_tlv_read_gint64@Base 1.12.0 @@ -1986,12 +2386,14 @@ qmi_message_tlv_write_string@Base 1.12.0 qmi_message_uim_change_pin_input_get_info@Base 1.14.0 qmi_message_uim_change_pin_input_get_response_in_indication_token@Base 1.14.0 + qmi_message_uim_change_pin_input_get_session@Base 1.22.0 qmi_message_uim_change_pin_input_get_session_information@Base 1.14.0 qmi_message_uim_change_pin_input_get_type@Base 1.14.0 qmi_message_uim_change_pin_input_new@Base 1.14.0 qmi_message_uim_change_pin_input_ref@Base 1.14.0 qmi_message_uim_change_pin_input_set_info@Base 1.14.0 qmi_message_uim_change_pin_input_set_response_in_indication_token@Base 1.14.0 + qmi_message_uim_change_pin_input_set_session@Base 1.22.0 qmi_message_uim_change_pin_input_set_session_information@Base 1.14.0 qmi_message_uim_change_pin_input_unref@Base 1.14.0 qmi_message_uim_change_pin_output_get_card_result@Base 1.14.0 @@ -2008,12 +2410,14 @@ qmi_message_uim_get_card_status_output_unref@Base 1.10.0 qmi_message_uim_get_file_attributes_input_get_file@Base 1.6.0 qmi_message_uim_get_file_attributes_input_get_response_in_indication_token@Base 1.6.0 + qmi_message_uim_get_file_attributes_input_get_session@Base 1.22.0 qmi_message_uim_get_file_attributes_input_get_session_information@Base 1.6.0 qmi_message_uim_get_file_attributes_input_get_type@Base 1.6.0 qmi_message_uim_get_file_attributes_input_new@Base 1.6.0 qmi_message_uim_get_file_attributes_input_ref@Base 1.6.0 qmi_message_uim_get_file_attributes_input_set_file@Base 1.6.0 qmi_message_uim_get_file_attributes_input_set_response_in_indication_token@Base 1.6.0 + qmi_message_uim_get_file_attributes_input_set_session@Base 1.22.0 qmi_message_uim_get_file_attributes_input_set_session_information@Base 1.6.0 qmi_message_uim_get_file_attributes_input_unref@Base 1.6.0 qmi_message_uim_get_file_attributes_output_get_card_result@Base 1.6.0 @@ -2052,6 +2456,7 @@ qmi_message_uim_read_record_input_get_last_record@Base 1.6.0 qmi_message_uim_read_record_input_get_record@Base 1.6.0 qmi_message_uim_read_record_input_get_response_in_indication_token@Base 1.6.0 + qmi_message_uim_read_record_input_get_session@Base 1.22.0 qmi_message_uim_read_record_input_get_session_information@Base 1.6.0 qmi_message_uim_read_record_input_get_type@Base 1.6.0 qmi_message_uim_read_record_input_new@Base 1.6.0 @@ -2060,6 +2465,7 @@ qmi_message_uim_read_record_input_set_last_record@Base 1.6.0 qmi_message_uim_read_record_input_set_record@Base 1.6.0 qmi_message_uim_read_record_input_set_response_in_indication_token@Base 1.6.0 + qmi_message_uim_read_record_input_set_session@Base 1.22.0 qmi_message_uim_read_record_input_set_session_information@Base 1.6.0 qmi_message_uim_read_record_input_unref@Base 1.6.0 qmi_message_uim_read_record_output_get_additional_read_result@Base 1.6.0 @@ -2074,6 +2480,7 @@ qmi_message_uim_read_transparent_input_get_file@Base 1.6.0 qmi_message_uim_read_transparent_input_get_read_information@Base 1.6.0 qmi_message_uim_read_transparent_input_get_response_in_indication_token@Base 1.6.0 + qmi_message_uim_read_transparent_input_get_session@Base 1.22.0 qmi_message_uim_read_transparent_input_get_session_information@Base 1.6.0 qmi_message_uim_read_transparent_input_get_type@Base 1.6.0 qmi_message_uim_read_transparent_input_new@Base 1.6.0 @@ -2082,6 +2489,7 @@ qmi_message_uim_read_transparent_input_set_file@Base 1.6.0 qmi_message_uim_read_transparent_input_set_read_information@Base 1.6.0 qmi_message_uim_read_transparent_input_set_response_in_indication_token@Base 1.6.0 + qmi_message_uim_read_transparent_input_set_session@Base 1.22.0 qmi_message_uim_read_transparent_input_set_session_information@Base 1.6.0 qmi_message_uim_read_transparent_input_unref@Base 1.6.0 qmi_message_uim_read_transparent_output_get_card_result@Base 1.6.0 @@ -2098,12 +2506,14 @@ qmi_message_uim_reset_output_unref@Base 1.6.0 qmi_message_uim_set_pin_protection_input_get_info@Base 1.14.0 qmi_message_uim_set_pin_protection_input_get_response_in_indication_token@Base 1.14.0 + qmi_message_uim_set_pin_protection_input_get_session@Base 1.22.0 qmi_message_uim_set_pin_protection_input_get_session_information@Base 1.14.0 qmi_message_uim_set_pin_protection_input_get_type@Base 1.14.0 qmi_message_uim_set_pin_protection_input_new@Base 1.14.0 qmi_message_uim_set_pin_protection_input_ref@Base 1.14.0 qmi_message_uim_set_pin_protection_input_set_info@Base 1.14.0 qmi_message_uim_set_pin_protection_input_set_response_in_indication_token@Base 1.14.0 + qmi_message_uim_set_pin_protection_input_set_session@Base 1.22.0 qmi_message_uim_set_pin_protection_input_set_session_information@Base 1.14.0 qmi_message_uim_set_pin_protection_input_unref@Base 1.14.0 qmi_message_uim_set_pin_protection_output_get_response_in_indication_token@Base 1.14.0 @@ -2114,12 +2524,14 @@ qmi_message_uim_set_pin_protection_output_unref@Base 1.14.0 qmi_message_uim_unblock_pin_input_get_info@Base 1.14.0 qmi_message_uim_unblock_pin_input_get_response_in_indication_token@Base 1.14.0 + qmi_message_uim_unblock_pin_input_get_session@Base 1.22.0 qmi_message_uim_unblock_pin_input_get_session_information@Base 1.14.0 qmi_message_uim_unblock_pin_input_get_type@Base 1.14.0 qmi_message_uim_unblock_pin_input_new@Base 1.14.0 qmi_message_uim_unblock_pin_input_ref@Base 1.14.0 qmi_message_uim_unblock_pin_input_set_info@Base 1.14.0 qmi_message_uim_unblock_pin_input_set_response_in_indication_token@Base 1.14.0 + qmi_message_uim_unblock_pin_input_set_session@Base 1.22.0 qmi_message_uim_unblock_pin_input_set_session_information@Base 1.14.0 qmi_message_uim_unblock_pin_input_unref@Base 1.14.0 qmi_message_uim_unblock_pin_output_get_card_result@Base 1.14.0 @@ -2131,12 +2543,14 @@ qmi_message_uim_unblock_pin_output_unref@Base 1.14.0 qmi_message_uim_verify_pin_input_get_info@Base 1.14.0 qmi_message_uim_verify_pin_input_get_response_in_indication_token@Base 1.14.0 + qmi_message_uim_verify_pin_input_get_session@Base 1.22.0 qmi_message_uim_verify_pin_input_get_session_information@Base 1.14.0 qmi_message_uim_verify_pin_input_get_type@Base 1.14.0 qmi_message_uim_verify_pin_input_new@Base 1.14.0 qmi_message_uim_verify_pin_input_ref@Base 1.14.0 qmi_message_uim_verify_pin_input_set_info@Base 1.14.0 qmi_message_uim_verify_pin_input_set_response_in_indication_token@Base 1.14.0 + qmi_message_uim_verify_pin_input_set_session@Base 1.22.0 qmi_message_uim_verify_pin_input_set_session_information@Base 1.14.0 qmi_message_uim_verify_pin_input_unref@Base 1.14.0 qmi_message_uim_verify_pin_output_get_card_result@Base 1.14.0 @@ -2281,6 +2695,7 @@ qmi_message_wds_bind_mux_data_port_output_get_type@Base 1.18.0 qmi_message_wds_bind_mux_data_port_output_ref@Base 1.18.0 qmi_message_wds_bind_mux_data_port_output_unref@Base 1.18.0 + qmi_message_wds_create_profile_input_get_apn_disabled_flag@Base 1.22.0 qmi_message_wds_create_profile_input_get_apn_name@Base 1.18.0 qmi_message_wds_create_profile_input_get_authentication@Base 1.18.0 qmi_message_wds_create_profile_input_get_gprs_minimum_qos@Base 1.18.0 @@ -2303,6 +2718,7 @@ qmi_message_wds_create_profile_input_get_primary_ipv4_dns_address@Base 1.18.0 qmi_message_wds_create_profile_input_get_profile_name@Base 1.18.0 qmi_message_wds_create_profile_input_get_profile_type@Base 1.18.0 + qmi_message_wds_create_profile_input_get_roaming_disallowed_flag@Base 1.22.0 qmi_message_wds_create_profile_input_get_secondary_ipv4_dns_address@Base 1.18.0 qmi_message_wds_create_profile_input_get_type@Base 1.18.0 qmi_message_wds_create_profile_input_get_umts_minimum_qos@Base 1.18.0 @@ -2312,6 +2728,7 @@ qmi_message_wds_create_profile_input_get_username@Base 1.18.0 qmi_message_wds_create_profile_input_new@Base 1.18.0 qmi_message_wds_create_profile_input_ref@Base 1.18.0 + qmi_message_wds_create_profile_input_set_apn_disabled_flag@Base 1.22.0 qmi_message_wds_create_profile_input_set_apn_name@Base 1.18.0 qmi_message_wds_create_profile_input_set_authentication@Base 1.18.0 qmi_message_wds_create_profile_input_set_gprs_minimum_qos@Base 1.18.0 @@ -2334,6 +2751,7 @@ qmi_message_wds_create_profile_input_set_primary_ipv4_dns_address@Base 1.18.0 qmi_message_wds_create_profile_input_set_profile_name@Base 1.18.0 qmi_message_wds_create_profile_input_set_profile_type@Base 1.18.0 + qmi_message_wds_create_profile_input_set_roaming_disallowed_flag@Base 1.22.0 qmi_message_wds_create_profile_input_set_secondary_ipv4_dns_address@Base 1.18.0 qmi_message_wds_create_profile_input_set_umts_minimum_qos@Base 1.18.0 qmi_message_wds_create_profile_input_set_umts_minimum_qos_with_signaling_indication_flag@Base 1.18.0 @@ -2364,6 +2782,11 @@ qmi_message_wds_get_autoconnect_settings_output_get_type@Base 1.14.0 qmi_message_wds_get_autoconnect_settings_output_ref@Base 1.14.0 qmi_message_wds_get_autoconnect_settings_output_unref@Base 1.14.0 + qmi_message_wds_get_channel_rates_output_get_channel_rates@Base 1.20.0 + qmi_message_wds_get_channel_rates_output_get_result@Base 1.20.0 + qmi_message_wds_get_channel_rates_output_get_type@Base 1.20.0 + qmi_message_wds_get_channel_rates_output_ref@Base 1.20.0 + qmi_message_wds_get_channel_rates_output_unref@Base 1.20.0 qmi_message_wds_get_current_data_bearer_technology_output_get_current@Base 1.6.0 qmi_message_wds_get_current_data_bearer_technology_output_get_last@Base 1.6.0 qmi_message_wds_get_current_data_bearer_technology_output_get_result@Base 1.6.0 @@ -2411,6 +2834,18 @@ qmi_message_wds_get_data_bearer_technology_output_get_type@Base 1.6.0 qmi_message_wds_get_data_bearer_technology_output_ref@Base 1.6.0 qmi_message_wds_get_data_bearer_technology_output_unref@Base 1.6.0 + qmi_message_wds_get_default_profile_num_input_get_profile_type@Base 1.22.0 + qmi_message_wds_get_default_profile_num_input_get_type@Base 1.22.0 + qmi_message_wds_get_default_profile_num_input_new@Base 1.22.0 + qmi_message_wds_get_default_profile_num_input_ref@Base 1.22.0 + qmi_message_wds_get_default_profile_num_input_set_profile_type@Base 1.22.0 + qmi_message_wds_get_default_profile_num_input_unref@Base 1.22.0 + qmi_message_wds_get_default_profile_num_output_get_default_profile_number@Base 1.22.0 + qmi_message_wds_get_default_profile_num_output_get_extended_error_code@Base 1.22.0 + qmi_message_wds_get_default_profile_num_output_get_result@Base 1.22.0 + qmi_message_wds_get_default_profile_num_output_get_type@Base 1.22.0 + qmi_message_wds_get_default_profile_num_output_ref@Base 1.22.0 + qmi_message_wds_get_default_profile_num_output_unref@Base 1.22.0 qmi_message_wds_get_default_settings_input_get_profile_type@Base 1.8.0 qmi_message_wds_get_default_settings_input_get_type@Base 1.8.0 qmi_message_wds_get_default_settings_input_new@Base 1.8.0 @@ -2510,6 +2945,7 @@ qmi_message_wds_get_profile_settings_input_ref@Base 1.8.0 qmi_message_wds_get_profile_settings_input_set_profile_id@Base 1.8.0 qmi_message_wds_get_profile_settings_input_unref@Base 1.8.0 + qmi_message_wds_get_profile_settings_output_get_apn_disabled_flag@Base 1.22.0 qmi_message_wds_get_profile_settings_output_get_apn_name@Base 1.8.0 qmi_message_wds_get_profile_settings_output_get_authentication@Base 1.8.0 qmi_message_wds_get_profile_settings_output_get_extended_error_code@Base 1.8.0 @@ -2533,6 +2969,7 @@ qmi_message_wds_get_profile_settings_output_get_primary_ipv4_dns_address@Base 1.8.0 qmi_message_wds_get_profile_settings_output_get_profile_name@Base 1.8.0 qmi_message_wds_get_profile_settings_output_get_result@Base 1.8.0 + qmi_message_wds_get_profile_settings_output_get_roaming_disallowed_flag@Base 1.22.0 qmi_message_wds_get_profile_settings_output_get_secondary_ipv4_dns_address@Base 1.8.0 qmi_message_wds_get_profile_settings_output_get_type@Base 1.8.0 qmi_message_wds_get_profile_settings_output_get_umts_minimum_qos@Base 1.18.0 @@ -2555,6 +2992,7 @@ qmi_message_wds_go_dormant_output_get_type@Base 1.18.0 qmi_message_wds_go_dormant_output_ref@Base 1.18.0 qmi_message_wds_go_dormant_output_unref@Base 1.18.0 + qmi_message_wds_modify_profile_input_get_apn_disabled_flag@Base 1.22.0 qmi_message_wds_modify_profile_input_get_apn_name@Base 1.18.0 qmi_message_wds_modify_profile_input_get_authentication@Base 1.18.0 qmi_message_wds_modify_profile_input_get_gprs_minimum_qos@Base 1.18.0 @@ -2577,6 +3015,7 @@ qmi_message_wds_modify_profile_input_get_primary_ipv4_dns_address@Base 1.18.0 qmi_message_wds_modify_profile_input_get_profile_identifier@Base 1.18.0 qmi_message_wds_modify_profile_input_get_profile_name@Base 1.18.0 + qmi_message_wds_modify_profile_input_get_roaming_disallowed_flag@Base 1.22.0 qmi_message_wds_modify_profile_input_get_secondary_ipv4_dns_address@Base 1.18.0 qmi_message_wds_modify_profile_input_get_type@Base 1.18.0 qmi_message_wds_modify_profile_input_get_umts_minimum_qos@Base 1.18.0 @@ -2586,6 +3025,7 @@ qmi_message_wds_modify_profile_input_get_username@Base 1.18.0 qmi_message_wds_modify_profile_input_new@Base 1.18.0 qmi_message_wds_modify_profile_input_ref@Base 1.18.0 + qmi_message_wds_modify_profile_input_set_apn_disabled_flag@Base 1.22.0 qmi_message_wds_modify_profile_input_set_apn_name@Base 1.18.0 qmi_message_wds_modify_profile_input_set_authentication@Base 1.18.0 qmi_message_wds_modify_profile_input_set_gprs_minimum_qos@Base 1.18.0 @@ -2608,6 +3048,7 @@ qmi_message_wds_modify_profile_input_set_primary_ipv4_dns_address@Base 1.18.0 qmi_message_wds_modify_profile_input_set_profile_identifier@Base 1.18.0 qmi_message_wds_modify_profile_input_set_profile_name@Base 1.18.0 + qmi_message_wds_modify_profile_input_set_roaming_disallowed_flag@Base 1.22.0 qmi_message_wds_modify_profile_input_set_secondary_ipv4_dns_address@Base 1.18.0 qmi_message_wds_modify_profile_input_set_umts_minimum_qos@Base 1.18.0 qmi_message_wds_modify_profile_input_set_umts_minimum_qos_with_signaling_indication_flag@Base 1.18.0 @@ -2636,6 +3077,17 @@ qmi_message_wds_set_autoconnect_settings_output_get_type@Base 1.14.0 qmi_message_wds_set_autoconnect_settings_output_ref@Base 1.14.0 qmi_message_wds_set_autoconnect_settings_output_unref@Base 1.14.0 + qmi_message_wds_set_default_profile_num_input_get_profile_identifier@Base 1.22.0 + qmi_message_wds_set_default_profile_num_input_get_type@Base 1.22.0 + qmi_message_wds_set_default_profile_num_input_new@Base 1.22.0 + qmi_message_wds_set_default_profile_num_input_ref@Base 1.22.0 + qmi_message_wds_set_default_profile_num_input_set_profile_identifier@Base 1.22.0 + qmi_message_wds_set_default_profile_num_input_unref@Base 1.22.0 + qmi_message_wds_set_default_profile_num_output_get_extended_error_code@Base 1.22.0 + qmi_message_wds_set_default_profile_num_output_get_result@Base 1.22.0 + qmi_message_wds_set_default_profile_num_output_get_type@Base 1.22.0 + qmi_message_wds_set_default_profile_num_output_ref@Base 1.22.0 + qmi_message_wds_set_default_profile_num_output_unref@Base 1.22.0 qmi_message_wds_set_event_report_input_get_channel_rate@Base 1.18.0 qmi_message_wds_set_event_report_input_get_current_data_bearer_technology@Base 1.18.0 qmi_message_wds_set_event_report_input_get_data_bearer_technology@Base 1.18.0 @@ -2737,6 +3189,41 @@ qmi_message_wds_stop_network_output_get_type@Base 1.6.0 qmi_message_wds_stop_network_output_ref@Base 1.6.0 qmi_message_wds_stop_network_output_unref@Base 1.6.0 + qmi_message_wds_swi_create_profile_indexed_input_get_apn_disabled_flag@Base 1.22.0 + qmi_message_wds_swi_create_profile_indexed_input_get_apn_name@Base 1.22.0 + qmi_message_wds_swi_create_profile_indexed_input_get_authentication@Base 1.22.0 + qmi_message_wds_swi_create_profile_indexed_input_get_ipv4_address_preference@Base 1.22.0 + qmi_message_wds_swi_create_profile_indexed_input_get_password@Base 1.22.0 + qmi_message_wds_swi_create_profile_indexed_input_get_pdp_context_number@Base 1.22.0 + qmi_message_wds_swi_create_profile_indexed_input_get_pdp_type@Base 1.22.0 + qmi_message_wds_swi_create_profile_indexed_input_get_primary_ipv4_dns_address@Base 1.22.0 + qmi_message_wds_swi_create_profile_indexed_input_get_profile_identifier@Base 1.22.0 + qmi_message_wds_swi_create_profile_indexed_input_get_profile_name@Base 1.22.0 + qmi_message_wds_swi_create_profile_indexed_input_get_roaming_disallowed_flag@Base 1.22.0 + qmi_message_wds_swi_create_profile_indexed_input_get_secondary_ipv4_dns_address@Base 1.22.0 + qmi_message_wds_swi_create_profile_indexed_input_get_type@Base 1.22.0 + qmi_message_wds_swi_create_profile_indexed_input_get_username@Base 1.22.0 + qmi_message_wds_swi_create_profile_indexed_input_new@Base 1.22.0 + qmi_message_wds_swi_create_profile_indexed_input_ref@Base 1.22.0 + qmi_message_wds_swi_create_profile_indexed_input_set_apn_disabled_flag@Base 1.22.0 + qmi_message_wds_swi_create_profile_indexed_input_set_apn_name@Base 1.22.0 + qmi_message_wds_swi_create_profile_indexed_input_set_authentication@Base 1.22.0 + qmi_message_wds_swi_create_profile_indexed_input_set_ipv4_address_preference@Base 1.22.0 + qmi_message_wds_swi_create_profile_indexed_input_set_password@Base 1.22.0 + qmi_message_wds_swi_create_profile_indexed_input_set_pdp_context_number@Base 1.22.0 + qmi_message_wds_swi_create_profile_indexed_input_set_pdp_type@Base 1.22.0 + qmi_message_wds_swi_create_profile_indexed_input_set_primary_ipv4_dns_address@Base 1.22.0 + qmi_message_wds_swi_create_profile_indexed_input_set_profile_identifier@Base 1.22.0 + qmi_message_wds_swi_create_profile_indexed_input_set_profile_name@Base 1.22.0 + qmi_message_wds_swi_create_profile_indexed_input_set_roaming_disallowed_flag@Base 1.22.0 + qmi_message_wds_swi_create_profile_indexed_input_set_secondary_ipv4_dns_address@Base 1.22.0 + qmi_message_wds_swi_create_profile_indexed_input_set_username@Base 1.22.0 + qmi_message_wds_swi_create_profile_indexed_input_unref@Base 1.22.0 + qmi_message_wds_swi_create_profile_indexed_output_get_profile_identifier@Base 1.22.0 + qmi_message_wds_swi_create_profile_indexed_output_get_result@Base 1.22.0 + qmi_message_wds_swi_create_profile_indexed_output_get_type@Base 1.22.0 + qmi_message_wds_swi_create_profile_indexed_output_ref@Base 1.22.0 + qmi_message_wds_swi_create_profile_indexed_output_unref@Base 1.22.0 qmi_message_wms_delete_input_get_memory_index@Base 1.6.0 qmi_message_wms_delete_input_get_memory_storage@Base 1.6.0 qmi_message_wms_delete_input_get_message_mode@Base 1.6.0 @@ -2946,6 +3433,8 @@ qmi_nas_plmn_name_spare_bits_get_type@Base 1.18.0 qmi_nas_preference_duration_get_string@Base 1.6.0 qmi_nas_preference_duration_get_type@Base 1.6.0 + qmi_nas_ps_attach_action_get_string@Base 1.20.0 + qmi_nas_ps_attach_action_get_type@Base 1.20.0 qmi_nas_radio_interface_get_string@Base 1.6.0 qmi_nas_radio_interface_get_type@Base 1.6.0 qmi_nas_radio_technology_preference_build_string_from_mask@Base 1.6.0 @@ -3010,6 +3499,10 @@ qmi_proxy_get_n_clients@Base 1.8.0 qmi_proxy_get_type@Base 1.8.0 qmi_proxy_new@Base 1.8.0 + qmi_qos_event_get_string@Base 1.22.0 + qmi_qos_event_get_type@Base 1.22.0 + qmi_qos_status_get_string@Base 1.22.0 + qmi_qos_status_get_type@Base 1.22.0 qmi_service_flag_build_string_from_mask@Base 1.6.0 qmi_service_flag_get_type@Base 1.6.0 qmi_service_get_string@Base 1.6.0 @@ -3139,6 +3632,8 @@ qmi_wds_pdp_header_compression_type_get_type@Base 1.18.0 qmi_wds_pdp_type_get_string@Base 1.6.0 qmi_wds_pdp_type_get_type@Base 1.6.0 + qmi_wds_profile_family_get_string@Base 1.22.0 + qmi_wds_profile_family_get_type@Base 1.22.0 qmi_wds_profile_type_get_string@Base 1.6.0 qmi_wds_profile_type_get_type@Base 1.6.0 qmi_wds_qos_class_identifier_get_string@Base 1.18.0 diff -Nru libqmi-1.18.0/debian/patches/0001-utils-drop-useless-g_file_test-call.patch libqmi-1.22.0/debian/patches/0001-utils-drop-useless-g_file_test-call.patch --- libqmi-1.18.0/debian/patches/0001-utils-drop-useless-g_file_test-call.patch 2017-10-21 00:49:31.000000000 +0200 +++ libqmi-1.22.0/debian/patches/0001-utils-drop-useless-g_file_test-call.patch 1970-01-01 01:00:00.000000000 +0100 @@ -1,29 +0,0 @@ -From: Mikhail Efremov -Date: Wed, 12 Apr 2017 19:32:34 +0300 -Subject: utils: drop useless g_file_test() call - -canonicalize_file_name() returns NULL if file doesn't exist, -so no need to check file existence with g_file_test(). - -(cherry picked from commit 07da0340043b3b4d3ffc005e0a10b4776157a0fe) ---- - src/libqmi-glib/qmi-utils.c | 6 ++++-- - 1 file changed, 4 insertions(+), 2 deletions(-) - -diff --git a/src/libqmi-glib/qmi-utils.c b/src/libqmi-glib/qmi-utils.c -index 29e5f22..5d399a6 100644 ---- a/src/libqmi-glib/qmi-utils.c -+++ b/src/libqmi-glib/qmi-utils.c -@@ -743,8 +743,10 @@ __qmi_utils_get_driver (const gchar *cdc_wdm_path) - path = canonicalize_file_name (tmp); - g_free (tmp); - -- if (g_file_test (path, G_FILE_TEST_EXISTS)) -- driver = g_path_get_basename (path); -+ if (!path) -+ continue; -+ -+ driver = g_path_get_basename (path); - g_free (path); - } - diff -Nru libqmi-1.18.0/debian/patches/git_reset-offset-before-2nd-call.patch libqmi-1.22.0/debian/patches/git_reset-offset-before-2nd-call.patch --- libqmi-1.18.0/debian/patches/git_reset-offset-before-2nd-call.patch 1970-01-01 01:00:00.000000000 +0100 +++ libqmi-1.22.0/debian/patches/git_reset-offset-before-2nd-call.patch 2019-03-12 14:19:22.000000000 +0100 @@ -0,0 +1,25 @@ +From 78986d4df7865bb889e18a129a5f0f01ed7f3806 Mon Sep 17 00:00:00 2001 +From: Valentin Blot +Date: Thu, 28 Feb 2019 13:08:50 +0000 +Subject: [PATCH] libqmi-glib,proxy: reset offset before 2nd call to + qmi_message_tlv_read_init + +--- + src/libqmi-glib/qmi-proxy.c | 1 + + 1 file changed, 1 insertion(+) + +diff --git a/src/libqmi-glib/qmi-proxy.c b/src/libqmi-glib/qmi-proxy.c +index 00a1847..63e2ec1 100644 +--- a/src/libqmi-glib/qmi-proxy.c ++++ b/src/libqmi-glib/qmi-proxy.c +@@ -489,6 +489,7 @@ track_cid (Client *client, + if ((error_status != 0x00) || (error_code != QMI_PROTOCOL_ERROR_NONE)) + return; + ++ offset = 0; + if (((init_offset = qmi_message_tlv_read_init (message, QMI_MESSAGE_OUTPUT_TLV_ALLOCATION_INFO, NULL, &error)) == 0) || + !qmi_message_tlv_read_guint8 (message, init_offset, &offset, &service_tmp, &error) || + !qmi_message_tlv_read_guint8 (message, init_offset, &offset, &(info.cid), &error)) { +-- +2.18.1 + diff -Nru libqmi-1.18.0/debian/patches/series libqmi-1.22.0/debian/patches/series --- libqmi-1.18.0/debian/patches/series 2017-10-21 00:49:31.000000000 +0200 +++ libqmi-1.22.0/debian/patches/series 2019-03-12 14:19:28.000000000 +0100 @@ -1 +1 @@ -0001-utils-drop-useless-g_file_test-call.patch +git_reset-offset-before-2nd-call.patch diff -Nru libqmi-1.18.0/debian/rules libqmi-1.22.0/debian/rules --- libqmi-1.18.0/debian/rules 2018-04-24 13:03:26.000000000 +0200 +++ libqmi-1.22.0/debian/rules 2019-02-08 00:22:46.000000000 +0100 @@ -11,7 +11,6 @@ --enable-firmware-update \ --enable-gudev \ --enable-mbim-qmux \ - --enable-more-warnings \ --libexecdir=/usr/lib/libqmi override_dh_install: diff -Nru libqmi-1.18.0/depcomp libqmi-1.22.0/depcomp --- libqmi-1.18.0/depcomp 2017-03-22 12:20:26.000000000 +0100 +++ libqmi-1.22.0/depcomp 2019-01-08 15:17:16.000000000 +0100 @@ -1,9 +1,9 @@ #! /bin/sh # depcomp - compile a program generating dependencies as side-effects -scriptversion=2013-05-30.07; # UTC +scriptversion=2018-03-07.03; # UTC -# Copyright (C) 1999-2014 Free Software Foundation, Inc. +# Copyright (C) 1999-2018 Free Software Foundation, Inc. # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by @@ -16,7 +16,7 @@ # GNU General Public License for more details. # You should have received a copy of the GNU General Public License -# along with this program. If not, see . +# along with this program. If not, see . # As a special exception to the GNU General Public License, if you # distribute this file as part of a program that contains a @@ -783,9 +783,9 @@ # Local Variables: # mode: shell-script # sh-indentation: 2 -# eval: (add-hook 'write-file-hooks 'time-stamp) +# eval: (add-hook 'before-save-hook 'time-stamp) # time-stamp-start: "scriptversion=" # time-stamp-format: "%:y-%02m-%02d.%02H" -# time-stamp-time-zone: "UTC" +# time-stamp-time-zone: "UTC0" # time-stamp-end: "; # UTC" # End: diff -Nru libqmi-1.18.0/docs/Makefile.in libqmi-1.22.0/docs/Makefile.in --- libqmi-1.18.0/docs/Makefile.in 2017-03-22 12:20:25.000000000 +0100 +++ libqmi-1.22.0/docs/Makefile.in 2019-01-08 15:17:16.000000000 +0100 @@ -1,7 +1,7 @@ -# Makefile.in generated by automake 1.15 from Makefile.am. +# Makefile.in generated by automake 1.16.1 from Makefile.am. # @configure_input@ -# Copyright (C) 1994-2014 Free Software Foundation, Inc. +# Copyright (C) 1994-2018 Free Software Foundation, Inc. # This Makefile.in is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, @@ -135,7 +135,7 @@ $(RECURSIVE_CLEAN_TARGETS) \ $(am__extra_recursive_targets) AM_RECURSIVE_TARGETS = $(am__recursive_targets:-recursive=) TAGS CTAGS \ - distdir + distdir distdir-am am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP) # Read a list of newline-separated strings from the standard input, # and print each of them once, without duplicates. Input order is @@ -259,6 +259,11 @@ PKG_CONFIG = @PKG_CONFIG@ PKG_CONFIG_LIBDIR = @PKG_CONFIG_LIBDIR@ PKG_CONFIG_PATH = @PKG_CONFIG_PATH@ +PYTHON = @PYTHON@ +PYTHON_EXEC_PREFIX = @PYTHON_EXEC_PREFIX@ +PYTHON_PLATFORM = @PYTHON_PLATFORM@ +PYTHON_PREFIX = @PYTHON_PREFIX@ +PYTHON_VERSION = @PYTHON_VERSION@ QMI_GLIB_LT_AGE = @QMI_GLIB_LT_AGE@ QMI_GLIB_LT_CURRENT = @QMI_GLIB_LT_CURRENT@ QMI_GLIB_LT_REVISION = @QMI_GLIB_LT_REVISION@ @@ -316,9 +321,13 @@ mkdir_p = @mkdir_p@ oldincludedir = @oldincludedir@ pdfdir = @pdfdir@ +pkgpyexecdir = @pkgpyexecdir@ +pkgpythondir = @pkgpythondir@ prefix = @prefix@ program_transform_name = @program_transform_name@ psdir = @psdir@ +pyexecdir = @pyexecdir@ +pythondir = @pythondir@ sbindir = @sbindir@ sharedstatedir = @sharedstatedir@ srcdir = @srcdir@ @@ -348,8 +357,8 @@ *config.status*) \ cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ *) \ - echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ - cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ + echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles)'; \ + cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles);; \ esac; $(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) @@ -466,7 +475,10 @@ distclean-tags: -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags -distdir: $(DISTFILES) +distdir: $(BUILT_SOURCES) + $(MAKE) $(AM_MAKEFLAGS) distdir-am + +distdir-am: $(DISTFILES) @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ list='$(DISTFILES)'; \ diff -Nru libqmi-1.18.0/docs/man/Makefile.in libqmi-1.22.0/docs/man/Makefile.in --- libqmi-1.18.0/docs/man/Makefile.in 2017-03-22 12:20:25.000000000 +0100 +++ libqmi-1.22.0/docs/man/Makefile.in 2019-01-08 15:17:16.000000000 +0100 @@ -1,7 +1,7 @@ -# Makefile.in generated by automake 1.15 from Makefile.am. +# Makefile.in generated by automake 1.16.1 from Makefile.am. # @configure_input@ -# Copyright (C) 1994-2014 Free Software Foundation, Inc. +# Copyright (C) 1994-2018 Free Software Foundation, Inc. # This Makefile.in is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, @@ -230,6 +230,11 @@ PKG_CONFIG = @PKG_CONFIG@ PKG_CONFIG_LIBDIR = @PKG_CONFIG_LIBDIR@ PKG_CONFIG_PATH = @PKG_CONFIG_PATH@ +PYTHON = @PYTHON@ +PYTHON_EXEC_PREFIX = @PYTHON_EXEC_PREFIX@ +PYTHON_PLATFORM = @PYTHON_PLATFORM@ +PYTHON_PREFIX = @PYTHON_PREFIX@ +PYTHON_VERSION = @PYTHON_VERSION@ QMI_GLIB_LT_AGE = @QMI_GLIB_LT_AGE@ QMI_GLIB_LT_CURRENT = @QMI_GLIB_LT_CURRENT@ QMI_GLIB_LT_REVISION = @QMI_GLIB_LT_REVISION@ @@ -287,9 +292,13 @@ mkdir_p = @mkdir_p@ oldincludedir = @oldincludedir@ pdfdir = @pdfdir@ +pkgpyexecdir = @pkgpyexecdir@ +pkgpythondir = @pkgpythondir@ prefix = @prefix@ program_transform_name = @program_transform_name@ psdir = @psdir@ +pyexecdir = @pyexecdir@ +pythondir = @pythondir@ sbindir = @sbindir@ sharedstatedir = @sharedstatedir@ srcdir = @srcdir@ @@ -334,8 +343,8 @@ *config.status*) \ cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ *) \ - echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ - cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ + echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles)'; \ + cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles);; \ esac; $(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) @@ -402,7 +411,10 @@ cscope cscopelist: -distdir: $(DISTFILES) +distdir: $(BUILT_SOURCES) + $(MAKE) $(AM_MAKEFLAGS) distdir-am + +distdir-am: $(DISTFILES) @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ list='$(DISTFILES)'; \ diff -Nru libqmi-1.18.0/docs/man/qmicli.1 libqmi-1.22.0/docs/man/qmicli.1 --- libqmi-1.18.0/docs/man/qmicli.1 2017-03-22 12:23:51.000000000 +0100 +++ libqmi-1.22.0/docs/man/qmicli.1 2019-01-08 15:18:56.000000000 +0100 @@ -1,11 +1,11 @@ -.\" DO NOT MODIFY THIS FILE! It was generated by help2man 1.47.3. -.TH QMICLI "1" "March 2017" "qmicli " "User Commands" +.\" DO NOT MODIFY THIS FILE! It was generated by help2man 1.47.8. +.TH QMICLI "1" "January 2019" "qmicli " "User Commands" .SH NAME qmicli \- Control QMI devices .SH DESCRIPTION .SS "Usage:" .IP -lt\-qmicli [OPTION...] \- Control QMI devices +lt\-qmicli [OPTION?] \- Control QMI devices .SS "Help Options:" .TP \fB\-h\fR, \fB\-\-help\fR @@ -40,6 +40,12 @@ .TP \fB\-\-help\-voice\fR Show Voice Service options +.TP +\fB\-\-help\-loc\fR +Show location options +.TP +\fB\-\-help\-qos\fR +Show Quality of Service options .PP DMS options .TP @@ -190,6 +196,12 @@ \fB\-\-dms\-swi\-get\-current\-firmware\fR Get Current Firmware (Sierra Wireless specific) .TP +\fB\-\-dms\-swi\-get\-usb\-composition\fR +Get current and supported USB compositions (Sierra Wireless specific) +.TP +\fB\-\-dms\-swi\-set\-usb\-composition\fR=\fI\,[\/\fR#] +Set USB composition (Sierra Wireless specific) +.TP \fB\-\-dms\-reset\fR Reset the service state .TP @@ -287,9 +299,27 @@ \fB\-\-wds\-get\-dormancy\-status\fR Get the dormancy status of the active data connection .TP +\fB\-\-wds\-create\-profile\fR=\fI\,[\/\fR"(3gpp|3gpp2)[,key=value,...]"] +Create new profile using first available profile index (optional keys: name, apn, pdp\-type (IP|PPP|IPV6|IPV4V6), auth (NONE|PAP|CHAP|BOTH), username, password, context\-num, no\-roaming=yes, disabled=yes) +.TP +\fB\-\-wds\-swi\-create\-profile\-indexed\fR=\fI\,[\/\fR"(3gpp|3gpp2),#[,key=value,...]"] +Create new profile at specified profile index [Sierra Wireless specific] (optional keys: name, apn, pdp\-type (IP|PPP|IPV6|IPV4V6), auth (NONE|PAP|CHAP|BOTH), username, password, context\-num, no\-roaming=yes, disabled=yes) +.TP +\fB\-\-wds\-modify\-profile\fR=\fI\,[\/\fR"(3gpp|3gpp2),#,key=value,..."] +Modify existing profile (optional keys: name, apn, pdp\-type (IP|PPP|IPV6|IPV4V6), auth (NONE|PAP|CHAP|BOTH), username, password, context\-num, no\-roaming=yes, disabled=yes) +.TP +\fB\-\-wds\-delete\-profile\fR=\fI\,[\/\fR(3gpp|3gpp2),#] +Delete existing profile +.TP \fB\-\-wds\-get\-profile\-list\fR=\fI\,[3gpp\/\fR|3gpp2] Get profile list .TP +\fB\-\-wds\-get\-default\-profile\-num\fR=\fI\,[3gpp\/\fR|3gpp2] +Get default profile number +.TP +\fB\-\-wds\-set\-default\-profile\-num\fR=\fI\,[\/\fR(3gpp|3gpp2),#] +Set default profile number +.TP \fB\-\-wds\-get\-default\-settings\fR=\fI\,[3gpp\/\fR|3gpp2] Get default settings .TP @@ -308,6 +338,12 @@ \fB\-\-wds\-bind\-mux\-data\-port\fR=\fI\,[\/\fR"key=value,..."] Bind qmux data port to controller device (allowed keys: mux\-id, ep\-iface\-number) to be used with `\-\-client\-no\-release\-cid' .TP +\fB\-\-wds\-set\-ip\-family\fR=\fI\,[4\/\fR|6] +Set IP family +.TP +\fB\-\-wds\-get\-channel\-rates\fR +Get channel data rates +.TP \fB\-\-wds\-noop\fR Just allocate or release a WDS client. Use with `\-\-client\-no\-release\-cid' and/or `\-\-client\-cid' .PP @@ -359,6 +395,9 @@ \fB\-\-uim\-get\-file\-attributes\fR=\fI\,[0xNNNN\/\fR,0xNNNN,...] Get the attributes of a given file .TP +\fB\-\-uim\-read\-record\fR=\fI\,[\/\fR"key=value,..."] +Read a record from given file (allowed keys: record\-number, record\-length, file ([0xNNNN\-0xNNNN,...]) +.TP \fB\-\-uim\-get\-card\-status\fR Get card status .TP @@ -412,6 +451,58 @@ .TP \fB\-\-voice\-noop\fR Just allocate or release a VOICE client. Use with `\-\-client\-no\-release\-cid' and/or `\-\-client\-cid' +.PP +LOC options +.TP +\fB\-\-loc\-session\-id\fR=\fI\,[ID]\/\fR +Session ID for the LOC session +.TP +\fB\-\-loc\-start\fR +Start location gathering +.TP +\fB\-\-loc\-stop\fR +Stop location gathering +.TP +\fB\-\-loc\-get\-position\-report\fR +Get position reported by the location module +.TP +\fB\-\-loc\-get\-gnss\-sv\-info\fR +Show GNSS space vehicle info +.TP +\fB\-\-loc\-timeout\fR=\fI\,[SECS]\/\fR +Maximum time to wait for information in `\-\-loc\-get\-position\-report' and `\-\-loc\-get\-gnss\-sv\-info' (default 30s) +.TP +\fB\-\-loc\-follow\-position\-report\fR +Follow all position updates reported by the location module indefinitely +.TP +\fB\-\-loc\-follow\-gnss\-sv\-info\fR +Follow all GNSS space vehicle info updates reported by the location module indefinitely +.TP +\fB\-\-loc\-follow\-nmea\fR +Follow all NMEA trace updates reported by the location module indefinitely +.TP +\fB\-\-loc\-delete\-assistance\-data\fR +Delete positioning assistance data +.TP +\fB\-\-loc\-noop\fR +Just allocate or release a LOC client. Use with `\-\-client\-no\-release\-cid' and/or `\-\-client\-cid' +.PP +QoS options +.TP +\fB\-\-qos\-get\-flow\-status\fR=\fI\,[QoS\/\fR ID] +Get QoS flow status +.TP +\fB\-\-qos\-get\-network\-status\fR +Gets the network status +.TP +\fB\-\-qos\-swi\-read\-data\-stats\fR=\fI\,[APN\/\fR ID] +Read data stats (Sierra Wireless specific) +.TP +\fB\-\-qos\-reset\fR +Reset the service state +.TP +\fB\-\-qos\-noop\fR +Just allocate or release a QOS client. Use with `\-\-client\-no\-release\-cid' and/or `\-\-client\-cid' .SS "Application Options:" .TP \fB\-d\fR, \fB\-\-device\fR=\fI\,[PATH]\/\fR @@ -468,8 +559,8 @@ \fB\-V\fR, \fB\-\-version\fR Print version .PP -qmicli 1.18.0 -Copyright \(co 2012\-2017 Aleksander Morgado +qmicli 1.22.0 +Copyright \(co 2012\-2019 Aleksander Morgado License GPLv2+: GNU GPL version 2 or later This is free software: you are free to change and redistribute it. There is NO WARRANTY, to the extent permitted by law. diff -Nru libqmi-1.18.0/docs/man/qmi-firmware-update.1 libqmi-1.22.0/docs/man/qmi-firmware-update.1 --- libqmi-1.18.0/docs/man/qmi-firmware-update.1 2017-03-22 12:23:51.000000000 +0100 +++ libqmi-1.22.0/docs/man/qmi-firmware-update.1 2019-01-08 15:18:56.000000000 +0100 @@ -1,11 +1,11 @@ -.\" DO NOT MODIFY THIS FILE! It was generated by help2man 1.47.3. -.TH QMI-FIRMWARE-UPDATE "1" "March 2017" "qmi-firmware-update " "User Commands" +.\" DO NOT MODIFY THIS FILE! It was generated by help2man 1.47.8. +.TH QMI-FIRMWARE-UPDATE "1" "January 2019" "qmi-firmware-update " "User Commands" .SH NAME qmi-firmware-update \- Update firmware in QMI devices .SH DESCRIPTION .SS "Usage:" .IP -lt\-qmi\-firmware\-update [OPTION...] FILE1 FILE2... \- Update firmware in QMI devices +lt\-qmi\-firmware\-update [OPTION?] FILE1 FILE2... \- Update firmware in QMI devices .PP Generic device selection options .TP @@ -108,11 +108,11 @@ .IP libqmi\-devel@lists.freedesktop.org .PP -qmi\-firmware\-update 1.18.0 +qmi\-firmware\-update 1.22.0 .IP -Copyright (C) 2016\-2017 Bj?rn Mork -Copyright (C) 2016\-2017 Zodiac Inflight Innovations -Copyright (C) 2016\-2017 Aleksander Morgado +Copyright (C) 2016\-2019 Bj?rn Mork +Copyright (C) 2016\-2019 Aleksander Morgado +Copyright (C) 2016\-2018 Zodiac Inflight Innovations .PP License GPLv2+: GNU GPL version 2 or later This is free software: you are free to change and redistribute it. diff -Nru libqmi-1.18.0/docs/man/qmi-network.1 libqmi-1.22.0/docs/man/qmi-network.1 --- libqmi-1.18.0/docs/man/qmi-network.1 2017-03-22 12:23:51.000000000 +0100 +++ libqmi-1.22.0/docs/man/qmi-network.1 2019-01-08 15:18:56.000000000 +0100 @@ -1,5 +1,5 @@ -.\" DO NOT MODIFY THIS FILE! It was generated by help2man 1.47.3. -.TH QMI-NETWORK "1" "March 2017" "qmi-network 1.18.0" "User Commands" +.\" DO NOT MODIFY THIS FILE! It was generated by help2man 1.47.8. +.TH QMI-NETWORK "1" "January 2019" "qmi-network 1.22.0" "User Commands" .SH NAME qmi-network \- Simple network management of QMI devices .SH SYNOPSIS @@ -62,7 +62,7 @@ you still need to run a DHCP client on the associated WWAN network interface. .SH COPYRIGHT -Copyright (2013\-2017) Aleksander Morgado +Copyright \(co 2013\-2018 Aleksander Morgado License GPLv2+: GNU GPL version 2 or later .br This is free software: you are free to change and redistribute it. diff -Nru libqmi-1.18.0/docs/reference/libqmi-glib/html/annotation-glossary.html libqmi-1.22.0/docs/reference/libqmi-glib/html/annotation-glossary.html --- libqmi-1.18.0/docs/reference/libqmi-glib/html/annotation-glossary.html 2017-03-22 12:28:29.000000000 +0100 +++ libqmi-1.22.0/docs/reference/libqmi-glib/html/annotation-glossary.html 2019-01-08 15:19:01.000000000 +0100 @@ -3,11 +3,11 @@ Annotation Glossary: libqmi-glib Reference Manual - + - - + + @@ -19,7 +19,7 @@ T Home -Prev +Prev
@@ -38,6 +38,6 @@

Don't free data after the code is done.

+
Generated by GTK-Doc V1.29 \ No newline at end of file diff -Nru libqmi-1.18.0/docs/reference/libqmi-glib/html/api-index-1-0.html libqmi-1.22.0/docs/reference/libqmi-glib/html/api-index-1-0.html --- libqmi-1.18.0/docs/reference/libqmi-glib/html/api-index-1-0.html 2017-03-22 12:28:28.000000000 +0100 +++ libqmi-1.22.0/docs/reference/libqmi-glib/html/api-index-1-0.html 1970-01-01 01:00:00.000000000 +0100 @@ -1,6797 +0,0 @@ - - - - -Index of new core symbols in 1.0: libqmi-glib Reference Manual - - - - - - - - - - - - - - - - -
-

-Index of new core symbols in 1.0

-

C

-
-QMI_CID_BROADCAST, macro in QmiClient -
-
-
-QMI_CID_NONE, macro in QmiClient -
-
-
-QmiClient, struct in QmiClient -
-
-
-QmiClient:client-cid, object property in QmiClient -
-
-
-QmiClient:client-device, object property in QmiClient -
-
-
-QmiClient:client-service, object property in QmiClient -
-
-
-QmiClient:client-version-major, object property in QmiClient -
-
-
-QmiClient:client-version-minor, object property in QmiClient -
-
-
-QmiClientDms, struct in QmiClientDms -
-
-
-QmiClientDms::event-report, object signal in QmiClientDms -
-
-
-QmiClientNas, struct in QmiClientNas -
-
-
-QmiClientNas::event-report, object signal in QmiClientNas -
-
-
-QmiClientNas::network-time, object signal in QmiClientNas -
-
-
-QmiClientNas::serving-system, object signal in QmiClientNas -
-
-
-QmiClientNas::signal-info, object signal in QmiClientNas -
-
-
-QmiClientNas::system-info, object signal in QmiClientNas -
-
-
-QmiClientPds, struct in QmiClientPds -
-
-
-QmiClientPds::event-report, object signal in QmiClientPds -
-
-
-QmiClientWds, struct in QmiClientWds -
-
-
-QmiClientWms, struct in QmiClientWms -
-
-
-QmiClientWms::event-report, object signal in QmiClientWms -
-
-
-qmi_client_check_version, function in QmiClient -
-
-
-QMI_CLIENT_CID, macro in QmiClient -
-
-
-QMI_CLIENT_DEVICE, macro in QmiClient -
-
-
-qmi_client_dms_activate_automatic, function in DMS Activate Automatic -
-
-
-qmi_client_dms_activate_automatic_finish, function in DMS Activate Automatic -
-
-
-qmi_client_dms_activate_manual, function in DMS Activate Manual -
-
-
-qmi_client_dms_activate_manual_finish, function in DMS Activate Manual -
-
-
-qmi_client_dms_delete_stored_image, function in DMS Delete Stored Image -
-
-
-qmi_client_dms_delete_stored_image_finish, function in DMS Delete Stored Image -
-
-
-qmi_client_dms_get_activation_state, function in DMS Get Activation State -
-
-
-qmi_client_dms_get_activation_state_finish, function in DMS Get Activation State -
-
-
-qmi_client_dms_get_alt_net_config, function in DMS Get Alt Net Config -
-
-
-qmi_client_dms_get_alt_net_config_finish, function in DMS Get Alt Net Config -
-
-
-qmi_client_dms_get_band_capabilities, function in DMS Get Band Capabilities -
-
-
-qmi_client_dms_get_band_capabilities_finish, function in DMS Get Band Capabilities -
-
-
-qmi_client_dms_get_capabilities, function in DMS Get Capabilities -
-
-
-qmi_client_dms_get_capabilities_finish, function in DMS Get Capabilities -
-
-
-qmi_client_dms_get_factory_sku, function in DMS Get Factory SKU -
-
-
-qmi_client_dms_get_factory_sku_finish, function in DMS Get Factory SKU -
-
-
-qmi_client_dms_get_firmware_preference, function in DMS Get Firmware Preference -
-
-
-qmi_client_dms_get_firmware_preference_finish, function in DMS Get Firmware Preference -
-
-
-qmi_client_dms_get_hardware_revision, function in DMS Get Hardware Revision -
-
-
-qmi_client_dms_get_hardware_revision_finish, function in DMS Get Hardware Revision -
-
-
-qmi_client_dms_get_ids, function in DMS Get IDs -
-
-
-qmi_client_dms_get_ids_finish, function in DMS Get IDs -
-
-
-qmi_client_dms_get_manufacturer, function in DMS Get Manufacturer -
-
-
-qmi_client_dms_get_manufacturer_finish, function in DMS Get Manufacturer -
-
-
-qmi_client_dms_get_model, function in DMS Get Model -
-
-
-qmi_client_dms_get_model_finish, function in DMS Get Model -
-
-
-qmi_client_dms_get_msisdn, function in DMS Get MSISDN -
-
-
-qmi_client_dms_get_msisdn_finish, function in DMS Get MSISDN -
-
-
-qmi_client_dms_get_operating_mode, function in DMS Get Operating Mode -
-
-
-qmi_client_dms_get_operating_mode_finish, function in DMS Get Operating Mode -
-
-
-qmi_client_dms_get_power_state, function in DMS Get Power State -
-
-
-qmi_client_dms_get_power_state_finish, function in DMS Get Power State -
-
-
-qmi_client_dms_get_prl_version, function in DMS Get PRL Version -
-
-
-qmi_client_dms_get_prl_version_finish, function in DMS Get PRL Version -
-
-
-qmi_client_dms_get_revision, function in DMS Get Revision -
-
-
-qmi_client_dms_get_revision_finish, function in DMS Get Revision -
-
-
-qmi_client_dms_get_software_version, function in DMS Get Software Version -
-
-
-qmi_client_dms_get_software_version_finish, function in DMS Get Software Version -
-
-
-qmi_client_dms_get_stored_image_info, function in DMS Get Stored Image Info -
-
-
-qmi_client_dms_get_stored_image_info_finish, function in DMS Get Stored Image Info -
-
-
-qmi_client_dms_get_time, function in DMS Get Time -
-
-
-qmi_client_dms_get_time_finish, function in DMS Get Time -
-
-
-qmi_client_dms_get_user_lock_state, function in DMS Get User Lock State -
-
-
-qmi_client_dms_get_user_lock_state_finish, function in DMS Get User Lock State -
-
-
-qmi_client_dms_list_stored_images, function in DMS List Stored Images -
-
-
-qmi_client_dms_list_stored_images_finish, function in DMS List Stored Images -
-
-
-qmi_client_dms_read_eri_file, function in DMS Read ERI File -
-
-
-qmi_client_dms_read_eri_file_finish, function in DMS Read ERI File -
-
-
-qmi_client_dms_read_user_data, function in DMS Read User Data -
-
-
-qmi_client_dms_read_user_data_finish, function in DMS Read User Data -
-
-
-qmi_client_dms_reset, function in DMS Reset -
-
-
-qmi_client_dms_reset_finish, function in DMS Reset -
-
-
-qmi_client_dms_restore_factory_defaults, function in DMS Restore Factory Defaults -
-
-
-qmi_client_dms_restore_factory_defaults_finish, function in DMS Restore Factory Defaults -
-
-
-qmi_client_dms_set_alt_net_config, function in DMS Set Alt Net Config -
-
-
-qmi_client_dms_set_alt_net_config_finish, function in DMS Set Alt Net Config -
-
-
-qmi_client_dms_set_event_report, function in DMS Set Event Report -
-
-
-qmi_client_dms_set_event_report_finish, function in DMS Set Event Report -
-
-
-qmi_client_dms_set_firmware_preference, function in DMS Set Firmware Preference -
-
-
-qmi_client_dms_set_firmware_preference_finish, function in DMS Set Firmware Preference -
-
-
-qmi_client_dms_set_operating_mode, function in DMS Set Operating Mode -
-
-
-qmi_client_dms_set_operating_mode_finish, function in DMS Set Operating Mode -
-
-
-qmi_client_dms_set_service_programming_code, function in DMS Set Service Programming Code -
-
-
-qmi_client_dms_set_service_programming_code_finish, function in DMS Set Service Programming Code -
-
-
-qmi_client_dms_set_time, function in DMS Set Time -
-
-
-qmi_client_dms_set_time_finish, function in DMS Set Time -
-
-
-qmi_client_dms_set_user_lock_code, function in DMS Set User Lock Code -
-
-
-qmi_client_dms_set_user_lock_code_finish, function in DMS Set User Lock Code -
-
-
-qmi_client_dms_set_user_lock_state, function in DMS Set User Lock State -
-
-
-qmi_client_dms_set_user_lock_state_finish, function in DMS Set User Lock State -
-
-
-qmi_client_dms_uim_change_pin, function in DMS UIM Change PIN -
-
-
-qmi_client_dms_uim_change_pin_finish, function in DMS UIM Change PIN -
-
-
-qmi_client_dms_uim_get_ck_status, function in DMS UIM Get CK Status -
-
-
-qmi_client_dms_uim_get_ck_status_finish, function in DMS UIM Get CK Status -
-
-
-qmi_client_dms_uim_get_iccid, function in DMS UIM Get ICCID -
-
-
-qmi_client_dms_uim_get_iccid_finish, function in DMS UIM Get ICCID -
-
-
-qmi_client_dms_uim_get_imsi, function in DMS UIM Get IMSI -
-
-
-qmi_client_dms_uim_get_imsi_finish, function in DMS UIM Get IMSI -
-
-
-qmi_client_dms_uim_get_pin_status, function in DMS UIM Get PIN Status -
-
-
-qmi_client_dms_uim_get_pin_status_finish, function in DMS UIM Get PIN Status -
-
-
-qmi_client_dms_uim_get_state, function in DMS UIM Get State -
-
-
-qmi_client_dms_uim_get_state_finish, function in DMS UIM Get State -
-
-
-qmi_client_dms_uim_set_ck_protection, function in DMS UIM Set CK Protection -
-
-
-qmi_client_dms_uim_set_ck_protection_finish, function in DMS UIM Set CK Protection -
-
-
-qmi_client_dms_uim_set_pin_protection, function in DMS UIM Set PIN Protection -
-
-
-qmi_client_dms_uim_set_pin_protection_finish, function in DMS UIM Set PIN Protection -
-
-
-qmi_client_dms_uim_unblock_ck, function in DMS UIM Unblock CK -
-
-
-qmi_client_dms_uim_unblock_ck_finish, function in DMS UIM Unblock CK -
-
-
-qmi_client_dms_uim_unblock_pin, function in DMS UIM Unblock PIN -
-
-
-qmi_client_dms_uim_unblock_pin_finish, function in DMS UIM Unblock PIN -
-
-
-qmi_client_dms_uim_verify_pin, function in DMS UIM Verify PIN -
-
-
-qmi_client_dms_uim_verify_pin_finish, function in DMS UIM Verify PIN -
-
-
-qmi_client_dms_validate_service_programming_code, function in DMS Validate Service Programming Code -
-
-
-qmi_client_dms_validate_service_programming_code_finish, function in DMS Validate Service Programming Code -
-
-
-qmi_client_dms_write_user_data, function in DMS Write User Data -
-
-
-qmi_client_dms_write_user_data_finish, function in DMS Write User Data -
-
-
-qmi_client_get_cid, function in QmiClient -
-
-
-qmi_client_get_device, function in QmiClient -
-
-
-qmi_client_get_next_transaction_id, function in QmiClient -
-
-
-qmi_client_get_service, function in QmiClient -
-
-
-qmi_client_get_version, function in QmiClient -
-
-
-qmi_client_nas_config_signal_info, function in NAS Config Signal Info -
-
-
-qmi_client_nas_config_signal_info_finish, function in NAS Config Signal Info -
-
-
-qmi_client_nas_get_cdma_position_info, function in NAS Get CDMA Position Info -
-
-
-qmi_client_nas_get_cdma_position_info_finish, function in NAS Get CDMA Position Info -
-
-
-qmi_client_nas_get_home_network, function in NAS Get Home Network -
-
-
-qmi_client_nas_get_home_network_finish, function in NAS Get Home Network -
-
-
-qmi_client_nas_get_rf_band_information, function in NAS Get RF Band Information -
-
-
-qmi_client_nas_get_rf_band_information_finish, function in NAS Get RF Band Information -
-
-
-qmi_client_nas_get_serving_system, function in NAS Get Serving System -
-
-
-qmi_client_nas_get_serving_system_finish, function in NAS Get Serving System -
-
-
-qmi_client_nas_get_signal_info, function in NAS Get Signal Info -
-
-
-qmi_client_nas_get_signal_info_finish, function in NAS Get Signal Info -
-
-
-qmi_client_nas_get_signal_strength, function in NAS Get Signal Strength -
-
-
-qmi_client_nas_get_signal_strength_finish, function in NAS Get Signal Strength -
-
-
-qmi_client_nas_get_system_info, function in NAS Get System Info -
-
-
-qmi_client_nas_get_system_info_finish, function in NAS Get System Info -
-
-
-qmi_client_nas_get_system_selection_preference, function in NAS Get System Selection Preference -
-
-
-qmi_client_nas_get_system_selection_preference_finish, function in NAS Get System Selection Preference -
-
-
-qmi_client_nas_get_technology_preference, function in NAS Get Technology Preference -
-
-
-qmi_client_nas_get_technology_preference_finish, function in NAS Get Technology Preference -
-
-
-qmi_client_nas_initiate_network_register, function in NAS Initiate Network Register -
-
-
-qmi_client_nas_initiate_network_register_finish, function in NAS Initiate Network Register -
-
-
-qmi_client_nas_network_scan, function in NAS Network Scan -
-
-
-qmi_client_nas_network_scan_finish, function in NAS Network Scan -
-
-
-qmi_client_nas_register_indications, function in NAS Register Indications -
-
-
-qmi_client_nas_register_indications_finish, function in NAS Register Indications -
-
-
-qmi_client_nas_reset, function in NAS Reset -
-
-
-qmi_client_nas_reset_finish, function in NAS Reset -
-
-
-qmi_client_nas_set_event_report, function in NAS Set Event Report -
-
-
-qmi_client_nas_set_event_report_finish, function in NAS Set Event Report -
-
-
-qmi_client_nas_set_system_selection_preference, function in NAS Set System Selection Preference -
-
-
-qmi_client_nas_set_system_selection_preference_finish, function in NAS Set System Selection Preference -
-
-
-qmi_client_nas_set_technology_preference, function in NAS Set Technology Preference -
-
-
-qmi_client_nas_set_technology_preference_finish, function in NAS Set Technology Preference -
-
-
-qmi_client_pds_get_auto_tracking_state, function in PDS Get Auto Tracking State -
-
-
-qmi_client_pds_get_auto_tracking_state_finish, function in PDS Get Auto Tracking State -
-
-
-qmi_client_pds_get_gps_service_state, function in PDS Get GPS Service State -
-
-
-qmi_client_pds_get_gps_service_state_finish, function in PDS Get GPS Service State -
-
-
-qmi_client_pds_reset, function in PDS Reset -
-
-
-qmi_client_pds_reset_finish, function in PDS Reset -
-
-
-qmi_client_pds_set_auto_tracking_state, function in PDS Set Auto Tracking State -
-
-
-qmi_client_pds_set_auto_tracking_state_finish, function in PDS Set Auto Tracking State -
-
-
-qmi_client_pds_set_event_report, function in PDS Set Event Report -
-
-
-qmi_client_pds_set_event_report_finish, function in PDS Set Event Report -
-
-
-qmi_client_pds_set_gps_service_state, function in PDS Set GPS Service State -
-
-
-qmi_client_pds_set_gps_service_state_finish, function in PDS Set GPS Service State -
-
-
-qmi_client_peek_device, function in QmiClient -
-
-
-QMI_CLIENT_SERVICE, macro in QmiClient -
-
-
-QMI_CLIENT_VERSION_MAJOR, macro in QmiClient -
-
-
-QMI_CLIENT_VERSION_MINOR, macro in QmiClient -
-
-
-qmi_client_wds_get_current_data_bearer_technology, function in WDS Get Current Data Bearer Technology -
-
-
-qmi_client_wds_get_current_data_bearer_technology_finish, function in WDS Get Current Data Bearer Technology -
-
-
-qmi_client_wds_get_current_settings, function in WDS Get Current Settings -
-
-
-qmi_client_wds_get_current_settings_finish, function in WDS Get Current Settings -
-
-
-qmi_client_wds_get_data_bearer_technology, function in WDS Get Data Bearer Technology -
-
-
-qmi_client_wds_get_data_bearer_technology_finish, function in WDS Get Data Bearer Technology -
-
-
-qmi_client_wds_get_packet_service_status, function in WDS Get Packet Service Status -
-
-
-qmi_client_wds_get_packet_service_status_finish, function in WDS Get Packet Service Status -
-
-
-qmi_client_wds_reset, function in WDS Reset -
-
-
-qmi_client_wds_reset_finish, function in WDS Reset -
-
-
-qmi_client_wds_set_ip_family, function in WDS Set IP Family -
-
-
-qmi_client_wds_set_ip_family_finish, function in WDS Set IP Family -
-
-
-qmi_client_wds_start_network, function in WDS Start Network -
-
-
-qmi_client_wds_start_network_finish, function in WDS Start Network -
-
-
-qmi_client_wds_stop_network, function in WDS Stop Network -
-
-
-qmi_client_wds_stop_network_finish, function in WDS Stop Network -
-
-
-qmi_client_wms_delete, function in WMS Delete -
-
-
-qmi_client_wms_delete_finish, function in WMS Delete -
-
-
-qmi_client_wms_get_message_protocol, function in WMS Get Message Protocol -
-
-
-qmi_client_wms_get_message_protocol_finish, function in WMS Get Message Protocol -
-
-
-qmi_client_wms_get_routes, function in WMS Get Routes -
-
-
-qmi_client_wms_get_routes_finish, function in WMS Get Routes -
-
-
-qmi_client_wms_list_messages, function in WMS List Messages -
-
-
-qmi_client_wms_list_messages_finish, function in WMS List Messages -
-
-
-qmi_client_wms_modify_tag, function in WMS Modify Tag -
-
-
-qmi_client_wms_modify_tag_finish, function in WMS Modify Tag -
-
-
-qmi_client_wms_raw_read, function in WMS Raw Read -
-
-
-qmi_client_wms_raw_read_finish, function in WMS Raw Read -
-
-
-qmi_client_wms_raw_send, function in WMS Raw Send -
-
-
-qmi_client_wms_raw_send_finish, function in WMS Raw Send -
-
-
-qmi_client_wms_raw_write, function in WMS Raw Write -
-
-
-qmi_client_wms_raw_write_finish, function in WMS Raw Write -
-
-
-qmi_client_wms_reset, function in WMS Reset -
-
-
-qmi_client_wms_reset_finish, function in WMS Reset -
-
-
-qmi_client_wms_send_from_memory_storage, function in WMS Send From Memory Storage -
-
-
-qmi_client_wms_send_from_memory_storage_finish, function in WMS Send From Memory Storage -
-
-
-qmi_client_wms_set_event_report, function in WMS Set Event Report -
-
-
-qmi_client_wms_set_event_report_finish, function in WMS Set Event Report -
-
-
-qmi_client_wms_set_routes, function in WMS Set Routes -
-
-
-qmi_client_wms_set_routes_finish, function in WMS Set Routes -
-
-
-QmiCoreError, enum in Errors -
-
-
-qmi_core_error_get_string, function in Errors -
-
-

D

-
-QmiDevice, struct in QmiDevice -
-
-
-QmiDevice:device-file, object property in QmiDevice -
-
-
-QmiDeviceOpenFlags, enum in QmiDevice -
-
-
-QmiDeviceReleaseClientFlags, enum in QmiDevice -
-
-
-qmi_device_allocate_client, function in QmiDevice -
-
-
-qmi_device_allocate_client_finish, function in QmiDevice -
-
-
-qmi_device_close, function in QmiDevice -
-
-
-qmi_device_command, function in QmiDevice -
-
-
-qmi_device_command_finish, function in QmiDevice -
-
-
-QMI_DEVICE_FILE, macro in QmiDevice -
-
-
-qmi_device_get_file, function in QmiDevice -
-
-
-qmi_device_get_path, function in QmiDevice -
-
-
-qmi_device_get_path_display, function in QmiDevice -
-
-
-qmi_device_is_open, function in QmiDevice -
-
-
-qmi_device_new, function in QmiDevice -
-
-
-qmi_device_new_finish, function in QmiDevice -
-
-
-qmi_device_open, function in QmiDevice -
-
-
-qmi_device_open_finish, function in QmiDevice -
-
-
-qmi_device_open_flags_build_string_from_mask, function in QmiDevice -
-
-
-qmi_device_peek_file, function in QmiDevice -
-
-
-qmi_device_release_client, function in QmiDevice -
-
-
-qmi_device_release_client_finish, function in QmiDevice -
-
-
-qmi_device_release_client_flags_build_string_from_mask, function in QmiDevice -
-
-
-qmi_device_set_instance_id, function in QmiDevice -
-
-
-qmi_device_set_instance_id_finish, function in QmiDevice -
-
-
-QmiDmsActivationState, enum in DMS enumerations and flags -
-
-
-QmiDmsDataServiceCapability, enum in DMS enumerations and flags -
-
-
-QmiDmsFirmwareImageType, enum in DMS enumerations and flags -
-
-
-QmiDmsOfflineReason, enum in DMS enumerations and flags -
-
-
-QmiDmsOperatingMode, enum in DMS enumerations and flags -
-
-
-QmiDmsPowerState, enum in DMS enumerations and flags -
-
-
-QmiDmsRadioInterface, enum in DMS enumerations and flags -
-
-
-QmiDmsSimCapability, enum in DMS enumerations and flags -
-
-
-QmiDmsTimeReferenceType, enum in DMS enumerations and flags -
-
-
-QmiDmsTimeSource, enum in DMS enumerations and flags -
-
-
-QmiDmsUimFacility, enum in DMS enumerations and flags -
-
-
-QmiDmsUimFacilityState, enum in DMS enumerations and flags -
-
-
-QmiDmsUimPinId, enum in DMS enumerations and flags -
-
-
-QmiDmsUimPinStatus, enum in DMS enumerations and flags -
-
-
-QmiDmsUimState, enum in DMS enumerations and flags -
-
-
-qmi_dms_activation_state_get_string, function in DMS enumerations and flags -
-
-
-qmi_dms_band_capability_build_string_from_mask, function in DMS enumerations and flags -
-
-
-qmi_dms_data_service_capability_get_string, function in DMS enumerations and flags -
-
-
-qmi_dms_firmware_image_type_get_string, function in DMS enumerations and flags -
-
-
-qmi_dms_lte_band_capability_build_string_from_mask, function in DMS enumerations and flags -
-
-
-qmi_dms_offline_reason_build_string_from_mask, function in DMS enumerations and flags -
-
-
-qmi_dms_operating_mode_get_string, function in DMS enumerations and flags -
-
-
-qmi_dms_radio_interface_get_string, function in DMS enumerations and flags -
-
-
-qmi_dms_sim_capability_get_string, function in DMS enumerations and flags -
-
-
-qmi_dms_time_reference_type_get_string, function in DMS enumerations and flags -
-
-
-qmi_dms_time_source_get_string, function in DMS enumerations and flags -
-
-
-qmi_dms_uim_facility_get_string, function in DMS enumerations and flags -
-
-
-qmi_dms_uim_facility_state_get_string, function in DMS enumerations and flags -
-
-
-qmi_dms_uim_pin_id_get_string, function in DMS enumerations and flags -
-
-
-qmi_dms_uim_pin_status_get_string, function in DMS enumerations and flags -
-
-
-qmi_dms_uim_state_get_string, function in DMS enumerations and flags -
-
-

E

-
-QmiEndian, enum in Common utilities -
-
-

I

-
-QmiIndicationDmsEventReportOutput, struct in DMS Event Report -
-
-
-QmiIndicationNasEventReportOutput, struct in NAS Event Report -
-
-
-QmiIndicationNasEventReportOutputRfBandInformationElement, struct in NAS Event Report -
-
-
-QmiIndicationNasNetworkTimeOutput, struct in NAS Network Time -
-
-
-QmiIndicationNasServingSystemOutput, struct in NAS Serving System -
-
-
-QmiIndicationNasServingSystemOutputRoamingIndicatorListElement, struct in NAS Serving System -
-
-
-QmiIndicationNasSignalInfoOutput, struct in NAS Signal Info -
-
-
-QmiIndicationNasSystemInfoOutput, struct in NAS System Info -
-
-
-QmiIndicationPdsEventReportOutput, struct in PDS Event Report -
-
-
-QmiIndicationWmsEventReportOutput, struct in WMS Event Report -
-
-
-qmi_indication_dms_event_report_output_get_activation_state, function in DMS Event Report -
-
-
-qmi_indication_dms_event_report_output_get_operating_mode, function in DMS Event Report -
-
-
-qmi_indication_dms_event_report_output_get_pin1_status, function in DMS Event Report -
-
-
-qmi_indication_dms_event_report_output_get_pin2_status, function in DMS Event Report -
-
-
-qmi_indication_dms_event_report_output_get_power_state, function in DMS Event Report -
-
-
-qmi_indication_dms_event_report_output_get_prl_init_notification, function in DMS Event Report -
-
-
-qmi_indication_dms_event_report_output_get_uim_state, function in DMS Event Report -
-
-
-qmi_indication_dms_event_report_output_get_wireless_disable_state, function in DMS Event Report -
-
-
-qmi_indication_dms_event_report_output_ref, function in DMS Event Report -
-
-
-qmi_indication_dms_event_report_output_unref, function in DMS Event Report -
-
-
-qmi_indication_nas_event_report_output_get_error_rate, function in NAS Event Report -
-
-
-qmi_indication_nas_event_report_output_get_io, function in NAS Event Report -
-
-
-qmi_indication_nas_event_report_output_get_lte_rsrp, function in NAS Event Report -
-
-
-qmi_indication_nas_event_report_output_get_lte_snr, function in NAS Event Report -
-
-
-qmi_indication_nas_event_report_output_get_registration_reject_reason, function in NAS Event Report -
-
-
-qmi_indication_nas_event_report_output_get_rf_band_information, function in NAS Event Report -
-
-
-qmi_indication_nas_event_report_output_get_rsrq, function in NAS Event Report -
-
-
-qmi_indication_nas_event_report_output_get_rssi, function in NAS Event Report -
-
-
-qmi_indication_nas_event_report_output_get_signal_strength, function in NAS Event Report -
-
-
-qmi_indication_nas_event_report_output_get_sinr, function in NAS Event Report -
-
-
-qmi_indication_nas_event_report_output_ref, function in NAS Event Report -
-
-
-qmi_indication_nas_event_report_output_unref, function in NAS Event Report -
-
-
-qmi_indication_nas_network_time_output_ref, function in NAS Network Time -
-
-
-qmi_indication_nas_network_time_output_unref, function in NAS Network Time -
-
-
-qmi_indication_nas_serving_system_output_get_call_barring_status, function in NAS Serving System -
-
-
-qmi_indication_nas_serving_system_output_get_cdma_base_station_info, function in NAS Serving System -
-
-
-qmi_indication_nas_serving_system_output_get_cdma_p_rev, function in NAS Serving System -
-
-
-qmi_indication_nas_serving_system_output_get_cdma_system_id, function in NAS Serving System -
-
-
-qmi_indication_nas_serving_system_output_get_cdma_system_info, function in NAS Serving System -
-
-
-qmi_indication_nas_serving_system_output_get_cid_3gpp, function in NAS Serving System -
-
-
-qmi_indication_nas_serving_system_output_get_concurrent_service_info_3gpp2, function in NAS Serving System -
-
-
-qmi_indication_nas_serving_system_output_get_current_plmn, function in NAS Serving System -
-
-
-qmi_indication_nas_serving_system_output_get_data_service_capability, function in NAS Serving System -
-
-
-qmi_indication_nas_serving_system_output_get_daylight_saving_time_adjustment_3gpp, function in NAS Serving System -
-
-
-qmi_indication_nas_serving_system_output_get_default_roaming_indicator, function in NAS Serving System -
-
-
-qmi_indication_nas_serving_system_output_get_detailed_service_status, function in NAS Serving System -
-
-
-qmi_indication_nas_serving_system_output_get_dtm_support, function in NAS Serving System -
-
-
-qmi_indication_nas_serving_system_output_get_hdr_personality, function in NAS Serving System -
-
-
-qmi_indication_nas_serving_system_output_get_lac_3gpp, function in NAS Serving System -
-
-
-qmi_indication_nas_serving_system_output_get_lte_tac, function in NAS Serving System -
-
-
-qmi_indication_nas_serving_system_output_get_mnc_pcs_digit_include_status, function in NAS Serving System -
-
-
-qmi_indication_nas_serving_system_output_get_plmn_name_flag_3gpp, function in NAS Serving System -
-
-
-qmi_indication_nas_serving_system_output_get_plmn_not_changed_indication, function in NAS Serving System -
-
-
-qmi_indication_nas_serving_system_output_get_prl_indicator_3gpp2, function in NAS Serving System -
-
-
-qmi_indication_nas_serving_system_output_get_roaming_indicator, function in NAS Serving System -
-
-
-qmi_indication_nas_serving_system_output_get_roaming_indicator_list, function in NAS Serving System -
-
-
-qmi_indication_nas_serving_system_output_get_serving_system, function in NAS Serving System -
-
-
-qmi_indication_nas_serving_system_output_get_time_zone_3gpp, function in NAS Serving System -
-
-
-qmi_indication_nas_serving_system_output_get_time_zone_3gpp2, function in NAS Serving System -
-
-
-qmi_indication_nas_serving_system_output_get_umts_primary_scrambling_code, function in NAS Serving System -
-
-
-qmi_indication_nas_serving_system_output_get_universal_time_and_local_time_zone_3gpp, function in NAS Serving System -
-
-
-qmi_indication_nas_serving_system_output_ref, function in NAS Serving System -
-
-
-qmi_indication_nas_serving_system_output_unref, function in NAS Serving System -
-
-
-qmi_indication_nas_signal_info_output_get_cdma_signal_strength, function in NAS Signal Info -
-
-
-qmi_indication_nas_signal_info_output_get_gsm_signal_strength, function in NAS Signal Info -
-
-
-qmi_indication_nas_signal_info_output_get_hdr_signal_strength, function in NAS Signal Info -
-
-
-qmi_indication_nas_signal_info_output_get_lte_signal_strength, function in NAS Signal Info -
-
-
-qmi_indication_nas_signal_info_output_get_tdma_signal_strength, function in NAS Signal Info -
-
-
-qmi_indication_nas_signal_info_output_get_wcdma_signal_strength, function in NAS Signal Info -
-
-
-qmi_indication_nas_signal_info_output_ref, function in NAS Signal Info -
-
-
-qmi_indication_nas_signal_info_output_unref, function in NAS Signal Info -
-
-
-qmi_indication_nas_system_info_output_get_additional_cdma_system_info, function in NAS System Info -
-
-
-qmi_indication_nas_system_info_output_get_additional_gsm_system_info, function in NAS System Info -
-
-
-qmi_indication_nas_system_info_output_get_additional_hdr_system_info, function in NAS System Info -
-
-
-qmi_indication_nas_system_info_output_get_additional_lte_system_info, function in NAS System Info -
-
-
-qmi_indication_nas_system_info_output_get_additional_wcdma_system_info, function in NAS System Info -
-
-
-qmi_indication_nas_system_info_output_get_cdma_service_status, function in NAS System Info -
-
-
-qmi_indication_nas_system_info_output_get_cdma_system_info, function in NAS System Info -
-
-
-qmi_indication_nas_system_info_output_get_gsm_call_barring_status, function in NAS System Info -
-
-
-qmi_indication_nas_system_info_output_get_gsm_cipher_domain, function in NAS System Info -
-
-
-qmi_indication_nas_system_info_output_get_gsm_service_status, function in NAS System Info -
-
-
-qmi_indication_nas_system_info_output_get_gsm_system_info, function in NAS System Info -
-
-
-qmi_indication_nas_system_info_output_get_hdr_service_status, function in NAS System Info -
-
-
-qmi_indication_nas_system_info_output_get_hdr_system_info, function in NAS System Info -
-
-
-qmi_indication_nas_system_info_output_get_lte_embms_coverage_info_support, function in NAS System Info -
-
-
-qmi_indication_nas_system_info_output_get_lte_service_status, function in NAS System Info -
-
-
-qmi_indication_nas_system_info_output_get_lte_system_info, function in NAS System Info -
-
-
-qmi_indication_nas_system_info_output_get_lte_voice_support, function in NAS System Info -
-
-
-qmi_indication_nas_system_info_output_get_plmn_not_changed_indication, function in NAS System Info -
-
-
-qmi_indication_nas_system_info_output_get_sim_reject_info, function in NAS System Info -
-
-
-qmi_indication_nas_system_info_output_get_td_scdma_service_status, function in NAS System Info -
-
-
-qmi_indication_nas_system_info_output_get_td_scma_system_info, function in NAS System Info -
-
-
-qmi_indication_nas_system_info_output_get_wcdma_call_barring_status, function in NAS System Info -
-
-
-qmi_indication_nas_system_info_output_get_wcdma_cipher_domain, function in NAS System Info -
-
-
-qmi_indication_nas_system_info_output_get_wcdma_service_status, function in NAS System Info -
-
-
-qmi_indication_nas_system_info_output_get_wcdma_system_info, function in NAS System Info -
-
-
-qmi_indication_nas_system_info_output_ref, function in NAS System Info -
-
-
-qmi_indication_nas_system_info_output_unref, function in NAS System Info -
-
-
-qmi_indication_pds_event_report_output_get_extended_nmea_position, function in PDS Event Report -
-
-
-qmi_indication_pds_event_report_output_get_nmea_position, function in PDS Event Report -
-
-
-qmi_indication_pds_event_report_output_get_position_session_status, function in PDS Event Report -
-
-
-qmi_indication_pds_event_report_output_ref, function in PDS Event Report -
-
-
-qmi_indication_pds_event_report_output_unref, function in PDS Event Report -
-
-
-qmi_indication_wms_event_report_output_get_etws_message, function in WMS Event Report -
-
-
-qmi_indication_wms_event_report_output_get_etws_plmn_information, function in WMS Event Report -
-
-
-qmi_indication_wms_event_report_output_get_message_mode, function in WMS Event Report -
-
-
-qmi_indication_wms_event_report_output_get_mt_message, function in WMS Event Report -
-
-
-qmi_indication_wms_event_report_output_get_smsc_address, function in WMS Event Report -
-
-
-qmi_indication_wms_event_report_output_get_sms_on_ims, function in WMS Event Report -
-
-
-qmi_indication_wms_event_report_output_get_transfer_route_mt_message, function in WMS Event Report -
-
-
-qmi_indication_wms_event_report_output_ref, function in WMS Event Report -
-
-
-qmi_indication_wms_event_report_output_unref, function in WMS Event Report -
-
-

M

-
-QmiMessage, typedef in QmiMessage -
-
-
-QmiMessageDmsActivateAutomaticInput, struct in DMS Activate Automatic -
-
-
-QmiMessageDmsActivateAutomaticOutput, struct in DMS Activate Automatic -
-
-
-QmiMessageDmsActivateManualInput, struct in DMS Activate Manual -
-
-
-QmiMessageDmsActivateManualOutput, struct in DMS Activate Manual -
-
-
-QmiMessageDmsDeleteStoredImageInput, struct in DMS Delete Stored Image -
-
-
-QmiMessageDmsDeleteStoredImageInputImage, struct in DMS Delete Stored Image -
-
-
-QmiMessageDmsDeleteStoredImageOutput, struct in DMS Delete Stored Image -
-
-
-QmiMessageDmsGetActivationStateOutput, struct in DMS Get Activation State -
-
-
-QmiMessageDmsGetAltNetConfigOutput, struct in DMS Get Alt Net Config -
-
-
-QmiMessageDmsGetBandCapabilitiesOutput, struct in DMS Get Band Capabilities -
-
-
-QmiMessageDmsGetCapabilitiesOutput, struct in DMS Get Capabilities -
-
-
-QmiMessageDmsGetFactorySkuOutput, struct in DMS Get Factory SKU -
-
-
-QmiMessageDmsGetFirmwarePreferenceOutput, struct in DMS Get Firmware Preference -
-
-
-QmiMessageDmsGetFirmwarePreferenceOutputListImage, struct in DMS Get Firmware Preference -
-
-
-QmiMessageDmsGetHardwareRevisionOutput, struct in DMS Get Hardware Revision -
-
-
-QmiMessageDmsGetIdsOutput, struct in DMS Get IDs -
-
-
-QmiMessageDmsGetManufacturerOutput, struct in DMS Get Manufacturer -
-
-
-QmiMessageDmsGetModelOutput, struct in DMS Get Model -
-
-
-QmiMessageDmsGetMsisdnOutput, struct in DMS Get MSISDN -
-
-
-QmiMessageDmsGetOperatingModeOutput, struct in DMS Get Operating Mode -
-
-
-QmiMessageDmsGetPowerStateOutput, struct in DMS Get Power State -
-
-
-QmiMessageDmsGetPrlVersionOutput, struct in DMS Get PRL Version -
-
-
-QmiMessageDmsGetRevisionOutput, struct in DMS Get Revision -
-
-
-QmiMessageDmsGetSoftwareVersionOutput, struct in DMS Get Software Version -
-
-
-QmiMessageDmsGetStoredImageInfoInput, struct in DMS Get Stored Image Info -
-
-
-QmiMessageDmsGetStoredImageInfoInputImage, struct in DMS Get Stored Image Info -
-
-
-QmiMessageDmsGetStoredImageInfoOutput, struct in DMS Get Stored Image Info -
-
-
-QmiMessageDmsGetTimeOutput, struct in DMS Get Time -
-
-
-QmiMessageDmsGetUserLockStateOutput, struct in DMS Get User Lock State -
-
-
-QmiMessageDmsListStoredImagesOutput, struct in DMS List Stored Images -
-
-
-QmiMessageDmsListStoredImagesOutputListImage, struct in DMS List Stored Images -
-
-
-QmiMessageDmsListStoredImagesOutputListImageSublistSublistElement, struct in DMS List Stored Images -
-
-
-QmiMessageDmsReadEriFileOutput, struct in DMS Read ERI File -
-
-
-QmiMessageDmsReadUserDataOutput, struct in DMS Read User Data -
-
-
-QmiMessageDmsResetOutput, struct in DMS Reset -
-
-
-QmiMessageDmsRestoreFactoryDefaultsInput, struct in DMS Restore Factory Defaults -
-
-
-QmiMessageDmsRestoreFactoryDefaultsOutput, struct in DMS Restore Factory Defaults -
-
-
-QmiMessageDmsSetAltNetConfigInput, struct in DMS Set Alt Net Config -
-
-
-QmiMessageDmsSetAltNetConfigOutput, struct in DMS Set Alt Net Config -
-
-
-QmiMessageDmsSetEventReportInput, struct in DMS Set Event Report -
-
-
-QmiMessageDmsSetEventReportOutput, struct in DMS Set Event Report -
-
-
-QmiMessageDmsSetFirmwarePreferenceInput, struct in DMS Set Firmware Preference -
-
-
-QmiMessageDmsSetFirmwarePreferenceInputListImage, struct in DMS Set Firmware Preference -
-
-
-QmiMessageDmsSetFirmwarePreferenceOutput, struct in DMS Set Firmware Preference -
-
-
-QmiMessageDmsSetOperatingModeInput, struct in DMS Set Operating Mode -
-
-
-QmiMessageDmsSetOperatingModeOutput, struct in DMS Set Operating Mode -
-
-
-QmiMessageDmsSetServiceProgrammingCodeInput, struct in DMS Set Service Programming Code -
-
-
-QmiMessageDmsSetServiceProgrammingCodeOutput, struct in DMS Set Service Programming Code -
-
-
-QmiMessageDmsSetTimeInput, struct in DMS Set Time -
-
-
-QmiMessageDmsSetTimeOutput, struct in DMS Set Time -
-
-
-QmiMessageDmsSetUserLockCodeInput, struct in DMS Set User Lock Code -
-
-
-QmiMessageDmsSetUserLockCodeOutput, struct in DMS Set User Lock Code -
-
-
-QmiMessageDmsSetUserLockStateInput, struct in DMS Set User Lock State -
-
-
-QmiMessageDmsSetUserLockStateOutput, struct in DMS Set User Lock State -
-
-
-QmiMessageDmsUimChangePinInput, struct in DMS UIM Change PIN -
-
-
-QmiMessageDmsUimChangePinOutput, struct in DMS UIM Change PIN -
-
-
-QmiMessageDmsUimGetCkStatusInput, struct in DMS UIM Get CK Status -
-
-
-QmiMessageDmsUimGetCkStatusOutput, struct in DMS UIM Get CK Status -
-
-
-QmiMessageDmsUimGetIccidOutput, struct in DMS UIM Get ICCID -
-
-
-QmiMessageDmsUimGetImsiOutput, struct in DMS UIM Get IMSI -
-
-
-QmiMessageDmsUimGetPinStatusOutput, struct in DMS UIM Get PIN Status -
-
-
-QmiMessageDmsUimGetStateOutput, struct in DMS UIM Get State -
-
-
-QmiMessageDmsUimSetCkProtectionInput, struct in DMS UIM Set CK Protection -
-
-
-QmiMessageDmsUimSetCkProtectionOutput, struct in DMS UIM Set CK Protection -
-
-
-QmiMessageDmsUimSetPinProtectionInput, struct in DMS UIM Set PIN Protection -
-
-
-QmiMessageDmsUimSetPinProtectionOutput, struct in DMS UIM Set PIN Protection -
-
-
-QmiMessageDmsUimUnblockCkInput, struct in DMS UIM Unblock CK -
-
-
-QmiMessageDmsUimUnblockCkOutput, struct in DMS UIM Unblock CK -
-
-
-QmiMessageDmsUimUnblockPinInput, struct in DMS UIM Unblock PIN -
-
-
-QmiMessageDmsUimUnblockPinOutput, struct in DMS UIM Unblock PIN -
-
-
-QmiMessageDmsUimVerifyPinInput, struct in DMS UIM Verify PIN -
-
-
-QmiMessageDmsUimVerifyPinOutput, struct in DMS UIM Verify PIN -
-
-
-QmiMessageDmsValidateServiceProgrammingCodeInput, struct in DMS Validate Service Programming Code -
-
-
-QmiMessageDmsValidateServiceProgrammingCodeOutput, struct in DMS Validate Service Programming Code -
-
-
-QmiMessageDmsWriteUserDataInput, struct in DMS Write User Data -
-
-
-QmiMessageDmsWriteUserDataOutput, struct in DMS Write User Data -
-
-
-QmiMessageForeachRawTlvFn, user_function in QmiMessage -
-
-
-QmiMessageNasConfigSignalInfoInput, struct in NAS Config Signal Info -
-
-
-QmiMessageNasConfigSignalInfoOutput, struct in NAS Config Signal Info -
-
-
-QmiMessageNasGetCdmaPositionInfoOutput, struct in NAS Get CDMA Position Info -
-
-
-QmiMessageNasGetCdmaPositionInfoOutputCdmaPositionInfoBasestationsBasestation, struct in NAS Get CDMA Position Info -
-
-
-QmiMessageNasGetHomeNetworkOutput, struct in NAS Get Home Network -
-
-
-QmiMessageNasGetRfBandInformationOutput, struct in NAS Get RF Band Information -
-
-
-QmiMessageNasGetRfBandInformationOutputListElement, struct in NAS Get RF Band Information -
-
-
-QmiMessageNasGetServingSystemOutput, struct in NAS Get Serving System -
-
-
-QmiMessageNasGetServingSystemOutputRoamingIndicatorListElement, struct in NAS Get Serving System -
-
-
-QmiMessageNasGetSignalInfoOutput, struct in NAS Get Signal Info -
-
-
-QmiMessageNasGetSignalStrengthInput, struct in NAS Get Signal Strength -
-
-
-QmiMessageNasGetSignalStrengthOutput, struct in NAS Get Signal Strength -
-
-
-QmiMessageNasGetSignalStrengthOutputEcioListElement, struct in NAS Get Signal Strength -
-
-
-QmiMessageNasGetSignalStrengthOutputErrorRateListElement, struct in NAS Get Signal Strength -
-
-
-QmiMessageNasGetSignalStrengthOutputRssiListElement, struct in NAS Get Signal Strength -
-
-
-QmiMessageNasGetSignalStrengthOutputStrengthListElement, struct in NAS Get Signal Strength -
-
-
-QmiMessageNasGetSystemInfoOutput, struct in NAS Get System Info -
-
-
-QmiMessageNasGetSystemSelectionPreferenceOutput, struct in NAS Get System Selection Preference -
-
-
-QmiMessageNasGetTechnologyPreferenceOutput, struct in NAS Get Technology Preference -
-
-
-QmiMessageNasInitiateNetworkRegisterInput, struct in NAS Initiate Network Register -
-
-
-QmiMessageNasInitiateNetworkRegisterOutput, struct in NAS Initiate Network Register -
-
-
-QmiMessageNasNetworkScanInput, struct in NAS Network Scan -
-
-
-QmiMessageNasNetworkScanOutput, struct in NAS Network Scan -
-
-
-QmiMessageNasNetworkScanOutputMncPcsDigitIncludeStatusElement, struct in NAS Network Scan -
-
-
-QmiMessageNasNetworkScanOutputNetworkInformationElement, struct in NAS Network Scan -
-
-
-QmiMessageNasNetworkScanOutputRadioAccessTechnologyElement, struct in NAS Network Scan -
-
-
-QmiMessageNasRegisterIndicationsInput, struct in NAS Register Indications -
-
-
-QmiMessageNasRegisterIndicationsOutput, struct in NAS Register Indications -
-
-
-QmiMessageNasResetOutput, struct in NAS Reset -
-
-
-QmiMessageNasSetEventReportInput, struct in NAS Set Event Report -
-
-
-QmiMessageNasSetEventReportOutput, struct in NAS Set Event Report -
-
-
-QmiMessageNasSetSystemSelectionPreferenceInput, struct in NAS Set System Selection Preference -
-
-
-QmiMessageNasSetSystemSelectionPreferenceOutput, struct in NAS Set System Selection Preference -
-
-
-QmiMessageNasSetTechnologyPreferenceInput, struct in NAS Set Technology Preference -
-
-
-QmiMessageNasSetTechnologyPreferenceOutput, struct in NAS Set Technology Preference -
-
-
-QmiMessagePdsGetAutoTrackingStateOutput, struct in PDS Get Auto Tracking State -
-
-
-QmiMessagePdsGetGpsServiceStateOutput, struct in PDS Get GPS Service State -
-
-
-QmiMessagePdsResetOutput, struct in PDS Reset -
-
-
-QmiMessagePdsSetAutoTrackingStateInput, struct in PDS Set Auto Tracking State -
-
-
-QmiMessagePdsSetAutoTrackingStateOutput, struct in PDS Set Auto Tracking State -
-
-
-QmiMessagePdsSetEventReportInput, struct in PDS Set Event Report -
-
-
-QmiMessagePdsSetEventReportOutput, struct in PDS Set Event Report -
-
-
-QmiMessagePdsSetGpsServiceStateInput, struct in PDS Set GPS Service State -
-
-
-QmiMessagePdsSetGpsServiceStateOutput, struct in PDS Set GPS Service State -
-
-
-QmiMessageWdsGetCurrentDataBearerTechnologyOutput, struct in WDS Get Current Data Bearer Technology -
-
-
-QmiMessageWdsGetCurrentSettingsInput, struct in WDS Get Current Settings -
-
-
-QmiMessageWdsGetCurrentSettingsOutput, struct in WDS Get Current Settings -
-
-
-QmiMessageWdsGetDataBearerTechnologyOutput, struct in WDS Get Data Bearer Technology -
-
-
-QmiMessageWdsGetPacketServiceStatusOutput, struct in WDS Get Packet Service Status -
-
-
-QmiMessageWdsResetOutput, struct in WDS Reset -
-
-
-QmiMessageWdsSetIpFamilyInput, struct in WDS Set IP Family -
-
-
-QmiMessageWdsSetIpFamilyOutput, struct in WDS Set IP Family -
-
-
-QmiMessageWdsStartNetworkInput, struct in WDS Start Network -
-
-
-QmiMessageWdsStartNetworkOutput, struct in WDS Start Network -
-
-
-QmiMessageWdsStopNetworkInput, struct in WDS Stop Network -
-
-
-QmiMessageWdsStopNetworkOutput, struct in WDS Stop Network -
-
-
-QmiMessageWmsDeleteInput, struct in WMS Delete -
-
-
-QmiMessageWmsDeleteOutput, struct in WMS Delete -
-
-
-QmiMessageWmsGetMessageProtocolOutput, struct in WMS Get Message Protocol -
-
-
-QmiMessageWmsGetRoutesOutput, struct in WMS Get Routes -
-
-
-QmiMessageWmsGetRoutesOutputRouteListElement, struct in WMS Get Routes -
-
-
-QmiMessageWmsListMessagesInput, struct in WMS List Messages -
-
-
-QmiMessageWmsListMessagesOutput, struct in WMS List Messages -
-
-
-QmiMessageWmsListMessagesOutputMessageListElement, struct in WMS List Messages -
-
-
-QmiMessageWmsModifyTagInput, struct in WMS Modify Tag -
-
-
-QmiMessageWmsModifyTagOutput, struct in WMS Modify Tag -
-
-
-QmiMessageWmsRawReadInput, struct in WMS Raw Read -
-
-
-QmiMessageWmsRawReadOutput, struct in WMS Raw Read -
-
-
-QmiMessageWmsRawSendInput, struct in WMS Raw Send -
-
-
-QmiMessageWmsRawSendOutput, struct in WMS Raw Send -
-
-
-QmiMessageWmsRawWriteInput, struct in WMS Raw Write -
-
-
-QmiMessageWmsRawWriteOutput, struct in WMS Raw Write -
-
-
-QmiMessageWmsResetOutput, struct in WMS Reset -
-
-
-QmiMessageWmsSendFromMemoryStorageInput, struct in WMS Send From Memory Storage -
-
-
-QmiMessageWmsSendFromMemoryStorageOutput, struct in WMS Send From Memory Storage -
-
-
-QmiMessageWmsSetEventReportInput, struct in WMS Set Event Report -
-
-
-QmiMessageWmsSetEventReportOutput, struct in WMS Set Event Report -
-
-
-QmiMessageWmsSetRoutesInput, struct in WMS Set Routes -
-
-
-QmiMessageWmsSetRoutesInputRouteListElement, struct in WMS Set Routes -
-
-
-QmiMessageWmsSetRoutesOutput, struct in WMS Set Routes -
-
-
-qmi_message_add_raw_tlv, function in QmiMessage -
-
-
-qmi_message_dms_activate_automatic_input_get_activation_code, function in DMS Activate Automatic -
-
-
-qmi_message_dms_activate_automatic_input_new, function in DMS Activate Automatic -
-
-
-qmi_message_dms_activate_automatic_input_ref, function in DMS Activate Automatic -
-
-
-qmi_message_dms_activate_automatic_input_set_activation_code, function in DMS Activate Automatic -
-
-
-qmi_message_dms_activate_automatic_input_unref, function in DMS Activate Automatic -
-
-
-qmi_message_dms_activate_automatic_output_get_result, function in DMS Activate Automatic -
-
-
-qmi_message_dms_activate_automatic_output_ref, function in DMS Activate Automatic -
-
-
-qmi_message_dms_activate_automatic_output_unref, function in DMS Activate Automatic -
-
-
-qmi_message_dms_activate_manual_input_get_mn_aaa_key, function in DMS Activate Manual -
-
-
-qmi_message_dms_activate_manual_input_get_mn_ha_key, function in DMS Activate Manual -
-
-
-qmi_message_dms_activate_manual_input_new, function in DMS Activate Manual -
-
-
-qmi_message_dms_activate_manual_input_ref, function in DMS Activate Manual -
-
-
-qmi_message_dms_activate_manual_input_set_mn_aaa_key, function in DMS Activate Manual -
-
-
-qmi_message_dms_activate_manual_input_set_mn_ha_key, function in DMS Activate Manual -
-
-
-qmi_message_dms_activate_manual_input_unref, function in DMS Activate Manual -
-
-
-qmi_message_dms_activate_manual_output_get_result, function in DMS Activate Manual -
-
-
-qmi_message_dms_activate_manual_output_ref, function in DMS Activate Manual -
-
-
-qmi_message_dms_activate_manual_output_unref, function in DMS Activate Manual -
-
-
-qmi_message_dms_delete_stored_image_input_get_image, function in DMS Delete Stored Image -
-
-
-qmi_message_dms_delete_stored_image_input_new, function in DMS Delete Stored Image -
-
-
-qmi_message_dms_delete_stored_image_input_ref, function in DMS Delete Stored Image -
-
-
-qmi_message_dms_delete_stored_image_input_set_image, function in DMS Delete Stored Image -
-
-
-qmi_message_dms_delete_stored_image_input_unref, function in DMS Delete Stored Image -
-
-
-qmi_message_dms_delete_stored_image_output_get_result, function in DMS Delete Stored Image -
-
-
-qmi_message_dms_delete_stored_image_output_ref, function in DMS Delete Stored Image -
-
-
-qmi_message_dms_delete_stored_image_output_unref, function in DMS Delete Stored Image -
-
-
-qmi_message_dms_get_activation_state_output_get_info, function in DMS Get Activation State -
-
-
-qmi_message_dms_get_activation_state_output_get_result, function in DMS Get Activation State -
-
-
-qmi_message_dms_get_activation_state_output_ref, function in DMS Get Activation State -
-
-
-qmi_message_dms_get_activation_state_output_unref, function in DMS Get Activation State -
-
-
-qmi_message_dms_get_alt_net_config_output_get_config, function in DMS Get Alt Net Config -
-
-
-qmi_message_dms_get_alt_net_config_output_get_result, function in DMS Get Alt Net Config -
-
-
-qmi_message_dms_get_alt_net_config_output_ref, function in DMS Get Alt Net Config -
-
-
-qmi_message_dms_get_alt_net_config_output_unref, function in DMS Get Alt Net Config -
-
-
-qmi_message_dms_get_band_capabilities_output_get_band_capability, function in DMS Get Band Capabilities -
-
-
-qmi_message_dms_get_band_capabilities_output_get_lte_band_capability, function in DMS Get Band Capabilities -
-
-
-qmi_message_dms_get_band_capabilities_output_get_result, function in DMS Get Band Capabilities -
-
-
-qmi_message_dms_get_band_capabilities_output_ref, function in DMS Get Band Capabilities -
-
-
-qmi_message_dms_get_band_capabilities_output_unref, function in DMS Get Band Capabilities -
-
-
-qmi_message_dms_get_capabilities_output_get_info, function in DMS Get Capabilities -
-
-
-qmi_message_dms_get_capabilities_output_get_result, function in DMS Get Capabilities -
-
-
-qmi_message_dms_get_capabilities_output_ref, function in DMS Get Capabilities -
-
-
-qmi_message_dms_get_capabilities_output_unref, function in DMS Get Capabilities -
-
-
-qmi_message_dms_get_factory_sku_output_get_result, function in DMS Get Factory SKU -
-
-
-qmi_message_dms_get_factory_sku_output_get_sku, function in DMS Get Factory SKU -
-
-
-qmi_message_dms_get_factory_sku_output_ref, function in DMS Get Factory SKU -
-
-
-qmi_message_dms_get_factory_sku_output_unref, function in DMS Get Factory SKU -
-
-
-qmi_message_dms_get_firmware_preference_output_get_list, function in DMS Get Firmware Preference -
-
-
-qmi_message_dms_get_firmware_preference_output_get_result, function in DMS Get Firmware Preference -
-
-
-qmi_message_dms_get_firmware_preference_output_ref, function in DMS Get Firmware Preference -
-
-
-qmi_message_dms_get_firmware_preference_output_unref, function in DMS Get Firmware Preference -
-
-
-qmi_message_dms_get_hardware_revision_output_get_result, function in DMS Get Hardware Revision -
-
-
-qmi_message_dms_get_hardware_revision_output_get_revision, function in DMS Get Hardware Revision -
-
-
-qmi_message_dms_get_hardware_revision_output_ref, function in DMS Get Hardware Revision -
-
-
-qmi_message_dms_get_hardware_revision_output_unref, function in DMS Get Hardware Revision -
-
-
-qmi_message_dms_get_ids_output_get_esn, function in DMS Get IDs -
-
-
-qmi_message_dms_get_ids_output_get_imei, function in DMS Get IDs -
-
-
-qmi_message_dms_get_ids_output_get_meid, function in DMS Get IDs -
-
-
-qmi_message_dms_get_ids_output_get_result, function in DMS Get IDs -
-
-
-qmi_message_dms_get_ids_output_ref, function in DMS Get IDs -
-
-
-qmi_message_dms_get_ids_output_unref, function in DMS Get IDs -
-
-
-qmi_message_dms_get_manufacturer_output_get_manufacturer, function in DMS Get Manufacturer -
-
-
-qmi_message_dms_get_manufacturer_output_get_result, function in DMS Get Manufacturer -
-
-
-qmi_message_dms_get_manufacturer_output_ref, function in DMS Get Manufacturer -
-
-
-qmi_message_dms_get_manufacturer_output_unref, function in DMS Get Manufacturer -
-
-
-qmi_message_dms_get_model_output_get_model, function in DMS Get Model -
-
-
-qmi_message_dms_get_model_output_get_result, function in DMS Get Model -
-
-
-qmi_message_dms_get_model_output_ref, function in DMS Get Model -
-
-
-qmi_message_dms_get_model_output_unref, function in DMS Get Model -
-
-
-qmi_message_dms_get_msisdn_output_get_msisdn, function in DMS Get MSISDN -
-
-
-qmi_message_dms_get_msisdn_output_get_result, function in DMS Get MSISDN -
-
-
-qmi_message_dms_get_msisdn_output_ref, function in DMS Get MSISDN -
-
-
-qmi_message_dms_get_msisdn_output_unref, function in DMS Get MSISDN -
-
-
-qmi_message_dms_get_operating_mode_output_get_hardware_restricted_mode, function in DMS Get Operating Mode -
-
-
-qmi_message_dms_get_operating_mode_output_get_mode, function in DMS Get Operating Mode -
-
-
-qmi_message_dms_get_operating_mode_output_get_offline_reason, function in DMS Get Operating Mode -
-
-
-qmi_message_dms_get_operating_mode_output_get_result, function in DMS Get Operating Mode -
-
-
-qmi_message_dms_get_operating_mode_output_ref, function in DMS Get Operating Mode -
-
-
-qmi_message_dms_get_operating_mode_output_unref, function in DMS Get Operating Mode -
-
-
-qmi_message_dms_get_power_state_output_get_info, function in DMS Get Power State -
-
-
-qmi_message_dms_get_power_state_output_get_result, function in DMS Get Power State -
-
-
-qmi_message_dms_get_power_state_output_ref, function in DMS Get Power State -
-
-
-qmi_message_dms_get_power_state_output_unref, function in DMS Get Power State -
-
-
-qmi_message_dms_get_prl_version_output_get_prl_only_preference, function in DMS Get PRL Version -
-
-
-qmi_message_dms_get_prl_version_output_get_result, function in DMS Get PRL Version -
-
-
-qmi_message_dms_get_prl_version_output_get_version, function in DMS Get PRL Version -
-
-
-qmi_message_dms_get_prl_version_output_ref, function in DMS Get PRL Version -
-
-
-qmi_message_dms_get_prl_version_output_unref, function in DMS Get PRL Version -
-
-
-qmi_message_dms_get_revision_output_get_result, function in DMS Get Revision -
-
-
-qmi_message_dms_get_revision_output_get_revision, function in DMS Get Revision -
-
-
-qmi_message_dms_get_revision_output_ref, function in DMS Get Revision -
-
-
-qmi_message_dms_get_revision_output_unref, function in DMS Get Revision -
-
-
-qmi_message_dms_get_software_version_output_get_result, function in DMS Get Software Version -
-
-
-qmi_message_dms_get_software_version_output_get_version, function in DMS Get Software Version -
-
-
-qmi_message_dms_get_software_version_output_ref, function in DMS Get Software Version -
-
-
-qmi_message_dms_get_software_version_output_unref, function in DMS Get Software Version -
-
-
-qmi_message_dms_get_stored_image_info_input_get_image, function in DMS Get Stored Image Info -
-
-
-qmi_message_dms_get_stored_image_info_input_new, function in DMS Get Stored Image Info -
-
-
-qmi_message_dms_get_stored_image_info_input_ref, function in DMS Get Stored Image Info -
-
-
-qmi_message_dms_get_stored_image_info_input_set_image, function in DMS Get Stored Image Info -
-
-
-qmi_message_dms_get_stored_image_info_input_unref, function in DMS Get Stored Image Info -
-
-
-qmi_message_dms_get_stored_image_info_output_get_boot_version, function in DMS Get Stored Image Info -
-
-
-qmi_message_dms_get_stored_image_info_output_get_oem_lock_id, function in DMS Get Stored Image Info -
-
-
-qmi_message_dms_get_stored_image_info_output_get_pri_version, function in DMS Get Stored Image Info -
-
-
-qmi_message_dms_get_stored_image_info_output_get_result, function in DMS Get Stored Image Info -
-
-
-qmi_message_dms_get_stored_image_info_output_ref, function in DMS Get Stored Image Info -
-
-
-qmi_message_dms_get_stored_image_info_output_unref, function in DMS Get Stored Image Info -
-
-
-qmi_message_dms_get_time_output_get_device_time, function in DMS Get Time -
-
-
-qmi_message_dms_get_time_output_get_result, function in DMS Get Time -
-
-
-qmi_message_dms_get_time_output_get_system_time, function in DMS Get Time -
-
-
-qmi_message_dms_get_time_output_get_user_time, function in DMS Get Time -
-
-
-qmi_message_dms_get_time_output_ref, function in DMS Get Time -
-
-
-qmi_message_dms_get_time_output_unref, function in DMS Get Time -
-
-
-qmi_message_dms_get_user_lock_state_output_get_enabled, function in DMS Get User Lock State -
-
-
-qmi_message_dms_get_user_lock_state_output_get_result, function in DMS Get User Lock State -
-
-
-qmi_message_dms_get_user_lock_state_output_ref, function in DMS Get User Lock State -
-
-
-qmi_message_dms_get_user_lock_state_output_unref, function in DMS Get User Lock State -
-
-
-qmi_message_dms_list_stored_images_output_get_list, function in DMS List Stored Images -
-
-
-qmi_message_dms_list_stored_images_output_get_result, function in DMS List Stored Images -
-
-
-qmi_message_dms_list_stored_images_output_ref, function in DMS List Stored Images -
-
-
-qmi_message_dms_list_stored_images_output_unref, function in DMS List Stored Images -
-
-
-qmi_message_dms_read_eri_file_output_get_eri_file, function in DMS Read ERI File -
-
-
-qmi_message_dms_read_eri_file_output_get_result, function in DMS Read ERI File -
-
-
-qmi_message_dms_read_eri_file_output_ref, function in DMS Read ERI File -
-
-
-qmi_message_dms_read_eri_file_output_unref, function in DMS Read ERI File -
-
-
-qmi_message_dms_read_user_data_output_get_result, function in DMS Read User Data -
-
-
-qmi_message_dms_read_user_data_output_get_user_data, function in DMS Read User Data -
-
-
-qmi_message_dms_read_user_data_output_ref, function in DMS Read User Data -
-
-
-qmi_message_dms_read_user_data_output_unref, function in DMS Read User Data -
-
-
-qmi_message_dms_reset_output_get_result, function in DMS Reset -
-
-
-qmi_message_dms_reset_output_ref, function in DMS Reset -
-
-
-qmi_message_dms_reset_output_unref, function in DMS Reset -
-
-
-qmi_message_dms_restore_factory_defaults_input_get_service_programming_code, function in DMS Restore Factory Defaults -
-
-
-qmi_message_dms_restore_factory_defaults_input_new, function in DMS Restore Factory Defaults -
-
-
-qmi_message_dms_restore_factory_defaults_input_ref, function in DMS Restore Factory Defaults -
-
-
-qmi_message_dms_restore_factory_defaults_input_set_service_programming_code, function in DMS Restore Factory Defaults -
-
-
-qmi_message_dms_restore_factory_defaults_input_unref, function in DMS Restore Factory Defaults -
-
-
-qmi_message_dms_restore_factory_defaults_output_get_result, function in DMS Restore Factory Defaults -
-
-
-qmi_message_dms_restore_factory_defaults_output_ref, function in DMS Restore Factory Defaults -
-
-
-qmi_message_dms_restore_factory_defaults_output_unref, function in DMS Restore Factory Defaults -
-
-
-qmi_message_dms_set_alt_net_config_input_get_config, function in DMS Set Alt Net Config -
-
-
-qmi_message_dms_set_alt_net_config_input_new, function in DMS Set Alt Net Config -
-
-
-qmi_message_dms_set_alt_net_config_input_ref, function in DMS Set Alt Net Config -
-
-
-qmi_message_dms_set_alt_net_config_input_set_config, function in DMS Set Alt Net Config -
-
-
-qmi_message_dms_set_alt_net_config_input_unref, function in DMS Set Alt Net Config -
-
-
-qmi_message_dms_set_alt_net_config_output_get_result, function in DMS Set Alt Net Config -
-
-
-qmi_message_dms_set_alt_net_config_output_ref, function in DMS Set Alt Net Config -
-
-
-qmi_message_dms_set_alt_net_config_output_unref, function in DMS Set Alt Net Config -
-
-
-qmi_message_dms_set_event_report_input_get_activation_state_reporting, function in DMS Set Event Report -
-
-
-qmi_message_dms_set_event_report_input_get_battery_level_report_limits, function in DMS Set Event Report -
-
-
-qmi_message_dms_set_event_report_input_get_operating_mode_reporting, function in DMS Set Event Report -
-
-
-qmi_message_dms_set_event_report_input_get_pin_state_reporting, function in DMS Set Event Report -
-
-
-qmi_message_dms_set_event_report_input_get_power_state_reporting, function in DMS Set Event Report -
-
-
-qmi_message_dms_set_event_report_input_get_prl_init_reporting, function in DMS Set Event Report -
-
-
-qmi_message_dms_set_event_report_input_get_uim_state_reporting, function in DMS Set Event Report -
-
-
-qmi_message_dms_set_event_report_input_get_wireless_disable_state_reporting, function in DMS Set Event Report -
-
-
-qmi_message_dms_set_event_report_input_new, function in DMS Set Event Report -
-
-
-qmi_message_dms_set_event_report_input_ref, function in DMS Set Event Report -
-
-
-qmi_message_dms_set_event_report_input_set_activation_state_reporting, function in DMS Set Event Report -
-
-
-qmi_message_dms_set_event_report_input_set_battery_level_report_limits, function in DMS Set Event Report -
-
-
-qmi_message_dms_set_event_report_input_set_operating_mode_reporting, function in DMS Set Event Report -
-
-
-qmi_message_dms_set_event_report_input_set_pin_state_reporting, function in DMS Set Event Report -
-
-
-qmi_message_dms_set_event_report_input_set_power_state_reporting, function in DMS Set Event Report -
-
-
-qmi_message_dms_set_event_report_input_set_prl_init_reporting, function in DMS Set Event Report -
-
-
-qmi_message_dms_set_event_report_input_set_uim_state_reporting, function in DMS Set Event Report -
-
-
-qmi_message_dms_set_event_report_input_set_wireless_disable_state_reporting, function in DMS Set Event Report -
-
-
-qmi_message_dms_set_event_report_input_unref, function in DMS Set Event Report -
-
-
-qmi_message_dms_set_event_report_output_get_result, function in DMS Set Event Report -
-
-
-qmi_message_dms_set_event_report_output_ref, function in DMS Set Event Report -
-
-
-qmi_message_dms_set_event_report_output_unref, function in DMS Set Event Report -
-
-
-qmi_message_dms_set_firmware_preference_input_get_download_override, function in DMS Set Firmware Preference -
-
-
-qmi_message_dms_set_firmware_preference_input_get_list, function in DMS Set Firmware Preference -
-
-
-qmi_message_dms_set_firmware_preference_input_get_modem_storage_index, function in DMS Set Firmware Preference -
-
-
-qmi_message_dms_set_firmware_preference_input_new, function in DMS Set Firmware Preference -
-
-
-qmi_message_dms_set_firmware_preference_input_ref, function in DMS Set Firmware Preference -
-
-
-qmi_message_dms_set_firmware_preference_input_set_download_override, function in DMS Set Firmware Preference -
-
-
-qmi_message_dms_set_firmware_preference_input_set_list, function in DMS Set Firmware Preference -
-
-
-qmi_message_dms_set_firmware_preference_input_set_modem_storage_index, function in DMS Set Firmware Preference -
-
-
-qmi_message_dms_set_firmware_preference_input_unref, function in DMS Set Firmware Preference -
-
-
-qmi_message_dms_set_firmware_preference_output_get_image_download_list, function in DMS Set Firmware Preference -
-
-
-qmi_message_dms_set_firmware_preference_output_get_result, function in DMS Set Firmware Preference -
-
-
-qmi_message_dms_set_firmware_preference_output_ref, function in DMS Set Firmware Preference -
-
-
-qmi_message_dms_set_firmware_preference_output_unref, function in DMS Set Firmware Preference -
-
-
-qmi_message_dms_set_operating_mode_input_get_mode, function in DMS Set Operating Mode -
-
-
-qmi_message_dms_set_operating_mode_input_new, function in DMS Set Operating Mode -
-
-
-qmi_message_dms_set_operating_mode_input_ref, function in DMS Set Operating Mode -
-
-
-qmi_message_dms_set_operating_mode_input_set_mode, function in DMS Set Operating Mode -
-
-
-qmi_message_dms_set_operating_mode_input_unref, function in DMS Set Operating Mode -
-
-
-qmi_message_dms_set_operating_mode_output_get_result, function in DMS Set Operating Mode -
-
-
-qmi_message_dms_set_operating_mode_output_ref, function in DMS Set Operating Mode -
-
-
-qmi_message_dms_set_operating_mode_output_unref, function in DMS Set Operating Mode -
-
-
-qmi_message_dms_set_service_programming_code_input_get_current, function in API break replacements -
-
-
-qmi_message_dms_set_service_programming_code_input_get_current_code, function in DMS Set Service Programming Code -
-
-
-qmi_message_dms_set_service_programming_code_input_get_new, function in API break replacements -
-
-
-qmi_message_dms_set_service_programming_code_input_get_new_code, function in DMS Set Service Programming Code -
-
-
-qmi_message_dms_set_service_programming_code_input_new, function in DMS Set Service Programming Code -
-
-
-qmi_message_dms_set_service_programming_code_input_ref, function in DMS Set Service Programming Code -
-
-
-qmi_message_dms_set_service_programming_code_input_set_current, function in API break replacements -
-
-
-qmi_message_dms_set_service_programming_code_input_set_current_code, function in DMS Set Service Programming Code -
-
-
-qmi_message_dms_set_service_programming_code_input_set_new, function in API break replacements -
-
-
-qmi_message_dms_set_service_programming_code_input_set_new_code, function in DMS Set Service Programming Code -
-
-
-qmi_message_dms_set_service_programming_code_input_unref, function in DMS Set Service Programming Code -
-
-
-qmi_message_dms_set_service_programming_code_output_get_result, function in DMS Set Service Programming Code -
-
-
-qmi_message_dms_set_service_programming_code_output_ref, function in DMS Set Service Programming Code -
-
-
-qmi_message_dms_set_service_programming_code_output_unref, function in DMS Set Service Programming Code -
-
-
-qmi_message_dms_set_time_input_get_time_reference_type, function in DMS Set Time -
-
-
-qmi_message_dms_set_time_input_get_time_value, function in DMS Set Time -
-
-
-qmi_message_dms_set_time_input_new, function in DMS Set Time -
-
-
-qmi_message_dms_set_time_input_ref, function in DMS Set Time -
-
-
-qmi_message_dms_set_time_input_set_time_reference_type, function in DMS Set Time -
-
-
-qmi_message_dms_set_time_input_set_time_value, function in DMS Set Time -
-
-
-qmi_message_dms_set_time_input_unref, function in DMS Set Time -
-
-
-qmi_message_dms_set_time_output_get_result, function in DMS Set Time -
-
-
-qmi_message_dms_set_time_output_ref, function in DMS Set Time -
-
-
-qmi_message_dms_set_time_output_unref, function in DMS Set Time -
-
-
-qmi_message_dms_set_user_lock_code_input_get_info, function in DMS Set User Lock Code -
-
-
-qmi_message_dms_set_user_lock_code_input_new, function in DMS Set User Lock Code -
-
-
-qmi_message_dms_set_user_lock_code_input_ref, function in DMS Set User Lock Code -
-
-
-qmi_message_dms_set_user_lock_code_input_set_info, function in DMS Set User Lock Code -
-
-
-qmi_message_dms_set_user_lock_code_input_unref, function in DMS Set User Lock Code -
-
-
-qmi_message_dms_set_user_lock_code_output_get_result, function in DMS Set User Lock Code -
-
-
-qmi_message_dms_set_user_lock_code_output_ref, function in DMS Set User Lock Code -
-
-
-qmi_message_dms_set_user_lock_code_output_unref, function in DMS Set User Lock Code -
-
-
-qmi_message_dms_set_user_lock_state_input_get_info, function in DMS Set User Lock State -
-
-
-qmi_message_dms_set_user_lock_state_input_new, function in DMS Set User Lock State -
-
-
-qmi_message_dms_set_user_lock_state_input_ref, function in DMS Set User Lock State -
-
-
-qmi_message_dms_set_user_lock_state_input_set_info, function in DMS Set User Lock State -
-
-
-qmi_message_dms_set_user_lock_state_input_unref, function in DMS Set User Lock State -
-
-
-qmi_message_dms_set_user_lock_state_output_get_result, function in DMS Set User Lock State -
-
-
-qmi_message_dms_set_user_lock_state_output_ref, function in DMS Set User Lock State -
-
-
-qmi_message_dms_set_user_lock_state_output_unref, function in DMS Set User Lock State -
-
-
-qmi_message_dms_uim_change_pin_input_get_info, function in DMS UIM Change PIN -
-
-
-qmi_message_dms_uim_change_pin_input_new, function in DMS UIM Change PIN -
-
-
-qmi_message_dms_uim_change_pin_input_ref, function in DMS UIM Change PIN -
-
-
-qmi_message_dms_uim_change_pin_input_set_info, function in DMS UIM Change PIN -
-
-
-qmi_message_dms_uim_change_pin_input_unref, function in DMS UIM Change PIN -
-
-
-qmi_message_dms_uim_change_pin_output_get_pin_retries_status, function in DMS UIM Change PIN -
-
-
-qmi_message_dms_uim_change_pin_output_get_result, function in DMS UIM Change PIN -
-
-
-qmi_message_dms_uim_change_pin_output_ref, function in DMS UIM Change PIN -
-
-
-qmi_message_dms_uim_change_pin_output_unref, function in DMS UIM Change PIN -
-
-
-qmi_message_dms_uim_get_ck_status_input_get_facility, function in DMS UIM Get CK Status -
-
-
-qmi_message_dms_uim_get_ck_status_input_new, function in DMS UIM Get CK Status -
-
-
-qmi_message_dms_uim_get_ck_status_input_ref, function in DMS UIM Get CK Status -
-
-
-qmi_message_dms_uim_get_ck_status_input_set_facility, function in DMS UIM Get CK Status -
-
-
-qmi_message_dms_uim_get_ck_status_input_unref, function in DMS UIM Get CK Status -
-
-
-qmi_message_dms_uim_get_ck_status_output_get_ck_status, function in DMS UIM Get CK Status -
-
-
-qmi_message_dms_uim_get_ck_status_output_get_operation_blocking_facility, function in DMS UIM Get CK Status -
-
-
-qmi_message_dms_uim_get_ck_status_output_get_result, function in DMS UIM Get CK Status -
-
-
-qmi_message_dms_uim_get_ck_status_output_ref, function in DMS UIM Get CK Status -
-
-
-qmi_message_dms_uim_get_ck_status_output_unref, function in DMS UIM Get CK Status -
-
-
-qmi_message_dms_uim_get_iccid_output_get_iccid, function in DMS UIM Get ICCID -
-
-
-qmi_message_dms_uim_get_iccid_output_get_result, function in DMS UIM Get ICCID -
-
-
-qmi_message_dms_uim_get_iccid_output_ref, function in DMS UIM Get ICCID -
-
-
-qmi_message_dms_uim_get_iccid_output_unref, function in DMS UIM Get ICCID -
-
-
-qmi_message_dms_uim_get_imsi_output_get_imsi, function in DMS UIM Get IMSI -
-
-
-qmi_message_dms_uim_get_imsi_output_get_result, function in DMS UIM Get IMSI -
-
-
-qmi_message_dms_uim_get_imsi_output_ref, function in DMS UIM Get IMSI -
-
-
-qmi_message_dms_uim_get_imsi_output_unref, function in DMS UIM Get IMSI -
-
-
-qmi_message_dms_uim_get_pin_status_output_get_pin1_status, function in DMS UIM Get PIN Status -
-
-
-qmi_message_dms_uim_get_pin_status_output_get_pin2_status, function in DMS UIM Get PIN Status -
-
-
-qmi_message_dms_uim_get_pin_status_output_get_result, function in DMS UIM Get PIN Status -
-
-
-qmi_message_dms_uim_get_pin_status_output_ref, function in DMS UIM Get PIN Status -
-
-
-qmi_message_dms_uim_get_pin_status_output_unref, function in DMS UIM Get PIN Status -
-
-
-qmi_message_dms_uim_get_state_output_get_result, function in DMS UIM Get State -
-
-
-qmi_message_dms_uim_get_state_output_get_state, function in DMS UIM Get State -
-
-
-qmi_message_dms_uim_get_state_output_ref, function in DMS UIM Get State -
-
-
-qmi_message_dms_uim_get_state_output_unref, function in DMS UIM Get State -
-
-
-qmi_message_dms_uim_set_ck_protection_input_get_facility, function in DMS UIM Set CK Protection -
-
-
-qmi_message_dms_uim_set_ck_protection_input_new, function in DMS UIM Set CK Protection -
-
-
-qmi_message_dms_uim_set_ck_protection_input_ref, function in DMS UIM Set CK Protection -
-
-
-qmi_message_dms_uim_set_ck_protection_input_set_facility, function in DMS UIM Set CK Protection -
-
-
-qmi_message_dms_uim_set_ck_protection_input_unref, function in DMS UIM Set CK Protection -
-
-
-qmi_message_dms_uim_set_ck_protection_output_get_result, function in DMS UIM Set CK Protection -
-
-
-qmi_message_dms_uim_set_ck_protection_output_get_verify_retries_left, function in DMS UIM Set CK Protection -
-
-
-qmi_message_dms_uim_set_ck_protection_output_ref, function in DMS UIM Set CK Protection -
-
-
-qmi_message_dms_uim_set_ck_protection_output_unref, function in DMS UIM Set CK Protection -
-
-
-qmi_message_dms_uim_set_pin_protection_input_get_info, function in DMS UIM Set PIN Protection -
-
-
-qmi_message_dms_uim_set_pin_protection_input_new, function in DMS UIM Set PIN Protection -
-
-
-qmi_message_dms_uim_set_pin_protection_input_ref, function in DMS UIM Set PIN Protection -
-
-
-qmi_message_dms_uim_set_pin_protection_input_set_info, function in DMS UIM Set PIN Protection -
-
-
-qmi_message_dms_uim_set_pin_protection_input_unref, function in DMS UIM Set PIN Protection -
-
-
-qmi_message_dms_uim_set_pin_protection_output_get_pin_retries_status, function in DMS UIM Set PIN Protection -
-
-
-qmi_message_dms_uim_set_pin_protection_output_get_result, function in DMS UIM Set PIN Protection -
-
-
-qmi_message_dms_uim_set_pin_protection_output_ref, function in DMS UIM Set PIN Protection -
-
-
-qmi_message_dms_uim_set_pin_protection_output_unref, function in DMS UIM Set PIN Protection -
-
-
-qmi_message_dms_uim_unblock_ck_input_get_facility, function in DMS UIM Unblock CK -
-
-
-qmi_message_dms_uim_unblock_ck_input_new, function in DMS UIM Unblock CK -
-
-
-qmi_message_dms_uim_unblock_ck_input_ref, function in DMS UIM Unblock CK -
-
-
-qmi_message_dms_uim_unblock_ck_input_set_facility, function in DMS UIM Unblock CK -
-
-
-qmi_message_dms_uim_unblock_ck_input_unref, function in DMS UIM Unblock CK -
-
-
-qmi_message_dms_uim_unblock_ck_output_get_result, function in DMS UIM Unblock CK -
-
-
-qmi_message_dms_uim_unblock_ck_output_get_unblock_retries_left, function in DMS UIM Unblock CK -
-
-
-qmi_message_dms_uim_unblock_ck_output_ref, function in DMS UIM Unblock CK -
-
-
-qmi_message_dms_uim_unblock_ck_output_unref, function in DMS UIM Unblock CK -
-
-
-qmi_message_dms_uim_unblock_pin_input_get_info, function in DMS UIM Unblock PIN -
-
-
-qmi_message_dms_uim_unblock_pin_input_new, function in DMS UIM Unblock PIN -
-
-
-qmi_message_dms_uim_unblock_pin_input_ref, function in DMS UIM Unblock PIN -
-
-
-qmi_message_dms_uim_unblock_pin_input_set_info, function in DMS UIM Unblock PIN -
-
-
-qmi_message_dms_uim_unblock_pin_input_unref, function in DMS UIM Unblock PIN -
-
-
-qmi_message_dms_uim_unblock_pin_output_get_pin_retries_status, function in DMS UIM Unblock PIN -
-
-
-qmi_message_dms_uim_unblock_pin_output_get_result, function in DMS UIM Unblock PIN -
-
-
-qmi_message_dms_uim_unblock_pin_output_ref, function in DMS UIM Unblock PIN -
-
-
-qmi_message_dms_uim_unblock_pin_output_unref, function in DMS UIM Unblock PIN -
-
-
-qmi_message_dms_uim_verify_pin_input_get_info, function in DMS UIM Verify PIN -
-
-
-qmi_message_dms_uim_verify_pin_input_new, function in DMS UIM Verify PIN -
-
-
-qmi_message_dms_uim_verify_pin_input_ref, function in DMS UIM Verify PIN -
-
-
-qmi_message_dms_uim_verify_pin_input_set_info, function in DMS UIM Verify PIN -
-
-
-qmi_message_dms_uim_verify_pin_input_unref, function in DMS UIM Verify PIN -
-
-
-qmi_message_dms_uim_verify_pin_output_get_pin_retries_status, function in DMS UIM Verify PIN -
-
-
-qmi_message_dms_uim_verify_pin_output_get_result, function in DMS UIM Verify PIN -
-
-
-qmi_message_dms_uim_verify_pin_output_ref, function in DMS UIM Verify PIN -
-
-
-qmi_message_dms_uim_verify_pin_output_unref, function in DMS UIM Verify PIN -
-
-
-qmi_message_dms_validate_service_programming_code_input_get_service_programming_code, function in DMS Validate Service Programming Code -
-
-
-qmi_message_dms_validate_service_programming_code_input_new, function in DMS Validate Service Programming Code -
-
-
-qmi_message_dms_validate_service_programming_code_input_ref, function in DMS Validate Service Programming Code -
-
-
-qmi_message_dms_validate_service_programming_code_input_set_service_programming_code, function in DMS Validate Service Programming Code -
-
-
-qmi_message_dms_validate_service_programming_code_input_unref, function in DMS Validate Service Programming Code -
-
-
-qmi_message_dms_validate_service_programming_code_output_get_result, function in DMS Validate Service Programming Code -
-
-
-qmi_message_dms_validate_service_programming_code_output_ref, function in DMS Validate Service Programming Code -
-
-
-qmi_message_dms_validate_service_programming_code_output_unref, function in DMS Validate Service Programming Code -
-
-
-qmi_message_dms_write_user_data_input_get_user_data, function in DMS Write User Data -
-
-
-qmi_message_dms_write_user_data_input_new, function in DMS Write User Data -
-
-
-qmi_message_dms_write_user_data_input_ref, function in DMS Write User Data -
-
-
-qmi_message_dms_write_user_data_input_set_user_data, function in DMS Write User Data -
-
-
-qmi_message_dms_write_user_data_input_unref, function in DMS Write User Data -
-
-
-qmi_message_dms_write_user_data_output_get_result, function in DMS Write User Data -
-
-
-qmi_message_dms_write_user_data_output_ref, function in DMS Write User Data -
-
-
-qmi_message_dms_write_user_data_output_unref, function in DMS Write User Data -
-
-
-qmi_message_foreach_raw_tlv, function in QmiMessage -
-
-
-qmi_message_get_client_id, function in QmiMessage -
-
-
-qmi_message_get_length, function in QmiMessage -
-
-
-qmi_message_get_message_id, function in QmiMessage -
-
-
-qmi_message_get_printable, function in QmiMessage -
-
-
-qmi_message_get_raw, function in QmiMessage -
-
-
-qmi_message_get_raw_tlv, function in QmiMessage -
-
-
-qmi_message_get_service, function in QmiMessage -
-
-
-qmi_message_get_tlv_printable, function in QmiMessage -
-
-
-qmi_message_get_transaction_id, function in QmiMessage -
-
-
-qmi_message_get_version_introduced, function in QmiMessage -
-
-
-qmi_message_is_indication, function in QmiMessage -
-
-
-qmi_message_is_response, function in QmiMessage -
-
-
-qmi_message_nas_config_signal_info_input_get_ecio_threshold, function in NAS Config Signal Info -
-
-
-qmi_message_nas_config_signal_info_input_get_io_threshold, function in NAS Config Signal Info -
-
-
-qmi_message_nas_config_signal_info_input_get_lte_report, function in NAS Config Signal Info -
-
-
-qmi_message_nas_config_signal_info_input_get_lte_snr_threshold, function in NAS Config Signal Info -
-
-
-qmi_message_nas_config_signal_info_input_get_rscp_threshold, function in NAS Config Signal Info -
-
-
-qmi_message_nas_config_signal_info_input_get_rsrp_threshold, function in NAS Config Signal Info -
-
-
-qmi_message_nas_config_signal_info_input_get_rsrq_threshold, function in NAS Config Signal Info -
-
-
-qmi_message_nas_config_signal_info_input_get_rssi_threshold, function in NAS Config Signal Info -
-
-
-qmi_message_nas_config_signal_info_input_get_sinr_threshold, function in NAS Config Signal Info -
-
-
-qmi_message_nas_config_signal_info_input_new, function in NAS Config Signal Info -
-
-
-qmi_message_nas_config_signal_info_input_ref, function in NAS Config Signal Info -
-
-
-qmi_message_nas_config_signal_info_input_set_ecio_threshold, function in NAS Config Signal Info -
-
-
-qmi_message_nas_config_signal_info_input_set_io_threshold, function in NAS Config Signal Info -
-
-
-qmi_message_nas_config_signal_info_input_set_lte_report, function in NAS Config Signal Info -
-
-
-qmi_message_nas_config_signal_info_input_set_lte_snr_threshold, function in NAS Config Signal Info -
-
-
-qmi_message_nas_config_signal_info_input_set_rscp_threshold, function in NAS Config Signal Info -
-
-
-qmi_message_nas_config_signal_info_input_set_rsrp_threshold, function in NAS Config Signal Info -
-
-
-qmi_message_nas_config_signal_info_input_set_rsrq_threshold, function in NAS Config Signal Info -
-
-
-qmi_message_nas_config_signal_info_input_set_rssi_threshold, function in NAS Config Signal Info -
-
-
-qmi_message_nas_config_signal_info_input_set_sinr_threshold, function in NAS Config Signal Info -
-
-
-qmi_message_nas_config_signal_info_input_unref, function in NAS Config Signal Info -
-
-
-qmi_message_nas_config_signal_info_output_get_result, function in NAS Config Signal Info -
-
-
-qmi_message_nas_config_signal_info_output_ref, function in NAS Config Signal Info -
-
-
-qmi_message_nas_config_signal_info_output_unref, function in NAS Config Signal Info -
-
-
-qmi_message_nas_get_cdma_position_info_output_get_cdma_position_info, function in NAS Get CDMA Position Info -
-
-
-qmi_message_nas_get_cdma_position_info_output_get_result, function in NAS Get CDMA Position Info -
-
-
-qmi_message_nas_get_cdma_position_info_output_ref, function in NAS Get CDMA Position Info -
-
-
-qmi_message_nas_get_cdma_position_info_output_unref, function in NAS Get CDMA Position Info -
-
-
-qmi_message_nas_get_home_network_output_get_home_network, function in NAS Get Home Network -
-
-
-qmi_message_nas_get_home_network_output_get_home_network_3gpp2, function in NAS Get Home Network -
-
-
-qmi_message_nas_get_home_network_output_get_home_network_3gpp_mnc, function in NAS Get Home Network -
-
-
-qmi_message_nas_get_home_network_output_get_home_system_id, function in NAS Get Home Network -
-
-
-qmi_message_nas_get_home_network_output_get_result, function in NAS Get Home Network -
-
-
-qmi_message_nas_get_home_network_output_ref, function in NAS Get Home Network -
-
-
-qmi_message_nas_get_home_network_output_unref, function in NAS Get Home Network -
-
-
-qmi_message_nas_get_rf_band_information_output_get_list, function in NAS Get RF Band Information -
-
-
-qmi_message_nas_get_rf_band_information_output_get_result, function in NAS Get RF Band Information -
-
-
-qmi_message_nas_get_rf_band_information_output_ref, function in NAS Get RF Band Information -
-
-
-qmi_message_nas_get_rf_band_information_output_unref, function in NAS Get RF Band Information -
-
-
-qmi_message_nas_get_serving_system_output_get_call_barring_status, function in NAS Get Serving System -
-
-
-qmi_message_nas_get_serving_system_output_get_cdma_base_station_info, function in NAS Get Serving System -
-
-
-qmi_message_nas_get_serving_system_output_get_cdma_p_rev, function in NAS Get Serving System -
-
-
-qmi_message_nas_get_serving_system_output_get_cdma_system_id, function in NAS Get Serving System -
-
-
-qmi_message_nas_get_serving_system_output_get_cdma_system_info, function in NAS Get Serving System -
-
-
-qmi_message_nas_get_serving_system_output_get_cid_3gpp, function in NAS Get Serving System -
-
-
-qmi_message_nas_get_serving_system_output_get_concurrent_service_info_3gpp2, function in NAS Get Serving System -
-
-
-qmi_message_nas_get_serving_system_output_get_current_plmn, function in NAS Get Serving System -
-
-
-qmi_message_nas_get_serving_system_output_get_data_service_capability, function in NAS Get Serving System -
-
-
-qmi_message_nas_get_serving_system_output_get_daylight_saving_time_adjustment_3gpp, function in NAS Get Serving System -
-
-
-qmi_message_nas_get_serving_system_output_get_default_roaming_indicator, function in NAS Get Serving System -
-
-
-qmi_message_nas_get_serving_system_output_get_detailed_service_status, function in NAS Get Serving System -
-
-
-qmi_message_nas_get_serving_system_output_get_dtm_support, function in NAS Get Serving System -
-
-
-qmi_message_nas_get_serving_system_output_get_hdr_personality, function in NAS Get Serving System -
-
-
-qmi_message_nas_get_serving_system_output_get_lac_3gpp, function in NAS Get Serving System -
-
-
-qmi_message_nas_get_serving_system_output_get_lte_tac, function in NAS Get Serving System -
-
-
-qmi_message_nas_get_serving_system_output_get_mnc_pcs_digit_include_status, function in NAS Get Serving System -
-
-
-qmi_message_nas_get_serving_system_output_get_prl_indicator_3gpp2, function in NAS Get Serving System -
-
-
-qmi_message_nas_get_serving_system_output_get_result, function in NAS Get Serving System -
-
-
-qmi_message_nas_get_serving_system_output_get_roaming_indicator, function in NAS Get Serving System -
-
-
-qmi_message_nas_get_serving_system_output_get_roaming_indicator_list, function in NAS Get Serving System -
-
-
-qmi_message_nas_get_serving_system_output_get_serving_system, function in NAS Get Serving System -
-
-
-qmi_message_nas_get_serving_system_output_get_time_zone_3gpp, function in NAS Get Serving System -
-
-
-qmi_message_nas_get_serving_system_output_get_time_zone_3gpp2, function in NAS Get Serving System -
-
-
-qmi_message_nas_get_serving_system_output_get_umts_primary_scrambling_code, function in NAS Get Serving System -
-
-
-qmi_message_nas_get_serving_system_output_ref, function in NAS Get Serving System -
-
-
-qmi_message_nas_get_serving_system_output_unref, function in NAS Get Serving System -
-
-
-qmi_message_nas_get_signal_info_output_get_cdma_signal_strength, function in NAS Get Signal Info -
-
-
-qmi_message_nas_get_signal_info_output_get_gsm_signal_strength, function in NAS Get Signal Info -
-
-
-qmi_message_nas_get_signal_info_output_get_hdr_signal_strength, function in NAS Get Signal Info -
-
-
-qmi_message_nas_get_signal_info_output_get_lte_signal_strength, function in NAS Get Signal Info -
-
-
-qmi_message_nas_get_signal_info_output_get_result, function in NAS Get Signal Info -
-
-
-qmi_message_nas_get_signal_info_output_get_tdma_signal_strength, function in NAS Get Signal Info -
-
-
-qmi_message_nas_get_signal_info_output_get_wcdma_signal_strength, function in NAS Get Signal Info -
-
-
-qmi_message_nas_get_signal_info_output_ref, function in NAS Get Signal Info -
-
-
-qmi_message_nas_get_signal_info_output_unref, function in NAS Get Signal Info -
-
-
-qmi_message_nas_get_signal_strength_input_get_request_mask, function in NAS Get Signal Strength -
-
-
-qmi_message_nas_get_signal_strength_input_new, function in NAS Get Signal Strength -
-
-
-qmi_message_nas_get_signal_strength_input_ref, function in NAS Get Signal Strength -
-
-
-qmi_message_nas_get_signal_strength_input_set_request_mask, function in NAS Get Signal Strength -
-
-
-qmi_message_nas_get_signal_strength_input_unref, function in NAS Get Signal Strength -
-
-
-qmi_message_nas_get_signal_strength_output_get_ecio_list, function in NAS Get Signal Strength -
-
-
-qmi_message_nas_get_signal_strength_output_get_error_rate_list, function in NAS Get Signal Strength -
-
-
-qmi_message_nas_get_signal_strength_output_get_io, function in NAS Get Signal Strength -
-
-
-qmi_message_nas_get_signal_strength_output_get_lte_rsrp, function in NAS Get Signal Strength -
-
-
-qmi_message_nas_get_signal_strength_output_get_lte_snr, function in NAS Get Signal Strength -
-
-
-qmi_message_nas_get_signal_strength_output_get_result, function in NAS Get Signal Strength -
-
-
-qmi_message_nas_get_signal_strength_output_get_rsrq, function in NAS Get Signal Strength -
-
-
-qmi_message_nas_get_signal_strength_output_get_rssi_list, function in NAS Get Signal Strength -
-
-
-qmi_message_nas_get_signal_strength_output_get_signal_strength, function in NAS Get Signal Strength -
-
-
-qmi_message_nas_get_signal_strength_output_get_sinr, function in NAS Get Signal Strength -
-
-
-qmi_message_nas_get_signal_strength_output_get_strength_list, function in NAS Get Signal Strength -
-
-
-qmi_message_nas_get_signal_strength_output_ref, function in NAS Get Signal Strength -
-
-
-qmi_message_nas_get_signal_strength_output_unref, function in NAS Get Signal Strength -
-
-
-qmi_message_nas_get_supported_messages_output_get_list, function in NAS Get Supported Messages -
-
-
-qmi_message_nas_get_system_info_output_get_additional_cdma_system_info, function in NAS Get System Info -
-
-
-qmi_message_nas_get_system_info_output_get_additional_gsm_system_info, function in NAS Get System Info -
-
-
-qmi_message_nas_get_system_info_output_get_additional_hdr_system_info, function in NAS Get System Info -
-
-
-qmi_message_nas_get_system_info_output_get_additional_lte_system_info, function in NAS Get System Info -
-
-
-qmi_message_nas_get_system_info_output_get_additional_wcdma_system_info, function in NAS Get System Info -
-
-
-qmi_message_nas_get_system_info_output_get_cdma_service_status, function in NAS Get System Info -
-
-
-qmi_message_nas_get_system_info_output_get_cdma_system_info, function in NAS Get System Info -
-
-
-qmi_message_nas_get_system_info_output_get_gsm_call_barring_status, function in NAS Get System Info -
-
-
-qmi_message_nas_get_system_info_output_get_gsm_cipher_domain, function in NAS Get System Info -
-
-
-qmi_message_nas_get_system_info_output_get_gsm_service_status, function in NAS Get System Info -
-
-
-qmi_message_nas_get_system_info_output_get_gsm_system_info, function in NAS Get System Info -
-
-
-qmi_message_nas_get_system_info_output_get_hdr_service_status, function in NAS Get System Info -
-
-
-qmi_message_nas_get_system_info_output_get_hdr_system_info, function in NAS Get System Info -
-
-
-qmi_message_nas_get_system_info_output_get_lte_embms_coverage_info_support, function in NAS Get System Info -
-
-
-qmi_message_nas_get_system_info_output_get_lte_service_status, function in NAS Get System Info -
-
-
-qmi_message_nas_get_system_info_output_get_lte_system_info, function in NAS Get System Info -
-
-
-qmi_message_nas_get_system_info_output_get_lte_voice_support, function in NAS Get System Info -
-
-
-qmi_message_nas_get_system_info_output_get_result, function in NAS Get System Info -
-
-
-qmi_message_nas_get_system_info_output_get_sim_reject_info, function in NAS Get System Info -
-
-
-qmi_message_nas_get_system_info_output_get_td_scdma_service_status, function in NAS Get System Info -
-
-
-qmi_message_nas_get_system_info_output_get_td_scdma_system_info, function in NAS Get System Info -
-
-
-qmi_message_nas_get_system_info_output_get_wcdma_call_barring_status, function in NAS Get System Info -
-
-
-qmi_message_nas_get_system_info_output_get_wcdma_cipher_domain, function in NAS Get System Info -
-
-
-qmi_message_nas_get_system_info_output_get_wcdma_service_status, function in NAS Get System Info -
-
-
-qmi_message_nas_get_system_info_output_get_wcdma_system_info, function in NAS Get System Info -
-
-
-qmi_message_nas_get_system_info_output_ref, function in NAS Get System Info -
-
-
-qmi_message_nas_get_system_info_output_unref, function in NAS Get System Info -
-
-
-qmi_message_nas_get_system_selection_preference_output_get_band_preference, function in NAS Get System Selection Preference -
-
-
-qmi_message_nas_get_system_selection_preference_output_get_cdma_prl_preference, function in NAS Get System Selection Preference -
-
-
-qmi_message_nas_get_system_selection_preference_output_get_emergency_mode, function in NAS Get System Selection Preference -
-
-
-qmi_message_nas_get_system_selection_preference_output_get_gsm_wcdma_acquisition_order_preference, function in NAS Get System Selection Preference -
-
-
-qmi_message_nas_get_system_selection_preference_output_get_lte_band_preference, function in NAS Get System Selection Preference -
-
-
-qmi_message_nas_get_system_selection_preference_output_get_manual_network_selection, function in NAS Get System Selection Preference -
-
-
-qmi_message_nas_get_system_selection_preference_output_get_mode_preference, function in NAS Get System Selection Preference -
-
-
-qmi_message_nas_get_system_selection_preference_output_get_network_selection_preference, function in NAS Get System Selection Preference -
-
-
-qmi_message_nas_get_system_selection_preference_output_get_result, function in NAS Get System Selection Preference -
-
-
-qmi_message_nas_get_system_selection_preference_output_get_roaming_preference, function in NAS Get System Selection Preference -
-
-
-qmi_message_nas_get_system_selection_preference_output_get_service_domain_preference, function in NAS Get System Selection Preference -
-
-
-qmi_message_nas_get_system_selection_preference_output_get_td_scdma_band_preference, function in NAS Get System Selection Preference -
-
-
-qmi_message_nas_get_system_selection_preference_output_ref, function in NAS Get System Selection Preference -
-
-
-qmi_message_nas_get_system_selection_preference_output_unref, function in NAS Get System Selection Preference -
-
-
-qmi_message_nas_get_technology_preference_output_get_active, function in NAS Get Technology Preference -
-
-
-qmi_message_nas_get_technology_preference_output_get_persistent, function in NAS Get Technology Preference -
-
-
-qmi_message_nas_get_technology_preference_output_get_result, function in NAS Get Technology Preference -
-
-
-qmi_message_nas_get_technology_preference_output_ref, function in NAS Get Technology Preference -
-
-
-qmi_message_nas_get_technology_preference_output_unref, function in NAS Get Technology Preference -
-
-
-qmi_message_nas_initiate_network_register_input_get_action, function in NAS Initiate Network Register -
-
-
-qmi_message_nas_initiate_network_register_input_get_change_duration, function in NAS Initiate Network Register -
-
-
-qmi_message_nas_initiate_network_register_input_get_manual_registration_info_3gpp, function in NAS Initiate Network Register -
-
-
-qmi_message_nas_initiate_network_register_input_get_mnc_pcs_digit_include_status, function in NAS Initiate Network Register -
-
-
-qmi_message_nas_initiate_network_register_input_new, function in NAS Initiate Network Register -
-
-
-qmi_message_nas_initiate_network_register_input_ref, function in NAS Initiate Network Register -
-
-
-qmi_message_nas_initiate_network_register_input_set_action, function in NAS Initiate Network Register -
-
-
-qmi_message_nas_initiate_network_register_input_set_change_duration, function in NAS Initiate Network Register -
-
-
-qmi_message_nas_initiate_network_register_input_set_manual_registration_info_3gpp, function in NAS Initiate Network Register -
-
-
-qmi_message_nas_initiate_network_register_input_set_mnc_pcs_digit_include_status, function in NAS Initiate Network Register -
-
-
-qmi_message_nas_initiate_network_register_input_unref, function in NAS Initiate Network Register -
-
-
-qmi_message_nas_initiate_network_register_output_get_result, function in NAS Initiate Network Register -
-
-
-qmi_message_nas_initiate_network_register_output_ref, function in NAS Initiate Network Register -
-
-
-qmi_message_nas_initiate_network_register_output_unref, function in NAS Initiate Network Register -
-
-
-qmi_message_nas_network_scan_input_get_network_type, function in NAS Network Scan -
-
-
-qmi_message_nas_network_scan_input_new, function in NAS Network Scan -
-
-
-qmi_message_nas_network_scan_input_ref, function in NAS Network Scan -
-
-
-qmi_message_nas_network_scan_input_set_network_type, function in NAS Network Scan -
-
-
-qmi_message_nas_network_scan_input_unref, function in NAS Network Scan -
-
-
-qmi_message_nas_network_scan_output_get_mnc_pcs_digit_include_status, function in NAS Network Scan -
-
-
-qmi_message_nas_network_scan_output_get_network_information, function in NAS Network Scan -
-
-
-qmi_message_nas_network_scan_output_get_radio_access_technology, function in NAS Network Scan -
-
-
-qmi_message_nas_network_scan_output_get_result, function in NAS Network Scan -
-
-
-qmi_message_nas_network_scan_output_ref, function in NAS Network Scan -
-
-
-qmi_message_nas_network_scan_output_unref, function in NAS Network Scan -
-
-
-qmi_message_nas_register_indications_input_get_current_plmn_name, function in NAS Register Indications -
-
-
-qmi_message_nas_register_indications_input_get_ddtm_events, function in NAS Register Indications -
-
-
-qmi_message_nas_register_indications_input_get_dual_standby_preference, function in NAS Register Indications -
-
-
-qmi_message_nas_register_indications_input_get_embms_status, function in NAS Register Indications -
-
-
-qmi_message_nas_register_indications_input_get_error_rate, function in NAS Register Indications -
-
-
-qmi_message_nas_register_indications_input_get_hdr_new_uati_assigned, function in NAS Register Indications -
-
-
-qmi_message_nas_register_indications_input_get_hdr_session_closed, function in NAS Register Indications -
-
-
-qmi_message_nas_register_indications_input_get_managed_roaming, function in NAS Register Indications -
-
-
-qmi_message_nas_register_indications_input_get_network_time, function in NAS Register Indications -
-
-
-qmi_message_nas_register_indications_input_get_rf_band_information, function in NAS Register Indications -
-
-
-qmi_message_nas_register_indications_input_get_serving_system_events, function in NAS Register Indications -
-
-
-qmi_message_nas_register_indications_input_get_signal_info, function in NAS Register Indications -
-
-
-qmi_message_nas_register_indications_input_get_subscription_info, function in NAS Register Indications -
-
-
-qmi_message_nas_register_indications_input_get_system_info, function in NAS Register Indications -
-
-
-qmi_message_nas_register_indications_input_get_system_selection_preference, function in NAS Register Indications -
-
-
-qmi_message_nas_register_indications_input_new, function in NAS Register Indications -
-
-
-qmi_message_nas_register_indications_input_ref, function in NAS Register Indications -
-
-
-qmi_message_nas_register_indications_input_set_current_plmn_name, function in NAS Register Indications -
-
-
-qmi_message_nas_register_indications_input_set_ddtm_events, function in NAS Register Indications -
-
-
-qmi_message_nas_register_indications_input_set_dual_standby_preference, function in NAS Register Indications -
-
-
-qmi_message_nas_register_indications_input_set_embms_status, function in NAS Register Indications -
-
-
-qmi_message_nas_register_indications_input_set_error_rate, function in NAS Register Indications -
-
-
-qmi_message_nas_register_indications_input_set_hdr_new_uati_assigned, function in NAS Register Indications -
-
-
-qmi_message_nas_register_indications_input_set_hdr_session_closed, function in NAS Register Indications -
-
-
-qmi_message_nas_register_indications_input_set_managed_roaming, function in NAS Register Indications -
-
-
-qmi_message_nas_register_indications_input_set_network_time, function in NAS Register Indications -
-
-
-qmi_message_nas_register_indications_input_set_rf_band_information, function in NAS Register Indications -
-
-
-qmi_message_nas_register_indications_input_set_serving_system_events, function in NAS Register Indications -
-
-
-qmi_message_nas_register_indications_input_set_signal_info, function in NAS Register Indications -
-
-
-qmi_message_nas_register_indications_input_set_subscription_info, function in NAS Register Indications -
-
-
-qmi_message_nas_register_indications_input_set_system_info, function in NAS Register Indications -
-
-
-qmi_message_nas_register_indications_input_set_system_selection_preference, function in NAS Register Indications -
-
-
-qmi_message_nas_register_indications_input_unref, function in NAS Register Indications -
-
-
-qmi_message_nas_register_indications_output_get_result, function in NAS Register Indications -
-
-
-qmi_message_nas_register_indications_output_ref, function in NAS Register Indications -
-
-
-qmi_message_nas_register_indications_output_unref, function in NAS Register Indications -
-
-
-qmi_message_nas_reset_output_get_result, function in NAS Reset -
-
-
-qmi_message_nas_reset_output_ref, function in NAS Reset -
-
-
-qmi_message_nas_reset_output_unref, function in NAS Reset -
-
-
-qmi_message_nas_set_event_report_input_get_ecio_indicator, function in NAS Set Event Report -
-
-
-qmi_message_nas_set_event_report_input_get_ecio_threshold, function in NAS Set Event Report -
-
-
-qmi_message_nas_set_event_report_input_get_error_rate_indicator, function in NAS Set Event Report -
-
-
-qmi_message_nas_set_event_report_input_get_io_indicator, function in NAS Set Event Report -
-
-
-qmi_message_nas_set_event_report_input_get_lte_rsrp_delta, function in NAS Set Event Report -
-
-
-qmi_message_nas_set_event_report_input_get_lte_snr_delta, function in NAS Set Event Report -
-
-
-qmi_message_nas_set_event_report_input_get_registration_reject_reason, function in NAS Set Event Report -
-
-
-qmi_message_nas_set_event_report_input_get_rf_band_information, function in NAS Set Event Report -
-
-
-qmi_message_nas_set_event_report_input_get_rssi_indicator, function in NAS Set Event Report -
-
-
-qmi_message_nas_set_event_report_input_get_signal_strength_indicator, function in NAS Set Event Report -
-
-
-qmi_message_nas_set_event_report_input_get_sinr_indicator, function in NAS Set Event Report -
-
-
-qmi_message_nas_set_event_report_input_get_sinr_threshold, function in NAS Set Event Report -
-
-
-qmi_message_nas_set_event_report_input_new, function in NAS Set Event Report -
-
-
-qmi_message_nas_set_event_report_input_ref, function in NAS Set Event Report -
-
-
-qmi_message_nas_set_event_report_input_set_ecio_indicator, function in NAS Set Event Report -
-
-
-qmi_message_nas_set_event_report_input_set_ecio_threshold, function in NAS Set Event Report -
-
-
-qmi_message_nas_set_event_report_input_set_error_rate_indicator, function in NAS Set Event Report -
-
-
-qmi_message_nas_set_event_report_input_set_io_indicator, function in NAS Set Event Report -
-
-
-qmi_message_nas_set_event_report_input_set_lte_rsrp_delta, function in NAS Set Event Report -
-
-
-qmi_message_nas_set_event_report_input_set_lte_snr_delta, function in NAS Set Event Report -
-
-
-qmi_message_nas_set_event_report_input_set_registration_reject_reason, function in NAS Set Event Report -
-
-
-qmi_message_nas_set_event_report_input_set_rf_band_information, function in NAS Set Event Report -
-
-
-qmi_message_nas_set_event_report_input_set_rssi_indicator, function in NAS Set Event Report -
-
-
-qmi_message_nas_set_event_report_input_set_signal_strength_indicator, function in NAS Set Event Report -
-
-
-qmi_message_nas_set_event_report_input_set_sinr_indicator, function in NAS Set Event Report -
-
-
-qmi_message_nas_set_event_report_input_set_sinr_threshold, function in NAS Set Event Report -
-
-
-qmi_message_nas_set_event_report_input_unref, function in NAS Set Event Report -
-
-
-qmi_message_nas_set_event_report_output_get_result, function in NAS Set Event Report -
-
-
-qmi_message_nas_set_event_report_output_ref, function in NAS Set Event Report -
-
-
-qmi_message_nas_set_event_report_output_unref, function in NAS Set Event Report -
-
-
-qmi_message_nas_set_system_selection_preference_input_get_band_preference, function in NAS Set System Selection Preference -
-
-
-qmi_message_nas_set_system_selection_preference_input_get_cdma_prl_preference, function in NAS Set System Selection Preference -
-
-
-qmi_message_nas_set_system_selection_preference_input_get_change_duration, function in NAS Set System Selection Preference -
-
-
-qmi_message_nas_set_system_selection_preference_input_get_emergency_mode, function in NAS Set System Selection Preference -
-
-
-qmi_message_nas_set_system_selection_preference_input_get_gsm_wcdma_acquisition_order_preference, function in NAS Set System Selection Preference -
-
-
-qmi_message_nas_set_system_selection_preference_input_get_lte_band_preference, function in NAS Set System Selection Preference -
-
-
-qmi_message_nas_set_system_selection_preference_input_get_mnc_pds_digit_include_status, function in NAS Set System Selection Preference -
-
-
-qmi_message_nas_set_system_selection_preference_input_get_mode_preference, function in NAS Set System Selection Preference -
-
-
-qmi_message_nas_set_system_selection_preference_input_get_network_selection_preference, function in NAS Set System Selection Preference -
-
-
-qmi_message_nas_set_system_selection_preference_input_get_roaming_preference, function in NAS Set System Selection Preference -
-
-
-qmi_message_nas_set_system_selection_preference_input_get_service_domain_preference, function in NAS Set System Selection Preference -
-
-
-qmi_message_nas_set_system_selection_preference_input_get_td_scdma_band_preference, function in NAS Set System Selection Preference -
-
-
-qmi_message_nas_set_system_selection_preference_input_new, function in NAS Set System Selection Preference -
-
-
-qmi_message_nas_set_system_selection_preference_input_ref, function in NAS Set System Selection Preference -
-
-
-qmi_message_nas_set_system_selection_preference_input_set_band_preference, function in NAS Set System Selection Preference -
-
-
-qmi_message_nas_set_system_selection_preference_input_set_cdma_prl_preference, function in NAS Set System Selection Preference -
-
-
-qmi_message_nas_set_system_selection_preference_input_set_change_duration, function in NAS Set System Selection Preference -
-
-
-qmi_message_nas_set_system_selection_preference_input_set_emergency_mode, function in NAS Set System Selection Preference -
-
-
-qmi_message_nas_set_system_selection_preference_input_set_gsm_wcdma_acquisition_order_preference, function in NAS Set System Selection Preference -
-
-
-qmi_message_nas_set_system_selection_preference_input_set_lte_band_preference, function in NAS Set System Selection Preference -
-
-
-qmi_message_nas_set_system_selection_preference_input_set_mnc_pds_digit_include_status, function in NAS Set System Selection Preference -
-
-
-qmi_message_nas_set_system_selection_preference_input_set_mode_preference, function in NAS Set System Selection Preference -
-
-
-qmi_message_nas_set_system_selection_preference_input_set_network_selection_preference, function in NAS Set System Selection Preference -
-
-
-qmi_message_nas_set_system_selection_preference_input_set_roaming_preference, function in NAS Set System Selection Preference -
-
-
-qmi_message_nas_set_system_selection_preference_input_set_service_domain_preference, function in NAS Set System Selection Preference -
-
-
-qmi_message_nas_set_system_selection_preference_input_set_td_scdma_band_preference, function in NAS Set System Selection Preference -
-
-
-qmi_message_nas_set_system_selection_preference_input_unref, function in NAS Set System Selection Preference -
-
-
-qmi_message_nas_set_system_selection_preference_output_get_result, function in NAS Set System Selection Preference -
-
-
-qmi_message_nas_set_system_selection_preference_output_ref, function in NAS Set System Selection Preference -
-
-
-qmi_message_nas_set_system_selection_preference_output_unref, function in NAS Set System Selection Preference -
-
-
-qmi_message_nas_set_technology_preference_input_get_current, function in NAS Set Technology Preference -
-
-
-qmi_message_nas_set_technology_preference_input_new, function in NAS Set Technology Preference -
-
-
-qmi_message_nas_set_technology_preference_input_ref, function in NAS Set Technology Preference -
-
-
-qmi_message_nas_set_technology_preference_input_set_current, function in NAS Set Technology Preference -
-
-
-qmi_message_nas_set_technology_preference_input_unref, function in NAS Set Technology Preference -
-
-
-qmi_message_nas_set_technology_preference_output_get_result, function in NAS Set Technology Preference -
-
-
-qmi_message_nas_set_technology_preference_output_ref, function in NAS Set Technology Preference -
-
-
-qmi_message_nas_set_technology_preference_output_unref, function in NAS Set Technology Preference -
-
-
-qmi_message_new, function in QmiMessage -
-
-
-qmi_message_new_from_raw, function in QmiMessage -
-
-
-qmi_message_pds_get_auto_tracking_state_output_get_result, function in PDS Get Auto Tracking State -
-
-
-qmi_message_pds_get_auto_tracking_state_output_get_state, function in PDS Get Auto Tracking State -
-
-
-qmi_message_pds_get_auto_tracking_state_output_ref, function in PDS Get Auto Tracking State -
-
-
-qmi_message_pds_get_auto_tracking_state_output_unref, function in PDS Get Auto Tracking State -
-
-
-qmi_message_pds_get_gps_service_state_output_get_result, function in PDS Get GPS Service State -
-
-
-qmi_message_pds_get_gps_service_state_output_get_state, function in PDS Get GPS Service State -
-
-
-qmi_message_pds_get_gps_service_state_output_ref, function in PDS Get GPS Service State -
-
-
-qmi_message_pds_get_gps_service_state_output_unref, function in PDS Get GPS Service State -
-
-
-qmi_message_pds_reset_output_get_result, function in PDS Reset -
-
-
-qmi_message_pds_reset_output_ref, function in PDS Reset -
-
-
-qmi_message_pds_reset_output_unref, function in PDS Reset -
-
-
-qmi_message_pds_set_auto_tracking_state_input_get_state, function in PDS Set Auto Tracking State -
-
-
-qmi_message_pds_set_auto_tracking_state_input_new, function in PDS Set Auto Tracking State -
-
-
-qmi_message_pds_set_auto_tracking_state_input_ref, function in PDS Set Auto Tracking State -
-
-
-qmi_message_pds_set_auto_tracking_state_input_set_state, function in PDS Set Auto Tracking State -
-
-
-qmi_message_pds_set_auto_tracking_state_input_unref, function in PDS Set Auto Tracking State -
-
-
-qmi_message_pds_set_auto_tracking_state_output_get_result, function in PDS Set Auto Tracking State -
-
-
-qmi_message_pds_set_auto_tracking_state_output_ref, function in PDS Set Auto Tracking State -
-
-
-qmi_message_pds_set_auto_tracking_state_output_unref, function in PDS Set Auto Tracking State -
-
-
-qmi_message_pds_set_event_report_input_get_accelerometer_data_streaming_ready_reporting, function in PDS Set Event Report -
-
-
-qmi_message_pds_set_event_report_input_get_extended_external_xtra_data_request_reporting, function in PDS Set Event Report -
-
-
-qmi_message_pds_set_event_report_input_get_extended_nmea_position_reporting, function in PDS Set Event Report -
-
-
-qmi_message_pds_set_event_report_input_get_external_time_injection_request_reporting, function in PDS Set Event Report -
-
-
-qmi_message_pds_set_event_report_input_get_external_wifi_position_request_reporting, function in PDS Set Event Report -
-
-
-qmi_message_pds_set_event_report_input_get_external_xtra_data_request_reporting, function in PDS Set Event Report -
-
-
-qmi_message_pds_set_event_report_input_get_gyro_data_streaming_ready_reporting, function in PDS Set Event Report -
-
-
-qmi_message_pds_set_event_report_input_get_heading_uncertainty_reporting, function in PDS Set Event Report -
-
-
-qmi_message_pds_set_event_report_input_get_nmea_debug_strings_reporting, function in PDS Set Event Report -
-
-
-qmi_message_pds_set_event_report_input_get_nmea_position_reporting, function in PDS Set Event Report -
-
-
-qmi_message_pds_set_event_report_input_get_parsed_position_reporting, function in PDS Set Event Report -
-
-
-qmi_message_pds_set_event_report_input_get_pds_comm_event_reporting, function in PDS Set Event Report -
-
-
-qmi_message_pds_set_event_report_input_get_position_reliability_indicator_reporting, function in PDS Set Event Report -
-
-
-qmi_message_pds_set_event_report_input_get_satellite_information_reporting, function in PDS Set Event Report -
-
-
-qmi_message_pds_set_event_report_input_get_sensor_data_usage_indicator_reporting, function in PDS Set Event Report -
-
-
-qmi_message_pds_set_event_report_input_get_supl_network_initiated_prompt_reporting, function in PDS Set Event Report -
-
-
-qmi_message_pds_set_event_report_input_get_time_source_information_reporting, function in PDS Set Event Report -
-
-
-qmi_message_pds_set_event_report_input_get_time_sync_request_reporting, function in PDS Set Event Report -
-
-
-qmi_message_pds_set_event_report_input_get_umts_cp_network_initiated_prompt_reporting, function in PDS Set Event Report -
-
-
-qmi_message_pds_set_event_report_input_get_vx_network_initiated_request_reporting, function in PDS Set Event Report -
-
-
-qmi_message_pds_set_event_report_input_new, function in PDS Set Event Report -
-
-
-qmi_message_pds_set_event_report_input_ref, function in PDS Set Event Report -
-
-
-qmi_message_pds_set_event_report_input_set_accelerometer_data_streaming_ready_reporting, function in PDS Set Event Report -
-
-
-qmi_message_pds_set_event_report_input_set_extended_external_xtra_data_request_reporting, function in PDS Set Event Report -
-
-
-qmi_message_pds_set_event_report_input_set_extended_nmea_position_reporting, function in PDS Set Event Report -
-
-
-qmi_message_pds_set_event_report_input_set_external_time_injection_request_reporting, function in PDS Set Event Report -
-
-
-qmi_message_pds_set_event_report_input_set_external_wifi_position_request_reporting, function in PDS Set Event Report -
-
-
-qmi_message_pds_set_event_report_input_set_external_xtra_data_request_reporting, function in PDS Set Event Report -
-
-
-qmi_message_pds_set_event_report_input_set_gyro_data_streaming_ready_reporting, function in PDS Set Event Report -
-
-
-qmi_message_pds_set_event_report_input_set_heading_uncertainty_reporting, function in PDS Set Event Report -
-
-
-qmi_message_pds_set_event_report_input_set_nmea_debug_strings_reporting, function in PDS Set Event Report -
-
-
-qmi_message_pds_set_event_report_input_set_nmea_position_reporting, function in PDS Set Event Report -
-
-
-qmi_message_pds_set_event_report_input_set_parsed_position_reporting, function in PDS Set Event Report -
-
-
-qmi_message_pds_set_event_report_input_set_pds_comm_event_reporting, function in PDS Set Event Report -
-
-
-qmi_message_pds_set_event_report_input_set_position_reliability_indicator_reporting, function in PDS Set Event Report -
-
-
-qmi_message_pds_set_event_report_input_set_satellite_information_reporting, function in PDS Set Event Report -
-
-
-qmi_message_pds_set_event_report_input_set_sensor_data_usage_indicator_reporting, function in PDS Set Event Report -
-
-
-qmi_message_pds_set_event_report_input_set_supl_network_initiated_prompt_reporting, function in PDS Set Event Report -
-
-
-qmi_message_pds_set_event_report_input_set_time_source_information_reporting, function in PDS Set Event Report -
-
-
-qmi_message_pds_set_event_report_input_set_time_sync_request_reporting, function in PDS Set Event Report -
-
-
-qmi_message_pds_set_event_report_input_set_umts_cp_network_initiated_prompt_reporting, function in PDS Set Event Report -
-
-
-qmi_message_pds_set_event_report_input_set_vx_network_initiated_request_reporting, function in PDS Set Event Report -
-
-
-qmi_message_pds_set_event_report_input_unref, function in PDS Set Event Report -
-
-
-qmi_message_pds_set_event_report_output_get_result, function in PDS Set Event Report -
-
-
-qmi_message_pds_set_event_report_output_ref, function in PDS Set Event Report -
-
-
-qmi_message_pds_set_event_report_output_unref, function in PDS Set Event Report -
-
-
-qmi_message_pds_set_gps_service_state_input_get_state, function in PDS Set GPS Service State -
-
-
-qmi_message_pds_set_gps_service_state_input_new, function in PDS Set GPS Service State -
-
-
-qmi_message_pds_set_gps_service_state_input_ref, function in PDS Set GPS Service State -
-
-
-qmi_message_pds_set_gps_service_state_input_set_state, function in PDS Set GPS Service State -
-
-
-qmi_message_pds_set_gps_service_state_input_unref, function in PDS Set GPS Service State -
-
-
-qmi_message_pds_set_gps_service_state_output_get_result, function in PDS Set GPS Service State -
-
-
-qmi_message_pds_set_gps_service_state_output_ref, function in PDS Set GPS Service State -
-
-
-qmi_message_pds_set_gps_service_state_output_unref, function in PDS Set GPS Service State -
-
-
-QMI_MESSAGE_QMUX_MARKER, macro in QmiMessage -
-
-
-qmi_message_ref, function in QmiMessage -
-
-
-qmi_message_unref, function in QmiMessage -
-
-
-qmi_message_wds_get_current_data_bearer_technology_output_get_current, function in WDS Get Current Data Bearer Technology -
-
-
-qmi_message_wds_get_current_data_bearer_technology_output_get_last, function in WDS Get Current Data Bearer Technology -
-
-
-qmi_message_wds_get_current_data_bearer_technology_output_get_result, function in WDS Get Current Data Bearer Technology -
-
-
-qmi_message_wds_get_current_data_bearer_technology_output_ref, function in WDS Get Current Data Bearer Technology -
-
-
-qmi_message_wds_get_current_data_bearer_technology_output_unref, function in WDS Get Current Data Bearer Technology -
-
-
-qmi_message_wds_get_current_settings_input_get_requested_settings, function in WDS Get Current Settings -
-
-
-qmi_message_wds_get_current_settings_input_new, function in WDS Get Current Settings -
-
-
-qmi_message_wds_get_current_settings_input_ref, function in WDS Get Current Settings -
-
-
-qmi_message_wds_get_current_settings_input_set_requested_settings, function in WDS Get Current Settings -
-
-
-qmi_message_wds_get_current_settings_input_unref, function in WDS Get Current Settings -
-
-
-qmi_message_wds_get_current_settings_output_get_apn_name, function in WDS Get Current Settings -
-
-
-qmi_message_wds_get_current_settings_output_get_authentication, function in WDS Get Current Settings -
-
-
-qmi_message_wds_get_current_settings_output_get_domain_name_list, function in WDS Get Current Settings -
-
-
-qmi_message_wds_get_current_settings_output_get_extended_technology_preference, function in WDS Get Current Settings -
-
-
-qmi_message_wds_get_current_settings_output_get_gprs_granted_qos, function in WDS Get Current Settings -
-
-
-qmi_message_wds_get_current_settings_output_get_imcn_flag, function in WDS Get Current Settings -
-
-
-qmi_message_wds_get_current_settings_output_get_ipv4_address, function in WDS Get Current Settings -
-
-
-qmi_message_wds_get_current_settings_output_get_ipv4_gateway_address, function in WDS Get Current Settings -
-
-
-qmi_message_wds_get_current_settings_output_get_ipv4_gateway_subnet_mask, function in WDS Get Current Settings -
-
-
-qmi_message_wds_get_current_settings_output_get_ipv6_address, function in WDS Get Current Settings -
-
-
-qmi_message_wds_get_current_settings_output_get_ipv6_gateway_address, function in WDS Get Current Settings -
-
-
-qmi_message_wds_get_current_settings_output_get_ipv6_primary_dns_address, function in WDS Get Current Settings -
-
-
-qmi_message_wds_get_current_settings_output_get_ipv6_secondary_dns_address, function in WDS Get Current Settings -
-
-
-qmi_message_wds_get_current_settings_output_get_ip_family, function in WDS Get Current Settings -
-
-
-qmi_message_wds_get_current_settings_output_get_mtu, function in WDS Get Current Settings -
-
-
-qmi_message_wds_get_current_settings_output_get_pcscf_address_using_pco, function in WDS Get Current Settings -
-
-
-qmi_message_wds_get_current_settings_output_get_pcscf_domain_name_list, function in WDS Get Current Settings -
-
-
-qmi_message_wds_get_current_settings_output_get_pcscf_server_address_list, function in WDS Get Current Settings -
-
-
-qmi_message_wds_get_current_settings_output_get_pdp_type, function in WDS Get Current Settings -
-
-
-qmi_message_wds_get_current_settings_output_get_primary_ipv4_dns_address, function in WDS Get Current Settings -
-
-
-qmi_message_wds_get_current_settings_output_get_profile_id, function in WDS Get Current Settings -
-
-
-qmi_message_wds_get_current_settings_output_get_profile_name, function in WDS Get Current Settings -
-
-
-qmi_message_wds_get_current_settings_output_get_result, function in WDS Get Current Settings -
-
-
-qmi_message_wds_get_current_settings_output_get_secondary_ipv4_dns_address, function in WDS Get Current Settings -
-
-
-qmi_message_wds_get_current_settings_output_get_username, function in WDS Get Current Settings -
-
-
-qmi_message_wds_get_current_settings_output_ref, function in WDS Get Current Settings -
-
-
-qmi_message_wds_get_current_settings_output_unref, function in WDS Get Current Settings -
-
-
-qmi_message_wds_get_data_bearer_technology_output_get_current, function in WDS Get Data Bearer Technology -
-
-
-qmi_message_wds_get_data_bearer_technology_output_get_last, function in WDS Get Data Bearer Technology -
-
-
-qmi_message_wds_get_data_bearer_technology_output_get_result, function in WDS Get Data Bearer Technology -
-
-
-qmi_message_wds_get_data_bearer_technology_output_ref, function in WDS Get Data Bearer Technology -
-
-
-qmi_message_wds_get_data_bearer_technology_output_unref, function in WDS Get Data Bearer Technology -
-
-
-qmi_message_wds_get_packet_service_status_output_get_connection_status, function in WDS Get Packet Service Status -
-
-
-qmi_message_wds_get_packet_service_status_output_get_result, function in WDS Get Packet Service Status -
-
-
-qmi_message_wds_get_packet_service_status_output_ref, function in WDS Get Packet Service Status -
-
-
-qmi_message_wds_get_packet_service_status_output_unref, function in WDS Get Packet Service Status -
-
-
-qmi_message_wds_reset_output_get_result, function in WDS Reset -
-
-
-qmi_message_wds_reset_output_ref, function in WDS Reset -
-
-
-qmi_message_wds_reset_output_unref, function in WDS Reset -
-
-
-qmi_message_wds_set_ip_family_input_get_preference, function in WDS Set IP Family -
-
-
-qmi_message_wds_set_ip_family_input_new, function in WDS Set IP Family -
-
-
-qmi_message_wds_set_ip_family_input_ref, function in WDS Set IP Family -
-
-
-qmi_message_wds_set_ip_family_input_set_preference, function in WDS Set IP Family -
-
-
-qmi_message_wds_set_ip_family_input_unref, function in WDS Set IP Family -
-
-
-qmi_message_wds_set_ip_family_output_get_result, function in WDS Set IP Family -
-
-
-qmi_message_wds_set_ip_family_output_ref, function in WDS Set IP Family -
-
-
-qmi_message_wds_set_ip_family_output_unref, function in WDS Set IP Family -
-
-
-qmi_message_wds_start_network_input_get_apn, function in WDS Start Network -
-
-
-qmi_message_wds_start_network_input_get_authentication_preference, function in WDS Start Network -
-
-
-qmi_message_wds_start_network_input_get_call_type, function in WDS Start Network -
-
-
-qmi_message_wds_start_network_input_get_enable_autoconnect, function in WDS Start Network -
-
-
-qmi_message_wds_start_network_input_get_extended_technology_preference, function in WDS Start Network -
-
-
-qmi_message_wds_start_network_input_get_ipv4_address_preference, function in WDS Start Network -
-
-
-qmi_message_wds_start_network_input_get_ip_family_preference, function in WDS Start Network -
-
-
-qmi_message_wds_start_network_input_get_password, function in WDS Start Network -
-
-
-qmi_message_wds_start_network_input_get_primary_dns_address_preference, function in WDS Start Network -
-
-
-qmi_message_wds_start_network_input_get_primary_nbns_address_preference, function in WDS Start Network -
-
-
-qmi_message_wds_start_network_input_get_profile_index_3gpp, function in WDS Start Network -
-
-
-qmi_message_wds_start_network_input_get_profile_index_3gpp2, function in WDS Start Network -
-
-
-qmi_message_wds_start_network_input_get_secondary_dns_address_preference, function in WDS Start Network -
-
-
-qmi_message_wds_start_network_input_get_secondary_nbns_address_preference, function in WDS Start Network -
-
-
-qmi_message_wds_start_network_input_get_technology_preference, function in WDS Start Network -
-
-
-qmi_message_wds_start_network_input_get_username, function in WDS Start Network -
-
-
-qmi_message_wds_start_network_input_new, function in WDS Start Network -
-
-
-qmi_message_wds_start_network_input_ref, function in WDS Start Network -
-
-
-qmi_message_wds_start_network_input_set_apn, function in WDS Start Network -
-
-
-qmi_message_wds_start_network_input_set_authentication_preference, function in WDS Start Network -
-
-
-qmi_message_wds_start_network_input_set_call_type, function in WDS Start Network -
-
-
-qmi_message_wds_start_network_input_set_enable_autoconnect, function in WDS Start Network -
-
-
-qmi_message_wds_start_network_input_set_extended_technology_preference, function in WDS Start Network -
-
-
-qmi_message_wds_start_network_input_set_ipv4_address_preference, function in WDS Start Network -
-
-
-qmi_message_wds_start_network_input_set_ip_family_preference, function in WDS Start Network -
-
-
-qmi_message_wds_start_network_input_set_password, function in WDS Start Network -
-
-
-qmi_message_wds_start_network_input_set_primary_dns_address_preference, function in WDS Start Network -
-
-
-qmi_message_wds_start_network_input_set_primary_nbns_address_preference, function in WDS Start Network -
-
-
-qmi_message_wds_start_network_input_set_profile_index_3gpp, function in WDS Start Network -
-
-
-qmi_message_wds_start_network_input_set_profile_index_3gpp2, function in WDS Start Network -
-
-
-qmi_message_wds_start_network_input_set_secondary_dns_address_preference, function in WDS Start Network -
-
-
-qmi_message_wds_start_network_input_set_secondary_nbns_address_preference, function in WDS Start Network -
-
-
-qmi_message_wds_start_network_input_set_technology_preference, function in WDS Start Network -
-
-
-qmi_message_wds_start_network_input_set_username, function in WDS Start Network -
-
-
-qmi_message_wds_start_network_input_unref, function in WDS Start Network -
-
-
-qmi_message_wds_start_network_output_get_call_end_reason, function in WDS Start Network -
-
-
-qmi_message_wds_start_network_output_get_packet_data_handle, function in WDS Start Network -
-
-
-qmi_message_wds_start_network_output_get_result, function in WDS Start Network -
-
-
-qmi_message_wds_start_network_output_get_verbose_call_end_reason, function in WDS Start Network -
-
-
-qmi_message_wds_start_network_output_ref, function in WDS Start Network -
-
-
-qmi_message_wds_start_network_output_unref, function in WDS Start Network -
-
-
-qmi_message_wds_stop_network_input_get_disable_autoconnect, function in WDS Stop Network -
-
-
-qmi_message_wds_stop_network_input_get_packet_data_handle, function in WDS Stop Network -
-
-
-qmi_message_wds_stop_network_input_new, function in WDS Stop Network -
-
-
-qmi_message_wds_stop_network_input_ref, function in WDS Stop Network -
-
-
-qmi_message_wds_stop_network_input_set_disable_autoconnect, function in WDS Stop Network -
-
-
-qmi_message_wds_stop_network_input_set_packet_data_handle, function in WDS Stop Network -
-
-
-qmi_message_wds_stop_network_input_unref, function in WDS Stop Network -
-
-
-qmi_message_wds_stop_network_output_get_result, function in WDS Stop Network -
-
-
-qmi_message_wds_stop_network_output_ref, function in WDS Stop Network -
-
-
-qmi_message_wds_stop_network_output_unref, function in WDS Stop Network -
-
-
-qmi_message_wms_delete_input_get_memory_index, function in WMS Delete -
-
-
-qmi_message_wms_delete_input_get_memory_storage, function in WMS Delete -
-
-
-qmi_message_wms_delete_input_get_message_mode, function in WMS Delete -
-
-
-qmi_message_wms_delete_input_get_message_tag, function in WMS Delete -
-
-
-qmi_message_wms_delete_input_new, function in WMS Delete -
-
-
-qmi_message_wms_delete_input_ref, function in WMS Delete -
-
-
-qmi_message_wms_delete_input_set_memory_index, function in WMS Delete -
-
-
-qmi_message_wms_delete_input_set_memory_storage, function in WMS Delete -
-
-
-qmi_message_wms_delete_input_set_message_mode, function in WMS Delete -
-
-
-qmi_message_wms_delete_input_set_message_tag, function in WMS Delete -
-
-
-qmi_message_wms_delete_input_unref, function in WMS Delete -
-
-
-qmi_message_wms_delete_output_get_result, function in WMS Delete -
-
-
-qmi_message_wms_delete_output_ref, function in WMS Delete -
-
-
-qmi_message_wms_delete_output_unref, function in WMS Delete -
-
-
-qmi_message_wms_get_message_protocol_output_get_message_protocol, function in WMS Get Message Protocol -
-
-
-qmi_message_wms_get_message_protocol_output_get_result, function in WMS Get Message Protocol -
-
-
-qmi_message_wms_get_message_protocol_output_ref, function in WMS Get Message Protocol -
-
-
-qmi_message_wms_get_message_protocol_output_unref, function in WMS Get Message Protocol -
-
-
-qmi_message_wms_get_routes_output_get_result, function in WMS Get Routes -
-
-
-qmi_message_wms_get_routes_output_get_route_list, function in WMS Get Routes -
-
-
-qmi_message_wms_get_routes_output_get_transfer_status_report, function in WMS Get Routes -
-
-
-qmi_message_wms_get_routes_output_ref, function in WMS Get Routes -
-
-
-qmi_message_wms_get_routes_output_unref, function in WMS Get Routes -
-
-
-qmi_message_wms_list_messages_input_get_message_mode, function in WMS List Messages -
-
-
-qmi_message_wms_list_messages_input_get_message_tag, function in WMS List Messages -
-
-
-qmi_message_wms_list_messages_input_get_storage_type, function in WMS List Messages -
-
-
-qmi_message_wms_list_messages_input_new, function in WMS List Messages -
-
-
-qmi_message_wms_list_messages_input_ref, function in WMS List Messages -
-
-
-qmi_message_wms_list_messages_input_set_message_mode, function in WMS List Messages -
-
-
-qmi_message_wms_list_messages_input_set_message_tag, function in WMS List Messages -
-
-
-qmi_message_wms_list_messages_input_set_storage_type, function in WMS List Messages -
-
-
-qmi_message_wms_list_messages_input_unref, function in WMS List Messages -
-
-
-qmi_message_wms_list_messages_output_get_message_list, function in WMS List Messages -
-
-
-qmi_message_wms_list_messages_output_get_result, function in WMS List Messages -
-
-
-qmi_message_wms_list_messages_output_ref, function in WMS List Messages -
-
-
-qmi_message_wms_list_messages_output_unref, function in WMS List Messages -
-
-
-qmi_message_wms_modify_tag_input_get_message_mode, function in WMS Modify Tag -
-
-
-qmi_message_wms_modify_tag_input_get_message_tag, function in WMS Modify Tag -
-
-
-qmi_message_wms_modify_tag_input_new, function in WMS Modify Tag -
-
-
-qmi_message_wms_modify_tag_input_ref, function in WMS Modify Tag -
-
-
-qmi_message_wms_modify_tag_input_set_message_mode, function in WMS Modify Tag -
-
-
-qmi_message_wms_modify_tag_input_set_message_tag, function in WMS Modify Tag -
-
-
-qmi_message_wms_modify_tag_input_unref, function in WMS Modify Tag -
-
-
-qmi_message_wms_modify_tag_output_get_result, function in WMS Modify Tag -
-
-
-qmi_message_wms_modify_tag_output_ref, function in WMS Modify Tag -
-
-
-qmi_message_wms_modify_tag_output_unref, function in WMS Modify Tag -
-
-
-qmi_message_wms_raw_read_input_get_message_memory_storage_id, function in WMS Raw Read -
-
-
-qmi_message_wms_raw_read_input_get_message_mode, function in WMS Raw Read -
-
-
-qmi_message_wms_raw_read_input_get_sms_on_ims, function in WMS Raw Read -
-
-
-qmi_message_wms_raw_read_input_new, function in WMS Raw Read -
-
-
-qmi_message_wms_raw_read_input_ref, function in WMS Raw Read -
-
-
-qmi_message_wms_raw_read_input_set_message_memory_storage_id, function in WMS Raw Read -
-
-
-qmi_message_wms_raw_read_input_set_message_mode, function in WMS Raw Read -
-
-
-qmi_message_wms_raw_read_input_set_sms_on_ims, function in WMS Raw Read -
-
-
-qmi_message_wms_raw_read_input_unref, function in WMS Raw Read -
-
-
-qmi_message_wms_raw_read_output_get_raw_message_data, function in WMS Raw Read -
-
-
-qmi_message_wms_raw_read_output_get_result, function in WMS Raw Read -
-
-
-qmi_message_wms_raw_read_output_ref, function in WMS Raw Read -
-
-
-qmi_message_wms_raw_read_output_unref, function in WMS Raw Read -
-
-
-qmi_message_wms_raw_send_input_get_cdma_follow_on_dc, function in WMS Raw Send -
-
-
-qmi_message_wms_raw_send_input_get_cdma_force_on_dc, function in WMS Raw Send -
-
-
-qmi_message_wms_raw_send_input_get_gsm_wcdma_link_timer, function in WMS Raw Send -
-
-
-qmi_message_wms_raw_send_input_get_raw_message_data, function in WMS Raw Send -
-
-
-qmi_message_wms_raw_send_input_get_sms_on_ims, function in WMS Raw Send -
-
-
-qmi_message_wms_raw_send_input_new, function in WMS Raw Send -
-
-
-qmi_message_wms_raw_send_input_ref, function in WMS Raw Send -
-
-
-qmi_message_wms_raw_send_input_set_cdma_follow_on_dc, function in WMS Raw Send -
-
-
-qmi_message_wms_raw_send_input_set_cdma_force_on_dc, function in WMS Raw Send -
-
-
-qmi_message_wms_raw_send_input_set_gsm_wcdma_link_timer, function in WMS Raw Send -
-
-
-qmi_message_wms_raw_send_input_set_raw_message_data, function in WMS Raw Send -
-
-
-qmi_message_wms_raw_send_input_set_sms_on_ims, function in WMS Raw Send -
-
-
-qmi_message_wms_raw_send_input_unref, function in WMS Raw Send -
-
-
-qmi_message_wms_raw_send_output_get_cdma_cause_code, function in WMS Raw Send -
-
-
-qmi_message_wms_raw_send_output_get_cdma_error_class, function in WMS Raw Send -
-
-
-qmi_message_wms_raw_send_output_get_gsm_wcdma_cause_info, function in WMS Raw Send -
-
-
-qmi_message_wms_raw_send_output_get_message_delivery_failure_type, function in WMS Raw Send -
-
-
-qmi_message_wms_raw_send_output_get_message_id, function in WMS Raw Send -
-
-
-qmi_message_wms_raw_send_output_get_result, function in WMS Raw Send -
-
-
-qmi_message_wms_raw_send_output_ref, function in WMS Raw Send -
-
-
-qmi_message_wms_raw_send_output_unref, function in WMS Raw Send -
-
-
-qmi_message_wms_raw_write_input_get_raw_message_data, function in WMS Raw Write -
-
-
-qmi_message_wms_raw_write_input_new, function in WMS Raw Write -
-
-
-qmi_message_wms_raw_write_input_ref, function in WMS Raw Write -
-
-
-qmi_message_wms_raw_write_input_set_raw_message_data, function in WMS Raw Write -
-
-
-qmi_message_wms_raw_write_input_unref, function in WMS Raw Write -
-
-
-qmi_message_wms_raw_write_output_get_memory_index, function in WMS Raw Write -
-
-
-qmi_message_wms_raw_write_output_get_result, function in WMS Raw Write -
-
-
-qmi_message_wms_raw_write_output_ref, function in WMS Raw Write -
-
-
-qmi_message_wms_raw_write_output_unref, function in WMS Raw Write -
-
-
-qmi_message_wms_reset_output_get_result, function in WMS Reset -
-
-
-qmi_message_wms_reset_output_ref, function in WMS Reset -
-
-
-qmi_message_wms_reset_output_unref, function in WMS Reset -
-
-
-qmi_message_wms_send_from_memory_storage_input_get_information, function in WMS Send From Memory Storage -
-
-
-qmi_message_wms_send_from_memory_storage_input_get_sms_on_ims, function in WMS Send From Memory Storage -
-
-
-qmi_message_wms_send_from_memory_storage_input_new, function in WMS Send From Memory Storage -
-
-
-qmi_message_wms_send_from_memory_storage_input_ref, function in WMS Send From Memory Storage -
-
-
-qmi_message_wms_send_from_memory_storage_input_set_information, function in WMS Send From Memory Storage -
-
-
-qmi_message_wms_send_from_memory_storage_input_set_sms_on_ims, function in WMS Send From Memory Storage -
-
-
-qmi_message_wms_send_from_memory_storage_input_unref, function in WMS Send From Memory Storage -
-
-
-qmi_message_wms_send_from_memory_storage_output_get_cdma_cause_code, function in WMS Send From Memory Storage -
-
-
-qmi_message_wms_send_from_memory_storage_output_get_cdma_error_class, function in WMS Send From Memory Storage -
-
-
-qmi_message_wms_send_from_memory_storage_output_get_gsm_wcdma_cause_info, function in WMS Send From Memory Storage -
-
-
-qmi_message_wms_send_from_memory_storage_output_get_message_delivery_failure_type, function in WMS Send From Memory Storage -
-
-
-qmi_message_wms_send_from_memory_storage_output_get_message_id, function in WMS Send From Memory Storage -
-
-
-qmi_message_wms_send_from_memory_storage_output_get_result, function in WMS Send From Memory Storage -
-
-
-qmi_message_wms_send_from_memory_storage_output_ref, function in WMS Send From Memory Storage -
-
-
-qmi_message_wms_send_from_memory_storage_output_unref, function in WMS Send From Memory Storage -
-
-
-qmi_message_wms_set_event_report_input_get_new_mt_message_indicator, function in WMS Set Event Report -
-
-
-qmi_message_wms_set_event_report_input_new, function in WMS Set Event Report -
-
-
-qmi_message_wms_set_event_report_input_ref, function in WMS Set Event Report -
-
-
-qmi_message_wms_set_event_report_input_set_new_mt_message_indicator, function in WMS Set Event Report -
-
-
-qmi_message_wms_set_event_report_input_unref, function in WMS Set Event Report -
-
-
-qmi_message_wms_set_event_report_output_get_result, function in WMS Set Event Report -
-
-
-qmi_message_wms_set_event_report_output_ref, function in WMS Set Event Report -
-
-
-qmi_message_wms_set_event_report_output_unref, function in WMS Set Event Report -
-
-
-qmi_message_wms_set_routes_input_get_route_list, function in WMS Set Routes -
-
-
-qmi_message_wms_set_routes_input_get_transfer_status_report, function in WMS Set Routes -
-
-
-qmi_message_wms_set_routes_input_new, function in WMS Set Routes -
-
-
-qmi_message_wms_set_routes_input_ref, function in WMS Set Routes -
-
-
-qmi_message_wms_set_routes_input_set_route_list, function in WMS Set Routes -
-
-
-qmi_message_wms_set_routes_input_set_transfer_status_report, function in WMS Set Routes -
-
-
-qmi_message_wms_set_routes_input_unref, function in WMS Set Routes -
-
-
-qmi_message_wms_set_routes_output_get_result, function in WMS Set Routes -
-
-
-qmi_message_wms_set_routes_output_ref, function in WMS Set Routes -
-
-
-qmi_message_wms_set_routes_output_unref, function in WMS Set Routes -
-
-

N

-
-QmiNasActiveBand, enum in NAS enumerations and flags -
-
-
-QmiNasAttachState, enum in NAS enumerations and flags -
-
-
-QmiNasBandPreference, enum in NAS enumerations and flags -
-
-
-QmiNasCallBarringStatus, enum in NAS enumerations and flags -
-
-
-QmiNasCdmaPilotType, enum in NAS enumerations and flags -
-
-
-QmiNasCdmaPrlPreference, enum in NAS enumerations and flags -
-
-
-QmiNasCellBroadcastCapability, enum in NAS enumerations and flags -
-
-
-QmiNasChangeDuration, enum in NAS enumerations and flags -
-
-
-QmiNasDataCapability, enum in NAS enumerations and flags -
-
-
-QmiNasEvdoSinrLevel, enum in NAS enumerations and flags -
-
-
-QmiNasGsmWcdmaAcquisitionOrderPreference, enum in NAS enumerations and flags -
-
-
-QmiNasHdrPersonality, enum in NAS enumerations and flags -
-
-
-QmiNasHdrProtocolRevision, enum in NAS enumerations and flags -
-
-
-QmiNasLteBandPreference, enum in NAS enumerations and flags -
-
-
-QmiNasNetworkDescriptionDisplay, enum in NAS enumerations and flags -
-
-
-QmiNasNetworkDescriptionEncoding, enum in NAS enumerations and flags -
-
-
-QmiNasNetworkRegisterType, enum in NAS enumerations and flags -
-
-
-QmiNasNetworkScanType, enum in NAS enumerations and flags -
-
-
-QmiNasNetworkSelectionPreference, enum in NAS enumerations and flags -
-
-
-QmiNasNetworkServiceDomain, enum in NAS enumerations and flags -
-
-
-QmiNasNetworkStatus, enum in NAS enumerations and flags -
-
-
-QmiNasNetworkType, enum in NAS enumerations and flags -
-
-
-QmiNasPreferenceDuration, enum in NAS enumerations and flags -
-
-
-QmiNasRadioInterface, enum in NAS enumerations and flags -
-
-
-QmiNasRadioTechnologyPreference, enum in NAS enumerations and flags -
-
-
-QmiNasRatModePreference, enum in NAS enumerations and flags -
-
-
-QmiNasRegistrationState, enum in NAS enumerations and flags -
-
-
-QmiNasRoamingIndicatorStatus, enum in NAS enumerations and flags -
-
-
-QmiNasRoamingPreference, enum in NAS enumerations and flags -
-
-
-QmiNasRoamingStatus, enum in NAS enumerations and flags -
-
-
-QmiNasServiceDomainPreference, enum in NAS enumerations and flags -
-
-
-QmiNasServiceStatus, enum in NAS enumerations and flags -
-
-
-QmiNasSignalStrengthRequest, enum in NAS enumerations and flags -
-
-
-QmiNasSimRejectState, enum in NAS enumerations and flags -
-
-
-QmiNasTdScdmaBandPreference, enum in NAS enumerations and flags -
-
-
-QmiNasWcdmaHsService, enum in NAS enumerations and flags -
-
-
-qmi_nas_active_band_get_string, function in NAS enumerations and flags -
-
-
-qmi_nas_attach_state_get_string, function in NAS enumerations and flags -
-
-
-qmi_nas_band_preference_build_string_from_mask, function in NAS enumerations and flags -
-
-
-qmi_nas_call_barring_status_get_string, function in NAS enumerations and flags -
-
-
-qmi_nas_cdma_pilot_type_get_string, function in NAS enumerations and flags -
-
-
-qmi_nas_cdma_prl_preference_get_string, function in NAS enumerations and flags -
-
-
-qmi_nas_cell_broadcast_capability_get_string, function in NAS enumerations and flags -
-
-
-qmi_nas_change_duration_get_string, function in NAS enumerations and flags -
-
-
-qmi_nas_data_capability_get_string, function in NAS enumerations and flags -
-
-
-qmi_nas_evdo_sinr_level_get_string, function in NAS enumerations and flags -
-
-
-qmi_nas_gsm_wcdma_acquisition_order_preference_get_string, function in NAS enumerations and flags -
-
-
-qmi_nas_hdr_personality_get_string, function in NAS enumerations and flags -
-
-
-qmi_nas_hdr_protocol_revision_get_string, function in NAS enumerations and flags -
-
-
-qmi_nas_lte_band_preference_build_string_from_mask, function in NAS enumerations and flags -
-
-
-qmi_nas_network_description_display_get_string, function in NAS enumerations and flags -
-
-
-qmi_nas_network_description_encoding_get_string, function in NAS enumerations and flags -
-
-
-qmi_nas_network_register_type_get_string, function in NAS enumerations and flags -
-
-
-qmi_nas_network_scan_type_build_string_from_mask, function in NAS enumerations and flags -
-
-
-qmi_nas_network_selection_preference_get_string, function in NAS enumerations and flags -
-
-
-qmi_nas_network_service_domain_get_string, function in NAS enumerations and flags -
-
-
-qmi_nas_network_status_build_string_from_mask, function in NAS enumerations and flags -
-
-
-qmi_nas_network_type_get_string, function in NAS enumerations and flags -
-
-
-qmi_nas_preference_duration_get_string, function in NAS enumerations and flags -
-
-
-qmi_nas_radio_interface_get_string, function in NAS enumerations and flags -
-
-
-qmi_nas_radio_technology_preference_build_string_from_mask, function in NAS enumerations and flags -
-
-
-qmi_nas_rat_mode_preference_build_string_from_mask, function in NAS enumerations and flags -
-
-
-qmi_nas_registration_state_get_string, function in NAS enumerations and flags -
-
-
-qmi_nas_roaming_indicator_status_get_string, function in NAS enumerations and flags -
-
-
-qmi_nas_roaming_preference_get_string, function in NAS enumerations and flags -
-
-
-qmi_nas_roaming_status_get_string, function in NAS enumerations and flags -
-
-
-qmi_nas_service_domain_preference_get_string, function in NAS enumerations and flags -
-
-
-qmi_nas_service_status_get_string, function in NAS enumerations and flags -
-
-
-qmi_nas_signal_strength_request_build_string_from_mask, function in NAS enumerations and flags -
-
-
-qmi_nas_sim_reject_state_get_string, function in NAS enumerations and flags -
-
-
-QMI_NAS_SIM_REJECT_STATE_SIM_VAILABLE, macro in API break replacements -
-
-
-qmi_nas_td_scdma_band_preference_build_string_from_mask, function in NAS enumerations and flags -
-
-
-qmi_nas_wcdma_hs_service_get_string, function in NAS enumerations and flags -
-
-

P

-
-QmiPdsDataValid, enum in PDS enumerations and flags -
-
-
-QmiPdsOperationMode, enum in PDS enumerations and flags -
-
-
-QmiPdsPositionSessionStatus, enum in PDS enumerations and flags -
-
-
-QmiPdsTrackingSessionState, enum in PDS enumerations and flags -
-
-
-qmi_pds_operation_mode_get_string, function in PDS enumerations and flags -
-
-
-qmi_pds_position_session_status_get_string, function in PDS enumerations and flags -
-
-
-qmi_pds_tracking_session_state_get_string, function in PDS enumerations and flags -
-
-
-QmiProtocolError, enum in Errors -
-
-
-qmi_protocol_error_get_string, function in Errors -
-
-

S

-
-QmiService, enum in Common enumerations and flags -
-
-
-qmi_service_get_string, function in Common enumerations and flags -
-
-

U

-
-qmi_utils_get_traces_enabled, function in Common utilities -
-
-
-qmi_utils_read_fixed_size_string_from_buffer, function in Common utilities -
-
-
-qmi_utils_read_gint16_from_buffer, function in Common utilities -
-
-
-qmi_utils_read_gint32_from_buffer, function in Common utilities -
-
-
-qmi_utils_read_gint64_from_buffer, function in Common utilities -
-
-
-qmi_utils_read_gint8_from_buffer, function in Common utilities -
-
-
-qmi_utils_read_guint16_from_buffer, function in Common utilities -
-
-
-qmi_utils_read_guint32_from_buffer, function in Common utilities -
-
-
-qmi_utils_read_guint64_from_buffer, function in Common utilities -
-
-
-qmi_utils_read_guint8_from_buffer, function in Common utilities -
-
-
-qmi_utils_read_sized_guint_from_buffer, function in Common utilities -
-
-
-qmi_utils_read_string_from_buffer, function in Common utilities -
-
-
-qmi_utils_set_traces_enabled, function in Common utilities -
-
-
-qmi_utils_write_fixed_size_string_to_buffer, function in Common utilities -
-
-
-qmi_utils_write_gint16_to_buffer, function in Common utilities -
-
-
-qmi_utils_write_gint32_to_buffer, function in Common utilities -
-
-
-qmi_utils_write_gint64_to_buffer, function in Common utilities -
-
-
-qmi_utils_write_gint8_to_buffer, function in Common utilities -
-
-
-qmi_utils_write_guint16_to_buffer, function in Common utilities -
-
-
-qmi_utils_write_guint32_to_buffer, function in Common utilities -
-
-
-qmi_utils_write_guint64_to_buffer, function in Common utilities -
-
-
-qmi_utils_write_guint8_to_buffer, function in Common utilities -
-
-
-qmi_utils_write_sized_guint_to_buffer, function in Common utilities -
-
-
-qmi_utils_write_string_to_buffer, function in Common utilities -
-
-

W

-
-QmiWdsAuthentication, enum in WDS enumerations and flags -
-
-
-QmiWdsCallEndReason, enum in WDS enumerations and flags -
-
-
-QmiWdsCallType, enum in WDS enumerations and flags -
-
-
-QmiWdsConnectionStatus, enum in WDS enumerations and flags -
-
-
-QmiWdsDataBearerTechnology, enum in WDS enumerations and flags -
-
-
-QmiWdsExtendedTechnologyPreference, enum in WDS enumerations and flags -
-
-
-QmiWdsGetCurrentSettingsRequestedSettings, enum in WDS enumerations and flags -
-
-
-QmiWdsIpFamily, enum in WDS enumerations and flags -
-
-
-QmiWdsNetworkType, enum in WDS enumerations and flags -
-
-
-QmiWdsPdpType, enum in WDS enumerations and flags -
-
-
-QmiWdsProfileType, enum in WDS enumerations and flags -
-
-
-QmiWdsRat3gpp, enum in WDS enumerations and flags -
-
-
-QmiWdsRat3gpp2, enum in WDS enumerations and flags -
-
-
-QmiWdsSoCdma1x, enum in WDS enumerations and flags -
-
-
-QmiWdsSoEvdoRevA, enum in WDS enumerations and flags -
-
-
-QmiWdsTechnologyPreference, enum in WDS enumerations and flags -
-
-
-QmiWdsTrafficClass, enum in WDS enumerations and flags -
-
-
-QmiWdsVerboseCallEndReason3gpp, enum in WDS enumerations and flags -
-
-
-QmiWdsVerboseCallEndReasonCm, enum in WDS enumerations and flags -
-
-
-QmiWdsVerboseCallEndReasonEhrpd, enum in WDS enumerations and flags -
-
-
-QmiWdsVerboseCallEndReasonInternal, enum in WDS enumerations and flags -
-
-
-QmiWdsVerboseCallEndReasonIpv6, enum in WDS enumerations and flags -
-
-
-QmiWdsVerboseCallEndReasonMip, enum in WDS enumerations and flags -
-
-
-QmiWdsVerboseCallEndReasonPpp, enum in WDS enumerations and flags -
-
-
-QmiWdsVerboseCallEndReasonType, enum in WDS enumerations and flags -
-
-
-qmi_wds_authentication_build_string_from_mask, function in WDS enumerations and flags -
-
-
-qmi_wds_call_end_reason_get_string, function in WDS enumerations and flags -
-
-
-qmi_wds_call_type_get_string, function in WDS enumerations and flags -
-
-
-QMI_WDS_CDMA_CAUSE_CODE_DESTINATION_BUSY, macro in API break replacements -
-
-
-QMI_WDS_CDMA_CAUSE_CODE_DESTINATION_NOT_AT_ADDRESS, macro in API break replacements -
-
-
-QMI_WDS_CDMA_CAUSE_CODE_DESTINATION_NO_ACK, macro in API break replacements -
-
-
-QMI_WDS_CDMA_CAUSE_CODE_DESTINATION_NO_PAGE_RESPONSE, macro in API break replacements -
-
-
-QMI_WDS_CDMA_CAUSE_CODE_DESTINATION_OTHER, macro in API break replacements -
-
-
-QMI_WDS_CDMA_CAUSE_CODE_DESTINATION_OUT_OF_SERVICE, macro in API break replacements -
-
-
-QMI_WDS_CDMA_CAUSE_CODE_DESTINATION_RESOURCE_SHORTAGE, macro in API break replacements -
-
-
-QMI_WDS_CDMA_CAUSE_CODE_DESTINATION_SMS_DELIVERY_POSTPONED, macro in API break replacements -
-
-
-QMI_WDS_CDMA_CAUSE_CODE_GENERAL_ENCODING, macro in API break replacements -
-
-
-QMI_WDS_CDMA_CAUSE_CODE_GENERAL_MISSING_EXPECTED_PARAMETER, macro in API break replacements -
-
-
-QMI_WDS_CDMA_CAUSE_CODE_GENERAL_MISSING_MANDATORY_PARAMETER, macro in API break replacements -
-
-
-QMI_WDS_CDMA_CAUSE_CODE_GENERAL_OTHER, macro in API break replacements -
-
-
-QMI_WDS_CDMA_CAUSE_CODE_GENERAL_SMS_DESTINATION_DENIED, macro in API break replacements -
-
-
-QMI_WDS_CDMA_CAUSE_CODE_GENERAL_SMS_NOT_SUPPORTED, macro in API break replacements -
-
-
-QMI_WDS_CDMA_CAUSE_CODE_GENERAL_SMS_ORIGIN_DENIED, macro in API break replacements -
-
-
-QMI_WDS_CDMA_CAUSE_CODE_GENERAL_SUPPLEMENTARY_SERVICE_NOT_SUPPORTED, macro in API break replacements -
-
-
-QMI_WDS_CDMA_CAUSE_CODE_GENERAL_UNEXPECTED_PARAMETER_VALUE, macro in API break replacements -
-
-
-QMI_WDS_CDMA_CAUSE_CODE_GENERAL_UNRECOGNIZED_PARAMETER_VALUE, macro in API break replacements -
-
-
-QMI_WDS_CDMA_CAUSE_CODE_GENERAL_USER_DATA_SIZE_ERROR, macro in API break replacements -
-
-
-QMI_WDS_CDMA_CAUSE_CODE_NETWORK_ADDRESS_TRANSLATION_FAILURE, macro in API break replacements -
-
-
-QMI_WDS_CDMA_CAUSE_CODE_NETWORK_ADDRESS_VACANT, macro in API break replacements -
-
-
-QMI_WDS_CDMA_CAUSE_CODE_NETWORK_FAILURE, macro in API break replacements -
-
-
-QMI_WDS_CDMA_CAUSE_CODE_NETWORK_INVALID_TELESERVICE_ID, macro in API break replacements -
-
-
-QMI_WDS_CDMA_CAUSE_CODE_NETWORK_OTHER, macro in API break replacements -
-
-
-QMI_WDS_CDMA_CAUSE_CODE_NETWORK_RESOURCE_SHORTAGE, macro in API break replacements -
-
-
-QMI_WDS_CDMA_CAUSE_CODE_RADIO_INTERFACE_INCOMPATIBILITY, macro in API break replacements -
-
-
-QMI_WDS_CDMA_CAUSE_CODE_RADIO_INTERFACE_OTHER, macro in API break replacements -
-
-
-QMI_WDS_CDMA_CAUSE_CODE_RADIO_INTERFACE_RESOURCE_SHORTAGE, macro in API break replacements -
-
-
-qmi_wds_connection_status_get_string, function in WDS enumerations and flags -
-
-
-qmi_wds_data_bearer_technology_get_string, function in WDS enumerations and flags -
-
-
-qmi_wds_extended_technology_preference_get_string, function in WDS enumerations and flags -
-
-
-qmi_wds_get_current_settings_requested_settings_get_string, function in WDS enumerations and flags -
-
-
-qmi_wds_ip_family_get_string, function in WDS enumerations and flags -
-
-
-qmi_wds_network_type_get_string, function in WDS enumerations and flags -
-
-
-qmi_wds_pdp_type_get_string, function in WDS enumerations and flags -
-
-
-qmi_wds_profile_type_get_string, function in WDS enumerations and flags -
-
-
-qmi_wds_traffic_class_get_string, function in WDS enumerations and flags -
-
-
-qmi_wds_verbose_call_end_reason_3gpp_get_string, function in WDS enumerations and flags -
-
-
-qmi_wds_verbose_call_end_reason_cm_get_string, function in WDS enumerations and flags -
-
-
-qmi_wds_verbose_call_end_reason_ehrpd_get_string, function in WDS enumerations and flags -
-
-
-qmi_wds_verbose_call_end_reason_get_string, function in WDS enumerations and flags -
-
-
-qmi_wds_verbose_call_end_reason_internal_get_string, function in WDS enumerations and flags -
-
-
-qmi_wds_verbose_call_end_reason_ipv6_get_string, function in WDS enumerations and flags -
-
-
-qmi_wds_verbose_call_end_reason_mip_get_string, function in WDS enumerations and flags -
-
-
-qmi_wds_verbose_call_end_reason_ppp_get_string, function in WDS enumerations and flags -
-
-
-qmi_wds_verbose_call_end_reason_type_get_string, function in WDS enumerations and flags -
-
-
-QmiWmsAckIndicator, enum in WMS enumerations and flags -
-
-
-QmiWmsCdmaCauseCode, enum in WMS enumerations and flags -
-
-
-QmiWmsCdmaErrorClass, enum in WMS enumerations and flags -
-
-
-QmiWmsCdmaServiceOption, enum in WMS enumerations and flags -
-
-
-QmiWmsGsmUmtsRpCause, enum in WMS enumerations and flags -
-
-
-QmiWmsGsmUmtsTpCause, enum in WMS enumerations and flags -
-
-
-QmiWmsMessageClass, enum in WMS enumerations and flags -
-
-
-QmiWmsMessageDeliveryFailureType, enum in WMS enumerations and flags -
-
-
-QmiWmsMessageFormat, enum in WMS enumerations and flags -
-
-
-QmiWmsMessageMode, enum in WMS enumerations and flags -
-
-
-QmiWmsMessageProtocol, enum in WMS enumerations and flags -
-
-
-QmiWmsMessageTagType, enum in WMS enumerations and flags -
-
-
-QmiWmsMessageType, enum in WMS enumerations and flags -
-
-
-QmiWmsNotificationType, enum in WMS enumerations and flags -
-
-
-QmiWmsReceiptAction, enum in WMS enumerations and flags -
-
-
-QmiWmsStorageType, enum in WMS enumerations and flags -
-
-
-QmiWmsTransferIndication, enum in WMS enumerations and flags -
-
-
-qmi_wms_ack_indicator_get_string, function in WMS enumerations and flags -
-
-
-qmi_wms_cdma_cause_code_get_string, function in WMS enumerations and flags -
-
-
-qmi_wms_cdma_error_class_get_string, function in WMS enumerations and flags -
-
-
-qmi_wms_cdma_service_option_get_string, function in WMS enumerations and flags -
-
-
-qmi_wms_gsm_umts_rp_cause_get_string, function in WMS enumerations and flags -
-
-
-qmi_wms_gsm_umts_tp_cause_get_string, function in WMS enumerations and flags -
-
-
-qmi_wms_message_class_get_string, function in WMS enumerations and flags -
-
-
-qmi_wms_message_delivery_failure_type_get_string, function in WMS enumerations and flags -
-
-
-qmi_wms_message_format_get_string, function in WMS enumerations and flags -
-
-
-qmi_wms_message_mode_get_string, function in WMS enumerations and flags -
-
-
-qmi_wms_message_protocol_get_string, function in WMS enumerations and flags -
-
-
-qmi_wms_message_tag_type_get_string, function in WMS enumerations and flags -
-
-
-qmi_wms_message_type_get_string, function in WMS enumerations and flags -
-
-
-qmi_wms_notification_type_get_string, function in WMS enumerations and flags -
-
-
-qmi_wms_receipt_action_get_string, function in WMS enumerations and flags -
-
-
-qmi_wms_storage_type_get_string, function in WMS enumerations and flags -
-
-
-qmi_wms_transfer_indication_get_string, function in WMS enumerations and flags -
-
-
- - - \ No newline at end of file diff -Nru libqmi-1.18.0/docs/reference/libqmi-glib/html/api-index-1-10.html libqmi-1.22.0/docs/reference/libqmi-glib/html/api-index-1-10.html --- libqmi-1.18.0/docs/reference/libqmi-glib/html/api-index-1-10.html 2017-03-22 12:28:28.000000000 +0100 +++ libqmi-1.22.0/docs/reference/libqmi-glib/html/api-index-1-10.html 1970-01-01 01:00:00.000000000 +0100 @@ -1,446 +0,0 @@ - - - - -Index of new core symbols in 1.10: libqmi-glib Reference Manual - - - - - - - - - - - - - - - - -
-

-Index of new core symbols in 1.10

-

C

-
-QmiClientWda, struct in QmiClientWda -
-
-
-qmi_client_nas_get_cell_location_info, function in NAS Get Cell Location Info -
-
-
-qmi_client_nas_get_cell_location_info_finish, function in NAS Get Cell Location Info -
-
-
-qmi_client_uim_get_card_status, function in UIM Get Card Status -
-
-
-qmi_client_uim_get_card_status_finish, function in UIM Get Card Status -
-
-
-qmi_client_wda_get_data_format, function in WDA Get Data Format -
-
-
-qmi_client_wda_get_data_format_finish, function in WDA Get Data Format -
-
-
-qmi_client_wda_set_data_format, function in WDA Set Data Format -
-
-
-qmi_client_wda_set_data_format_finish, function in WDA Set Data Format -
-
-

M

-
-QmiMessageNasGetCellLocationInfoOutput, struct in NAS Get Cell Location Info -
-
-
-QmiMessageNasGetCellLocationInfoOutputGeranInfoCellElement, struct in NAS Get Cell Location Info -
-
-
-QmiMessageNasGetCellLocationInfoOutputInterfrequencyLteInfoFrequencyElement, struct in NAS Get Cell Location Info -
-
-
-QmiMessageNasGetCellLocationInfoOutputInterfrequencyLteInfoFrequencyElementCellElement, struct in NAS Get Cell Location Info -
-
-
-QmiMessageNasGetCellLocationInfoOutputIntrafrequencyLteInfoCellElement, struct in NAS Get Cell Location Info -
-
-
-QmiMessageNasGetCellLocationInfoOutputLteInfoNeighboringGsmFrequencyElement, struct in NAS Get Cell Location Info -
-
-
-QmiMessageNasGetCellLocationInfoOutputLteInfoNeighboringGsmFrequencyElementCellElement, struct in NAS Get Cell Location Info -
-
-
-QmiMessageNasGetCellLocationInfoOutputLteInfoNeighboringWcdmaFrequencyElement, struct in NAS Get Cell Location Info -
-
-
-QmiMessageNasGetCellLocationInfoOutputLteInfoNeighboringWcdmaFrequencyElementCellElement, struct in NAS Get Cell Location Info -
-
-
-QmiMessageNasGetCellLocationInfoOutputUmtsInfoCellElement, struct in NAS Get Cell Location Info -
-
-
-QmiMessageNasGetCellLocationInfoOutputUmtsInfoNeighboringGeranElement, struct in NAS Get Cell Location Info -
-
-
-QmiMessageNasGetCellLocationInfoOutputUmtsInfoNeighboringLteFrequencyElement, struct in NAS Get Cell Location Info -
-
-
-QmiMessageUimGetCardStatusOutput, struct in UIM Get Card Status -
-
-
-QmiMessageUimGetCardStatusOutputCardStatusCardsElement, struct in UIM Get Card Status -
-
-
-QmiMessageUimGetCardStatusOutputCardStatusCardsElementApplicationsElement, struct in UIM Get Card Status -
-
-
-QmiMessageWdaGetDataFormatOutput, struct in WDA Get Data Format -
-
-
-QmiMessageWdaSetDataFormatInput, struct in WDA Set Data Format -
-
-
-QmiMessageWdaSetDataFormatOutput, struct in WDA Set Data Format -
-
-
-qmi_message_nas_get_cell_location_info_output_get_cdma_info, function in NAS Get Cell Location Info -
-
-
-qmi_message_nas_get_cell_location_info_output_get_geran_info, function in NAS Get Cell Location Info -
-
-
-qmi_message_nas_get_cell_location_info_output_get_interfrequency_lte_info, function in NAS Get Cell Location Info -
-
-
-qmi_message_nas_get_cell_location_info_output_get_intrafrequency_lte_info, function in NAS Get Cell Location Info -
-
-
-qmi_message_nas_get_cell_location_info_output_get_lte_info_neighboring_gsm, function in NAS Get Cell Location Info -
-
-
-qmi_message_nas_get_cell_location_info_output_get_lte_info_neighboring_wcdma, function in NAS Get Cell Location Info -
-
-
-qmi_message_nas_get_cell_location_info_output_get_result, function in NAS Get Cell Location Info -
-
-
-qmi_message_nas_get_cell_location_info_output_get_umts_cell_id, function in NAS Get Cell Location Info -
-
-
-qmi_message_nas_get_cell_location_info_output_get_umts_info, function in NAS Get Cell Location Info -
-
-
-qmi_message_nas_get_cell_location_info_output_get_umts_info_neighboring_lte, function in NAS Get Cell Location Info -
-
-
-qmi_message_nas_get_cell_location_info_output_ref, function in NAS Get Cell Location Info -
-
-
-qmi_message_nas_get_cell_location_info_output_unref, function in NAS Get Cell Location Info -
-
-
-qmi_message_uim_get_card_status_output_get_card_status, function in UIM Get Card Status -
-
-
-qmi_message_uim_get_card_status_output_get_result, function in UIM Get Card Status -
-
-
-qmi_message_uim_get_card_status_output_ref, function in UIM Get Card Status -
-
-
-qmi_message_uim_get_card_status_output_unref, function in UIM Get Card Status -
-
-
-qmi_message_wda_get_data_format_output_get_downlink_data_aggregation_max_size, function in WDA Get Data Format -
-
-
-qmi_message_wda_get_data_format_output_get_downlink_data_aggregation_protocol, function in WDA Get Data Format -
-
-
-qmi_message_wda_get_data_format_output_get_link_layer_protocol, function in WDA Get Data Format -
-
-
-qmi_message_wda_get_data_format_output_get_ndp_signature, function in WDA Get Data Format -
-
-
-qmi_message_wda_get_data_format_output_get_qos_format, function in WDA Get Data Format -
-
-
-qmi_message_wda_get_data_format_output_get_result, function in WDA Get Data Format -
-
-
-qmi_message_wda_get_data_format_output_get_uplink_data_aggregation_max_size, function in WDA Get Data Format -
-
-
-qmi_message_wda_get_data_format_output_get_uplink_data_aggregation_protocol, function in WDA Get Data Format -
-
-
-qmi_message_wda_get_data_format_output_ref, function in WDA Get Data Format -
-
-
-qmi_message_wda_get_data_format_output_unref, function in WDA Get Data Format -
-
-
-qmi_message_wda_set_data_format_input_get_downlink_data_aggregation_max_datagrams, function in WDA Set Data Format -
-
-
-qmi_message_wda_set_data_format_input_get_downlink_data_aggregation_max_size, function in WDA Set Data Format -
-
-
-qmi_message_wda_set_data_format_input_get_downlink_data_aggregation_protocol, function in WDA Set Data Format -
-
-
-qmi_message_wda_set_data_format_input_get_link_layer_protocol, function in WDA Set Data Format -
-
-
-qmi_message_wda_set_data_format_input_get_ndp_signature, function in WDA Set Data Format -
-
-
-qmi_message_wda_set_data_format_input_get_qos_format, function in WDA Set Data Format -
-
-
-qmi_message_wda_set_data_format_input_get_uplink_data_aggregation_protocol, function in WDA Set Data Format -
-
-
-qmi_message_wda_set_data_format_input_new, function in WDA Set Data Format -
-
-
-qmi_message_wda_set_data_format_input_ref, function in WDA Set Data Format -
-
-
-qmi_message_wda_set_data_format_input_set_downlink_data_aggregation_max_datagrams, function in WDA Set Data Format -
-
-
-qmi_message_wda_set_data_format_input_set_downlink_data_aggregation_max_size, function in WDA Set Data Format -
-
-
-qmi_message_wda_set_data_format_input_set_downlink_data_aggregation_protocol, function in WDA Set Data Format -
-
-
-qmi_message_wda_set_data_format_input_set_link_layer_protocol, function in WDA Set Data Format -
-
-
-qmi_message_wda_set_data_format_input_set_ndp_signature, function in WDA Set Data Format -
-
-
-qmi_message_wda_set_data_format_input_set_qos_format, function in WDA Set Data Format -
-
-
-qmi_message_wda_set_data_format_input_set_uplink_data_aggregation_protocol, function in WDA Set Data Format -
-
-
-qmi_message_wda_set_data_format_input_unref, function in WDA Set Data Format -
-
-
-qmi_message_wda_set_data_format_output_get_downlink_data_aggregation_max_datagrams, function in WDA Set Data Format -
-
-
-qmi_message_wda_set_data_format_output_get_downlink_data_aggregation_max_size, function in WDA Set Data Format -
-
-
-qmi_message_wda_set_data_format_output_get_downlink_data_aggregation_protocol, function in WDA Set Data Format -
-
-
-qmi_message_wda_set_data_format_output_get_link_layer_protocol, function in WDA Set Data Format -
-
-
-qmi_message_wda_set_data_format_output_get_ndp_signature, function in WDA Set Data Format -
-
-
-qmi_message_wda_set_data_format_output_get_qos_format, function in WDA Set Data Format -
-
-
-qmi_message_wda_set_data_format_output_get_result, function in WDA Set Data Format -
-
-
-qmi_message_wda_set_data_format_output_get_uplink_data_aggregation_protocol, function in WDA Set Data Format -
-
-
-qmi_message_wda_set_data_format_output_ref, function in WDA Set Data Format -
-
-
-qmi_message_wda_set_data_format_output_unref, function in WDA Set Data Format -
-
-

N

-
-QmiNasWcdmaRrcState, enum in NAS enumerations and flags -
-
-
-qmi_nas_wcdma_rrc_state_get_string, function in NAS enumerations and flags -
-
-

U

-
-QmiUimCardApplicationPersonalizationFeature, enum in UIM enumerations and flags -
-
-
-QmiUimCardApplicationPersonalizationState, enum in UIM enumerations and flags -
-
-
-QmiUimCardApplicationState, enum in UIM enumerations and flags -
-
-
-QmiUimCardApplicationType, enum in UIM enumerations and flags -
-
-
-QmiUimCardError, enum in UIM enumerations and flags -
-
-
-QmiUimCardState, enum in UIM enumerations and flags -
-
-
-QmiUimPinState, enum in UIM enumerations and flags -
-
-
-qmi_uim_card_application_personalization_feature_get_string, function in UIM enumerations and flags -
-
-
-qmi_uim_card_application_personalization_state_get_string, function in UIM enumerations and flags -
-
-
-qmi_uim_card_application_state_get_string, function in UIM enumerations and flags -
-
-
-qmi_uim_card_application_type_get_string, function in UIM enumerations and flags -
-
-
-qmi_uim_card_error_get_string, function in UIM enumerations and flags -
-
-
-qmi_uim_card_state_get_string, function in UIM enumerations and flags -
-
-
-qmi_uim_pin_state_get_string, function in UIM enumerations and flags -
-
-
-qmi_utils_read_gfloat_from_buffer, function in Common utilities -
-
-

W

-
-QmiWdaDataAggregationProtocol, enum in WDA enumerations and flags -
-
-
-QmiWdaLinkLayerProtocol, enum in WDA enumerations and flags -
-
-
-qmi_wda_data_aggregation_protocol_get_string, function in WDA enumerations and flags -
-
-
-qmi_wda_link_layer_protocol_get_string, function in WDA enumerations and flags -
-
-
- - - \ No newline at end of file diff -Nru libqmi-1.18.0/docs/reference/libqmi-glib/html/api-index-1-12.html libqmi-1.22.0/docs/reference/libqmi-glib/html/api-index-1-12.html --- libqmi-1.18.0/docs/reference/libqmi-glib/html/api-index-1-12.html 2017-03-22 12:28:29.000000000 +0100 +++ libqmi-1.22.0/docs/reference/libqmi-glib/html/api-index-1-12.html 1970-01-01 01:00:00.000000000 +0100 @@ -1,371 +0,0 @@ - - - - -Index of new core symbols in 1.12: libqmi-glib Reference Manual - - - - - - - - - - - - - - - - -
-

-Index of new core symbols in 1.12

-

C

-
-qmi_client_pds_get_agps_config, function in PDS Get AGPS Config -
-
-
-qmi_client_pds_get_agps_config_finish, function in PDS Get AGPS Config -
-
-
-qmi_client_pds_get_default_tracking_session, function in PDS Get Default Tracking Session -
-
-
-qmi_client_pds_get_default_tracking_session_finish, function in PDS Get Default Tracking Session -
-
-
-qmi_client_pds_set_agps_config, function in PDS Set AGPS Config -
-
-
-qmi_client_pds_set_agps_config_finish, function in PDS Set AGPS Config -
-
-
-qmi_client_pds_set_default_tracking_session, function in PDS Set Default Tracking Session -
-
-
-qmi_client_pds_set_default_tracking_session_finish, function in PDS Set Default Tracking Session -
-
-

D

-
-QmiDevice:device-no-file-check, object property in QmiDevice -
-
-
-QmiDevice:device-proxy-path, object property in QmiDevice -
-
-
-QMI_DEVICE_NO_FILE_CHECK, macro in QmiDevice -
-
-
-QMI_DEVICE_PROXY_PATH, macro in QmiDevice -
-
-

M

-
-QmiMessagePdsGetAgpsConfigInput, struct in PDS Get AGPS Config -
-
-
-QmiMessagePdsGetAgpsConfigOutput, struct in PDS Get AGPS Config -
-
-
-QmiMessagePdsGetDefaultTrackingSessionOutput, struct in PDS Get Default Tracking Session -
-
-
-QmiMessagePdsSetAgpsConfigInput, struct in PDS Set AGPS Config -
-
-
-QmiMessagePdsSetAgpsConfigOutput, struct in PDS Set AGPS Config -
-
-
-QmiMessagePdsSetDefaultTrackingSessionInput, struct in PDS Set Default Tracking Session -
-
-
-QmiMessagePdsSetDefaultTrackingSessionOutput, struct in PDS Set Default Tracking Session -
-
-
-qmi_message_pds_get_agps_config_input_get_network_mode, function in PDS Get AGPS Config -
-
-
-qmi_message_pds_get_agps_config_input_new, function in PDS Get AGPS Config -
-
-
-qmi_message_pds_get_agps_config_input_ref, function in PDS Get AGPS Config -
-
-
-qmi_message_pds_get_agps_config_input_set_network_mode, function in PDS Get AGPS Config -
-
-
-qmi_message_pds_get_agps_config_input_unref, function in PDS Get AGPS Config -
-
-
-qmi_message_pds_get_agps_config_output_get_location_server_address, function in PDS Get AGPS Config -
-
-
-qmi_message_pds_get_agps_config_output_get_location_server_url, function in PDS Get AGPS Config -
-
-
-qmi_message_pds_get_agps_config_output_get_result, function in PDS Get AGPS Config -
-
-
-qmi_message_pds_get_agps_config_output_ref, function in PDS Get AGPS Config -
-
-
-qmi_message_pds_get_agps_config_output_unref, function in PDS Get AGPS Config -
-
-
-qmi_message_pds_get_default_tracking_session_output_get_info, function in PDS Get Default Tracking Session -
-
-
-qmi_message_pds_get_default_tracking_session_output_get_result, function in PDS Get Default Tracking Session -
-
-
-qmi_message_pds_get_default_tracking_session_output_ref, function in PDS Get Default Tracking Session -
-
-
-qmi_message_pds_get_default_tracking_session_output_unref, function in PDS Get Default Tracking Session -
-
-
-qmi_message_pds_set_agps_config_input_get_location_server_address, function in PDS Set AGPS Config -
-
-
-qmi_message_pds_set_agps_config_input_get_location_server_url, function in PDS Set AGPS Config -
-
-
-qmi_message_pds_set_agps_config_input_get_network_mode, function in PDS Set AGPS Config -
-
-
-qmi_message_pds_set_agps_config_input_new, function in PDS Set AGPS Config -
-
-
-qmi_message_pds_set_agps_config_input_ref, function in PDS Set AGPS Config -
-
-
-qmi_message_pds_set_agps_config_input_set_location_server_address, function in PDS Set AGPS Config -
-
-
-qmi_message_pds_set_agps_config_input_set_location_server_url, function in PDS Set AGPS Config -
-
-
-qmi_message_pds_set_agps_config_input_set_network_mode, function in PDS Set AGPS Config -
-
-
-qmi_message_pds_set_agps_config_input_unref, function in PDS Set AGPS Config -
-
-
-qmi_message_pds_set_agps_config_output_get_result, function in PDS Set AGPS Config -
-
-
-qmi_message_pds_set_agps_config_output_ref, function in PDS Set AGPS Config -
-
-
-qmi_message_pds_set_agps_config_output_unref, function in PDS Set AGPS Config -
-
-
-qmi_message_pds_set_default_tracking_session_input_get_info, function in PDS Set Default Tracking Session -
-
-
-qmi_message_pds_set_default_tracking_session_input_new, function in PDS Set Default Tracking Session -
-
-
-qmi_message_pds_set_default_tracking_session_input_ref, function in PDS Set Default Tracking Session -
-
-
-qmi_message_pds_set_default_tracking_session_input_set_info, function in PDS Set Default Tracking Session -
-
-
-qmi_message_pds_set_default_tracking_session_input_unref, function in PDS Set Default Tracking Session -
-
-
-qmi_message_pds_set_default_tracking_session_output_get_result, function in PDS Set Default Tracking Session -
-
-
-qmi_message_pds_set_default_tracking_session_output_ref, function in PDS Set Default Tracking Session -
-
-
-qmi_message_pds_set_default_tracking_session_output_unref, function in PDS Set Default Tracking Session -
-
-
-qmi_message_tlv_read_fixed_size_string, function in QmiMessage -
-
-
-qmi_message_tlv_read_gfloat, function in QmiMessage -
-
-
-qmi_message_tlv_read_gint16, function in QmiMessage -
-
-
-qmi_message_tlv_read_gint32, function in QmiMessage -
-
-
-qmi_message_tlv_read_gint64, function in QmiMessage -
-
-
-qmi_message_tlv_read_gint8, function in QmiMessage -
-
-
-qmi_message_tlv_read_guint16, function in QmiMessage -
-
-
-qmi_message_tlv_read_guint32, function in QmiMessage -
-
-
-qmi_message_tlv_read_guint64, function in QmiMessage -
-
-
-qmi_message_tlv_read_guint8, function in QmiMessage -
-
-
-qmi_message_tlv_read_init, function in QmiMessage -
-
-
-qmi_message_tlv_read_sized_guint, function in QmiMessage -
-
-
-qmi_message_tlv_read_string, function in QmiMessage -
-
-
-qmi_message_tlv_write_complete, function in QmiMessage -
-
-
-qmi_message_tlv_write_gint16, function in QmiMessage -
-
-
-qmi_message_tlv_write_gint32, function in QmiMessage -
-
-
-qmi_message_tlv_write_gint64, function in QmiMessage -
-
-
-qmi_message_tlv_write_gint8, function in QmiMessage -
-
-
-qmi_message_tlv_write_guint16, function in QmiMessage -
-
-
-qmi_message_tlv_write_guint32, function in QmiMessage -
-
-
-qmi_message_tlv_write_guint64, function in QmiMessage -
-
-
-qmi_message_tlv_write_guint8, function in QmiMessage -
-
-
-qmi_message_tlv_write_init, function in QmiMessage -
-
-
-qmi_message_tlv_write_reset, function in QmiMessage -
-
-
-qmi_message_tlv_write_sized_guint, function in QmiMessage -
-
-
-qmi_message_tlv_write_string, function in QmiMessage -
-
-

P

-
-QmiPdsNetworkMode, enum in PDS enumerations and flags -
-
-
-QmiPdsOperatingMode, enum in PDS enumerations and flags -
-
-
-qmi_pds_network_mode_get_string, function in PDS enumerations and flags -
-
-
-qmi_pds_operating_mode_get_string, function in PDS enumerations and flags -
-
-
- - - \ No newline at end of file diff -Nru libqmi-1.18.0/docs/reference/libqmi-glib/html/api-index-1-14.html libqmi-1.22.0/docs/reference/libqmi-glib/html/api-index-1-14.html --- libqmi-1.18.0/docs/reference/libqmi-glib/html/api-index-1-14.html 2017-03-22 12:28:29.000000000 +0100 +++ libqmi-1.22.0/docs/reference/libqmi-glib/html/api-index-1-14.html 1970-01-01 01:00:00.000000000 +0100 @@ -1,1320 +0,0 @@ - - - - -Index of new core symbols in 1.14: libqmi-glib Reference Manual - - - - - - - - - - - - - - - - -
-

-Index of new core symbols in 1.14

-

C

-
-QmiClientPds::gps-ready, object signal in QmiClientPds -
-
-
-QmiClientVoice, struct in QmiClientVoice -
-
-
-QmiClientVoice::all-call-status, object signal in QmiClientVoice -
-
-
-QmiClientWds::packet-service-status, object signal in QmiClientWds -
-
-
-QmiClientWms::smsc-address, object signal in QmiClientWms -
-
-
-qmi_client_dms_get_supported_messages, function in DMS Get Supported Messages -
-
-
-qmi_client_dms_get_supported_messages_finish, function in DMS Get Supported Messages -
-
-
-qmi_client_dms_set_fcc_authentication, function in DMS Set FCC Authentication -
-
-
-qmi_client_dms_set_fcc_authentication_finish, function in DMS Set FCC Authentication -
-
-
-qmi_client_nas_get_supported_messages, function in NAS Get Supported Messages -
-
-
-qmi_client_nas_get_supported_messages_finish, function in NAS Get Supported Messages -
-
-
-qmi_client_uim_change_pin, function in UIM Change PIN -
-
-
-qmi_client_uim_change_pin_finish, function in UIM Change PIN -
-
-
-qmi_client_uim_get_supported_messages, function in UIM Get Supported Messages -
-
-
-qmi_client_uim_get_supported_messages_finish, function in UIM Get Supported Messages -
-
-
-qmi_client_uim_set_pin_protection, function in UIM Set PIN Protection -
-
-
-qmi_client_uim_set_pin_protection_finish, function in UIM Set PIN Protection -
-
-
-qmi_client_uim_unblock_pin, function in UIM Unblock PIN -
-
-
-qmi_client_uim_unblock_pin_finish, function in UIM Unblock PIN -
-
-
-qmi_client_uim_verify_pin, function in UIM Verify PIN -
-
-
-qmi_client_uim_verify_pin_finish, function in UIM Verify PIN -
-
-
-qmi_client_voice_answer_call, function in VOICE Answer Call -
-
-
-qmi_client_voice_answer_call_finish, function in VOICE Answer Call -
-
-
-qmi_client_voice_dial_call, function in VOICE Dial Call -
-
-
-qmi_client_voice_dial_call_finish, function in VOICE Dial Call -
-
-
-qmi_client_voice_end_call, function in VOICE End Call -
-
-
-qmi_client_voice_end_call_finish, function in VOICE End Call -
-
-
-qmi_client_voice_get_config, function in VOICE Get Config -
-
-
-qmi_client_voice_get_config_finish, function in VOICE Get Config -
-
-
-qmi_client_voice_get_supported_messages, function in VOICE Get Supported Messages -
-
-
-qmi_client_voice_get_supported_messages_finish, function in VOICE Get Supported Messages -
-
-
-qmi_client_wda_get_supported_messages, function in WDA Get Supported Messages -
-
-
-qmi_client_wda_get_supported_messages_finish, function in WDA Get Supported Messages -
-
-
-qmi_client_wds_get_autoconnect_settings, function in WDS Get Autoconnect Settings -
-
-
-qmi_client_wds_get_autoconnect_settings_finish, function in WDS Get Autoconnect Settings -
-
-
-qmi_client_wds_get_dormancy_status, function in WDS Get Dormancy Status -
-
-
-qmi_client_wds_get_dormancy_status_finish, function in WDS Get Dormancy Status -
-
-
-qmi_client_wds_get_pdn_throttle_info, function in WDS Get PDN Throttle Info -
-
-
-qmi_client_wds_get_pdn_throttle_info_finish, function in WDS Get PDN Throttle Info -
-
-
-qmi_client_wds_get_supported_messages, function in WDS Get Supported Messages -
-
-
-qmi_client_wds_get_supported_messages_finish, function in WDS Get Supported Messages -
-
-
-qmi_client_wds_set_autoconnect_settings, function in WDS Set Autoconnect Settings -
-
-
-qmi_client_wds_set_autoconnect_settings_finish, function in WDS Set Autoconnect Settings -
-
-
-qmi_client_wms_get_supported_messages, function in WMS Get Supported Messages -
-
-
-qmi_client_wms_get_supported_messages_finish, function in WMS Get Supported Messages -
-
-

D

-
-QmiDevice:device-wwan-iface, object property in QmiDevice -
-
-
-QmiDeviceExpectedDataFormat, enum in QmiDevice -
-
-
-qmi_device_expected_data_format_get_string, function in QmiDevice -
-
-
-qmi_device_get_expected_data_format, function in QmiDevice -
-
-
-qmi_device_get_wwan_iface, function in QmiDevice -
-
-
-qmi_device_set_expected_data_format, function in QmiDevice -
-
-
-QMI_DEVICE_WWAN_IFACE, macro in QmiDevice -
-
-

I

-
-QmiIndicationVoiceAllCallStatusOutput, struct in VOICE All Call Status -
-
-
-QmiIndicationVoiceAllCallStatusOutputCallInformationCall, struct in VOICE All Call Status -
-
-
-QmiIndicationVoiceAllCallStatusOutputRemotePartyNumberCall, struct in VOICE All Call Status -
-
-
-QmiIndicationWdsPacketServiceStatusOutput, struct in WDS Packet Service Status -
-
-
-QmiIndicationWmsSmscAddressOutput, struct in WMS SMSC Address -
-
-
-qmi_indication_nas_event_report_output_get_ecio, function in NAS Event Report -
-
-
-qmi_indication_voice_all_call_status_output_get_call_information, function in VOICE All Call Status -
-
-
-qmi_indication_voice_all_call_status_output_get_remote_party_number, function in VOICE All Call Status -
-
-
-qmi_indication_voice_all_call_status_output_ref, function in VOICE All Call Status -
-
-
-qmi_indication_voice_all_call_status_output_unref, function in VOICE All Call Status -
-
-
-qmi_indication_wds_packet_service_status_output_get_call_end_reason, function in WDS Packet Service Status -
-
-
-qmi_indication_wds_packet_service_status_output_get_connection_status, function in WDS Packet Service Status -
-
-
-qmi_indication_wds_packet_service_status_output_get_extended_technology_preference, function in WDS Packet Service Status -
-
-
-qmi_indication_wds_packet_service_status_output_get_ip_family, function in WDS Packet Service Status -
-
-
-qmi_indication_wds_packet_service_status_output_get_verbose_call_end_reason, function in WDS Packet Service Status -
-
-
-qmi_indication_wds_packet_service_status_output_ref, function in WDS Packet Service Status -
-
-
-qmi_indication_wds_packet_service_status_output_unref, function in WDS Packet Service Status -
-
-
-qmi_indication_wms_smsc_address_output_get_address, function in WMS SMSC Address -
-
-
-qmi_indication_wms_smsc_address_output_ref, function in WMS SMSC Address -
-
-
-qmi_indication_wms_smsc_address_output_unref, function in WMS SMSC Address -
-
-

M

-
-QmiMessageDmsGetSupportedMessagesOutput, struct in DMS Get Supported Messages -
-
-
-QmiMessageDmsSetFccAuthenticationOutput, struct in DMS Set FCC Authentication -
-
-
-QmiMessageNasGetSupportedMessagesOutput, struct in NAS Get Supported Messages -
-
-
-QmiMessageUimChangePinInput, struct in UIM Change PIN -
-
-
-QmiMessageUimChangePinOutput, struct in UIM Change PIN -
-
-
-QmiMessageUimGetSupportedMessagesOutput, struct in UIM Get Supported Messages -
-
-
-QmiMessageUimSetPinProtectionInput, struct in UIM Set PIN Protection -
-
-
-QmiMessageUimSetPinProtectionOutput, struct in UIM Set PIN Protection -
-
-
-QmiMessageUimUnblockPinInput, struct in UIM Unblock PIN -
-
-
-QmiMessageUimUnblockPinOutput, struct in UIM Unblock PIN -
-
-
-QmiMessageUimVerifyPinInput, struct in UIM Verify PIN -
-
-
-QmiMessageUimVerifyPinOutput, struct in UIM Verify PIN -
-
-
-QmiMessageVoiceAnswerCallInput, struct in VOICE Answer Call -
-
-
-QmiMessageVoiceAnswerCallOutput, struct in VOICE Answer Call -
-
-
-QmiMessageVoiceDialCallInput, struct in VOICE Dial Call -
-
-
-QmiMessageVoiceDialCallOutput, struct in VOICE Dial Call -
-
-
-QmiMessageVoiceEndCallInput, struct in VOICE End Call -
-
-
-QmiMessageVoiceEndCallOutput, struct in VOICE End Call -
-
-
-QmiMessageVoiceGetConfigInput, struct in VOICE Get Config -
-
-
-QmiMessageVoiceGetConfigOutput, struct in VOICE Get Config -
-
-
-QmiMessageVoiceGetSupportedMessagesOutput, struct in VOICE Get Supported Messages -
-
-
-QmiMessageWdaGetSupportedMessagesOutput, struct in WDA Get Supported Messages -
-
-
-QmiMessageWdsGetAutoconnectSettingsOutput, struct in WDS Get Autoconnect Settings -
-
-
-QmiMessageWdsGetDormancyStatusOutput, struct in WDS Get Dormancy Status -
-
-
-QmiMessageWdsGetPdnThrottleInfoInput, struct in WDS Get PDN Throttle Info -
-
-
-QmiMessageWdsGetPdnThrottleInfoOutput, struct in WDS Get PDN Throttle Info -
-
-
-QmiMessageWdsGetPdnThrottleInfoOutputInfoElement, struct in WDS Get PDN Throttle Info -
-
-
-QmiMessageWdsGetSupportedMessagesOutput, struct in WDS Get Supported Messages -
-
-
-QmiMessageWdsSetAutoconnectSettingsInput, struct in WDS Set Autoconnect Settings -
-
-
-QmiMessageWdsSetAutoconnectSettingsOutput, struct in WDS Set Autoconnect Settings -
-
-
-QmiMessageWmsGetSupportedMessagesOutput, struct in WMS Get Supported Messages -
-
-
-qmi_message_dms_get_supported_messages_output_get_list, function in DMS Get Supported Messages -
-
-
-qmi_message_dms_get_supported_messages_output_get_result, function in DMS Get Supported Messages -
-
-
-qmi_message_dms_get_supported_messages_output_ref, function in DMS Get Supported Messages -
-
-
-qmi_message_dms_get_supported_messages_output_unref, function in DMS Get Supported Messages -
-
-
-qmi_message_dms_set_fcc_authentication_output_get_result, function in DMS Set FCC Authentication -
-
-
-qmi_message_dms_set_fcc_authentication_output_ref, function in DMS Set FCC Authentication -
-
-
-qmi_message_dms_set_fcc_authentication_output_unref, function in DMS Set FCC Authentication -
-
-
-qmi_message_nas_get_supported_messages_output_get_result, function in NAS Get Supported Messages -
-
-
-qmi_message_nas_get_supported_messages_output_ref, function in NAS Get Supported Messages -
-
-
-qmi_message_nas_get_supported_messages_output_unref, function in NAS Get Supported Messages -
-
-
-qmi_message_uim_change_pin_input_get_info, function in UIM Change PIN -
-
-
-qmi_message_uim_change_pin_input_get_response_in_indication_token, function in UIM Change PIN -
-
-
-qmi_message_uim_change_pin_input_get_session_information, function in UIM Change PIN -
-
-
-qmi_message_uim_change_pin_input_new, function in UIM Change PIN -
-
-
-qmi_message_uim_change_pin_input_ref, function in UIM Change PIN -
-
-
-qmi_message_uim_change_pin_input_set_info, function in UIM Change PIN -
-
-
-qmi_message_uim_change_pin_input_set_response_in_indication_token, function in UIM Change PIN -
-
-
-qmi_message_uim_change_pin_input_set_session_information, function in UIM Change PIN -
-
-
-qmi_message_uim_change_pin_input_unref, function in UIM Change PIN -
-
-
-qmi_message_uim_change_pin_output_get_card_result, function in UIM Change PIN -
-
-
-qmi_message_uim_change_pin_output_get_response_in_indication_token, function in UIM Change PIN -
-
-
-qmi_message_uim_change_pin_output_get_result, function in UIM Change PIN -
-
-
-qmi_message_uim_change_pin_output_get_retries_remaining, function in UIM Change PIN -
-
-
-qmi_message_uim_change_pin_output_ref, function in UIM Change PIN -
-
-
-qmi_message_uim_change_pin_output_unref, function in UIM Change PIN -
-
-
-qmi_message_uim_get_supported_messages_output_get_list, function in UIM Get Supported Messages -
-
-
-qmi_message_uim_get_supported_messages_output_get_result, function in UIM Get Supported Messages -
-
-
-qmi_message_uim_get_supported_messages_output_ref, function in UIM Get Supported Messages -
-
-
-qmi_message_uim_get_supported_messages_output_unref, function in UIM Get Supported Messages -
-
-
-qmi_message_uim_set_pin_protection_input_get_info, function in UIM Set PIN Protection -
-
-
-qmi_message_uim_set_pin_protection_input_get_response_in_indication_token, function in UIM Set PIN Protection -
-
-
-qmi_message_uim_set_pin_protection_input_get_session_information, function in UIM Set PIN Protection -
-
-
-qmi_message_uim_set_pin_protection_input_new, function in UIM Set PIN Protection -
-
-
-qmi_message_uim_set_pin_protection_input_ref, function in UIM Set PIN Protection -
-
-
-qmi_message_uim_set_pin_protection_input_set_info, function in UIM Set PIN Protection -
-
-
-qmi_message_uim_set_pin_protection_input_set_response_in_indication_token, function in UIM Set PIN Protection -
-
-
-qmi_message_uim_set_pin_protection_input_set_session_information, function in UIM Set PIN Protection -
-
-
-qmi_message_uim_set_pin_protection_input_unref, function in UIM Set PIN Protection -
-
-
-qmi_message_uim_set_pin_protection_output_get_response_in_indication_token, function in UIM Set PIN Protection -
-
-
-qmi_message_uim_set_pin_protection_output_get_result, function in UIM Set PIN Protection -
-
-
-qmi_message_uim_set_pin_protection_output_get_retries_remaining, function in UIM Set PIN Protection -
-
-
-qmi_message_uim_set_pin_protection_output_ref, function in UIM Set PIN Protection -
-
-
-qmi_message_uim_set_pin_protection_output_unref, function in UIM Set PIN Protection -
-
-
-qmi_message_uim_unblock_pin_input_get_info, function in UIM Unblock PIN -
-
-
-qmi_message_uim_unblock_pin_input_get_response_in_indication_token, function in UIM Unblock PIN -
-
-
-qmi_message_uim_unblock_pin_input_get_session_information, function in UIM Unblock PIN -
-
-
-qmi_message_uim_unblock_pin_input_new, function in UIM Unblock PIN -
-
-
-qmi_message_uim_unblock_pin_input_ref, function in UIM Unblock PIN -
-
-
-qmi_message_uim_unblock_pin_input_set_info, function in UIM Unblock PIN -
-
-
-qmi_message_uim_unblock_pin_input_set_response_in_indication_token, function in UIM Unblock PIN -
-
-
-qmi_message_uim_unblock_pin_input_set_session_information, function in UIM Unblock PIN -
-
-
-qmi_message_uim_unblock_pin_input_unref, function in UIM Unblock PIN -
-
-
-qmi_message_uim_unblock_pin_output_get_card_result, function in UIM Unblock PIN -
-
-
-qmi_message_uim_unblock_pin_output_get_response_in_indication_token, function in UIM Unblock PIN -
-
-
-qmi_message_uim_unblock_pin_output_get_result, function in UIM Unblock PIN -
-
-
-qmi_message_uim_unblock_pin_output_get_retries_remaining, function in UIM Unblock PIN -
-
-
-qmi_message_uim_unblock_pin_output_ref, function in UIM Unblock PIN -
-
-
-qmi_message_uim_unblock_pin_output_unref, function in UIM Unblock PIN -
-
-
-qmi_message_uim_verify_pin_input_get_info, function in UIM Verify PIN -
-
-
-qmi_message_uim_verify_pin_input_get_response_in_indication_token, function in UIM Verify PIN -
-
-
-qmi_message_uim_verify_pin_input_get_session_information, function in UIM Verify PIN -
-
-
-qmi_message_uim_verify_pin_input_new, function in UIM Verify PIN -
-
-
-qmi_message_uim_verify_pin_input_ref, function in UIM Verify PIN -
-
-
-qmi_message_uim_verify_pin_input_set_info, function in UIM Verify PIN -
-
-
-qmi_message_uim_verify_pin_input_set_response_in_indication_token, function in UIM Verify PIN -
-
-
-qmi_message_uim_verify_pin_input_set_session_information, function in UIM Verify PIN -
-
-
-qmi_message_uim_verify_pin_input_unref, function in UIM Verify PIN -
-
-
-qmi_message_uim_verify_pin_output_get_card_result, function in UIM Verify PIN -
-
-
-qmi_message_uim_verify_pin_output_get_response_in_indication_token, function in UIM Verify PIN -
-
-
-qmi_message_uim_verify_pin_output_get_result, function in UIM Verify PIN -
-
-
-qmi_message_uim_verify_pin_output_get_retries_remaining, function in UIM Verify PIN -
-
-
-qmi_message_uim_verify_pin_output_ref, function in UIM Verify PIN -
-
-
-qmi_message_uim_verify_pin_output_unref, function in UIM Verify PIN -
-
-
-qmi_message_voice_answer_call_input_get_call_id, function in VOICE Answer Call -
-
-
-qmi_message_voice_answer_call_input_new, function in VOICE Answer Call -
-
-
-qmi_message_voice_answer_call_input_ref, function in VOICE Answer Call -
-
-
-qmi_message_voice_answer_call_input_set_call_id, function in VOICE Answer Call -
-
-
-qmi_message_voice_answer_call_input_unref, function in VOICE Answer Call -
-
-
-qmi_message_voice_answer_call_output_get_call_id, function in VOICE Answer Call -
-
-
-qmi_message_voice_answer_call_output_get_result, function in VOICE Answer Call -
-
-
-qmi_message_voice_answer_call_output_ref, function in VOICE Answer Call -
-
-
-qmi_message_voice_answer_call_output_unref, function in VOICE Answer Call -
-
-
-qmi_message_voice_dial_call_input_get_calling_number, function in VOICE Dial Call -
-
-
-qmi_message_voice_dial_call_input_new, function in VOICE Dial Call -
-
-
-qmi_message_voice_dial_call_input_ref, function in VOICE Dial Call -
-
-
-qmi_message_voice_dial_call_input_set_calling_number, function in VOICE Dial Call -
-
-
-qmi_message_voice_dial_call_input_unref, function in VOICE Dial Call -
-
-
-qmi_message_voice_dial_call_output_get_call_id, function in VOICE Dial Call -
-
-
-qmi_message_voice_dial_call_output_get_result, function in VOICE Dial Call -
-
-
-qmi_message_voice_dial_call_output_ref, function in VOICE Dial Call -
-
-
-qmi_message_voice_dial_call_output_unref, function in VOICE Dial Call -
-
-
-qmi_message_voice_end_call_input_get_call_id, function in VOICE End Call -
-
-
-qmi_message_voice_end_call_input_new, function in VOICE End Call -
-
-
-qmi_message_voice_end_call_input_ref, function in VOICE End Call -
-
-
-qmi_message_voice_end_call_input_set_call_id, function in VOICE End Call -
-
-
-qmi_message_voice_end_call_input_unref, function in VOICE End Call -
-
-
-qmi_message_voice_end_call_output_get_call_id, function in VOICE End Call -
-
-
-qmi_message_voice_end_call_output_get_result, function in VOICE End Call -
-
-
-qmi_message_voice_end_call_output_ref, function in VOICE End Call -
-
-
-qmi_message_voice_end_call_output_unref, function in VOICE End Call -
-
-
-qmi_message_voice_get_config_input_get_air_timer, function in VOICE Get Config -
-
-
-qmi_message_voice_get_config_input_get_amr_status, function in VOICE Get Config -
-
-
-qmi_message_voice_get_config_input_get_auto_answer, function in VOICE Get Config -
-
-
-qmi_message_voice_get_config_input_get_nam_index, function in VOICE Get Config -
-
-
-qmi_message_voice_get_config_input_get_preferred_voice_privacy, function in VOICE Get Config -
-
-
-qmi_message_voice_get_config_input_get_preferred_voice_service_option, function in VOICE Get Config -
-
-
-qmi_message_voice_get_config_input_get_roam_timer, function in VOICE Get Config -
-
-
-qmi_message_voice_get_config_input_get_tty_mode, function in VOICE Get Config -
-
-
-qmi_message_voice_get_config_input_get_voice_domain_preference, function in VOICE Get Config -
-
-
-qmi_message_voice_get_config_input_new, function in VOICE Get Config -
-
-
-qmi_message_voice_get_config_input_ref, function in VOICE Get Config -
-
-
-qmi_message_voice_get_config_input_set_air_timer, function in VOICE Get Config -
-
-
-qmi_message_voice_get_config_input_set_amr_status, function in VOICE Get Config -
-
-
-qmi_message_voice_get_config_input_set_auto_answer, function in VOICE Get Config -
-
-
-qmi_message_voice_get_config_input_set_nam_index, function in VOICE Get Config -
-
-
-qmi_message_voice_get_config_input_set_preferred_voice_privacy, function in VOICE Get Config -
-
-
-qmi_message_voice_get_config_input_set_preferred_voice_service_option, function in VOICE Get Config -
-
-
-qmi_message_voice_get_config_input_set_roam_timer, function in VOICE Get Config -
-
-
-qmi_message_voice_get_config_input_set_tty_mode, function in VOICE Get Config -
-
-
-qmi_message_voice_get_config_input_set_voice_domain_preference, function in VOICE Get Config -
-
-
-qmi_message_voice_get_config_input_unref, function in VOICE Get Config -
-
-
-qmi_message_voice_get_config_output_get_air_timer_count, function in VOICE Get Config -
-
-
-qmi_message_voice_get_config_output_get_auto_answer_status, function in VOICE Get Config -
-
-
-qmi_message_voice_get_config_output_get_current_amr_status, function in VOICE Get Config -
-
-
-qmi_message_voice_get_config_output_get_current_preferred_voice_so, function in VOICE Get Config -
-
-
-qmi_message_voice_get_config_output_get_current_tty_mode, function in VOICE Get Config -
-
-
-qmi_message_voice_get_config_output_get_current_voice_domain_preference, function in VOICE Get Config -
-
-
-qmi_message_voice_get_config_output_get_current_voice_privacy_preference, function in VOICE Get Config -
-
-
-qmi_message_voice_get_config_output_get_result, function in VOICE Get Config -
-
-
-qmi_message_voice_get_config_output_get_roam_timer_count, function in VOICE Get Config -
-
-
-qmi_message_voice_get_config_output_ref, function in VOICE Get Config -
-
-
-qmi_message_voice_get_config_output_unref, function in VOICE Get Config -
-
-
-qmi_message_voice_get_supported_messages_output_get_list, function in VOICE Get Supported Messages -
-
-
-qmi_message_voice_get_supported_messages_output_get_result, function in VOICE Get Supported Messages -
-
-
-qmi_message_voice_get_supported_messages_output_ref, function in VOICE Get Supported Messages -
-
-
-qmi_message_voice_get_supported_messages_output_unref, function in VOICE Get Supported Messages -
-
-
-qmi_message_wda_get_supported_messages_output_get_list, function in WDA Get Supported Messages -
-
-
-qmi_message_wda_get_supported_messages_output_get_result, function in WDA Get Supported Messages -
-
-
-qmi_message_wda_get_supported_messages_output_ref, function in WDA Get Supported Messages -
-
-
-qmi_message_wda_get_supported_messages_output_unref, function in WDA Get Supported Messages -
-
-
-qmi_message_wds_get_autoconnect_settings_output_get_result, function in WDS Get Autoconnect Settings -
-
-
-qmi_message_wds_get_autoconnect_settings_output_get_roaming, function in WDS Get Autoconnect Settings -
-
-
-qmi_message_wds_get_autoconnect_settings_output_get_status, function in WDS Get Autoconnect Settings -
-
-
-qmi_message_wds_get_autoconnect_settings_output_ref, function in WDS Get Autoconnect Settings -
-
-
-qmi_message_wds_get_autoconnect_settings_output_unref, function in WDS Get Autoconnect Settings -
-
-
-qmi_message_wds_get_current_settings_output_get_umts_granted_qos, function in WDS Get Current Settings -
-
-
-qmi_message_wds_get_dormancy_status_output_get_dormancy_status, function in WDS Get Dormancy Status -
-
-
-qmi_message_wds_get_dormancy_status_output_get_result, function in WDS Get Dormancy Status -
-
-
-qmi_message_wds_get_dormancy_status_output_ref, function in WDS Get Dormancy Status -
-
-
-qmi_message_wds_get_dormancy_status_output_unref, function in WDS Get Dormancy Status -
-
-
-qmi_message_wds_get_pdn_throttle_info_input_get_network_type, function in WDS Get PDN Throttle Info -
-
-
-qmi_message_wds_get_pdn_throttle_info_input_new, function in WDS Get PDN Throttle Info -
-
-
-qmi_message_wds_get_pdn_throttle_info_input_ref, function in WDS Get PDN Throttle Info -
-
-
-qmi_message_wds_get_pdn_throttle_info_input_set_network_type, function in WDS Get PDN Throttle Info -
-
-
-qmi_message_wds_get_pdn_throttle_info_input_unref, function in WDS Get PDN Throttle Info -
-
-
-qmi_message_wds_get_pdn_throttle_info_output_get_info, function in WDS Get PDN Throttle Info -
-
-
-qmi_message_wds_get_pdn_throttle_info_output_get_result, function in WDS Get PDN Throttle Info -
-
-
-qmi_message_wds_get_pdn_throttle_info_output_ref, function in WDS Get PDN Throttle Info -
-
-
-qmi_message_wds_get_pdn_throttle_info_output_unref, function in WDS Get PDN Throttle Info -
-
-
-qmi_message_wds_get_supported_messages_output_get_list, function in WDS Get Supported Messages -
-
-
-qmi_message_wds_get_supported_messages_output_get_result, function in WDS Get Supported Messages -
-
-
-qmi_message_wds_get_supported_messages_output_ref, function in WDS Get Supported Messages -
-
-
-qmi_message_wds_get_supported_messages_output_unref, function in WDS Get Supported Messages -
-
-
-qmi_message_wds_set_autoconnect_settings_input_get_roaming, function in WDS Set Autoconnect Settings -
-
-
-qmi_message_wds_set_autoconnect_settings_input_get_status, function in WDS Set Autoconnect Settings -
-
-
-qmi_message_wds_set_autoconnect_settings_input_new, function in WDS Set Autoconnect Settings -
-
-
-qmi_message_wds_set_autoconnect_settings_input_ref, function in WDS Set Autoconnect Settings -
-
-
-qmi_message_wds_set_autoconnect_settings_input_set_roaming, function in WDS Set Autoconnect Settings -
-
-
-qmi_message_wds_set_autoconnect_settings_input_set_status, function in WDS Set Autoconnect Settings -
-
-
-qmi_message_wds_set_autoconnect_settings_input_unref, function in WDS Set Autoconnect Settings -
-
-
-qmi_message_wds_set_autoconnect_settings_output_get_result, function in WDS Set Autoconnect Settings -
-
-
-qmi_message_wds_set_autoconnect_settings_output_ref, function in WDS Set Autoconnect Settings -
-
-
-qmi_message_wds_set_autoconnect_settings_output_unref, function in WDS Set Autoconnect Settings -
-
-
-qmi_message_wms_get_supported_messages_output_get_list, function in WMS Get Supported Messages -
-
-
-qmi_message_wms_get_supported_messages_output_get_result, function in WMS Get Supported Messages -
-
-
-qmi_message_wms_get_supported_messages_output_ref, function in WMS Get Supported Messages -
-
-
-qmi_message_wms_get_supported_messages_output_unref, function in WMS Get Supported Messages -
-
-

U

-
-QmiUimPinId, enum in UIM enumerations and flags -
-
-
-qmi_uim_pin_id_get_string, function in UIM enumerations and flags -
-
-

V

-
-QmiVoiceAls, enum in VOICE enumerations and flags -
-
-
-QmiVoiceCallDirection, enum in VOICE enumerations and flags -
-
-
-QmiVoiceCallMode, enum in VOICE enumerations and flags -
-
-
-QmiVoiceCallState, enum in VOICE enumerations and flags -
-
-
-QmiVoiceCallType, enum in VOICE enumerations and flags -
-
-
-QmiVoiceDomain, enum in VOICE enumerations and flags -
-
-
-QmiVoicePresentation, enum in VOICE enumerations and flags -
-
-
-QmiVoicePrivacy, enum in VOICE enumerations and flags -
-
-
-QmiVoiceServiceOption, enum in VOICE enumerations and flags -
-
-
-QmiVoiceTtyMode, enum in VOICE enumerations and flags -
-
-
-QmiVoiceWcdmaAmrStatus, enum in VOICE enumerations and flags -
-
-
-qmi_voice_als_get_string, function in VOICE enumerations and flags -
-
-
-qmi_voice_call_direction_get_string, function in VOICE enumerations and flags -
-
-
-qmi_voice_call_mode_get_string, function in VOICE enumerations and flags -
-
-
-qmi_voice_call_state_get_string, function in VOICE enumerations and flags -
-
-
-qmi_voice_call_type_get_string, function in VOICE enumerations and flags -
-
-
-qmi_voice_domain_get_string, function in VOICE enumerations and flags -
-
-
-qmi_voice_presentation_get_string, function in VOICE enumerations and flags -
-
-
-qmi_voice_privacy_get_string, function in VOICE enumerations and flags -
-
-
-qmi_voice_service_option_get_string, function in VOICE enumerations and flags -
-
-
-qmi_voice_tty_mode_get_string, function in VOICE enumerations and flags -
-
-
-qmi_voice_wcdma_amr_status_build_string_from_mask, function in VOICE enumerations and flags -
-
-

W

-
-QmiWdsAutoconnectSetting, enum in WDS enumerations and flags -
-
-
-QmiWdsAutoconnectSettingRoaming, enum in WDS enumerations and flags -
-
-
-QmiWdsDataSystemNetworkType, enum in WDS enumerations and flags -
-
-
-QmiWdsDeliveryOrder, enum in WDS enumerations and flags -
-
-
-QmiWdsSduErroneousDelivery, enum in WDS enumerations and flags -
-
-
-QmiWdsSduErrorRatio, enum in WDS enumerations and flags -
-
-
-QmiWdsSduResidualBitErrorRatio, enum in WDS enumerations and flags -
-
-
-qmi_wds_autoconnect_setting_get_string, function in WDS enumerations and flags -
-
-
-qmi_wds_autoconnect_setting_roaming_get_string, function in WDS enumerations and flags -
-
-
-qmi_wds_data_system_network_type_get_string, function in WDS enumerations and flags -
-
-
-qmi_wds_delivery_order_get_string, function in WDS enumerations and flags -
-
-
-qmi_wds_sdu_erroneous_delivery_get_string, function in WDS enumerations and flags -
-
-
-qmi_wds_sdu_error_ratio_get_string, function in WDS enumerations and flags -
-
-
-qmi_wds_sdu_residual_bit_error_ratio_get_string, function in WDS enumerations and flags -
-
-
- - - \ No newline at end of file diff -Nru libqmi-1.18.0/docs/reference/libqmi-glib/html/api-index-1-16.html libqmi-1.22.0/docs/reference/libqmi-glib/html/api-index-1-16.html --- libqmi-1.18.0/docs/reference/libqmi-glib/html/api-index-1-16.html 2017-03-22 12:28:29.000000000 +0100 +++ libqmi-1.22.0/docs/reference/libqmi-glib/html/api-index-1-16.html 1970-01-01 01:00:00.000000000 +0100 @@ -1,120 +0,0 @@ - - - - -Index of new core symbols in 1.16: libqmi-glib Reference Manual - - - - - - - - - - - - - - - - -
-

-Index of new core symbols in 1.16

-

C

-
-qmi_client_nas_force_network_search, function in NAS Force Network Search -
-
-
-qmi_client_nas_force_network_search_finish, function in NAS Force Network Search -
-
-
-qmi_client_nas_get_lte_cphy_ca_info, function in NAS Get LTE Cphy CA Info -
-
-
-qmi_client_nas_get_lte_cphy_ca_info_finish, function in NAS Get LTE Cphy CA Info -
-
-

M

-
-QMI_MBIM_QMUX_SUPPORTED, macro in Version and feature checks -
-
-
-QmiMessageNasForceNetworkSearchOutput, struct in NAS Force Network Search -
-
-
-QmiMessageNasGetLteCphyCaInfoOutput, struct in NAS Get LTE Cphy CA Info -
-
-
-qmi_message_nas_force_network_search_output_get_result, function in NAS Force Network Search -
-
-
-qmi_message_nas_force_network_search_output_ref, function in NAS Force Network Search -
-
-
-qmi_message_nas_force_network_search_output_unref, function in NAS Force Network Search -
-
-
-qmi_message_nas_get_lte_cphy_ca_info_output_get_dl_bandwidth, function in NAS Get LTE Cphy CA Info -
-
-
-qmi_message_nas_get_lte_cphy_ca_info_output_get_phy_ca_agg_pcell_info, function in NAS Get LTE Cphy CA Info -
-
-
-qmi_message_nas_get_lte_cphy_ca_info_output_get_phy_ca_agg_scell_info, function in NAS Get LTE Cphy CA Info -
-
-
-qmi_message_nas_get_lte_cphy_ca_info_output_get_result, function in NAS Get LTE Cphy CA Info -
-
-
-qmi_message_nas_get_lte_cphy_ca_info_output_get_scell_index, function in NAS Get LTE Cphy CA Info -
-
-
-qmi_message_nas_get_lte_cphy_ca_info_output_ref, function in NAS Get LTE Cphy CA Info -
-
-
-qmi_message_nas_get_lte_cphy_ca_info_output_unref, function in NAS Get LTE Cphy CA Info -
-
-

N

-
-QmiNasDLBandwidth, enum in NAS enumerations and flags -
-
-
-QmiNasScellState, enum in NAS enumerations and flags -
-
-
-qmi_nas_dl_bandwidth_get_string, function in NAS enumerations and flags -
-
-
-qmi_nas_scell_state_get_string, function in NAS enumerations and flags -
-
-
- - - \ No newline at end of file diff -Nru libqmi-1.18.0/docs/reference/libqmi-glib/html/api-index-1-18.html libqmi-1.22.0/docs/reference/libqmi-glib/html/api-index-1-18.html --- libqmi-1.18.0/docs/reference/libqmi-glib/html/api-index-1-18.html 2017-03-22 12:28:28.000000000 +0100 +++ libqmi-1.22.0/docs/reference/libqmi-glib/html/api-index-1-18.html 1970-01-01 01:00:00.000000000 +0100 @@ -1,2680 +0,0 @@ - - - - -Index of new core symbols in 1.18: libqmi-glib Reference Manual - - - - - - - - - - - - - - - - -
-

-Index of new core symbols in 1.18

-

C

-
-QmiClientNas::operator-name, object signal in QmiClientNas -
-
-
-QmiClientPdc, struct in QmiClientPdc -
-
-
-QmiClientPdc::activate-config, object signal in QmiClientPdc -
-
-
-QmiClientPdc::deactivate-config, object signal in QmiClientPdc -
-
-
-QmiClientPdc::get-config-info, object signal in QmiClientPdc -
-
-
-QmiClientPdc::get-selected-config, object signal in QmiClientPdc -
-
-
-QmiClientPdc::list-configs, object signal in QmiClientPdc -
-
-
-QmiClientPdc::load-config, object signal in QmiClientPdc -
-
-
-QmiClientPdc::set-selected-config, object signal in QmiClientPdc -
-
-
-QmiClientWds::event-report, object signal in QmiClientWds -
-
-
-qmi_client_dms_get_boot_image_download_mode, function in DMS Get Boot Image Download Mode -
-
-
-qmi_client_dms_get_boot_image_download_mode_finish, function in DMS Get Boot Image Download Mode -
-
-
-qmi_client_dms_hp_change_device_mode, function in DMS HP Change Device Mode -
-
-
-qmi_client_dms_hp_change_device_mode_finish, function in DMS HP Change Device Mode -
-
-
-qmi_client_dms_set_boot_image_download_mode, function in DMS Set Boot Image Download Mode -
-
-
-qmi_client_dms_set_boot_image_download_mode_finish, function in DMS Set Boot Image Download Mode -
-
-
-qmi_client_dms_set_firmware_id, function in DMS Set Firmware ID -
-
-
-qmi_client_dms_set_firmware_id_finish, function in DMS Set Firmware ID -
-
-
-qmi_client_dms_swi_get_current_firmware, function in DMS Swi Get Current Firmware -
-
-
-qmi_client_dms_swi_get_current_firmware_finish, function in DMS Swi Get Current Firmware -
-
-
-qmi_client_nas_get_operator_name, function in NAS Get Operator Name -
-
-
-qmi_client_nas_get_operator_name_finish, function in NAS Get Operator Name -
-
-
-qmi_client_pdc_activate_config, function in PDC Activate Config -
-
-
-qmi_client_pdc_activate_config_finish, function in PDC Activate Config -
-
-
-qmi_client_pdc_config_change, function in PDC Config Change -
-
-
-qmi_client_pdc_config_change_finish, function in PDC Config Change -
-
-
-qmi_client_pdc_deactivate_config, function in PDC Deactivate Config -
-
-
-qmi_client_pdc_deactivate_config_finish, function in PDC Deactivate Config -
-
-
-qmi_client_pdc_delete_config, function in PDC Delete Config -
-
-
-qmi_client_pdc_delete_config_finish, function in PDC Delete Config -
-
-
-qmi_client_pdc_get_config_info, function in PDC Get Config Info -
-
-
-qmi_client_pdc_get_config_info_finish, function in PDC Get Config Info -
-
-
-qmi_client_pdc_get_config_limits, function in PDC Get Config Limits -
-
-
-qmi_client_pdc_get_config_limits_finish, function in PDC Get Config Limits -
-
-
-qmi_client_pdc_get_default_config_info, function in PDC Get Default Config Info -
-
-
-qmi_client_pdc_get_default_config_info_finish, function in PDC Get Default Config Info -
-
-
-qmi_client_pdc_get_selected_config, function in PDC Get Selected Config -
-
-
-qmi_client_pdc_get_selected_config_finish, function in PDC Get Selected Config -
-
-
-qmi_client_pdc_list_configs, function in PDC List Configs -
-
-
-qmi_client_pdc_list_configs_finish, function in PDC List Configs -
-
-
-qmi_client_pdc_load_config, function in PDC Load Config -
-
-
-qmi_client_pdc_load_config_finish, function in PDC Load Config -
-
-
-qmi_client_pdc_register, function in PDC Register -
-
-
-qmi_client_pdc_register_finish, function in PDC Register -
-
-
-qmi_client_pdc_reset, function in PDC Reset -
-
-
-qmi_client_pdc_reset_finish, function in PDC Reset -
-
-
-qmi_client_pdc_set_selected_config, function in PDC Set Selected Config -
-
-
-qmi_client_pdc_set_selected_config_finish, function in PDC Set Selected Config -
-
-
-qmi_client_uim_power_off_sim, function in UIM Power Off SIM -
-
-
-qmi_client_uim_power_off_sim_finish, function in UIM Power Off SIM -
-
-
-qmi_client_uim_power_on_sim, function in UIM Power On SIM -
-
-
-qmi_client_uim_power_on_sim_finish, function in UIM Power On SIM -
-
-
-qmi_client_wds_bind_mux_data_port, function in WDS Bind Mux Data Port -
-
-
-qmi_client_wds_bind_mux_data_port_finish, function in WDS Bind Mux Data Port -
-
-
-qmi_client_wds_create_profile, function in WDS Create Profile -
-
-
-qmi_client_wds_create_profile_finish, function in WDS Create Profile -
-
-
-qmi_client_wds_delete_profile, function in WDS Delete Profile -
-
-
-qmi_client_wds_delete_profile_finish, function in WDS Delete Profile -
-
-
-qmi_client_wds_go_active, function in WDS Go Active -
-
-
-qmi_client_wds_go_active_finish, function in WDS Go Active -
-
-
-qmi_client_wds_go_dormant, function in WDS Go Dormant -
-
-
-qmi_client_wds_go_dormant_finish, function in WDS Go Dormant -
-
-
-qmi_client_wds_modify_profile, function in WDS Modify Profile -
-
-
-qmi_client_wds_modify_profile_finish, function in WDS Modify Profile -
-
-
-qmi_client_wds_set_event_report, function in WDS Set Event Report -
-
-
-qmi_client_wds_set_event_report_finish, function in WDS Set Event Report -
-
-
-QmiConfigTypeAndId, struct in PDC Config Change -
-
-

D

-
-QmiDataEndpointType, enum in Common enumerations and flags -
-
-
-qmi_data_endpoint_type_get_string, function in Common enumerations and flags -
-
-
-qmi_device_close_async, function in QmiDevice -
-
-
-qmi_device_close_finish, function in QmiDevice -
-
-
-qmi_device_command_full, function in QmiDevice -
-
-
-qmi_device_command_full_finish, function in QmiDevice -
-
-
-QmiDmsBootImageDownloadMode, enum in DMS enumerations and flags -
-
-
-QmiDmsHpDeviceMode, enum in DMS enumerations and flags -
-
-
-qmi_dms_boot_image_download_mode_get_string, function in DMS enumerations and flags -
-
-
-qmi_dms_hp_device_mode_get_string, function in DMS enumerations and flags -
-
-

I

-
-QmiIndicationNasOperatorNameOutput, struct in NAS Operator Name -
-
-
-QmiIndicationNasOperatorNameOutputOperatorPlmnListElement, struct in NAS Operator Name -
-
-
-QmiIndicationNasOperatorNameOutputOperatorPlmnNameElement, struct in NAS Operator Name -
-
-
-QmiIndicationPdcActivateConfigOutput, struct in PDC Activate Config -
-
-
-QmiIndicationPdcDeactivateConfigOutput, struct in PDC Deactivate Config -
-
-
-QmiIndicationPdcGetConfigInfoOutput, struct in PDC Get Config Info -
-
-
-QmiIndicationPdcGetSelectedConfigOutput, struct in PDC Get Selected Config -
-
-
-QmiIndicationPdcListConfigsOutput, struct in PDC List Configs -
-
-
-QmiIndicationPdcListConfigsOutputConfigsElement, struct in PDC List Configs -
-
-
-QmiIndicationPdcLoadConfigOutput, struct in PDC Load Config -
-
-
-QmiIndicationPdcSetSelectedConfigOutput, struct in PDC Set Selected Config -
-
-
-QmiIndicationWdsEventReportOutput, struct in WDS Event Report -
-
-
-QmiIndicationWdsEventReportOutputDataSystemsNetworksNetwork, struct in WDS Event Report -
-
-
-qmi_indication_nas_operator_name_output_get_operator_nitz_information, function in NAS Operator Name -
-
-
-qmi_indication_nas_operator_name_output_get_operator_plmn_list, function in NAS Operator Name -
-
-
-qmi_indication_nas_operator_name_output_get_operator_plmn_name, function in NAS Operator Name -
-
-
-qmi_indication_nas_operator_name_output_get_operator_string_name, function in NAS Operator Name -
-
-
-qmi_indication_nas_operator_name_output_get_service_provider_name, function in NAS Operator Name -
-
-
-qmi_indication_nas_operator_name_output_ref, function in NAS Operator Name -
-
-
-qmi_indication_nas_operator_name_output_unref, function in NAS Operator Name -
-
-
-qmi_indication_pdc_activate_config_output_get_indication_result, function in PDC Activate Config -
-
-
-qmi_indication_pdc_activate_config_output_get_token, function in PDC Activate Config -
-
-
-qmi_indication_pdc_activate_config_output_ref, function in PDC Activate Config -
-
-
-qmi_indication_pdc_activate_config_output_unref, function in PDC Activate Config -
-
-
-qmi_indication_pdc_deactivate_config_output_get_indication_result, function in PDC Deactivate Config -
-
-
-qmi_indication_pdc_deactivate_config_output_get_token, function in PDC Deactivate Config -
-
-
-qmi_indication_pdc_deactivate_config_output_ref, function in PDC Deactivate Config -
-
-
-qmi_indication_pdc_deactivate_config_output_unref, function in PDC Deactivate Config -
-
-
-qmi_indication_pdc_get_config_info_output_get_description, function in PDC Get Config Info -
-
-
-qmi_indication_pdc_get_config_info_output_get_indication_result, function in PDC Get Config Info -
-
-
-qmi_indication_pdc_get_config_info_output_get_token, function in PDC Get Config Info -
-
-
-qmi_indication_pdc_get_config_info_output_get_total_size, function in PDC Get Config Info -
-
-
-qmi_indication_pdc_get_config_info_output_get_version, function in PDC Get Config Info -
-
-
-qmi_indication_pdc_get_config_info_output_ref, function in PDC Get Config Info -
-
-
-qmi_indication_pdc_get_config_info_output_unref, function in PDC Get Config Info -
-
-
-qmi_indication_pdc_get_selected_config_output_get_active_id, function in PDC Get Selected Config -
-
-
-qmi_indication_pdc_get_selected_config_output_get_indication_result, function in PDC Get Selected Config -
-
-
-qmi_indication_pdc_get_selected_config_output_get_pending_id, function in PDC Get Selected Config -
-
-
-qmi_indication_pdc_get_selected_config_output_get_token, function in PDC Get Selected Config -
-
-
-qmi_indication_pdc_get_selected_config_output_ref, function in PDC Get Selected Config -
-
-
-qmi_indication_pdc_get_selected_config_output_unref, function in PDC Get Selected Config -
-
-
-qmi_indication_pdc_list_configs_output_get_configs, function in PDC List Configs -
-
-
-qmi_indication_pdc_list_configs_output_get_indication_result, function in PDC List Configs -
-
-
-qmi_indication_pdc_list_configs_output_get_token, function in PDC List Configs -
-
-
-qmi_indication_pdc_list_configs_output_ref, function in PDC List Configs -
-
-
-qmi_indication_pdc_list_configs_output_unref, function in PDC List Configs -
-
-
-qmi_indication_pdc_load_config_output_get_frame_reset, function in PDC Load Config -
-
-
-qmi_indication_pdc_load_config_output_get_indication_result, function in PDC Load Config -
-
-
-qmi_indication_pdc_load_config_output_get_received, function in PDC Load Config -
-
-
-qmi_indication_pdc_load_config_output_get_remaining_size, function in PDC Load Config -
-
-
-qmi_indication_pdc_load_config_output_get_token, function in PDC Load Config -
-
-
-qmi_indication_pdc_load_config_output_ref, function in PDC Load Config -
-
-
-qmi_indication_pdc_load_config_output_unref, function in PDC Load Config -
-
-
-qmi_indication_pdc_set_selected_config_output_get_indication_result, function in PDC Set Selected Config -
-
-
-qmi_indication_pdc_set_selected_config_output_get_token, function in PDC Set Selected Config -
-
-
-qmi_indication_pdc_set_selected_config_output_ref, function in PDC Set Selected Config -
-
-
-qmi_indication_pdc_set_selected_config_output_unref, function in PDC Set Selected Config -
-
-
-qmi_indication_wds_event_report_output_get_channel_rates, function in WDS Event Report -
-
-
-qmi_indication_wds_event_report_output_get_current_data_bearer_technology, function in WDS Event Report -
-
-
-qmi_indication_wds_event_report_output_get_data_bearer_technology, function in WDS Event Report -
-
-
-qmi_indication_wds_event_report_output_get_data_call_address_family, function in WDS Event Report -
-
-
-qmi_indication_wds_event_report_output_get_data_call_status, function in WDS Event Report -
-
-
-qmi_indication_wds_event_report_output_get_data_call_type, function in WDS Event Report -
-
-
-qmi_indication_wds_event_report_output_get_data_systems, function in WDS Event Report -
-
-
-qmi_indication_wds_event_report_output_get_dormancy_status, function in WDS Event Report -
-
-
-qmi_indication_wds_event_report_output_get_evdo_page_monitor_period_change, function in WDS Event Report -
-
-
-qmi_indication_wds_event_report_output_get_extended_data_bearer_technology, function in WDS Event Report -
-
-
-qmi_indication_wds_event_report_output_get_mip_status, function in WDS Event Report -
-
-
-qmi_indication_wds_event_report_output_get_pdn_filters_removed, function in WDS Event Report -
-
-
-qmi_indication_wds_event_report_output_get_preferred_data_system, function in WDS Event Report -
-
-
-qmi_indication_wds_event_report_output_get_rx_bytes_ok, function in WDS Event Report -
-
-
-qmi_indication_wds_event_report_output_get_rx_overflows, function in WDS Event Report -
-
-
-qmi_indication_wds_event_report_output_get_rx_packets_dropped, function in WDS Event Report -
-
-
-qmi_indication_wds_event_report_output_get_rx_packets_error, function in WDS Event Report -
-
-
-qmi_indication_wds_event_report_output_get_rx_packets_ok, function in WDS Event Report -
-
-
-qmi_indication_wds_event_report_output_get_tx_bytes_ok, function in WDS Event Report -
-
-
-qmi_indication_wds_event_report_output_get_tx_overflows, function in WDS Event Report -
-
-
-qmi_indication_wds_event_report_output_get_tx_packets_dropped, function in WDS Event Report -
-
-
-qmi_indication_wds_event_report_output_get_tx_packets_error, function in WDS Event Report -
-
-
-qmi_indication_wds_event_report_output_get_tx_packets_ok, function in WDS Event Report -
-
-
-qmi_indication_wds_event_report_output_get_uplink_flow_control_enabled, function in WDS Event Report -
-
-
-qmi_indication_wds_event_report_output_ref, function in WDS Event Report -
-
-
-qmi_indication_wds_event_report_output_unref, function in WDS Event Report -
-
-

M

-
-QmiMessageContext, struct in QmiMessageContext -
-
-
-QmiMessageDmsGetBootImageDownloadModeOutput, struct in DMS Get Boot Image Download Mode -
-
-
-QmiMessageDmsHpChangeDeviceModeInput, struct in DMS HP Change Device Mode -
-
-
-QmiMessageDmsHpChangeDeviceModeOutput, struct in DMS HP Change Device Mode -
-
-
-QmiMessageDmsSetBootImageDownloadModeInput, struct in DMS Set Boot Image Download Mode -
-
-
-QmiMessageDmsSetBootImageDownloadModeOutput, struct in DMS Set Boot Image Download Mode -
-
-
-QmiMessageDmsSetFirmwareIdOutput, struct in DMS Set Firmware ID -
-
-
-QmiMessageDmsSwiGetCurrentFirmwareOutput, struct in DMS Swi Get Current Firmware -
-
-
-QmiMessageNasGetOperatorNameOutput, struct in NAS Get Operator Name -
-
-
-QmiMessageNasGetOperatorNameOutputOperatorPlmnListElement, struct in NAS Get Operator Name -
-
-
-QmiMessageNasGetOperatorNameOutputOperatorPlmnNameElement, struct in NAS Get Operator Name -
-
-
-QmiMessagePdcActivateConfigInput, struct in PDC Activate Config -
-
-
-QmiMessagePdcActivateConfigOutput, struct in PDC Activate Config -
-
-
-QmiMessagePdcConfigChangeInput, struct in PDC Config Change -
-
-
-QmiMessagePdcConfigChangeOutput, struct in PDC Config Change -
-
-
-QmiMessagePdcDeactivateConfigInput, struct in PDC Deactivate Config -
-
-
-QmiMessagePdcDeactivateConfigOutput, struct in PDC Deactivate Config -
-
-
-QmiMessagePdcDeleteConfigInput, struct in PDC Delete Config -
-
-
-QmiMessagePdcDeleteConfigOutput, struct in PDC Delete Config -
-
-
-QmiMessagePdcGetConfigInfoInput, struct in PDC Get Config Info -
-
-
-QmiMessagePdcGetConfigInfoOutput, struct in PDC Get Config Info -
-
-
-QmiMessagePdcGetConfigLimitsInput, struct in PDC Get Config Limits -
-
-
-QmiMessagePdcGetConfigLimitsOutput, struct in PDC Get Config Limits -
-
-
-QmiMessagePdcGetDefaultConfigInfoInput, struct in PDC Get Default Config Info -
-
-
-QmiMessagePdcGetDefaultConfigInfoOutput, struct in PDC Get Default Config Info -
-
-
-QmiMessagePdcGetSelectedConfigInput, struct in PDC Get Selected Config -
-
-
-QmiMessagePdcGetSelectedConfigOutput, struct in PDC Get Selected Config -
-
-
-QmiMessagePdcListConfigsInput, struct in PDC List Configs -
-
-
-QmiMessagePdcListConfigsOutput, struct in PDC List Configs -
-
-
-QmiMessagePdcLoadConfigInput, struct in PDC Load Config -
-
-
-QmiMessagePdcLoadConfigOutput, struct in PDC Load Config -
-
-
-QmiMessagePdcRegisterInput, struct in PDC Register -
-
-
-QmiMessagePdcRegisterOutput, struct in PDC Register -
-
-
-QmiMessagePdcResetOutput, struct in PDC Reset -
-
-
-QmiMessagePdcSetSelectedConfigInput, struct in PDC Set Selected Config -
-
-
-QmiMessagePdcSetSelectedConfigOutput, struct in PDC Set Selected Config -
-
-
-QmiMessageUimPowerOffSimInput, struct in UIM Power Off SIM -
-
-
-QmiMessageUimPowerOffSimOutput, struct in UIM Power Off SIM -
-
-
-QmiMessageUimPowerOnSimInput, struct in UIM Power On SIM -
-
-
-QmiMessageUimPowerOnSimOutput, struct in UIM Power On SIM -
-
-
-QmiMessageWdsBindMuxDataPortInput, struct in WDS Bind Mux Data Port -
-
-
-QmiMessageWdsBindMuxDataPortOutput, struct in WDS Bind Mux Data Port -
-
-
-QmiMessageWdsCreateProfileInput, struct in WDS Create Profile -
-
-
-QmiMessageWdsCreateProfileOutput, struct in WDS Create Profile -
-
-
-QmiMessageWdsDeleteProfileInput, struct in WDS Delete Profile -
-
-
-QmiMessageWdsDeleteProfileOutput, struct in WDS Delete Profile -
-
-
-QmiMessageWdsGoActiveOutput, struct in WDS Go Active -
-
-
-QmiMessageWdsGoDormantOutput, struct in WDS Go Dormant -
-
-
-QmiMessageWdsModifyProfileInput, struct in WDS Modify Profile -
-
-
-QmiMessageWdsModifyProfileOutput, struct in WDS Modify Profile -
-
-
-QmiMessageWdsSetEventReportInput, struct in WDS Set Event Report -
-
-
-QmiMessageWdsSetEventReportOutput, struct in WDS Set Event Report -
-
-
-qmi_message_context_get_vendor_id, function in QmiMessageContext -
-
-
-qmi_message_context_new, function in QmiMessageContext -
-
-
-qmi_message_context_ref, function in QmiMessageContext -
-
-
-qmi_message_context_set_vendor_id, function in QmiMessageContext -
-
-
-qmi_message_context_unref, function in QmiMessageContext -
-
-
-qmi_message_dms_get_boot_image_download_mode_output_get_mode, function in DMS Get Boot Image Download Mode -
-
-
-qmi_message_dms_get_boot_image_download_mode_output_get_result, function in DMS Get Boot Image Download Mode -
-
-
-qmi_message_dms_get_boot_image_download_mode_output_ref, function in DMS Get Boot Image Download Mode -
-
-
-qmi_message_dms_get_boot_image_download_mode_output_unref, function in DMS Get Boot Image Download Mode -
-
-
-qmi_message_dms_hp_change_device_mode_input_get_mode, function in DMS HP Change Device Mode -
-
-
-qmi_message_dms_hp_change_device_mode_input_new, function in DMS HP Change Device Mode -
-
-
-qmi_message_dms_hp_change_device_mode_input_ref, function in DMS HP Change Device Mode -
-
-
-qmi_message_dms_hp_change_device_mode_input_set_mode, function in DMS HP Change Device Mode -
-
-
-qmi_message_dms_hp_change_device_mode_input_unref, function in DMS HP Change Device Mode -
-
-
-qmi_message_dms_hp_change_device_mode_output_get_result, function in DMS HP Change Device Mode -
-
-
-qmi_message_dms_hp_change_device_mode_output_ref, function in DMS HP Change Device Mode -
-
-
-qmi_message_dms_hp_change_device_mode_output_unref, function in DMS HP Change Device Mode -
-
-
-qmi_message_dms_set_boot_image_download_mode_input_get_mode, function in DMS Set Boot Image Download Mode -
-
-
-qmi_message_dms_set_boot_image_download_mode_input_new, function in DMS Set Boot Image Download Mode -
-
-
-qmi_message_dms_set_boot_image_download_mode_input_ref, function in DMS Set Boot Image Download Mode -
-
-
-qmi_message_dms_set_boot_image_download_mode_input_set_mode, function in DMS Set Boot Image Download Mode -
-
-
-qmi_message_dms_set_boot_image_download_mode_input_unref, function in DMS Set Boot Image Download Mode -
-
-
-qmi_message_dms_set_boot_image_download_mode_output_get_result, function in DMS Set Boot Image Download Mode -
-
-
-qmi_message_dms_set_boot_image_download_mode_output_ref, function in DMS Set Boot Image Download Mode -
-
-
-qmi_message_dms_set_boot_image_download_mode_output_unref, function in DMS Set Boot Image Download Mode -
-
-
-qmi_message_dms_set_firmware_id_output_get_result, function in DMS Set Firmware ID -
-
-
-qmi_message_dms_set_firmware_id_output_ref, function in DMS Set Firmware ID -
-
-
-qmi_message_dms_set_firmware_id_output_unref, function in DMS Set Firmware ID -
-
-
-qmi_message_dms_swi_get_current_firmware_output_get_amss_version, function in DMS Swi Get Current Firmware -
-
-
-qmi_message_dms_swi_get_current_firmware_output_get_boot_version, function in DMS Swi Get Current Firmware -
-
-
-qmi_message_dms_swi_get_current_firmware_output_get_carrier, function in DMS Swi Get Current Firmware -
-
-
-qmi_message_dms_swi_get_current_firmware_output_get_carrier_id, function in DMS Swi Get Current Firmware -
-
-
-qmi_message_dms_swi_get_current_firmware_output_get_config_version, function in DMS Swi Get Current Firmware -
-
-
-qmi_message_dms_swi_get_current_firmware_output_get_model, function in DMS Swi Get Current Firmware -
-
-
-qmi_message_dms_swi_get_current_firmware_output_get_package_id, function in DMS Swi Get Current Firmware -
-
-
-qmi_message_dms_swi_get_current_firmware_output_get_pri_version, function in DMS Swi Get Current Firmware -
-
-
-qmi_message_dms_swi_get_current_firmware_output_get_result, function in DMS Swi Get Current Firmware -
-
-
-qmi_message_dms_swi_get_current_firmware_output_get_sku_id, function in DMS Swi Get Current Firmware -
-
-
-qmi_message_dms_swi_get_current_firmware_output_ref, function in DMS Swi Get Current Firmware -
-
-
-qmi_message_dms_swi_get_current_firmware_output_unref, function in DMS Swi Get Current Firmware -
-
-
-qmi_message_get_printable_full, function in QmiMessage -
-
-
-qmi_message_get_version_introduced_full, function in QmiMessage -
-
-
-qmi_message_nas_get_operator_name_output_get_operator_nitz_information, function in NAS Get Operator Name -
-
-
-qmi_message_nas_get_operator_name_output_get_operator_plmn_list, function in NAS Get Operator Name -
-
-
-qmi_message_nas_get_operator_name_output_get_operator_plmn_name, function in NAS Get Operator Name -
-
-
-qmi_message_nas_get_operator_name_output_get_operator_string_name, function in NAS Get Operator Name -
-
-
-qmi_message_nas_get_operator_name_output_get_result, function in NAS Get Operator Name -
-
-
-qmi_message_nas_get_operator_name_output_get_service_provider_name, function in NAS Get Operator Name -
-
-
-qmi_message_nas_get_operator_name_output_ref, function in NAS Get Operator Name -
-
-
-qmi_message_nas_get_operator_name_output_unref, function in NAS Get Operator Name -
-
-
-qmi_message_pdc_activate_config_input_get_config_type, function in PDC Activate Config -
-
-
-qmi_message_pdc_activate_config_input_get_token, function in PDC Activate Config -
-
-
-qmi_message_pdc_activate_config_input_new, function in PDC Activate Config -
-
-
-qmi_message_pdc_activate_config_input_ref, function in PDC Activate Config -
-
-
-qmi_message_pdc_activate_config_input_set_config_type, function in PDC Activate Config -
-
-
-qmi_message_pdc_activate_config_input_set_token, function in PDC Activate Config -
-
-
-qmi_message_pdc_activate_config_input_unref, function in PDC Activate Config -
-
-
-qmi_message_pdc_activate_config_output_get_result, function in PDC Activate Config -
-
-
-qmi_message_pdc_activate_config_output_get_token, function in PDC Activate Config -
-
-
-qmi_message_pdc_activate_config_output_ref, function in PDC Activate Config -
-
-
-qmi_message_pdc_activate_config_output_unref, function in PDC Activate Config -
-
-
-qmi_message_pdc_config_change_input_get_type_with_id, function in PDC Config Change -
-
-
-qmi_message_pdc_config_change_input_new, function in PDC Config Change -
-
-
-qmi_message_pdc_config_change_input_ref, function in PDC Config Change -
-
-
-qmi_message_pdc_config_change_input_set_type_with_id, function in PDC Config Change -
-
-
-qmi_message_pdc_config_change_input_unref, function in PDC Config Change -
-
-
-qmi_message_pdc_config_change_output_get_result, function in PDC Config Change -
-
-
-qmi_message_pdc_config_change_output_get_type_with_id, function in PDC Config Change -
-
-
-qmi_message_pdc_config_change_output_ref, function in PDC Config Change -
-
-
-qmi_message_pdc_config_change_output_unref, function in PDC Config Change -
-
-
-qmi_message_pdc_deactivate_config_input_get_config_type, function in PDC Deactivate Config -
-
-
-qmi_message_pdc_deactivate_config_input_get_token, function in PDC Deactivate Config -
-
-
-qmi_message_pdc_deactivate_config_input_new, function in PDC Deactivate Config -
-
-
-qmi_message_pdc_deactivate_config_input_ref, function in PDC Deactivate Config -
-
-
-qmi_message_pdc_deactivate_config_input_set_config_type, function in PDC Deactivate Config -
-
-
-qmi_message_pdc_deactivate_config_input_set_token, function in PDC Deactivate Config -
-
-
-qmi_message_pdc_deactivate_config_input_unref, function in PDC Deactivate Config -
-
-
-qmi_message_pdc_deactivate_config_output_get_result, function in PDC Deactivate Config -
-
-
-qmi_message_pdc_deactivate_config_output_get_token, function in PDC Deactivate Config -
-
-
-qmi_message_pdc_deactivate_config_output_ref, function in PDC Deactivate Config -
-
-
-qmi_message_pdc_deactivate_config_output_unref, function in PDC Deactivate Config -
-
-
-qmi_message_pdc_delete_config_input_get_config_type, function in PDC Delete Config -
-
-
-qmi_message_pdc_delete_config_input_get_id, function in PDC Delete Config -
-
-
-qmi_message_pdc_delete_config_input_get_token, function in PDC Delete Config -
-
-
-qmi_message_pdc_delete_config_input_new, function in PDC Delete Config -
-
-
-qmi_message_pdc_delete_config_input_ref, function in PDC Delete Config -
-
-
-qmi_message_pdc_delete_config_input_set_config_type, function in PDC Delete Config -
-
-
-qmi_message_pdc_delete_config_input_set_id, function in PDC Delete Config -
-
-
-qmi_message_pdc_delete_config_input_set_token, function in PDC Delete Config -
-
-
-qmi_message_pdc_delete_config_input_unref, function in PDC Delete Config -
-
-
-qmi_message_pdc_delete_config_output_get_result, function in PDC Delete Config -
-
-
-qmi_message_pdc_delete_config_output_get_token, function in PDC Delete Config -
-
-
-qmi_message_pdc_delete_config_output_ref, function in PDC Delete Config -
-
-
-qmi_message_pdc_delete_config_output_unref, function in PDC Delete Config -
-
-
-qmi_message_pdc_get_config_info_input_get_token, function in PDC Get Config Info -
-
-
-qmi_message_pdc_get_config_info_input_get_type_with_id, function in PDC Get Config Info -
-
-
-qmi_message_pdc_get_config_info_input_new, function in PDC Get Config Info -
-
-
-qmi_message_pdc_get_config_info_input_ref, function in PDC Get Config Info -
-
-
-qmi_message_pdc_get_config_info_input_set_token, function in PDC Get Config Info -
-
-
-qmi_message_pdc_get_config_info_input_set_type_with_id, function in PDC Get Config Info -
-
-
-qmi_message_pdc_get_config_info_input_unref, function in PDC Get Config Info -
-
-
-qmi_message_pdc_get_config_info_output_get_result, function in PDC Get Config Info -
-
-
-qmi_message_pdc_get_config_info_output_ref, function in PDC Get Config Info -
-
-
-qmi_message_pdc_get_config_info_output_unref, function in PDC Get Config Info -
-
-
-qmi_message_pdc_get_config_limits_input_get_config_type, function in PDC Get Config Limits -
-
-
-qmi_message_pdc_get_config_limits_input_get_token, function in PDC Get Config Limits -
-
-
-qmi_message_pdc_get_config_limits_input_new, function in PDC Get Config Limits -
-
-
-qmi_message_pdc_get_config_limits_input_ref, function in PDC Get Config Limits -
-
-
-qmi_message_pdc_get_config_limits_input_set_config_type, function in PDC Get Config Limits -
-
-
-qmi_message_pdc_get_config_limits_input_set_token, function in PDC Get Config Limits -
-
-
-qmi_message_pdc_get_config_limits_input_unref, function in PDC Get Config Limits -
-
-
-qmi_message_pdc_get_config_limits_output_get_current_size, function in PDC Get Config Limits -
-
-
-qmi_message_pdc_get_config_limits_output_get_maximum_size, function in PDC Get Config Limits -
-
-
-qmi_message_pdc_get_config_limits_output_get_result, function in PDC Get Config Limits -
-
-
-qmi_message_pdc_get_config_limits_output_get_token, function in PDC Get Config Limits -
-
-
-qmi_message_pdc_get_config_limits_output_ref, function in PDC Get Config Limits -
-
-
-qmi_message_pdc_get_config_limits_output_unref, function in PDC Get Config Limits -
-
-
-qmi_message_pdc_get_default_config_info_input_get_config_type, function in PDC Get Default Config Info -
-
-
-qmi_message_pdc_get_default_config_info_input_get_token, function in PDC Get Default Config Info -
-
-
-qmi_message_pdc_get_default_config_info_input_new, function in PDC Get Default Config Info -
-
-
-qmi_message_pdc_get_default_config_info_input_ref, function in PDC Get Default Config Info -
-
-
-qmi_message_pdc_get_default_config_info_input_set_config_type, function in PDC Get Default Config Info -
-
-
-qmi_message_pdc_get_default_config_info_input_set_token, function in PDC Get Default Config Info -
-
-
-qmi_message_pdc_get_default_config_info_input_unref, function in PDC Get Default Config Info -
-
-
-qmi_message_pdc_get_default_config_info_output_get_description, function in PDC Get Default Config Info -
-
-
-qmi_message_pdc_get_default_config_info_output_get_result, function in PDC Get Default Config Info -
-
-
-qmi_message_pdc_get_default_config_info_output_get_token, function in PDC Get Default Config Info -
-
-
-qmi_message_pdc_get_default_config_info_output_get_total_size, function in PDC Get Default Config Info -
-
-
-qmi_message_pdc_get_default_config_info_output_get_version, function in PDC Get Default Config Info -
-
-
-qmi_message_pdc_get_default_config_info_output_ref, function in PDC Get Default Config Info -
-
-
-qmi_message_pdc_get_default_config_info_output_unref, function in PDC Get Default Config Info -
-
-
-qmi_message_pdc_get_selected_config_input_get_config_type, function in PDC Get Selected Config -
-
-
-qmi_message_pdc_get_selected_config_input_get_token, function in PDC Get Selected Config -
-
-
-qmi_message_pdc_get_selected_config_input_new, function in PDC Get Selected Config -
-
-
-qmi_message_pdc_get_selected_config_input_ref, function in PDC Get Selected Config -
-
-
-qmi_message_pdc_get_selected_config_input_set_config_type, function in PDC Get Selected Config -
-
-
-qmi_message_pdc_get_selected_config_input_set_token, function in PDC Get Selected Config -
-
-
-qmi_message_pdc_get_selected_config_input_unref, function in PDC Get Selected Config -
-
-
-qmi_message_pdc_get_selected_config_output_get_result, function in PDC Get Selected Config -
-
-
-qmi_message_pdc_get_selected_config_output_get_token, function in PDC Get Selected Config -
-
-
-qmi_message_pdc_get_selected_config_output_ref, function in PDC Get Selected Config -
-
-
-qmi_message_pdc_get_selected_config_output_unref, function in PDC Get Selected Config -
-
-
-qmi_message_pdc_list_configs_input_get_config_type, function in PDC List Configs -
-
-
-qmi_message_pdc_list_configs_input_get_token, function in PDC List Configs -
-
-
-qmi_message_pdc_list_configs_input_new, function in PDC List Configs -
-
-
-qmi_message_pdc_list_configs_input_ref, function in PDC List Configs -
-
-
-qmi_message_pdc_list_configs_input_set_config_type, function in PDC List Configs -
-
-
-qmi_message_pdc_list_configs_input_set_token, function in PDC List Configs -
-
-
-qmi_message_pdc_list_configs_input_unref, function in PDC List Configs -
-
-
-qmi_message_pdc_list_configs_output_get_result, function in PDC List Configs -
-
-
-qmi_message_pdc_list_configs_output_ref, function in PDC List Configs -
-
-
-qmi_message_pdc_list_configs_output_unref, function in PDC List Configs -
-
-
-qmi_message_pdc_load_config_input_get_config_chunk, function in PDC Load Config -
-
-
-qmi_message_pdc_load_config_input_get_token, function in PDC Load Config -
-
-
-qmi_message_pdc_load_config_input_new, function in PDC Load Config -
-
-
-qmi_message_pdc_load_config_input_ref, function in PDC Load Config -
-
-
-qmi_message_pdc_load_config_input_set_config_chunk, function in PDC Load Config -
-
-
-qmi_message_pdc_load_config_input_set_token, function in PDC Load Config -
-
-
-qmi_message_pdc_load_config_input_unref, function in PDC Load Config -
-
-
-qmi_message_pdc_load_config_output_get_result, function in PDC Load Config -
-
-
-qmi_message_pdc_load_config_output_get_token, function in PDC Load Config -
-
-
-qmi_message_pdc_load_config_output_ref, function in PDC Load Config -
-
-
-qmi_message_pdc_load_config_output_unref, function in PDC Load Config -
-
-
-qmi_message_pdc_register_input_get_enable_reporting, function in PDC Register -
-
-
-qmi_message_pdc_register_input_new, function in PDC Register -
-
-
-qmi_message_pdc_register_input_ref, function in PDC Register -
-
-
-qmi_message_pdc_register_input_set_enable_reporting, function in PDC Register -
-
-
-qmi_message_pdc_register_input_unref, function in PDC Register -
-
-
-qmi_message_pdc_register_output_get_result, function in PDC Register -
-
-
-qmi_message_pdc_register_output_ref, function in PDC Register -
-
-
-qmi_message_pdc_register_output_unref, function in PDC Register -
-
-
-qmi_message_pdc_reset_output_get_result, function in PDC Reset -
-
-
-qmi_message_pdc_reset_output_ref, function in PDC Reset -
-
-
-qmi_message_pdc_reset_output_unref, function in PDC Reset -
-
-
-qmi_message_pdc_set_selected_config_input_get_token, function in PDC Set Selected Config -
-
-
-qmi_message_pdc_set_selected_config_input_get_type_with_id, function in PDC Set Selected Config -
-
-
-qmi_message_pdc_set_selected_config_input_new, function in PDC Set Selected Config -
-
-
-qmi_message_pdc_set_selected_config_input_ref, function in PDC Set Selected Config -
-
-
-qmi_message_pdc_set_selected_config_input_set_token, function in PDC Set Selected Config -
-
-
-qmi_message_pdc_set_selected_config_input_set_type_with_id, function in PDC Set Selected Config -
-
-
-qmi_message_pdc_set_selected_config_input_unref, function in PDC Set Selected Config -
-
-
-qmi_message_pdc_set_selected_config_output_get_result, function in PDC Set Selected Config -
-
-
-qmi_message_pdc_set_selected_config_output_get_token, function in PDC Set Selected Config -
-
-
-qmi_message_pdc_set_selected_config_output_ref, function in PDC Set Selected Config -
-
-
-qmi_message_pdc_set_selected_config_output_unref, function in PDC Set Selected Config -
-
-
-qmi_message_uim_power_off_sim_input_get_slot, function in UIM Power Off SIM -
-
-
-qmi_message_uim_power_off_sim_input_new, function in UIM Power Off SIM -
-
-
-qmi_message_uim_power_off_sim_input_ref, function in UIM Power Off SIM -
-
-
-qmi_message_uim_power_off_sim_input_set_slot, function in UIM Power Off SIM -
-
-
-qmi_message_uim_power_off_sim_input_unref, function in UIM Power Off SIM -
-
-
-qmi_message_uim_power_off_sim_output_get_result, function in UIM Power Off SIM -
-
-
-qmi_message_uim_power_off_sim_output_ref, function in UIM Power Off SIM -
-
-
-qmi_message_uim_power_off_sim_output_unref, function in UIM Power Off SIM -
-
-
-qmi_message_uim_power_on_sim_input_get_slot, function in UIM Power On SIM -
-
-
-qmi_message_uim_power_on_sim_input_new, function in UIM Power On SIM -
-
-
-qmi_message_uim_power_on_sim_input_ref, function in UIM Power On SIM -
-
-
-qmi_message_uim_power_on_sim_input_set_slot, function in UIM Power On SIM -
-
-
-qmi_message_uim_power_on_sim_input_unref, function in UIM Power On SIM -
-
-
-qmi_message_uim_power_on_sim_output_get_result, function in UIM Power On SIM -
-
-
-qmi_message_uim_power_on_sim_output_ref, function in UIM Power On SIM -
-
-
-qmi_message_uim_power_on_sim_output_unref, function in UIM Power On SIM -
-
-
-QMI_MESSAGE_VENDOR_GENERIC, macro in QmiMessageContext -
-
-
-qmi_message_wda_set_data_format_input_get_endpoint_info, function in WDA Set Data Format -
-
-
-qmi_message_wda_set_data_format_input_set_endpoint_info, function in WDA Set Data Format -
-
-
-qmi_message_wds_bind_mux_data_port_input_get_client_type, function in WDS Bind Mux Data Port -
-
-
-qmi_message_wds_bind_mux_data_port_input_get_endpoint_info, function in WDS Bind Mux Data Port -
-
-
-qmi_message_wds_bind_mux_data_port_input_get_mux_id, function in WDS Bind Mux Data Port -
-
-
-qmi_message_wds_bind_mux_data_port_input_new, function in WDS Bind Mux Data Port -
-
-
-qmi_message_wds_bind_mux_data_port_input_ref, function in WDS Bind Mux Data Port -
-
-
-qmi_message_wds_bind_mux_data_port_input_set_client_type, function in WDS Bind Mux Data Port -
-
-
-qmi_message_wds_bind_mux_data_port_input_set_endpoint_info, function in WDS Bind Mux Data Port -
-
-
-qmi_message_wds_bind_mux_data_port_input_set_mux_id, function in WDS Bind Mux Data Port -
-
-
-qmi_message_wds_bind_mux_data_port_input_unref, function in WDS Bind Mux Data Port -
-
-
-qmi_message_wds_bind_mux_data_port_output_get_result, function in WDS Bind Mux Data Port -
-
-
-qmi_message_wds_bind_mux_data_port_output_ref, function in WDS Bind Mux Data Port -
-
-
-qmi_message_wds_bind_mux_data_port_output_unref, function in WDS Bind Mux Data Port -
-
-
-qmi_message_wds_create_profile_input_get_apn_name, function in WDS Create Profile -
-
-
-qmi_message_wds_create_profile_input_get_authentication, function in WDS Create Profile -
-
-
-qmi_message_wds_create_profile_input_get_gprs_minimum_qos, function in WDS Create Profile -
-
-
-qmi_message_wds_create_profile_input_get_gprs_requested_qos, function in WDS Create Profile -
-
-
-qmi_message_wds_create_profile_input_get_imcn_flag, function in WDS Create Profile -
-
-
-qmi_message_wds_create_profile_input_get_ipv4_address_preference, function in WDS Create Profile -
-
-
-qmi_message_wds_create_profile_input_get_ipv6_address_preference, function in WDS Create Profile -
-
-
-qmi_message_wds_create_profile_input_get_ipv6_primary_dns_address_preference, function in WDS Create Profile -
-
-
-qmi_message_wds_create_profile_input_get_ipv6_secondary_dns_address_preference, function in WDS Create Profile -
-
-
-qmi_message_wds_create_profile_input_get_lte_qos_parameters, function in WDS Create Profile -
-
-
-qmi_message_wds_create_profile_input_get_password, function in WDS Create Profile -
-
-
-qmi_message_wds_create_profile_input_get_pcscf_address_using_dhcp, function in WDS Create Profile -
-
-
-qmi_message_wds_create_profile_input_get_pcscf_address_using_pco, function in WDS Create Profile -
-
-
-qmi_message_wds_create_profile_input_get_pdp_context_number, function in WDS Create Profile -
-
-
-qmi_message_wds_create_profile_input_get_pdp_context_primary_id, function in WDS Create Profile -
-
-
-qmi_message_wds_create_profile_input_get_pdp_context_secondary_flag, function in WDS Create Profile -
-
-
-qmi_message_wds_create_profile_input_get_pdp_data_compression_type, function in WDS Create Profile -
-
-
-qmi_message_wds_create_profile_input_get_pdp_header_compression_type, function in WDS Create Profile -
-
-
-qmi_message_wds_create_profile_input_get_pdp_type, function in WDS Create Profile -
-
-
-qmi_message_wds_create_profile_input_get_primary_ipv4_dns_address, function in WDS Create Profile -
-
-
-qmi_message_wds_create_profile_input_get_profile_name, function in WDS Create Profile -
-
-
-qmi_message_wds_create_profile_input_get_profile_type, function in WDS Create Profile -
-
-
-qmi_message_wds_create_profile_input_get_secondary_ipv4_dns_address, function in WDS Create Profile -
-
-
-qmi_message_wds_create_profile_input_get_umts_minimum_qos, function in WDS Create Profile -
-
-
-qmi_message_wds_create_profile_input_get_umts_minimum_qos_with_signaling_indication_flag, function in WDS Create Profile -
-
-
-qmi_message_wds_create_profile_input_get_umts_requested_qos, function in WDS Create Profile -
-
-
-qmi_message_wds_create_profile_input_get_umts_requested_qos_with_signaling_indication_flag, function in WDS Create Profile -
-
-
-qmi_message_wds_create_profile_input_get_username, function in WDS Create Profile -
-
-
-qmi_message_wds_create_profile_input_new, function in WDS Create Profile -
-
-
-qmi_message_wds_create_profile_input_ref, function in WDS Create Profile -
-
-
-qmi_message_wds_create_profile_input_set_apn_name, function in WDS Create Profile -
-
-
-qmi_message_wds_create_profile_input_set_authentication, function in WDS Create Profile -
-
-
-qmi_message_wds_create_profile_input_set_gprs_minimum_qos, function in WDS Create Profile -
-
-
-qmi_message_wds_create_profile_input_set_gprs_requested_qos, function in WDS Create Profile -
-
-
-qmi_message_wds_create_profile_input_set_imcn_flag, function in WDS Create Profile -
-
-
-qmi_message_wds_create_profile_input_set_ipv4_address_preference, function in WDS Create Profile -
-
-
-qmi_message_wds_create_profile_input_set_ipv6_address_preference, function in WDS Create Profile -
-
-
-qmi_message_wds_create_profile_input_set_ipv6_primary_dns_address_preference, function in WDS Create Profile -
-
-
-qmi_message_wds_create_profile_input_set_ipv6_secondary_dns_address_preference, function in WDS Create Profile -
-
-
-qmi_message_wds_create_profile_input_set_lte_qos_parameters, function in WDS Create Profile -
-
-
-qmi_message_wds_create_profile_input_set_password, function in WDS Create Profile -
-
-
-qmi_message_wds_create_profile_input_set_pcscf_address_using_dhcp, function in WDS Create Profile -
-
-
-qmi_message_wds_create_profile_input_set_pcscf_address_using_pco, function in WDS Create Profile -
-
-
-qmi_message_wds_create_profile_input_set_pdp_context_number, function in WDS Create Profile -
-
-
-qmi_message_wds_create_profile_input_set_pdp_context_primary_id, function in WDS Create Profile -
-
-
-qmi_message_wds_create_profile_input_set_pdp_context_secondary_flag, function in WDS Create Profile -
-
-
-qmi_message_wds_create_profile_input_set_pdp_data_compression_type, function in WDS Create Profile -
-
-
-qmi_message_wds_create_profile_input_set_pdp_header_compression_type, function in WDS Create Profile -
-
-
-qmi_message_wds_create_profile_input_set_pdp_type, function in WDS Create Profile -
-
-
-qmi_message_wds_create_profile_input_set_primary_ipv4_dns_address, function in WDS Create Profile -
-
-
-qmi_message_wds_create_profile_input_set_profile_name, function in WDS Create Profile -
-
-
-qmi_message_wds_create_profile_input_set_profile_type, function in WDS Create Profile -
-
-
-qmi_message_wds_create_profile_input_set_secondary_ipv4_dns_address, function in WDS Create Profile -
-
-
-qmi_message_wds_create_profile_input_set_umts_minimum_qos, function in WDS Create Profile -
-
-
-qmi_message_wds_create_profile_input_set_umts_minimum_qos_with_signaling_indication_flag, function in WDS Create Profile -
-
-
-qmi_message_wds_create_profile_input_set_umts_requested_qos, function in WDS Create Profile -
-
-
-qmi_message_wds_create_profile_input_set_umts_requested_qos_with_signaling_indication_flag, function in WDS Create Profile -
-
-
-qmi_message_wds_create_profile_input_set_username, function in WDS Create Profile -
-
-
-qmi_message_wds_create_profile_input_unref, function in WDS Create Profile -
-
-
-qmi_message_wds_create_profile_output_get_extended_error_code, function in WDS Create Profile -
-
-
-qmi_message_wds_create_profile_output_get_profile_identifier, function in WDS Create Profile -
-
-
-qmi_message_wds_create_profile_output_get_result, function in WDS Create Profile -
-
-
-qmi_message_wds_create_profile_output_ref, function in WDS Create Profile -
-
-
-qmi_message_wds_create_profile_output_unref, function in WDS Create Profile -
-
-
-qmi_message_wds_delete_profile_input_get_profile_identifier, function in WDS Delete Profile -
-
-
-qmi_message_wds_delete_profile_input_new, function in WDS Delete Profile -
-
-
-qmi_message_wds_delete_profile_input_ref, function in WDS Delete Profile -
-
-
-qmi_message_wds_delete_profile_input_set_profile_identifier, function in WDS Delete Profile -
-
-
-qmi_message_wds_delete_profile_input_unref, function in WDS Delete Profile -
-
-
-qmi_message_wds_delete_profile_output_get_extended_error_code, function in WDS Delete Profile -
-
-
-qmi_message_wds_delete_profile_output_get_result, function in WDS Delete Profile -
-
-
-qmi_message_wds_delete_profile_output_ref, function in WDS Delete Profile -
-
-
-qmi_message_wds_delete_profile_output_unref, function in WDS Delete Profile -
-
-
-qmi_message_wds_get_default_settings_output_get_lte_qos_parameters, function in WDS Get Default Settings -
-
-
-qmi_message_wds_get_default_settings_output_get_pdp_context_number, function in WDS Get Default Settings -
-
-
-qmi_message_wds_get_default_settings_output_get_pdp_context_primary_id, function in WDS Get Default Settings -
-
-
-qmi_message_wds_get_default_settings_output_get_pdp_context_secondary_flag, function in WDS Get Default Settings -
-
-
-qmi_message_wds_get_default_settings_output_get_pdp_data_compression_type, function in WDS Get Default Settings -
-
-
-qmi_message_wds_get_default_settings_output_get_pdp_header_compression_type, function in WDS Get Default Settings -
-
-
-qmi_message_wds_get_default_settings_output_get_umts_minimum_qos, function in WDS Get Default Settings -
-
-
-qmi_message_wds_get_default_settings_output_get_umts_minimum_qos_with_signaling_indication_flag, function in WDS Get Default Settings -
-
-
-qmi_message_wds_get_default_settings_output_get_umts_requested_qos, function in WDS Get Default Settings -
-
-
-qmi_message_wds_get_default_settings_output_get_umts_requested_qos_with_signaling_indication_flag, function in WDS Get Default Settings -
-
-
-qmi_message_wds_get_profile_settings_output_get_lte_qos_parameters, function in WDS Get Profile Settings -
-
-
-qmi_message_wds_get_profile_settings_output_get_pdp_context_number, function in WDS Get Profile Settings -
-
-
-qmi_message_wds_get_profile_settings_output_get_pdp_context_primary_id, function in WDS Get Profile Settings -
-
-
-qmi_message_wds_get_profile_settings_output_get_pdp_context_secondary_flag, function in WDS Get Profile Settings -
-
-
-qmi_message_wds_get_profile_settings_output_get_pdp_data_compression_type, function in WDS Get Profile Settings -
-
-
-qmi_message_wds_get_profile_settings_output_get_pdp_header_compression_type, function in WDS Get Profile Settings -
-
-
-qmi_message_wds_get_profile_settings_output_get_umts_minimum_qos, function in WDS Get Profile Settings -
-
-
-qmi_message_wds_get_profile_settings_output_get_umts_minimum_qos_with_signaling_indication_flag, function in WDS Get Profile Settings -
-
-
-qmi_message_wds_get_profile_settings_output_get_umts_requested_qos, function in WDS Get Profile Settings -
-
-
-qmi_message_wds_get_profile_settings_output_get_umts_requested_qos_with_signaling_indication_flag, function in WDS Get Profile Settings -
-
-
-qmi_message_wds_go_active_output_get_result, function in WDS Go Active -
-
-
-qmi_message_wds_go_active_output_ref, function in WDS Go Active -
-
-
-qmi_message_wds_go_active_output_unref, function in WDS Go Active -
-
-
-qmi_message_wds_go_dormant_output_get_result, function in WDS Go Dormant -
-
-
-qmi_message_wds_go_dormant_output_ref, function in WDS Go Dormant -
-
-
-qmi_message_wds_go_dormant_output_unref, function in WDS Go Dormant -
-
-
-qmi_message_wds_modify_profile_input_get_apn_name, function in WDS Modify Profile -
-
-
-qmi_message_wds_modify_profile_input_get_authentication, function in WDS Modify Profile -
-
-
-qmi_message_wds_modify_profile_input_get_gprs_minimum_qos, function in WDS Modify Profile -
-
-
-qmi_message_wds_modify_profile_input_get_gprs_requested_qos, function in WDS Modify Profile -
-
-
-qmi_message_wds_modify_profile_input_get_imcn_flag, function in WDS Modify Profile -
-
-
-qmi_message_wds_modify_profile_input_get_ipv4_address_preference, function in WDS Modify Profile -
-
-
-qmi_message_wds_modify_profile_input_get_ipv6_address_preference, function in WDS Modify Profile -
-
-
-qmi_message_wds_modify_profile_input_get_ipv6_primary_dns_address_preference, function in WDS Modify Profile -
-
-
-qmi_message_wds_modify_profile_input_get_ipv6_secondary_dns_address_preference, function in WDS Modify Profile -
-
-
-qmi_message_wds_modify_profile_input_get_lte_qos_parameters, function in WDS Modify Profile -
-
-
-qmi_message_wds_modify_profile_input_get_password, function in WDS Modify Profile -
-
-
-qmi_message_wds_modify_profile_input_get_pcscf_address_using_dhcp, function in WDS Modify Profile -
-
-
-qmi_message_wds_modify_profile_input_get_pcscf_address_using_pco, function in WDS Modify Profile -
-
-
-qmi_message_wds_modify_profile_input_get_pdp_context_number, function in WDS Modify Profile -
-
-
-qmi_message_wds_modify_profile_input_get_pdp_context_primary_id, function in WDS Modify Profile -
-
-
-qmi_message_wds_modify_profile_input_get_pdp_context_secondary_flag, function in WDS Modify Profile -
-
-
-qmi_message_wds_modify_profile_input_get_pdp_data_compression_type, function in WDS Modify Profile -
-
-
-qmi_message_wds_modify_profile_input_get_pdp_header_compression_type, function in WDS Modify Profile -
-
-
-qmi_message_wds_modify_profile_input_get_pdp_type, function in WDS Modify Profile -
-
-
-qmi_message_wds_modify_profile_input_get_primary_ipv4_dns_address, function in WDS Modify Profile -
-
-
-qmi_message_wds_modify_profile_input_get_profile_identifier, function in WDS Modify Profile -
-
-
-qmi_message_wds_modify_profile_input_get_profile_name, function in WDS Modify Profile -
-
-
-qmi_message_wds_modify_profile_input_get_secondary_ipv4_dns_address, function in WDS Modify Profile -
-
-
-qmi_message_wds_modify_profile_input_get_umts_minimum_qos, function in WDS Modify Profile -
-
-
-qmi_message_wds_modify_profile_input_get_umts_minimum_qos_with_signaling_indication_flag, function in WDS Modify Profile -
-
-
-qmi_message_wds_modify_profile_input_get_umts_requested_qos, function in WDS Modify Profile -
-
-
-qmi_message_wds_modify_profile_input_get_umts_requested_qos_with_signaling_indication_flag, function in WDS Modify Profile -
-
-
-qmi_message_wds_modify_profile_input_get_username, function in WDS Modify Profile -
-
-
-qmi_message_wds_modify_profile_input_new, function in WDS Modify Profile -
-
-
-qmi_message_wds_modify_profile_input_ref, function in WDS Modify Profile -
-
-
-qmi_message_wds_modify_profile_input_set_apn_name, function in WDS Modify Profile -
-
-
-qmi_message_wds_modify_profile_input_set_authentication, function in WDS Modify Profile -
-
-
-qmi_message_wds_modify_profile_input_set_gprs_minimum_qos, function in WDS Modify Profile -
-
-
-qmi_message_wds_modify_profile_input_set_gprs_requested_qos, function in WDS Modify Profile -
-
-
-qmi_message_wds_modify_profile_input_set_imcn_flag, function in WDS Modify Profile -
-
-
-qmi_message_wds_modify_profile_input_set_ipv4_address_preference, function in WDS Modify Profile -
-
-
-qmi_message_wds_modify_profile_input_set_ipv6_address_preference, function in WDS Modify Profile -
-
-
-qmi_message_wds_modify_profile_input_set_ipv6_primary_dns_address_preference, function in WDS Modify Profile -
-
-
-qmi_message_wds_modify_profile_input_set_ipv6_secondary_dns_address_preference, function in WDS Modify Profile -
-
-
-qmi_message_wds_modify_profile_input_set_lte_qos_parameters, function in WDS Modify Profile -
-
-
-qmi_message_wds_modify_profile_input_set_password, function in WDS Modify Profile -
-
-
-qmi_message_wds_modify_profile_input_set_pcscf_address_using_dhcp, function in WDS Modify Profile -
-
-
-qmi_message_wds_modify_profile_input_set_pcscf_address_using_pco, function in WDS Modify Profile -
-
-
-qmi_message_wds_modify_profile_input_set_pdp_context_number, function in WDS Modify Profile -
-
-
-qmi_message_wds_modify_profile_input_set_pdp_context_primary_id, function in WDS Modify Profile -
-
-
-qmi_message_wds_modify_profile_input_set_pdp_context_secondary_flag, function in WDS Modify Profile -
-
-
-qmi_message_wds_modify_profile_input_set_pdp_data_compression_type, function in WDS Modify Profile -
-
-
-qmi_message_wds_modify_profile_input_set_pdp_header_compression_type, function in WDS Modify Profile -
-
-
-qmi_message_wds_modify_profile_input_set_pdp_type, function in WDS Modify Profile -
-
-
-qmi_message_wds_modify_profile_input_set_primary_ipv4_dns_address, function in WDS Modify Profile -
-
-
-qmi_message_wds_modify_profile_input_set_profile_identifier, function in WDS Modify Profile -
-
-
-qmi_message_wds_modify_profile_input_set_profile_name, function in WDS Modify Profile -
-
-
-qmi_message_wds_modify_profile_input_set_secondary_ipv4_dns_address, function in WDS Modify Profile -
-
-
-qmi_message_wds_modify_profile_input_set_umts_minimum_qos, function in WDS Modify Profile -
-
-
-qmi_message_wds_modify_profile_input_set_umts_minimum_qos_with_signaling_indication_flag, function in WDS Modify Profile -
-
-
-qmi_message_wds_modify_profile_input_set_umts_requested_qos, function in WDS Modify Profile -
-
-
-qmi_message_wds_modify_profile_input_set_umts_requested_qos_with_signaling_indication_flag, function in WDS Modify Profile -
-
-
-qmi_message_wds_modify_profile_input_set_username, function in WDS Modify Profile -
-
-
-qmi_message_wds_modify_profile_input_unref, function in WDS Modify Profile -
-
-
-qmi_message_wds_modify_profile_output_get_extended_error_code, function in WDS Modify Profile -
-
-
-qmi_message_wds_modify_profile_output_get_result, function in WDS Modify Profile -
-
-
-qmi_message_wds_modify_profile_output_ref, function in WDS Modify Profile -
-
-
-qmi_message_wds_modify_profile_output_unref, function in WDS Modify Profile -
-
-
-qmi_message_wds_set_event_report_input_get_channel_rate, function in WDS Set Event Report -
-
-
-qmi_message_wds_set_event_report_input_get_current_data_bearer_technology, function in WDS Set Event Report -
-
-
-qmi_message_wds_set_event_report_input_get_data_bearer_technology, function in WDS Set Event Report -
-
-
-qmi_message_wds_set_event_report_input_get_data_call_status, function in WDS Set Event Report -
-
-
-qmi_message_wds_set_event_report_input_get_data_systems, function in WDS Set Event Report -
-
-
-qmi_message_wds_set_event_report_input_get_dormancy_status, function in WDS Set Event Report -
-
-
-qmi_message_wds_set_event_report_input_get_evdo_pm_change, function in WDS Set Event Report -
-
-
-qmi_message_wds_set_event_report_input_get_extended_data_bearer_technology, function in WDS Set Event Report -
-
-
-qmi_message_wds_set_event_report_input_get_limited_data_system_status, function in WDS Set Event Report -
-
-
-qmi_message_wds_set_event_report_input_get_mip_status, function in WDS Set Event Report -
-
-
-qmi_message_wds_set_event_report_input_get_pdn_filter_removals, function in WDS Set Event Report -
-
-
-qmi_message_wds_set_event_report_input_get_preferred_data_system, function in WDS Set Event Report -
-
-
-qmi_message_wds_set_event_report_input_get_transfer_statistics, function in WDS Set Event Report -
-
-
-qmi_message_wds_set_event_report_input_get_uplink_flow_control, function in WDS Set Event Report -
-
-
-qmi_message_wds_set_event_report_input_new, function in WDS Set Event Report -
-
-
-qmi_message_wds_set_event_report_input_ref, function in WDS Set Event Report -
-
-
-qmi_message_wds_set_event_report_input_set_channel_rate, function in WDS Set Event Report -
-
-
-qmi_message_wds_set_event_report_input_set_current_data_bearer_technology, function in WDS Set Event Report -
-
-
-qmi_message_wds_set_event_report_input_set_data_bearer_technology, function in WDS Set Event Report -
-
-
-qmi_message_wds_set_event_report_input_set_data_call_status, function in WDS Set Event Report -
-
-
-qmi_message_wds_set_event_report_input_set_data_systems, function in WDS Set Event Report -
-
-
-qmi_message_wds_set_event_report_input_set_dormancy_status, function in WDS Set Event Report -
-
-
-qmi_message_wds_set_event_report_input_set_evdo_pm_change, function in WDS Set Event Report -
-
-
-qmi_message_wds_set_event_report_input_set_extended_data_bearer_technology, function in WDS Set Event Report -
-
-
-qmi_message_wds_set_event_report_input_set_limited_data_system_status, function in WDS Set Event Report -
-
-
-qmi_message_wds_set_event_report_input_set_mip_status, function in WDS Set Event Report -
-
-
-qmi_message_wds_set_event_report_input_set_pdn_filter_removals, function in WDS Set Event Report -
-
-
-qmi_message_wds_set_event_report_input_set_preferred_data_system, function in WDS Set Event Report -
-
-
-qmi_message_wds_set_event_report_input_set_transfer_statistics, function in WDS Set Event Report -
-
-
-qmi_message_wds_set_event_report_input_set_uplink_flow_control, function in WDS Set Event Report -
-
-
-qmi_message_wds_set_event_report_input_unref, function in WDS Set Event Report -
-
-
-qmi_message_wds_set_event_report_output_get_result, function in WDS Set Event Report -
-
-
-qmi_message_wds_set_event_report_output_ref, function in WDS Set Event Report -
-
-
-qmi_message_wds_set_event_report_output_unref, function in WDS Set Event Report -
-
-

N

-
-QmiNasNetworkNameDisplayCondition, enum in NAS enumerations and flags -
-
-
-QmiNasPlmnEncodingScheme, enum in NAS enumerations and flags -
-
-
-QmiNasPlmnNameCountryInitials, enum in NAS enumerations and flags -
-
-
-QmiNasPlmnNameSpareBits, enum in NAS enumerations and flags -
-
-

P

-
-QmiPdcConfigurationType, enum in PDC enumerations and flags -
-
-
-qmi_pdc_configuration_type_get_string, function in PDC enumerations and flags -
-
-

W

-
-QmiWdsClientType, enum in WDS enumerations and flags -
-
-
-QmiWdsDataCallStatus, enum in WDS enumerations and flags -
-
-
-QmiWdsDataCallType, enum in WDS enumerations and flags -
-
-
-QmiWdsDataSystem, enum in WDS enumerations and flags -
-
-
-QmiWdsDormancyStatus, enum in WDS enumerations and flags -
-
-
-QmiWdsExtendedDataBearerTechnology3gpp, enum in WDS enumerations and flags -
-
-
-QmiWdsExtendedDataBearerTechnology3gpp2, enum in WDS enumerations and flags -
-
-
-QmiWdsPdpDataCompressionType, enum in WDS enumerations and flags -
-
-
-QmiWdsPdpHeaderCompressionType, enum in WDS enumerations and flags -
-
-
-QmiWdsQosClassIdentifier, enum in WDS enumerations and flags -
-
-
-QmiWdsRadioAccessTechnology, enum in WDS enumerations and flags -
-
-
-QmiWdsSetEventReportTransferStatistics, enum in WDS enumerations and flags -
-
-
-QmiWdsSoEvdoRev0, enum in WDS enumerations and flags -
-
-
-QmiWdsSoEvdoRevB, enum in WDS enumerations and flags -
-
-
-QmiWdsTetheredCallType, enum in WDS enumerations and flags -
-
-
-qmi_wds_client_type_get_string, function in WDS enumerations and flags -
-
-
-qmi_wds_data_call_status_get_string, function in WDS enumerations and flags -
-
-
-qmi_wds_data_call_type_get_string, function in WDS enumerations and flags -
-
-
-qmi_wds_data_system_get_string, function in WDS enumerations and flags -
-
-
-qmi_wds_dormancy_status_get_string, function in WDS enumerations and flags -
-
-
-qmi_wds_pdp_data_compression_type_get_string, function in WDS enumerations and flags -
-
-
-qmi_wds_pdp_header_compression_type_get_string, function in WDS enumerations and flags -
-
-
-qmi_wds_qos_class_identifier_get_string, function in WDS enumerations and flags -
-
-
-qmi_wds_radio_access_technology_get_string, function in WDS enumerations and flags -
-
-
-qmi_wds_set_event_report_transfer_statistics_get_string, function in WDS enumerations and flags -
-
-
-qmi_wds_so_evdo_rev0_get_string, function in WDS enumerations and flags -
-
-
-qmi_wds_so_evdo_revb_get_string, function in WDS enumerations and flags -
-
-
-qmi_wds_tethered_call_type_get_string, function in WDS enumerations and flags -
-
-
- - - \ No newline at end of file diff -Nru libqmi-1.18.0/docs/reference/libqmi-glib/html/api-index-1-2.html libqmi-1.22.0/docs/reference/libqmi-glib/html/api-index-1-2.html --- libqmi-1.18.0/docs/reference/libqmi-glib/html/api-index-1-2.html 2017-03-22 12:28:29.000000000 +0100 +++ libqmi-1.22.0/docs/reference/libqmi-glib/html/api-index-1-2.html 1970-01-01 01:00:00.000000000 +0100 @@ -1,30 +0,0 @@ - - - - -Index of new core symbols in 1.2: libqmi-glib Reference Manual - - - - - - - - - - - - - - - - -
-

-Index of new core symbols in 1.2

-
-
- - - \ No newline at end of file diff -Nru libqmi-1.18.0/docs/reference/libqmi-glib/html/api-index-1-4.html libqmi-1.22.0/docs/reference/libqmi-glib/html/api-index-1-4.html --- libqmi-1.18.0/docs/reference/libqmi-glib/html/api-index-1-4.html 2017-03-22 12:28:29.000000000 +0100 +++ libqmi-1.22.0/docs/reference/libqmi-glib/html/api-index-1-4.html 1970-01-01 01:00:00.000000000 +0100 @@ -1,65 +0,0 @@ - - - - -Index of new core symbols in 1.4: libqmi-glib Reference Manual - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff -Nru libqmi-1.18.0/docs/reference/libqmi-glib/html/api-index-1-6.html libqmi-1.22.0/docs/reference/libqmi-glib/html/api-index-1-6.html --- libqmi-1.18.0/docs/reference/libqmi-glib/html/api-index-1-6.html 2017-03-22 12:28:29.000000000 +0100 +++ libqmi-1.22.0/docs/reference/libqmi-glib/html/api-index-1-6.html 1970-01-01 01:00:00.000000000 +0100 @@ -1,1247 +0,0 @@ - - - - -Index of new core symbols in 1.6: libqmi-glib Reference Manual - - - - - - - - - - - - - - - - -
-

-Index of new core symbols in 1.6

-

C

-
-QMI_CHECK_VERSION, macro in Version and feature checks -
-
-
-QmiClientOma, struct in QmiClientOma -
-
-
-QmiClientOma::event-report, object signal in QmiClientOma -
-
-
-QmiClientPbm, struct in QmiClientPbm -
-
-
-QmiClientUim, struct in QmiClientUim -
-
-
-qmi_client_nas_get_tx_rx_info, function in NAS Get Tx Rx Info -
-
-
-qmi_client_nas_get_tx_rx_info_finish, function in NAS Get Tx Rx Info -
-
-
-qmi_client_oma_cancel_session, function in OMA Cancel Session -
-
-
-qmi_client_oma_cancel_session_finish, function in OMA Cancel Session -
-
-
-qmi_client_oma_get_feature_setting, function in OMA Get Feature Setting -
-
-
-qmi_client_oma_get_feature_setting_finish, function in OMA Get Feature Setting -
-
-
-qmi_client_oma_get_session_info, function in OMA Get Session Info -
-
-
-qmi_client_oma_get_session_info_finish, function in OMA Get Session Info -
-
-
-qmi_client_oma_reset, function in OMA Reset -
-
-
-qmi_client_oma_reset_finish, function in OMA Reset -
-
-
-qmi_client_oma_send_selection, function in OMA Send Selection -
-
-
-qmi_client_oma_send_selection_finish, function in OMA Send Selection -
-
-
-qmi_client_oma_set_event_report, function in OMA Set Event Report -
-
-
-qmi_client_oma_set_event_report_finish, function in OMA Set Event Report -
-
-
-qmi_client_oma_set_feature_setting, function in OMA Set Feature Setting -
-
-
-qmi_client_oma_set_feature_setting_finish, function in OMA Set Feature Setting -
-
-
-qmi_client_oma_start_session, function in OMA Start Session -
-
-
-qmi_client_oma_start_session_finish, function in OMA Start Session -
-
-
-qmi_client_pbm_get_all_capabilities, function in PBM Get All Capabilities -
-
-
-qmi_client_pbm_get_all_capabilities_finish, function in PBM Get All Capabilities -
-
-
-qmi_client_pbm_get_capabilities, function in PBM Get Capabilities -
-
-
-qmi_client_pbm_get_capabilities_finish, function in PBM Get Capabilities -
-
-
-qmi_client_pbm_indication_register, function in PBM Indication Register -
-
-
-qmi_client_pbm_indication_register_finish, function in PBM Indication Register -
-
-
-qmi_client_uim_get_file_attributes, function in UIM Get File Attributes -
-
-
-qmi_client_uim_get_file_attributes_finish, function in UIM Get File Attributes -
-
-
-qmi_client_uim_read_record, function in UIM Read Record -
-
-
-qmi_client_uim_read_record_finish, function in UIM Read Record -
-
-
-qmi_client_uim_read_transparent, function in UIM Read Transparent -
-
-
-qmi_client_uim_read_transparent_finish, function in UIM Read Transparent -
-
-
-qmi_client_uim_reset, function in UIM Reset -
-
-
-qmi_client_uim_reset_finish, function in UIM Reset -
-
-
-qmi_client_wds_get_packet_statistics, function in WDS Get Packet Statistics -
-
-
-qmi_client_wds_get_packet_statistics_finish, function in WDS Get Packet Statistics -
-
-

D

-
-QmiDeviceServiceVersionInfo, struct in QmiDevice -
-
-
-qmi_device_get_service_version_info, function in QmiDevice -
-
-
-qmi_device_get_service_version_info_finish, function in QmiDevice -
-
-

I

-
-QmiIndicationOmaEventReportOutput, struct in OMA Event Report -
-
-
-qmi_indication_oma_event_report_output_get_network_initiated_alert, function in OMA Event Report -
-
-
-qmi_indication_oma_event_report_output_get_session_fail_reason, function in OMA Event Report -
-
-
-qmi_indication_oma_event_report_output_get_session_state, function in OMA Event Report -
-
-
-qmi_indication_oma_event_report_output_ref, function in OMA Event Report -
-
-
-qmi_indication_oma_event_report_output_unref, function in OMA Event Report -
-
-

M

-
-QMI_MAJOR_VERSION, macro in Version and feature checks -
-
-
-QmiMessageNasGetTxRxInfoInput, struct in NAS Get Tx Rx Info -
-
-
-QmiMessageNasGetTxRxInfoOutput, struct in NAS Get Tx Rx Info -
-
-
-QmiMessageOmaCancelSessionOutput, struct in OMA Cancel Session -
-
-
-QmiMessageOmaGetFeatureSettingOutput, struct in OMA Get Feature Setting -
-
-
-QmiMessageOmaGetSessionInfoOutput, struct in OMA Get Session Info -
-
-
-QmiMessageOmaResetOutput, struct in OMA Reset -
-
-
-QmiMessageOmaSendSelectionInput, struct in OMA Send Selection -
-
-
-QmiMessageOmaSendSelectionOutput, struct in OMA Send Selection -
-
-
-QmiMessageOmaSetEventReportInput, struct in OMA Set Event Report -
-
-
-QmiMessageOmaSetEventReportOutput, struct in OMA Set Event Report -
-
-
-QmiMessageOmaSetFeatureSettingInput, struct in OMA Set Feature Setting -
-
-
-QmiMessageOmaSetFeatureSettingOutput, struct in OMA Set Feature Setting -
-
-
-QmiMessageOmaStartSessionInput, struct in OMA Start Session -
-
-
-QmiMessageOmaStartSessionOutput, struct in OMA Start Session -
-
-
-QmiMessagePbmGetAllCapabilitiesOutput, struct in PBM Get All Capabilities -
-
-
-QmiMessagePbmGetAllCapabilitiesOutputAdditionalNumberAlphaStringCapabilityElement, struct in PBM Get All Capabilities -
-
-
-QmiMessagePbmGetAllCapabilitiesOutputAdditionalNumberCapabilityElement, struct in PBM Get All Capabilities -
-
-
-QmiMessagePbmGetAllCapabilitiesOutputCapabilityBasicInformationElement, struct in PBM Get All Capabilities -
-
-
-QmiMessagePbmGetAllCapabilitiesOutputCapabilityBasicInformationElementPhonebooksElement, struct in PBM Get All Capabilities -
-
-
-QmiMessagePbmGetAllCapabilitiesOutputEmailCapabilityElement, struct in PBM Get All Capabilities -
-
-
-QmiMessagePbmGetAllCapabilitiesOutputGroupCapabilityElement, struct in PBM Get All Capabilities -
-
-
-QmiMessagePbmGetAllCapabilitiesOutputGroupingInformationAlphaStringCapabilityElement, struct in PBM Get All Capabilities -
-
-
-QmiMessagePbmGetAllCapabilitiesOutputHiddenRecordsCapabilityElement, struct in PBM Get All Capabilities -
-
-
-QmiMessagePbmGetAllCapabilitiesOutputSecondNameCapabilityElement, struct in PBM Get All Capabilities -
-
-
-QmiMessagePbmGetCapabilitiesInput, struct in PBM Get Capabilities -
-
-
-QmiMessagePbmGetCapabilitiesOutput, struct in PBM Get Capabilities -
-
-
-QmiMessagePbmIndicationRegisterInput, struct in PBM Indication Register -
-
-
-QmiMessagePbmIndicationRegisterOutput, struct in PBM Indication Register -
-
-
-QmiMessageUimGetFileAttributesInput, struct in UIM Get File Attributes -
-
-
-QmiMessageUimGetFileAttributesOutput, struct in UIM Get File Attributes -
-
-
-QmiMessageUimReadRecordInput, struct in UIM Read Record -
-
-
-QmiMessageUimReadRecordOutput, struct in UIM Read Record -
-
-
-QmiMessageUimReadTransparentInput, struct in UIM Read Transparent -
-
-
-QmiMessageUimReadTransparentOutput, struct in UIM Read Transparent -
-
-
-QmiMessageUimResetOutput, struct in UIM Reset -
-
-
-QmiMessageWdsGetPacketStatisticsInput, struct in WDS Get Packet Statistics -
-
-
-QmiMessageWdsGetPacketStatisticsOutput, struct in WDS Get Packet Statistics -
-
-
-qmi_message_dms_activate_manual_input_get_info, function in DMS Activate Manual -
-
-
-qmi_message_dms_activate_manual_input_get_prl, function in DMS Activate Manual -
-
-
-qmi_message_dms_activate_manual_input_set_info, function in DMS Activate Manual -
-
-
-qmi_message_dms_activate_manual_input_set_prl, function in DMS Activate Manual -
-
-
-qmi_message_nas_get_tx_rx_info_input_get_radio_interface, function in NAS Get Tx Rx Info -
-
-
-qmi_message_nas_get_tx_rx_info_input_new, function in NAS Get Tx Rx Info -
-
-
-qmi_message_nas_get_tx_rx_info_input_ref, function in NAS Get Tx Rx Info -
-
-
-qmi_message_nas_get_tx_rx_info_input_set_radio_interface, function in NAS Get Tx Rx Info -
-
-
-qmi_message_nas_get_tx_rx_info_input_unref, function in NAS Get Tx Rx Info -
-
-
-qmi_message_nas_get_tx_rx_info_output_get_result, function in NAS Get Tx Rx Info -
-
-
-qmi_message_nas_get_tx_rx_info_output_get_rx_chain_0_info, function in NAS Get Tx Rx Info -
-
-
-qmi_message_nas_get_tx_rx_info_output_get_rx_chain_1_info, function in NAS Get Tx Rx Info -
-
-
-qmi_message_nas_get_tx_rx_info_output_get_tx_info, function in NAS Get Tx Rx Info -
-
-
-qmi_message_nas_get_tx_rx_info_output_ref, function in NAS Get Tx Rx Info -
-
-
-qmi_message_nas_get_tx_rx_info_output_unref, function in NAS Get Tx Rx Info -
-
-
-qmi_message_oma_cancel_session_output_get_result, function in OMA Cancel Session -
-
-
-qmi_message_oma_cancel_session_output_ref, function in OMA Cancel Session -
-
-
-qmi_message_oma_cancel_session_output_unref, function in OMA Cancel Session -
-
-
-qmi_message_oma_get_feature_setting_output_get_device_provisioning_service_update_config, function in OMA Get Feature Setting -
-
-
-qmi_message_oma_get_feature_setting_output_get_hfa_feature_config, function in OMA Get Feature Setting -
-
-
-qmi_message_oma_get_feature_setting_output_get_hfa_feature_done_state, function in OMA Get Feature Setting -
-
-
-qmi_message_oma_get_feature_setting_output_get_prl_update_service_config, function in OMA Get Feature Setting -
-
-
-qmi_message_oma_get_feature_setting_output_get_result, function in OMA Get Feature Setting -
-
-
-qmi_message_oma_get_feature_setting_output_ref, function in OMA Get Feature Setting -
-
-
-qmi_message_oma_get_feature_setting_output_unref, function in OMA Get Feature Setting -
-
-
-qmi_message_oma_get_session_info_output_get_network_initiated_alert, function in OMA Get Session Info -
-
-
-qmi_message_oma_get_session_info_output_get_result, function in OMA Get Session Info -
-
-
-qmi_message_oma_get_session_info_output_get_retry_info, function in OMA Get Session Info -
-
-
-qmi_message_oma_get_session_info_output_get_session_failed_reason, function in OMA Get Session Info -
-
-
-qmi_message_oma_get_session_info_output_get_session_info, function in OMA Get Session Info -
-
-
-qmi_message_oma_get_session_info_output_ref, function in OMA Get Session Info -
-
-
-qmi_message_oma_get_session_info_output_unref, function in OMA Get Session Info -
-
-
-qmi_message_oma_reset_output_get_result, function in OMA Reset -
-
-
-qmi_message_oma_reset_output_ref, function in OMA Reset -
-
-
-qmi_message_oma_reset_output_unref, function in OMA Reset -
-
-
-qmi_message_oma_send_selection_input_get_network_initiated_alert_selection, function in OMA Send Selection -
-
-
-qmi_message_oma_send_selection_input_new, function in OMA Send Selection -
-
-
-qmi_message_oma_send_selection_input_ref, function in OMA Send Selection -
-
-
-qmi_message_oma_send_selection_input_set_network_initiated_alert_selection, function in OMA Send Selection -
-
-
-qmi_message_oma_send_selection_input_unref, function in OMA Send Selection -
-
-
-qmi_message_oma_send_selection_output_get_result, function in OMA Send Selection -
-
-
-qmi_message_oma_send_selection_output_ref, function in OMA Send Selection -
-
-
-qmi_message_oma_send_selection_output_unref, function in OMA Send Selection -
-
-
-qmi_message_oma_set_event_report_input_get_network_initiated_alert_reporting, function in OMA Set Event Report -
-
-
-qmi_message_oma_set_event_report_input_get_session_state_reporting, function in OMA Set Event Report -
-
-
-qmi_message_oma_set_event_report_input_new, function in OMA Set Event Report -
-
-
-qmi_message_oma_set_event_report_input_ref, function in OMA Set Event Report -
-
-
-qmi_message_oma_set_event_report_input_set_network_initiated_alert_reporting, function in OMA Set Event Report -
-
-
-qmi_message_oma_set_event_report_input_set_session_state_reporting, function in OMA Set Event Report -
-
-
-qmi_message_oma_set_event_report_input_unref, function in OMA Set Event Report -
-
-
-qmi_message_oma_set_event_report_output_get_result, function in OMA Set Event Report -
-
-
-qmi_message_oma_set_event_report_output_ref, function in OMA Set Event Report -
-
-
-qmi_message_oma_set_event_report_output_unref, function in OMA Set Event Report -
-
-
-qmi_message_oma_set_feature_setting_input_get_device_provisioning_service_update_config, function in OMA Set Feature Setting -
-
-
-qmi_message_oma_set_feature_setting_input_get_hfa_feature_config, function in OMA Set Feature Setting -
-
-
-qmi_message_oma_set_feature_setting_input_get_prl_update_service_config, function in OMA Set Feature Setting -
-
-
-qmi_message_oma_set_feature_setting_input_new, function in OMA Set Feature Setting -
-
-
-qmi_message_oma_set_feature_setting_input_ref, function in OMA Set Feature Setting -
-
-
-qmi_message_oma_set_feature_setting_input_set_device_provisioning_service_update_config, function in OMA Set Feature Setting -
-
-
-qmi_message_oma_set_feature_setting_input_set_hfa_feature_config, function in OMA Set Feature Setting -
-
-
-qmi_message_oma_set_feature_setting_input_set_prl_update_service_config, function in OMA Set Feature Setting -
-
-
-qmi_message_oma_set_feature_setting_input_unref, function in OMA Set Feature Setting -
-
-
-qmi_message_oma_set_feature_setting_output_get_result, function in OMA Set Feature Setting -
-
-
-qmi_message_oma_set_feature_setting_output_ref, function in OMA Set Feature Setting -
-
-
-qmi_message_oma_set_feature_setting_output_unref, function in OMA Set Feature Setting -
-
-
-qmi_message_oma_start_session_input_get_session_type, function in OMA Start Session -
-
-
-qmi_message_oma_start_session_input_new, function in OMA Start Session -
-
-
-qmi_message_oma_start_session_input_ref, function in OMA Start Session -
-
-
-qmi_message_oma_start_session_input_set_session_type, function in OMA Start Session -
-
-
-qmi_message_oma_start_session_input_unref, function in OMA Start Session -
-
-
-qmi_message_oma_start_session_output_get_result, function in OMA Start Session -
-
-
-qmi_message_oma_start_session_output_ref, function in OMA Start Session -
-
-
-qmi_message_oma_start_session_output_unref, function in OMA Start Session -
-
-
-qmi_message_pbm_get_all_capabilities_output_get_additional_number_alpha_string_capability, function in PBM Get All Capabilities -
-
-
-qmi_message_pbm_get_all_capabilities_output_get_additional_number_capability, function in PBM Get All Capabilities -
-
-
-qmi_message_pbm_get_all_capabilities_output_get_capability_basic_information, function in PBM Get All Capabilities -
-
-
-qmi_message_pbm_get_all_capabilities_output_get_email_capability, function in PBM Get All Capabilities -
-
-
-qmi_message_pbm_get_all_capabilities_output_get_grouping_information_alpha_string_capability, function in PBM Get All Capabilities -
-
-
-qmi_message_pbm_get_all_capabilities_output_get_group_capability, function in PBM Get All Capabilities -
-
-
-qmi_message_pbm_get_all_capabilities_output_get_hidden_records_capability, function in PBM Get All Capabilities -
-
-
-qmi_message_pbm_get_all_capabilities_output_get_result, function in PBM Get All Capabilities -
-
-
-qmi_message_pbm_get_all_capabilities_output_get_second_name_capability, function in PBM Get All Capabilities -
-
-
-qmi_message_pbm_get_all_capabilities_output_ref, function in PBM Get All Capabilities -
-
-
-qmi_message_pbm_get_all_capabilities_output_unref, function in PBM Get All Capabilities -
-
-
-qmi_message_pbm_get_capabilities_input_get_phonebook_information, function in PBM Get Capabilities -
-
-
-qmi_message_pbm_get_capabilities_input_new, function in PBM Get Capabilities -
-
-
-qmi_message_pbm_get_capabilities_input_ref, function in PBM Get Capabilities -
-
-
-qmi_message_pbm_get_capabilities_input_set_phonebook_information, function in PBM Get Capabilities -
-
-
-qmi_message_pbm_get_capabilities_input_unref, function in PBM Get Capabilities -
-
-
-qmi_message_pbm_get_capabilities_output_get_additional_number_alpha_string_capability, function in PBM Get Capabilities -
-
-
-qmi_message_pbm_get_capabilities_output_get_additional_number_capability, function in PBM Get Capabilities -
-
-
-qmi_message_pbm_get_capabilities_output_get_capability_basic_information, function in PBM Get Capabilities -
-
-
-qmi_message_pbm_get_capabilities_output_get_email_capability, function in PBM Get Capabilities -
-
-
-qmi_message_pbm_get_capabilities_output_get_grouping_information_alpha_string_capability, function in PBM Get Capabilities -
-
-
-qmi_message_pbm_get_capabilities_output_get_group_capability, function in PBM Get Capabilities -
-
-
-qmi_message_pbm_get_capabilities_output_get_hidden_records_capability, function in PBM Get Capabilities -
-
-
-qmi_message_pbm_get_capabilities_output_get_result, function in PBM Get Capabilities -
-
-
-qmi_message_pbm_get_capabilities_output_get_second_name_capability, function in PBM Get Capabilities -
-
-
-qmi_message_pbm_get_capabilities_output_ref, function in PBM Get Capabilities -
-
-
-qmi_message_pbm_get_capabilities_output_unref, function in PBM Get Capabilities -
-
-
-qmi_message_pbm_indication_register_input_get_event_registration_mask, function in PBM Indication Register -
-
-
-qmi_message_pbm_indication_register_input_new, function in PBM Indication Register -
-
-
-qmi_message_pbm_indication_register_input_ref, function in PBM Indication Register -
-
-
-qmi_message_pbm_indication_register_input_set_event_registration_mask, function in PBM Indication Register -
-
-
-qmi_message_pbm_indication_register_input_unref, function in PBM Indication Register -
-
-
-qmi_message_pbm_indication_register_output_get_event_registration_mask, function in PBM Indication Register -
-
-
-qmi_message_pbm_indication_register_output_get_result, function in PBM Indication Register -
-
-
-qmi_message_pbm_indication_register_output_ref, function in PBM Indication Register -
-
-
-qmi_message_pbm_indication_register_output_unref, function in PBM Indication Register -
-
-
-qmi_message_uim_get_file_attributes_input_get_file, function in UIM Get File Attributes -
-
-
-qmi_message_uim_get_file_attributes_input_get_response_in_indication_token, function in UIM Get File Attributes -
-
-
-qmi_message_uim_get_file_attributes_input_get_session_information, function in UIM Get File Attributes -
-
-
-qmi_message_uim_get_file_attributes_input_new, function in UIM Get File Attributes -
-
-
-qmi_message_uim_get_file_attributes_input_ref, function in UIM Get File Attributes -
-
-
-qmi_message_uim_get_file_attributes_input_set_file, function in UIM Get File Attributes -
-
-
-qmi_message_uim_get_file_attributes_input_set_response_in_indication_token, function in UIM Get File Attributes -
-
-
-qmi_message_uim_get_file_attributes_input_set_session_information, function in UIM Get File Attributes -
-
-
-qmi_message_uim_get_file_attributes_input_unref, function in UIM Get File Attributes -
-
-
-qmi_message_uim_get_file_attributes_output_get_card_result, function in UIM Get File Attributes -
-
-
-qmi_message_uim_get_file_attributes_output_get_file_attributes, function in UIM Get File Attributes -
-
-
-qmi_message_uim_get_file_attributes_output_get_response_in_indication_token, function in UIM Get File Attributes -
-
-
-qmi_message_uim_get_file_attributes_output_get_result, function in UIM Get File Attributes -
-
-
-qmi_message_uim_get_file_attributes_output_ref, function in UIM Get File Attributes -
-
-
-qmi_message_uim_get_file_attributes_output_unref, function in UIM Get File Attributes -
-
-
-qmi_message_uim_read_record_input_get_file, function in UIM Read Record -
-
-
-qmi_message_uim_read_record_input_get_last_record, function in UIM Read Record -
-
-
-qmi_message_uim_read_record_input_get_record, function in UIM Read Record -
-
-
-qmi_message_uim_read_record_input_get_response_in_indication_token, function in UIM Read Record -
-
-
-qmi_message_uim_read_record_input_get_session_information, function in UIM Read Record -
-
-
-qmi_message_uim_read_record_input_new, function in UIM Read Record -
-
-
-qmi_message_uim_read_record_input_ref, function in UIM Read Record -
-
-
-qmi_message_uim_read_record_input_set_file, function in UIM Read Record -
-
-
-qmi_message_uim_read_record_input_set_last_record, function in UIM Read Record -
-
-
-qmi_message_uim_read_record_input_set_record, function in UIM Read Record -
-
-
-qmi_message_uim_read_record_input_set_response_in_indication_token, function in UIM Read Record -
-
-
-qmi_message_uim_read_record_input_set_session_information, function in UIM Read Record -
-
-
-qmi_message_uim_read_record_input_unref, function in UIM Read Record -
-
-
-qmi_message_uim_read_record_output_get_additional_read_result, function in UIM Read Record -
-
-
-qmi_message_uim_read_record_output_get_card_result, function in UIM Read Record -
-
-
-qmi_message_uim_read_record_output_get_read_result, function in UIM Read Record -
-
-
-qmi_message_uim_read_record_output_get_response_in_indication_token, function in UIM Read Record -
-
-
-qmi_message_uim_read_record_output_get_result, function in UIM Read Record -
-
-
-qmi_message_uim_read_record_output_ref, function in UIM Read Record -
-
-
-qmi_message_uim_read_record_output_unref, function in UIM Read Record -
-
-
-qmi_message_uim_read_transparent_input_get_encrypt_data, function in UIM Read Transparent -
-
-
-qmi_message_uim_read_transparent_input_get_file, function in UIM Read Transparent -
-
-
-qmi_message_uim_read_transparent_input_get_read_information, function in UIM Read Transparent -
-
-
-qmi_message_uim_read_transparent_input_get_response_in_indication_token, function in UIM Read Transparent -
-
-
-qmi_message_uim_read_transparent_input_get_session_information, function in UIM Read Transparent -
-
-
-qmi_message_uim_read_transparent_input_new, function in UIM Read Transparent -
-
-
-qmi_message_uim_read_transparent_input_ref, function in UIM Read Transparent -
-
-
-qmi_message_uim_read_transparent_input_set_encrypt_data, function in UIM Read Transparent -
-
-
-qmi_message_uim_read_transparent_input_set_file, function in UIM Read Transparent -
-
-
-qmi_message_uim_read_transparent_input_set_read_information, function in UIM Read Transparent -
-
-
-qmi_message_uim_read_transparent_input_set_response_in_indication_token, function in UIM Read Transparent -
-
-
-qmi_message_uim_read_transparent_input_set_session_information, function in UIM Read Transparent -
-
-
-qmi_message_uim_read_transparent_input_unref, function in UIM Read Transparent -
-
-
-qmi_message_uim_read_transparent_output_get_card_result, function in UIM Read Transparent -
-
-
-qmi_message_uim_read_transparent_output_get_encrypted_data, function in UIM Read Transparent -
-
-
-qmi_message_uim_read_transparent_output_get_read_result, function in UIM Read Transparent -
-
-
-qmi_message_uim_read_transparent_output_get_response_in_indication_token, function in UIM Read Transparent -
-
-
-qmi_message_uim_read_transparent_output_get_result, function in UIM Read Transparent -
-
-
-qmi_message_uim_read_transparent_output_ref, function in UIM Read Transparent -
-
-
-qmi_message_uim_read_transparent_output_unref, function in UIM Read Transparent -
-
-
-qmi_message_uim_reset_output_get_result, function in UIM Reset -
-
-
-qmi_message_uim_reset_output_ref, function in UIM Reset -
-
-
-qmi_message_uim_reset_output_unref, function in UIM Reset -
-
-
-qmi_message_wds_get_packet_statistics_input_get_mask, function in WDS Get Packet Statistics -
-
-
-qmi_message_wds_get_packet_statistics_input_new, function in WDS Get Packet Statistics -
-
-
-qmi_message_wds_get_packet_statistics_input_ref, function in WDS Get Packet Statistics -
-
-
-qmi_message_wds_get_packet_statistics_input_set_mask, function in WDS Get Packet Statistics -
-
-
-qmi_message_wds_get_packet_statistics_input_unref, function in WDS Get Packet Statistics -
-
-
-qmi_message_wds_get_packet_statistics_output_get_last_call_rx_bytes_ok, function in WDS Get Packet Statistics -
-
-
-qmi_message_wds_get_packet_statistics_output_get_last_call_tx_bytes_ok, function in WDS Get Packet Statistics -
-
-
-qmi_message_wds_get_packet_statistics_output_get_result, function in WDS Get Packet Statistics -
-
-
-qmi_message_wds_get_packet_statistics_output_get_rx_bytes_ok, function in WDS Get Packet Statistics -
-
-
-qmi_message_wds_get_packet_statistics_output_get_rx_overflows, function in WDS Get Packet Statistics -
-
-
-qmi_message_wds_get_packet_statistics_output_get_rx_packets_dropped, function in WDS Get Packet Statistics -
-
-
-qmi_message_wds_get_packet_statistics_output_get_rx_packets_error, function in WDS Get Packet Statistics -
-
-
-qmi_message_wds_get_packet_statistics_output_get_rx_packets_ok, function in WDS Get Packet Statistics -
-
-
-qmi_message_wds_get_packet_statistics_output_get_tx_bytes_ok, function in WDS Get Packet Statistics -
-
-
-qmi_message_wds_get_packet_statistics_output_get_tx_overflows, function in WDS Get Packet Statistics -
-
-
-qmi_message_wds_get_packet_statistics_output_get_tx_packets_dropped, function in WDS Get Packet Statistics -
-
-
-qmi_message_wds_get_packet_statistics_output_get_tx_packets_error, function in WDS Get Packet Statistics -
-
-
-qmi_message_wds_get_packet_statistics_output_get_tx_packets_ok, function in WDS Get Packet Statistics -
-
-
-qmi_message_wds_get_packet_statistics_output_ref, function in WDS Get Packet Statistics -
-
-
-qmi_message_wds_get_packet_statistics_output_unref, function in WDS Get Packet Statistics -
-
-
-QMI_MICRO_VERSION, macro in Version and feature checks -
-
-
-QMI_MINOR_VERSION, macro in Version and feature checks -
-
-

O

-
-QmiOmaHfaFeatureDoneState, enum in OMA enumerations and flags -
-
-
-QmiOmaSessionFailedReason, enum in OMA enumerations and flags -
-
-
-QmiOmaSessionState, enum in OMA enumerations and flags -
-
-
-QmiOmaSessionType, enum in OMA enumerations and flags -
-
-
-qmi_oma_hfa_feature_done_state_get_string, function in OMA enumerations and flags -
-
-
-qmi_oma_session_failed_reason_get_string, function in OMA enumerations and flags -
-
-
-qmi_oma_session_state_get_string, function in OMA enumerations and flags -
-
-
-qmi_oma_session_type_get_string, function in OMA enumerations and flags -
-
-

P

-
-QmiPbmEventRegistrationFlag, enum in PBM enumerations and flags -
-
-
-QmiPbmPhonebookType, enum in PBM enumerations and flags -
-
-
-QmiPbmSessionType, enum in PBM enumerations and flags -
-
-
-qmi_pbm_event_registration_flag_build_string_from_mask, function in PBM enumerations and flags -
-
-
-qmi_pbm_phonebook_type_build_string_from_mask, function in PBM enumerations and flags -
-
-
-qmi_pbm_session_type_get_string, function in PBM enumerations and flags -
-
-

U

-
-QmiUimFileType, enum in UIM enumerations and flags -
-
-
-QmiUimSecurityAttribute, enum in UIM enumerations and flags -
-
-
-QmiUimSecurityAttributeLogic, enum in UIM enumerations and flags -
-
-
-QmiUimSessionType, enum in UIM enumerations and flags -
-
-
-qmi_uim_file_type_get_string, function in UIM enumerations and flags -
-
-
-qmi_uim_security_attribute_build_string_from_mask, function in UIM enumerations and flags -
-
-
-qmi_uim_security_attribute_logic_get_string, function in UIM enumerations and flags -
-
-
-qmi_uim_session_type_get_string, function in UIM enumerations and flags -
-
-

W

-
-QmiWdsPacketStatisticsMaskFlag, enum in WDS enumerations and flags -
-
-
-qmi_wds_packet_statistics_mask_flag_build_string_from_mask, function in WDS enumerations and flags -
-
-
- - - \ No newline at end of file diff -Nru libqmi-1.18.0/docs/reference/libqmi-glib/html/api-index-1-8.html libqmi-1.22.0/docs/reference/libqmi-glib/html/api-index-1-8.html --- libqmi-1.18.0/docs/reference/libqmi-glib/html/api-index-1-8.html 2017-03-22 12:28:28.000000000 +0100 +++ libqmi-1.22.0/docs/reference/libqmi-glib/html/api-index-1-8.html 1970-01-01 01:00:00.000000000 +0100 @@ -1,394 +0,0 @@ - - - - -Index of new core symbols in 1.8: libqmi-glib Reference Manual - - - - - - - - - - - - - - - - -
-

-Index of new core symbols in 1.8

-

C

-
-qmi_client_wds_get_default_settings, function in WDS Get Default Settings -
-
-
-qmi_client_wds_get_default_settings_finish, function in WDS Get Default Settings -
-
-
-qmi_client_wds_get_profile_list, function in WDS Get Profile List -
-
-
-qmi_client_wds_get_profile_list_finish, function in WDS Get Profile List -
-
-
-qmi_client_wds_get_profile_settings, function in WDS Get Profile Settings -
-
-
-qmi_client_wds_get_profile_settings_finish, function in WDS Get Profile Settings -
-
-

D

-
-QmiDevice::indication, object signal in QmiDevice -
-
-
-QMI_DEVICE_SIGNAL_INDICATION, macro in QmiDevice -
-
-

M

-
-QmiMessageWdsGetDefaultSettingsInput, struct in WDS Get Default Settings -
-
-
-QmiMessageWdsGetDefaultSettingsOutput, struct in WDS Get Default Settings -
-
-
-QmiMessageWdsGetProfileListInput, struct in WDS Get Profile List -
-
-
-QmiMessageWdsGetProfileListOutput, struct in WDS Get Profile List -
-
-
-QmiMessageWdsGetProfileListOutputProfileListProfile, struct in WDS Get Profile List -
-
-
-QmiMessageWdsGetProfileSettingsInput, struct in WDS Get Profile Settings -
-
-
-QmiMessageWdsGetProfileSettingsOutput, struct in WDS Get Profile Settings -
-
-
-qmi_message_is_request, function in QmiMessage -
-
-
-qmi_message_response_new, function in QmiMessage -
-
-
-qmi_message_set_transaction_id, function in QmiMessage -
-
-
-qmi_message_wds_get_default_settings_input_get_profile_type, function in WDS Get Default Settings -
-
-
-qmi_message_wds_get_default_settings_input_new, function in WDS Get Default Settings -
-
-
-qmi_message_wds_get_default_settings_input_ref, function in WDS Get Default Settings -
-
-
-qmi_message_wds_get_default_settings_input_set_profile_type, function in WDS Get Default Settings -
-
-
-qmi_message_wds_get_default_settings_input_unref, function in WDS Get Default Settings -
-
-
-qmi_message_wds_get_default_settings_output_get_apn_name, function in WDS Get Default Settings -
-
-
-qmi_message_wds_get_default_settings_output_get_authentication, function in WDS Get Default Settings -
-
-
-qmi_message_wds_get_default_settings_output_get_extended_error_code, function in WDS Get Default Settings -
-
-
-qmi_message_wds_get_default_settings_output_get_gprs_minimum_qos, function in WDS Get Default Settings -
-
-
-qmi_message_wds_get_default_settings_output_get_gprs_requested_qos, function in WDS Get Default Settings -
-
-
-qmi_message_wds_get_default_settings_output_get_imcn_flag, function in WDS Get Default Settings -
-
-
-qmi_message_wds_get_default_settings_output_get_ipv4_address_preference, function in WDS Get Default Settings -
-
-
-qmi_message_wds_get_default_settings_output_get_ipv6_address_preference, function in WDS Get Default Settings -
-
-
-qmi_message_wds_get_default_settings_output_get_ipv6_primary_dns_address_preference, function in WDS Get Default Settings -
-
-
-qmi_message_wds_get_default_settings_output_get_ipv6_secondary_dns_address_preference, function in WDS Get Default Settings -
-
-
-qmi_message_wds_get_default_settings_output_get_password, function in WDS Get Default Settings -
-
-
-qmi_message_wds_get_default_settings_output_get_pcscf_address_using_dhcp, function in WDS Get Default Settings -
-
-
-qmi_message_wds_get_default_settings_output_get_pcscf_address_using_pco, function in WDS Get Default Settings -
-
-
-qmi_message_wds_get_default_settings_output_get_pdp_type, function in WDS Get Default Settings -
-
-
-qmi_message_wds_get_default_settings_output_get_primary_ipv4_dns_address, function in WDS Get Default Settings -
-
-
-qmi_message_wds_get_default_settings_output_get_profile_name, function in WDS Get Default Settings -
-
-
-qmi_message_wds_get_default_settings_output_get_result, function in WDS Get Default Settings -
-
-
-qmi_message_wds_get_default_settings_output_get_secondary_ipv4_dns_address, function in WDS Get Default Settings -
-
-
-qmi_message_wds_get_default_settings_output_get_username, function in WDS Get Default Settings -
-
-
-qmi_message_wds_get_default_settings_output_ref, function in WDS Get Default Settings -
-
-
-qmi_message_wds_get_default_settings_output_unref, function in WDS Get Default Settings -
-
-
-qmi_message_wds_get_profile_list_input_get_profile_type, function in WDS Get Profile List -
-
-
-qmi_message_wds_get_profile_list_input_new, function in WDS Get Profile List -
-
-
-qmi_message_wds_get_profile_list_input_ref, function in WDS Get Profile List -
-
-
-qmi_message_wds_get_profile_list_input_set_profile_type, function in WDS Get Profile List -
-
-
-qmi_message_wds_get_profile_list_input_unref, function in WDS Get Profile List -
-
-
-qmi_message_wds_get_profile_list_output_get_extended_error_code, function in WDS Get Profile List -
-
-
-qmi_message_wds_get_profile_list_output_get_profile_list, function in WDS Get Profile List -
-
-
-qmi_message_wds_get_profile_list_output_get_result, function in WDS Get Profile List -
-
-
-qmi_message_wds_get_profile_list_output_ref, function in WDS Get Profile List -
-
-
-qmi_message_wds_get_profile_list_output_unref, function in WDS Get Profile List -
-
-
-qmi_message_wds_get_profile_settings_input_get_profile_id, function in WDS Get Profile Settings -
-
-
-qmi_message_wds_get_profile_settings_input_new, function in WDS Get Profile Settings -
-
-
-qmi_message_wds_get_profile_settings_input_ref, function in WDS Get Profile Settings -
-
-
-qmi_message_wds_get_profile_settings_input_set_profile_id, function in WDS Get Profile Settings -
-
-
-qmi_message_wds_get_profile_settings_input_unref, function in WDS Get Profile Settings -
-
-
-qmi_message_wds_get_profile_settings_output_get_apn_name, function in WDS Get Profile Settings -
-
-
-qmi_message_wds_get_profile_settings_output_get_authentication, function in WDS Get Profile Settings -
-
-
-qmi_message_wds_get_profile_settings_output_get_extended_error_code, function in WDS Get Profile Settings -
-
-
-qmi_message_wds_get_profile_settings_output_get_gprs_minimum_qos, function in WDS Get Profile Settings -
-
-
-qmi_message_wds_get_profile_settings_output_get_gprs_requested_qos, function in WDS Get Profile Settings -
-
-
-qmi_message_wds_get_profile_settings_output_get_imcn_flag, function in WDS Get Profile Settings -
-
-
-qmi_message_wds_get_profile_settings_output_get_ipv4_address_preference, function in WDS Get Profile Settings -
-
-
-qmi_message_wds_get_profile_settings_output_get_ipv6_address_preference, function in WDS Get Profile Settings -
-
-
-qmi_message_wds_get_profile_settings_output_get_ipv6_primary_dns_address_preference, function in WDS Get Profile Settings -
-
-
-qmi_message_wds_get_profile_settings_output_get_ipv6_secondary_dns_address_preference, function in WDS Get Profile Settings -
-
-
-qmi_message_wds_get_profile_settings_output_get_password, function in WDS Get Profile Settings -
-
-
-qmi_message_wds_get_profile_settings_output_get_pcscf_address_using_dhcp, function in WDS Get Profile Settings -
-
-
-qmi_message_wds_get_profile_settings_output_get_pcscf_address_using_pco, function in WDS Get Profile Settings -
-
-
-qmi_message_wds_get_profile_settings_output_get_pdp_type, function in WDS Get Profile Settings -
-
-
-qmi_message_wds_get_profile_settings_output_get_primary_ipv4_dns_address, function in WDS Get Profile Settings -
-
-
-qmi_message_wds_get_profile_settings_output_get_profile_name, function in WDS Get Profile Settings -
-
-
-qmi_message_wds_get_profile_settings_output_get_result, function in WDS Get Profile Settings -
-
-
-qmi_message_wds_get_profile_settings_output_get_secondary_ipv4_dns_address, function in WDS Get Profile Settings -
-
-
-qmi_message_wds_get_profile_settings_output_get_username, function in WDS Get Profile Settings -
-
-
-qmi_message_wds_get_profile_settings_output_ref, function in WDS Get Profile Settings -
-
-
-qmi_message_wds_get_profile_settings_output_unref, function in WDS Get Profile Settings -
-
-

P

-
-QmiProxy, struct in QmiProxy -
-
-
-QmiProxy:qmi-proxy-n-clients, object property in QmiProxy -
-
-
-qmi_proxy_get_n_clients, function in QmiProxy -
-
-
-qmi_proxy_new, function in QmiProxy -
-
-
-QMI_PROXY_N_CLIENTS, macro in QmiProxy -
-
-
-QMI_PROXY_SOCKET_PATH, macro in QmiProxy -
-
-

W

-
-QmiWdsDsProfileError, enum in WDS enumerations and flags -
-
-
-qmi_wds_ds_profile_error_get_string, function in WDS enumerations and flags -
-
-
- - - \ No newline at end of file diff -Nru libqmi-1.18.0/docs/reference/libqmi-glib/html/api-index-full.html libqmi-1.22.0/docs/reference/libqmi-glib/html/api-index-full.html --- libqmi-1.18.0/docs/reference/libqmi-glib/html/api-index-full.html 2017-03-22 12:28:29.000000000 +0100 +++ libqmi-1.22.0/docs/reference/libqmi-glib/html/api-index-full.html 2019-01-08 15:19:01.000000000 +0100 @@ -3,12 +3,12 @@ API Index: libqmi-glib Reference Manual - + - + @@ -21,6 +21,8 @@  |  I  |  + L +  |  M  |  N @@ -29,6 +31,8 @@  |  P  |  + Q +  |  S  |  U @@ -74,6 +78,10 @@
+QmiClient:client-valid, object property in QmiClient +
+
+
QmiClient:client-version-major, object property in QmiClient
@@ -90,6 +98,62 @@
+QmiClientLoc, struct in QmiClientLoc +
+
+
+QmiClientLoc::delete-assistance-data, object signal in QmiClientLoc +
+
+
+QmiClientLoc::engine-state, object signal in QmiClientLoc +
+
+
+QmiClientLoc::fix-recurrence-type, object signal in QmiClientLoc +
+
+
+QmiClientLoc::get-operation-mode, object signal in QmiClientLoc +
+
+
+QmiClientLoc::get-predicted-orbits-data-source, object signal in QmiClientLoc +
+
+
+QmiClientLoc::get-server, object signal in QmiClientLoc +
+
+
+QmiClientLoc::gnss-sv-info, object signal in QmiClientLoc +
+
+
+QmiClientLoc::inject-predicted-orbits-data, object signal in QmiClientLoc +
+
+
+QmiClientLoc::inject-xtra-data, object signal in QmiClientLoc +
+
+
+QmiClientLoc::nmea, object signal in QmiClientLoc +
+
+
+QmiClientLoc::position-report, object signal in QmiClientLoc +
+
+
+QmiClientLoc::set-operation-mode, object signal in QmiClientLoc +
+
+
+QmiClientLoc::set-server, object signal in QmiClientLoc +
+
+
QmiClientNas, struct in QmiClientNas
@@ -174,10 +238,26 @@
+QmiClientQos, struct in QmiClientQos +
+
+
+QmiClientQos::flow-status, object signal in QmiClientQos +
+
+
+QmiClientQos::network-status, object signal in QmiClientQos +
+
+
QmiClientUim, struct in QmiClientUim
+QmiClientUim::card-status, object signal in QmiClientUim +
+
+
QmiClientVoice, struct in QmiClientVoice
@@ -226,443 +306,459 @@
-qmi_client_dms_activate_automatic, function in DMS Activate Automatic +qmi_client_dms_activate_automatic, function in DMS Activate Automatic request +
+
+
+qmi_client_dms_activate_automatic_finish, function in DMS Activate Automatic request
-qmi_client_dms_activate_automatic_finish, function in DMS Activate Automatic +qmi_client_dms_activate_manual, function in DMS Activate Manual request
-qmi_client_dms_activate_manual, function in DMS Activate Manual +qmi_client_dms_activate_manual_finish, function in DMS Activate Manual request
-qmi_client_dms_activate_manual_finish, function in DMS Activate Manual +qmi_client_dms_delete_stored_image, function in DMS Delete Stored Image request
-qmi_client_dms_delete_stored_image, function in DMS Delete Stored Image +qmi_client_dms_delete_stored_image_finish, function in DMS Delete Stored Image request
-qmi_client_dms_delete_stored_image_finish, function in DMS Delete Stored Image +qmi_client_dms_get_activation_state, function in DMS Get Activation State request
-qmi_client_dms_get_activation_state, function in DMS Get Activation State +qmi_client_dms_get_activation_state_finish, function in DMS Get Activation State request
-qmi_client_dms_get_activation_state_finish, function in DMS Get Activation State +qmi_client_dms_get_alt_net_config, function in DMS Get Alt Net Config request
-qmi_client_dms_get_alt_net_config, function in DMS Get Alt Net Config +qmi_client_dms_get_alt_net_config_finish, function in DMS Get Alt Net Config request
-qmi_client_dms_get_alt_net_config_finish, function in DMS Get Alt Net Config +qmi_client_dms_get_band_capabilities, function in DMS Get Band Capabilities request
-qmi_client_dms_get_band_capabilities, function in DMS Get Band Capabilities +qmi_client_dms_get_band_capabilities_finish, function in DMS Get Band Capabilities request
-qmi_client_dms_get_band_capabilities_finish, function in DMS Get Band Capabilities +qmi_client_dms_get_boot_image_download_mode, function in DMS Get Boot Image Download Mode request
-qmi_client_dms_get_boot_image_download_mode, function in DMS Get Boot Image Download Mode +qmi_client_dms_get_boot_image_download_mode_finish, function in DMS Get Boot Image Download Mode request
-qmi_client_dms_get_boot_image_download_mode_finish, function in DMS Get Boot Image Download Mode +qmi_client_dms_get_capabilities, function in DMS Get Capabilities request
-qmi_client_dms_get_capabilities, function in DMS Get Capabilities +qmi_client_dms_get_capabilities_finish, function in DMS Get Capabilities request
-qmi_client_dms_get_capabilities_finish, function in DMS Get Capabilities +qmi_client_dms_get_factory_sku, function in DMS Get Factory SKU request
-qmi_client_dms_get_factory_sku, function in DMS Get Factory SKU +qmi_client_dms_get_factory_sku_finish, function in DMS Get Factory SKU request
-qmi_client_dms_get_factory_sku_finish, function in DMS Get Factory SKU +qmi_client_dms_get_firmware_preference, function in DMS Get Firmware Preference request
-qmi_client_dms_get_firmware_preference, function in DMS Get Firmware Preference +qmi_client_dms_get_firmware_preference_finish, function in DMS Get Firmware Preference request
-qmi_client_dms_get_firmware_preference_finish, function in DMS Get Firmware Preference +qmi_client_dms_get_hardware_revision, function in DMS Get Hardware Revision request
-qmi_client_dms_get_hardware_revision, function in DMS Get Hardware Revision +qmi_client_dms_get_hardware_revision_finish, function in DMS Get Hardware Revision request
-qmi_client_dms_get_hardware_revision_finish, function in DMS Get Hardware Revision +qmi_client_dms_get_ids, function in DMS Get IDs request
-qmi_client_dms_get_ids, function in DMS Get IDs +qmi_client_dms_get_ids_finish, function in DMS Get IDs request
-qmi_client_dms_get_ids_finish, function in DMS Get IDs +qmi_client_dms_get_manufacturer, function in DMS Get Manufacturer request
-qmi_client_dms_get_manufacturer, function in DMS Get Manufacturer +qmi_client_dms_get_manufacturer_finish, function in DMS Get Manufacturer request
-qmi_client_dms_get_manufacturer_finish, function in DMS Get Manufacturer +qmi_client_dms_get_model, function in DMS Get Model request
-qmi_client_dms_get_model, function in DMS Get Model +qmi_client_dms_get_model_finish, function in DMS Get Model request
-qmi_client_dms_get_model_finish, function in DMS Get Model +qmi_client_dms_get_msisdn, function in DMS Get MSISDN request
-qmi_client_dms_get_msisdn, function in DMS Get MSISDN +qmi_client_dms_get_msisdn_finish, function in DMS Get MSISDN request
-qmi_client_dms_get_msisdn_finish, function in DMS Get MSISDN +qmi_client_dms_get_operating_mode, function in DMS Get Operating Mode request
-qmi_client_dms_get_operating_mode, function in DMS Get Operating Mode +qmi_client_dms_get_operating_mode_finish, function in DMS Get Operating Mode request
-qmi_client_dms_get_operating_mode_finish, function in DMS Get Operating Mode +qmi_client_dms_get_power_state, function in DMS Get Power State request
-qmi_client_dms_get_power_state, function in DMS Get Power State +qmi_client_dms_get_power_state_finish, function in DMS Get Power State request
-qmi_client_dms_get_power_state_finish, function in DMS Get Power State +qmi_client_dms_get_prl_version, function in DMS Get PRL Version request
-qmi_client_dms_get_prl_version, function in DMS Get PRL Version +qmi_client_dms_get_prl_version_finish, function in DMS Get PRL Version request
-qmi_client_dms_get_prl_version_finish, function in DMS Get PRL Version +qmi_client_dms_get_revision, function in DMS Get Revision request
-qmi_client_dms_get_revision, function in DMS Get Revision +qmi_client_dms_get_revision_finish, function in DMS Get Revision request
-qmi_client_dms_get_revision_finish, function in DMS Get Revision +qmi_client_dms_get_software_version, function in DMS Get Software Version request
-qmi_client_dms_get_software_version, function in DMS Get Software Version +qmi_client_dms_get_software_version_finish, function in DMS Get Software Version request
-qmi_client_dms_get_software_version_finish, function in DMS Get Software Version +qmi_client_dms_get_stored_image_info, function in DMS Get Stored Image Info request
-qmi_client_dms_get_stored_image_info, function in DMS Get Stored Image Info +qmi_client_dms_get_stored_image_info_finish, function in DMS Get Stored Image Info request
-qmi_client_dms_get_stored_image_info_finish, function in DMS Get Stored Image Info +qmi_client_dms_get_supported_messages, function in DMS Get Supported Messages request
-qmi_client_dms_get_supported_messages, function in DMS Get Supported Messages +qmi_client_dms_get_supported_messages_finish, function in DMS Get Supported Messages request
-qmi_client_dms_get_supported_messages_finish, function in DMS Get Supported Messages +qmi_client_dms_get_time, function in DMS Get Time request
-qmi_client_dms_get_time, function in DMS Get Time +qmi_client_dms_get_time_finish, function in DMS Get Time request
-qmi_client_dms_get_time_finish, function in DMS Get Time +qmi_client_dms_get_user_lock_state, function in DMS Get User Lock State request
-qmi_client_dms_get_user_lock_state, function in DMS Get User Lock State +qmi_client_dms_get_user_lock_state_finish, function in DMS Get User Lock State request
-qmi_client_dms_get_user_lock_state_finish, function in DMS Get User Lock State +qmi_client_dms_hp_change_device_mode, function in DMS HP Change Device Mode request
-qmi_client_dms_hp_change_device_mode, function in DMS HP Change Device Mode +qmi_client_dms_hp_change_device_mode_finish, function in DMS HP Change Device Mode request
-qmi_client_dms_hp_change_device_mode_finish, function in DMS HP Change Device Mode +qmi_client_dms_list_stored_images, function in DMS List Stored Images request
-qmi_client_dms_list_stored_images, function in DMS List Stored Images +qmi_client_dms_list_stored_images_finish, function in DMS List Stored Images request
-qmi_client_dms_list_stored_images_finish, function in DMS List Stored Images +qmi_client_dms_read_eri_file, function in DMS Read ERI File request
-qmi_client_dms_read_eri_file, function in DMS Read ERI File +qmi_client_dms_read_eri_file_finish, function in DMS Read ERI File request
-qmi_client_dms_read_eri_file_finish, function in DMS Read ERI File +qmi_client_dms_read_user_data, function in DMS Read User Data request
-qmi_client_dms_read_user_data, function in DMS Read User Data +qmi_client_dms_read_user_data_finish, function in DMS Read User Data request
-qmi_client_dms_read_user_data_finish, function in DMS Read User Data +qmi_client_dms_reset, function in DMS Reset request
-qmi_client_dms_reset, function in DMS Reset +qmi_client_dms_reset_finish, function in DMS Reset request
-qmi_client_dms_reset_finish, function in DMS Reset +qmi_client_dms_restore_factory_defaults, function in DMS Restore Factory Defaults request
-qmi_client_dms_restore_factory_defaults, function in DMS Restore Factory Defaults +qmi_client_dms_restore_factory_defaults_finish, function in DMS Restore Factory Defaults request
-qmi_client_dms_restore_factory_defaults_finish, function in DMS Restore Factory Defaults +qmi_client_dms_set_alt_net_config, function in DMS Set Alt Net Config request
-qmi_client_dms_set_alt_net_config, function in DMS Set Alt Net Config +qmi_client_dms_set_alt_net_config_finish, function in DMS Set Alt Net Config request
-qmi_client_dms_set_alt_net_config_finish, function in DMS Set Alt Net Config +qmi_client_dms_set_boot_image_download_mode, function in DMS Set Boot Image Download Mode request
-qmi_client_dms_set_boot_image_download_mode, function in DMS Set Boot Image Download Mode +qmi_client_dms_set_boot_image_download_mode_finish, function in DMS Set Boot Image Download Mode request
-qmi_client_dms_set_boot_image_download_mode_finish, function in DMS Set Boot Image Download Mode +qmi_client_dms_set_event_report, function in DMS Set Event Report request
-qmi_client_dms_set_event_report, function in DMS Set Event Report +qmi_client_dms_set_event_report_finish, function in DMS Set Event Report request
-qmi_client_dms_set_event_report_finish, function in DMS Set Event Report +qmi_client_dms_set_fcc_authentication, function in DMS Set FCC Authentication request
-qmi_client_dms_set_fcc_authentication, function in DMS Set FCC Authentication +qmi_client_dms_set_fcc_authentication_finish, function in DMS Set FCC Authentication request
-qmi_client_dms_set_fcc_authentication_finish, function in DMS Set FCC Authentication +qmi_client_dms_set_firmware_id, function in DMS Set Firmware ID request
-qmi_client_dms_set_firmware_id, function in DMS Set Firmware ID +qmi_client_dms_set_firmware_id_finish, function in DMS Set Firmware ID request
-qmi_client_dms_set_firmware_id_finish, function in DMS Set Firmware ID +qmi_client_dms_set_firmware_preference, function in DMS Set Firmware Preference request
-qmi_client_dms_set_firmware_preference, function in DMS Set Firmware Preference +qmi_client_dms_set_firmware_preference_finish, function in DMS Set Firmware Preference request
-qmi_client_dms_set_firmware_preference_finish, function in DMS Set Firmware Preference +qmi_client_dms_set_operating_mode, function in DMS Set Operating Mode request
-qmi_client_dms_set_operating_mode, function in DMS Set Operating Mode +qmi_client_dms_set_operating_mode_finish, function in DMS Set Operating Mode request
-qmi_client_dms_set_operating_mode_finish, function in DMS Set Operating Mode +qmi_client_dms_set_service_programming_code, function in DMS Set Service Programming Code request
-qmi_client_dms_set_service_programming_code, function in DMS Set Service Programming Code +qmi_client_dms_set_service_programming_code_finish, function in DMS Set Service Programming Code request
-qmi_client_dms_set_service_programming_code_finish, function in DMS Set Service Programming Code +qmi_client_dms_set_time, function in DMS Set Time request
-qmi_client_dms_set_time, function in DMS Set Time +qmi_client_dms_set_time_finish, function in DMS Set Time request
-qmi_client_dms_set_time_finish, function in DMS Set Time +qmi_client_dms_set_user_lock_code, function in DMS Set User Lock Code request
-qmi_client_dms_set_user_lock_code, function in DMS Set User Lock Code +qmi_client_dms_set_user_lock_code_finish, function in DMS Set User Lock Code request
-qmi_client_dms_set_user_lock_code_finish, function in DMS Set User Lock Code +qmi_client_dms_set_user_lock_state, function in DMS Set User Lock State request
-qmi_client_dms_set_user_lock_state, function in DMS Set User Lock State +qmi_client_dms_set_user_lock_state_finish, function in DMS Set User Lock State request
-qmi_client_dms_set_user_lock_state_finish, function in DMS Set User Lock State +qmi_client_dms_swi_get_current_firmware, function in DMS Swi Get Current Firmware request
-qmi_client_dms_swi_get_current_firmware, function in DMS Swi Get Current Firmware +qmi_client_dms_swi_get_current_firmware_finish, function in DMS Swi Get Current Firmware request
-qmi_client_dms_swi_get_current_firmware_finish, function in DMS Swi Get Current Firmware +qmi_client_dms_swi_get_usb_composition, function in DMS Swi Get USB Composition request
-qmi_client_dms_uim_change_pin, function in DMS UIM Change PIN +qmi_client_dms_swi_get_usb_composition_finish, function in DMS Swi Get USB Composition request
-qmi_client_dms_uim_change_pin_finish, function in DMS UIM Change PIN +qmi_client_dms_swi_set_usb_composition, function in DMS Swi Set USB Composition request
-qmi_client_dms_uim_get_ck_status, function in DMS UIM Get CK Status +qmi_client_dms_swi_set_usb_composition_finish, function in DMS Swi Set USB Composition request
-qmi_client_dms_uim_get_ck_status_finish, function in DMS UIM Get CK Status +qmi_client_dms_uim_change_pin, function in DMS UIM Change PIN request
-qmi_client_dms_uim_get_iccid, function in DMS UIM Get ICCID +qmi_client_dms_uim_change_pin_finish, function in DMS UIM Change PIN request
-qmi_client_dms_uim_get_iccid_finish, function in DMS UIM Get ICCID +qmi_client_dms_uim_get_ck_status, function in DMS UIM Get CK Status request
-qmi_client_dms_uim_get_imsi, function in DMS UIM Get IMSI +qmi_client_dms_uim_get_ck_status_finish, function in DMS UIM Get CK Status request
-qmi_client_dms_uim_get_imsi_finish, function in DMS UIM Get IMSI +qmi_client_dms_uim_get_iccid, function in DMS UIM Get ICCID request
-qmi_client_dms_uim_get_pin_status, function in DMS UIM Get PIN Status +qmi_client_dms_uim_get_iccid_finish, function in DMS UIM Get ICCID request
-qmi_client_dms_uim_get_pin_status_finish, function in DMS UIM Get PIN Status +qmi_client_dms_uim_get_imsi, function in DMS UIM Get IMSI request
-qmi_client_dms_uim_get_state, function in DMS UIM Get State +qmi_client_dms_uim_get_imsi_finish, function in DMS UIM Get IMSI request
-qmi_client_dms_uim_get_state_finish, function in DMS UIM Get State +qmi_client_dms_uim_get_pin_status, function in DMS UIM Get PIN Status request
-qmi_client_dms_uim_set_ck_protection, function in DMS UIM Set CK Protection +qmi_client_dms_uim_get_pin_status_finish, function in DMS UIM Get PIN Status request
-qmi_client_dms_uim_set_ck_protection_finish, function in DMS UIM Set CK Protection +qmi_client_dms_uim_get_state, function in DMS UIM Get State request
-qmi_client_dms_uim_set_pin_protection, function in DMS UIM Set PIN Protection +qmi_client_dms_uim_get_state_finish, function in DMS UIM Get State request
-qmi_client_dms_uim_set_pin_protection_finish, function in DMS UIM Set PIN Protection +qmi_client_dms_uim_set_ck_protection, function in DMS UIM Set CK Protection request
-qmi_client_dms_uim_unblock_ck, function in DMS UIM Unblock CK +qmi_client_dms_uim_set_ck_protection_finish, function in DMS UIM Set CK Protection request
-qmi_client_dms_uim_unblock_ck_finish, function in DMS UIM Unblock CK +qmi_client_dms_uim_set_pin_protection, function in DMS UIM Set PIN Protection request
-qmi_client_dms_uim_unblock_pin, function in DMS UIM Unblock PIN +qmi_client_dms_uim_set_pin_protection_finish, function in DMS UIM Set PIN Protection request
-qmi_client_dms_uim_unblock_pin_finish, function in DMS UIM Unblock PIN +qmi_client_dms_uim_unblock_ck, function in DMS UIM Unblock CK request
-qmi_client_dms_uim_verify_pin, function in DMS UIM Verify PIN +qmi_client_dms_uim_unblock_ck_finish, function in DMS UIM Unblock CK request
-qmi_client_dms_uim_verify_pin_finish, function in DMS UIM Verify PIN +qmi_client_dms_uim_unblock_pin, function in DMS UIM Unblock PIN request
-qmi_client_dms_validate_service_programming_code, function in DMS Validate Service Programming Code +qmi_client_dms_uim_unblock_pin_finish, function in DMS UIM Unblock PIN request
-qmi_client_dms_validate_service_programming_code_finish, function in DMS Validate Service Programming Code +qmi_client_dms_uim_verify_pin, function in DMS UIM Verify PIN request
-qmi_client_dms_write_user_data, function in DMS Write User Data +qmi_client_dms_uim_verify_pin_finish, function in DMS UIM Verify PIN request
-qmi_client_dms_write_user_data_finish, function in DMS Write User Data +qmi_client_dms_validate_service_programming_code, function in DMS Validate Service Programming Code request +
+
+
+qmi_client_dms_validate_service_programming_code_finish, function in DMS Validate Service Programming Code request +
+
+
+qmi_client_dms_write_user_data, function in DMS Write User Data request +
+
+
+qmi_client_dms_write_user_data_finish, function in DMS Write User Data request
@@ -686,459 +782,559 @@
-qmi_client_nas_config_signal_info, function in NAS Config Signal Info +qmi_client_is_valid, function in QmiClient +
+
+
+qmi_client_loc_delete_assistance_data, function in LOC Delete Assistance Data request +
+
+
+qmi_client_loc_delete_assistance_data_finish, function in LOC Delete Assistance Data request +
+
+
+qmi_client_loc_get_operation_mode, function in LOC Get Operation Mode request +
+
+
+qmi_client_loc_get_operation_mode_finish, function in LOC Get Operation Mode request +
+
+
+qmi_client_loc_get_predicted_orbits_data_source, function in LOC Get Predicted Orbits Data Source request +
+
+
+qmi_client_loc_get_predicted_orbits_data_source_finish, function in LOC Get Predicted Orbits Data Source request +
+
+
+qmi_client_loc_get_server, function in LOC Get Server request +
+
+
+qmi_client_loc_get_server_finish, function in LOC Get Server request +
+
+
+qmi_client_loc_inject_predicted_orbits_data, function in LOC Inject Predicted Orbits Data request +
+
+
+qmi_client_loc_inject_predicted_orbits_data_finish, function in LOC Inject Predicted Orbits Data request +
+
+
+qmi_client_loc_inject_xtra_data, function in LOC Inject Xtra Data request +
+
+
+qmi_client_loc_inject_xtra_data_finish, function in LOC Inject Xtra Data request +
+
+
+qmi_client_loc_register_events, function in LOC Register Events request +
+
+
+qmi_client_loc_register_events_finish, function in LOC Register Events request +
+
+
+qmi_client_loc_set_operation_mode, function in LOC Set Operation Mode request +
+
+
+qmi_client_loc_set_operation_mode_finish, function in LOC Set Operation Mode request +
+
+
+qmi_client_loc_set_server, function in LOC Set Server request +
+
+
+qmi_client_loc_set_server_finish, function in LOC Set Server request +
+
+
+qmi_client_loc_start, function in LOC Start request +
+
+
+qmi_client_loc_start_finish, function in LOC Start request +
+
+
+qmi_client_loc_stop, function in LOC Stop request +
+
+
+qmi_client_loc_stop_finish, function in LOC Stop request
-qmi_client_nas_config_signal_info_finish, function in NAS Config Signal Info +qmi_client_nas_attach_detach, function in NAS Attach Detach request
-qmi_client_nas_force_network_search, function in NAS Force Network Search +qmi_client_nas_attach_detach_finish, function in NAS Attach Detach request
-qmi_client_nas_force_network_search_finish, function in NAS Force Network Search +qmi_client_nas_config_signal_info, function in NAS Config Signal Info request
-qmi_client_nas_get_cdma_position_info, function in NAS Get CDMA Position Info +qmi_client_nas_config_signal_info_finish, function in NAS Config Signal Info request
-qmi_client_nas_get_cdma_position_info_finish, function in NAS Get CDMA Position Info +qmi_client_nas_force_network_search, function in NAS Force Network Search request
-qmi_client_nas_get_cell_location_info, function in NAS Get Cell Location Info +qmi_client_nas_force_network_search_finish, function in NAS Force Network Search request
-qmi_client_nas_get_cell_location_info_finish, function in NAS Get Cell Location Info +qmi_client_nas_get_cdma_position_info, function in NAS Get CDMA Position Info request
-qmi_client_nas_get_home_network, function in NAS Get Home Network +qmi_client_nas_get_cdma_position_info_finish, function in NAS Get CDMA Position Info request
-qmi_client_nas_get_home_network_finish, function in NAS Get Home Network +qmi_client_nas_get_cell_location_info, function in NAS Get Cell Location Info request
-qmi_client_nas_get_lte_cphy_ca_info, function in NAS Get LTE Cphy CA Info +qmi_client_nas_get_cell_location_info_finish, function in NAS Get Cell Location Info request
-qmi_client_nas_get_lte_cphy_ca_info_finish, function in NAS Get LTE Cphy CA Info +qmi_client_nas_get_home_network, function in NAS Get Home Network request
-qmi_client_nas_get_operator_name, function in NAS Get Operator Name +qmi_client_nas_get_home_network_finish, function in NAS Get Home Network request
-qmi_client_nas_get_operator_name_finish, function in NAS Get Operator Name +qmi_client_nas_get_lte_cphy_ca_info, function in NAS Get LTE Cphy CA Info request
-qmi_client_nas_get_rf_band_information, function in NAS Get RF Band Information +qmi_client_nas_get_lte_cphy_ca_info_finish, function in NAS Get LTE Cphy CA Info request
-qmi_client_nas_get_rf_band_information_finish, function in NAS Get RF Band Information +qmi_client_nas_get_operator_name, function in NAS Get Operator Name request
-qmi_client_nas_get_serving_system, function in NAS Get Serving System +qmi_client_nas_get_operator_name_finish, function in NAS Get Operator Name request
-qmi_client_nas_get_serving_system_finish, function in NAS Get Serving System +qmi_client_nas_get_rf_band_information, function in NAS Get RF Band Information request
-qmi_client_nas_get_signal_info, function in NAS Get Signal Info +qmi_client_nas_get_rf_band_information_finish, function in NAS Get RF Band Information request
-qmi_client_nas_get_signal_info_finish, function in NAS Get Signal Info +qmi_client_nas_get_serving_system, function in NAS Get Serving System request
-qmi_client_nas_get_signal_strength, function in NAS Get Signal Strength +qmi_client_nas_get_serving_system_finish, function in NAS Get Serving System request
-qmi_client_nas_get_signal_strength_finish, function in NAS Get Signal Strength +qmi_client_nas_get_signal_info, function in NAS Get Signal Info request
-qmi_client_nas_get_supported_messages, function in NAS Get Supported Messages +qmi_client_nas_get_signal_info_finish, function in NAS Get Signal Info request
-qmi_client_nas_get_supported_messages_finish, function in NAS Get Supported Messages +qmi_client_nas_get_signal_strength, function in NAS Get Signal Strength request
-qmi_client_nas_get_system_info, function in NAS Get System Info +qmi_client_nas_get_signal_strength_finish, function in NAS Get Signal Strength request
-qmi_client_nas_get_system_info_finish, function in NAS Get System Info +qmi_client_nas_get_supported_messages, function in NAS Get Supported Messages request
-qmi_client_nas_get_system_selection_preference, function in NAS Get System Selection Preference +qmi_client_nas_get_supported_messages_finish, function in NAS Get Supported Messages request
-qmi_client_nas_get_system_selection_preference_finish, function in NAS Get System Selection Preference +qmi_client_nas_get_system_info, function in NAS Get System Info request
-qmi_client_nas_get_technology_preference, function in NAS Get Technology Preference +qmi_client_nas_get_system_info_finish, function in NAS Get System Info request
-qmi_client_nas_get_technology_preference_finish, function in NAS Get Technology Preference +qmi_client_nas_get_system_selection_preference, function in NAS Get System Selection Preference request
-qmi_client_nas_get_tx_rx_info, function in NAS Get Tx Rx Info +qmi_client_nas_get_system_selection_preference_finish, function in NAS Get System Selection Preference request
-qmi_client_nas_get_tx_rx_info_finish, function in NAS Get Tx Rx Info +qmi_client_nas_get_technology_preference, function in NAS Get Technology Preference request
-qmi_client_nas_initiate_network_register, function in NAS Initiate Network Register +qmi_client_nas_get_technology_preference_finish, function in NAS Get Technology Preference request
-qmi_client_nas_initiate_network_register_finish, function in NAS Initiate Network Register +qmi_client_nas_get_tx_rx_info, function in NAS Get Tx Rx Info request
-qmi_client_nas_network_scan, function in NAS Network Scan +qmi_client_nas_get_tx_rx_info_finish, function in NAS Get Tx Rx Info request
-qmi_client_nas_network_scan_finish, function in NAS Network Scan +qmi_client_nas_initiate_network_register, function in NAS Initiate Network Register request
-qmi_client_nas_register_indications, function in NAS Register Indications +qmi_client_nas_initiate_network_register_finish, function in NAS Initiate Network Register request
-qmi_client_nas_register_indications_finish, function in NAS Register Indications +qmi_client_nas_network_scan, function in NAS Network Scan request
-qmi_client_nas_reset, function in NAS Reset +qmi_client_nas_network_scan_finish, function in NAS Network Scan request
-qmi_client_nas_reset_finish, function in NAS Reset +qmi_client_nas_register_indications, function in NAS Register Indications request
-qmi_client_nas_set_event_report, function in NAS Set Event Report +qmi_client_nas_register_indications_finish, function in NAS Register Indications request
-qmi_client_nas_set_event_report_finish, function in NAS Set Event Report +qmi_client_nas_reset, function in NAS Reset request
-qmi_client_nas_set_system_selection_preference, function in NAS Set System Selection Preference +qmi_client_nas_reset_finish, function in NAS Reset request
-qmi_client_nas_set_system_selection_preference_finish, function in NAS Set System Selection Preference +qmi_client_nas_set_event_report, function in NAS Set Event Report request
-qmi_client_nas_set_technology_preference, function in NAS Set Technology Preference +qmi_client_nas_set_event_report_finish, function in NAS Set Event Report request
-qmi_client_nas_set_technology_preference_finish, function in NAS Set Technology Preference +qmi_client_nas_set_system_selection_preference, function in NAS Set System Selection Preference request
-qmi_client_oma_cancel_session, function in OMA Cancel Session +qmi_client_nas_set_system_selection_preference_finish, function in NAS Set System Selection Preference request
-qmi_client_oma_cancel_session_finish, function in OMA Cancel Session +qmi_client_nas_set_technology_preference, function in NAS Set Technology Preference request
-qmi_client_oma_get_feature_setting, function in OMA Get Feature Setting +qmi_client_nas_set_technology_preference_finish, function in NAS Set Technology Preference request
-qmi_client_oma_get_feature_setting_finish, function in OMA Get Feature Setting +qmi_client_oma_cancel_session, function in OMA Cancel Session request
-qmi_client_oma_get_session_info, function in OMA Get Session Info +qmi_client_oma_cancel_session_finish, function in OMA Cancel Session request
-qmi_client_oma_get_session_info_finish, function in OMA Get Session Info +qmi_client_oma_get_feature_setting, function in OMA Get Feature Setting request
-qmi_client_oma_reset, function in OMA Reset +qmi_client_oma_get_feature_setting_finish, function in OMA Get Feature Setting request
-qmi_client_oma_reset_finish, function in OMA Reset +qmi_client_oma_get_session_info, function in OMA Get Session Info request
-qmi_client_oma_send_selection, function in OMA Send Selection +qmi_client_oma_get_session_info_finish, function in OMA Get Session Info request
-qmi_client_oma_send_selection_finish, function in OMA Send Selection +qmi_client_oma_reset, function in OMA Reset request
-qmi_client_oma_set_event_report, function in OMA Set Event Report +qmi_client_oma_reset_finish, function in OMA Reset request
-qmi_client_oma_set_event_report_finish, function in OMA Set Event Report +qmi_client_oma_send_selection, function in OMA Send Selection request
-qmi_client_oma_set_feature_setting, function in OMA Set Feature Setting +qmi_client_oma_send_selection_finish, function in OMA Send Selection request
-qmi_client_oma_set_feature_setting_finish, function in OMA Set Feature Setting +qmi_client_oma_set_event_report, function in OMA Set Event Report request
-qmi_client_oma_start_session, function in OMA Start Session +qmi_client_oma_set_event_report_finish, function in OMA Set Event Report request
-qmi_client_oma_start_session_finish, function in OMA Start Session +qmi_client_oma_set_feature_setting, function in OMA Set Feature Setting request
-qmi_client_pbm_get_all_capabilities, function in PBM Get All Capabilities +qmi_client_oma_set_feature_setting_finish, function in OMA Set Feature Setting request
-qmi_client_pbm_get_all_capabilities_finish, function in PBM Get All Capabilities +qmi_client_oma_start_session, function in OMA Start Session request
-qmi_client_pbm_get_capabilities, function in PBM Get Capabilities +qmi_client_oma_start_session_finish, function in OMA Start Session request
-qmi_client_pbm_get_capabilities_finish, function in PBM Get Capabilities +qmi_client_pbm_get_all_capabilities, function in PBM Get All Capabilities request
-qmi_client_pbm_indication_register, function in PBM Indication Register +qmi_client_pbm_get_all_capabilities_finish, function in PBM Get All Capabilities request
-qmi_client_pbm_indication_register_finish, function in PBM Indication Register +qmi_client_pbm_get_capabilities, function in PBM Get Capabilities request
-qmi_client_pdc_activate_config, function in PDC Activate Config +qmi_client_pbm_get_capabilities_finish, function in PBM Get Capabilities request
-qmi_client_pdc_activate_config_finish, function in PDC Activate Config +qmi_client_pbm_indication_register, function in PBM Indication Register request
-qmi_client_pdc_config_change, function in PDC Config Change +qmi_client_pbm_indication_register_finish, function in PBM Indication Register request
-qmi_client_pdc_config_change_finish, function in PDC Config Change +qmi_client_pdc_activate_config, function in PDC Activate Config request
-qmi_client_pdc_deactivate_config, function in PDC Deactivate Config +qmi_client_pdc_activate_config_finish, function in PDC Activate Config request
-qmi_client_pdc_deactivate_config_finish, function in PDC Deactivate Config +qmi_client_pdc_config_change, function in PDC Config Change request
-qmi_client_pdc_delete_config, function in PDC Delete Config +qmi_client_pdc_config_change_finish, function in PDC Config Change request
-qmi_client_pdc_delete_config_finish, function in PDC Delete Config +qmi_client_pdc_deactivate_config, function in PDC Deactivate Config request
-qmi_client_pdc_get_config_info, function in PDC Get Config Info +qmi_client_pdc_deactivate_config_finish, function in PDC Deactivate Config request
-qmi_client_pdc_get_config_info_finish, function in PDC Get Config Info +qmi_client_pdc_delete_config, function in PDC Delete Config request
-qmi_client_pdc_get_config_limits, function in PDC Get Config Limits +qmi_client_pdc_delete_config_finish, function in PDC Delete Config request
-qmi_client_pdc_get_config_limits_finish, function in PDC Get Config Limits +qmi_client_pdc_get_config_info, function in PDC Get Config Info request
-qmi_client_pdc_get_default_config_info, function in PDC Get Default Config Info +qmi_client_pdc_get_config_info_finish, function in PDC Get Config Info request
-qmi_client_pdc_get_default_config_info_finish, function in PDC Get Default Config Info +qmi_client_pdc_get_config_limits, function in PDC Get Config Limits request
-qmi_client_pdc_get_selected_config, function in PDC Get Selected Config +qmi_client_pdc_get_config_limits_finish, function in PDC Get Config Limits request
-qmi_client_pdc_get_selected_config_finish, function in PDC Get Selected Config +qmi_client_pdc_get_default_config_info, function in PDC Get Default Config Info request
-qmi_client_pdc_list_configs, function in PDC List Configs +qmi_client_pdc_get_default_config_info_finish, function in PDC Get Default Config Info request
-qmi_client_pdc_list_configs_finish, function in PDC List Configs +qmi_client_pdc_get_selected_config, function in PDC Get Selected Config request
-qmi_client_pdc_load_config, function in PDC Load Config +qmi_client_pdc_get_selected_config_finish, function in PDC Get Selected Config request
-qmi_client_pdc_load_config_finish, function in PDC Load Config +qmi_client_pdc_list_configs, function in PDC List Configs request
-qmi_client_pdc_register, function in PDC Register +qmi_client_pdc_list_configs_finish, function in PDC List Configs request
-qmi_client_pdc_register_finish, function in PDC Register +qmi_client_pdc_load_config, function in PDC Load Config request
-qmi_client_pdc_reset, function in PDC Reset +qmi_client_pdc_load_config_finish, function in PDC Load Config request
-qmi_client_pdc_reset_finish, function in PDC Reset +qmi_client_pdc_register, function in PDC Register request
-qmi_client_pdc_set_selected_config, function in PDC Set Selected Config +qmi_client_pdc_register_finish, function in PDC Register request
-qmi_client_pdc_set_selected_config_finish, function in PDC Set Selected Config +qmi_client_pdc_reset, function in PDC Reset request
-qmi_client_pds_get_agps_config, function in PDS Get AGPS Config +qmi_client_pdc_reset_finish, function in PDC Reset request
-qmi_client_pds_get_agps_config_finish, function in PDS Get AGPS Config +qmi_client_pdc_set_selected_config, function in PDC Set Selected Config request
-qmi_client_pds_get_auto_tracking_state, function in PDS Get Auto Tracking State +qmi_client_pdc_set_selected_config_finish, function in PDC Set Selected Config request
-qmi_client_pds_get_auto_tracking_state_finish, function in PDS Get Auto Tracking State +qmi_client_pds_get_agps_config, function in PDS Get AGPS Config request
-qmi_client_pds_get_default_tracking_session, function in PDS Get Default Tracking Session +qmi_client_pds_get_agps_config_finish, function in PDS Get AGPS Config request
-qmi_client_pds_get_default_tracking_session_finish, function in PDS Get Default Tracking Session +qmi_client_pds_get_auto_tracking_state, function in PDS Get Auto Tracking State request
-qmi_client_pds_get_gps_service_state, function in PDS Get GPS Service State +qmi_client_pds_get_auto_tracking_state_finish, function in PDS Get Auto Tracking State request
-qmi_client_pds_get_gps_service_state_finish, function in PDS Get GPS Service State +qmi_client_pds_get_default_tracking_session, function in PDS Get Default Tracking Session request
-qmi_client_pds_reset, function in PDS Reset +qmi_client_pds_get_default_tracking_session_finish, function in PDS Get Default Tracking Session request
-qmi_client_pds_reset_finish, function in PDS Reset +qmi_client_pds_get_gps_service_state, function in PDS Get GPS Service State request
-qmi_client_pds_set_agps_config, function in PDS Set AGPS Config +qmi_client_pds_get_gps_service_state_finish, function in PDS Get GPS Service State request
-qmi_client_pds_set_agps_config_finish, function in PDS Set AGPS Config +qmi_client_pds_reset, function in PDS Reset request
-qmi_client_pds_set_auto_tracking_state, function in PDS Set Auto Tracking State +qmi_client_pds_reset_finish, function in PDS Reset request
-qmi_client_pds_set_auto_tracking_state_finish, function in PDS Set Auto Tracking State +qmi_client_pds_set_agps_config, function in PDS Set AGPS Config request
-qmi_client_pds_set_default_tracking_session, function in PDS Set Default Tracking Session +qmi_client_pds_set_agps_config_finish, function in PDS Set AGPS Config request
-qmi_client_pds_set_default_tracking_session_finish, function in PDS Set Default Tracking Session +qmi_client_pds_set_auto_tracking_state, function in PDS Set Auto Tracking State request
-qmi_client_pds_set_event_report, function in PDS Set Event Report +qmi_client_pds_set_auto_tracking_state_finish, function in PDS Set Auto Tracking State request
-qmi_client_pds_set_event_report_finish, function in PDS Set Event Report +qmi_client_pds_set_default_tracking_session, function in PDS Set Default Tracking Session request
-qmi_client_pds_set_gps_service_state, function in PDS Set GPS Service State +qmi_client_pds_set_default_tracking_session_finish, function in PDS Set Default Tracking Session request
-qmi_client_pds_set_gps_service_state_finish, function in PDS Set GPS Service State +qmi_client_pds_set_event_report, function in PDS Set Event Report request +
+
+
+qmi_client_pds_set_event_report_finish, function in PDS Set Event Report request +
+
+
+qmi_client_pds_set_gps_service_state, function in PDS Set GPS Service State request +
+
+
+qmi_client_pds_set_gps_service_state_finish, function in PDS Set GPS Service State request
@@ -1146,103 +1342,139 @@
+qmi_client_qos_get_flow_status, function in QOS Get Flow Status request +
+
+
+qmi_client_qos_get_flow_status_finish, function in QOS Get Flow Status request +
+
+
+qmi_client_qos_get_network_status, function in QOS Get Network Status request +
+
+
+qmi_client_qos_get_network_status_finish, function in QOS Get Network Status request +
+
+
+qmi_client_qos_reset, function in QOS Reset request +
+
+
+qmi_client_qos_reset_finish, function in QOS Reset request +
+
+
+qmi_client_qos_swi_read_data_stats, function in QOS Swi Read Data Stats request +
+
+
+qmi_client_qos_swi_read_data_stats_finish, function in QOS Swi Read Data Stats request +
+
+
QMI_CLIENT_SERVICE, macro in QmiClient
-qmi_client_uim_change_pin, function in UIM Change PIN +qmi_client_uim_change_pin, function in UIM Change PIN request +
+
+
+qmi_client_uim_change_pin_finish, function in UIM Change PIN request
-qmi_client_uim_change_pin_finish, function in UIM Change PIN +qmi_client_uim_get_card_status, function in UIM Get Card Status request
-qmi_client_uim_get_card_status, function in UIM Get Card Status +qmi_client_uim_get_card_status_finish, function in UIM Get Card Status request
-qmi_client_uim_get_card_status_finish, function in UIM Get Card Status +qmi_client_uim_get_file_attributes, function in UIM Get File Attributes request
-qmi_client_uim_get_file_attributes, function in UIM Get File Attributes +qmi_client_uim_get_file_attributes_finish, function in UIM Get File Attributes request
-qmi_client_uim_get_file_attributes_finish, function in UIM Get File Attributes +qmi_client_uim_get_supported_messages, function in UIM Get Supported Messages request
-qmi_client_uim_get_supported_messages, function in UIM Get Supported Messages +qmi_client_uim_get_supported_messages_finish, function in UIM Get Supported Messages request
-qmi_client_uim_get_supported_messages_finish, function in UIM Get Supported Messages +qmi_client_uim_power_off_sim, function in UIM Power Off SIM request
-qmi_client_uim_power_off_sim, function in UIM Power Off SIM +qmi_client_uim_power_off_sim_finish, function in UIM Power Off SIM request
-qmi_client_uim_power_off_sim_finish, function in UIM Power Off SIM +qmi_client_uim_power_on_sim, function in UIM Power On SIM request
-qmi_client_uim_power_on_sim, function in UIM Power On SIM +qmi_client_uim_power_on_sim_finish, function in UIM Power On SIM request
-qmi_client_uim_power_on_sim_finish, function in UIM Power On SIM +qmi_client_uim_read_record, function in UIM Read Record request
-qmi_client_uim_read_record, function in UIM Read Record +qmi_client_uim_read_record_finish, function in UIM Read Record request
-qmi_client_uim_read_record_finish, function in UIM Read Record +qmi_client_uim_read_transparent, function in UIM Read Transparent request
-qmi_client_uim_read_transparent, function in UIM Read Transparent +qmi_client_uim_read_transparent_finish, function in UIM Read Transparent request
-qmi_client_uim_read_transparent_finish, function in UIM Read Transparent +qmi_client_uim_reset, function in UIM Reset request
-qmi_client_uim_reset, function in UIM Reset +qmi_client_uim_reset_finish, function in UIM Reset request
-qmi_client_uim_reset_finish, function in UIM Reset +qmi_client_uim_set_pin_protection, function in UIM Set PIN Protection request
-qmi_client_uim_set_pin_protection, function in UIM Set PIN Protection +qmi_client_uim_set_pin_protection_finish, function in UIM Set PIN Protection request
-qmi_client_uim_set_pin_protection_finish, function in UIM Set PIN Protection +qmi_client_uim_unblock_pin, function in UIM Unblock PIN request
-qmi_client_uim_unblock_pin, function in UIM Unblock PIN +qmi_client_uim_unblock_pin_finish, function in UIM Unblock PIN request
-qmi_client_uim_unblock_pin_finish, function in UIM Unblock PIN +qmi_client_uim_verify_pin, function in UIM Verify PIN request
-qmi_client_uim_verify_pin, function in UIM Verify PIN +qmi_client_uim_verify_pin_finish, function in UIM Verify PIN request
-qmi_client_uim_verify_pin_finish, function in UIM Verify PIN +QMI_CLIENT_VALID, macro in QmiClient
@@ -1254,367 +1486,399 @@
-qmi_client_voice_answer_call, function in VOICE Answer Call +qmi_client_voice_answer_call, function in VOICE Answer Call request
-qmi_client_voice_answer_call_finish, function in VOICE Answer Call +qmi_client_voice_answer_call_finish, function in VOICE Answer Call request
-qmi_client_voice_dial_call, function in VOICE Dial Call +qmi_client_voice_dial_call, function in VOICE Dial Call request
-qmi_client_voice_dial_call_finish, function in VOICE Dial Call +qmi_client_voice_dial_call_finish, function in VOICE Dial Call request
-qmi_client_voice_end_call, function in VOICE End Call +qmi_client_voice_end_call, function in VOICE End Call request
-qmi_client_voice_end_call_finish, function in VOICE End Call +qmi_client_voice_end_call_finish, function in VOICE End Call request
-qmi_client_voice_get_config, function in VOICE Get Config +qmi_client_voice_get_config, function in VOICE Get Config request
-qmi_client_voice_get_config_finish, function in VOICE Get Config +qmi_client_voice_get_config_finish, function in VOICE Get Config request
-qmi_client_voice_get_supported_messages, function in VOICE Get Supported Messages +qmi_client_voice_get_supported_messages, function in VOICE Get Supported Messages request
-qmi_client_voice_get_supported_messages_finish, function in VOICE Get Supported Messages +qmi_client_voice_get_supported_messages_finish, function in VOICE Get Supported Messages request
-qmi_client_wda_get_data_format, function in WDA Get Data Format +qmi_client_wda_get_data_format, function in WDA Get Data Format request
-qmi_client_wda_get_data_format_finish, function in WDA Get Data Format +qmi_client_wda_get_data_format_finish, function in WDA Get Data Format request
-qmi_client_wda_get_supported_messages, function in WDA Get Supported Messages +qmi_client_wda_get_supported_messages, function in WDA Get Supported Messages request
-qmi_client_wda_get_supported_messages_finish, function in WDA Get Supported Messages +qmi_client_wda_get_supported_messages_finish, function in WDA Get Supported Messages request
-qmi_client_wda_set_data_format, function in WDA Set Data Format +qmi_client_wda_set_data_format, function in WDA Set Data Format request
-qmi_client_wda_set_data_format_finish, function in WDA Set Data Format +qmi_client_wda_set_data_format_finish, function in WDA Set Data Format request
-qmi_client_wds_bind_mux_data_port, function in WDS Bind Mux Data Port +qmi_client_wds_bind_mux_data_port, function in WDS Bind Mux Data Port request
-qmi_client_wds_bind_mux_data_port_finish, function in WDS Bind Mux Data Port +qmi_client_wds_bind_mux_data_port_finish, function in WDS Bind Mux Data Port request
-qmi_client_wds_create_profile, function in WDS Create Profile +qmi_client_wds_create_profile, function in WDS Create Profile request
-qmi_client_wds_create_profile_finish, function in WDS Create Profile +qmi_client_wds_create_profile_finish, function in WDS Create Profile request
-qmi_client_wds_delete_profile, function in WDS Delete Profile +qmi_client_wds_delete_profile, function in WDS Delete Profile request
-qmi_client_wds_delete_profile_finish, function in WDS Delete Profile +qmi_client_wds_delete_profile_finish, function in WDS Delete Profile request
-qmi_client_wds_get_autoconnect_settings, function in WDS Get Autoconnect Settings +qmi_client_wds_get_autoconnect_settings, function in WDS Get Autoconnect Settings request
-qmi_client_wds_get_autoconnect_settings_finish, function in WDS Get Autoconnect Settings +qmi_client_wds_get_autoconnect_settings_finish, function in WDS Get Autoconnect Settings request
-qmi_client_wds_get_current_data_bearer_technology, function in WDS Get Current Data Bearer Technology +qmi_client_wds_get_channel_rates, function in WDS Get Channel Rates request
-qmi_client_wds_get_current_data_bearer_technology_finish, function in WDS Get Current Data Bearer Technology +qmi_client_wds_get_channel_rates_finish, function in WDS Get Channel Rates request
-qmi_client_wds_get_current_settings, function in WDS Get Current Settings +qmi_client_wds_get_current_data_bearer_technology, function in WDS Get Current Data Bearer Technology request
-qmi_client_wds_get_current_settings_finish, function in WDS Get Current Settings +qmi_client_wds_get_current_data_bearer_technology_finish, function in WDS Get Current Data Bearer Technology request
-qmi_client_wds_get_data_bearer_technology, function in WDS Get Data Bearer Technology +qmi_client_wds_get_current_settings, function in WDS Get Current Settings request
-qmi_client_wds_get_data_bearer_technology_finish, function in WDS Get Data Bearer Technology +qmi_client_wds_get_current_settings_finish, function in WDS Get Current Settings request
-qmi_client_wds_get_default_settings, function in WDS Get Default Settings +qmi_client_wds_get_data_bearer_technology, function in WDS Get Data Bearer Technology request
-qmi_client_wds_get_default_settings_finish, function in WDS Get Default Settings +qmi_client_wds_get_data_bearer_technology_finish, function in WDS Get Data Bearer Technology request
-qmi_client_wds_get_dormancy_status, function in WDS Get Dormancy Status +qmi_client_wds_get_default_profile_num, function in WDS Get Default Profile Num request
-qmi_client_wds_get_dormancy_status_finish, function in WDS Get Dormancy Status +qmi_client_wds_get_default_profile_num_finish, function in WDS Get Default Profile Num request
-qmi_client_wds_get_packet_service_status, function in WDS Get Packet Service Status +qmi_client_wds_get_default_settings, function in WDS Get Default Settings request
-qmi_client_wds_get_packet_service_status_finish, function in WDS Get Packet Service Status +qmi_client_wds_get_default_settings_finish, function in WDS Get Default Settings request
-qmi_client_wds_get_packet_statistics, function in WDS Get Packet Statistics +qmi_client_wds_get_dormancy_status, function in WDS Get Dormancy Status request
-qmi_client_wds_get_packet_statistics_finish, function in WDS Get Packet Statistics +qmi_client_wds_get_dormancy_status_finish, function in WDS Get Dormancy Status request
-qmi_client_wds_get_pdn_throttle_info, function in WDS Get PDN Throttle Info +qmi_client_wds_get_packet_service_status, function in WDS Get Packet Service Status request
-qmi_client_wds_get_pdn_throttle_info_finish, function in WDS Get PDN Throttle Info +qmi_client_wds_get_packet_service_status_finish, function in WDS Get Packet Service Status request
-qmi_client_wds_get_profile_list, function in WDS Get Profile List +qmi_client_wds_get_packet_statistics, function in WDS Get Packet Statistics request
-qmi_client_wds_get_profile_list_finish, function in WDS Get Profile List +qmi_client_wds_get_packet_statistics_finish, function in WDS Get Packet Statistics request
-qmi_client_wds_get_profile_settings, function in WDS Get Profile Settings +qmi_client_wds_get_pdn_throttle_info, function in WDS Get PDN Throttle Info request
-qmi_client_wds_get_profile_settings_finish, function in WDS Get Profile Settings +qmi_client_wds_get_pdn_throttle_info_finish, function in WDS Get PDN Throttle Info request
-qmi_client_wds_get_supported_messages, function in WDS Get Supported Messages +qmi_client_wds_get_profile_list, function in WDS Get Profile List request
-qmi_client_wds_get_supported_messages_finish, function in WDS Get Supported Messages +qmi_client_wds_get_profile_list_finish, function in WDS Get Profile List request
-qmi_client_wds_go_active, function in WDS Go Active +qmi_client_wds_get_profile_settings, function in WDS Get Profile Settings request
-qmi_client_wds_go_active_finish, function in WDS Go Active +qmi_client_wds_get_profile_settings_finish, function in WDS Get Profile Settings request
-qmi_client_wds_go_dormant, function in WDS Go Dormant +qmi_client_wds_get_supported_messages, function in WDS Get Supported Messages request
-qmi_client_wds_go_dormant_finish, function in WDS Go Dormant +qmi_client_wds_get_supported_messages_finish, function in WDS Get Supported Messages request
-qmi_client_wds_modify_profile, function in WDS Modify Profile +qmi_client_wds_go_active, function in WDS Go Active request
-qmi_client_wds_modify_profile_finish, function in WDS Modify Profile +qmi_client_wds_go_active_finish, function in WDS Go Active request
-qmi_client_wds_reset, function in WDS Reset +qmi_client_wds_go_dormant, function in WDS Go Dormant request
-qmi_client_wds_reset_finish, function in WDS Reset +qmi_client_wds_go_dormant_finish, function in WDS Go Dormant request
-qmi_client_wds_set_autoconnect_settings, function in WDS Set Autoconnect Settings +qmi_client_wds_modify_profile, function in WDS Modify Profile request
-qmi_client_wds_set_autoconnect_settings_finish, function in WDS Set Autoconnect Settings +qmi_client_wds_modify_profile_finish, function in WDS Modify Profile request
-qmi_client_wds_set_event_report, function in WDS Set Event Report +qmi_client_wds_reset, function in WDS Reset request
-qmi_client_wds_set_event_report_finish, function in WDS Set Event Report +qmi_client_wds_reset_finish, function in WDS Reset request
-qmi_client_wds_set_ip_family, function in WDS Set IP Family +qmi_client_wds_set_autoconnect_settings, function in WDS Set Autoconnect Settings request
-qmi_client_wds_set_ip_family_finish, function in WDS Set IP Family +qmi_client_wds_set_autoconnect_settings_finish, function in WDS Set Autoconnect Settings request
-qmi_client_wds_start_network, function in WDS Start Network +qmi_client_wds_set_default_profile_num, function in WDS Set Default Profile Num request
-qmi_client_wds_start_network_finish, function in WDS Start Network +qmi_client_wds_set_default_profile_num_finish, function in WDS Set Default Profile Num request
-qmi_client_wds_stop_network, function in WDS Stop Network +qmi_client_wds_set_event_report, function in WDS Set Event Report request
-qmi_client_wds_stop_network_finish, function in WDS Stop Network +qmi_client_wds_set_event_report_finish, function in WDS Set Event Report request
-qmi_client_wms_delete, function in WMS Delete +qmi_client_wds_set_ip_family, function in WDS Set IP Family request
-qmi_client_wms_delete_finish, function in WMS Delete +qmi_client_wds_set_ip_family_finish, function in WDS Set IP Family request
-qmi_client_wms_get_message_protocol, function in WMS Get Message Protocol +qmi_client_wds_start_network, function in WDS Start Network request
-qmi_client_wms_get_message_protocol_finish, function in WMS Get Message Protocol +qmi_client_wds_start_network_finish, function in WDS Start Network request
-qmi_client_wms_get_routes, function in WMS Get Routes +qmi_client_wds_stop_network, function in WDS Stop Network request
-qmi_client_wms_get_routes_finish, function in WMS Get Routes +qmi_client_wds_stop_network_finish, function in WDS Stop Network request
-qmi_client_wms_get_supported_messages, function in WMS Get Supported Messages +qmi_client_wds_swi_create_profile_indexed, function in WDS Swi Create Profile Indexed request
-qmi_client_wms_get_supported_messages_finish, function in WMS Get Supported Messages +qmi_client_wds_swi_create_profile_indexed_finish, function in WDS Swi Create Profile Indexed request
-qmi_client_wms_list_messages, function in WMS List Messages +qmi_client_wms_delete, function in WMS Delete request
-qmi_client_wms_list_messages_finish, function in WMS List Messages +qmi_client_wms_delete_finish, function in WMS Delete request
-qmi_client_wms_modify_tag, function in WMS Modify Tag +qmi_client_wms_get_message_protocol, function in WMS Get Message Protocol request
-qmi_client_wms_modify_tag_finish, function in WMS Modify Tag +qmi_client_wms_get_message_protocol_finish, function in WMS Get Message Protocol request
-qmi_client_wms_raw_read, function in WMS Raw Read +qmi_client_wms_get_routes, function in WMS Get Routes request
-qmi_client_wms_raw_read_finish, function in WMS Raw Read +qmi_client_wms_get_routes_finish, function in WMS Get Routes request
-qmi_client_wms_raw_send, function in WMS Raw Send +qmi_client_wms_get_supported_messages, function in WMS Get Supported Messages request
-qmi_client_wms_raw_send_finish, function in WMS Raw Send +qmi_client_wms_get_supported_messages_finish, function in WMS Get Supported Messages request
-qmi_client_wms_raw_write, function in WMS Raw Write +qmi_client_wms_list_messages, function in WMS List Messages request
-qmi_client_wms_raw_write_finish, function in WMS Raw Write +qmi_client_wms_list_messages_finish, function in WMS List Messages request
-qmi_client_wms_reset, function in WMS Reset +qmi_client_wms_modify_tag, function in WMS Modify Tag request
-qmi_client_wms_reset_finish, function in WMS Reset +qmi_client_wms_modify_tag_finish, function in WMS Modify Tag request
-qmi_client_wms_send_from_memory_storage, function in WMS Send From Memory Storage +qmi_client_wms_raw_read, function in WMS Raw Read request
-qmi_client_wms_send_from_memory_storage_finish, function in WMS Send From Memory Storage +qmi_client_wms_raw_read_finish, function in WMS Raw Read request
-qmi_client_wms_set_event_report, function in WMS Set Event Report +qmi_client_wms_raw_send, function in WMS Raw Send request
-qmi_client_wms_set_event_report_finish, function in WMS Set Event Report +qmi_client_wms_raw_send_finish, function in WMS Raw Send request
-qmi_client_wms_set_routes, function in WMS Set Routes +qmi_client_wms_raw_write, function in WMS Raw Write request
-qmi_client_wms_set_routes_finish, function in WMS Set Routes +qmi_client_wms_raw_write_finish, function in WMS Raw Write request
-QmiConfigTypeAndId, struct in PDC Config Change +qmi_client_wms_reset, function in WMS Reset request +
+
+
+qmi_client_wms_reset_finish, function in WMS Reset request +
+
+
+qmi_client_wms_send_from_memory_storage, function in WMS Send From Memory Storage request +
+
+
+qmi_client_wms_send_from_memory_storage_finish, function in WMS Send From Memory Storage request +
+
+
+qmi_client_wms_set_event_report, function in WMS Set Event Report request +
+
+
+qmi_client_wms_set_event_report_finish, function in WMS Set Event Report request +
+
+
+qmi_client_wms_set_routes, function in WMS Set Routes request +
+
+
+qmi_client_wms_set_routes_finish, function in WMS Set Routes request +
+
+
+QmiConfigTypeAndId, struct in PDC Config Change request
@@ -1639,6 +1903,10 @@
+QmiDevice::device-removed, object signal in QmiDevice +
+
+
QmiDevice::indication, object signal in QmiDevice
@@ -1683,7 +1951,7 @@
-qmi_device_close, function in QmiDevice +qmi_device_close, function in Deprecated interface
@@ -1811,6 +2079,10 @@
+QMI_DEVICE_SIGNAL_REMOVED, macro in QmiDevice +
+
+
QMI_DEVICE_WWAN_IFACE, macro in QmiDevice
@@ -1863,6 +2135,10 @@
+QmiDmsSwiUsbComposition, enum in DMS enumerations and flags +
+
+
QmiDmsTimeReferenceType, enum in DMS enumerations and flags
@@ -1939,6 +2215,14 @@
+qmi_dms_swi_usb_composition_get_description, function in DMS enumerations and flags +
+
+
+qmi_dms_swi_usb_composition_get_string, function in DMS enumerations and flags +
+
+
qmi_dms_time_reference_type_get_string, function in DMS enumerations and flags
@@ -1973,903 +2257,1520 @@

I

-QmiIndicationDmsEventReportOutput, struct in DMS Event Report +QmiIndicationDmsEventReportOutput, struct in DMS Event Report indication +
+
+
+QmiIndicationLocDeleteAssistanceDataOutput, struct in LOC Delete Assistance Data indication +
+
+
+QmiIndicationLocEngineStateOutput, struct in LOC Engine State indication +
+
+
+QmiIndicationLocFixRecurrenceTypeOutput, struct in LOC Fix Recurrence Type indication +
+
+
+QmiIndicationLocGetOperationModeOutput, struct in LOC Get Operation Mode indication +
+
+
+QmiIndicationLocGetPredictedOrbitsDataSourceOutput, struct in LOC Get Predicted Orbits Data Source indication +
+
+
+QmiIndicationLocGetServerOutput, struct in LOC Get Server indication +
+
+
+QmiIndicationLocGnssSvInfoOutput, struct in LOC GNSS Sv Info indication +
+
+
+QmiIndicationLocGnssSvInfoOutputListElement, struct in LOC GNSS Sv Info indication +
+
+
+QmiIndicationLocInjectPredictedOrbitsDataOutput, struct in LOC Inject Predicted Orbits Data indication +
+
+
+QmiIndicationLocInjectXtraDataOutput, struct in LOC Inject Xtra Data indication +
+
+
+QmiIndicationLocNmeaOutput, struct in LOC NMEA indication +
+
+
+QmiIndicationLocPositionReportOutput, struct in LOC Position Report indication +
+
+
+QmiIndicationLocPositionReportOutputDilutionOfPrecision, struct in LOC Position Report indication +
+
+
+QmiIndicationLocPositionReportOutputGpsTime, struct in LOC Position Report indication +
+
+
+QmiIndicationLocSetOperationModeOutput, struct in LOC Set Operation Mode indication +
+
+
+QmiIndicationLocSetServerOutput, struct in LOC Set Server indication +
+
+
+QmiIndicationNasEventReportOutput, struct in NAS Event Report indication +
+
+
+QmiIndicationNasEventReportOutputRfBandInformationElement, struct in NAS Event Report indication +
+
+
+QmiIndicationNasNetworkTimeOutput, struct in NAS Network Time indication +
+
+
+QmiIndicationNasOperatorNameOutput, struct in NAS Operator Name indication +
+
+
+QmiIndicationNasOperatorNameOutputOperatorPlmnListElement, struct in NAS Operator Name indication +
+
+
+QmiIndicationNasOperatorNameOutputOperatorPlmnNameElement, struct in NAS Operator Name indication +
+
+
+QmiIndicationNasServingSystemOutput, struct in NAS Serving System indication +
+
+
+QmiIndicationNasServingSystemOutputRoamingIndicatorListElement, struct in NAS Serving System indication +
+
+
+QmiIndicationNasSignalInfoOutput, struct in NAS Signal Info indication +
+
+
+QmiIndicationNasSystemInfoOutput, struct in NAS System Info indication +
+
+
+QmiIndicationOmaEventReportOutput, struct in OMA Event Report indication +
+
+
+QmiIndicationPdcActivateConfigOutput, struct in PDC Activate Config indication +
+
+
+QmiIndicationPdcDeactivateConfigOutput, struct in PDC Deactivate Config indication +
+
+
+QmiIndicationPdcGetConfigInfoOutput, struct in PDC Get Config Info indication +
+
+
+QmiIndicationPdcGetSelectedConfigOutput, struct in PDC Get Selected Config indication +
+
+
+QmiIndicationPdcListConfigsOutput, struct in PDC List Configs indication +
+
+
+QmiIndicationPdcListConfigsOutputConfigsElement, struct in PDC List Configs indication +
+
+
+QmiIndicationPdcLoadConfigOutput, struct in PDC Load Config indication +
+
+
+QmiIndicationPdcSetSelectedConfigOutput, struct in PDC Set Selected Config indication +
+
+
+QmiIndicationPdsEventReportOutput, struct in PDS Event Report indication +
+
+
+QmiIndicationQosFlowStatusOutput, struct in QOS Flow Status indication +
+
+
+QmiIndicationQosNetworkStatusOutput, struct in QOS Network Status indication +
+
+
+QmiIndicationUimCardStatusOutput, struct in UIM Card Status indication +
+
+
+QmiIndicationUimCardStatusOutputCardStatusCardsElement, struct in UIM Card Status indication +
+
+
+QmiIndicationUimCardStatusOutputCardStatusCardsElementApplicationsElement, struct in UIM Card Status indication +
+
+
+QmiIndicationVoiceAllCallStatusOutput, struct in VOICE All Call Status indication +
+
+
+QmiIndicationVoiceAllCallStatusOutputCallInformationCall, struct in VOICE All Call Status indication +
+
+
+QmiIndicationVoiceAllCallStatusOutputRemotePartyNumberCall, struct in VOICE All Call Status indication +
+
+
+QmiIndicationWdsEventReportOutput, struct in WDS Event Report indication +
+
+
+QmiIndicationWdsEventReportOutputDataSystemsNetworksNetwork, struct in WDS Event Report indication +
+
+
+QmiIndicationWdsPacketServiceStatusOutput, struct in WDS Packet Service Status indication +
+
+
+QmiIndicationWmsEventReportOutput, struct in WMS Event Report indication +
+
+
+QmiIndicationWmsSmscAddressOutput, struct in WMS SMSC Address indication +
+
+
+qmi_indication_dms_event_report_output_get_activation_state, function in DMS Event Report indication +
+
+
+qmi_indication_dms_event_report_output_get_operating_mode, function in DMS Event Report indication +
+
+
+qmi_indication_dms_event_report_output_get_pin1_status, function in DMS Event Report indication +
+
+
+qmi_indication_dms_event_report_output_get_pin2_status, function in DMS Event Report indication +
+
+
+qmi_indication_dms_event_report_output_get_power_state, function in DMS Event Report indication +
+
+
+qmi_indication_dms_event_report_output_get_prl_init_notification, function in DMS Event Report indication +
+
+
+qmi_indication_dms_event_report_output_get_uim_state, function in DMS Event Report indication +
+
+
+qmi_indication_dms_event_report_output_get_wireless_disable_state, function in DMS Event Report indication +
+
+
+qmi_indication_dms_event_report_output_ref, function in DMS Event Report indication +
+
+
+qmi_indication_dms_event_report_output_unref, function in DMS Event Report indication +
+
+
+qmi_indication_loc_delete_assistance_data_output_get_indication_status, function in LOC Delete Assistance Data indication +
+
+
+qmi_indication_loc_delete_assistance_data_output_ref, function in LOC Delete Assistance Data indication
-QmiIndicationNasEventReportOutput, struct in NAS Event Report +qmi_indication_loc_delete_assistance_data_output_unref, function in LOC Delete Assistance Data indication
-QmiIndicationNasEventReportOutputRfBandInformationElement, struct in NAS Event Report +qmi_indication_loc_engine_state_output_get_engine_state, function in LOC Engine State indication
-QmiIndicationNasNetworkTimeOutput, struct in NAS Network Time +qmi_indication_loc_engine_state_output_ref, function in LOC Engine State indication
-QmiIndicationNasOperatorNameOutput, struct in NAS Operator Name +qmi_indication_loc_engine_state_output_unref, function in LOC Engine State indication
-QmiIndicationNasOperatorNameOutputOperatorPlmnListElement, struct in NAS Operator Name +qmi_indication_loc_fix_recurrence_type_output_get_fix_recurrence_type, function in LOC Fix Recurrence Type indication
-QmiIndicationNasOperatorNameOutputOperatorPlmnNameElement, struct in NAS Operator Name +qmi_indication_loc_fix_recurrence_type_output_ref, function in LOC Fix Recurrence Type indication
-QmiIndicationNasServingSystemOutput, struct in NAS Serving System +qmi_indication_loc_fix_recurrence_type_output_unref, function in LOC Fix Recurrence Type indication
-QmiIndicationNasServingSystemOutputRoamingIndicatorListElement, struct in NAS Serving System +qmi_indication_loc_get_operation_mode_output_get_indication_status, function in LOC Get Operation Mode indication
-QmiIndicationNasSignalInfoOutput, struct in NAS Signal Info +qmi_indication_loc_get_operation_mode_output_get_operation_mode, function in LOC Get Operation Mode indication
-QmiIndicationNasSystemInfoOutput, struct in NAS System Info +qmi_indication_loc_get_operation_mode_output_ref, function in LOC Get Operation Mode indication
-QmiIndicationOmaEventReportOutput, struct in OMA Event Report +qmi_indication_loc_get_operation_mode_output_unref, function in LOC Get Operation Mode indication
-QmiIndicationPdcActivateConfigOutput, struct in PDC Activate Config +qmi_indication_loc_get_predicted_orbits_data_source_output_get_allowed_sizes, function in LOC Get Predicted Orbits Data Source indication
-QmiIndicationPdcDeactivateConfigOutput, struct in PDC Deactivate Config +qmi_indication_loc_get_predicted_orbits_data_source_output_get_indication_status, function in LOC Get Predicted Orbits Data Source indication
-QmiIndicationPdcGetConfigInfoOutput, struct in PDC Get Config Info +qmi_indication_loc_get_predicted_orbits_data_source_output_get_server_list, function in LOC Get Predicted Orbits Data Source indication
-QmiIndicationPdcGetSelectedConfigOutput, struct in PDC Get Selected Config +qmi_indication_loc_get_predicted_orbits_data_source_output_ref, function in LOC Get Predicted Orbits Data Source indication
-QmiIndicationPdcListConfigsOutput, struct in PDC List Configs +qmi_indication_loc_get_predicted_orbits_data_source_output_unref, function in LOC Get Predicted Orbits Data Source indication
-QmiIndicationPdcListConfigsOutputConfigsElement, struct in PDC List Configs +qmi_indication_loc_get_server_output_get_indication_status, function in LOC Get Server indication
-QmiIndicationPdcLoadConfigOutput, struct in PDC Load Config +qmi_indication_loc_get_server_output_get_ipv4, function in LOC Get Server indication
-QmiIndicationPdcSetSelectedConfigOutput, struct in PDC Set Selected Config +qmi_indication_loc_get_server_output_get_ipv6, function in LOC Get Server indication
-QmiIndicationPdsEventReportOutput, struct in PDS Event Report +qmi_indication_loc_get_server_output_get_server_type, function in LOC Get Server indication
-QmiIndicationVoiceAllCallStatusOutput, struct in VOICE All Call Status +qmi_indication_loc_get_server_output_get_url, function in LOC Get Server indication
-QmiIndicationVoiceAllCallStatusOutputCallInformationCall, struct in VOICE All Call Status +qmi_indication_loc_get_server_output_ref, function in LOC Get Server indication
-QmiIndicationVoiceAllCallStatusOutputRemotePartyNumberCall, struct in VOICE All Call Status +qmi_indication_loc_get_server_output_unref, function in LOC Get Server indication
-QmiIndicationWdsEventReportOutput, struct in WDS Event Report +qmi_indication_loc_gnss_sv_info_output_get_altitude_assumed, function in LOC GNSS Sv Info indication
-QmiIndicationWdsEventReportOutputDataSystemsNetworksNetwork, struct in WDS Event Report +qmi_indication_loc_gnss_sv_info_output_get_list, function in LOC GNSS Sv Info indication
-QmiIndicationWdsPacketServiceStatusOutput, struct in WDS Packet Service Status +qmi_indication_loc_gnss_sv_info_output_ref, function in LOC GNSS Sv Info indication
-QmiIndicationWmsEventReportOutput, struct in WMS Event Report +qmi_indication_loc_gnss_sv_info_output_unref, function in LOC GNSS Sv Info indication
-QmiIndicationWmsSmscAddressOutput, struct in WMS SMSC Address +qmi_indication_loc_inject_predicted_orbits_data_output_get_indication_status, function in LOC Inject Predicted Orbits Data indication
-qmi_indication_dms_event_report_output_get_activation_state, function in DMS Event Report +qmi_indication_loc_inject_predicted_orbits_data_output_get_part_number, function in LOC Inject Predicted Orbits Data indication
-qmi_indication_dms_event_report_output_get_operating_mode, function in DMS Event Report +qmi_indication_loc_inject_predicted_orbits_data_output_ref, function in LOC Inject Predicted Orbits Data indication
-qmi_indication_dms_event_report_output_get_pin1_status, function in DMS Event Report +qmi_indication_loc_inject_predicted_orbits_data_output_unref, function in LOC Inject Predicted Orbits Data indication
-qmi_indication_dms_event_report_output_get_pin2_status, function in DMS Event Report +qmi_indication_loc_inject_xtra_data_output_get_indication_status, function in LOC Inject Xtra Data indication
-qmi_indication_dms_event_report_output_get_power_state, function in DMS Event Report +qmi_indication_loc_inject_xtra_data_output_get_part_number, function in LOC Inject Xtra Data indication
-qmi_indication_dms_event_report_output_get_prl_init_notification, function in DMS Event Report +qmi_indication_loc_inject_xtra_data_output_ref, function in LOC Inject Xtra Data indication
-qmi_indication_dms_event_report_output_get_uim_state, function in DMS Event Report +qmi_indication_loc_inject_xtra_data_output_unref, function in LOC Inject Xtra Data indication
-qmi_indication_dms_event_report_output_get_wireless_disable_state, function in DMS Event Report +qmi_indication_loc_nmea_output_get_nmea_string, function in LOC NMEA indication
-qmi_indication_dms_event_report_output_ref, function in DMS Event Report +qmi_indication_loc_nmea_output_ref, function in LOC NMEA indication
-qmi_indication_dms_event_report_output_unref, function in DMS Event Report +qmi_indication_loc_nmea_output_unref, function in LOC NMEA indication
-qmi_indication_nas_event_report_output_get_ecio, function in NAS Event Report +qmi_indication_loc_position_report_output_get_altitude_assumed, function in LOC Position Report indication
-qmi_indication_nas_event_report_output_get_error_rate, function in NAS Event Report +qmi_indication_loc_position_report_output_get_altitude_from_ellipsoid, function in LOC Position Report indication
-qmi_indication_nas_event_report_output_get_io, function in NAS Event Report +qmi_indication_loc_position_report_output_get_altitude_from_sealevel, function in LOC Position Report indication
-qmi_indication_nas_event_report_output_get_lte_rsrp, function in NAS Event Report +qmi_indication_loc_position_report_output_get_dilution_of_precision, function in LOC Position Report indication
-qmi_indication_nas_event_report_output_get_lte_snr, function in NAS Event Report +qmi_indication_loc_position_report_output_get_gps_time, function in LOC Position Report indication
-qmi_indication_nas_event_report_output_get_registration_reject_reason, function in NAS Event Report +qmi_indication_loc_position_report_output_get_heading, function in LOC Position Report indication
-qmi_indication_nas_event_report_output_get_rf_band_information, function in NAS Event Report +qmi_indication_loc_position_report_output_get_heading_uncertainty, function in LOC Position Report indication
-qmi_indication_nas_event_report_output_get_rsrq, function in NAS Event Report +qmi_indication_loc_position_report_output_get_horizontal_confidence, function in LOC Position Report indication
-qmi_indication_nas_event_report_output_get_rssi, function in NAS Event Report +qmi_indication_loc_position_report_output_get_horizontal_reliability, function in LOC Position Report indication
-qmi_indication_nas_event_report_output_get_signal_strength, function in NAS Event Report +qmi_indication_loc_position_report_output_get_horizontal_speed, function in LOC Position Report indication
-qmi_indication_nas_event_report_output_get_sinr, function in NAS Event Report +qmi_indication_loc_position_report_output_get_horizontal_uncertainty_circular, function in LOC Position Report indication
-qmi_indication_nas_event_report_output_ref, function in NAS Event Report +qmi_indication_loc_position_report_output_get_horizontal_uncertainty_elliptical_azimuth, function in LOC Position Report indication
-qmi_indication_nas_event_report_output_unref, function in NAS Event Report +qmi_indication_loc_position_report_output_get_horizontal_uncertainty_elliptical_major, function in LOC Position Report indication
-qmi_indication_nas_network_time_output_get_daylight_savings_adjustment, function in NAS Network Time +qmi_indication_loc_position_report_output_get_horizontal_uncertainty_elliptical_minor, function in LOC Position Report indication
-qmi_indication_nas_network_time_output_get_radio_interface, function in NAS Network Time +qmi_indication_loc_position_report_output_get_latitude, function in LOC Position Report indication
-qmi_indication_nas_network_time_output_get_timezone_offset, function in NAS Network Time +qmi_indication_loc_position_report_output_get_leap_seconds, function in LOC Position Report indication
-qmi_indication_nas_network_time_output_get_universal_time, function in NAS Network Time +qmi_indication_loc_position_report_output_get_longitude, function in LOC Position Report indication
-qmi_indication_nas_network_time_output_ref, function in NAS Network Time +qmi_indication_loc_position_report_output_get_magnetic_deviation, function in LOC Position Report indication
-qmi_indication_nas_network_time_output_unref, function in NAS Network Time +qmi_indication_loc_position_report_output_get_satellites_used, function in LOC Position Report indication
-qmi_indication_nas_operator_name_output_get_operator_nitz_information, function in NAS Operator Name +qmi_indication_loc_position_report_output_get_sensor_data_usage, function in LOC Position Report indication
-qmi_indication_nas_operator_name_output_get_operator_plmn_list, function in NAS Operator Name +qmi_indication_loc_position_report_output_get_session_fix_count, function in LOC Position Report indication
-qmi_indication_nas_operator_name_output_get_operator_plmn_name, function in NAS Operator Name +qmi_indication_loc_position_report_output_get_session_id, function in LOC Position Report indication
-qmi_indication_nas_operator_name_output_get_operator_string_name, function in NAS Operator Name +qmi_indication_loc_position_report_output_get_session_status, function in LOC Position Report indication
-qmi_indication_nas_operator_name_output_get_service_provider_name, function in NAS Operator Name +qmi_indication_loc_position_report_output_get_speed_uncertainty, function in LOC Position Report indication
-qmi_indication_nas_operator_name_output_ref, function in NAS Operator Name +qmi_indication_loc_position_report_output_get_technology_used, function in LOC Position Report indication
-qmi_indication_nas_operator_name_output_unref, function in NAS Operator Name +qmi_indication_loc_position_report_output_get_time_source, function in LOC Position Report indication
-qmi_indication_nas_serving_system_output_get_call_barring_status, function in NAS Serving System +qmi_indication_loc_position_report_output_get_time_uncertainty, function in LOC Position Report indication
-qmi_indication_nas_serving_system_output_get_cdma_base_station_info, function in NAS Serving System +qmi_indication_loc_position_report_output_get_utc_timestamp, function in LOC Position Report indication
-qmi_indication_nas_serving_system_output_get_cdma_p_rev, function in NAS Serving System +qmi_indication_loc_position_report_output_get_vertical_confidence, function in LOC Position Report indication
-qmi_indication_nas_serving_system_output_get_cdma_system_id, function in NAS Serving System +qmi_indication_loc_position_report_output_get_vertical_reliability, function in LOC Position Report indication
-qmi_indication_nas_serving_system_output_get_cdma_system_info, function in NAS Serving System +qmi_indication_loc_position_report_output_get_vertical_speed, function in LOC Position Report indication
-qmi_indication_nas_serving_system_output_get_cid_3gpp, function in NAS Serving System +qmi_indication_loc_position_report_output_get_vertical_uncertainty, function in LOC Position Report indication
-qmi_indication_nas_serving_system_output_get_concurrent_service_info_3gpp2, function in NAS Serving System +qmi_indication_loc_position_report_output_ref, function in LOC Position Report indication
-qmi_indication_nas_serving_system_output_get_current_plmn, function in NAS Serving System +qmi_indication_loc_position_report_output_unref, function in LOC Position Report indication
-qmi_indication_nas_serving_system_output_get_data_service_capability, function in NAS Serving System +qmi_indication_loc_set_operation_mode_output_get_indication_status, function in LOC Set Operation Mode indication
-qmi_indication_nas_serving_system_output_get_daylight_saving_time_adjustment_3gpp, function in NAS Serving System +qmi_indication_loc_set_operation_mode_output_ref, function in LOC Set Operation Mode indication
-qmi_indication_nas_serving_system_output_get_default_roaming_indicator, function in NAS Serving System +qmi_indication_loc_set_operation_mode_output_unref, function in LOC Set Operation Mode indication
-qmi_indication_nas_serving_system_output_get_detailed_service_status, function in NAS Serving System +qmi_indication_loc_set_server_output_get_indication_status, function in LOC Set Server indication
-qmi_indication_nas_serving_system_output_get_dtm_support, function in NAS Serving System +qmi_indication_loc_set_server_output_ref, function in LOC Set Server indication
-qmi_indication_nas_serving_system_output_get_hdr_personality, function in NAS Serving System +qmi_indication_loc_set_server_output_unref, function in LOC Set Server indication
-qmi_indication_nas_serving_system_output_get_lac_3gpp, function in NAS Serving System +qmi_indication_nas_event_report_output_get_ecio, function in NAS Event Report indication
-qmi_indication_nas_serving_system_output_get_lte_tac, function in NAS Serving System +qmi_indication_nas_event_report_output_get_error_rate, function in NAS Event Report indication
-qmi_indication_nas_serving_system_output_get_mnc_pcs_digit_include_status, function in NAS Serving System +qmi_indication_nas_event_report_output_get_io, function in NAS Event Report indication
-qmi_indication_nas_serving_system_output_get_plmn_name_flag_3gpp, function in NAS Serving System +qmi_indication_nas_event_report_output_get_lte_rsrp, function in NAS Event Report indication
-qmi_indication_nas_serving_system_output_get_plmn_not_changed_indication, function in NAS Serving System +qmi_indication_nas_event_report_output_get_lte_snr, function in NAS Event Report indication
-qmi_indication_nas_serving_system_output_get_prl_indicator_3gpp2, function in NAS Serving System +qmi_indication_nas_event_report_output_get_registration_reject_reason, function in NAS Event Report indication
-qmi_indication_nas_serving_system_output_get_roaming_indicator, function in NAS Serving System +qmi_indication_nas_event_report_output_get_rf_band_information, function in NAS Event Report indication
-qmi_indication_nas_serving_system_output_get_roaming_indicator_list, function in NAS Serving System +qmi_indication_nas_event_report_output_get_rsrq, function in NAS Event Report indication
-qmi_indication_nas_serving_system_output_get_serving_system, function in NAS Serving System +qmi_indication_nas_event_report_output_get_rssi, function in NAS Event Report indication
-qmi_indication_nas_serving_system_output_get_time_zone_3gpp, function in NAS Serving System +qmi_indication_nas_event_report_output_get_signal_strength, function in NAS Event Report indication
-qmi_indication_nas_serving_system_output_get_time_zone_3gpp2, function in NAS Serving System +qmi_indication_nas_event_report_output_get_sinr, function in NAS Event Report indication
-qmi_indication_nas_serving_system_output_get_umts_primary_scrambling_code, function in NAS Serving System +qmi_indication_nas_event_report_output_ref, function in NAS Event Report indication
-qmi_indication_nas_serving_system_output_get_universal_time_and_local_time_zone_3gpp, function in NAS Serving System +qmi_indication_nas_event_report_output_unref, function in NAS Event Report indication
-qmi_indication_nas_serving_system_output_ref, function in NAS Serving System +qmi_indication_nas_network_time_output_get_daylight_savings_adjustment, function in NAS Network Time indication
-qmi_indication_nas_serving_system_output_unref, function in NAS Serving System +qmi_indication_nas_network_time_output_get_radio_interface, function in NAS Network Time indication
-qmi_indication_nas_signal_info_output_get_cdma_signal_strength, function in NAS Signal Info +qmi_indication_nas_network_time_output_get_timezone_offset, function in NAS Network Time indication
-qmi_indication_nas_signal_info_output_get_gsm_signal_strength, function in NAS Signal Info +qmi_indication_nas_network_time_output_get_universal_time, function in NAS Network Time indication
-qmi_indication_nas_signal_info_output_get_hdr_signal_strength, function in NAS Signal Info +qmi_indication_nas_network_time_output_ref, function in NAS Network Time indication
-qmi_indication_nas_signal_info_output_get_lte_signal_strength, function in NAS Signal Info +qmi_indication_nas_network_time_output_unref, function in NAS Network Time indication
-qmi_indication_nas_signal_info_output_get_tdma_signal_strength, function in NAS Signal Info +qmi_indication_nas_operator_name_output_get_operator_nitz_information, function in NAS Operator Name indication
-qmi_indication_nas_signal_info_output_get_wcdma_signal_strength, function in NAS Signal Info +qmi_indication_nas_operator_name_output_get_operator_plmn_list, function in NAS Operator Name indication
-qmi_indication_nas_signal_info_output_ref, function in NAS Signal Info +qmi_indication_nas_operator_name_output_get_operator_plmn_name, function in NAS Operator Name indication
-qmi_indication_nas_signal_info_output_unref, function in NAS Signal Info +qmi_indication_nas_operator_name_output_get_operator_string_name, function in NAS Operator Name indication
-qmi_indication_nas_system_info_output_get_additional_cdma_system_info, function in NAS System Info +qmi_indication_nas_operator_name_output_get_service_provider_name, function in NAS Operator Name indication
-qmi_indication_nas_system_info_output_get_additional_gsm_system_info, function in NAS System Info +qmi_indication_nas_operator_name_output_ref, function in NAS Operator Name indication
-qmi_indication_nas_system_info_output_get_additional_hdr_system_info, function in NAS System Info +qmi_indication_nas_operator_name_output_unref, function in NAS Operator Name indication
-qmi_indication_nas_system_info_output_get_additional_lte_system_info, function in NAS System Info +qmi_indication_nas_serving_system_output_get_call_barring_status, function in NAS Serving System indication
-qmi_indication_nas_system_info_output_get_additional_wcdma_system_info, function in NAS System Info +qmi_indication_nas_serving_system_output_get_cdma_base_station_info, function in NAS Serving System indication
-qmi_indication_nas_system_info_output_get_cdma_service_status, function in NAS System Info +qmi_indication_nas_serving_system_output_get_cdma_p_rev, function in NAS Serving System indication
-qmi_indication_nas_system_info_output_get_cdma_system_info, function in NAS System Info +qmi_indication_nas_serving_system_output_get_cdma_system_id, function in NAS Serving System indication
-qmi_indication_nas_system_info_output_get_gsm_call_barring_status, function in NAS System Info +qmi_indication_nas_serving_system_output_get_cdma_system_info, function in NAS Serving System indication
-qmi_indication_nas_system_info_output_get_gsm_cipher_domain, function in NAS System Info +qmi_indication_nas_serving_system_output_get_cid_3gpp, function in NAS Serving System indication
-qmi_indication_nas_system_info_output_get_gsm_service_status, function in NAS System Info +qmi_indication_nas_serving_system_output_get_concurrent_service_info_3gpp2, function in NAS Serving System indication
-qmi_indication_nas_system_info_output_get_gsm_system_info, function in NAS System Info +qmi_indication_nas_serving_system_output_get_current_plmn, function in NAS Serving System indication
-qmi_indication_nas_system_info_output_get_hdr_service_status, function in NAS System Info +qmi_indication_nas_serving_system_output_get_data_service_capability, function in NAS Serving System indication
-qmi_indication_nas_system_info_output_get_hdr_system_info, function in NAS System Info +qmi_indication_nas_serving_system_output_get_daylight_saving_time_adjustment_3gpp, function in NAS Serving System indication
-qmi_indication_nas_system_info_output_get_lte_embms_coverage_info_support, function in NAS System Info +qmi_indication_nas_serving_system_output_get_default_roaming_indicator, function in NAS Serving System indication
-qmi_indication_nas_system_info_output_get_lte_service_status, function in NAS System Info +qmi_indication_nas_serving_system_output_get_detailed_service_status, function in NAS Serving System indication
-qmi_indication_nas_system_info_output_get_lte_system_info, function in NAS System Info +qmi_indication_nas_serving_system_output_get_dtm_support, function in NAS Serving System indication
-qmi_indication_nas_system_info_output_get_lte_voice_support, function in NAS System Info +qmi_indication_nas_serving_system_output_get_hdr_personality, function in NAS Serving System indication
-qmi_indication_nas_system_info_output_get_plmn_not_changed_indication, function in NAS System Info +qmi_indication_nas_serving_system_output_get_lac_3gpp, function in NAS Serving System indication
-qmi_indication_nas_system_info_output_get_sim_reject_info, function in NAS System Info +qmi_indication_nas_serving_system_output_get_lte_tac, function in NAS Serving System indication
-qmi_indication_nas_system_info_output_get_td_scdma_service_status, function in NAS System Info +qmi_indication_nas_serving_system_output_get_mnc_pcs_digit_include_status, function in NAS Serving System indication
-qmi_indication_nas_system_info_output_get_td_scma_system_info, function in NAS System Info +qmi_indication_nas_serving_system_output_get_plmn_name_flag_3gpp, function in NAS Serving System indication
-qmi_indication_nas_system_info_output_get_wcdma_call_barring_status, function in NAS System Info +qmi_indication_nas_serving_system_output_get_plmn_not_changed_indication, function in NAS Serving System indication
-qmi_indication_nas_system_info_output_get_wcdma_cipher_domain, function in NAS System Info +qmi_indication_nas_serving_system_output_get_prl_indicator_3gpp2, function in NAS Serving System indication
-qmi_indication_nas_system_info_output_get_wcdma_service_status, function in NAS System Info +qmi_indication_nas_serving_system_output_get_roaming_indicator, function in NAS Serving System indication
-qmi_indication_nas_system_info_output_get_wcdma_system_info, function in NAS System Info +qmi_indication_nas_serving_system_output_get_roaming_indicator_list, function in NAS Serving System indication
-qmi_indication_nas_system_info_output_ref, function in NAS System Info +qmi_indication_nas_serving_system_output_get_serving_system, function in NAS Serving System indication
-qmi_indication_nas_system_info_output_unref, function in NAS System Info +qmi_indication_nas_serving_system_output_get_time_zone_3gpp, function in NAS Serving System indication
-qmi_indication_oma_event_report_output_get_network_initiated_alert, function in OMA Event Report +qmi_indication_nas_serving_system_output_get_time_zone_3gpp2, function in NAS Serving System indication
-qmi_indication_oma_event_report_output_get_session_fail_reason, function in OMA Event Report +qmi_indication_nas_serving_system_output_get_umts_primary_scrambling_code, function in NAS Serving System indication
-qmi_indication_oma_event_report_output_get_session_state, function in OMA Event Report +qmi_indication_nas_serving_system_output_get_universal_time_and_local_time_zone_3gpp, function in NAS Serving System indication
-qmi_indication_oma_event_report_output_ref, function in OMA Event Report +qmi_indication_nas_serving_system_output_ref, function in NAS Serving System indication
-qmi_indication_oma_event_report_output_unref, function in OMA Event Report +qmi_indication_nas_serving_system_output_unref, function in NAS Serving System indication
-qmi_indication_pdc_activate_config_output_get_indication_result, function in PDC Activate Config +qmi_indication_nas_signal_info_output_get_cdma_signal_strength, function in NAS Signal Info indication
-qmi_indication_pdc_activate_config_output_get_token, function in PDC Activate Config +qmi_indication_nas_signal_info_output_get_gsm_signal_strength, function in NAS Signal Info indication
-qmi_indication_pdc_activate_config_output_ref, function in PDC Activate Config +qmi_indication_nas_signal_info_output_get_hdr_signal_strength, function in NAS Signal Info indication
-qmi_indication_pdc_activate_config_output_unref, function in PDC Activate Config +qmi_indication_nas_signal_info_output_get_lte_signal_strength, function in NAS Signal Info indication
-qmi_indication_pdc_deactivate_config_output_get_indication_result, function in PDC Deactivate Config +qmi_indication_nas_signal_info_output_get_tdma_signal_strength, function in NAS Signal Info indication
-qmi_indication_pdc_deactivate_config_output_get_token, function in PDC Deactivate Config +qmi_indication_nas_signal_info_output_get_wcdma_signal_strength, function in NAS Signal Info indication
-qmi_indication_pdc_deactivate_config_output_ref, function in PDC Deactivate Config +qmi_indication_nas_signal_info_output_ref, function in NAS Signal Info indication
-qmi_indication_pdc_deactivate_config_output_unref, function in PDC Deactivate Config +qmi_indication_nas_signal_info_output_unref, function in NAS Signal Info indication
-qmi_indication_pdc_get_config_info_output_get_description, function in PDC Get Config Info +qmi_indication_nas_system_info_output_get_additional_cdma_system_info, function in NAS System Info indication
-qmi_indication_pdc_get_config_info_output_get_indication_result, function in PDC Get Config Info +qmi_indication_nas_system_info_output_get_additional_gsm_system_info, function in NAS System Info indication
-qmi_indication_pdc_get_config_info_output_get_token, function in PDC Get Config Info +qmi_indication_nas_system_info_output_get_additional_hdr_system_info, function in NAS System Info indication
-qmi_indication_pdc_get_config_info_output_get_total_size, function in PDC Get Config Info +qmi_indication_nas_system_info_output_get_additional_lte_system_info, function in NAS System Info indication
-qmi_indication_pdc_get_config_info_output_get_version, function in PDC Get Config Info +qmi_indication_nas_system_info_output_get_additional_wcdma_system_info, function in NAS System Info indication
-qmi_indication_pdc_get_config_info_output_ref, function in PDC Get Config Info +qmi_indication_nas_system_info_output_get_cdma_service_status, function in NAS System Info indication
-qmi_indication_pdc_get_config_info_output_unref, function in PDC Get Config Info +qmi_indication_nas_system_info_output_get_cdma_system_info, function in NAS System Info indication
-qmi_indication_pdc_get_selected_config_output_get_active_id, function in PDC Get Selected Config +qmi_indication_nas_system_info_output_get_gsm_call_barring_status, function in NAS System Info indication
-qmi_indication_pdc_get_selected_config_output_get_indication_result, function in PDC Get Selected Config +qmi_indication_nas_system_info_output_get_gsm_cipher_domain, function in NAS System Info indication
-qmi_indication_pdc_get_selected_config_output_get_pending_id, function in PDC Get Selected Config +qmi_indication_nas_system_info_output_get_gsm_service_status, function in NAS System Info indication
-qmi_indication_pdc_get_selected_config_output_get_token, function in PDC Get Selected Config +qmi_indication_nas_system_info_output_get_gsm_system_info, function in NAS System Info indication
-qmi_indication_pdc_get_selected_config_output_ref, function in PDC Get Selected Config +qmi_indication_nas_system_info_output_get_hdr_service_status, function in NAS System Info indication
-qmi_indication_pdc_get_selected_config_output_unref, function in PDC Get Selected Config +qmi_indication_nas_system_info_output_get_hdr_system_info, function in NAS System Info indication
-qmi_indication_pdc_list_configs_output_get_configs, function in PDC List Configs +qmi_indication_nas_system_info_output_get_lte_embms_coverage_info_support, function in NAS System Info indication
-qmi_indication_pdc_list_configs_output_get_indication_result, function in PDC List Configs +qmi_indication_nas_system_info_output_get_lte_service_status, function in NAS System Info indication
-qmi_indication_pdc_list_configs_output_get_token, function in PDC List Configs +qmi_indication_nas_system_info_output_get_lte_system_info, function in NAS System Info indication
-qmi_indication_pdc_list_configs_output_ref, function in PDC List Configs +qmi_indication_nas_system_info_output_get_lte_voice_support, function in NAS System Info indication
-qmi_indication_pdc_list_configs_output_unref, function in PDC List Configs +qmi_indication_nas_system_info_output_get_plmn_not_changed_indication, function in NAS System Info indication
-qmi_indication_pdc_load_config_output_get_frame_reset, function in PDC Load Config +qmi_indication_nas_system_info_output_get_sim_reject_info, function in NAS System Info indication
-qmi_indication_pdc_load_config_output_get_indication_result, function in PDC Load Config +qmi_indication_nas_system_info_output_get_td_scdma_service_status, function in NAS System Info indication
-qmi_indication_pdc_load_config_output_get_received, function in PDC Load Config +qmi_indication_nas_system_info_output_get_td_scma_system_info, function in NAS System Info indication
-qmi_indication_pdc_load_config_output_get_remaining_size, function in PDC Load Config +qmi_indication_nas_system_info_output_get_wcdma_call_barring_status, function in NAS System Info indication
-qmi_indication_pdc_load_config_output_get_token, function in PDC Load Config +qmi_indication_nas_system_info_output_get_wcdma_cipher_domain, function in NAS System Info indication
-qmi_indication_pdc_load_config_output_ref, function in PDC Load Config +qmi_indication_nas_system_info_output_get_wcdma_service_status, function in NAS System Info indication
-qmi_indication_pdc_load_config_output_unref, function in PDC Load Config +qmi_indication_nas_system_info_output_get_wcdma_system_info, function in NAS System Info indication
-qmi_indication_pdc_set_selected_config_output_get_indication_result, function in PDC Set Selected Config +qmi_indication_nas_system_info_output_ref, function in NAS System Info indication
-qmi_indication_pdc_set_selected_config_output_get_token, function in PDC Set Selected Config +qmi_indication_nas_system_info_output_unref, function in NAS System Info indication
-qmi_indication_pdc_set_selected_config_output_ref, function in PDC Set Selected Config +qmi_indication_oma_event_report_output_get_network_initiated_alert, function in OMA Event Report indication
-qmi_indication_pdc_set_selected_config_output_unref, function in PDC Set Selected Config +qmi_indication_oma_event_report_output_get_session_fail_reason, function in OMA Event Report indication
-qmi_indication_pds_event_report_output_get_extended_nmea_position, function in PDS Event Report +qmi_indication_oma_event_report_output_get_session_state, function in OMA Event Report indication
-qmi_indication_pds_event_report_output_get_nmea_position, function in PDS Event Report +qmi_indication_oma_event_report_output_ref, function in OMA Event Report indication
-qmi_indication_pds_event_report_output_get_position_session_status, function in PDS Event Report +qmi_indication_oma_event_report_output_unref, function in OMA Event Report indication
-qmi_indication_pds_event_report_output_ref, function in PDS Event Report +qmi_indication_pdc_activate_config_output_get_indication_result, function in PDC Activate Config indication
-qmi_indication_pds_event_report_output_unref, function in PDS Event Report +qmi_indication_pdc_activate_config_output_get_token, function in PDC Activate Config indication
-qmi_indication_voice_all_call_status_output_get_call_information, function in VOICE All Call Status +qmi_indication_pdc_activate_config_output_ref, function in PDC Activate Config indication
-qmi_indication_voice_all_call_status_output_get_remote_party_number, function in VOICE All Call Status +qmi_indication_pdc_activate_config_output_unref, function in PDC Activate Config indication
-qmi_indication_voice_all_call_status_output_ref, function in VOICE All Call Status +qmi_indication_pdc_deactivate_config_output_get_indication_result, function in PDC Deactivate Config indication
-qmi_indication_voice_all_call_status_output_unref, function in VOICE All Call Status +qmi_indication_pdc_deactivate_config_output_get_token, function in PDC Deactivate Config indication
-qmi_indication_wds_event_report_output_get_channel_rates, function in WDS Event Report +qmi_indication_pdc_deactivate_config_output_ref, function in PDC Deactivate Config indication
-qmi_indication_wds_event_report_output_get_current_data_bearer_technology, function in WDS Event Report +qmi_indication_pdc_deactivate_config_output_unref, function in PDC Deactivate Config indication
-qmi_indication_wds_event_report_output_get_data_bearer_technology, function in WDS Event Report +qmi_indication_pdc_get_config_info_output_get_description, function in PDC Get Config Info indication
-qmi_indication_wds_event_report_output_get_data_call_address_family, function in WDS Event Report +qmi_indication_pdc_get_config_info_output_get_indication_result, function in PDC Get Config Info indication
-qmi_indication_wds_event_report_output_get_data_call_status, function in WDS Event Report +qmi_indication_pdc_get_config_info_output_get_token, function in PDC Get Config Info indication
-qmi_indication_wds_event_report_output_get_data_call_type, function in WDS Event Report +qmi_indication_pdc_get_config_info_output_get_total_size, function in PDC Get Config Info indication
-qmi_indication_wds_event_report_output_get_data_systems, function in WDS Event Report +qmi_indication_pdc_get_config_info_output_get_version, function in PDC Get Config Info indication
-qmi_indication_wds_event_report_output_get_dormancy_status, function in WDS Event Report +qmi_indication_pdc_get_config_info_output_ref, function in PDC Get Config Info indication
-qmi_indication_wds_event_report_output_get_evdo_page_monitor_period_change, function in WDS Event Report +qmi_indication_pdc_get_config_info_output_unref, function in PDC Get Config Info indication
-qmi_indication_wds_event_report_output_get_extended_data_bearer_technology, function in WDS Event Report +qmi_indication_pdc_get_selected_config_output_get_active_id, function in PDC Get Selected Config indication
-qmi_indication_wds_event_report_output_get_mip_status, function in WDS Event Report +qmi_indication_pdc_get_selected_config_output_get_indication_result, function in PDC Get Selected Config indication
-qmi_indication_wds_event_report_output_get_pdn_filters_removed, function in WDS Event Report +qmi_indication_pdc_get_selected_config_output_get_pending_id, function in PDC Get Selected Config indication
-qmi_indication_wds_event_report_output_get_preferred_data_system, function in WDS Event Report +qmi_indication_pdc_get_selected_config_output_get_token, function in PDC Get Selected Config indication
-qmi_indication_wds_event_report_output_get_rx_bytes_ok, function in WDS Event Report +qmi_indication_pdc_get_selected_config_output_ref, function in PDC Get Selected Config indication
-qmi_indication_wds_event_report_output_get_rx_overflows, function in WDS Event Report +qmi_indication_pdc_get_selected_config_output_unref, function in PDC Get Selected Config indication
-qmi_indication_wds_event_report_output_get_rx_packets_dropped, function in WDS Event Report +qmi_indication_pdc_list_configs_output_get_configs, function in PDC List Configs indication
-qmi_indication_wds_event_report_output_get_rx_packets_error, function in WDS Event Report +qmi_indication_pdc_list_configs_output_get_indication_result, function in PDC List Configs indication
-qmi_indication_wds_event_report_output_get_rx_packets_ok, function in WDS Event Report +qmi_indication_pdc_list_configs_output_get_token, function in PDC List Configs indication
-qmi_indication_wds_event_report_output_get_tx_bytes_ok, function in WDS Event Report +qmi_indication_pdc_list_configs_output_ref, function in PDC List Configs indication
-qmi_indication_wds_event_report_output_get_tx_overflows, function in WDS Event Report +qmi_indication_pdc_list_configs_output_unref, function in PDC List Configs indication
-qmi_indication_wds_event_report_output_get_tx_packets_dropped, function in WDS Event Report +qmi_indication_pdc_load_config_output_get_frame_reset, function in PDC Load Config indication
-qmi_indication_wds_event_report_output_get_tx_packets_error, function in WDS Event Report +qmi_indication_pdc_load_config_output_get_indication_result, function in PDC Load Config indication
-qmi_indication_wds_event_report_output_get_tx_packets_ok, function in WDS Event Report +qmi_indication_pdc_load_config_output_get_received, function in PDC Load Config indication
-qmi_indication_wds_event_report_output_get_uplink_flow_control_enabled, function in WDS Event Report +qmi_indication_pdc_load_config_output_get_remaining_size, function in PDC Load Config indication
-qmi_indication_wds_event_report_output_ref, function in WDS Event Report +qmi_indication_pdc_load_config_output_get_token, function in PDC Load Config indication
-qmi_indication_wds_event_report_output_unref, function in WDS Event Report +qmi_indication_pdc_load_config_output_ref, function in PDC Load Config indication
-qmi_indication_wds_packet_service_status_output_get_call_end_reason, function in WDS Packet Service Status +qmi_indication_pdc_load_config_output_unref, function in PDC Load Config indication
-qmi_indication_wds_packet_service_status_output_get_connection_status, function in WDS Packet Service Status +qmi_indication_pdc_set_selected_config_output_get_indication_result, function in PDC Set Selected Config indication
-qmi_indication_wds_packet_service_status_output_get_extended_technology_preference, function in WDS Packet Service Status +qmi_indication_pdc_set_selected_config_output_get_token, function in PDC Set Selected Config indication
-qmi_indication_wds_packet_service_status_output_get_ip_family, function in WDS Packet Service Status +qmi_indication_pdc_set_selected_config_output_ref, function in PDC Set Selected Config indication
-qmi_indication_wds_packet_service_status_output_get_verbose_call_end_reason, function in WDS Packet Service Status +qmi_indication_pdc_set_selected_config_output_unref, function in PDC Set Selected Config indication
-qmi_indication_wds_packet_service_status_output_ref, function in WDS Packet Service Status +qmi_indication_pds_event_report_output_get_extended_nmea_position, function in PDS Event Report indication
-qmi_indication_wds_packet_service_status_output_unref, function in WDS Packet Service Status +qmi_indication_pds_event_report_output_get_nmea_position, function in PDS Event Report indication
-qmi_indication_wms_event_report_output_get_etws_message, function in WMS Event Report +qmi_indication_pds_event_report_output_get_position_session_status, function in PDS Event Report indication
-qmi_indication_wms_event_report_output_get_etws_plmn_information, function in WMS Event Report +qmi_indication_pds_event_report_output_ref, function in PDS Event Report indication
-qmi_indication_wms_event_report_output_get_message_mode, function in WMS Event Report +qmi_indication_pds_event_report_output_unref, function in PDS Event Report indication
-qmi_indication_wms_event_report_output_get_mt_message, function in WMS Event Report +qmi_indication_qos_flow_status_output_get_value, function in QOS Flow Status indication
-qmi_indication_wms_event_report_output_get_smsc_address, function in WMS Event Report +qmi_indication_qos_flow_status_output_ref, function in QOS Flow Status indication
-qmi_indication_wms_event_report_output_get_sms_on_ims, function in WMS Event Report +qmi_indication_qos_flow_status_output_unref, function in QOS Flow Status indication
-qmi_indication_wms_event_report_output_get_transfer_route_mt_message, function in WMS Event Report +qmi_indication_qos_network_status_output_get_qos_supported, function in QOS Network Status indication
-qmi_indication_wms_event_report_output_ref, function in WMS Event Report +qmi_indication_qos_network_status_output_ref, function in QOS Network Status indication
-qmi_indication_wms_event_report_output_unref, function in WMS Event Report +qmi_indication_qos_network_status_output_unref, function in QOS Network Status indication
-qmi_indication_wms_smsc_address_output_get_address, function in WMS SMSC Address +qmi_indication_uim_card_status_output_get_card_status, function in UIM Card Status indication
-qmi_indication_wms_smsc_address_output_ref, function in WMS SMSC Address +qmi_indication_uim_card_status_output_ref, function in UIM Card Status indication
-qmi_indication_wms_smsc_address_output_unref, function in WMS SMSC Address +qmi_indication_uim_card_status_output_unref, function in UIM Card Status indication +
+
+
+qmi_indication_voice_all_call_status_output_get_call_information, function in VOICE All Call Status indication +
+
+
+qmi_indication_voice_all_call_status_output_get_remote_party_number, function in VOICE All Call Status indication +
+
+
+qmi_indication_voice_all_call_status_output_ref, function in VOICE All Call Status indication +
+
+
+qmi_indication_voice_all_call_status_output_unref, function in VOICE All Call Status indication +
+
+
+qmi_indication_wds_event_report_output_get_channel_rates, function in WDS Event Report indication +
+
+
+qmi_indication_wds_event_report_output_get_current_data_bearer_technology, function in WDS Event Report indication +
+
+
+qmi_indication_wds_event_report_output_get_data_bearer_technology, function in WDS Event Report indication +
+
+
+qmi_indication_wds_event_report_output_get_data_call_address_family, function in WDS Event Report indication +
+
+
+qmi_indication_wds_event_report_output_get_data_call_status, function in WDS Event Report indication +
+
+
+qmi_indication_wds_event_report_output_get_data_call_type, function in WDS Event Report indication +
+
+
+qmi_indication_wds_event_report_output_get_data_systems, function in WDS Event Report indication +
+
+
+qmi_indication_wds_event_report_output_get_dormancy_status, function in WDS Event Report indication +
+
+
+qmi_indication_wds_event_report_output_get_evdo_page_monitor_period_change, function in WDS Event Report indication +
+
+
+qmi_indication_wds_event_report_output_get_extended_data_bearer_technology, function in WDS Event Report indication +
+
+
+qmi_indication_wds_event_report_output_get_mip_status, function in WDS Event Report indication +
+
+
+qmi_indication_wds_event_report_output_get_pdn_filters_removed, function in WDS Event Report indication +
+
+
+qmi_indication_wds_event_report_output_get_preferred_data_system, function in WDS Event Report indication +
+
+
+qmi_indication_wds_event_report_output_get_rx_bytes_ok, function in WDS Event Report indication +
+
+
+qmi_indication_wds_event_report_output_get_rx_overflows, function in WDS Event Report indication +
+
+
+qmi_indication_wds_event_report_output_get_rx_packets_dropped, function in WDS Event Report indication +
+
+
+qmi_indication_wds_event_report_output_get_rx_packets_error, function in WDS Event Report indication +
+
+
+qmi_indication_wds_event_report_output_get_rx_packets_ok, function in WDS Event Report indication +
+
+
+qmi_indication_wds_event_report_output_get_tx_bytes_ok, function in WDS Event Report indication +
+
+
+qmi_indication_wds_event_report_output_get_tx_overflows, function in WDS Event Report indication +
+
+
+qmi_indication_wds_event_report_output_get_tx_packets_dropped, function in WDS Event Report indication +
+
+
+qmi_indication_wds_event_report_output_get_tx_packets_error, function in WDS Event Report indication +
+
+
+qmi_indication_wds_event_report_output_get_tx_packets_ok, function in WDS Event Report indication +
+
+
+qmi_indication_wds_event_report_output_get_uplink_flow_control_enabled, function in WDS Event Report indication +
+
+
+qmi_indication_wds_event_report_output_ref, function in WDS Event Report indication +
+
+
+qmi_indication_wds_event_report_output_unref, function in WDS Event Report indication +
+
+
+qmi_indication_wds_packet_service_status_output_get_call_end_reason, function in WDS Packet Service Status indication +
+
+
+qmi_indication_wds_packet_service_status_output_get_connection_status, function in WDS Packet Service Status indication +
+
+
+qmi_indication_wds_packet_service_status_output_get_extended_technology_preference, function in WDS Packet Service Status indication +
+
+
+qmi_indication_wds_packet_service_status_output_get_ip_family, function in WDS Packet Service Status indication +
+
+
+qmi_indication_wds_packet_service_status_output_get_verbose_call_end_reason, function in WDS Packet Service Status indication +
+
+
+qmi_indication_wds_packet_service_status_output_ref, function in WDS Packet Service Status indication +
+
+
+qmi_indication_wds_packet_service_status_output_unref, function in WDS Packet Service Status indication +
+
+
+qmi_indication_wms_event_report_output_get_etws_message, function in WMS Event Report indication +
+
+
+qmi_indication_wms_event_report_output_get_etws_plmn_information, function in WMS Event Report indication +
+
+
+qmi_indication_wms_event_report_output_get_message_mode, function in WMS Event Report indication +
+
+
+qmi_indication_wms_event_report_output_get_mt_message, function in WMS Event Report indication +
+
+
+qmi_indication_wms_event_report_output_get_smsc_address, function in WMS Event Report indication +
+
+
+qmi_indication_wms_event_report_output_get_sms_on_ims, function in WMS Event Report indication +
+
+
+qmi_indication_wms_event_report_output_get_transfer_route_mt_message, function in WMS Event Report indication +
+
+
+qmi_indication_wms_event_report_output_ref, function in WMS Event Report indication +
+
+
+qmi_indication_wms_event_report_output_unref, function in WMS Event Report indication +
+
+
+qmi_indication_wms_smsc_address_output_get_address, function in WMS SMSC Address indication +
+
+
+qmi_indication_wms_smsc_address_output_ref, function in WMS SMSC Address indication +
+
+
+qmi_indication_wms_smsc_address_output_unref, function in WMS SMSC Address indication +
+
+

L

+
+QmiLocDeleteCellDatabase, enum in LOC enumerations and flags +
+
+
+QmiLocDeleteClockInfo, enum in LOC enumerations and flags +
+
+
+QmiLocDeleteGnssData, enum in LOC enumerations and flags +
+
+
+QmiLocDeleteSvInfo, enum in LOC enumerations and flags +
+
+
+QmiLocEngineState, enum in LOC enumerations and flags +
+
+
+QmiLocEventRegistrationFlag, enum in LOC enumerations and flags +
+
+
+QmiLocFixRecurrenceType, enum in LOC enumerations and flags +
+
+
+QmiLocHealthStatus, enum in LOC enumerations and flags +
+
+
+QmiLocIndicationStatus, enum in LOC enumerations and flags +
+
+
+QmiLocIntermediateReportState, enum in LOC enumerations and flags +
+
+
+QmiLocNavigationData, enum in LOC enumerations and flags +
+
+
+QmiLocOperationMode, enum in LOC enumerations and flags +
+
+
+QmiLocPredictedOrbitsDataFormat, enum in LOC enumerations and flags +
+
+
+QmiLocReliability, enum in LOC enumerations and flags +
+
+
+QmiLocSatelliteStatus, enum in LOC enumerations and flags +
+
+
+QmiLocSatelliteValidInformation, enum in LOC enumerations and flags +
+
+
+QmiLocSensorDataUsage, enum in LOC enumerations and flags +
+
+
+QmiLocServerAddressType, enum in LOC enumerations and flags +
+
+
+QmiLocServerType, enum in LOC enumerations and flags +
+
+
+QmiLocSessionStatus, enum in LOC enumerations and flags +
+
+
+QmiLocSystem, enum in LOC enumerations and flags +
+
+
+QmiLocTechnologyUsed, enum in LOC enumerations and flags +
+
+
+QmiLocTimeSource, enum in LOC enumerations and flags +
+
+
+qmi_loc_delete_cell_database_build_string_from_mask, function in LOC enumerations and flags +
+
+
+qmi_loc_delete_clock_info_build_string_from_mask, function in LOC enumerations and flags +
+
+
+qmi_loc_delete_gnss_data_build_string_from_mask, function in LOC enumerations and flags +
+
+
+qmi_loc_delete_sv_info_build_string_from_mask, function in LOC enumerations and flags +
+
+
+qmi_loc_engine_state_get_string, function in LOC enumerations and flags +
+
+
+qmi_loc_fix_recurrence_type_get_string, function in LOC enumerations and flags +
+
+
+qmi_loc_health_status_get_string, function in LOC enumerations and flags +
+
+
+qmi_loc_indication_status_get_string, function in LOC enumerations and flags +
+
+
+qmi_loc_intermediate_report_state_get_string, function in LOC enumerations and flags +
+
+
+qmi_loc_navigation_data_get_string, function in LOC enumerations and flags +
+
+
+qmi_loc_operation_mode_get_string, function in LOC enumerations and flags +
+
+
+qmi_loc_predicted_orbits_data_format_get_string, function in LOC enumerations and flags +
+
+
+qmi_loc_reliability_get_string, function in LOC enumerations and flags +
+
+
+qmi_loc_satellite_status_get_string, function in LOC enumerations and flags +
+
+
+qmi_loc_satellite_valid_information_build_string_from_mask, function in LOC enumerations and flags +
+
+
+qmi_loc_server_address_type_build_string_from_mask, function in LOC enumerations and flags +
+
+
+qmi_loc_server_type_get_string, function in LOC enumerations and flags +
+
+
+qmi_loc_session_status_get_string, function in LOC enumerations and flags +
+
+
+qmi_loc_system_get_string, function in LOC enumerations and flags +
+
+
+qmi_loc_technology_used_build_string_from_mask, function in LOC enumerations and flags +
+
+
+qmi_loc_time_source_get_string, function in LOC enumerations and flags

M

@@ -2890,343 +3791,355 @@
-QmiMessageDmsActivateAutomaticInput, struct in DMS Activate Automatic +QmiMessageDmsActivateAutomaticInput, struct in DMS Activate Automatic request +
+
+
+QmiMessageDmsActivateAutomaticOutput, struct in DMS Activate Automatic request +
+
+
+QmiMessageDmsActivateManualInput, struct in DMS Activate Manual request +
+
+
+QmiMessageDmsActivateManualOutput, struct in DMS Activate Manual request
-QmiMessageDmsActivateAutomaticOutput, struct in DMS Activate Automatic +QmiMessageDmsDeleteStoredImageInput, struct in DMS Delete Stored Image request
-QmiMessageDmsActivateManualInput, struct in DMS Activate Manual +QmiMessageDmsDeleteStoredImageInputImage, struct in DMS Delete Stored Image request
-QmiMessageDmsActivateManualOutput, struct in DMS Activate Manual +QmiMessageDmsDeleteStoredImageOutput, struct in DMS Delete Stored Image request
-QmiMessageDmsDeleteStoredImageInput, struct in DMS Delete Stored Image +QmiMessageDmsGetActivationStateOutput, struct in DMS Get Activation State request
-QmiMessageDmsDeleteStoredImageInputImage, struct in DMS Delete Stored Image +QmiMessageDmsGetAltNetConfigOutput, struct in DMS Get Alt Net Config request
-QmiMessageDmsDeleteStoredImageOutput, struct in DMS Delete Stored Image +QmiMessageDmsGetBandCapabilitiesOutput, struct in DMS Get Band Capabilities request
-QmiMessageDmsGetActivationStateOutput, struct in DMS Get Activation State +QmiMessageDmsGetBootImageDownloadModeOutput, struct in DMS Get Boot Image Download Mode request
-QmiMessageDmsGetAltNetConfigOutput, struct in DMS Get Alt Net Config +QmiMessageDmsGetCapabilitiesOutput, struct in DMS Get Capabilities request
-QmiMessageDmsGetBandCapabilitiesOutput, struct in DMS Get Band Capabilities +QmiMessageDmsGetFactorySkuOutput, struct in DMS Get Factory SKU request
-QmiMessageDmsGetBootImageDownloadModeOutput, struct in DMS Get Boot Image Download Mode +QmiMessageDmsGetFirmwarePreferenceOutput, struct in DMS Get Firmware Preference request
-QmiMessageDmsGetCapabilitiesOutput, struct in DMS Get Capabilities +QmiMessageDmsGetFirmwarePreferenceOutputListImage, struct in DMS Get Firmware Preference request
-QmiMessageDmsGetFactorySkuOutput, struct in DMS Get Factory SKU +QmiMessageDmsGetHardwareRevisionOutput, struct in DMS Get Hardware Revision request
-QmiMessageDmsGetFirmwarePreferenceOutput, struct in DMS Get Firmware Preference +QmiMessageDmsGetIdsOutput, struct in DMS Get IDs request
-QmiMessageDmsGetFirmwarePreferenceOutputListImage, struct in DMS Get Firmware Preference +QmiMessageDmsGetManufacturerOutput, struct in DMS Get Manufacturer request
-QmiMessageDmsGetHardwareRevisionOutput, struct in DMS Get Hardware Revision +QmiMessageDmsGetModelOutput, struct in DMS Get Model request
-QmiMessageDmsGetIdsOutput, struct in DMS Get IDs +QmiMessageDmsGetMsisdnOutput, struct in DMS Get MSISDN request
-QmiMessageDmsGetManufacturerOutput, struct in DMS Get Manufacturer +QmiMessageDmsGetOperatingModeOutput, struct in DMS Get Operating Mode request
-QmiMessageDmsGetModelOutput, struct in DMS Get Model +QmiMessageDmsGetPowerStateOutput, struct in DMS Get Power State request
-QmiMessageDmsGetMsisdnOutput, struct in DMS Get MSISDN +QmiMessageDmsGetPrlVersionOutput, struct in DMS Get PRL Version request
-QmiMessageDmsGetOperatingModeOutput, struct in DMS Get Operating Mode +QmiMessageDmsGetRevisionOutput, struct in DMS Get Revision request
-QmiMessageDmsGetPowerStateOutput, struct in DMS Get Power State +QmiMessageDmsGetSoftwareVersionOutput, struct in DMS Get Software Version request
-QmiMessageDmsGetPrlVersionOutput, struct in DMS Get PRL Version +QmiMessageDmsGetStoredImageInfoInput, struct in DMS Get Stored Image Info request
-QmiMessageDmsGetRevisionOutput, struct in DMS Get Revision +QmiMessageDmsGetStoredImageInfoInputImage, struct in DMS Get Stored Image Info request
-QmiMessageDmsGetSoftwareVersionOutput, struct in DMS Get Software Version +QmiMessageDmsGetStoredImageInfoOutput, struct in DMS Get Stored Image Info request
-QmiMessageDmsGetStoredImageInfoInput, struct in DMS Get Stored Image Info +QmiMessageDmsGetSupportedMessagesOutput, struct in DMS Get Supported Messages request
-QmiMessageDmsGetStoredImageInfoInputImage, struct in DMS Get Stored Image Info +QmiMessageDmsGetTimeOutput, struct in DMS Get Time request
-QmiMessageDmsGetStoredImageInfoOutput, struct in DMS Get Stored Image Info +QmiMessageDmsGetUserLockStateOutput, struct in DMS Get User Lock State request
-QmiMessageDmsGetSupportedMessagesOutput, struct in DMS Get Supported Messages +QmiMessageDmsHpChangeDeviceModeInput, struct in DMS HP Change Device Mode request
-QmiMessageDmsGetTimeOutput, struct in DMS Get Time +QmiMessageDmsHpChangeDeviceModeOutput, struct in DMS HP Change Device Mode request
-QmiMessageDmsGetUserLockStateOutput, struct in DMS Get User Lock State +QmiMessageDmsListStoredImagesOutput, struct in DMS List Stored Images request
-QmiMessageDmsHpChangeDeviceModeInput, struct in DMS HP Change Device Mode +QmiMessageDmsListStoredImagesOutputListImage, struct in DMS List Stored Images request
-QmiMessageDmsHpChangeDeviceModeOutput, struct in DMS HP Change Device Mode +QmiMessageDmsListStoredImagesOutputListImageSublistSublistElement, struct in DMS List Stored Images request
-QmiMessageDmsListStoredImagesOutput, struct in DMS List Stored Images +QmiMessageDmsReadEriFileOutput, struct in DMS Read ERI File request
-QmiMessageDmsListStoredImagesOutputListImage, struct in DMS List Stored Images +QmiMessageDmsReadUserDataOutput, struct in DMS Read User Data request
-QmiMessageDmsListStoredImagesOutputListImageSublistSublistElement, struct in DMS List Stored Images +QmiMessageDmsResetOutput, struct in DMS Reset request
-QmiMessageDmsReadEriFileOutput, struct in DMS Read ERI File +QmiMessageDmsRestoreFactoryDefaultsInput, struct in DMS Restore Factory Defaults request
-QmiMessageDmsReadUserDataOutput, struct in DMS Read User Data +QmiMessageDmsRestoreFactoryDefaultsOutput, struct in DMS Restore Factory Defaults request
-QmiMessageDmsResetOutput, struct in DMS Reset +QmiMessageDmsSetAltNetConfigInput, struct in DMS Set Alt Net Config request
-QmiMessageDmsRestoreFactoryDefaultsInput, struct in DMS Restore Factory Defaults +QmiMessageDmsSetAltNetConfigOutput, struct in DMS Set Alt Net Config request
-QmiMessageDmsRestoreFactoryDefaultsOutput, struct in DMS Restore Factory Defaults +QmiMessageDmsSetBootImageDownloadModeInput, struct in DMS Set Boot Image Download Mode request
-QmiMessageDmsSetAltNetConfigInput, struct in DMS Set Alt Net Config +QmiMessageDmsSetBootImageDownloadModeOutput, struct in DMS Set Boot Image Download Mode request
-QmiMessageDmsSetAltNetConfigOutput, struct in DMS Set Alt Net Config +QmiMessageDmsSetEventReportInput, struct in DMS Set Event Report request
-QmiMessageDmsSetBootImageDownloadModeInput, struct in DMS Set Boot Image Download Mode +QmiMessageDmsSetEventReportOutput, struct in DMS Set Event Report request
-QmiMessageDmsSetBootImageDownloadModeOutput, struct in DMS Set Boot Image Download Mode +QmiMessageDmsSetFccAuthenticationOutput, struct in DMS Set FCC Authentication request
-QmiMessageDmsSetEventReportInput, struct in DMS Set Event Report +QmiMessageDmsSetFirmwareIdOutput, struct in DMS Set Firmware ID request
-QmiMessageDmsSetEventReportOutput, struct in DMS Set Event Report +QmiMessageDmsSetFirmwarePreferenceInput, struct in DMS Set Firmware Preference request
-QmiMessageDmsSetFccAuthenticationOutput, struct in DMS Set FCC Authentication +QmiMessageDmsSetFirmwarePreferenceInputListImage, struct in DMS Set Firmware Preference request
-QmiMessageDmsSetFirmwareIdOutput, struct in DMS Set Firmware ID +QmiMessageDmsSetFirmwarePreferenceOutput, struct in DMS Set Firmware Preference request
-QmiMessageDmsSetFirmwarePreferenceInput, struct in DMS Set Firmware Preference +QmiMessageDmsSetOperatingModeInput, struct in DMS Set Operating Mode request
-QmiMessageDmsSetFirmwarePreferenceInputListImage, struct in DMS Set Firmware Preference +QmiMessageDmsSetOperatingModeOutput, struct in DMS Set Operating Mode request
-QmiMessageDmsSetFirmwarePreferenceOutput, struct in DMS Set Firmware Preference +QmiMessageDmsSetServiceProgrammingCodeInput, struct in DMS Set Service Programming Code request
-QmiMessageDmsSetOperatingModeInput, struct in DMS Set Operating Mode +QmiMessageDmsSetServiceProgrammingCodeOutput, struct in DMS Set Service Programming Code request
-QmiMessageDmsSetOperatingModeOutput, struct in DMS Set Operating Mode +QmiMessageDmsSetTimeInput, struct in DMS Set Time request
-QmiMessageDmsSetServiceProgrammingCodeInput, struct in DMS Set Service Programming Code +QmiMessageDmsSetTimeOutput, struct in DMS Set Time request
-QmiMessageDmsSetServiceProgrammingCodeOutput, struct in DMS Set Service Programming Code +QmiMessageDmsSetUserLockCodeInput, struct in DMS Set User Lock Code request
-QmiMessageDmsSetTimeInput, struct in DMS Set Time +QmiMessageDmsSetUserLockCodeOutput, struct in DMS Set User Lock Code request
-QmiMessageDmsSetTimeOutput, struct in DMS Set Time +QmiMessageDmsSetUserLockStateInput, struct in DMS Set User Lock State request
-QmiMessageDmsSetUserLockCodeInput, struct in DMS Set User Lock Code +QmiMessageDmsSetUserLockStateOutput, struct in DMS Set User Lock State request
-QmiMessageDmsSetUserLockCodeOutput, struct in DMS Set User Lock Code +QmiMessageDmsSwiGetCurrentFirmwareOutput, struct in DMS Swi Get Current Firmware request
-QmiMessageDmsSetUserLockStateInput, struct in DMS Set User Lock State +QmiMessageDmsSwiGetUsbCompositionOutput, struct in DMS Swi Get USB Composition request
-QmiMessageDmsSetUserLockStateOutput, struct in DMS Set User Lock State +QmiMessageDmsSwiSetUsbCompositionInput, struct in DMS Swi Set USB Composition request
-QmiMessageDmsSwiGetCurrentFirmwareOutput, struct in DMS Swi Get Current Firmware +QmiMessageDmsSwiSetUsbCompositionOutput, struct in DMS Swi Set USB Composition request
-QmiMessageDmsUimChangePinInput, struct in DMS UIM Change PIN +QmiMessageDmsUimChangePinInput, struct in DMS UIM Change PIN request
-QmiMessageDmsUimChangePinOutput, struct in DMS UIM Change PIN +QmiMessageDmsUimChangePinOutput, struct in DMS UIM Change PIN request
-QmiMessageDmsUimGetCkStatusInput, struct in DMS UIM Get CK Status +QmiMessageDmsUimGetCkStatusInput, struct in DMS UIM Get CK Status request
-QmiMessageDmsUimGetCkStatusOutput, struct in DMS UIM Get CK Status +QmiMessageDmsUimGetCkStatusOutput, struct in DMS UIM Get CK Status request
-QmiMessageDmsUimGetIccidOutput, struct in DMS UIM Get ICCID +QmiMessageDmsUimGetIccidOutput, struct in DMS UIM Get ICCID request
-QmiMessageDmsUimGetImsiOutput, struct in DMS UIM Get IMSI +QmiMessageDmsUimGetImsiOutput, struct in DMS UIM Get IMSI request
-QmiMessageDmsUimGetPinStatusOutput, struct in DMS UIM Get PIN Status +QmiMessageDmsUimGetPinStatusOutput, struct in DMS UIM Get PIN Status request
-QmiMessageDmsUimGetStateOutput, struct in DMS UIM Get State +QmiMessageDmsUimGetStateOutput, struct in DMS UIM Get State request
-QmiMessageDmsUimSetCkProtectionInput, struct in DMS UIM Set CK Protection +QmiMessageDmsUimSetCkProtectionInput, struct in DMS UIM Set CK Protection request
-QmiMessageDmsUimSetCkProtectionOutput, struct in DMS UIM Set CK Protection +QmiMessageDmsUimSetCkProtectionOutput, struct in DMS UIM Set CK Protection request
-QmiMessageDmsUimSetPinProtectionInput, struct in DMS UIM Set PIN Protection +QmiMessageDmsUimSetPinProtectionInput, struct in DMS UIM Set PIN Protection request
-QmiMessageDmsUimSetPinProtectionOutput, struct in DMS UIM Set PIN Protection +QmiMessageDmsUimSetPinProtectionOutput, struct in DMS UIM Set PIN Protection request
-QmiMessageDmsUimUnblockCkInput, struct in DMS UIM Unblock CK +QmiMessageDmsUimUnblockCkInput, struct in DMS UIM Unblock CK request
-QmiMessageDmsUimUnblockCkOutput, struct in DMS UIM Unblock CK +QmiMessageDmsUimUnblockCkOutput, struct in DMS UIM Unblock CK request
-QmiMessageDmsUimUnblockPinInput, struct in DMS UIM Unblock PIN +QmiMessageDmsUimUnblockPinInput, struct in DMS UIM Unblock PIN request
-QmiMessageDmsUimUnblockPinOutput, struct in DMS UIM Unblock PIN +QmiMessageDmsUimUnblockPinOutput, struct in DMS UIM Unblock PIN request
-QmiMessageDmsUimVerifyPinInput, struct in DMS UIM Verify PIN +QmiMessageDmsUimVerifyPinInput, struct in DMS UIM Verify PIN request
-QmiMessageDmsUimVerifyPinOutput, struct in DMS UIM Verify PIN +QmiMessageDmsUimVerifyPinOutput, struct in DMS UIM Verify PIN request
-QmiMessageDmsValidateServiceProgrammingCodeInput, struct in DMS Validate Service Programming Code +QmiMessageDmsValidateServiceProgrammingCodeInput, struct in DMS Validate Service Programming Code request
-QmiMessageDmsValidateServiceProgrammingCodeOutput, struct in DMS Validate Service Programming Code +QmiMessageDmsValidateServiceProgrammingCodeOutput, struct in DMS Validate Service Programming Code request
-QmiMessageDmsWriteUserDataInput, struct in DMS Write User Data +QmiMessageDmsWriteUserDataInput, struct in DMS Write User Data request
-QmiMessageDmsWriteUserDataOutput, struct in DMS Write User Data +QmiMessageDmsWriteUserDataOutput, struct in DMS Write User Data request
@@ -3234,899 +4147,1051 @@
-QmiMessageNasConfigSignalInfoInput, struct in NAS Config Signal Info +QmiMessageLocDeleteAssistanceDataInput, struct in LOC Delete Assistance Data request +
+
+
+QmiMessageLocDeleteAssistanceDataInputDeleteSvInfoElement, struct in LOC Delete Assistance Data request +
+
+
+QmiMessageLocDeleteAssistanceDataOutput, struct in LOC Delete Assistance Data request
-QmiMessageNasConfigSignalInfoOutput, struct in NAS Config Signal Info +QmiMessageLocGetOperationModeOutput, struct in LOC Get Operation Mode request
-QmiMessageNasForceNetworkSearchOutput, struct in NAS Force Network Search +QmiMessageLocGetPredictedOrbitsDataSourceOutput, struct in LOC Get Predicted Orbits Data Source request
-QmiMessageNasGetCdmaPositionInfoOutput, struct in NAS Get CDMA Position Info +QmiMessageLocGetServerInput, struct in LOC Get Server request
-QmiMessageNasGetCdmaPositionInfoOutputCdmaPositionInfoBasestationsBasestation, struct in NAS Get CDMA Position Info +QmiMessageLocGetServerOutput, struct in LOC Get Server request
-QmiMessageNasGetCellLocationInfoOutput, struct in NAS Get Cell Location Info +QmiMessageLocInjectPredictedOrbitsDataInput, struct in LOC Inject Predicted Orbits Data request
-QmiMessageNasGetCellLocationInfoOutputGeranInfoCellElement, struct in NAS Get Cell Location Info +QmiMessageLocInjectPredictedOrbitsDataOutput, struct in LOC Inject Predicted Orbits Data request
-QmiMessageNasGetCellLocationInfoOutputInterfrequencyLteInfoFrequencyElement, struct in NAS Get Cell Location Info +QmiMessageLocInjectXtraDataInput, struct in LOC Inject Xtra Data request
-QmiMessageNasGetCellLocationInfoOutputInterfrequencyLteInfoFrequencyElementCellElement, struct in NAS Get Cell Location Info +QmiMessageLocInjectXtraDataOutput, struct in LOC Inject Xtra Data request
-QmiMessageNasGetCellLocationInfoOutputIntrafrequencyLteInfoCellElement, struct in NAS Get Cell Location Info +QmiMessageLocRegisterEventsInput, struct in LOC Register Events request
-QmiMessageNasGetCellLocationInfoOutputLteInfoNeighboringGsmFrequencyElement, struct in NAS Get Cell Location Info +QmiMessageLocRegisterEventsOutput, struct in LOC Register Events request
-QmiMessageNasGetCellLocationInfoOutputLteInfoNeighboringGsmFrequencyElementCellElement, struct in NAS Get Cell Location Info +QmiMessageLocSetOperationModeInput, struct in LOC Set Operation Mode request
-QmiMessageNasGetCellLocationInfoOutputLteInfoNeighboringWcdmaFrequencyElement, struct in NAS Get Cell Location Info +QmiMessageLocSetOperationModeOutput, struct in LOC Set Operation Mode request
-QmiMessageNasGetCellLocationInfoOutputLteInfoNeighboringWcdmaFrequencyElementCellElement, struct in NAS Get Cell Location Info +QmiMessageLocSetServerInput, struct in LOC Set Server request
-QmiMessageNasGetCellLocationInfoOutputUmtsInfoCellElement, struct in NAS Get Cell Location Info +QmiMessageLocSetServerOutput, struct in LOC Set Server request
-QmiMessageNasGetCellLocationInfoOutputUmtsInfoNeighboringGeranElement, struct in NAS Get Cell Location Info +QmiMessageLocStartInput, struct in LOC Start request
-QmiMessageNasGetCellLocationInfoOutputUmtsInfoNeighboringLteFrequencyElement, struct in NAS Get Cell Location Info +QmiMessageLocStartOutput, struct in LOC Start request
-QmiMessageNasGetHomeNetworkOutput, struct in NAS Get Home Network +QmiMessageLocStopInput, struct in LOC Stop request
-QmiMessageNasGetLteCphyCaInfoOutput, struct in NAS Get LTE Cphy CA Info +QmiMessageLocStopOutput, struct in LOC Stop request
-QmiMessageNasGetOperatorNameOutput, struct in NAS Get Operator Name +QmiMessageNasAttachDetachInput, struct in NAS Attach Detach request
-QmiMessageNasGetOperatorNameOutputOperatorPlmnListElement, struct in NAS Get Operator Name +QmiMessageNasAttachDetachOutput, struct in NAS Attach Detach request
-QmiMessageNasGetOperatorNameOutputOperatorPlmnNameElement, struct in NAS Get Operator Name +QmiMessageNasConfigSignalInfoInput, struct in NAS Config Signal Info request
-QmiMessageNasGetRfBandInformationOutput, struct in NAS Get RF Band Information +QmiMessageNasConfigSignalInfoOutput, struct in NAS Config Signal Info request
-QmiMessageNasGetRfBandInformationOutputListElement, struct in NAS Get RF Band Information +QmiMessageNasForceNetworkSearchOutput, struct in NAS Force Network Search request
-QmiMessageNasGetServingSystemOutput, struct in NAS Get Serving System +QmiMessageNasGetCdmaPositionInfoOutput, struct in NAS Get CDMA Position Info request
-QmiMessageNasGetServingSystemOutputRoamingIndicatorListElement, struct in NAS Get Serving System +QmiMessageNasGetCdmaPositionInfoOutputCdmaPositionInfoBasestationsBasestation, struct in NAS Get CDMA Position Info request
-QmiMessageNasGetSignalInfoOutput, struct in NAS Get Signal Info +QmiMessageNasGetCellLocationInfoOutput, struct in NAS Get Cell Location Info request
-QmiMessageNasGetSignalStrengthInput, struct in NAS Get Signal Strength +QmiMessageNasGetCellLocationInfoOutputGeranInfoCellElement, struct in NAS Get Cell Location Info request
-QmiMessageNasGetSignalStrengthOutput, struct in NAS Get Signal Strength +QmiMessageNasGetCellLocationInfoOutputInterfrequencyLteInfoFrequencyElement, struct in NAS Get Cell Location Info request
-QmiMessageNasGetSignalStrengthOutputEcioListElement, struct in NAS Get Signal Strength +QmiMessageNasGetCellLocationInfoOutputInterfrequencyLteInfoFrequencyElementCellElement, struct in NAS Get Cell Location Info request
-QmiMessageNasGetSignalStrengthOutputErrorRateListElement, struct in NAS Get Signal Strength +QmiMessageNasGetCellLocationInfoOutputIntrafrequencyLteInfoCellElement, struct in NAS Get Cell Location Info request
-QmiMessageNasGetSignalStrengthOutputRssiListElement, struct in NAS Get Signal Strength +QmiMessageNasGetCellLocationInfoOutputLteInfoNeighboringGsmFrequencyElement, struct in NAS Get Cell Location Info request
-QmiMessageNasGetSignalStrengthOutputStrengthListElement, struct in NAS Get Signal Strength +QmiMessageNasGetCellLocationInfoOutputLteInfoNeighboringGsmFrequencyElementCellElement, struct in NAS Get Cell Location Info request
-QmiMessageNasGetSupportedMessagesOutput, struct in NAS Get Supported Messages +QmiMessageNasGetCellLocationInfoOutputLteInfoNeighboringWcdmaFrequencyElement, struct in NAS Get Cell Location Info request
-QmiMessageNasGetSystemInfoOutput, struct in NAS Get System Info +QmiMessageNasGetCellLocationInfoOutputLteInfoNeighboringWcdmaFrequencyElementCellElement, struct in NAS Get Cell Location Info request
-QmiMessageNasGetSystemSelectionPreferenceOutput, struct in NAS Get System Selection Preference +QmiMessageNasGetCellLocationInfoOutputUmtsInfoCellElement, struct in NAS Get Cell Location Info request
-QmiMessageNasGetTechnologyPreferenceOutput, struct in NAS Get Technology Preference +QmiMessageNasGetCellLocationInfoOutputUmtsInfoNeighboringGeranElement, struct in NAS Get Cell Location Info request
-QmiMessageNasGetTxRxInfoInput, struct in NAS Get Tx Rx Info +QmiMessageNasGetCellLocationInfoOutputUmtsInfoNeighboringLteFrequencyElement, struct in NAS Get Cell Location Info request
-QmiMessageNasGetTxRxInfoOutput, struct in NAS Get Tx Rx Info +QmiMessageNasGetHomeNetworkOutput, struct in NAS Get Home Network request
-QmiMessageNasInitiateNetworkRegisterInput, struct in NAS Initiate Network Register +QmiMessageNasGetLteCphyCaInfoOutput, struct in NAS Get LTE Cphy CA Info request
-QmiMessageNasInitiateNetworkRegisterOutput, struct in NAS Initiate Network Register +QmiMessageNasGetLteCphyCaInfoOutputPhyCaAggSecondaryCellsSsc, struct in NAS Get LTE Cphy CA Info request
-QmiMessageNasNetworkScanInput, struct in NAS Network Scan +QmiMessageNasGetOperatorNameOutput, struct in NAS Get Operator Name request
-QmiMessageNasNetworkScanOutput, struct in NAS Network Scan +QmiMessageNasGetOperatorNameOutputOperatorPlmnListElement, struct in NAS Get Operator Name request
-QmiMessageNasNetworkScanOutputMncPcsDigitIncludeStatusElement, struct in NAS Network Scan +QmiMessageNasGetOperatorNameOutputOperatorPlmnNameElement, struct in NAS Get Operator Name request
-QmiMessageNasNetworkScanOutputNetworkInformationElement, struct in NAS Network Scan +QmiMessageNasGetRfBandInformationOutput, struct in NAS Get RF Band Information request
-QmiMessageNasNetworkScanOutputRadioAccessTechnologyElement, struct in NAS Network Scan +QmiMessageNasGetRfBandInformationOutputListElement, struct in NAS Get RF Band Information request
-QmiMessageNasRegisterIndicationsInput, struct in NAS Register Indications +QmiMessageNasGetServingSystemOutput, struct in NAS Get Serving System request
-QmiMessageNasRegisterIndicationsOutput, struct in NAS Register Indications +QmiMessageNasGetServingSystemOutputRoamingIndicatorListElement, struct in NAS Get Serving System request
-QmiMessageNasResetOutput, struct in NAS Reset +QmiMessageNasGetSignalInfoOutput, struct in NAS Get Signal Info request
-QmiMessageNasSetEventReportInput, struct in NAS Set Event Report +QmiMessageNasGetSignalStrengthInput, struct in NAS Get Signal Strength request
-QmiMessageNasSetEventReportOutput, struct in NAS Set Event Report +QmiMessageNasGetSignalStrengthOutput, struct in NAS Get Signal Strength request
-QmiMessageNasSetSystemSelectionPreferenceInput, struct in NAS Set System Selection Preference +QmiMessageNasGetSignalStrengthOutputEcioListElement, struct in NAS Get Signal Strength request
-QmiMessageNasSetSystemSelectionPreferenceOutput, struct in NAS Set System Selection Preference +QmiMessageNasGetSignalStrengthOutputErrorRateListElement, struct in NAS Get Signal Strength request
-QmiMessageNasSetTechnologyPreferenceInput, struct in NAS Set Technology Preference +QmiMessageNasGetSignalStrengthOutputRssiListElement, struct in NAS Get Signal Strength request
-QmiMessageNasSetTechnologyPreferenceOutput, struct in NAS Set Technology Preference +QmiMessageNasGetSignalStrengthOutputStrengthListElement, struct in NAS Get Signal Strength request
-QmiMessageOmaCancelSessionOutput, struct in OMA Cancel Session +QmiMessageNasGetSupportedMessagesOutput, struct in NAS Get Supported Messages request
-QmiMessageOmaGetFeatureSettingOutput, struct in OMA Get Feature Setting +QmiMessageNasGetSystemInfoOutput, struct in NAS Get System Info request
-QmiMessageOmaGetSessionInfoOutput, struct in OMA Get Session Info +QmiMessageNasGetSystemSelectionPreferenceOutput, struct in NAS Get System Selection Preference request
-QmiMessageOmaResetOutput, struct in OMA Reset +QmiMessageNasGetTechnologyPreferenceOutput, struct in NAS Get Technology Preference request
-QmiMessageOmaSendSelectionInput, struct in OMA Send Selection +QmiMessageNasGetTxRxInfoInput, struct in NAS Get Tx Rx Info request
-QmiMessageOmaSendSelectionOutput, struct in OMA Send Selection +QmiMessageNasGetTxRxInfoOutput, struct in NAS Get Tx Rx Info request
-QmiMessageOmaSetEventReportInput, struct in OMA Set Event Report +QmiMessageNasInitiateNetworkRegisterInput, struct in NAS Initiate Network Register request
-QmiMessageOmaSetEventReportOutput, struct in OMA Set Event Report +QmiMessageNasInitiateNetworkRegisterOutput, struct in NAS Initiate Network Register request
-QmiMessageOmaSetFeatureSettingInput, struct in OMA Set Feature Setting +QmiMessageNasNetworkScanInput, struct in NAS Network Scan request
-QmiMessageOmaSetFeatureSettingOutput, struct in OMA Set Feature Setting +QmiMessageNasNetworkScanOutput, struct in NAS Network Scan request
-QmiMessageOmaStartSessionInput, struct in OMA Start Session +QmiMessageNasNetworkScanOutputMncPcsDigitIncludeStatusElement, struct in NAS Network Scan request
-QmiMessageOmaStartSessionOutput, struct in OMA Start Session +QmiMessageNasNetworkScanOutputNetworkInformationElement, struct in NAS Network Scan request
-QmiMessagePbmGetAllCapabilitiesOutput, struct in PBM Get All Capabilities +QmiMessageNasNetworkScanOutputRadioAccessTechnologyElement, struct in NAS Network Scan request
-QmiMessagePbmGetAllCapabilitiesOutputAdditionalNumberAlphaStringCapabilityElement, struct in PBM Get All Capabilities +QmiMessageNasRegisterIndicationsInput, struct in NAS Register Indications request
-QmiMessagePbmGetAllCapabilitiesOutputAdditionalNumberCapabilityElement, struct in PBM Get All Capabilities +QmiMessageNasRegisterIndicationsOutput, struct in NAS Register Indications request
-QmiMessagePbmGetAllCapabilitiesOutputCapabilityBasicInformationElement, struct in PBM Get All Capabilities +QmiMessageNasResetOutput, struct in NAS Reset request
-QmiMessagePbmGetAllCapabilitiesOutputCapabilityBasicInformationElementPhonebooksElement, struct in PBM Get All Capabilities +QmiMessageNasSetEventReportInput, struct in NAS Set Event Report request
-QmiMessagePbmGetAllCapabilitiesOutputEmailCapabilityElement, struct in PBM Get All Capabilities +QmiMessageNasSetEventReportOutput, struct in NAS Set Event Report request
-QmiMessagePbmGetAllCapabilitiesOutputGroupCapabilityElement, struct in PBM Get All Capabilities +QmiMessageNasSetSystemSelectionPreferenceInput, struct in NAS Set System Selection Preference request
-QmiMessagePbmGetAllCapabilitiesOutputGroupingInformationAlphaStringCapabilityElement, struct in PBM Get All Capabilities +QmiMessageNasSetSystemSelectionPreferenceOutput, struct in NAS Set System Selection Preference request
-QmiMessagePbmGetAllCapabilitiesOutputHiddenRecordsCapabilityElement, struct in PBM Get All Capabilities +QmiMessageNasSetTechnologyPreferenceInput, struct in NAS Set Technology Preference request
-QmiMessagePbmGetAllCapabilitiesOutputSecondNameCapabilityElement, struct in PBM Get All Capabilities +QmiMessageNasSetTechnologyPreferenceOutput, struct in NAS Set Technology Preference request
-QmiMessagePbmGetCapabilitiesInput, struct in PBM Get Capabilities +QmiMessageOmaCancelSessionOutput, struct in OMA Cancel Session request
-QmiMessagePbmGetCapabilitiesOutput, struct in PBM Get Capabilities +QmiMessageOmaGetFeatureSettingOutput, struct in OMA Get Feature Setting request
-QmiMessagePbmIndicationRegisterInput, struct in PBM Indication Register +QmiMessageOmaGetSessionInfoOutput, struct in OMA Get Session Info request
-QmiMessagePbmIndicationRegisterOutput, struct in PBM Indication Register +QmiMessageOmaResetOutput, struct in OMA Reset request
-QmiMessagePdcActivateConfigInput, struct in PDC Activate Config +QmiMessageOmaSendSelectionInput, struct in OMA Send Selection request
-QmiMessagePdcActivateConfigOutput, struct in PDC Activate Config +QmiMessageOmaSendSelectionOutput, struct in OMA Send Selection request
-QmiMessagePdcConfigChangeInput, struct in PDC Config Change +QmiMessageOmaSetEventReportInput, struct in OMA Set Event Report request
-QmiMessagePdcConfigChangeOutput, struct in PDC Config Change +QmiMessageOmaSetEventReportOutput, struct in OMA Set Event Report request
-QmiMessagePdcDeactivateConfigInput, struct in PDC Deactivate Config +QmiMessageOmaSetFeatureSettingInput, struct in OMA Set Feature Setting request
-QmiMessagePdcDeactivateConfigOutput, struct in PDC Deactivate Config +QmiMessageOmaSetFeatureSettingOutput, struct in OMA Set Feature Setting request
-QmiMessagePdcDeleteConfigInput, struct in PDC Delete Config +QmiMessageOmaStartSessionInput, struct in OMA Start Session request
-QmiMessagePdcDeleteConfigOutput, struct in PDC Delete Config +QmiMessageOmaStartSessionOutput, struct in OMA Start Session request
-QmiMessagePdcGetConfigInfoInput, struct in PDC Get Config Info +QmiMessagePbmGetAllCapabilitiesOutput, struct in PBM Get All Capabilities request
-QmiMessagePdcGetConfigInfoOutput, struct in PDC Get Config Info +QmiMessagePbmGetAllCapabilitiesOutputAdditionalNumberAlphaStringCapabilityElement, struct in PBM Get All Capabilities request
-QmiMessagePdcGetConfigLimitsInput, struct in PDC Get Config Limits +QmiMessagePbmGetAllCapabilitiesOutputAdditionalNumberCapabilityElement, struct in PBM Get All Capabilities request
-QmiMessagePdcGetConfigLimitsOutput, struct in PDC Get Config Limits +QmiMessagePbmGetAllCapabilitiesOutputCapabilityBasicInformationElement, struct in PBM Get All Capabilities request
-QmiMessagePdcGetDefaultConfigInfoInput, struct in PDC Get Default Config Info +QmiMessagePbmGetAllCapabilitiesOutputCapabilityBasicInformationElementPhonebooksElement, struct in PBM Get All Capabilities request
-QmiMessagePdcGetDefaultConfigInfoOutput, struct in PDC Get Default Config Info +QmiMessagePbmGetAllCapabilitiesOutputEmailCapabilityElement, struct in PBM Get All Capabilities request
-QmiMessagePdcGetSelectedConfigInput, struct in PDC Get Selected Config +QmiMessagePbmGetAllCapabilitiesOutputGroupCapabilityElement, struct in PBM Get All Capabilities request
-QmiMessagePdcGetSelectedConfigOutput, struct in PDC Get Selected Config +QmiMessagePbmGetAllCapabilitiesOutputGroupingInformationAlphaStringCapabilityElement, struct in PBM Get All Capabilities request
-QmiMessagePdcListConfigsInput, struct in PDC List Configs +QmiMessagePbmGetAllCapabilitiesOutputHiddenRecordsCapabilityElement, struct in PBM Get All Capabilities request
-QmiMessagePdcListConfigsOutput, struct in PDC List Configs +QmiMessagePbmGetAllCapabilitiesOutputSecondNameCapabilityElement, struct in PBM Get All Capabilities request
-QmiMessagePdcLoadConfigInput, struct in PDC Load Config +QmiMessagePbmGetCapabilitiesInput, struct in PBM Get Capabilities request
-QmiMessagePdcLoadConfigOutput, struct in PDC Load Config +QmiMessagePbmGetCapabilitiesOutput, struct in PBM Get Capabilities request
-QmiMessagePdcRegisterInput, struct in PDC Register +QmiMessagePbmIndicationRegisterInput, struct in PBM Indication Register request
-QmiMessagePdcRegisterOutput, struct in PDC Register +QmiMessagePbmIndicationRegisterOutput, struct in PBM Indication Register request
-QmiMessagePdcResetOutput, struct in PDC Reset +QmiMessagePdcActivateConfigInput, struct in PDC Activate Config request
-QmiMessagePdcSetSelectedConfigInput, struct in PDC Set Selected Config +QmiMessagePdcActivateConfigOutput, struct in PDC Activate Config request
-QmiMessagePdcSetSelectedConfigOutput, struct in PDC Set Selected Config +QmiMessagePdcConfigChangeInput, struct in PDC Config Change request
-QmiMessagePdsGetAgpsConfigInput, struct in PDS Get AGPS Config +QmiMessagePdcConfigChangeOutput, struct in PDC Config Change request
-QmiMessagePdsGetAgpsConfigOutput, struct in PDS Get AGPS Config +QmiMessagePdcDeactivateConfigInput, struct in PDC Deactivate Config request
-QmiMessagePdsGetAutoTrackingStateOutput, struct in PDS Get Auto Tracking State +QmiMessagePdcDeactivateConfigOutput, struct in PDC Deactivate Config request
-QmiMessagePdsGetDefaultTrackingSessionOutput, struct in PDS Get Default Tracking Session +QmiMessagePdcDeleteConfigInput, struct in PDC Delete Config request
-QmiMessagePdsGetGpsServiceStateOutput, struct in PDS Get GPS Service State +QmiMessagePdcDeleteConfigOutput, struct in PDC Delete Config request
-QmiMessagePdsResetOutput, struct in PDS Reset +QmiMessagePdcGetConfigInfoInput, struct in PDC Get Config Info request
-QmiMessagePdsSetAgpsConfigInput, struct in PDS Set AGPS Config +QmiMessagePdcGetConfigInfoOutput, struct in PDC Get Config Info request
-QmiMessagePdsSetAgpsConfigOutput, struct in PDS Set AGPS Config +QmiMessagePdcGetConfigLimitsInput, struct in PDC Get Config Limits request
-QmiMessagePdsSetAutoTrackingStateInput, struct in PDS Set Auto Tracking State +QmiMessagePdcGetConfigLimitsOutput, struct in PDC Get Config Limits request
-QmiMessagePdsSetAutoTrackingStateOutput, struct in PDS Set Auto Tracking State +QmiMessagePdcGetDefaultConfigInfoInput, struct in PDC Get Default Config Info request
-QmiMessagePdsSetDefaultTrackingSessionInput, struct in PDS Set Default Tracking Session +QmiMessagePdcGetDefaultConfigInfoOutput, struct in PDC Get Default Config Info request
-QmiMessagePdsSetDefaultTrackingSessionOutput, struct in PDS Set Default Tracking Session +QmiMessagePdcGetSelectedConfigInput, struct in PDC Get Selected Config request
-QmiMessagePdsSetEventReportInput, struct in PDS Set Event Report +QmiMessagePdcGetSelectedConfigOutput, struct in PDC Get Selected Config request
-QmiMessagePdsSetEventReportOutput, struct in PDS Set Event Report +QmiMessagePdcListConfigsInput, struct in PDC List Configs request
-QmiMessagePdsSetGpsServiceStateInput, struct in PDS Set GPS Service State +QmiMessagePdcListConfigsOutput, struct in PDC List Configs request
-QmiMessagePdsSetGpsServiceStateOutput, struct in PDS Set GPS Service State +QmiMessagePdcLoadConfigInput, struct in PDC Load Config request
-QmiMessageUimChangePinInput, struct in UIM Change PIN +QmiMessagePdcLoadConfigOutput, struct in PDC Load Config request
-QmiMessageUimChangePinOutput, struct in UIM Change PIN +QmiMessagePdcRegisterInput, struct in PDC Register request
-QmiMessageUimGetCardStatusOutput, struct in UIM Get Card Status +QmiMessagePdcRegisterOutput, struct in PDC Register request
-QmiMessageUimGetCardStatusOutputCardStatusCardsElement, struct in UIM Get Card Status +QmiMessagePdcResetOutput, struct in PDC Reset request
-QmiMessageUimGetCardStatusOutputCardStatusCardsElementApplicationsElement, struct in UIM Get Card Status +QmiMessagePdcSetSelectedConfigInput, struct in PDC Set Selected Config request
-QmiMessageUimGetFileAttributesInput, struct in UIM Get File Attributes +QmiMessagePdcSetSelectedConfigOutput, struct in PDC Set Selected Config request
-QmiMessageUimGetFileAttributesOutput, struct in UIM Get File Attributes +QmiMessagePdsGetAgpsConfigInput, struct in PDS Get AGPS Config request
-QmiMessageUimGetSupportedMessagesOutput, struct in UIM Get Supported Messages +QmiMessagePdsGetAgpsConfigOutput, struct in PDS Get AGPS Config request
-QmiMessageUimPowerOffSimInput, struct in UIM Power Off SIM +QmiMessagePdsGetAutoTrackingStateOutput, struct in PDS Get Auto Tracking State request
-QmiMessageUimPowerOffSimOutput, struct in UIM Power Off SIM +QmiMessagePdsGetDefaultTrackingSessionOutput, struct in PDS Get Default Tracking Session request
-QmiMessageUimPowerOnSimInput, struct in UIM Power On SIM +QmiMessagePdsGetGpsServiceStateOutput, struct in PDS Get GPS Service State request
-QmiMessageUimPowerOnSimOutput, struct in UIM Power On SIM +QmiMessagePdsResetOutput, struct in PDS Reset request
-QmiMessageUimReadRecordInput, struct in UIM Read Record +QmiMessagePdsSetAgpsConfigInput, struct in PDS Set AGPS Config request
-QmiMessageUimReadRecordOutput, struct in UIM Read Record +QmiMessagePdsSetAgpsConfigOutput, struct in PDS Set AGPS Config request
-QmiMessageUimReadTransparentInput, struct in UIM Read Transparent +QmiMessagePdsSetAutoTrackingStateInput, struct in PDS Set Auto Tracking State request
-QmiMessageUimReadTransparentOutput, struct in UIM Read Transparent +QmiMessagePdsSetAutoTrackingStateOutput, struct in PDS Set Auto Tracking State request
-QmiMessageUimResetOutput, struct in UIM Reset +QmiMessagePdsSetDefaultTrackingSessionInput, struct in PDS Set Default Tracking Session request
-QmiMessageUimSetPinProtectionInput, struct in UIM Set PIN Protection +QmiMessagePdsSetDefaultTrackingSessionOutput, struct in PDS Set Default Tracking Session request
-QmiMessageUimSetPinProtectionOutput, struct in UIM Set PIN Protection +QmiMessagePdsSetEventReportInput, struct in PDS Set Event Report request
-QmiMessageUimUnblockPinInput, struct in UIM Unblock PIN +QmiMessagePdsSetEventReportOutput, struct in PDS Set Event Report request
-QmiMessageUimUnblockPinOutput, struct in UIM Unblock PIN +QmiMessagePdsSetGpsServiceStateInput, struct in PDS Set GPS Service State request
-QmiMessageUimVerifyPinInput, struct in UIM Verify PIN +QmiMessagePdsSetGpsServiceStateOutput, struct in PDS Set GPS Service State request
-QmiMessageUimVerifyPinOutput, struct in UIM Verify PIN +QmiMessageQosGetFlowStatusInput, struct in QOS Get Flow Status request
-QmiMessageVoiceAnswerCallInput, struct in VOICE Answer Call +QmiMessageQosGetFlowStatusOutput, struct in QOS Get Flow Status request
-QmiMessageVoiceAnswerCallOutput, struct in VOICE Answer Call +QmiMessageQosGetNetworkStatusOutput, struct in QOS Get Network Status request
-QmiMessageVoiceDialCallInput, struct in VOICE Dial Call +QmiMessageQosResetOutput, struct in QOS Reset request
-QmiMessageVoiceDialCallOutput, struct in VOICE Dial Call +QmiMessageQosSwiReadDataStatsInput, struct in QOS Swi Read Data Stats request
-QmiMessageVoiceEndCallInput, struct in VOICE End Call +QmiMessageQosSwiReadDataStatsOutput, struct in QOS Swi Read Data Stats request
-QmiMessageVoiceEndCallOutput, struct in VOICE End Call +QmiMessageQosSwiReadDataStatsOutputFlowElement, struct in QOS Swi Read Data Stats request
-QmiMessageVoiceGetConfigInput, struct in VOICE Get Config +QmiMessageUimChangePinInput, struct in UIM Change PIN request
-QmiMessageVoiceGetConfigOutput, struct in VOICE Get Config +QmiMessageUimChangePinOutput, struct in UIM Change PIN request
-QmiMessageVoiceGetSupportedMessagesOutput, struct in VOICE Get Supported Messages +QmiMessageUimGetCardStatusOutput, struct in UIM Get Card Status request
-QmiMessageWdaGetDataFormatOutput, struct in WDA Get Data Format +QmiMessageUimGetCardStatusOutputCardStatusCardsElement, struct in UIM Get Card Status request
-QmiMessageWdaGetSupportedMessagesOutput, struct in WDA Get Supported Messages +QmiMessageUimGetCardStatusOutputCardStatusCardsElementApplicationsElement, struct in UIM Get Card Status request
-QmiMessageWdaSetDataFormatInput, struct in WDA Set Data Format +QmiMessageUimGetFileAttributesInput, struct in UIM Get File Attributes request
-QmiMessageWdaSetDataFormatOutput, struct in WDA Set Data Format +QmiMessageUimGetFileAttributesOutput, struct in UIM Get File Attributes request
-QmiMessageWdsBindMuxDataPortInput, struct in WDS Bind Mux Data Port +QmiMessageUimGetSupportedMessagesOutput, struct in UIM Get Supported Messages request
-QmiMessageWdsBindMuxDataPortOutput, struct in WDS Bind Mux Data Port +QmiMessageUimPowerOffSimInput, struct in UIM Power Off SIM request
-QmiMessageWdsCreateProfileInput, struct in WDS Create Profile +QmiMessageUimPowerOffSimOutput, struct in UIM Power Off SIM request
-QmiMessageWdsCreateProfileOutput, struct in WDS Create Profile +QmiMessageUimPowerOnSimInput, struct in UIM Power On SIM request
-QmiMessageWdsDeleteProfileInput, struct in WDS Delete Profile +QmiMessageUimPowerOnSimOutput, struct in UIM Power On SIM request
-QmiMessageWdsDeleteProfileOutput, struct in WDS Delete Profile +QmiMessageUimReadRecordInput, struct in UIM Read Record request
-QmiMessageWdsGetAutoconnectSettingsOutput, struct in WDS Get Autoconnect Settings +QmiMessageUimReadRecordOutput, struct in UIM Read Record request
-QmiMessageWdsGetCurrentDataBearerTechnologyOutput, struct in WDS Get Current Data Bearer Technology +QmiMessageUimReadTransparentInput, struct in UIM Read Transparent request
-QmiMessageWdsGetCurrentSettingsInput, struct in WDS Get Current Settings +QmiMessageUimReadTransparentOutput, struct in UIM Read Transparent request
-QmiMessageWdsGetCurrentSettingsOutput, struct in WDS Get Current Settings +QmiMessageUimResetOutput, struct in UIM Reset request
-QmiMessageWdsGetDataBearerTechnologyOutput, struct in WDS Get Data Bearer Technology +QmiMessageUimSetPinProtectionInput, struct in UIM Set PIN Protection request
-QmiMessageWdsGetDefaultSettingsInput, struct in WDS Get Default Settings +QmiMessageUimSetPinProtectionOutput, struct in UIM Set PIN Protection request
-QmiMessageWdsGetDefaultSettingsOutput, struct in WDS Get Default Settings +QmiMessageUimUnblockPinInput, struct in UIM Unblock PIN request
-QmiMessageWdsGetDormancyStatusOutput, struct in WDS Get Dormancy Status +QmiMessageUimUnblockPinOutput, struct in UIM Unblock PIN request
-QmiMessageWdsGetPacketServiceStatusOutput, struct in WDS Get Packet Service Status +QmiMessageUimVerifyPinInput, struct in UIM Verify PIN request
-QmiMessageWdsGetPacketStatisticsInput, struct in WDS Get Packet Statistics +QmiMessageUimVerifyPinOutput, struct in UIM Verify PIN request
-QmiMessageWdsGetPacketStatisticsOutput, struct in WDS Get Packet Statistics +QmiMessageVoiceAnswerCallInput, struct in VOICE Answer Call request
-QmiMessageWdsGetPdnThrottleInfoInput, struct in WDS Get PDN Throttle Info +QmiMessageVoiceAnswerCallOutput, struct in VOICE Answer Call request
-QmiMessageWdsGetPdnThrottleInfoOutput, struct in WDS Get PDN Throttle Info +QmiMessageVoiceDialCallInput, struct in VOICE Dial Call request
-QmiMessageWdsGetPdnThrottleInfoOutputInfoElement, struct in WDS Get PDN Throttle Info +QmiMessageVoiceDialCallOutput, struct in VOICE Dial Call request
-QmiMessageWdsGetProfileListInput, struct in WDS Get Profile List +QmiMessageVoiceEndCallInput, struct in VOICE End Call request
-QmiMessageWdsGetProfileListOutput, struct in WDS Get Profile List +QmiMessageVoiceEndCallOutput, struct in VOICE End Call request
-QmiMessageWdsGetProfileListOutputProfileListProfile, struct in WDS Get Profile List +QmiMessageVoiceGetConfigInput, struct in VOICE Get Config request
-QmiMessageWdsGetProfileSettingsInput, struct in WDS Get Profile Settings +QmiMessageVoiceGetConfigOutput, struct in VOICE Get Config request
-QmiMessageWdsGetProfileSettingsOutput, struct in WDS Get Profile Settings +QmiMessageVoiceGetSupportedMessagesOutput, struct in VOICE Get Supported Messages request
-QmiMessageWdsGetSupportedMessagesOutput, struct in WDS Get Supported Messages +QmiMessageWdaGetDataFormatOutput, struct in WDA Get Data Format request
-QmiMessageWdsGoActiveOutput, struct in WDS Go Active +QmiMessageWdaGetSupportedMessagesOutput, struct in WDA Get Supported Messages request
-QmiMessageWdsGoDormantOutput, struct in WDS Go Dormant +QmiMessageWdaSetDataFormatInput, struct in WDA Set Data Format request
-QmiMessageWdsModifyProfileInput, struct in WDS Modify Profile +QmiMessageWdaSetDataFormatOutput, struct in WDA Set Data Format request
-QmiMessageWdsModifyProfileOutput, struct in WDS Modify Profile +QmiMessageWdsBindMuxDataPortInput, struct in WDS Bind Mux Data Port request
-QmiMessageWdsResetOutput, struct in WDS Reset +QmiMessageWdsBindMuxDataPortOutput, struct in WDS Bind Mux Data Port request
-QmiMessageWdsSetAutoconnectSettingsInput, struct in WDS Set Autoconnect Settings +QmiMessageWdsCreateProfileInput, struct in WDS Create Profile request
-QmiMessageWdsSetAutoconnectSettingsOutput, struct in WDS Set Autoconnect Settings +QmiMessageWdsCreateProfileOutput, struct in WDS Create Profile request
-QmiMessageWdsSetEventReportInput, struct in WDS Set Event Report +QmiMessageWdsDeleteProfileInput, struct in WDS Delete Profile request
-QmiMessageWdsSetEventReportOutput, struct in WDS Set Event Report +QmiMessageWdsDeleteProfileOutput, struct in WDS Delete Profile request
-QmiMessageWdsSetIpFamilyInput, struct in WDS Set IP Family +QmiMessageWdsGetAutoconnectSettingsOutput, struct in WDS Get Autoconnect Settings request
-QmiMessageWdsSetIpFamilyOutput, struct in WDS Set IP Family +QmiMessageWdsGetChannelRatesOutput, struct in WDS Get Channel Rates request
-QmiMessageWdsStartNetworkInput, struct in WDS Start Network +QmiMessageWdsGetCurrentDataBearerTechnologyOutput, struct in WDS Get Current Data Bearer Technology request
-QmiMessageWdsStartNetworkOutput, struct in WDS Start Network +QmiMessageWdsGetCurrentSettingsInput, struct in WDS Get Current Settings request
-QmiMessageWdsStopNetworkInput, struct in WDS Stop Network +QmiMessageWdsGetCurrentSettingsOutput, struct in WDS Get Current Settings request
-QmiMessageWdsStopNetworkOutput, struct in WDS Stop Network +QmiMessageWdsGetDataBearerTechnologyOutput, struct in WDS Get Data Bearer Technology request
-QmiMessageWmsDeleteInput, struct in WMS Delete +QmiMessageWdsGetDefaultProfileNumInput, struct in WDS Get Default Profile Num request
-QmiMessageWmsDeleteOutput, struct in WMS Delete +QmiMessageWdsGetDefaultProfileNumOutput, struct in WDS Get Default Profile Num request
-QmiMessageWmsGetMessageProtocolOutput, struct in WMS Get Message Protocol +QmiMessageWdsGetDefaultSettingsInput, struct in WDS Get Default Settings request
-QmiMessageWmsGetRoutesOutput, struct in WMS Get Routes +QmiMessageWdsGetDefaultSettingsOutput, struct in WDS Get Default Settings request
-QmiMessageWmsGetRoutesOutputRouteListElement, struct in WMS Get Routes +QmiMessageWdsGetDormancyStatusOutput, struct in WDS Get Dormancy Status request
-QmiMessageWmsGetSupportedMessagesOutput, struct in WMS Get Supported Messages +QmiMessageWdsGetPacketServiceStatusOutput, struct in WDS Get Packet Service Status request
-QmiMessageWmsListMessagesInput, struct in WMS List Messages +QmiMessageWdsGetPacketStatisticsInput, struct in WDS Get Packet Statistics request
-QmiMessageWmsListMessagesOutput, struct in WMS List Messages +QmiMessageWdsGetPacketStatisticsOutput, struct in WDS Get Packet Statistics request
-QmiMessageWmsListMessagesOutputMessageListElement, struct in WMS List Messages +QmiMessageWdsGetPdnThrottleInfoInput, struct in WDS Get PDN Throttle Info request
-QmiMessageWmsModifyTagInput, struct in WMS Modify Tag +QmiMessageWdsGetPdnThrottleInfoOutput, struct in WDS Get PDN Throttle Info request
-QmiMessageWmsModifyTagOutput, struct in WMS Modify Tag +QmiMessageWdsGetPdnThrottleInfoOutputInfoElement, struct in WDS Get PDN Throttle Info request
-QmiMessageWmsRawReadInput, struct in WMS Raw Read +QmiMessageWdsGetProfileListInput, struct in WDS Get Profile List request
-QmiMessageWmsRawReadOutput, struct in WMS Raw Read +QmiMessageWdsGetProfileListOutput, struct in WDS Get Profile List request
-QmiMessageWmsRawSendInput, struct in WMS Raw Send +QmiMessageWdsGetProfileListOutputProfileListProfile, struct in WDS Get Profile List request
-QmiMessageWmsRawSendOutput, struct in WMS Raw Send +QmiMessageWdsGetProfileSettingsInput, struct in WDS Get Profile Settings request
-QmiMessageWmsRawWriteInput, struct in WMS Raw Write +QmiMessageWdsGetProfileSettingsOutput, struct in WDS Get Profile Settings request
-QmiMessageWmsRawWriteOutput, struct in WMS Raw Write +QmiMessageWdsGetSupportedMessagesOutput, struct in WDS Get Supported Messages request
-QmiMessageWmsResetOutput, struct in WMS Reset +QmiMessageWdsGoActiveOutput, struct in WDS Go Active request
-QmiMessageWmsSendFromMemoryStorageInput, struct in WMS Send From Memory Storage +QmiMessageWdsGoDormantOutput, struct in WDS Go Dormant request
-QmiMessageWmsSendFromMemoryStorageOutput, struct in WMS Send From Memory Storage +QmiMessageWdsModifyProfileInput, struct in WDS Modify Profile request
-QmiMessageWmsSetEventReportInput, struct in WMS Set Event Report +QmiMessageWdsModifyProfileOutput, struct in WDS Modify Profile request
-QmiMessageWmsSetEventReportOutput, struct in WMS Set Event Report +QmiMessageWdsResetOutput, struct in WDS Reset request
-QmiMessageWmsSetRoutesInput, struct in WMS Set Routes +QmiMessageWdsSetAutoconnectSettingsInput, struct in WDS Set Autoconnect Settings request
-QmiMessageWmsSetRoutesInputRouteListElement, struct in WMS Set Routes +QmiMessageWdsSetAutoconnectSettingsOutput, struct in WDS Set Autoconnect Settings request
-QmiMessageWmsSetRoutesOutput, struct in WMS Set Routes +QmiMessageWdsSetDefaultProfileNumInput, struct in WDS Set Default Profile Num request +
+
+
+QmiMessageWdsSetDefaultProfileNumOutput, struct in WDS Set Default Profile Num request +
+
+
+QmiMessageWdsSetEventReportInput, struct in WDS Set Event Report request +
+
+
+QmiMessageWdsSetEventReportOutput, struct in WDS Set Event Report request +
+
+
+QmiMessageWdsSetIpFamilyInput, struct in WDS Set IP Family request +
+
+
+QmiMessageWdsSetIpFamilyOutput, struct in WDS Set IP Family request +
+
+
+QmiMessageWdsStartNetworkInput, struct in WDS Start Network request +
+
+
+QmiMessageWdsStartNetworkOutput, struct in WDS Start Network request +
+
+
+QmiMessageWdsStopNetworkInput, struct in WDS Stop Network request +
+
+
+QmiMessageWdsStopNetworkOutput, struct in WDS Stop Network request +
+
+
+QmiMessageWdsSwiCreateProfileIndexedInput, struct in WDS Swi Create Profile Indexed request +
+
+
+QmiMessageWdsSwiCreateProfileIndexedOutput, struct in WDS Swi Create Profile Indexed request +
+
+
+QmiMessageWmsDeleteInput, struct in WMS Delete request +
+
+
+QmiMessageWmsDeleteOutput, struct in WMS Delete request +
+
+
+QmiMessageWmsGetMessageProtocolOutput, struct in WMS Get Message Protocol request +
+
+
+QmiMessageWmsGetRoutesOutput, struct in WMS Get Routes request +
+
+
+QmiMessageWmsGetRoutesOutputRouteListElement, struct in WMS Get Routes request +
+
+
+QmiMessageWmsGetSupportedMessagesOutput, struct in WMS Get Supported Messages request +
+
+
+QmiMessageWmsListMessagesInput, struct in WMS List Messages request +
+
+
+QmiMessageWmsListMessagesOutput, struct in WMS List Messages request +
+
+
+QmiMessageWmsListMessagesOutputMessageListElement, struct in WMS List Messages request +
+
+
+QmiMessageWmsModifyTagInput, struct in WMS Modify Tag request +
+
+
+QmiMessageWmsModifyTagOutput, struct in WMS Modify Tag request +
+
+
+QmiMessageWmsRawReadInput, struct in WMS Raw Read request +
+
+
+QmiMessageWmsRawReadOutput, struct in WMS Raw Read request +
+
+
+QmiMessageWmsRawSendInput, struct in WMS Raw Send request +
+
+
+QmiMessageWmsRawSendOutput, struct in WMS Raw Send request +
+
+
+QmiMessageWmsRawWriteInput, struct in WMS Raw Write request +
+
+
+QmiMessageWmsRawWriteOutput, struct in WMS Raw Write request +
+
+
+QmiMessageWmsResetOutput, struct in WMS Reset request +
+
+
+QmiMessageWmsSendFromMemoryStorageInput, struct in WMS Send From Memory Storage request +
+
+
+QmiMessageWmsSendFromMemoryStorageOutput, struct in WMS Send From Memory Storage request +
+
+
+QmiMessageWmsSetEventReportInput, struct in WMS Set Event Report request +
+
+
+QmiMessageWmsSetEventReportOutput, struct in WMS Set Event Report request +
+
+
+QmiMessageWmsSetRoutesInput, struct in WMS Set Routes request +
+
+
+QmiMessageWmsSetRoutesInputRouteListElement, struct in WMS Set Routes request +
+
+
+QmiMessageWmsSetRoutesOutput, struct in WMS Set Routes request
@@ -4154,1499 +5219,1555 @@
-qmi_message_dms_activate_automatic_input_get_activation_code, function in DMS Activate Automatic +qmi_message_dms_activate_automatic_input_get_activation_code, function in DMS Activate Automatic request +
+
+
+qmi_message_dms_activate_automatic_input_new, function in DMS Activate Automatic request +
+
+
+qmi_message_dms_activate_automatic_input_ref, function in DMS Activate Automatic request +
+
+
+qmi_message_dms_activate_automatic_input_set_activation_code, function in DMS Activate Automatic request +
+
+
+qmi_message_dms_activate_automatic_input_unref, function in DMS Activate Automatic request +
+
+
+qmi_message_dms_activate_automatic_output_get_result, function in DMS Activate Automatic request +
+
+
+qmi_message_dms_activate_automatic_output_ref, function in DMS Activate Automatic request +
+
+
+qmi_message_dms_activate_automatic_output_unref, function in DMS Activate Automatic request +
+
+
+qmi_message_dms_activate_manual_input_get_info, function in DMS Activate Manual request +
+
+
+qmi_message_dms_activate_manual_input_get_mn_aaa_key, function in DMS Activate Manual request +
+
+
+qmi_message_dms_activate_manual_input_get_mn_ha_key, function in DMS Activate Manual request +
+
+
+qmi_message_dms_activate_manual_input_get_prl, function in DMS Activate Manual request +
+
+
+qmi_message_dms_activate_manual_input_new, function in DMS Activate Manual request +
+
+
+qmi_message_dms_activate_manual_input_ref, function in DMS Activate Manual request +
+
+
+qmi_message_dms_activate_manual_input_set_info, function in DMS Activate Manual request
-qmi_message_dms_activate_automatic_input_new, function in DMS Activate Automatic +qmi_message_dms_activate_manual_input_set_mn_aaa_key, function in DMS Activate Manual request
-qmi_message_dms_activate_automatic_input_ref, function in DMS Activate Automatic +qmi_message_dms_activate_manual_input_set_mn_ha_key, function in DMS Activate Manual request
-qmi_message_dms_activate_automatic_input_set_activation_code, function in DMS Activate Automatic +qmi_message_dms_activate_manual_input_set_prl, function in DMS Activate Manual request
-qmi_message_dms_activate_automatic_input_unref, function in DMS Activate Automatic +qmi_message_dms_activate_manual_input_unref, function in DMS Activate Manual request
-qmi_message_dms_activate_automatic_output_get_result, function in DMS Activate Automatic +qmi_message_dms_activate_manual_output_get_result, function in DMS Activate Manual request
-qmi_message_dms_activate_automatic_output_ref, function in DMS Activate Automatic +qmi_message_dms_activate_manual_output_ref, function in DMS Activate Manual request
-qmi_message_dms_activate_automatic_output_unref, function in DMS Activate Automatic +qmi_message_dms_activate_manual_output_unref, function in DMS Activate Manual request
-qmi_message_dms_activate_manual_input_get_info, function in DMS Activate Manual +qmi_message_dms_delete_stored_image_input_get_image, function in DMS Delete Stored Image request
-qmi_message_dms_activate_manual_input_get_mn_aaa_key, function in DMS Activate Manual +qmi_message_dms_delete_stored_image_input_new, function in DMS Delete Stored Image request
-qmi_message_dms_activate_manual_input_get_mn_ha_key, function in DMS Activate Manual +qmi_message_dms_delete_stored_image_input_ref, function in DMS Delete Stored Image request
-qmi_message_dms_activate_manual_input_get_prl, function in DMS Activate Manual +qmi_message_dms_delete_stored_image_input_set_image, function in DMS Delete Stored Image request
-qmi_message_dms_activate_manual_input_new, function in DMS Activate Manual +qmi_message_dms_delete_stored_image_input_unref, function in DMS Delete Stored Image request
-qmi_message_dms_activate_manual_input_ref, function in DMS Activate Manual +qmi_message_dms_delete_stored_image_output_get_result, function in DMS Delete Stored Image request
-qmi_message_dms_activate_manual_input_set_info, function in DMS Activate Manual +qmi_message_dms_delete_stored_image_output_ref, function in DMS Delete Stored Image request
-qmi_message_dms_activate_manual_input_set_mn_aaa_key, function in DMS Activate Manual +qmi_message_dms_delete_stored_image_output_unref, function in DMS Delete Stored Image request
-qmi_message_dms_activate_manual_input_set_mn_ha_key, function in DMS Activate Manual +qmi_message_dms_get_activation_state_output_get_info, function in DMS Get Activation State request
-qmi_message_dms_activate_manual_input_set_prl, function in DMS Activate Manual +qmi_message_dms_get_activation_state_output_get_result, function in DMS Get Activation State request
-qmi_message_dms_activate_manual_input_unref, function in DMS Activate Manual +qmi_message_dms_get_activation_state_output_ref, function in DMS Get Activation State request
-qmi_message_dms_activate_manual_output_get_result, function in DMS Activate Manual +qmi_message_dms_get_activation_state_output_unref, function in DMS Get Activation State request
-qmi_message_dms_activate_manual_output_ref, function in DMS Activate Manual +qmi_message_dms_get_alt_net_config_output_get_config, function in DMS Get Alt Net Config request
-qmi_message_dms_activate_manual_output_unref, function in DMS Activate Manual +qmi_message_dms_get_alt_net_config_output_get_result, function in DMS Get Alt Net Config request
-qmi_message_dms_delete_stored_image_input_get_image, function in DMS Delete Stored Image +qmi_message_dms_get_alt_net_config_output_ref, function in DMS Get Alt Net Config request
-qmi_message_dms_delete_stored_image_input_new, function in DMS Delete Stored Image +qmi_message_dms_get_alt_net_config_output_unref, function in DMS Get Alt Net Config request
-qmi_message_dms_delete_stored_image_input_ref, function in DMS Delete Stored Image +qmi_message_dms_get_band_capabilities_output_get_band_capability, function in DMS Get Band Capabilities request
-qmi_message_dms_delete_stored_image_input_set_image, function in DMS Delete Stored Image +qmi_message_dms_get_band_capabilities_output_get_extended_lte_band_capability, function in DMS Get Band Capabilities request
-qmi_message_dms_delete_stored_image_input_unref, function in DMS Delete Stored Image +qmi_message_dms_get_band_capabilities_output_get_lte_band_capability, function in DMS Get Band Capabilities request
-qmi_message_dms_delete_stored_image_output_get_result, function in DMS Delete Stored Image +qmi_message_dms_get_band_capabilities_output_get_result, function in DMS Get Band Capabilities request
-qmi_message_dms_delete_stored_image_output_ref, function in DMS Delete Stored Image +qmi_message_dms_get_band_capabilities_output_ref, function in DMS Get Band Capabilities request
-qmi_message_dms_delete_stored_image_output_unref, function in DMS Delete Stored Image +qmi_message_dms_get_band_capabilities_output_unref, function in DMS Get Band Capabilities request
-qmi_message_dms_get_activation_state_output_get_info, function in DMS Get Activation State +qmi_message_dms_get_boot_image_download_mode_output_get_mode, function in DMS Get Boot Image Download Mode request
-qmi_message_dms_get_activation_state_output_get_result, function in DMS Get Activation State +qmi_message_dms_get_boot_image_download_mode_output_get_result, function in DMS Get Boot Image Download Mode request
-qmi_message_dms_get_activation_state_output_ref, function in DMS Get Activation State +qmi_message_dms_get_boot_image_download_mode_output_ref, function in DMS Get Boot Image Download Mode request
-qmi_message_dms_get_activation_state_output_unref, function in DMS Get Activation State +qmi_message_dms_get_boot_image_download_mode_output_unref, function in DMS Get Boot Image Download Mode request
-qmi_message_dms_get_alt_net_config_output_get_config, function in DMS Get Alt Net Config +qmi_message_dms_get_capabilities_output_get_info, function in DMS Get Capabilities request
-qmi_message_dms_get_alt_net_config_output_get_result, function in DMS Get Alt Net Config +qmi_message_dms_get_capabilities_output_get_result, function in DMS Get Capabilities request
-qmi_message_dms_get_alt_net_config_output_ref, function in DMS Get Alt Net Config +qmi_message_dms_get_capabilities_output_ref, function in DMS Get Capabilities request
-qmi_message_dms_get_alt_net_config_output_unref, function in DMS Get Alt Net Config +qmi_message_dms_get_capabilities_output_unref, function in DMS Get Capabilities request
-qmi_message_dms_get_band_capabilities_output_get_band_capability, function in DMS Get Band Capabilities +qmi_message_dms_get_factory_sku_output_get_result, function in DMS Get Factory SKU request
-qmi_message_dms_get_band_capabilities_output_get_lte_band_capability, function in DMS Get Band Capabilities +qmi_message_dms_get_factory_sku_output_get_sku, function in DMS Get Factory SKU request
-qmi_message_dms_get_band_capabilities_output_get_result, function in DMS Get Band Capabilities +qmi_message_dms_get_factory_sku_output_ref, function in DMS Get Factory SKU request
-qmi_message_dms_get_band_capabilities_output_ref, function in DMS Get Band Capabilities +qmi_message_dms_get_factory_sku_output_unref, function in DMS Get Factory SKU request
-qmi_message_dms_get_band_capabilities_output_unref, function in DMS Get Band Capabilities +qmi_message_dms_get_firmware_preference_output_get_list, function in DMS Get Firmware Preference request
-qmi_message_dms_get_boot_image_download_mode_output_get_mode, function in DMS Get Boot Image Download Mode +qmi_message_dms_get_firmware_preference_output_get_result, function in DMS Get Firmware Preference request
-qmi_message_dms_get_boot_image_download_mode_output_get_result, function in DMS Get Boot Image Download Mode +qmi_message_dms_get_firmware_preference_output_ref, function in DMS Get Firmware Preference request
-qmi_message_dms_get_boot_image_download_mode_output_ref, function in DMS Get Boot Image Download Mode +qmi_message_dms_get_firmware_preference_output_unref, function in DMS Get Firmware Preference request
-qmi_message_dms_get_boot_image_download_mode_output_unref, function in DMS Get Boot Image Download Mode +qmi_message_dms_get_hardware_revision_output_get_result, function in DMS Get Hardware Revision request
-qmi_message_dms_get_capabilities_output_get_info, function in DMS Get Capabilities +qmi_message_dms_get_hardware_revision_output_get_revision, function in DMS Get Hardware Revision request
-qmi_message_dms_get_capabilities_output_get_result, function in DMS Get Capabilities +qmi_message_dms_get_hardware_revision_output_ref, function in DMS Get Hardware Revision request
-qmi_message_dms_get_capabilities_output_ref, function in DMS Get Capabilities +qmi_message_dms_get_hardware_revision_output_unref, function in DMS Get Hardware Revision request
-qmi_message_dms_get_capabilities_output_unref, function in DMS Get Capabilities +qmi_message_dms_get_ids_output_get_esn, function in DMS Get IDs request
-qmi_message_dms_get_factory_sku_output_get_result, function in DMS Get Factory SKU +qmi_message_dms_get_ids_output_get_imei, function in DMS Get IDs request
-qmi_message_dms_get_factory_sku_output_get_sku, function in DMS Get Factory SKU +qmi_message_dms_get_ids_output_get_meid, function in DMS Get IDs request
-qmi_message_dms_get_factory_sku_output_ref, function in DMS Get Factory SKU +qmi_message_dms_get_ids_output_get_result, function in DMS Get IDs request
-qmi_message_dms_get_factory_sku_output_unref, function in DMS Get Factory SKU +qmi_message_dms_get_ids_output_ref, function in DMS Get IDs request
-qmi_message_dms_get_firmware_preference_output_get_list, function in DMS Get Firmware Preference +qmi_message_dms_get_ids_output_unref, function in DMS Get IDs request
-qmi_message_dms_get_firmware_preference_output_get_result, function in DMS Get Firmware Preference +qmi_message_dms_get_manufacturer_output_get_manufacturer, function in DMS Get Manufacturer request
-qmi_message_dms_get_firmware_preference_output_ref, function in DMS Get Firmware Preference +qmi_message_dms_get_manufacturer_output_get_result, function in DMS Get Manufacturer request
-qmi_message_dms_get_firmware_preference_output_unref, function in DMS Get Firmware Preference +qmi_message_dms_get_manufacturer_output_ref, function in DMS Get Manufacturer request
-qmi_message_dms_get_hardware_revision_output_get_result, function in DMS Get Hardware Revision +qmi_message_dms_get_manufacturer_output_unref, function in DMS Get Manufacturer request
-qmi_message_dms_get_hardware_revision_output_get_revision, function in DMS Get Hardware Revision +qmi_message_dms_get_model_output_get_model, function in DMS Get Model request
-qmi_message_dms_get_hardware_revision_output_ref, function in DMS Get Hardware Revision +qmi_message_dms_get_model_output_get_result, function in DMS Get Model request
-qmi_message_dms_get_hardware_revision_output_unref, function in DMS Get Hardware Revision +qmi_message_dms_get_model_output_ref, function in DMS Get Model request
-qmi_message_dms_get_ids_output_get_esn, function in DMS Get IDs +qmi_message_dms_get_model_output_unref, function in DMS Get Model request
-qmi_message_dms_get_ids_output_get_imei, function in DMS Get IDs +qmi_message_dms_get_msisdn_output_get_msisdn, function in DMS Get MSISDN request
-qmi_message_dms_get_ids_output_get_meid, function in DMS Get IDs +qmi_message_dms_get_msisdn_output_get_result, function in DMS Get MSISDN request
-qmi_message_dms_get_ids_output_get_result, function in DMS Get IDs +qmi_message_dms_get_msisdn_output_ref, function in DMS Get MSISDN request
-qmi_message_dms_get_ids_output_ref, function in DMS Get IDs +qmi_message_dms_get_msisdn_output_unref, function in DMS Get MSISDN request
-qmi_message_dms_get_ids_output_unref, function in DMS Get IDs +qmi_message_dms_get_operating_mode_output_get_hardware_restricted_mode, function in DMS Get Operating Mode request
-qmi_message_dms_get_manufacturer_output_get_manufacturer, function in DMS Get Manufacturer +qmi_message_dms_get_operating_mode_output_get_mode, function in DMS Get Operating Mode request
-qmi_message_dms_get_manufacturer_output_get_result, function in DMS Get Manufacturer +qmi_message_dms_get_operating_mode_output_get_offline_reason, function in DMS Get Operating Mode request
-qmi_message_dms_get_manufacturer_output_ref, function in DMS Get Manufacturer +qmi_message_dms_get_operating_mode_output_get_result, function in DMS Get Operating Mode request
-qmi_message_dms_get_manufacturer_output_unref, function in DMS Get Manufacturer +qmi_message_dms_get_operating_mode_output_ref, function in DMS Get Operating Mode request
-qmi_message_dms_get_model_output_get_model, function in DMS Get Model +qmi_message_dms_get_operating_mode_output_unref, function in DMS Get Operating Mode request
-qmi_message_dms_get_model_output_get_result, function in DMS Get Model +qmi_message_dms_get_power_state_output_get_info, function in DMS Get Power State request
-qmi_message_dms_get_model_output_ref, function in DMS Get Model +qmi_message_dms_get_power_state_output_get_result, function in DMS Get Power State request
-qmi_message_dms_get_model_output_unref, function in DMS Get Model +qmi_message_dms_get_power_state_output_ref, function in DMS Get Power State request
-qmi_message_dms_get_msisdn_output_get_msisdn, function in DMS Get MSISDN +qmi_message_dms_get_power_state_output_unref, function in DMS Get Power State request
-qmi_message_dms_get_msisdn_output_get_result, function in DMS Get MSISDN +qmi_message_dms_get_prl_version_output_get_prl_only_preference, function in DMS Get PRL Version request
-qmi_message_dms_get_msisdn_output_ref, function in DMS Get MSISDN +qmi_message_dms_get_prl_version_output_get_result, function in DMS Get PRL Version request
-qmi_message_dms_get_msisdn_output_unref, function in DMS Get MSISDN +qmi_message_dms_get_prl_version_output_get_version, function in DMS Get PRL Version request
-qmi_message_dms_get_operating_mode_output_get_hardware_restricted_mode, function in DMS Get Operating Mode +qmi_message_dms_get_prl_version_output_ref, function in DMS Get PRL Version request
-qmi_message_dms_get_operating_mode_output_get_mode, function in DMS Get Operating Mode +qmi_message_dms_get_prl_version_output_unref, function in DMS Get PRL Version request
-qmi_message_dms_get_operating_mode_output_get_offline_reason, function in DMS Get Operating Mode +qmi_message_dms_get_revision_output_get_result, function in DMS Get Revision request
-qmi_message_dms_get_operating_mode_output_get_result, function in DMS Get Operating Mode +qmi_message_dms_get_revision_output_get_revision, function in DMS Get Revision request
-qmi_message_dms_get_operating_mode_output_ref, function in DMS Get Operating Mode +qmi_message_dms_get_revision_output_ref, function in DMS Get Revision request
-qmi_message_dms_get_operating_mode_output_unref, function in DMS Get Operating Mode +qmi_message_dms_get_revision_output_unref, function in DMS Get Revision request
-qmi_message_dms_get_power_state_output_get_info, function in DMS Get Power State +qmi_message_dms_get_software_version_output_get_result, function in DMS Get Software Version request
-qmi_message_dms_get_power_state_output_get_result, function in DMS Get Power State +qmi_message_dms_get_software_version_output_get_version, function in DMS Get Software Version request
-qmi_message_dms_get_power_state_output_ref, function in DMS Get Power State +qmi_message_dms_get_software_version_output_ref, function in DMS Get Software Version request
-qmi_message_dms_get_power_state_output_unref, function in DMS Get Power State +qmi_message_dms_get_software_version_output_unref, function in DMS Get Software Version request
-qmi_message_dms_get_prl_version_output_get_prl_only_preference, function in DMS Get PRL Version +qmi_message_dms_get_stored_image_info_input_get_image, function in DMS Get Stored Image Info request
-qmi_message_dms_get_prl_version_output_get_result, function in DMS Get PRL Version +qmi_message_dms_get_stored_image_info_input_new, function in DMS Get Stored Image Info request
-qmi_message_dms_get_prl_version_output_get_version, function in DMS Get PRL Version +qmi_message_dms_get_stored_image_info_input_ref, function in DMS Get Stored Image Info request
-qmi_message_dms_get_prl_version_output_ref, function in DMS Get PRL Version +qmi_message_dms_get_stored_image_info_input_set_image, function in DMS Get Stored Image Info request
-qmi_message_dms_get_prl_version_output_unref, function in DMS Get PRL Version +qmi_message_dms_get_stored_image_info_input_unref, function in DMS Get Stored Image Info request
-qmi_message_dms_get_revision_output_get_result, function in DMS Get Revision +qmi_message_dms_get_stored_image_info_output_get_boot_version, function in DMS Get Stored Image Info request
-qmi_message_dms_get_revision_output_get_revision, function in DMS Get Revision +qmi_message_dms_get_stored_image_info_output_get_oem_lock_id, function in DMS Get Stored Image Info request
-qmi_message_dms_get_revision_output_ref, function in DMS Get Revision +qmi_message_dms_get_stored_image_info_output_get_pri_version, function in DMS Get Stored Image Info request
-qmi_message_dms_get_revision_output_unref, function in DMS Get Revision +qmi_message_dms_get_stored_image_info_output_get_result, function in DMS Get Stored Image Info request
-qmi_message_dms_get_software_version_output_get_result, function in DMS Get Software Version +qmi_message_dms_get_stored_image_info_output_ref, function in DMS Get Stored Image Info request
-qmi_message_dms_get_software_version_output_get_version, function in DMS Get Software Version +qmi_message_dms_get_stored_image_info_output_unref, function in DMS Get Stored Image Info request
-qmi_message_dms_get_software_version_output_ref, function in DMS Get Software Version +qmi_message_dms_get_supported_messages_output_get_list, function in DMS Get Supported Messages request
-qmi_message_dms_get_software_version_output_unref, function in DMS Get Software Version +qmi_message_dms_get_supported_messages_output_get_result, function in DMS Get Supported Messages request
-qmi_message_dms_get_stored_image_info_input_get_image, function in DMS Get Stored Image Info +qmi_message_dms_get_supported_messages_output_ref, function in DMS Get Supported Messages request
-qmi_message_dms_get_stored_image_info_input_new, function in DMS Get Stored Image Info +qmi_message_dms_get_supported_messages_output_unref, function in DMS Get Supported Messages request
-qmi_message_dms_get_stored_image_info_input_ref, function in DMS Get Stored Image Info +qmi_message_dms_get_time_output_get_device_time, function in DMS Get Time request
-qmi_message_dms_get_stored_image_info_input_set_image, function in DMS Get Stored Image Info +qmi_message_dms_get_time_output_get_result, function in DMS Get Time request
-qmi_message_dms_get_stored_image_info_input_unref, function in DMS Get Stored Image Info +qmi_message_dms_get_time_output_get_system_time, function in DMS Get Time request
-qmi_message_dms_get_stored_image_info_output_get_boot_version, function in DMS Get Stored Image Info +qmi_message_dms_get_time_output_get_user_time, function in DMS Get Time request
-qmi_message_dms_get_stored_image_info_output_get_oem_lock_id, function in DMS Get Stored Image Info +qmi_message_dms_get_time_output_ref, function in DMS Get Time request
-qmi_message_dms_get_stored_image_info_output_get_pri_version, function in DMS Get Stored Image Info +qmi_message_dms_get_time_output_unref, function in DMS Get Time request
-qmi_message_dms_get_stored_image_info_output_get_result, function in DMS Get Stored Image Info +qmi_message_dms_get_user_lock_state_output_get_enabled, function in DMS Get User Lock State request
-qmi_message_dms_get_stored_image_info_output_ref, function in DMS Get Stored Image Info +qmi_message_dms_get_user_lock_state_output_get_result, function in DMS Get User Lock State request
-qmi_message_dms_get_stored_image_info_output_unref, function in DMS Get Stored Image Info +qmi_message_dms_get_user_lock_state_output_ref, function in DMS Get User Lock State request
-qmi_message_dms_get_supported_messages_output_get_list, function in DMS Get Supported Messages +qmi_message_dms_get_user_lock_state_output_unref, function in DMS Get User Lock State request
-qmi_message_dms_get_supported_messages_output_get_result, function in DMS Get Supported Messages +qmi_message_dms_hp_change_device_mode_input_get_mode, function in DMS HP Change Device Mode request
-qmi_message_dms_get_supported_messages_output_ref, function in DMS Get Supported Messages +qmi_message_dms_hp_change_device_mode_input_new, function in DMS HP Change Device Mode request
-qmi_message_dms_get_supported_messages_output_unref, function in DMS Get Supported Messages +qmi_message_dms_hp_change_device_mode_input_ref, function in DMS HP Change Device Mode request
-qmi_message_dms_get_time_output_get_device_time, function in DMS Get Time +qmi_message_dms_hp_change_device_mode_input_set_mode, function in DMS HP Change Device Mode request
-qmi_message_dms_get_time_output_get_result, function in DMS Get Time +qmi_message_dms_hp_change_device_mode_input_unref, function in DMS HP Change Device Mode request
-qmi_message_dms_get_time_output_get_system_time, function in DMS Get Time +qmi_message_dms_hp_change_device_mode_output_get_result, function in DMS HP Change Device Mode request
-qmi_message_dms_get_time_output_get_user_time, function in DMS Get Time +qmi_message_dms_hp_change_device_mode_output_ref, function in DMS HP Change Device Mode request
-qmi_message_dms_get_time_output_ref, function in DMS Get Time +qmi_message_dms_hp_change_device_mode_output_unref, function in DMS HP Change Device Mode request
-qmi_message_dms_get_time_output_unref, function in DMS Get Time +qmi_message_dms_list_stored_images_output_get_list, function in DMS List Stored Images request
-qmi_message_dms_get_user_lock_state_output_get_enabled, function in DMS Get User Lock State +qmi_message_dms_list_stored_images_output_get_result, function in DMS List Stored Images request
-qmi_message_dms_get_user_lock_state_output_get_result, function in DMS Get User Lock State +qmi_message_dms_list_stored_images_output_ref, function in DMS List Stored Images request
-qmi_message_dms_get_user_lock_state_output_ref, function in DMS Get User Lock State +qmi_message_dms_list_stored_images_output_unref, function in DMS List Stored Images request
-qmi_message_dms_get_user_lock_state_output_unref, function in DMS Get User Lock State +qmi_message_dms_read_eri_file_output_get_eri_file, function in DMS Read ERI File request
-qmi_message_dms_hp_change_device_mode_input_get_mode, function in DMS HP Change Device Mode +qmi_message_dms_read_eri_file_output_get_result, function in DMS Read ERI File request
-qmi_message_dms_hp_change_device_mode_input_new, function in DMS HP Change Device Mode +qmi_message_dms_read_eri_file_output_ref, function in DMS Read ERI File request
-qmi_message_dms_hp_change_device_mode_input_ref, function in DMS HP Change Device Mode +qmi_message_dms_read_eri_file_output_unref, function in DMS Read ERI File request
-qmi_message_dms_hp_change_device_mode_input_set_mode, function in DMS HP Change Device Mode +qmi_message_dms_read_user_data_output_get_result, function in DMS Read User Data request
-qmi_message_dms_hp_change_device_mode_input_unref, function in DMS HP Change Device Mode +qmi_message_dms_read_user_data_output_get_user_data, function in DMS Read User Data request
-qmi_message_dms_hp_change_device_mode_output_get_result, function in DMS HP Change Device Mode +qmi_message_dms_read_user_data_output_ref, function in DMS Read User Data request
-qmi_message_dms_hp_change_device_mode_output_ref, function in DMS HP Change Device Mode +qmi_message_dms_read_user_data_output_unref, function in DMS Read User Data request
-qmi_message_dms_hp_change_device_mode_output_unref, function in DMS HP Change Device Mode +qmi_message_dms_reset_output_get_result, function in DMS Reset request
-qmi_message_dms_list_stored_images_output_get_list, function in DMS List Stored Images +qmi_message_dms_reset_output_ref, function in DMS Reset request
-qmi_message_dms_list_stored_images_output_get_result, function in DMS List Stored Images +qmi_message_dms_reset_output_unref, function in DMS Reset request
-qmi_message_dms_list_stored_images_output_ref, function in DMS List Stored Images +qmi_message_dms_restore_factory_defaults_input_get_service_programming_code, function in DMS Restore Factory Defaults request
-qmi_message_dms_list_stored_images_output_unref, function in DMS List Stored Images +qmi_message_dms_restore_factory_defaults_input_new, function in DMS Restore Factory Defaults request
-qmi_message_dms_read_eri_file_output_get_eri_file, function in DMS Read ERI File +qmi_message_dms_restore_factory_defaults_input_ref, function in DMS Restore Factory Defaults request
-qmi_message_dms_read_eri_file_output_get_result, function in DMS Read ERI File +qmi_message_dms_restore_factory_defaults_input_set_service_programming_code, function in DMS Restore Factory Defaults request
-qmi_message_dms_read_eri_file_output_ref, function in DMS Read ERI File +qmi_message_dms_restore_factory_defaults_input_unref, function in DMS Restore Factory Defaults request
-qmi_message_dms_read_eri_file_output_unref, function in DMS Read ERI File +qmi_message_dms_restore_factory_defaults_output_get_result, function in DMS Restore Factory Defaults request
-qmi_message_dms_read_user_data_output_get_result, function in DMS Read User Data +qmi_message_dms_restore_factory_defaults_output_ref, function in DMS Restore Factory Defaults request
-qmi_message_dms_read_user_data_output_get_user_data, function in DMS Read User Data +qmi_message_dms_restore_factory_defaults_output_unref, function in DMS Restore Factory Defaults request
-qmi_message_dms_read_user_data_output_ref, function in DMS Read User Data +qmi_message_dms_set_alt_net_config_input_get_config, function in DMS Set Alt Net Config request
-qmi_message_dms_read_user_data_output_unref, function in DMS Read User Data +qmi_message_dms_set_alt_net_config_input_new, function in DMS Set Alt Net Config request
-qmi_message_dms_reset_output_get_result, function in DMS Reset +qmi_message_dms_set_alt_net_config_input_ref, function in DMS Set Alt Net Config request
-qmi_message_dms_reset_output_ref, function in DMS Reset +qmi_message_dms_set_alt_net_config_input_set_config, function in DMS Set Alt Net Config request
-qmi_message_dms_reset_output_unref, function in DMS Reset +qmi_message_dms_set_alt_net_config_input_unref, function in DMS Set Alt Net Config request
-qmi_message_dms_restore_factory_defaults_input_get_service_programming_code, function in DMS Restore Factory Defaults +qmi_message_dms_set_alt_net_config_output_get_result, function in DMS Set Alt Net Config request
-qmi_message_dms_restore_factory_defaults_input_new, function in DMS Restore Factory Defaults +qmi_message_dms_set_alt_net_config_output_ref, function in DMS Set Alt Net Config request
-qmi_message_dms_restore_factory_defaults_input_ref, function in DMS Restore Factory Defaults +qmi_message_dms_set_alt_net_config_output_unref, function in DMS Set Alt Net Config request
-qmi_message_dms_restore_factory_defaults_input_set_service_programming_code, function in DMS Restore Factory Defaults +qmi_message_dms_set_boot_image_download_mode_input_get_mode, function in DMS Set Boot Image Download Mode request
-qmi_message_dms_restore_factory_defaults_input_unref, function in DMS Restore Factory Defaults +qmi_message_dms_set_boot_image_download_mode_input_new, function in DMS Set Boot Image Download Mode request
-qmi_message_dms_restore_factory_defaults_output_get_result, function in DMS Restore Factory Defaults +qmi_message_dms_set_boot_image_download_mode_input_ref, function in DMS Set Boot Image Download Mode request
-qmi_message_dms_restore_factory_defaults_output_ref, function in DMS Restore Factory Defaults +qmi_message_dms_set_boot_image_download_mode_input_set_mode, function in DMS Set Boot Image Download Mode request
-qmi_message_dms_restore_factory_defaults_output_unref, function in DMS Restore Factory Defaults +qmi_message_dms_set_boot_image_download_mode_input_unref, function in DMS Set Boot Image Download Mode request
-qmi_message_dms_set_alt_net_config_input_get_config, function in DMS Set Alt Net Config +qmi_message_dms_set_boot_image_download_mode_output_get_result, function in DMS Set Boot Image Download Mode request
-qmi_message_dms_set_alt_net_config_input_new, function in DMS Set Alt Net Config +qmi_message_dms_set_boot_image_download_mode_output_ref, function in DMS Set Boot Image Download Mode request
-qmi_message_dms_set_alt_net_config_input_ref, function in DMS Set Alt Net Config +qmi_message_dms_set_boot_image_download_mode_output_unref, function in DMS Set Boot Image Download Mode request
-qmi_message_dms_set_alt_net_config_input_set_config, function in DMS Set Alt Net Config +qmi_message_dms_set_event_report_input_get_activation_state_reporting, function in DMS Set Event Report request
-qmi_message_dms_set_alt_net_config_input_unref, function in DMS Set Alt Net Config +qmi_message_dms_set_event_report_input_get_battery_level_report_limits, function in DMS Set Event Report request
-qmi_message_dms_set_alt_net_config_output_get_result, function in DMS Set Alt Net Config +qmi_message_dms_set_event_report_input_get_operating_mode_reporting, function in DMS Set Event Report request
-qmi_message_dms_set_alt_net_config_output_ref, function in DMS Set Alt Net Config +qmi_message_dms_set_event_report_input_get_pin_state_reporting, function in DMS Set Event Report request
-qmi_message_dms_set_alt_net_config_output_unref, function in DMS Set Alt Net Config +qmi_message_dms_set_event_report_input_get_power_state_reporting, function in DMS Set Event Report request
-qmi_message_dms_set_boot_image_download_mode_input_get_mode, function in DMS Set Boot Image Download Mode +qmi_message_dms_set_event_report_input_get_prl_init_reporting, function in DMS Set Event Report request
-qmi_message_dms_set_boot_image_download_mode_input_new, function in DMS Set Boot Image Download Mode +qmi_message_dms_set_event_report_input_get_uim_state_reporting, function in DMS Set Event Report request
-qmi_message_dms_set_boot_image_download_mode_input_ref, function in DMS Set Boot Image Download Mode +qmi_message_dms_set_event_report_input_get_wireless_disable_state_reporting, function in DMS Set Event Report request
-qmi_message_dms_set_boot_image_download_mode_input_set_mode, function in DMS Set Boot Image Download Mode +qmi_message_dms_set_event_report_input_new, function in DMS Set Event Report request
-qmi_message_dms_set_boot_image_download_mode_input_unref, function in DMS Set Boot Image Download Mode +qmi_message_dms_set_event_report_input_ref, function in DMS Set Event Report request
-qmi_message_dms_set_boot_image_download_mode_output_get_result, function in DMS Set Boot Image Download Mode +qmi_message_dms_set_event_report_input_set_activation_state_reporting, function in DMS Set Event Report request
-qmi_message_dms_set_boot_image_download_mode_output_ref, function in DMS Set Boot Image Download Mode +qmi_message_dms_set_event_report_input_set_battery_level_report_limits, function in DMS Set Event Report request
-qmi_message_dms_set_boot_image_download_mode_output_unref, function in DMS Set Boot Image Download Mode +qmi_message_dms_set_event_report_input_set_operating_mode_reporting, function in DMS Set Event Report request
-qmi_message_dms_set_event_report_input_get_activation_state_reporting, function in DMS Set Event Report +qmi_message_dms_set_event_report_input_set_pin_state_reporting, function in DMS Set Event Report request
-qmi_message_dms_set_event_report_input_get_battery_level_report_limits, function in DMS Set Event Report +qmi_message_dms_set_event_report_input_set_power_state_reporting, function in DMS Set Event Report request
-qmi_message_dms_set_event_report_input_get_operating_mode_reporting, function in DMS Set Event Report +qmi_message_dms_set_event_report_input_set_prl_init_reporting, function in DMS Set Event Report request
-qmi_message_dms_set_event_report_input_get_pin_state_reporting, function in DMS Set Event Report +qmi_message_dms_set_event_report_input_set_uim_state_reporting, function in DMS Set Event Report request
-qmi_message_dms_set_event_report_input_get_power_state_reporting, function in DMS Set Event Report +qmi_message_dms_set_event_report_input_set_wireless_disable_state_reporting, function in DMS Set Event Report request
-qmi_message_dms_set_event_report_input_get_prl_init_reporting, function in DMS Set Event Report +qmi_message_dms_set_event_report_input_unref, function in DMS Set Event Report request
-qmi_message_dms_set_event_report_input_get_uim_state_reporting, function in DMS Set Event Report +qmi_message_dms_set_event_report_output_get_result, function in DMS Set Event Report request
-qmi_message_dms_set_event_report_input_get_wireless_disable_state_reporting, function in DMS Set Event Report +qmi_message_dms_set_event_report_output_ref, function in DMS Set Event Report request
-qmi_message_dms_set_event_report_input_new, function in DMS Set Event Report +qmi_message_dms_set_event_report_output_unref, function in DMS Set Event Report request
-qmi_message_dms_set_event_report_input_ref, function in DMS Set Event Report +qmi_message_dms_set_fcc_authentication_output_get_result, function in DMS Set FCC Authentication request
-qmi_message_dms_set_event_report_input_set_activation_state_reporting, function in DMS Set Event Report +qmi_message_dms_set_fcc_authentication_output_ref, function in DMS Set FCC Authentication request
-qmi_message_dms_set_event_report_input_set_battery_level_report_limits, function in DMS Set Event Report +qmi_message_dms_set_fcc_authentication_output_unref, function in DMS Set FCC Authentication request
-qmi_message_dms_set_event_report_input_set_operating_mode_reporting, function in DMS Set Event Report +qmi_message_dms_set_firmware_id_output_get_result, function in DMS Set Firmware ID request
-qmi_message_dms_set_event_report_input_set_pin_state_reporting, function in DMS Set Event Report +qmi_message_dms_set_firmware_id_output_ref, function in DMS Set Firmware ID request
-qmi_message_dms_set_event_report_input_set_power_state_reporting, function in DMS Set Event Report +qmi_message_dms_set_firmware_id_output_unref, function in DMS Set Firmware ID request
-qmi_message_dms_set_event_report_input_set_prl_init_reporting, function in DMS Set Event Report +qmi_message_dms_set_firmware_preference_input_get_download_override, function in DMS Set Firmware Preference request
-qmi_message_dms_set_event_report_input_set_uim_state_reporting, function in DMS Set Event Report +qmi_message_dms_set_firmware_preference_input_get_list, function in DMS Set Firmware Preference request
-qmi_message_dms_set_event_report_input_set_wireless_disable_state_reporting, function in DMS Set Event Report +qmi_message_dms_set_firmware_preference_input_get_modem_storage_index, function in DMS Set Firmware Preference request
-qmi_message_dms_set_event_report_input_unref, function in DMS Set Event Report +qmi_message_dms_set_firmware_preference_input_new, function in DMS Set Firmware Preference request
-qmi_message_dms_set_event_report_output_get_result, function in DMS Set Event Report +qmi_message_dms_set_firmware_preference_input_ref, function in DMS Set Firmware Preference request
-qmi_message_dms_set_event_report_output_ref, function in DMS Set Event Report +qmi_message_dms_set_firmware_preference_input_set_download_override, function in DMS Set Firmware Preference request
-qmi_message_dms_set_event_report_output_unref, function in DMS Set Event Report +qmi_message_dms_set_firmware_preference_input_set_list, function in DMS Set Firmware Preference request
-qmi_message_dms_set_fcc_authentication_output_get_result, function in DMS Set FCC Authentication +qmi_message_dms_set_firmware_preference_input_set_modem_storage_index, function in DMS Set Firmware Preference request
-qmi_message_dms_set_fcc_authentication_output_ref, function in DMS Set FCC Authentication +qmi_message_dms_set_firmware_preference_input_unref, function in DMS Set Firmware Preference request
-qmi_message_dms_set_fcc_authentication_output_unref, function in DMS Set FCC Authentication +qmi_message_dms_set_firmware_preference_output_get_image_download_list, function in DMS Set Firmware Preference request
-qmi_message_dms_set_firmware_id_output_get_result, function in DMS Set Firmware ID +qmi_message_dms_set_firmware_preference_output_get_result, function in DMS Set Firmware Preference request
-qmi_message_dms_set_firmware_id_output_ref, function in DMS Set Firmware ID +qmi_message_dms_set_firmware_preference_output_ref, function in DMS Set Firmware Preference request
-qmi_message_dms_set_firmware_id_output_unref, function in DMS Set Firmware ID +qmi_message_dms_set_firmware_preference_output_unref, function in DMS Set Firmware Preference request
-qmi_message_dms_set_firmware_preference_input_get_download_override, function in DMS Set Firmware Preference +qmi_message_dms_set_operating_mode_input_get_mode, function in DMS Set Operating Mode request
-qmi_message_dms_set_firmware_preference_input_get_list, function in DMS Set Firmware Preference +qmi_message_dms_set_operating_mode_input_new, function in DMS Set Operating Mode request
-qmi_message_dms_set_firmware_preference_input_get_modem_storage_index, function in DMS Set Firmware Preference +qmi_message_dms_set_operating_mode_input_ref, function in DMS Set Operating Mode request
-qmi_message_dms_set_firmware_preference_input_new, function in DMS Set Firmware Preference +qmi_message_dms_set_operating_mode_input_set_mode, function in DMS Set Operating Mode request
-qmi_message_dms_set_firmware_preference_input_ref, function in DMS Set Firmware Preference +qmi_message_dms_set_operating_mode_input_unref, function in DMS Set Operating Mode request
-qmi_message_dms_set_firmware_preference_input_set_download_override, function in DMS Set Firmware Preference +qmi_message_dms_set_operating_mode_output_get_result, function in DMS Set Operating Mode request
-qmi_message_dms_set_firmware_preference_input_set_list, function in DMS Set Firmware Preference +qmi_message_dms_set_operating_mode_output_ref, function in DMS Set Operating Mode request
-qmi_message_dms_set_firmware_preference_input_set_modem_storage_index, function in DMS Set Firmware Preference +qmi_message_dms_set_operating_mode_output_unref, function in DMS Set Operating Mode request
-qmi_message_dms_set_firmware_preference_input_unref, function in DMS Set Firmware Preference +qmi_message_dms_set_service_programming_code_input_get_current, function in Deprecated interface
-qmi_message_dms_set_firmware_preference_output_get_image_download_list, function in DMS Set Firmware Preference +qmi_message_dms_set_service_programming_code_input_get_current_code, function in DMS Set Service Programming Code request
-qmi_message_dms_set_firmware_preference_output_get_result, function in DMS Set Firmware Preference +qmi_message_dms_set_service_programming_code_input_get_new, function in Deprecated interface
-qmi_message_dms_set_firmware_preference_output_ref, function in DMS Set Firmware Preference +qmi_message_dms_set_service_programming_code_input_get_new_code, function in DMS Set Service Programming Code request
-qmi_message_dms_set_firmware_preference_output_unref, function in DMS Set Firmware Preference +qmi_message_dms_set_service_programming_code_input_new, function in DMS Set Service Programming Code request
-qmi_message_dms_set_operating_mode_input_get_mode, function in DMS Set Operating Mode +qmi_message_dms_set_service_programming_code_input_ref, function in DMS Set Service Programming Code request
-qmi_message_dms_set_operating_mode_input_new, function in DMS Set Operating Mode +qmi_message_dms_set_service_programming_code_input_set_current, function in Deprecated interface
-qmi_message_dms_set_operating_mode_input_ref, function in DMS Set Operating Mode +qmi_message_dms_set_service_programming_code_input_set_current_code, function in DMS Set Service Programming Code request
-qmi_message_dms_set_operating_mode_input_set_mode, function in DMS Set Operating Mode +qmi_message_dms_set_service_programming_code_input_set_new, function in Deprecated interface
-qmi_message_dms_set_operating_mode_input_unref, function in DMS Set Operating Mode +qmi_message_dms_set_service_programming_code_input_set_new_code, function in DMS Set Service Programming Code request
-qmi_message_dms_set_operating_mode_output_get_result, function in DMS Set Operating Mode +qmi_message_dms_set_service_programming_code_input_unref, function in DMS Set Service Programming Code request
-qmi_message_dms_set_operating_mode_output_ref, function in DMS Set Operating Mode +qmi_message_dms_set_service_programming_code_output_get_result, function in DMS Set Service Programming Code request
-qmi_message_dms_set_operating_mode_output_unref, function in DMS Set Operating Mode +qmi_message_dms_set_service_programming_code_output_ref, function in DMS Set Service Programming Code request
-qmi_message_dms_set_service_programming_code_input_get_current, function in API break replacements +qmi_message_dms_set_service_programming_code_output_unref, function in DMS Set Service Programming Code request
-qmi_message_dms_set_service_programming_code_input_get_current_code, function in DMS Set Service Programming Code +qmi_message_dms_set_time_input_get_time_reference_type, function in DMS Set Time request
-qmi_message_dms_set_service_programming_code_input_get_new, function in API break replacements +qmi_message_dms_set_time_input_get_time_value, function in DMS Set Time request
-qmi_message_dms_set_service_programming_code_input_get_new_code, function in DMS Set Service Programming Code +qmi_message_dms_set_time_input_new, function in DMS Set Time request
-qmi_message_dms_set_service_programming_code_input_new, function in DMS Set Service Programming Code +qmi_message_dms_set_time_input_ref, function in DMS Set Time request
-qmi_message_dms_set_service_programming_code_input_ref, function in DMS Set Service Programming Code +qmi_message_dms_set_time_input_set_time_reference_type, function in DMS Set Time request
-qmi_message_dms_set_service_programming_code_input_set_current, function in API break replacements +qmi_message_dms_set_time_input_set_time_value, function in DMS Set Time request
-qmi_message_dms_set_service_programming_code_input_set_current_code, function in DMS Set Service Programming Code +qmi_message_dms_set_time_input_unref, function in DMS Set Time request
-qmi_message_dms_set_service_programming_code_input_set_new, function in API break replacements +qmi_message_dms_set_time_output_get_result, function in DMS Set Time request
-qmi_message_dms_set_service_programming_code_input_set_new_code, function in DMS Set Service Programming Code +qmi_message_dms_set_time_output_ref, function in DMS Set Time request
-qmi_message_dms_set_service_programming_code_input_unref, function in DMS Set Service Programming Code +qmi_message_dms_set_time_output_unref, function in DMS Set Time request
-qmi_message_dms_set_service_programming_code_output_get_result, function in DMS Set Service Programming Code +qmi_message_dms_set_user_lock_code_input_get_info, function in DMS Set User Lock Code request
-qmi_message_dms_set_service_programming_code_output_ref, function in DMS Set Service Programming Code +qmi_message_dms_set_user_lock_code_input_new, function in DMS Set User Lock Code request
-qmi_message_dms_set_service_programming_code_output_unref, function in DMS Set Service Programming Code +qmi_message_dms_set_user_lock_code_input_ref, function in DMS Set User Lock Code request
-qmi_message_dms_set_time_input_get_time_reference_type, function in DMS Set Time +qmi_message_dms_set_user_lock_code_input_set_info, function in DMS Set User Lock Code request
-qmi_message_dms_set_time_input_get_time_value, function in DMS Set Time +qmi_message_dms_set_user_lock_code_input_unref, function in DMS Set User Lock Code request
-qmi_message_dms_set_time_input_new, function in DMS Set Time +qmi_message_dms_set_user_lock_code_output_get_result, function in DMS Set User Lock Code request
-qmi_message_dms_set_time_input_ref, function in DMS Set Time +qmi_message_dms_set_user_lock_code_output_ref, function in DMS Set User Lock Code request
-qmi_message_dms_set_time_input_set_time_reference_type, function in DMS Set Time +qmi_message_dms_set_user_lock_code_output_unref, function in DMS Set User Lock Code request
-qmi_message_dms_set_time_input_set_time_value, function in DMS Set Time +qmi_message_dms_set_user_lock_state_input_get_info, function in DMS Set User Lock State request
-qmi_message_dms_set_time_input_unref, function in DMS Set Time +qmi_message_dms_set_user_lock_state_input_new, function in DMS Set User Lock State request
-qmi_message_dms_set_time_output_get_result, function in DMS Set Time +qmi_message_dms_set_user_lock_state_input_ref, function in DMS Set User Lock State request
-qmi_message_dms_set_time_output_ref, function in DMS Set Time +qmi_message_dms_set_user_lock_state_input_set_info, function in DMS Set User Lock State request
-qmi_message_dms_set_time_output_unref, function in DMS Set Time +qmi_message_dms_set_user_lock_state_input_unref, function in DMS Set User Lock State request
-qmi_message_dms_set_user_lock_code_input_get_info, function in DMS Set User Lock Code +qmi_message_dms_set_user_lock_state_output_get_result, function in DMS Set User Lock State request
-qmi_message_dms_set_user_lock_code_input_new, function in DMS Set User Lock Code +qmi_message_dms_set_user_lock_state_output_ref, function in DMS Set User Lock State request
-qmi_message_dms_set_user_lock_code_input_ref, function in DMS Set User Lock Code +qmi_message_dms_set_user_lock_state_output_unref, function in DMS Set User Lock State request
-qmi_message_dms_set_user_lock_code_input_set_info, function in DMS Set User Lock Code +qmi_message_dms_swi_get_current_firmware_output_get_amss_version, function in DMS Swi Get Current Firmware request
-qmi_message_dms_set_user_lock_code_input_unref, function in DMS Set User Lock Code +qmi_message_dms_swi_get_current_firmware_output_get_boot_version, function in DMS Swi Get Current Firmware request
-qmi_message_dms_set_user_lock_code_output_get_result, function in DMS Set User Lock Code +qmi_message_dms_swi_get_current_firmware_output_get_carrier, function in DMS Swi Get Current Firmware request
-qmi_message_dms_set_user_lock_code_output_ref, function in DMS Set User Lock Code +qmi_message_dms_swi_get_current_firmware_output_get_carrier_id, function in DMS Swi Get Current Firmware request
-qmi_message_dms_set_user_lock_code_output_unref, function in DMS Set User Lock Code +qmi_message_dms_swi_get_current_firmware_output_get_config_version, function in DMS Swi Get Current Firmware request
-qmi_message_dms_set_user_lock_state_input_get_info, function in DMS Set User Lock State +qmi_message_dms_swi_get_current_firmware_output_get_model, function in DMS Swi Get Current Firmware request
-qmi_message_dms_set_user_lock_state_input_new, function in DMS Set User Lock State +qmi_message_dms_swi_get_current_firmware_output_get_package_id, function in DMS Swi Get Current Firmware request
-qmi_message_dms_set_user_lock_state_input_ref, function in DMS Set User Lock State +qmi_message_dms_swi_get_current_firmware_output_get_pri_version, function in DMS Swi Get Current Firmware request
-qmi_message_dms_set_user_lock_state_input_set_info, function in DMS Set User Lock State +qmi_message_dms_swi_get_current_firmware_output_get_result, function in DMS Swi Get Current Firmware request
-qmi_message_dms_set_user_lock_state_input_unref, function in DMS Set User Lock State +qmi_message_dms_swi_get_current_firmware_output_get_sku_id, function in DMS Swi Get Current Firmware request
-qmi_message_dms_set_user_lock_state_output_get_result, function in DMS Set User Lock State +qmi_message_dms_swi_get_current_firmware_output_ref, function in DMS Swi Get Current Firmware request
-qmi_message_dms_set_user_lock_state_output_ref, function in DMS Set User Lock State +qmi_message_dms_swi_get_current_firmware_output_unref, function in DMS Swi Get Current Firmware request
-qmi_message_dms_set_user_lock_state_output_unref, function in DMS Set User Lock State +qmi_message_dms_swi_get_usb_composition_output_get_current, function in DMS Swi Get USB Composition request
-qmi_message_dms_swi_get_current_firmware_output_get_amss_version, function in DMS Swi Get Current Firmware +qmi_message_dms_swi_get_usb_composition_output_get_result, function in DMS Swi Get USB Composition request
-qmi_message_dms_swi_get_current_firmware_output_get_boot_version, function in DMS Swi Get Current Firmware +qmi_message_dms_swi_get_usb_composition_output_get_supported, function in DMS Swi Get USB Composition request
-qmi_message_dms_swi_get_current_firmware_output_get_carrier, function in DMS Swi Get Current Firmware +qmi_message_dms_swi_get_usb_composition_output_ref, function in DMS Swi Get USB Composition request
-qmi_message_dms_swi_get_current_firmware_output_get_carrier_id, function in DMS Swi Get Current Firmware +qmi_message_dms_swi_get_usb_composition_output_unref, function in DMS Swi Get USB Composition request
-qmi_message_dms_swi_get_current_firmware_output_get_config_version, function in DMS Swi Get Current Firmware +qmi_message_dms_swi_set_usb_composition_input_get_current, function in DMS Swi Set USB Composition request
-qmi_message_dms_swi_get_current_firmware_output_get_model, function in DMS Swi Get Current Firmware +qmi_message_dms_swi_set_usb_composition_input_new, function in DMS Swi Set USB Composition request
-qmi_message_dms_swi_get_current_firmware_output_get_package_id, function in DMS Swi Get Current Firmware +qmi_message_dms_swi_set_usb_composition_input_ref, function in DMS Swi Set USB Composition request
-qmi_message_dms_swi_get_current_firmware_output_get_pri_version, function in DMS Swi Get Current Firmware +qmi_message_dms_swi_set_usb_composition_input_set_current, function in DMS Swi Set USB Composition request
-qmi_message_dms_swi_get_current_firmware_output_get_result, function in DMS Swi Get Current Firmware +qmi_message_dms_swi_set_usb_composition_input_unref, function in DMS Swi Set USB Composition request
-qmi_message_dms_swi_get_current_firmware_output_get_sku_id, function in DMS Swi Get Current Firmware +qmi_message_dms_swi_set_usb_composition_output_get_result, function in DMS Swi Set USB Composition request
-qmi_message_dms_swi_get_current_firmware_output_ref, function in DMS Swi Get Current Firmware +qmi_message_dms_swi_set_usb_composition_output_ref, function in DMS Swi Set USB Composition request
-qmi_message_dms_swi_get_current_firmware_output_unref, function in DMS Swi Get Current Firmware +qmi_message_dms_swi_set_usb_composition_output_unref, function in DMS Swi Set USB Composition request
-qmi_message_dms_uim_change_pin_input_get_info, function in DMS UIM Change PIN +qmi_message_dms_uim_change_pin_input_get_info, function in DMS UIM Change PIN request
-qmi_message_dms_uim_change_pin_input_new, function in DMS UIM Change PIN +qmi_message_dms_uim_change_pin_input_new, function in DMS UIM Change PIN request
-qmi_message_dms_uim_change_pin_input_ref, function in DMS UIM Change PIN +qmi_message_dms_uim_change_pin_input_ref, function in DMS UIM Change PIN request
-qmi_message_dms_uim_change_pin_input_set_info, function in DMS UIM Change PIN +qmi_message_dms_uim_change_pin_input_set_info, function in DMS UIM Change PIN request
-qmi_message_dms_uim_change_pin_input_unref, function in DMS UIM Change PIN +qmi_message_dms_uim_change_pin_input_unref, function in DMS UIM Change PIN request
-qmi_message_dms_uim_change_pin_output_get_pin_retries_status, function in DMS UIM Change PIN +qmi_message_dms_uim_change_pin_output_get_pin_retries_status, function in DMS UIM Change PIN request
-qmi_message_dms_uim_change_pin_output_get_result, function in DMS UIM Change PIN +qmi_message_dms_uim_change_pin_output_get_result, function in DMS UIM Change PIN request
-qmi_message_dms_uim_change_pin_output_ref, function in DMS UIM Change PIN +qmi_message_dms_uim_change_pin_output_ref, function in DMS UIM Change PIN request
-qmi_message_dms_uim_change_pin_output_unref, function in DMS UIM Change PIN +qmi_message_dms_uim_change_pin_output_unref, function in DMS UIM Change PIN request
-qmi_message_dms_uim_get_ck_status_input_get_facility, function in DMS UIM Get CK Status +qmi_message_dms_uim_get_ck_status_input_get_facility, function in DMS UIM Get CK Status request
-qmi_message_dms_uim_get_ck_status_input_new, function in DMS UIM Get CK Status +qmi_message_dms_uim_get_ck_status_input_new, function in DMS UIM Get CK Status request
-qmi_message_dms_uim_get_ck_status_input_ref, function in DMS UIM Get CK Status +qmi_message_dms_uim_get_ck_status_input_ref, function in DMS UIM Get CK Status request
-qmi_message_dms_uim_get_ck_status_input_set_facility, function in DMS UIM Get CK Status +qmi_message_dms_uim_get_ck_status_input_set_facility, function in DMS UIM Get CK Status request
-qmi_message_dms_uim_get_ck_status_input_unref, function in DMS UIM Get CK Status +qmi_message_dms_uim_get_ck_status_input_unref, function in DMS UIM Get CK Status request
-qmi_message_dms_uim_get_ck_status_output_get_ck_status, function in DMS UIM Get CK Status +qmi_message_dms_uim_get_ck_status_output_get_ck_status, function in DMS UIM Get CK Status request
-qmi_message_dms_uim_get_ck_status_output_get_operation_blocking_facility, function in DMS UIM Get CK Status +qmi_message_dms_uim_get_ck_status_output_get_operation_blocking_facility, function in DMS UIM Get CK Status request
-qmi_message_dms_uim_get_ck_status_output_get_result, function in DMS UIM Get CK Status +qmi_message_dms_uim_get_ck_status_output_get_result, function in DMS UIM Get CK Status request
-qmi_message_dms_uim_get_ck_status_output_ref, function in DMS UIM Get CK Status +qmi_message_dms_uim_get_ck_status_output_ref, function in DMS UIM Get CK Status request
-qmi_message_dms_uim_get_ck_status_output_unref, function in DMS UIM Get CK Status +qmi_message_dms_uim_get_ck_status_output_unref, function in DMS UIM Get CK Status request
-qmi_message_dms_uim_get_iccid_output_get_iccid, function in DMS UIM Get ICCID +qmi_message_dms_uim_get_iccid_output_get_iccid, function in DMS UIM Get ICCID request
-qmi_message_dms_uim_get_iccid_output_get_result, function in DMS UIM Get ICCID +qmi_message_dms_uim_get_iccid_output_get_result, function in DMS UIM Get ICCID request
-qmi_message_dms_uim_get_iccid_output_ref, function in DMS UIM Get ICCID +qmi_message_dms_uim_get_iccid_output_ref, function in DMS UIM Get ICCID request
-qmi_message_dms_uim_get_iccid_output_unref, function in DMS UIM Get ICCID +qmi_message_dms_uim_get_iccid_output_unref, function in DMS UIM Get ICCID request
-qmi_message_dms_uim_get_imsi_output_get_imsi, function in DMS UIM Get IMSI +qmi_message_dms_uim_get_imsi_output_get_imsi, function in DMS UIM Get IMSI request
-qmi_message_dms_uim_get_imsi_output_get_result, function in DMS UIM Get IMSI +qmi_message_dms_uim_get_imsi_output_get_result, function in DMS UIM Get IMSI request
-qmi_message_dms_uim_get_imsi_output_ref, function in DMS UIM Get IMSI +qmi_message_dms_uim_get_imsi_output_ref, function in DMS UIM Get IMSI request
-qmi_message_dms_uim_get_imsi_output_unref, function in DMS UIM Get IMSI +qmi_message_dms_uim_get_imsi_output_unref, function in DMS UIM Get IMSI request
-qmi_message_dms_uim_get_pin_status_output_get_pin1_status, function in DMS UIM Get PIN Status +qmi_message_dms_uim_get_pin_status_output_get_pin1_status, function in DMS UIM Get PIN Status request
-qmi_message_dms_uim_get_pin_status_output_get_pin2_status, function in DMS UIM Get PIN Status +qmi_message_dms_uim_get_pin_status_output_get_pin2_status, function in DMS UIM Get PIN Status request
-qmi_message_dms_uim_get_pin_status_output_get_result, function in DMS UIM Get PIN Status +qmi_message_dms_uim_get_pin_status_output_get_result, function in DMS UIM Get PIN Status request
-qmi_message_dms_uim_get_pin_status_output_ref, function in DMS UIM Get PIN Status +qmi_message_dms_uim_get_pin_status_output_ref, function in DMS UIM Get PIN Status request
-qmi_message_dms_uim_get_pin_status_output_unref, function in DMS UIM Get PIN Status +qmi_message_dms_uim_get_pin_status_output_unref, function in DMS UIM Get PIN Status request
-qmi_message_dms_uim_get_state_output_get_result, function in DMS UIM Get State +qmi_message_dms_uim_get_state_output_get_result, function in DMS UIM Get State request
-qmi_message_dms_uim_get_state_output_get_state, function in DMS UIM Get State +qmi_message_dms_uim_get_state_output_get_state, function in DMS UIM Get State request
-qmi_message_dms_uim_get_state_output_ref, function in DMS UIM Get State +qmi_message_dms_uim_get_state_output_ref, function in DMS UIM Get State request
-qmi_message_dms_uim_get_state_output_unref, function in DMS UIM Get State +qmi_message_dms_uim_get_state_output_unref, function in DMS UIM Get State request
-qmi_message_dms_uim_set_ck_protection_input_get_facility, function in DMS UIM Set CK Protection +qmi_message_dms_uim_set_ck_protection_input_get_facility, function in DMS UIM Set CK Protection request
-qmi_message_dms_uim_set_ck_protection_input_new, function in DMS UIM Set CK Protection +qmi_message_dms_uim_set_ck_protection_input_new, function in DMS UIM Set CK Protection request
-qmi_message_dms_uim_set_ck_protection_input_ref, function in DMS UIM Set CK Protection +qmi_message_dms_uim_set_ck_protection_input_ref, function in DMS UIM Set CK Protection request
-qmi_message_dms_uim_set_ck_protection_input_set_facility, function in DMS UIM Set CK Protection +qmi_message_dms_uim_set_ck_protection_input_set_facility, function in DMS UIM Set CK Protection request
-qmi_message_dms_uim_set_ck_protection_input_unref, function in DMS UIM Set CK Protection +qmi_message_dms_uim_set_ck_protection_input_unref, function in DMS UIM Set CK Protection request
-qmi_message_dms_uim_set_ck_protection_output_get_result, function in DMS UIM Set CK Protection +qmi_message_dms_uim_set_ck_protection_output_get_result, function in DMS UIM Set CK Protection request
-qmi_message_dms_uim_set_ck_protection_output_get_verify_retries_left, function in DMS UIM Set CK Protection +qmi_message_dms_uim_set_ck_protection_output_get_verify_retries_left, function in DMS UIM Set CK Protection request
-qmi_message_dms_uim_set_ck_protection_output_ref, function in DMS UIM Set CK Protection +qmi_message_dms_uim_set_ck_protection_output_ref, function in DMS UIM Set CK Protection request
-qmi_message_dms_uim_set_ck_protection_output_unref, function in DMS UIM Set CK Protection +qmi_message_dms_uim_set_ck_protection_output_unref, function in DMS UIM Set CK Protection request
-qmi_message_dms_uim_set_pin_protection_input_get_info, function in DMS UIM Set PIN Protection +qmi_message_dms_uim_set_pin_protection_input_get_info, function in DMS UIM Set PIN Protection request
-qmi_message_dms_uim_set_pin_protection_input_new, function in DMS UIM Set PIN Protection +qmi_message_dms_uim_set_pin_protection_input_new, function in DMS UIM Set PIN Protection request
-qmi_message_dms_uim_set_pin_protection_input_ref, function in DMS UIM Set PIN Protection +qmi_message_dms_uim_set_pin_protection_input_ref, function in DMS UIM Set PIN Protection request
-qmi_message_dms_uim_set_pin_protection_input_set_info, function in DMS UIM Set PIN Protection +qmi_message_dms_uim_set_pin_protection_input_set_info, function in DMS UIM Set PIN Protection request
-qmi_message_dms_uim_set_pin_protection_input_unref, function in DMS UIM Set PIN Protection +qmi_message_dms_uim_set_pin_protection_input_unref, function in DMS UIM Set PIN Protection request
-qmi_message_dms_uim_set_pin_protection_output_get_pin_retries_status, function in DMS UIM Set PIN Protection +qmi_message_dms_uim_set_pin_protection_output_get_pin_retries_status, function in DMS UIM Set PIN Protection request
-qmi_message_dms_uim_set_pin_protection_output_get_result, function in DMS UIM Set PIN Protection +qmi_message_dms_uim_set_pin_protection_output_get_result, function in DMS UIM Set PIN Protection request
-qmi_message_dms_uim_set_pin_protection_output_ref, function in DMS UIM Set PIN Protection +qmi_message_dms_uim_set_pin_protection_output_ref, function in DMS UIM Set PIN Protection request
-qmi_message_dms_uim_set_pin_protection_output_unref, function in DMS UIM Set PIN Protection +qmi_message_dms_uim_set_pin_protection_output_unref, function in DMS UIM Set PIN Protection request
-qmi_message_dms_uim_unblock_ck_input_get_facility, function in DMS UIM Unblock CK +qmi_message_dms_uim_unblock_ck_input_get_facility, function in DMS UIM Unblock CK request
-qmi_message_dms_uim_unblock_ck_input_new, function in DMS UIM Unblock CK +qmi_message_dms_uim_unblock_ck_input_new, function in DMS UIM Unblock CK request
-qmi_message_dms_uim_unblock_ck_input_ref, function in DMS UIM Unblock CK +qmi_message_dms_uim_unblock_ck_input_ref, function in DMS UIM Unblock CK request
-qmi_message_dms_uim_unblock_ck_input_set_facility, function in DMS UIM Unblock CK +qmi_message_dms_uim_unblock_ck_input_set_facility, function in DMS UIM Unblock CK request
-qmi_message_dms_uim_unblock_ck_input_unref, function in DMS UIM Unblock CK +qmi_message_dms_uim_unblock_ck_input_unref, function in DMS UIM Unblock CK request
-qmi_message_dms_uim_unblock_ck_output_get_result, function in DMS UIM Unblock CK +qmi_message_dms_uim_unblock_ck_output_get_result, function in DMS UIM Unblock CK request
-qmi_message_dms_uim_unblock_ck_output_get_unblock_retries_left, function in DMS UIM Unblock CK +qmi_message_dms_uim_unblock_ck_output_get_unblock_retries_left, function in DMS UIM Unblock CK request
-qmi_message_dms_uim_unblock_ck_output_ref, function in DMS UIM Unblock CK +qmi_message_dms_uim_unblock_ck_output_ref, function in DMS UIM Unblock CK request
-qmi_message_dms_uim_unblock_ck_output_unref, function in DMS UIM Unblock CK +qmi_message_dms_uim_unblock_ck_output_unref, function in DMS UIM Unblock CK request
-qmi_message_dms_uim_unblock_pin_input_get_info, function in DMS UIM Unblock PIN +qmi_message_dms_uim_unblock_pin_input_get_info, function in DMS UIM Unblock PIN request
-qmi_message_dms_uim_unblock_pin_input_new, function in DMS UIM Unblock PIN +qmi_message_dms_uim_unblock_pin_input_new, function in DMS UIM Unblock PIN request
-qmi_message_dms_uim_unblock_pin_input_ref, function in DMS UIM Unblock PIN +qmi_message_dms_uim_unblock_pin_input_ref, function in DMS UIM Unblock PIN request
-qmi_message_dms_uim_unblock_pin_input_set_info, function in DMS UIM Unblock PIN +qmi_message_dms_uim_unblock_pin_input_set_info, function in DMS UIM Unblock PIN request
-qmi_message_dms_uim_unblock_pin_input_unref, function in DMS UIM Unblock PIN +qmi_message_dms_uim_unblock_pin_input_unref, function in DMS UIM Unblock PIN request
-qmi_message_dms_uim_unblock_pin_output_get_pin_retries_status, function in DMS UIM Unblock PIN +qmi_message_dms_uim_unblock_pin_output_get_pin_retries_status, function in DMS UIM Unblock PIN request
-qmi_message_dms_uim_unblock_pin_output_get_result, function in DMS UIM Unblock PIN +qmi_message_dms_uim_unblock_pin_output_get_result, function in DMS UIM Unblock PIN request
-qmi_message_dms_uim_unblock_pin_output_ref, function in DMS UIM Unblock PIN +qmi_message_dms_uim_unblock_pin_output_ref, function in DMS UIM Unblock PIN request
-qmi_message_dms_uim_unblock_pin_output_unref, function in DMS UIM Unblock PIN +qmi_message_dms_uim_unblock_pin_output_unref, function in DMS UIM Unblock PIN request
-qmi_message_dms_uim_verify_pin_input_get_info, function in DMS UIM Verify PIN +qmi_message_dms_uim_verify_pin_input_get_info, function in DMS UIM Verify PIN request
-qmi_message_dms_uim_verify_pin_input_new, function in DMS UIM Verify PIN +qmi_message_dms_uim_verify_pin_input_new, function in DMS UIM Verify PIN request
-qmi_message_dms_uim_verify_pin_input_ref, function in DMS UIM Verify PIN +qmi_message_dms_uim_verify_pin_input_ref, function in DMS UIM Verify PIN request
-qmi_message_dms_uim_verify_pin_input_set_info, function in DMS UIM Verify PIN +qmi_message_dms_uim_verify_pin_input_set_info, function in DMS UIM Verify PIN request
-qmi_message_dms_uim_verify_pin_input_unref, function in DMS UIM Verify PIN +qmi_message_dms_uim_verify_pin_input_unref, function in DMS UIM Verify PIN request
-qmi_message_dms_uim_verify_pin_output_get_pin_retries_status, function in DMS UIM Verify PIN +qmi_message_dms_uim_verify_pin_output_get_pin_retries_status, function in DMS UIM Verify PIN request
-qmi_message_dms_uim_verify_pin_output_get_result, function in DMS UIM Verify PIN +qmi_message_dms_uim_verify_pin_output_get_result, function in DMS UIM Verify PIN request
-qmi_message_dms_uim_verify_pin_output_ref, function in DMS UIM Verify PIN +qmi_message_dms_uim_verify_pin_output_ref, function in DMS UIM Verify PIN request
-qmi_message_dms_uim_verify_pin_output_unref, function in DMS UIM Verify PIN +qmi_message_dms_uim_verify_pin_output_unref, function in DMS UIM Verify PIN request
-qmi_message_dms_validate_service_programming_code_input_get_service_programming_code, function in DMS Validate Service Programming Code +qmi_message_dms_validate_service_programming_code_input_get_service_programming_code, function in DMS Validate Service Programming Code request
-qmi_message_dms_validate_service_programming_code_input_new, function in DMS Validate Service Programming Code +qmi_message_dms_validate_service_programming_code_input_new, function in DMS Validate Service Programming Code request
-qmi_message_dms_validate_service_programming_code_input_ref, function in DMS Validate Service Programming Code +qmi_message_dms_validate_service_programming_code_input_ref, function in DMS Validate Service Programming Code request
-qmi_message_dms_validate_service_programming_code_input_set_service_programming_code, function in DMS Validate Service Programming Code +qmi_message_dms_validate_service_programming_code_input_set_service_programming_code, function in DMS Validate Service Programming Code request
-qmi_message_dms_validate_service_programming_code_input_unref, function in DMS Validate Service Programming Code +qmi_message_dms_validate_service_programming_code_input_unref, function in DMS Validate Service Programming Code request
-qmi_message_dms_validate_service_programming_code_output_get_result, function in DMS Validate Service Programming Code +qmi_message_dms_validate_service_programming_code_output_get_result, function in DMS Validate Service Programming Code request
-qmi_message_dms_validate_service_programming_code_output_ref, function in DMS Validate Service Programming Code +qmi_message_dms_validate_service_programming_code_output_ref, function in DMS Validate Service Programming Code request
-qmi_message_dms_validate_service_programming_code_output_unref, function in DMS Validate Service Programming Code +qmi_message_dms_validate_service_programming_code_output_unref, function in DMS Validate Service Programming Code request
-qmi_message_dms_write_user_data_input_get_user_data, function in DMS Write User Data +qmi_message_dms_write_user_data_input_get_user_data, function in DMS Write User Data request
-qmi_message_dms_write_user_data_input_new, function in DMS Write User Data +qmi_message_dms_write_user_data_input_new, function in DMS Write User Data request
-qmi_message_dms_write_user_data_input_ref, function in DMS Write User Data +qmi_message_dms_write_user_data_input_ref, function in DMS Write User Data request
-qmi_message_dms_write_user_data_input_set_user_data, function in DMS Write User Data +qmi_message_dms_write_user_data_input_set_user_data, function in DMS Write User Data request
-qmi_message_dms_write_user_data_input_unref, function in DMS Write User Data +qmi_message_dms_write_user_data_input_unref, function in DMS Write User Data request
-qmi_message_dms_write_user_data_output_get_result, function in DMS Write User Data +qmi_message_dms_write_user_data_output_get_result, function in DMS Write User Data request
-qmi_message_dms_write_user_data_output_ref, function in DMS Write User Data +qmi_message_dms_write_user_data_output_ref, function in DMS Write User Data request
-qmi_message_dms_write_user_data_output_unref, function in DMS Write User Data +qmi_message_dms_write_user_data_output_unref, function in DMS Write User Data request
@@ -5666,7 +6787,7 @@
-qmi_message_get_printable, function in QmiMessage +qmi_message_get_printable, function in Deprecated interface
@@ -5694,7 +6815,7 @@
-qmi_message_get_version_introduced, function in QmiMessage +qmi_message_get_version_introduced, function in Deprecated interface
@@ -5714,1267 +6835,1783 @@
-qmi_message_nas_config_signal_info_input_get_ecio_threshold, function in NAS Config Signal Info +qmi_message_loc_delete_assistance_data_input_get_delete_all, function in LOC Delete Assistance Data request +
+
+
+qmi_message_loc_delete_assistance_data_input_get_delete_cell_database_mask, function in LOC Delete Assistance Data request +
+
+
+qmi_message_loc_delete_assistance_data_input_get_delete_clock_info_mask, function in LOC Delete Assistance Data request +
+
+
+qmi_message_loc_delete_assistance_data_input_get_delete_gnss_data_mask, function in LOC Delete Assistance Data request +
+
+
+qmi_message_loc_delete_assistance_data_input_get_delete_sv_info, function in LOC Delete Assistance Data request +
+
+
+qmi_message_loc_delete_assistance_data_input_new, function in LOC Delete Assistance Data request +
+
+
+qmi_message_loc_delete_assistance_data_input_ref, function in LOC Delete Assistance Data request +
+
+
+qmi_message_loc_delete_assistance_data_input_set_delete_all, function in LOC Delete Assistance Data request +
+
+
+qmi_message_loc_delete_assistance_data_input_set_delete_cell_database_mask, function in LOC Delete Assistance Data request +
+
+
+qmi_message_loc_delete_assistance_data_input_set_delete_clock_info_mask, function in LOC Delete Assistance Data request +
+
+
+qmi_message_loc_delete_assistance_data_input_set_delete_gnss_data_mask, function in LOC Delete Assistance Data request +
+
+
+qmi_message_loc_delete_assistance_data_input_set_delete_sv_info, function in LOC Delete Assistance Data request +
+
+
+qmi_message_loc_delete_assistance_data_input_unref, function in LOC Delete Assistance Data request +
+
+
+qmi_message_loc_delete_assistance_data_output_get_result, function in LOC Delete Assistance Data request +
+
+
+qmi_message_loc_delete_assistance_data_output_ref, function in LOC Delete Assistance Data request +
+
+
+qmi_message_loc_delete_assistance_data_output_unref, function in LOC Delete Assistance Data request +
+
+
+qmi_message_loc_get_operation_mode_output_get_result, function in LOC Get Operation Mode request +
+
+
+qmi_message_loc_get_operation_mode_output_ref, function in LOC Get Operation Mode request +
+
+
+qmi_message_loc_get_operation_mode_output_unref, function in LOC Get Operation Mode request +
+
+
+qmi_message_loc_get_predicted_orbits_data_source_output_get_result, function in LOC Get Predicted Orbits Data Source request +
+
+
+qmi_message_loc_get_predicted_orbits_data_source_output_ref, function in LOC Get Predicted Orbits Data Source request +
+
+
+qmi_message_loc_get_predicted_orbits_data_source_output_unref, function in LOC Get Predicted Orbits Data Source request +
+
+
+qmi_message_loc_get_server_input_get_server_address_type, function in LOC Get Server request +
+
+
+qmi_message_loc_get_server_input_get_server_type, function in LOC Get Server request +
+
+
+qmi_message_loc_get_server_input_new, function in LOC Get Server request +
+
+
+qmi_message_loc_get_server_input_ref, function in LOC Get Server request +
+
+
+qmi_message_loc_get_server_input_set_server_address_type, function in LOC Get Server request +
+
+
+qmi_message_loc_get_server_input_set_server_type, function in LOC Get Server request +
+
+
+qmi_message_loc_get_server_input_unref, function in LOC Get Server request +
+
+
+qmi_message_loc_get_server_output_get_result, function in LOC Get Server request +
+
+
+qmi_message_loc_get_server_output_ref, function in LOC Get Server request +
+
+
+qmi_message_loc_get_server_output_unref, function in LOC Get Server request +
+
+
+qmi_message_loc_inject_predicted_orbits_data_input_get_format_type, function in LOC Inject Predicted Orbits Data request +
+
+
+qmi_message_loc_inject_predicted_orbits_data_input_get_part_data, function in LOC Inject Predicted Orbits Data request +
+
+
+qmi_message_loc_inject_predicted_orbits_data_input_get_part_number, function in LOC Inject Predicted Orbits Data request +
+
+
+qmi_message_loc_inject_predicted_orbits_data_input_get_total_parts, function in LOC Inject Predicted Orbits Data request +
+
+
+qmi_message_loc_inject_predicted_orbits_data_input_get_total_size, function in LOC Inject Predicted Orbits Data request +
+
+
+qmi_message_loc_inject_predicted_orbits_data_input_new, function in LOC Inject Predicted Orbits Data request +
+
+
+qmi_message_loc_inject_predicted_orbits_data_input_ref, function in LOC Inject Predicted Orbits Data request +
+
+
+qmi_message_loc_inject_predicted_orbits_data_input_set_format_type, function in LOC Inject Predicted Orbits Data request +
+
+
+qmi_message_loc_inject_predicted_orbits_data_input_set_part_data, function in LOC Inject Predicted Orbits Data request +
+
+
+qmi_message_loc_inject_predicted_orbits_data_input_set_part_number, function in LOC Inject Predicted Orbits Data request +
+
+
+qmi_message_loc_inject_predicted_orbits_data_input_set_total_parts, function in LOC Inject Predicted Orbits Data request +
+
+
+qmi_message_loc_inject_predicted_orbits_data_input_set_total_size, function in LOC Inject Predicted Orbits Data request +
+
+
+qmi_message_loc_inject_predicted_orbits_data_input_unref, function in LOC Inject Predicted Orbits Data request +
+
+
+qmi_message_loc_inject_predicted_orbits_data_output_get_result, function in LOC Inject Predicted Orbits Data request +
+
+
+qmi_message_loc_inject_predicted_orbits_data_output_ref, function in LOC Inject Predicted Orbits Data request +
+
+
+qmi_message_loc_inject_predicted_orbits_data_output_unref, function in LOC Inject Predicted Orbits Data request +
+
+
+qmi_message_loc_inject_xtra_data_input_get_part_data, function in LOC Inject Xtra Data request +
+
+
+qmi_message_loc_inject_xtra_data_input_get_part_number, function in LOC Inject Xtra Data request +
+
+
+qmi_message_loc_inject_xtra_data_input_get_total_parts, function in LOC Inject Xtra Data request +
+
+
+qmi_message_loc_inject_xtra_data_input_get_total_size, function in LOC Inject Xtra Data request +
+
+
+qmi_message_loc_inject_xtra_data_input_new, function in LOC Inject Xtra Data request +
+
+
+qmi_message_loc_inject_xtra_data_input_ref, function in LOC Inject Xtra Data request +
+
+
+qmi_message_loc_inject_xtra_data_input_set_part_data, function in LOC Inject Xtra Data request +
+
+
+qmi_message_loc_inject_xtra_data_input_set_part_number, function in LOC Inject Xtra Data request +
+
+
+qmi_message_loc_inject_xtra_data_input_set_total_parts, function in LOC Inject Xtra Data request +
+
+
+qmi_message_loc_inject_xtra_data_input_set_total_size, function in LOC Inject Xtra Data request +
+
+
+qmi_message_loc_inject_xtra_data_input_unref, function in LOC Inject Xtra Data request +
+
+
+qmi_message_loc_inject_xtra_data_output_get_result, function in LOC Inject Xtra Data request +
+
+
+qmi_message_loc_inject_xtra_data_output_ref, function in LOC Inject Xtra Data request +
+
+
+qmi_message_loc_inject_xtra_data_output_unref, function in LOC Inject Xtra Data request +
+
+
+qmi_message_loc_register_events_input_get_event_registration_mask, function in LOC Register Events request +
+
+
+qmi_message_loc_register_events_input_new, function in LOC Register Events request +
+
+
+qmi_message_loc_register_events_input_ref, function in LOC Register Events request +
+
+
+qmi_message_loc_register_events_input_set_event_registration_mask, function in LOC Register Events request +
+
+
+qmi_message_loc_register_events_input_unref, function in LOC Register Events request +
+
+
+qmi_message_loc_register_events_output_get_result, function in LOC Register Events request +
+
+
+qmi_message_loc_register_events_output_ref, function in LOC Register Events request +
+
+
+qmi_message_loc_register_events_output_unref, function in LOC Register Events request +
+
+
+qmi_message_loc_set_operation_mode_input_get_operation_mode, function in LOC Set Operation Mode request +
+
+
+qmi_message_loc_set_operation_mode_input_new, function in LOC Set Operation Mode request +
+
+
+qmi_message_loc_set_operation_mode_input_ref, function in LOC Set Operation Mode request +
+
+
+qmi_message_loc_set_operation_mode_input_set_operation_mode, function in LOC Set Operation Mode request +
+
+
+qmi_message_loc_set_operation_mode_input_unref, function in LOC Set Operation Mode request +
+
+
+qmi_message_loc_set_operation_mode_output_get_result, function in LOC Set Operation Mode request +
+
+
+qmi_message_loc_set_operation_mode_output_ref, function in LOC Set Operation Mode request +
+
+
+qmi_message_loc_set_operation_mode_output_unref, function in LOC Set Operation Mode request +
+
+
+qmi_message_loc_set_server_input_get_ipv4, function in LOC Set Server request +
+
+
+qmi_message_loc_set_server_input_get_ipv6, function in LOC Set Server request +
+
+
+qmi_message_loc_set_server_input_get_server_type, function in LOC Set Server request +
+
+
+qmi_message_loc_set_server_input_get_url, function in LOC Set Server request +
+
+
+qmi_message_loc_set_server_input_new, function in LOC Set Server request +
+
+
+qmi_message_loc_set_server_input_ref, function in LOC Set Server request +
+
+
+qmi_message_loc_set_server_input_set_ipv4, function in LOC Set Server request +
+
+
+qmi_message_loc_set_server_input_set_ipv6, function in LOC Set Server request +
+
+
+qmi_message_loc_set_server_input_set_server_type, function in LOC Set Server request +
+
+
+qmi_message_loc_set_server_input_set_url, function in LOC Set Server request +
+
+
+qmi_message_loc_set_server_input_unref, function in LOC Set Server request +
+
+
+qmi_message_loc_set_server_output_get_result, function in LOC Set Server request +
+
+
+qmi_message_loc_set_server_output_ref, function in LOC Set Server request +
+
+
+qmi_message_loc_set_server_output_unref, function in LOC Set Server request +
+
+
+qmi_message_loc_start_input_get_fix_recurrence_type, function in LOC Start request +
+
+
+qmi_message_loc_start_input_get_intermediate_report_state, function in LOC Start request +
+
+
+qmi_message_loc_start_input_get_minimum_interval_between_position_reports, function in LOC Start request +
+
+
+qmi_message_loc_start_input_get_session_id, function in LOC Start request +
+
+
+qmi_message_loc_start_input_new, function in LOC Start request +
+
+
+qmi_message_loc_start_input_ref, function in LOC Start request +
+
+
+qmi_message_loc_start_input_set_fix_recurrence_type, function in LOC Start request +
+
+
+qmi_message_loc_start_input_set_intermediate_report_state, function in LOC Start request +
+
+
+qmi_message_loc_start_input_set_minimum_interval_between_position_reports, function in LOC Start request +
+
+
+qmi_message_loc_start_input_set_session_id, function in LOC Start request +
+
+
+qmi_message_loc_start_input_unref, function in LOC Start request +
+
+
+qmi_message_loc_start_output_get_result, function in LOC Start request +
+
+
+qmi_message_loc_start_output_ref, function in LOC Start request +
+
+
+qmi_message_loc_start_output_unref, function in LOC Start request +
+
+
+qmi_message_loc_stop_input_get_session_id, function in LOC Stop request +
+
+
+qmi_message_loc_stop_input_new, function in LOC Stop request +
+
+
+qmi_message_loc_stop_input_ref, function in LOC Stop request +
+
+
+qmi_message_loc_stop_input_set_session_id, function in LOC Stop request +
+
+
+qmi_message_loc_stop_input_unref, function in LOC Stop request +
+
+
+qmi_message_loc_stop_output_get_result, function in LOC Stop request +
+
+
+qmi_message_loc_stop_output_ref, function in LOC Stop request +
+
+
+qmi_message_loc_stop_output_unref, function in LOC Stop request +
+
+
+qmi_message_nas_attach_detach_input_get_action, function in NAS Attach Detach request +
+
+
+qmi_message_nas_attach_detach_input_new, function in NAS Attach Detach request +
+
+
+qmi_message_nas_attach_detach_input_ref, function in NAS Attach Detach request +
+
+
+qmi_message_nas_attach_detach_input_set_action, function in NAS Attach Detach request +
+
+
+qmi_message_nas_attach_detach_input_unref, function in NAS Attach Detach request +
+
+
+qmi_message_nas_attach_detach_output_get_result, function in NAS Attach Detach request +
+
+
+qmi_message_nas_attach_detach_output_ref, function in NAS Attach Detach request +
+
+
+qmi_message_nas_attach_detach_output_unref, function in NAS Attach Detach request +
+
+
+qmi_message_nas_config_signal_info_input_get_ecio_threshold, function in NAS Config Signal Info request +
+
+
+qmi_message_nas_config_signal_info_input_get_io_threshold, function in NAS Config Signal Info request
-qmi_message_nas_config_signal_info_input_get_io_threshold, function in NAS Config Signal Info +qmi_message_nas_config_signal_info_input_get_lte_report, function in NAS Config Signal Info request
-qmi_message_nas_config_signal_info_input_get_lte_report, function in NAS Config Signal Info +qmi_message_nas_config_signal_info_input_get_lte_snr_threshold, function in NAS Config Signal Info request
-qmi_message_nas_config_signal_info_input_get_lte_snr_threshold, function in NAS Config Signal Info +qmi_message_nas_config_signal_info_input_get_rscp_threshold, function in NAS Config Signal Info request
-qmi_message_nas_config_signal_info_input_get_rscp_threshold, function in NAS Config Signal Info +qmi_message_nas_config_signal_info_input_get_rsrp_threshold, function in NAS Config Signal Info request
-qmi_message_nas_config_signal_info_input_get_rsrp_threshold, function in NAS Config Signal Info +qmi_message_nas_config_signal_info_input_get_rsrq_threshold, function in NAS Config Signal Info request
-qmi_message_nas_config_signal_info_input_get_rsrq_threshold, function in NAS Config Signal Info +qmi_message_nas_config_signal_info_input_get_rssi_threshold, function in NAS Config Signal Info request
-qmi_message_nas_config_signal_info_input_get_rssi_threshold, function in NAS Config Signal Info +qmi_message_nas_config_signal_info_input_get_sinr_threshold, function in NAS Config Signal Info request
-qmi_message_nas_config_signal_info_input_get_sinr_threshold, function in NAS Config Signal Info +qmi_message_nas_config_signal_info_input_new, function in NAS Config Signal Info request
-qmi_message_nas_config_signal_info_input_new, function in NAS Config Signal Info +qmi_message_nas_config_signal_info_input_ref, function in NAS Config Signal Info request
-qmi_message_nas_config_signal_info_input_ref, function in NAS Config Signal Info +qmi_message_nas_config_signal_info_input_set_ecio_threshold, function in NAS Config Signal Info request
-qmi_message_nas_config_signal_info_input_set_ecio_threshold, function in NAS Config Signal Info +qmi_message_nas_config_signal_info_input_set_io_threshold, function in NAS Config Signal Info request
-qmi_message_nas_config_signal_info_input_set_io_threshold, function in NAS Config Signal Info +qmi_message_nas_config_signal_info_input_set_lte_report, function in NAS Config Signal Info request
-qmi_message_nas_config_signal_info_input_set_lte_report, function in NAS Config Signal Info +qmi_message_nas_config_signal_info_input_set_lte_snr_threshold, function in NAS Config Signal Info request
-qmi_message_nas_config_signal_info_input_set_lte_snr_threshold, function in NAS Config Signal Info +qmi_message_nas_config_signal_info_input_set_rscp_threshold, function in NAS Config Signal Info request
-qmi_message_nas_config_signal_info_input_set_rscp_threshold, function in NAS Config Signal Info +qmi_message_nas_config_signal_info_input_set_rsrp_threshold, function in NAS Config Signal Info request
-qmi_message_nas_config_signal_info_input_set_rsrp_threshold, function in NAS Config Signal Info +qmi_message_nas_config_signal_info_input_set_rsrq_threshold, function in NAS Config Signal Info request
-qmi_message_nas_config_signal_info_input_set_rsrq_threshold, function in NAS Config Signal Info +qmi_message_nas_config_signal_info_input_set_rssi_threshold, function in NAS Config Signal Info request
-qmi_message_nas_config_signal_info_input_set_rssi_threshold, function in NAS Config Signal Info +qmi_message_nas_config_signal_info_input_set_sinr_threshold, function in NAS Config Signal Info request
-qmi_message_nas_config_signal_info_input_set_sinr_threshold, function in NAS Config Signal Info +qmi_message_nas_config_signal_info_input_unref, function in NAS Config Signal Info request
-qmi_message_nas_config_signal_info_input_unref, function in NAS Config Signal Info +qmi_message_nas_config_signal_info_output_get_result, function in NAS Config Signal Info request
-qmi_message_nas_config_signal_info_output_get_result, function in NAS Config Signal Info +qmi_message_nas_config_signal_info_output_ref, function in NAS Config Signal Info request
-qmi_message_nas_config_signal_info_output_ref, function in NAS Config Signal Info +qmi_message_nas_config_signal_info_output_unref, function in NAS Config Signal Info request
-qmi_message_nas_config_signal_info_output_unref, function in NAS Config Signal Info +qmi_message_nas_force_network_search_output_get_result, function in NAS Force Network Search request
-qmi_message_nas_force_network_search_output_get_result, function in NAS Force Network Search +qmi_message_nas_force_network_search_output_ref, function in NAS Force Network Search request
-qmi_message_nas_force_network_search_output_ref, function in NAS Force Network Search +qmi_message_nas_force_network_search_output_unref, function in NAS Force Network Search request
-qmi_message_nas_force_network_search_output_unref, function in NAS Force Network Search +qmi_message_nas_get_cdma_position_info_output_get_cdma_position_info, function in NAS Get CDMA Position Info request
-qmi_message_nas_get_cdma_position_info_output_get_cdma_position_info, function in NAS Get CDMA Position Info +qmi_message_nas_get_cdma_position_info_output_get_result, function in NAS Get CDMA Position Info request
-qmi_message_nas_get_cdma_position_info_output_get_result, function in NAS Get CDMA Position Info +qmi_message_nas_get_cdma_position_info_output_ref, function in NAS Get CDMA Position Info request
-qmi_message_nas_get_cdma_position_info_output_ref, function in NAS Get CDMA Position Info +qmi_message_nas_get_cdma_position_info_output_unref, function in NAS Get CDMA Position Info request
-qmi_message_nas_get_cdma_position_info_output_unref, function in NAS Get CDMA Position Info +qmi_message_nas_get_cell_location_info_output_get_cdma_info, function in NAS Get Cell Location Info request
-qmi_message_nas_get_cell_location_info_output_get_cdma_info, function in NAS Get Cell Location Info +qmi_message_nas_get_cell_location_info_output_get_geran_info, function in NAS Get Cell Location Info request
-qmi_message_nas_get_cell_location_info_output_get_geran_info, function in NAS Get Cell Location Info +qmi_message_nas_get_cell_location_info_output_get_interfrequency_lte_info, function in NAS Get Cell Location Info request
-qmi_message_nas_get_cell_location_info_output_get_interfrequency_lte_info, function in NAS Get Cell Location Info +qmi_message_nas_get_cell_location_info_output_get_intrafrequency_lte_info, function in NAS Get Cell Location Info request
-qmi_message_nas_get_cell_location_info_output_get_intrafrequency_lte_info, function in NAS Get Cell Location Info +qmi_message_nas_get_cell_location_info_output_get_lte_info_neighboring_gsm, function in NAS Get Cell Location Info request
-qmi_message_nas_get_cell_location_info_output_get_lte_info_neighboring_gsm, function in NAS Get Cell Location Info +qmi_message_nas_get_cell_location_info_output_get_lte_info_neighboring_wcdma, function in NAS Get Cell Location Info request
-qmi_message_nas_get_cell_location_info_output_get_lte_info_neighboring_wcdma, function in NAS Get Cell Location Info +qmi_message_nas_get_cell_location_info_output_get_result, function in NAS Get Cell Location Info request
-qmi_message_nas_get_cell_location_info_output_get_result, function in NAS Get Cell Location Info +qmi_message_nas_get_cell_location_info_output_get_umts_cell_id, function in NAS Get Cell Location Info request
-qmi_message_nas_get_cell_location_info_output_get_umts_cell_id, function in NAS Get Cell Location Info +qmi_message_nas_get_cell_location_info_output_get_umts_info, function in NAS Get Cell Location Info request
-qmi_message_nas_get_cell_location_info_output_get_umts_info, function in NAS Get Cell Location Info +qmi_message_nas_get_cell_location_info_output_get_umts_info_neighboring_lte, function in NAS Get Cell Location Info request
-qmi_message_nas_get_cell_location_info_output_get_umts_info_neighboring_lte, function in NAS Get Cell Location Info +qmi_message_nas_get_cell_location_info_output_ref, function in NAS Get Cell Location Info request
-qmi_message_nas_get_cell_location_info_output_ref, function in NAS Get Cell Location Info +qmi_message_nas_get_cell_location_info_output_unref, function in NAS Get Cell Location Info request
-qmi_message_nas_get_cell_location_info_output_unref, function in NAS Get Cell Location Info +qmi_message_nas_get_home_network_output_get_home_network, function in NAS Get Home Network request
-qmi_message_nas_get_home_network_output_get_home_network, function in NAS Get Home Network +qmi_message_nas_get_home_network_output_get_home_network_3gpp2, function in NAS Get Home Network request
-qmi_message_nas_get_home_network_output_get_home_network_3gpp2, function in NAS Get Home Network +qmi_message_nas_get_home_network_output_get_home_network_3gpp_mnc, function in NAS Get Home Network request
-qmi_message_nas_get_home_network_output_get_home_network_3gpp_mnc, function in NAS Get Home Network +qmi_message_nas_get_home_network_output_get_home_system_id, function in NAS Get Home Network request
-qmi_message_nas_get_home_network_output_get_home_system_id, function in NAS Get Home Network +qmi_message_nas_get_home_network_output_get_result, function in NAS Get Home Network request
-qmi_message_nas_get_home_network_output_get_result, function in NAS Get Home Network +qmi_message_nas_get_home_network_output_ref, function in NAS Get Home Network request
-qmi_message_nas_get_home_network_output_ref, function in NAS Get Home Network +qmi_message_nas_get_home_network_output_unref, function in NAS Get Home Network request
-qmi_message_nas_get_home_network_output_unref, function in NAS Get Home Network +qmi_message_nas_get_lte_cphy_ca_info_output_get_dl_bandwidth, function in NAS Get LTE Cphy CA Info request
-qmi_message_nas_get_lte_cphy_ca_info_output_get_dl_bandwidth, function in NAS Get LTE Cphy CA Info +qmi_message_nas_get_lte_cphy_ca_info_output_get_phy_ca_agg_pcell_info, function in NAS Get LTE Cphy CA Info request
-qmi_message_nas_get_lte_cphy_ca_info_output_get_phy_ca_agg_pcell_info, function in NAS Get LTE Cphy CA Info +qmi_message_nas_get_lte_cphy_ca_info_output_get_phy_ca_agg_scell_info, function in NAS Get LTE Cphy CA Info request
-qmi_message_nas_get_lte_cphy_ca_info_output_get_phy_ca_agg_scell_info, function in NAS Get LTE Cphy CA Info +qmi_message_nas_get_lte_cphy_ca_info_output_get_phy_ca_agg_secondary_cells, function in NAS Get LTE Cphy CA Info request
-qmi_message_nas_get_lte_cphy_ca_info_output_get_result, function in NAS Get LTE Cphy CA Info +qmi_message_nas_get_lte_cphy_ca_info_output_get_result, function in NAS Get LTE Cphy CA Info request
-qmi_message_nas_get_lte_cphy_ca_info_output_get_scell_index, function in NAS Get LTE Cphy CA Info +qmi_message_nas_get_lte_cphy_ca_info_output_get_scell_index, function in NAS Get LTE Cphy CA Info request
-qmi_message_nas_get_lte_cphy_ca_info_output_ref, function in NAS Get LTE Cphy CA Info +qmi_message_nas_get_lte_cphy_ca_info_output_ref, function in NAS Get LTE Cphy CA Info request
-qmi_message_nas_get_lte_cphy_ca_info_output_unref, function in NAS Get LTE Cphy CA Info +qmi_message_nas_get_lte_cphy_ca_info_output_unref, function in NAS Get LTE Cphy CA Info request
-qmi_message_nas_get_operator_name_output_get_operator_nitz_information, function in NAS Get Operator Name +qmi_message_nas_get_operator_name_output_get_operator_nitz_information, function in NAS Get Operator Name request
-qmi_message_nas_get_operator_name_output_get_operator_plmn_list, function in NAS Get Operator Name +qmi_message_nas_get_operator_name_output_get_operator_plmn_list, function in NAS Get Operator Name request
-qmi_message_nas_get_operator_name_output_get_operator_plmn_name, function in NAS Get Operator Name +qmi_message_nas_get_operator_name_output_get_operator_plmn_name, function in NAS Get Operator Name request
-qmi_message_nas_get_operator_name_output_get_operator_string_name, function in NAS Get Operator Name +qmi_message_nas_get_operator_name_output_get_operator_string_name, function in NAS Get Operator Name request
-qmi_message_nas_get_operator_name_output_get_result, function in NAS Get Operator Name +qmi_message_nas_get_operator_name_output_get_result, function in NAS Get Operator Name request
-qmi_message_nas_get_operator_name_output_get_service_provider_name, function in NAS Get Operator Name +qmi_message_nas_get_operator_name_output_get_service_provider_name, function in NAS Get Operator Name request
-qmi_message_nas_get_operator_name_output_ref, function in NAS Get Operator Name +qmi_message_nas_get_operator_name_output_ref, function in NAS Get Operator Name request
-qmi_message_nas_get_operator_name_output_unref, function in NAS Get Operator Name +qmi_message_nas_get_operator_name_output_unref, function in NAS Get Operator Name request
-qmi_message_nas_get_rf_band_information_output_get_list, function in NAS Get RF Band Information +qmi_message_nas_get_rf_band_information_output_get_list, function in NAS Get RF Band Information request
-qmi_message_nas_get_rf_band_information_output_get_result, function in NAS Get RF Band Information +qmi_message_nas_get_rf_band_information_output_get_result, function in NAS Get RF Band Information request
-qmi_message_nas_get_rf_band_information_output_ref, function in NAS Get RF Band Information +qmi_message_nas_get_rf_band_information_output_ref, function in NAS Get RF Band Information request
-qmi_message_nas_get_rf_band_information_output_unref, function in NAS Get RF Band Information +qmi_message_nas_get_rf_band_information_output_unref, function in NAS Get RF Band Information request
-qmi_message_nas_get_serving_system_output_get_call_barring_status, function in NAS Get Serving System +qmi_message_nas_get_serving_system_output_get_call_barring_status, function in NAS Get Serving System request
-qmi_message_nas_get_serving_system_output_get_cdma_base_station_info, function in NAS Get Serving System +qmi_message_nas_get_serving_system_output_get_cdma_base_station_info, function in NAS Get Serving System request
-qmi_message_nas_get_serving_system_output_get_cdma_p_rev, function in NAS Get Serving System +qmi_message_nas_get_serving_system_output_get_cdma_p_rev, function in NAS Get Serving System request
-qmi_message_nas_get_serving_system_output_get_cdma_system_id, function in NAS Get Serving System +qmi_message_nas_get_serving_system_output_get_cdma_system_id, function in NAS Get Serving System request
-qmi_message_nas_get_serving_system_output_get_cdma_system_info, function in NAS Get Serving System +qmi_message_nas_get_serving_system_output_get_cdma_system_info, function in NAS Get Serving System request
-qmi_message_nas_get_serving_system_output_get_cid_3gpp, function in NAS Get Serving System +qmi_message_nas_get_serving_system_output_get_cid_3gpp, function in NAS Get Serving System request
-qmi_message_nas_get_serving_system_output_get_concurrent_service_info_3gpp2, function in NAS Get Serving System +qmi_message_nas_get_serving_system_output_get_concurrent_service_info_3gpp2, function in NAS Get Serving System request
-qmi_message_nas_get_serving_system_output_get_current_plmn, function in NAS Get Serving System +qmi_message_nas_get_serving_system_output_get_current_plmn, function in NAS Get Serving System request
-qmi_message_nas_get_serving_system_output_get_data_service_capability, function in NAS Get Serving System +qmi_message_nas_get_serving_system_output_get_data_service_capability, function in NAS Get Serving System request
-qmi_message_nas_get_serving_system_output_get_daylight_saving_time_adjustment_3gpp, function in NAS Get Serving System +qmi_message_nas_get_serving_system_output_get_daylight_saving_time_adjustment_3gpp, function in NAS Get Serving System request
-qmi_message_nas_get_serving_system_output_get_default_roaming_indicator, function in NAS Get Serving System +qmi_message_nas_get_serving_system_output_get_default_roaming_indicator, function in NAS Get Serving System request
-qmi_message_nas_get_serving_system_output_get_detailed_service_status, function in NAS Get Serving System +qmi_message_nas_get_serving_system_output_get_detailed_service_status, function in NAS Get Serving System request
-qmi_message_nas_get_serving_system_output_get_dtm_support, function in NAS Get Serving System +qmi_message_nas_get_serving_system_output_get_dtm_support, function in NAS Get Serving System request
-qmi_message_nas_get_serving_system_output_get_hdr_personality, function in NAS Get Serving System +qmi_message_nas_get_serving_system_output_get_hdr_personality, function in NAS Get Serving System request
-qmi_message_nas_get_serving_system_output_get_lac_3gpp, function in NAS Get Serving System +qmi_message_nas_get_serving_system_output_get_lac_3gpp, function in NAS Get Serving System request
-qmi_message_nas_get_serving_system_output_get_lte_tac, function in NAS Get Serving System +qmi_message_nas_get_serving_system_output_get_lte_tac, function in NAS Get Serving System request
-qmi_message_nas_get_serving_system_output_get_mnc_pcs_digit_include_status, function in NAS Get Serving System +qmi_message_nas_get_serving_system_output_get_mnc_pcs_digit_include_status, function in NAS Get Serving System request
-qmi_message_nas_get_serving_system_output_get_prl_indicator_3gpp2, function in NAS Get Serving System +qmi_message_nas_get_serving_system_output_get_prl_indicator_3gpp2, function in NAS Get Serving System request
-qmi_message_nas_get_serving_system_output_get_result, function in NAS Get Serving System +qmi_message_nas_get_serving_system_output_get_result, function in NAS Get Serving System request
-qmi_message_nas_get_serving_system_output_get_roaming_indicator, function in NAS Get Serving System +qmi_message_nas_get_serving_system_output_get_roaming_indicator, function in NAS Get Serving System request
-qmi_message_nas_get_serving_system_output_get_roaming_indicator_list, function in NAS Get Serving System +qmi_message_nas_get_serving_system_output_get_roaming_indicator_list, function in NAS Get Serving System request
-qmi_message_nas_get_serving_system_output_get_serving_system, function in NAS Get Serving System +qmi_message_nas_get_serving_system_output_get_serving_system, function in NAS Get Serving System request
-qmi_message_nas_get_serving_system_output_get_time_zone_3gpp, function in NAS Get Serving System +qmi_message_nas_get_serving_system_output_get_time_zone_3gpp, function in NAS Get Serving System request
-qmi_message_nas_get_serving_system_output_get_time_zone_3gpp2, function in NAS Get Serving System +qmi_message_nas_get_serving_system_output_get_time_zone_3gpp2, function in NAS Get Serving System request
-qmi_message_nas_get_serving_system_output_get_umts_primary_scrambling_code, function in NAS Get Serving System +qmi_message_nas_get_serving_system_output_get_umts_primary_scrambling_code, function in NAS Get Serving System request
-qmi_message_nas_get_serving_system_output_ref, function in NAS Get Serving System +qmi_message_nas_get_serving_system_output_ref, function in NAS Get Serving System request
-qmi_message_nas_get_serving_system_output_unref, function in NAS Get Serving System +qmi_message_nas_get_serving_system_output_unref, function in NAS Get Serving System request
-qmi_message_nas_get_signal_info_output_get_cdma_signal_strength, function in NAS Get Signal Info +qmi_message_nas_get_signal_info_output_get_cdma_signal_strength, function in NAS Get Signal Info request
-qmi_message_nas_get_signal_info_output_get_gsm_signal_strength, function in NAS Get Signal Info +qmi_message_nas_get_signal_info_output_get_gsm_signal_strength, function in NAS Get Signal Info request
-qmi_message_nas_get_signal_info_output_get_hdr_signal_strength, function in NAS Get Signal Info +qmi_message_nas_get_signal_info_output_get_hdr_signal_strength, function in NAS Get Signal Info request
-qmi_message_nas_get_signal_info_output_get_lte_signal_strength, function in NAS Get Signal Info +qmi_message_nas_get_signal_info_output_get_lte_signal_strength, function in NAS Get Signal Info request
-qmi_message_nas_get_signal_info_output_get_result, function in NAS Get Signal Info +qmi_message_nas_get_signal_info_output_get_result, function in NAS Get Signal Info request
-qmi_message_nas_get_signal_info_output_get_tdma_signal_strength, function in NAS Get Signal Info +qmi_message_nas_get_signal_info_output_get_tdma_signal_strength, function in NAS Get Signal Info request
-qmi_message_nas_get_signal_info_output_get_wcdma_signal_strength, function in NAS Get Signal Info +qmi_message_nas_get_signal_info_output_get_wcdma_signal_strength, function in NAS Get Signal Info request
-qmi_message_nas_get_signal_info_output_ref, function in NAS Get Signal Info +qmi_message_nas_get_signal_info_output_ref, function in NAS Get Signal Info request
-qmi_message_nas_get_signal_info_output_unref, function in NAS Get Signal Info +qmi_message_nas_get_signal_info_output_unref, function in NAS Get Signal Info request
-qmi_message_nas_get_signal_strength_input_get_request_mask, function in NAS Get Signal Strength +qmi_message_nas_get_signal_strength_input_get_request_mask, function in NAS Get Signal Strength request
-qmi_message_nas_get_signal_strength_input_new, function in NAS Get Signal Strength +qmi_message_nas_get_signal_strength_input_new, function in NAS Get Signal Strength request
-qmi_message_nas_get_signal_strength_input_ref, function in NAS Get Signal Strength +qmi_message_nas_get_signal_strength_input_ref, function in NAS Get Signal Strength request
-qmi_message_nas_get_signal_strength_input_set_request_mask, function in NAS Get Signal Strength +qmi_message_nas_get_signal_strength_input_set_request_mask, function in NAS Get Signal Strength request
-qmi_message_nas_get_signal_strength_input_unref, function in NAS Get Signal Strength +qmi_message_nas_get_signal_strength_input_unref, function in NAS Get Signal Strength request
-qmi_message_nas_get_signal_strength_output_get_ecio_list, function in NAS Get Signal Strength +qmi_message_nas_get_signal_strength_output_get_ecio_list, function in NAS Get Signal Strength request
-qmi_message_nas_get_signal_strength_output_get_error_rate_list, function in NAS Get Signal Strength +qmi_message_nas_get_signal_strength_output_get_error_rate_list, function in NAS Get Signal Strength request
-qmi_message_nas_get_signal_strength_output_get_io, function in NAS Get Signal Strength +qmi_message_nas_get_signal_strength_output_get_io, function in NAS Get Signal Strength request
-qmi_message_nas_get_signal_strength_output_get_lte_rsrp, function in NAS Get Signal Strength +qmi_message_nas_get_signal_strength_output_get_lte_rsrp, function in NAS Get Signal Strength request
-qmi_message_nas_get_signal_strength_output_get_lte_snr, function in NAS Get Signal Strength +qmi_message_nas_get_signal_strength_output_get_lte_snr, function in NAS Get Signal Strength request
-qmi_message_nas_get_signal_strength_output_get_result, function in NAS Get Signal Strength +qmi_message_nas_get_signal_strength_output_get_result, function in NAS Get Signal Strength request
-qmi_message_nas_get_signal_strength_output_get_rsrq, function in NAS Get Signal Strength +qmi_message_nas_get_signal_strength_output_get_rsrq, function in NAS Get Signal Strength request
-qmi_message_nas_get_signal_strength_output_get_rssi_list, function in NAS Get Signal Strength +qmi_message_nas_get_signal_strength_output_get_rssi_list, function in NAS Get Signal Strength request
-qmi_message_nas_get_signal_strength_output_get_signal_strength, function in NAS Get Signal Strength +qmi_message_nas_get_signal_strength_output_get_signal_strength, function in NAS Get Signal Strength request
-qmi_message_nas_get_signal_strength_output_get_sinr, function in NAS Get Signal Strength +qmi_message_nas_get_signal_strength_output_get_sinr, function in NAS Get Signal Strength request
-qmi_message_nas_get_signal_strength_output_get_strength_list, function in NAS Get Signal Strength +qmi_message_nas_get_signal_strength_output_get_strength_list, function in NAS Get Signal Strength request
-qmi_message_nas_get_signal_strength_output_ref, function in NAS Get Signal Strength +qmi_message_nas_get_signal_strength_output_ref, function in NAS Get Signal Strength request
-qmi_message_nas_get_signal_strength_output_unref, function in NAS Get Signal Strength +qmi_message_nas_get_signal_strength_output_unref, function in NAS Get Signal Strength request
-qmi_message_nas_get_supported_messages_output_get_list, function in NAS Get Supported Messages +qmi_message_nas_get_supported_messages_output_get_list, function in NAS Get Supported Messages request
-qmi_message_nas_get_supported_messages_output_get_result, function in NAS Get Supported Messages +qmi_message_nas_get_supported_messages_output_get_result, function in NAS Get Supported Messages request
-qmi_message_nas_get_supported_messages_output_ref, function in NAS Get Supported Messages +qmi_message_nas_get_supported_messages_output_ref, function in NAS Get Supported Messages request
-qmi_message_nas_get_supported_messages_output_unref, function in NAS Get Supported Messages +qmi_message_nas_get_supported_messages_output_unref, function in NAS Get Supported Messages request
-qmi_message_nas_get_system_info_output_get_additional_cdma_system_info, function in NAS Get System Info +qmi_message_nas_get_system_info_output_get_additional_cdma_system_info, function in NAS Get System Info request
-qmi_message_nas_get_system_info_output_get_additional_gsm_system_info, function in NAS Get System Info +qmi_message_nas_get_system_info_output_get_additional_gsm_system_info, function in NAS Get System Info request
-qmi_message_nas_get_system_info_output_get_additional_hdr_system_info, function in NAS Get System Info +qmi_message_nas_get_system_info_output_get_additional_hdr_system_info, function in NAS Get System Info request
-qmi_message_nas_get_system_info_output_get_additional_lte_system_info, function in NAS Get System Info +qmi_message_nas_get_system_info_output_get_additional_lte_system_info, function in NAS Get System Info request
-qmi_message_nas_get_system_info_output_get_additional_wcdma_system_info, function in NAS Get System Info +qmi_message_nas_get_system_info_output_get_additional_wcdma_system_info, function in NAS Get System Info request
-qmi_message_nas_get_system_info_output_get_cdma_service_status, function in NAS Get System Info +qmi_message_nas_get_system_info_output_get_cdma_service_status, function in NAS Get System Info request
-qmi_message_nas_get_system_info_output_get_cdma_system_info, function in NAS Get System Info +qmi_message_nas_get_system_info_output_get_cdma_system_info, function in NAS Get System Info request
-qmi_message_nas_get_system_info_output_get_gsm_call_barring_status, function in NAS Get System Info +qmi_message_nas_get_system_info_output_get_gsm_call_barring_status, function in NAS Get System Info request
-qmi_message_nas_get_system_info_output_get_gsm_cipher_domain, function in NAS Get System Info +qmi_message_nas_get_system_info_output_get_gsm_cipher_domain, function in NAS Get System Info request
-qmi_message_nas_get_system_info_output_get_gsm_service_status, function in NAS Get System Info +qmi_message_nas_get_system_info_output_get_gsm_service_status, function in NAS Get System Info request
-qmi_message_nas_get_system_info_output_get_gsm_system_info, function in NAS Get System Info +qmi_message_nas_get_system_info_output_get_gsm_system_info, function in NAS Get System Info request
-qmi_message_nas_get_system_info_output_get_hdr_service_status, function in NAS Get System Info +qmi_message_nas_get_system_info_output_get_hdr_service_status, function in NAS Get System Info request
-qmi_message_nas_get_system_info_output_get_hdr_system_info, function in NAS Get System Info +qmi_message_nas_get_system_info_output_get_hdr_system_info, function in NAS Get System Info request
-qmi_message_nas_get_system_info_output_get_lte_embms_coverage_info_support, function in NAS Get System Info +qmi_message_nas_get_system_info_output_get_lte_embms_coverage_info_support, function in NAS Get System Info request
-qmi_message_nas_get_system_info_output_get_lte_service_status, function in NAS Get System Info +qmi_message_nas_get_system_info_output_get_lte_service_status, function in NAS Get System Info request
-qmi_message_nas_get_system_info_output_get_lte_system_info, function in NAS Get System Info +qmi_message_nas_get_system_info_output_get_lte_system_info, function in NAS Get System Info request
-qmi_message_nas_get_system_info_output_get_lte_voice_support, function in NAS Get System Info +qmi_message_nas_get_system_info_output_get_lte_voice_support, function in NAS Get System Info request
-qmi_message_nas_get_system_info_output_get_result, function in NAS Get System Info +qmi_message_nas_get_system_info_output_get_result, function in NAS Get System Info request
-qmi_message_nas_get_system_info_output_get_sim_reject_info, function in NAS Get System Info +qmi_message_nas_get_system_info_output_get_sim_reject_info, function in NAS Get System Info request
-qmi_message_nas_get_system_info_output_get_td_scdma_service_status, function in NAS Get System Info +qmi_message_nas_get_system_info_output_get_td_scdma_service_status, function in NAS Get System Info request
-qmi_message_nas_get_system_info_output_get_td_scdma_system_info, function in NAS Get System Info +qmi_message_nas_get_system_info_output_get_td_scdma_system_info, function in NAS Get System Info request
-qmi_message_nas_get_system_info_output_get_wcdma_call_barring_status, function in NAS Get System Info +qmi_message_nas_get_system_info_output_get_wcdma_call_barring_status, function in NAS Get System Info request
-qmi_message_nas_get_system_info_output_get_wcdma_cipher_domain, function in NAS Get System Info +qmi_message_nas_get_system_info_output_get_wcdma_cipher_domain, function in NAS Get System Info request
-qmi_message_nas_get_system_info_output_get_wcdma_service_status, function in NAS Get System Info +qmi_message_nas_get_system_info_output_get_wcdma_service_status, function in NAS Get System Info request
-qmi_message_nas_get_system_info_output_get_wcdma_system_info, function in NAS Get System Info +qmi_message_nas_get_system_info_output_get_wcdma_system_info, function in NAS Get System Info request
-qmi_message_nas_get_system_info_output_ref, function in NAS Get System Info +qmi_message_nas_get_system_info_output_ref, function in NAS Get System Info request
-qmi_message_nas_get_system_info_output_unref, function in NAS Get System Info +qmi_message_nas_get_system_info_output_unref, function in NAS Get System Info request
-qmi_message_nas_get_system_selection_preference_output_get_band_preference, function in NAS Get System Selection Preference +qmi_message_nas_get_system_selection_preference_output_get_acquisition_order_preference, function in NAS Get System Selection Preference request
-qmi_message_nas_get_system_selection_preference_output_get_cdma_prl_preference, function in NAS Get System Selection Preference +qmi_message_nas_get_system_selection_preference_output_get_band_preference, function in NAS Get System Selection Preference request
-qmi_message_nas_get_system_selection_preference_output_get_emergency_mode, function in NAS Get System Selection Preference +qmi_message_nas_get_system_selection_preference_output_get_cdma_prl_preference, function in NAS Get System Selection Preference request
-qmi_message_nas_get_system_selection_preference_output_get_gsm_wcdma_acquisition_order_preference, function in NAS Get System Selection Preference +qmi_message_nas_get_system_selection_preference_output_get_emergency_mode, function in NAS Get System Selection Preference request
-qmi_message_nas_get_system_selection_preference_output_get_lte_band_preference, function in NAS Get System Selection Preference +qmi_message_nas_get_system_selection_preference_output_get_extended_lte_band_preference, function in NAS Get System Selection Preference request
-qmi_message_nas_get_system_selection_preference_output_get_manual_network_selection, function in NAS Get System Selection Preference +qmi_message_nas_get_system_selection_preference_output_get_gsm_wcdma_acquisition_order_preference, function in NAS Get System Selection Preference request
-qmi_message_nas_get_system_selection_preference_output_get_mode_preference, function in NAS Get System Selection Preference +qmi_message_nas_get_system_selection_preference_output_get_lte_band_preference, function in NAS Get System Selection Preference request
-qmi_message_nas_get_system_selection_preference_output_get_network_selection_preference, function in NAS Get System Selection Preference +qmi_message_nas_get_system_selection_preference_output_get_manual_network_selection, function in NAS Get System Selection Preference request
-qmi_message_nas_get_system_selection_preference_output_get_result, function in NAS Get System Selection Preference +qmi_message_nas_get_system_selection_preference_output_get_mode_preference, function in NAS Get System Selection Preference request
-qmi_message_nas_get_system_selection_preference_output_get_roaming_preference, function in NAS Get System Selection Preference +qmi_message_nas_get_system_selection_preference_output_get_network_selection_preference, function in NAS Get System Selection Preference request
-qmi_message_nas_get_system_selection_preference_output_get_service_domain_preference, function in NAS Get System Selection Preference +qmi_message_nas_get_system_selection_preference_output_get_result, function in NAS Get System Selection Preference request
-qmi_message_nas_get_system_selection_preference_output_get_td_scdma_band_preference, function in NAS Get System Selection Preference +qmi_message_nas_get_system_selection_preference_output_get_roaming_preference, function in NAS Get System Selection Preference request
-qmi_message_nas_get_system_selection_preference_output_ref, function in NAS Get System Selection Preference +qmi_message_nas_get_system_selection_preference_output_get_service_domain_preference, function in NAS Get System Selection Preference request
-qmi_message_nas_get_system_selection_preference_output_unref, function in NAS Get System Selection Preference +qmi_message_nas_get_system_selection_preference_output_get_td_scdma_band_preference, function in NAS Get System Selection Preference request
-qmi_message_nas_get_technology_preference_output_get_active, function in NAS Get Technology Preference +qmi_message_nas_get_system_selection_preference_output_ref, function in NAS Get System Selection Preference request
-qmi_message_nas_get_technology_preference_output_get_persistent, function in NAS Get Technology Preference +qmi_message_nas_get_system_selection_preference_output_unref, function in NAS Get System Selection Preference request
-qmi_message_nas_get_technology_preference_output_get_result, function in NAS Get Technology Preference +qmi_message_nas_get_technology_preference_output_get_active, function in NAS Get Technology Preference request
-qmi_message_nas_get_technology_preference_output_ref, function in NAS Get Technology Preference +qmi_message_nas_get_technology_preference_output_get_persistent, function in NAS Get Technology Preference request
-qmi_message_nas_get_technology_preference_output_unref, function in NAS Get Technology Preference +qmi_message_nas_get_technology_preference_output_get_result, function in NAS Get Technology Preference request
-qmi_message_nas_get_tx_rx_info_input_get_radio_interface, function in NAS Get Tx Rx Info +qmi_message_nas_get_technology_preference_output_ref, function in NAS Get Technology Preference request
-qmi_message_nas_get_tx_rx_info_input_new, function in NAS Get Tx Rx Info +qmi_message_nas_get_technology_preference_output_unref, function in NAS Get Technology Preference request
-qmi_message_nas_get_tx_rx_info_input_ref, function in NAS Get Tx Rx Info +qmi_message_nas_get_tx_rx_info_input_get_radio_interface, function in NAS Get Tx Rx Info request
-qmi_message_nas_get_tx_rx_info_input_set_radio_interface, function in NAS Get Tx Rx Info +qmi_message_nas_get_tx_rx_info_input_new, function in NAS Get Tx Rx Info request
-qmi_message_nas_get_tx_rx_info_input_unref, function in NAS Get Tx Rx Info +qmi_message_nas_get_tx_rx_info_input_ref, function in NAS Get Tx Rx Info request
-qmi_message_nas_get_tx_rx_info_output_get_result, function in NAS Get Tx Rx Info +qmi_message_nas_get_tx_rx_info_input_set_radio_interface, function in NAS Get Tx Rx Info request
-qmi_message_nas_get_tx_rx_info_output_get_rx_chain_0_info, function in NAS Get Tx Rx Info +qmi_message_nas_get_tx_rx_info_input_unref, function in NAS Get Tx Rx Info request
-qmi_message_nas_get_tx_rx_info_output_get_rx_chain_1_info, function in NAS Get Tx Rx Info +qmi_message_nas_get_tx_rx_info_output_get_result, function in NAS Get Tx Rx Info request
-qmi_message_nas_get_tx_rx_info_output_get_tx_info, function in NAS Get Tx Rx Info +qmi_message_nas_get_tx_rx_info_output_get_rx_chain_0_info, function in NAS Get Tx Rx Info request
-qmi_message_nas_get_tx_rx_info_output_ref, function in NAS Get Tx Rx Info +qmi_message_nas_get_tx_rx_info_output_get_rx_chain_1_info, function in NAS Get Tx Rx Info request
-qmi_message_nas_get_tx_rx_info_output_unref, function in NAS Get Tx Rx Info +qmi_message_nas_get_tx_rx_info_output_get_tx_info, function in NAS Get Tx Rx Info request
-qmi_message_nas_initiate_network_register_input_get_action, function in NAS Initiate Network Register +qmi_message_nas_get_tx_rx_info_output_ref, function in NAS Get Tx Rx Info request
-qmi_message_nas_initiate_network_register_input_get_change_duration, function in NAS Initiate Network Register +qmi_message_nas_get_tx_rx_info_output_unref, function in NAS Get Tx Rx Info request
-qmi_message_nas_initiate_network_register_input_get_manual_registration_info_3gpp, function in NAS Initiate Network Register +qmi_message_nas_initiate_network_register_input_get_action, function in NAS Initiate Network Register request
-qmi_message_nas_initiate_network_register_input_get_mnc_pcs_digit_include_status, function in NAS Initiate Network Register +qmi_message_nas_initiate_network_register_input_get_change_duration, function in NAS Initiate Network Register request
-qmi_message_nas_initiate_network_register_input_new, function in NAS Initiate Network Register +qmi_message_nas_initiate_network_register_input_get_manual_registration_info_3gpp, function in NAS Initiate Network Register request
-qmi_message_nas_initiate_network_register_input_ref, function in NAS Initiate Network Register +qmi_message_nas_initiate_network_register_input_get_mnc_pcs_digit_include_status, function in NAS Initiate Network Register request
-qmi_message_nas_initiate_network_register_input_set_action, function in NAS Initiate Network Register +qmi_message_nas_initiate_network_register_input_new, function in NAS Initiate Network Register request
-qmi_message_nas_initiate_network_register_input_set_change_duration, function in NAS Initiate Network Register +qmi_message_nas_initiate_network_register_input_ref, function in NAS Initiate Network Register request
-qmi_message_nas_initiate_network_register_input_set_manual_registration_info_3gpp, function in NAS Initiate Network Register +qmi_message_nas_initiate_network_register_input_set_action, function in NAS Initiate Network Register request
-qmi_message_nas_initiate_network_register_input_set_mnc_pcs_digit_include_status, function in NAS Initiate Network Register +qmi_message_nas_initiate_network_register_input_set_change_duration, function in NAS Initiate Network Register request
-qmi_message_nas_initiate_network_register_input_unref, function in NAS Initiate Network Register +qmi_message_nas_initiate_network_register_input_set_manual_registration_info_3gpp, function in NAS Initiate Network Register request
-qmi_message_nas_initiate_network_register_output_get_result, function in NAS Initiate Network Register +qmi_message_nas_initiate_network_register_input_set_mnc_pcs_digit_include_status, function in NAS Initiate Network Register request
-qmi_message_nas_initiate_network_register_output_ref, function in NAS Initiate Network Register +qmi_message_nas_initiate_network_register_input_unref, function in NAS Initiate Network Register request
-qmi_message_nas_initiate_network_register_output_unref, function in NAS Initiate Network Register +qmi_message_nas_initiate_network_register_output_get_result, function in NAS Initiate Network Register request
-qmi_message_nas_network_scan_input_get_network_type, function in NAS Network Scan +qmi_message_nas_initiate_network_register_output_ref, function in NAS Initiate Network Register request
-qmi_message_nas_network_scan_input_new, function in NAS Network Scan +qmi_message_nas_initiate_network_register_output_unref, function in NAS Initiate Network Register request
-qmi_message_nas_network_scan_input_ref, function in NAS Network Scan +qmi_message_nas_network_scan_input_get_network_type, function in NAS Network Scan request
-qmi_message_nas_network_scan_input_set_network_type, function in NAS Network Scan +qmi_message_nas_network_scan_input_new, function in NAS Network Scan request
-qmi_message_nas_network_scan_input_unref, function in NAS Network Scan +qmi_message_nas_network_scan_input_ref, function in NAS Network Scan request
-qmi_message_nas_network_scan_output_get_mnc_pcs_digit_include_status, function in NAS Network Scan +qmi_message_nas_network_scan_input_set_network_type, function in NAS Network Scan request
-qmi_message_nas_network_scan_output_get_network_information, function in NAS Network Scan +qmi_message_nas_network_scan_input_unref, function in NAS Network Scan request
-qmi_message_nas_network_scan_output_get_radio_access_technology, function in NAS Network Scan +qmi_message_nas_network_scan_output_get_mnc_pcs_digit_include_status, function in NAS Network Scan request
-qmi_message_nas_network_scan_output_get_result, function in NAS Network Scan +qmi_message_nas_network_scan_output_get_network_information, function in NAS Network Scan request
-qmi_message_nas_network_scan_output_ref, function in NAS Network Scan +qmi_message_nas_network_scan_output_get_radio_access_technology, function in NAS Network Scan request
-qmi_message_nas_network_scan_output_unref, function in NAS Network Scan +qmi_message_nas_network_scan_output_get_result, function in NAS Network Scan request
-qmi_message_nas_register_indications_input_get_current_plmn_name, function in NAS Register Indications +qmi_message_nas_network_scan_output_ref, function in NAS Network Scan request
-qmi_message_nas_register_indications_input_get_ddtm_events, function in NAS Register Indications +qmi_message_nas_network_scan_output_unref, function in NAS Network Scan request
-qmi_message_nas_register_indications_input_get_dual_standby_preference, function in NAS Register Indications +qmi_message_nas_register_indications_input_get_current_plmn_name, function in NAS Register Indications request
-qmi_message_nas_register_indications_input_get_embms_status, function in NAS Register Indications +qmi_message_nas_register_indications_input_get_ddtm_events, function in NAS Register Indications request
-qmi_message_nas_register_indications_input_get_error_rate, function in NAS Register Indications +qmi_message_nas_register_indications_input_get_dual_standby_preference, function in NAS Register Indications request
-qmi_message_nas_register_indications_input_get_hdr_new_uati_assigned, function in NAS Register Indications +qmi_message_nas_register_indications_input_get_embms_status, function in NAS Register Indications request
-qmi_message_nas_register_indications_input_get_hdr_session_closed, function in NAS Register Indications +qmi_message_nas_register_indications_input_get_error_rate, function in NAS Register Indications request
-qmi_message_nas_register_indications_input_get_managed_roaming, function in NAS Register Indications +qmi_message_nas_register_indications_input_get_hdr_new_uati_assigned, function in NAS Register Indications request
-qmi_message_nas_register_indications_input_get_network_time, function in NAS Register Indications +qmi_message_nas_register_indications_input_get_hdr_session_closed, function in NAS Register Indications request
-qmi_message_nas_register_indications_input_get_rf_band_information, function in NAS Register Indications +qmi_message_nas_register_indications_input_get_managed_roaming, function in NAS Register Indications request
-qmi_message_nas_register_indications_input_get_serving_system_events, function in NAS Register Indications +qmi_message_nas_register_indications_input_get_network_time, function in NAS Register Indications request
-qmi_message_nas_register_indications_input_get_signal_info, function in NAS Register Indications +qmi_message_nas_register_indications_input_get_rf_band_information, function in NAS Register Indications request
-qmi_message_nas_register_indications_input_get_subscription_info, function in NAS Register Indications +qmi_message_nas_register_indications_input_get_serving_system_events, function in NAS Register Indications request
-qmi_message_nas_register_indications_input_get_system_info, function in NAS Register Indications +qmi_message_nas_register_indications_input_get_signal_info, function in NAS Register Indications request
-qmi_message_nas_register_indications_input_get_system_selection_preference, function in NAS Register Indications +qmi_message_nas_register_indications_input_get_subscription_info, function in NAS Register Indications request
-qmi_message_nas_register_indications_input_new, function in NAS Register Indications +qmi_message_nas_register_indications_input_get_system_info, function in NAS Register Indications request
-qmi_message_nas_register_indications_input_ref, function in NAS Register Indications +qmi_message_nas_register_indications_input_get_system_selection_preference, function in NAS Register Indications request
-qmi_message_nas_register_indications_input_set_current_plmn_name, function in NAS Register Indications +qmi_message_nas_register_indications_input_new, function in NAS Register Indications request
-qmi_message_nas_register_indications_input_set_ddtm_events, function in NAS Register Indications +qmi_message_nas_register_indications_input_ref, function in NAS Register Indications request
-qmi_message_nas_register_indications_input_set_dual_standby_preference, function in NAS Register Indications +qmi_message_nas_register_indications_input_set_current_plmn_name, function in NAS Register Indications request
-qmi_message_nas_register_indications_input_set_embms_status, function in NAS Register Indications +qmi_message_nas_register_indications_input_set_ddtm_events, function in NAS Register Indications request
-qmi_message_nas_register_indications_input_set_error_rate, function in NAS Register Indications +qmi_message_nas_register_indications_input_set_dual_standby_preference, function in NAS Register Indications request
-qmi_message_nas_register_indications_input_set_hdr_new_uati_assigned, function in NAS Register Indications +qmi_message_nas_register_indications_input_set_embms_status, function in NAS Register Indications request
-qmi_message_nas_register_indications_input_set_hdr_session_closed, function in NAS Register Indications +qmi_message_nas_register_indications_input_set_error_rate, function in NAS Register Indications request
-qmi_message_nas_register_indications_input_set_managed_roaming, function in NAS Register Indications +qmi_message_nas_register_indications_input_set_hdr_new_uati_assigned, function in NAS Register Indications request
-qmi_message_nas_register_indications_input_set_network_time, function in NAS Register Indications +qmi_message_nas_register_indications_input_set_hdr_session_closed, function in NAS Register Indications request
-qmi_message_nas_register_indications_input_set_rf_band_information, function in NAS Register Indications +qmi_message_nas_register_indications_input_set_managed_roaming, function in NAS Register Indications request
-qmi_message_nas_register_indications_input_set_serving_system_events, function in NAS Register Indications +qmi_message_nas_register_indications_input_set_network_time, function in NAS Register Indications request
-qmi_message_nas_register_indications_input_set_signal_info, function in NAS Register Indications +qmi_message_nas_register_indications_input_set_rf_band_information, function in NAS Register Indications request
-qmi_message_nas_register_indications_input_set_subscription_info, function in NAS Register Indications +qmi_message_nas_register_indications_input_set_serving_system_events, function in NAS Register Indications request
-qmi_message_nas_register_indications_input_set_system_info, function in NAS Register Indications +qmi_message_nas_register_indications_input_set_signal_info, function in NAS Register Indications request
-qmi_message_nas_register_indications_input_set_system_selection_preference, function in NAS Register Indications +qmi_message_nas_register_indications_input_set_subscription_info, function in NAS Register Indications request
-qmi_message_nas_register_indications_input_unref, function in NAS Register Indications +qmi_message_nas_register_indications_input_set_system_info, function in NAS Register Indications request
-qmi_message_nas_register_indications_output_get_result, function in NAS Register Indications +qmi_message_nas_register_indications_input_set_system_selection_preference, function in NAS Register Indications request
-qmi_message_nas_register_indications_output_ref, function in NAS Register Indications +qmi_message_nas_register_indications_input_unref, function in NAS Register Indications request
-qmi_message_nas_register_indications_output_unref, function in NAS Register Indications +qmi_message_nas_register_indications_output_get_result, function in NAS Register Indications request
-qmi_message_nas_reset_output_get_result, function in NAS Reset +qmi_message_nas_register_indications_output_ref, function in NAS Register Indications request
-qmi_message_nas_reset_output_ref, function in NAS Reset +qmi_message_nas_register_indications_output_unref, function in NAS Register Indications request
-qmi_message_nas_reset_output_unref, function in NAS Reset +qmi_message_nas_reset_output_get_result, function in NAS Reset request
-qmi_message_nas_set_event_report_input_get_ecio_indicator, function in NAS Set Event Report +qmi_message_nas_reset_output_ref, function in NAS Reset request
-qmi_message_nas_set_event_report_input_get_ecio_threshold, function in NAS Set Event Report +qmi_message_nas_reset_output_unref, function in NAS Reset request
-qmi_message_nas_set_event_report_input_get_error_rate_indicator, function in NAS Set Event Report +qmi_message_nas_set_event_report_input_get_ecio_indicator, function in NAS Set Event Report request
-qmi_message_nas_set_event_report_input_get_io_indicator, function in NAS Set Event Report +qmi_message_nas_set_event_report_input_get_ecio_threshold, function in NAS Set Event Report request
-qmi_message_nas_set_event_report_input_get_lte_rsrp_delta, function in NAS Set Event Report +qmi_message_nas_set_event_report_input_get_error_rate_indicator, function in NAS Set Event Report request
-qmi_message_nas_set_event_report_input_get_lte_snr_delta, function in NAS Set Event Report +qmi_message_nas_set_event_report_input_get_io_indicator, function in NAS Set Event Report request
-qmi_message_nas_set_event_report_input_get_registration_reject_reason, function in NAS Set Event Report +qmi_message_nas_set_event_report_input_get_lte_rsrp_delta, function in NAS Set Event Report request
-qmi_message_nas_set_event_report_input_get_rf_band_information, function in NAS Set Event Report +qmi_message_nas_set_event_report_input_get_lte_snr_delta, function in NAS Set Event Report request
-qmi_message_nas_set_event_report_input_get_rssi_indicator, function in NAS Set Event Report +qmi_message_nas_set_event_report_input_get_registration_reject_reason, function in NAS Set Event Report request
-qmi_message_nas_set_event_report_input_get_signal_strength_indicator, function in NAS Set Event Report +qmi_message_nas_set_event_report_input_get_rf_band_information, function in NAS Set Event Report request
-qmi_message_nas_set_event_report_input_get_sinr_indicator, function in NAS Set Event Report +qmi_message_nas_set_event_report_input_get_rssi_indicator, function in NAS Set Event Report request
-qmi_message_nas_set_event_report_input_get_sinr_threshold, function in NAS Set Event Report +qmi_message_nas_set_event_report_input_get_signal_strength_indicator, function in NAS Set Event Report request
-qmi_message_nas_set_event_report_input_new, function in NAS Set Event Report +qmi_message_nas_set_event_report_input_get_sinr_indicator, function in NAS Set Event Report request
-qmi_message_nas_set_event_report_input_ref, function in NAS Set Event Report +qmi_message_nas_set_event_report_input_get_sinr_threshold, function in NAS Set Event Report request
-qmi_message_nas_set_event_report_input_set_ecio_indicator, function in NAS Set Event Report +qmi_message_nas_set_event_report_input_new, function in NAS Set Event Report request
-qmi_message_nas_set_event_report_input_set_ecio_threshold, function in NAS Set Event Report +qmi_message_nas_set_event_report_input_ref, function in NAS Set Event Report request
-qmi_message_nas_set_event_report_input_set_error_rate_indicator, function in NAS Set Event Report +qmi_message_nas_set_event_report_input_set_ecio_indicator, function in NAS Set Event Report request
-qmi_message_nas_set_event_report_input_set_io_indicator, function in NAS Set Event Report +qmi_message_nas_set_event_report_input_set_ecio_threshold, function in NAS Set Event Report request
-qmi_message_nas_set_event_report_input_set_lte_rsrp_delta, function in NAS Set Event Report +qmi_message_nas_set_event_report_input_set_error_rate_indicator, function in NAS Set Event Report request
-qmi_message_nas_set_event_report_input_set_lte_snr_delta, function in NAS Set Event Report +qmi_message_nas_set_event_report_input_set_io_indicator, function in NAS Set Event Report request
-qmi_message_nas_set_event_report_input_set_registration_reject_reason, function in NAS Set Event Report +qmi_message_nas_set_event_report_input_set_lte_rsrp_delta, function in NAS Set Event Report request
-qmi_message_nas_set_event_report_input_set_rf_band_information, function in NAS Set Event Report +qmi_message_nas_set_event_report_input_set_lte_snr_delta, function in NAS Set Event Report request
-qmi_message_nas_set_event_report_input_set_rssi_indicator, function in NAS Set Event Report +qmi_message_nas_set_event_report_input_set_registration_reject_reason, function in NAS Set Event Report request
-qmi_message_nas_set_event_report_input_set_signal_strength_indicator, function in NAS Set Event Report +qmi_message_nas_set_event_report_input_set_rf_band_information, function in NAS Set Event Report request
-qmi_message_nas_set_event_report_input_set_sinr_indicator, function in NAS Set Event Report +qmi_message_nas_set_event_report_input_set_rssi_indicator, function in NAS Set Event Report request
-qmi_message_nas_set_event_report_input_set_sinr_threshold, function in NAS Set Event Report +qmi_message_nas_set_event_report_input_set_signal_strength_indicator, function in NAS Set Event Report request
-qmi_message_nas_set_event_report_input_unref, function in NAS Set Event Report +qmi_message_nas_set_event_report_input_set_sinr_indicator, function in NAS Set Event Report request
-qmi_message_nas_set_event_report_output_get_result, function in NAS Set Event Report +qmi_message_nas_set_event_report_input_set_sinr_threshold, function in NAS Set Event Report request
-qmi_message_nas_set_event_report_output_ref, function in NAS Set Event Report +qmi_message_nas_set_event_report_input_unref, function in NAS Set Event Report request
-qmi_message_nas_set_event_report_output_unref, function in NAS Set Event Report +qmi_message_nas_set_event_report_output_get_result, function in NAS Set Event Report request
-qmi_message_nas_set_system_selection_preference_input_get_band_preference, function in NAS Set System Selection Preference +qmi_message_nas_set_event_report_output_ref, function in NAS Set Event Report request
-qmi_message_nas_set_system_selection_preference_input_get_cdma_prl_preference, function in NAS Set System Selection Preference +qmi_message_nas_set_event_report_output_unref, function in NAS Set Event Report request
-qmi_message_nas_set_system_selection_preference_input_get_change_duration, function in NAS Set System Selection Preference +qmi_message_nas_set_system_selection_preference_input_get_acquisition_order_preference, function in NAS Set System Selection Preference request
-qmi_message_nas_set_system_selection_preference_input_get_emergency_mode, function in NAS Set System Selection Preference +qmi_message_nas_set_system_selection_preference_input_get_band_preference, function in NAS Set System Selection Preference request
-qmi_message_nas_set_system_selection_preference_input_get_gsm_wcdma_acquisition_order_preference, function in NAS Set System Selection Preference +qmi_message_nas_set_system_selection_preference_input_get_cdma_prl_preference, function in NAS Set System Selection Preference request
-qmi_message_nas_set_system_selection_preference_input_get_lte_band_preference, function in NAS Set System Selection Preference +qmi_message_nas_set_system_selection_preference_input_get_change_duration, function in NAS Set System Selection Preference request
-qmi_message_nas_set_system_selection_preference_input_get_mnc_pds_digit_include_status, function in NAS Set System Selection Preference +qmi_message_nas_set_system_selection_preference_input_get_emergency_mode, function in NAS Set System Selection Preference request
-qmi_message_nas_set_system_selection_preference_input_get_mode_preference, function in NAS Set System Selection Preference +qmi_message_nas_set_system_selection_preference_input_get_extended_lte_band_preference, function in NAS Set System Selection Preference request
-qmi_message_nas_set_system_selection_preference_input_get_network_selection_preference, function in NAS Set System Selection Preference +qmi_message_nas_set_system_selection_preference_input_get_gsm_wcdma_acquisition_order_preference, function in NAS Set System Selection Preference request
-qmi_message_nas_set_system_selection_preference_input_get_roaming_preference, function in NAS Set System Selection Preference +qmi_message_nas_set_system_selection_preference_input_get_lte_band_preference, function in NAS Set System Selection Preference request
-qmi_message_nas_set_system_selection_preference_input_get_service_domain_preference, function in NAS Set System Selection Preference +qmi_message_nas_set_system_selection_preference_input_get_mnc_pds_digit_include_status, function in NAS Set System Selection Preference request
-qmi_message_nas_set_system_selection_preference_input_get_td_scdma_band_preference, function in NAS Set System Selection Preference +qmi_message_nas_set_system_selection_preference_input_get_mode_preference, function in NAS Set System Selection Preference request
-qmi_message_nas_set_system_selection_preference_input_new, function in NAS Set System Selection Preference +qmi_message_nas_set_system_selection_preference_input_get_network_selection_preference, function in NAS Set System Selection Preference request
-qmi_message_nas_set_system_selection_preference_input_ref, function in NAS Set System Selection Preference +qmi_message_nas_set_system_selection_preference_input_get_roaming_preference, function in NAS Set System Selection Preference request
-qmi_message_nas_set_system_selection_preference_input_set_band_preference, function in NAS Set System Selection Preference +qmi_message_nas_set_system_selection_preference_input_get_service_domain_preference, function in NAS Set System Selection Preference request
-qmi_message_nas_set_system_selection_preference_input_set_cdma_prl_preference, function in NAS Set System Selection Preference +qmi_message_nas_set_system_selection_preference_input_get_td_scdma_band_preference, function in NAS Set System Selection Preference request
-qmi_message_nas_set_system_selection_preference_input_set_change_duration, function in NAS Set System Selection Preference +qmi_message_nas_set_system_selection_preference_input_new, function in NAS Set System Selection Preference request
-qmi_message_nas_set_system_selection_preference_input_set_emergency_mode, function in NAS Set System Selection Preference +qmi_message_nas_set_system_selection_preference_input_ref, function in NAS Set System Selection Preference request
-qmi_message_nas_set_system_selection_preference_input_set_gsm_wcdma_acquisition_order_preference, function in NAS Set System Selection Preference +qmi_message_nas_set_system_selection_preference_input_set_acquisition_order_preference, function in NAS Set System Selection Preference request
-qmi_message_nas_set_system_selection_preference_input_set_lte_band_preference, function in NAS Set System Selection Preference +qmi_message_nas_set_system_selection_preference_input_set_band_preference, function in NAS Set System Selection Preference request
-qmi_message_nas_set_system_selection_preference_input_set_mnc_pds_digit_include_status, function in NAS Set System Selection Preference +qmi_message_nas_set_system_selection_preference_input_set_cdma_prl_preference, function in NAS Set System Selection Preference request
-qmi_message_nas_set_system_selection_preference_input_set_mode_preference, function in NAS Set System Selection Preference +qmi_message_nas_set_system_selection_preference_input_set_change_duration, function in NAS Set System Selection Preference request
-qmi_message_nas_set_system_selection_preference_input_set_network_selection_preference, function in NAS Set System Selection Preference +qmi_message_nas_set_system_selection_preference_input_set_emergency_mode, function in NAS Set System Selection Preference request
-qmi_message_nas_set_system_selection_preference_input_set_roaming_preference, function in NAS Set System Selection Preference +qmi_message_nas_set_system_selection_preference_input_set_extended_lte_band_preference, function in NAS Set System Selection Preference request
-qmi_message_nas_set_system_selection_preference_input_set_service_domain_preference, function in NAS Set System Selection Preference +qmi_message_nas_set_system_selection_preference_input_set_gsm_wcdma_acquisition_order_preference, function in NAS Set System Selection Preference request
-qmi_message_nas_set_system_selection_preference_input_set_td_scdma_band_preference, function in NAS Set System Selection Preference +qmi_message_nas_set_system_selection_preference_input_set_lte_band_preference, function in NAS Set System Selection Preference request
-qmi_message_nas_set_system_selection_preference_input_unref, function in NAS Set System Selection Preference +qmi_message_nas_set_system_selection_preference_input_set_mnc_pds_digit_include_status, function in NAS Set System Selection Preference request
-qmi_message_nas_set_system_selection_preference_output_get_result, function in NAS Set System Selection Preference +qmi_message_nas_set_system_selection_preference_input_set_mode_preference, function in NAS Set System Selection Preference request
-qmi_message_nas_set_system_selection_preference_output_ref, function in NAS Set System Selection Preference +qmi_message_nas_set_system_selection_preference_input_set_network_selection_preference, function in NAS Set System Selection Preference request
-qmi_message_nas_set_system_selection_preference_output_unref, function in NAS Set System Selection Preference +qmi_message_nas_set_system_selection_preference_input_set_roaming_preference, function in NAS Set System Selection Preference request
-qmi_message_nas_set_technology_preference_input_get_current, function in NAS Set Technology Preference +qmi_message_nas_set_system_selection_preference_input_set_service_domain_preference, function in NAS Set System Selection Preference request
-qmi_message_nas_set_technology_preference_input_new, function in NAS Set Technology Preference +qmi_message_nas_set_system_selection_preference_input_set_td_scdma_band_preference, function in NAS Set System Selection Preference request
-qmi_message_nas_set_technology_preference_input_ref, function in NAS Set Technology Preference +qmi_message_nas_set_system_selection_preference_input_unref, function in NAS Set System Selection Preference request
-qmi_message_nas_set_technology_preference_input_set_current, function in NAS Set Technology Preference +qmi_message_nas_set_system_selection_preference_output_get_result, function in NAS Set System Selection Preference request
-qmi_message_nas_set_technology_preference_input_unref, function in NAS Set Technology Preference +qmi_message_nas_set_system_selection_preference_output_ref, function in NAS Set System Selection Preference request
-qmi_message_nas_set_technology_preference_output_get_result, function in NAS Set Technology Preference +qmi_message_nas_set_system_selection_preference_output_unref, function in NAS Set System Selection Preference request
-qmi_message_nas_set_technology_preference_output_ref, function in NAS Set Technology Preference +qmi_message_nas_set_technology_preference_input_get_current, function in NAS Set Technology Preference request
-qmi_message_nas_set_technology_preference_output_unref, function in NAS Set Technology Preference +qmi_message_nas_set_technology_preference_input_new, function in NAS Set Technology Preference request +
+
+
+qmi_message_nas_set_technology_preference_input_ref, function in NAS Set Technology Preference request +
+
+
+qmi_message_nas_set_technology_preference_input_set_current, function in NAS Set Technology Preference request +
+
+
+qmi_message_nas_set_technology_preference_input_unref, function in NAS Set Technology Preference request +
+
+
+qmi_message_nas_set_technology_preference_output_get_result, function in NAS Set Technology Preference request +
+
+
+qmi_message_nas_set_technology_preference_output_ref, function in NAS Set Technology Preference request +
+
+
+qmi_message_nas_set_technology_preference_output_unref, function in NAS Set Technology Preference request
@@ -6986,1347 +8623,1347 @@
-qmi_message_oma_cancel_session_output_get_result, function in OMA Cancel Session +qmi_message_oma_cancel_session_output_get_result, function in OMA Cancel Session request
-qmi_message_oma_cancel_session_output_ref, function in OMA Cancel Session +qmi_message_oma_cancel_session_output_ref, function in OMA Cancel Session request
-qmi_message_oma_cancel_session_output_unref, function in OMA Cancel Session +qmi_message_oma_cancel_session_output_unref, function in OMA Cancel Session request
-qmi_message_oma_get_feature_setting_output_get_device_provisioning_service_update_config, function in OMA Get Feature Setting +qmi_message_oma_get_feature_setting_output_get_device_provisioning_service_update_config, function in OMA Get Feature Setting request
-qmi_message_oma_get_feature_setting_output_get_hfa_feature_config, function in OMA Get Feature Setting +qmi_message_oma_get_feature_setting_output_get_hfa_feature_config, function in OMA Get Feature Setting request
-qmi_message_oma_get_feature_setting_output_get_hfa_feature_done_state, function in OMA Get Feature Setting +qmi_message_oma_get_feature_setting_output_get_hfa_feature_done_state, function in OMA Get Feature Setting request
-qmi_message_oma_get_feature_setting_output_get_prl_update_service_config, function in OMA Get Feature Setting +qmi_message_oma_get_feature_setting_output_get_prl_update_service_config, function in OMA Get Feature Setting request
-qmi_message_oma_get_feature_setting_output_get_result, function in OMA Get Feature Setting +qmi_message_oma_get_feature_setting_output_get_result, function in OMA Get Feature Setting request
-qmi_message_oma_get_feature_setting_output_ref, function in OMA Get Feature Setting +qmi_message_oma_get_feature_setting_output_ref, function in OMA Get Feature Setting request
-qmi_message_oma_get_feature_setting_output_unref, function in OMA Get Feature Setting +qmi_message_oma_get_feature_setting_output_unref, function in OMA Get Feature Setting request
-qmi_message_oma_get_session_info_output_get_network_initiated_alert, function in OMA Get Session Info +qmi_message_oma_get_session_info_output_get_network_initiated_alert, function in OMA Get Session Info request
-qmi_message_oma_get_session_info_output_get_result, function in OMA Get Session Info +qmi_message_oma_get_session_info_output_get_result, function in OMA Get Session Info request
-qmi_message_oma_get_session_info_output_get_retry_info, function in OMA Get Session Info +qmi_message_oma_get_session_info_output_get_retry_info, function in OMA Get Session Info request
-qmi_message_oma_get_session_info_output_get_session_failed_reason, function in OMA Get Session Info +qmi_message_oma_get_session_info_output_get_session_failed_reason, function in OMA Get Session Info request
-qmi_message_oma_get_session_info_output_get_session_info, function in OMA Get Session Info +qmi_message_oma_get_session_info_output_get_session_info, function in OMA Get Session Info request
-qmi_message_oma_get_session_info_output_ref, function in OMA Get Session Info +qmi_message_oma_get_session_info_output_ref, function in OMA Get Session Info request
-qmi_message_oma_get_session_info_output_unref, function in OMA Get Session Info +qmi_message_oma_get_session_info_output_unref, function in OMA Get Session Info request
-qmi_message_oma_reset_output_get_result, function in OMA Reset +qmi_message_oma_reset_output_get_result, function in OMA Reset request
-qmi_message_oma_reset_output_ref, function in OMA Reset +qmi_message_oma_reset_output_ref, function in OMA Reset request
-qmi_message_oma_reset_output_unref, function in OMA Reset +qmi_message_oma_reset_output_unref, function in OMA Reset request
-qmi_message_oma_send_selection_input_get_network_initiated_alert_selection, function in OMA Send Selection +qmi_message_oma_send_selection_input_get_network_initiated_alert_selection, function in OMA Send Selection request
-qmi_message_oma_send_selection_input_new, function in OMA Send Selection +qmi_message_oma_send_selection_input_new, function in OMA Send Selection request
-qmi_message_oma_send_selection_input_ref, function in OMA Send Selection +qmi_message_oma_send_selection_input_ref, function in OMA Send Selection request
-qmi_message_oma_send_selection_input_set_network_initiated_alert_selection, function in OMA Send Selection +qmi_message_oma_send_selection_input_set_network_initiated_alert_selection, function in OMA Send Selection request
-qmi_message_oma_send_selection_input_unref, function in OMA Send Selection +qmi_message_oma_send_selection_input_unref, function in OMA Send Selection request
-qmi_message_oma_send_selection_output_get_result, function in OMA Send Selection +qmi_message_oma_send_selection_output_get_result, function in OMA Send Selection request
-qmi_message_oma_send_selection_output_ref, function in OMA Send Selection +qmi_message_oma_send_selection_output_ref, function in OMA Send Selection request
-qmi_message_oma_send_selection_output_unref, function in OMA Send Selection +qmi_message_oma_send_selection_output_unref, function in OMA Send Selection request
-qmi_message_oma_set_event_report_input_get_network_initiated_alert_reporting, function in OMA Set Event Report +qmi_message_oma_set_event_report_input_get_network_initiated_alert_reporting, function in OMA Set Event Report request
-qmi_message_oma_set_event_report_input_get_session_state_reporting, function in OMA Set Event Report +qmi_message_oma_set_event_report_input_get_session_state_reporting, function in OMA Set Event Report request
-qmi_message_oma_set_event_report_input_new, function in OMA Set Event Report +qmi_message_oma_set_event_report_input_new, function in OMA Set Event Report request
-qmi_message_oma_set_event_report_input_ref, function in OMA Set Event Report +qmi_message_oma_set_event_report_input_ref, function in OMA Set Event Report request
-qmi_message_oma_set_event_report_input_set_network_initiated_alert_reporting, function in OMA Set Event Report +qmi_message_oma_set_event_report_input_set_network_initiated_alert_reporting, function in OMA Set Event Report request
-qmi_message_oma_set_event_report_input_set_session_state_reporting, function in OMA Set Event Report +qmi_message_oma_set_event_report_input_set_session_state_reporting, function in OMA Set Event Report request
-qmi_message_oma_set_event_report_input_unref, function in OMA Set Event Report +qmi_message_oma_set_event_report_input_unref, function in OMA Set Event Report request
-qmi_message_oma_set_event_report_output_get_result, function in OMA Set Event Report +qmi_message_oma_set_event_report_output_get_result, function in OMA Set Event Report request
-qmi_message_oma_set_event_report_output_ref, function in OMA Set Event Report +qmi_message_oma_set_event_report_output_ref, function in OMA Set Event Report request
-qmi_message_oma_set_event_report_output_unref, function in OMA Set Event Report +qmi_message_oma_set_event_report_output_unref, function in OMA Set Event Report request
-qmi_message_oma_set_feature_setting_input_get_device_provisioning_service_update_config, function in OMA Set Feature Setting +qmi_message_oma_set_feature_setting_input_get_device_provisioning_service_update_config, function in OMA Set Feature Setting request
-qmi_message_oma_set_feature_setting_input_get_hfa_feature_config, function in OMA Set Feature Setting +qmi_message_oma_set_feature_setting_input_get_hfa_feature_config, function in OMA Set Feature Setting request
-qmi_message_oma_set_feature_setting_input_get_prl_update_service_config, function in OMA Set Feature Setting +qmi_message_oma_set_feature_setting_input_get_prl_update_service_config, function in OMA Set Feature Setting request
-qmi_message_oma_set_feature_setting_input_new, function in OMA Set Feature Setting +qmi_message_oma_set_feature_setting_input_new, function in OMA Set Feature Setting request
-qmi_message_oma_set_feature_setting_input_ref, function in OMA Set Feature Setting +qmi_message_oma_set_feature_setting_input_ref, function in OMA Set Feature Setting request
-qmi_message_oma_set_feature_setting_input_set_device_provisioning_service_update_config, function in OMA Set Feature Setting +qmi_message_oma_set_feature_setting_input_set_device_provisioning_service_update_config, function in OMA Set Feature Setting request
-qmi_message_oma_set_feature_setting_input_set_hfa_feature_config, function in OMA Set Feature Setting +qmi_message_oma_set_feature_setting_input_set_hfa_feature_config, function in OMA Set Feature Setting request
-qmi_message_oma_set_feature_setting_input_set_prl_update_service_config, function in OMA Set Feature Setting +qmi_message_oma_set_feature_setting_input_set_prl_update_service_config, function in OMA Set Feature Setting request
-qmi_message_oma_set_feature_setting_input_unref, function in OMA Set Feature Setting +qmi_message_oma_set_feature_setting_input_unref, function in OMA Set Feature Setting request
-qmi_message_oma_set_feature_setting_output_get_result, function in OMA Set Feature Setting +qmi_message_oma_set_feature_setting_output_get_result, function in OMA Set Feature Setting request
-qmi_message_oma_set_feature_setting_output_ref, function in OMA Set Feature Setting +qmi_message_oma_set_feature_setting_output_ref, function in OMA Set Feature Setting request
-qmi_message_oma_set_feature_setting_output_unref, function in OMA Set Feature Setting +qmi_message_oma_set_feature_setting_output_unref, function in OMA Set Feature Setting request
-qmi_message_oma_start_session_input_get_session_type, function in OMA Start Session +qmi_message_oma_start_session_input_get_session_type, function in OMA Start Session request
-qmi_message_oma_start_session_input_new, function in OMA Start Session +qmi_message_oma_start_session_input_new, function in OMA Start Session request
-qmi_message_oma_start_session_input_ref, function in OMA Start Session +qmi_message_oma_start_session_input_ref, function in OMA Start Session request
-qmi_message_oma_start_session_input_set_session_type, function in OMA Start Session +qmi_message_oma_start_session_input_set_session_type, function in OMA Start Session request
-qmi_message_oma_start_session_input_unref, function in OMA Start Session +qmi_message_oma_start_session_input_unref, function in OMA Start Session request
-qmi_message_oma_start_session_output_get_result, function in OMA Start Session +qmi_message_oma_start_session_output_get_result, function in OMA Start Session request
-qmi_message_oma_start_session_output_ref, function in OMA Start Session +qmi_message_oma_start_session_output_ref, function in OMA Start Session request
-qmi_message_oma_start_session_output_unref, function in OMA Start Session +qmi_message_oma_start_session_output_unref, function in OMA Start Session request
-qmi_message_pbm_get_all_capabilities_output_get_additional_number_alpha_string_capability, function in PBM Get All Capabilities +qmi_message_pbm_get_all_capabilities_output_get_additional_number_alpha_string_capability, function in PBM Get All Capabilities request
-qmi_message_pbm_get_all_capabilities_output_get_additional_number_capability, function in PBM Get All Capabilities +qmi_message_pbm_get_all_capabilities_output_get_additional_number_capability, function in PBM Get All Capabilities request
-qmi_message_pbm_get_all_capabilities_output_get_capability_basic_information, function in PBM Get All Capabilities +qmi_message_pbm_get_all_capabilities_output_get_capability_basic_information, function in PBM Get All Capabilities request
-qmi_message_pbm_get_all_capabilities_output_get_email_capability, function in PBM Get All Capabilities +qmi_message_pbm_get_all_capabilities_output_get_email_capability, function in PBM Get All Capabilities request
-qmi_message_pbm_get_all_capabilities_output_get_grouping_information_alpha_string_capability, function in PBM Get All Capabilities +qmi_message_pbm_get_all_capabilities_output_get_grouping_information_alpha_string_capability, function in PBM Get All Capabilities request
-qmi_message_pbm_get_all_capabilities_output_get_group_capability, function in PBM Get All Capabilities +qmi_message_pbm_get_all_capabilities_output_get_group_capability, function in PBM Get All Capabilities request
-qmi_message_pbm_get_all_capabilities_output_get_hidden_records_capability, function in PBM Get All Capabilities +qmi_message_pbm_get_all_capabilities_output_get_hidden_records_capability, function in PBM Get All Capabilities request
-qmi_message_pbm_get_all_capabilities_output_get_result, function in PBM Get All Capabilities +qmi_message_pbm_get_all_capabilities_output_get_result, function in PBM Get All Capabilities request
-qmi_message_pbm_get_all_capabilities_output_get_second_name_capability, function in PBM Get All Capabilities +qmi_message_pbm_get_all_capabilities_output_get_second_name_capability, function in PBM Get All Capabilities request
-qmi_message_pbm_get_all_capabilities_output_ref, function in PBM Get All Capabilities +qmi_message_pbm_get_all_capabilities_output_ref, function in PBM Get All Capabilities request
-qmi_message_pbm_get_all_capabilities_output_unref, function in PBM Get All Capabilities +qmi_message_pbm_get_all_capabilities_output_unref, function in PBM Get All Capabilities request
-qmi_message_pbm_get_capabilities_input_get_phonebook_information, function in PBM Get Capabilities +qmi_message_pbm_get_capabilities_input_get_phonebook_information, function in PBM Get Capabilities request
-qmi_message_pbm_get_capabilities_input_new, function in PBM Get Capabilities +qmi_message_pbm_get_capabilities_input_new, function in PBM Get Capabilities request
-qmi_message_pbm_get_capabilities_input_ref, function in PBM Get Capabilities +qmi_message_pbm_get_capabilities_input_ref, function in PBM Get Capabilities request
-qmi_message_pbm_get_capabilities_input_set_phonebook_information, function in PBM Get Capabilities +qmi_message_pbm_get_capabilities_input_set_phonebook_information, function in PBM Get Capabilities request
-qmi_message_pbm_get_capabilities_input_unref, function in PBM Get Capabilities +qmi_message_pbm_get_capabilities_input_unref, function in PBM Get Capabilities request
-qmi_message_pbm_get_capabilities_output_get_additional_number_alpha_string_capability, function in PBM Get Capabilities +qmi_message_pbm_get_capabilities_output_get_additional_number_alpha_string_capability, function in PBM Get Capabilities request
-qmi_message_pbm_get_capabilities_output_get_additional_number_capability, function in PBM Get Capabilities +qmi_message_pbm_get_capabilities_output_get_additional_number_capability, function in PBM Get Capabilities request
-qmi_message_pbm_get_capabilities_output_get_capability_basic_information, function in PBM Get Capabilities +qmi_message_pbm_get_capabilities_output_get_capability_basic_information, function in PBM Get Capabilities request
-qmi_message_pbm_get_capabilities_output_get_email_capability, function in PBM Get Capabilities +qmi_message_pbm_get_capabilities_output_get_email_capability, function in PBM Get Capabilities request
-qmi_message_pbm_get_capabilities_output_get_grouping_information_alpha_string_capability, function in PBM Get Capabilities +qmi_message_pbm_get_capabilities_output_get_grouping_information_alpha_string_capability, function in PBM Get Capabilities request
-qmi_message_pbm_get_capabilities_output_get_group_capability, function in PBM Get Capabilities +qmi_message_pbm_get_capabilities_output_get_group_capability, function in PBM Get Capabilities request
-qmi_message_pbm_get_capabilities_output_get_hidden_records_capability, function in PBM Get Capabilities +qmi_message_pbm_get_capabilities_output_get_hidden_records_capability, function in PBM Get Capabilities request
-qmi_message_pbm_get_capabilities_output_get_result, function in PBM Get Capabilities +qmi_message_pbm_get_capabilities_output_get_result, function in PBM Get Capabilities request
-qmi_message_pbm_get_capabilities_output_get_second_name_capability, function in PBM Get Capabilities +qmi_message_pbm_get_capabilities_output_get_second_name_capability, function in PBM Get Capabilities request
-qmi_message_pbm_get_capabilities_output_ref, function in PBM Get Capabilities +qmi_message_pbm_get_capabilities_output_ref, function in PBM Get Capabilities request
-qmi_message_pbm_get_capabilities_output_unref, function in PBM Get Capabilities +qmi_message_pbm_get_capabilities_output_unref, function in PBM Get Capabilities request
-qmi_message_pbm_indication_register_input_get_event_registration_mask, function in PBM Indication Register +qmi_message_pbm_indication_register_input_get_event_registration_mask, function in PBM Indication Register request
-qmi_message_pbm_indication_register_input_new, function in PBM Indication Register +qmi_message_pbm_indication_register_input_new, function in PBM Indication Register request
-qmi_message_pbm_indication_register_input_ref, function in PBM Indication Register +qmi_message_pbm_indication_register_input_ref, function in PBM Indication Register request
-qmi_message_pbm_indication_register_input_set_event_registration_mask, function in PBM Indication Register +qmi_message_pbm_indication_register_input_set_event_registration_mask, function in PBM Indication Register request
-qmi_message_pbm_indication_register_input_unref, function in PBM Indication Register +qmi_message_pbm_indication_register_input_unref, function in PBM Indication Register request
-qmi_message_pbm_indication_register_output_get_event_registration_mask, function in PBM Indication Register +qmi_message_pbm_indication_register_output_get_event_registration_mask, function in PBM Indication Register request
-qmi_message_pbm_indication_register_output_get_result, function in PBM Indication Register +qmi_message_pbm_indication_register_output_get_result, function in PBM Indication Register request
-qmi_message_pbm_indication_register_output_ref, function in PBM Indication Register +qmi_message_pbm_indication_register_output_ref, function in PBM Indication Register request
-qmi_message_pbm_indication_register_output_unref, function in PBM Indication Register +qmi_message_pbm_indication_register_output_unref, function in PBM Indication Register request
-qmi_message_pdc_activate_config_input_get_config_type, function in PDC Activate Config +qmi_message_pdc_activate_config_input_get_config_type, function in PDC Activate Config request
-qmi_message_pdc_activate_config_input_get_token, function in PDC Activate Config +qmi_message_pdc_activate_config_input_get_token, function in PDC Activate Config request
-qmi_message_pdc_activate_config_input_new, function in PDC Activate Config +qmi_message_pdc_activate_config_input_new, function in PDC Activate Config request
-qmi_message_pdc_activate_config_input_ref, function in PDC Activate Config +qmi_message_pdc_activate_config_input_ref, function in PDC Activate Config request
-qmi_message_pdc_activate_config_input_set_config_type, function in PDC Activate Config +qmi_message_pdc_activate_config_input_set_config_type, function in PDC Activate Config request
-qmi_message_pdc_activate_config_input_set_token, function in PDC Activate Config +qmi_message_pdc_activate_config_input_set_token, function in PDC Activate Config request
-qmi_message_pdc_activate_config_input_unref, function in PDC Activate Config +qmi_message_pdc_activate_config_input_unref, function in PDC Activate Config request
-qmi_message_pdc_activate_config_output_get_result, function in PDC Activate Config +qmi_message_pdc_activate_config_output_get_result, function in PDC Activate Config request
-qmi_message_pdc_activate_config_output_get_token, function in PDC Activate Config +qmi_message_pdc_activate_config_output_get_token, function in PDC Activate Config request
-qmi_message_pdc_activate_config_output_ref, function in PDC Activate Config +qmi_message_pdc_activate_config_output_ref, function in PDC Activate Config request
-qmi_message_pdc_activate_config_output_unref, function in PDC Activate Config +qmi_message_pdc_activate_config_output_unref, function in PDC Activate Config request
-qmi_message_pdc_config_change_input_get_type_with_id, function in PDC Config Change +qmi_message_pdc_config_change_input_get_type_with_id, function in PDC Config Change request
-qmi_message_pdc_config_change_input_new, function in PDC Config Change +qmi_message_pdc_config_change_input_new, function in PDC Config Change request
-qmi_message_pdc_config_change_input_ref, function in PDC Config Change +qmi_message_pdc_config_change_input_ref, function in PDC Config Change request
-qmi_message_pdc_config_change_input_set_type_with_id, function in PDC Config Change +qmi_message_pdc_config_change_input_set_type_with_id, function in PDC Config Change request
-qmi_message_pdc_config_change_input_unref, function in PDC Config Change +qmi_message_pdc_config_change_input_unref, function in PDC Config Change request
-qmi_message_pdc_config_change_output_get_result, function in PDC Config Change +qmi_message_pdc_config_change_output_get_result, function in PDC Config Change request
-qmi_message_pdc_config_change_output_get_type_with_id, function in PDC Config Change +qmi_message_pdc_config_change_output_get_type_with_id, function in PDC Config Change request
-qmi_message_pdc_config_change_output_ref, function in PDC Config Change +qmi_message_pdc_config_change_output_ref, function in PDC Config Change request
-qmi_message_pdc_config_change_output_unref, function in PDC Config Change +qmi_message_pdc_config_change_output_unref, function in PDC Config Change request
-qmi_message_pdc_deactivate_config_input_get_config_type, function in PDC Deactivate Config +qmi_message_pdc_deactivate_config_input_get_config_type, function in PDC Deactivate Config request
-qmi_message_pdc_deactivate_config_input_get_token, function in PDC Deactivate Config +qmi_message_pdc_deactivate_config_input_get_token, function in PDC Deactivate Config request
-qmi_message_pdc_deactivate_config_input_new, function in PDC Deactivate Config +qmi_message_pdc_deactivate_config_input_new, function in PDC Deactivate Config request
-qmi_message_pdc_deactivate_config_input_ref, function in PDC Deactivate Config +qmi_message_pdc_deactivate_config_input_ref, function in PDC Deactivate Config request
-qmi_message_pdc_deactivate_config_input_set_config_type, function in PDC Deactivate Config +qmi_message_pdc_deactivate_config_input_set_config_type, function in PDC Deactivate Config request
-qmi_message_pdc_deactivate_config_input_set_token, function in PDC Deactivate Config +qmi_message_pdc_deactivate_config_input_set_token, function in PDC Deactivate Config request
-qmi_message_pdc_deactivate_config_input_unref, function in PDC Deactivate Config +qmi_message_pdc_deactivate_config_input_unref, function in PDC Deactivate Config request
-qmi_message_pdc_deactivate_config_output_get_result, function in PDC Deactivate Config +qmi_message_pdc_deactivate_config_output_get_result, function in PDC Deactivate Config request
-qmi_message_pdc_deactivate_config_output_get_token, function in PDC Deactivate Config +qmi_message_pdc_deactivate_config_output_get_token, function in PDC Deactivate Config request
-qmi_message_pdc_deactivate_config_output_ref, function in PDC Deactivate Config +qmi_message_pdc_deactivate_config_output_ref, function in PDC Deactivate Config request
-qmi_message_pdc_deactivate_config_output_unref, function in PDC Deactivate Config +qmi_message_pdc_deactivate_config_output_unref, function in PDC Deactivate Config request
-qmi_message_pdc_delete_config_input_get_config_type, function in PDC Delete Config +qmi_message_pdc_delete_config_input_get_config_type, function in PDC Delete Config request
-qmi_message_pdc_delete_config_input_get_id, function in PDC Delete Config +qmi_message_pdc_delete_config_input_get_id, function in PDC Delete Config request
-qmi_message_pdc_delete_config_input_get_token, function in PDC Delete Config +qmi_message_pdc_delete_config_input_get_token, function in PDC Delete Config request
-qmi_message_pdc_delete_config_input_new, function in PDC Delete Config +qmi_message_pdc_delete_config_input_new, function in PDC Delete Config request
-qmi_message_pdc_delete_config_input_ref, function in PDC Delete Config +qmi_message_pdc_delete_config_input_ref, function in PDC Delete Config request
-qmi_message_pdc_delete_config_input_set_config_type, function in PDC Delete Config +qmi_message_pdc_delete_config_input_set_config_type, function in PDC Delete Config request
-qmi_message_pdc_delete_config_input_set_id, function in PDC Delete Config +qmi_message_pdc_delete_config_input_set_id, function in PDC Delete Config request
-qmi_message_pdc_delete_config_input_set_token, function in PDC Delete Config +qmi_message_pdc_delete_config_input_set_token, function in PDC Delete Config request
-qmi_message_pdc_delete_config_input_unref, function in PDC Delete Config +qmi_message_pdc_delete_config_input_unref, function in PDC Delete Config request
-qmi_message_pdc_delete_config_output_get_result, function in PDC Delete Config +qmi_message_pdc_delete_config_output_get_result, function in PDC Delete Config request
-qmi_message_pdc_delete_config_output_get_token, function in PDC Delete Config +qmi_message_pdc_delete_config_output_get_token, function in PDC Delete Config request
-qmi_message_pdc_delete_config_output_ref, function in PDC Delete Config +qmi_message_pdc_delete_config_output_ref, function in PDC Delete Config request
-qmi_message_pdc_delete_config_output_unref, function in PDC Delete Config +qmi_message_pdc_delete_config_output_unref, function in PDC Delete Config request
-qmi_message_pdc_get_config_info_input_get_token, function in PDC Get Config Info +qmi_message_pdc_get_config_info_input_get_token, function in PDC Get Config Info request
-qmi_message_pdc_get_config_info_input_get_type_with_id, function in PDC Get Config Info +qmi_message_pdc_get_config_info_input_get_type_with_id, function in PDC Get Config Info request
-qmi_message_pdc_get_config_info_input_new, function in PDC Get Config Info +qmi_message_pdc_get_config_info_input_new, function in PDC Get Config Info request
-qmi_message_pdc_get_config_info_input_ref, function in PDC Get Config Info +qmi_message_pdc_get_config_info_input_ref, function in PDC Get Config Info request
-qmi_message_pdc_get_config_info_input_set_token, function in PDC Get Config Info +qmi_message_pdc_get_config_info_input_set_token, function in PDC Get Config Info request
-qmi_message_pdc_get_config_info_input_set_type_with_id, function in PDC Get Config Info +qmi_message_pdc_get_config_info_input_set_type_with_id, function in PDC Get Config Info request
-qmi_message_pdc_get_config_info_input_unref, function in PDC Get Config Info +qmi_message_pdc_get_config_info_input_unref, function in PDC Get Config Info request
-qmi_message_pdc_get_config_info_output_get_result, function in PDC Get Config Info +qmi_message_pdc_get_config_info_output_get_result, function in PDC Get Config Info request
-qmi_message_pdc_get_config_info_output_ref, function in PDC Get Config Info +qmi_message_pdc_get_config_info_output_ref, function in PDC Get Config Info request
-qmi_message_pdc_get_config_info_output_unref, function in PDC Get Config Info +qmi_message_pdc_get_config_info_output_unref, function in PDC Get Config Info request
-qmi_message_pdc_get_config_limits_input_get_config_type, function in PDC Get Config Limits +qmi_message_pdc_get_config_limits_input_get_config_type, function in PDC Get Config Limits request
-qmi_message_pdc_get_config_limits_input_get_token, function in PDC Get Config Limits +qmi_message_pdc_get_config_limits_input_get_token, function in PDC Get Config Limits request
-qmi_message_pdc_get_config_limits_input_new, function in PDC Get Config Limits +qmi_message_pdc_get_config_limits_input_new, function in PDC Get Config Limits request
-qmi_message_pdc_get_config_limits_input_ref, function in PDC Get Config Limits +qmi_message_pdc_get_config_limits_input_ref, function in PDC Get Config Limits request
-qmi_message_pdc_get_config_limits_input_set_config_type, function in PDC Get Config Limits +qmi_message_pdc_get_config_limits_input_set_config_type, function in PDC Get Config Limits request
-qmi_message_pdc_get_config_limits_input_set_token, function in PDC Get Config Limits +qmi_message_pdc_get_config_limits_input_set_token, function in PDC Get Config Limits request
-qmi_message_pdc_get_config_limits_input_unref, function in PDC Get Config Limits +qmi_message_pdc_get_config_limits_input_unref, function in PDC Get Config Limits request
-qmi_message_pdc_get_config_limits_output_get_current_size, function in PDC Get Config Limits +qmi_message_pdc_get_config_limits_output_get_current_size, function in PDC Get Config Limits request
-qmi_message_pdc_get_config_limits_output_get_maximum_size, function in PDC Get Config Limits +qmi_message_pdc_get_config_limits_output_get_maximum_size, function in PDC Get Config Limits request
-qmi_message_pdc_get_config_limits_output_get_result, function in PDC Get Config Limits +qmi_message_pdc_get_config_limits_output_get_result, function in PDC Get Config Limits request
-qmi_message_pdc_get_config_limits_output_get_token, function in PDC Get Config Limits +qmi_message_pdc_get_config_limits_output_get_token, function in PDC Get Config Limits request
-qmi_message_pdc_get_config_limits_output_ref, function in PDC Get Config Limits +qmi_message_pdc_get_config_limits_output_ref, function in PDC Get Config Limits request
-qmi_message_pdc_get_config_limits_output_unref, function in PDC Get Config Limits +qmi_message_pdc_get_config_limits_output_unref, function in PDC Get Config Limits request
-qmi_message_pdc_get_default_config_info_input_get_config_type, function in PDC Get Default Config Info +qmi_message_pdc_get_default_config_info_input_get_config_type, function in PDC Get Default Config Info request
-qmi_message_pdc_get_default_config_info_input_get_token, function in PDC Get Default Config Info +qmi_message_pdc_get_default_config_info_input_get_token, function in PDC Get Default Config Info request
-qmi_message_pdc_get_default_config_info_input_new, function in PDC Get Default Config Info +qmi_message_pdc_get_default_config_info_input_new, function in PDC Get Default Config Info request
-qmi_message_pdc_get_default_config_info_input_ref, function in PDC Get Default Config Info +qmi_message_pdc_get_default_config_info_input_ref, function in PDC Get Default Config Info request
-qmi_message_pdc_get_default_config_info_input_set_config_type, function in PDC Get Default Config Info +qmi_message_pdc_get_default_config_info_input_set_config_type, function in PDC Get Default Config Info request
-qmi_message_pdc_get_default_config_info_input_set_token, function in PDC Get Default Config Info +qmi_message_pdc_get_default_config_info_input_set_token, function in PDC Get Default Config Info request
-qmi_message_pdc_get_default_config_info_input_unref, function in PDC Get Default Config Info +qmi_message_pdc_get_default_config_info_input_unref, function in PDC Get Default Config Info request
-qmi_message_pdc_get_default_config_info_output_get_description, function in PDC Get Default Config Info +qmi_message_pdc_get_default_config_info_output_get_description, function in PDC Get Default Config Info request
-qmi_message_pdc_get_default_config_info_output_get_result, function in PDC Get Default Config Info +qmi_message_pdc_get_default_config_info_output_get_result, function in PDC Get Default Config Info request
-qmi_message_pdc_get_default_config_info_output_get_token, function in PDC Get Default Config Info +qmi_message_pdc_get_default_config_info_output_get_token, function in PDC Get Default Config Info request
-qmi_message_pdc_get_default_config_info_output_get_total_size, function in PDC Get Default Config Info +qmi_message_pdc_get_default_config_info_output_get_total_size, function in PDC Get Default Config Info request
-qmi_message_pdc_get_default_config_info_output_get_version, function in PDC Get Default Config Info +qmi_message_pdc_get_default_config_info_output_get_version, function in PDC Get Default Config Info request
-qmi_message_pdc_get_default_config_info_output_ref, function in PDC Get Default Config Info +qmi_message_pdc_get_default_config_info_output_ref, function in PDC Get Default Config Info request
-qmi_message_pdc_get_default_config_info_output_unref, function in PDC Get Default Config Info +qmi_message_pdc_get_default_config_info_output_unref, function in PDC Get Default Config Info request
-qmi_message_pdc_get_selected_config_input_get_config_type, function in PDC Get Selected Config +qmi_message_pdc_get_selected_config_input_get_config_type, function in PDC Get Selected Config request
-qmi_message_pdc_get_selected_config_input_get_token, function in PDC Get Selected Config +qmi_message_pdc_get_selected_config_input_get_token, function in PDC Get Selected Config request
-qmi_message_pdc_get_selected_config_input_new, function in PDC Get Selected Config +qmi_message_pdc_get_selected_config_input_new, function in PDC Get Selected Config request
-qmi_message_pdc_get_selected_config_input_ref, function in PDC Get Selected Config +qmi_message_pdc_get_selected_config_input_ref, function in PDC Get Selected Config request
-qmi_message_pdc_get_selected_config_input_set_config_type, function in PDC Get Selected Config +qmi_message_pdc_get_selected_config_input_set_config_type, function in PDC Get Selected Config request
-qmi_message_pdc_get_selected_config_input_set_token, function in PDC Get Selected Config +qmi_message_pdc_get_selected_config_input_set_token, function in PDC Get Selected Config request
-qmi_message_pdc_get_selected_config_input_unref, function in PDC Get Selected Config +qmi_message_pdc_get_selected_config_input_unref, function in PDC Get Selected Config request
-qmi_message_pdc_get_selected_config_output_get_result, function in PDC Get Selected Config +qmi_message_pdc_get_selected_config_output_get_result, function in PDC Get Selected Config request
-qmi_message_pdc_get_selected_config_output_get_token, function in PDC Get Selected Config +qmi_message_pdc_get_selected_config_output_get_token, function in PDC Get Selected Config request
-qmi_message_pdc_get_selected_config_output_ref, function in PDC Get Selected Config +qmi_message_pdc_get_selected_config_output_ref, function in PDC Get Selected Config request
-qmi_message_pdc_get_selected_config_output_unref, function in PDC Get Selected Config +qmi_message_pdc_get_selected_config_output_unref, function in PDC Get Selected Config request
-qmi_message_pdc_list_configs_input_get_config_type, function in PDC List Configs +qmi_message_pdc_list_configs_input_get_config_type, function in PDC List Configs request
-qmi_message_pdc_list_configs_input_get_token, function in PDC List Configs +qmi_message_pdc_list_configs_input_get_token, function in PDC List Configs request
-qmi_message_pdc_list_configs_input_new, function in PDC List Configs +qmi_message_pdc_list_configs_input_new, function in PDC List Configs request
-qmi_message_pdc_list_configs_input_ref, function in PDC List Configs +qmi_message_pdc_list_configs_input_ref, function in PDC List Configs request
-qmi_message_pdc_list_configs_input_set_config_type, function in PDC List Configs +qmi_message_pdc_list_configs_input_set_config_type, function in PDC List Configs request
-qmi_message_pdc_list_configs_input_set_token, function in PDC List Configs +qmi_message_pdc_list_configs_input_set_token, function in PDC List Configs request
-qmi_message_pdc_list_configs_input_unref, function in PDC List Configs +qmi_message_pdc_list_configs_input_unref, function in PDC List Configs request
-qmi_message_pdc_list_configs_output_get_result, function in PDC List Configs +qmi_message_pdc_list_configs_output_get_result, function in PDC List Configs request
-qmi_message_pdc_list_configs_output_ref, function in PDC List Configs +qmi_message_pdc_list_configs_output_ref, function in PDC List Configs request
-qmi_message_pdc_list_configs_output_unref, function in PDC List Configs +qmi_message_pdc_list_configs_output_unref, function in PDC List Configs request
-qmi_message_pdc_load_config_input_get_config_chunk, function in PDC Load Config +qmi_message_pdc_load_config_input_get_config_chunk, function in PDC Load Config request
-qmi_message_pdc_load_config_input_get_token, function in PDC Load Config +qmi_message_pdc_load_config_input_get_token, function in PDC Load Config request
-qmi_message_pdc_load_config_input_new, function in PDC Load Config +qmi_message_pdc_load_config_input_new, function in PDC Load Config request
-qmi_message_pdc_load_config_input_ref, function in PDC Load Config +qmi_message_pdc_load_config_input_ref, function in PDC Load Config request
-qmi_message_pdc_load_config_input_set_config_chunk, function in PDC Load Config +qmi_message_pdc_load_config_input_set_config_chunk, function in PDC Load Config request
-qmi_message_pdc_load_config_input_set_token, function in PDC Load Config +qmi_message_pdc_load_config_input_set_token, function in PDC Load Config request
-qmi_message_pdc_load_config_input_unref, function in PDC Load Config +qmi_message_pdc_load_config_input_unref, function in PDC Load Config request
-qmi_message_pdc_load_config_output_get_result, function in PDC Load Config +qmi_message_pdc_load_config_output_get_result, function in PDC Load Config request
-qmi_message_pdc_load_config_output_get_token, function in PDC Load Config +qmi_message_pdc_load_config_output_get_token, function in PDC Load Config request
-qmi_message_pdc_load_config_output_ref, function in PDC Load Config +qmi_message_pdc_load_config_output_ref, function in PDC Load Config request
-qmi_message_pdc_load_config_output_unref, function in PDC Load Config +qmi_message_pdc_load_config_output_unref, function in PDC Load Config request
-qmi_message_pdc_register_input_get_enable_reporting, function in PDC Register +qmi_message_pdc_register_input_get_enable_reporting, function in PDC Register request
-qmi_message_pdc_register_input_new, function in PDC Register +qmi_message_pdc_register_input_new, function in PDC Register request
-qmi_message_pdc_register_input_ref, function in PDC Register +qmi_message_pdc_register_input_ref, function in PDC Register request
-qmi_message_pdc_register_input_set_enable_reporting, function in PDC Register +qmi_message_pdc_register_input_set_enable_reporting, function in PDC Register request
-qmi_message_pdc_register_input_unref, function in PDC Register +qmi_message_pdc_register_input_unref, function in PDC Register request
-qmi_message_pdc_register_output_get_result, function in PDC Register +qmi_message_pdc_register_output_get_result, function in PDC Register request
-qmi_message_pdc_register_output_ref, function in PDC Register +qmi_message_pdc_register_output_ref, function in PDC Register request
-qmi_message_pdc_register_output_unref, function in PDC Register +qmi_message_pdc_register_output_unref, function in PDC Register request
-qmi_message_pdc_reset_output_get_result, function in PDC Reset +qmi_message_pdc_reset_output_get_result, function in PDC Reset request
-qmi_message_pdc_reset_output_ref, function in PDC Reset +qmi_message_pdc_reset_output_ref, function in PDC Reset request
-qmi_message_pdc_reset_output_unref, function in PDC Reset +qmi_message_pdc_reset_output_unref, function in PDC Reset request
-qmi_message_pdc_set_selected_config_input_get_token, function in PDC Set Selected Config +qmi_message_pdc_set_selected_config_input_get_token, function in PDC Set Selected Config request
-qmi_message_pdc_set_selected_config_input_get_type_with_id, function in PDC Set Selected Config +qmi_message_pdc_set_selected_config_input_get_type_with_id, function in PDC Set Selected Config request
-qmi_message_pdc_set_selected_config_input_new, function in PDC Set Selected Config +qmi_message_pdc_set_selected_config_input_new, function in PDC Set Selected Config request
-qmi_message_pdc_set_selected_config_input_ref, function in PDC Set Selected Config +qmi_message_pdc_set_selected_config_input_ref, function in PDC Set Selected Config request
-qmi_message_pdc_set_selected_config_input_set_token, function in PDC Set Selected Config +qmi_message_pdc_set_selected_config_input_set_token, function in PDC Set Selected Config request
-qmi_message_pdc_set_selected_config_input_set_type_with_id, function in PDC Set Selected Config +qmi_message_pdc_set_selected_config_input_set_type_with_id, function in PDC Set Selected Config request
-qmi_message_pdc_set_selected_config_input_unref, function in PDC Set Selected Config +qmi_message_pdc_set_selected_config_input_unref, function in PDC Set Selected Config request
-qmi_message_pdc_set_selected_config_output_get_result, function in PDC Set Selected Config +qmi_message_pdc_set_selected_config_output_get_result, function in PDC Set Selected Config request
-qmi_message_pdc_set_selected_config_output_get_token, function in PDC Set Selected Config +qmi_message_pdc_set_selected_config_output_get_token, function in PDC Set Selected Config request
-qmi_message_pdc_set_selected_config_output_ref, function in PDC Set Selected Config +qmi_message_pdc_set_selected_config_output_ref, function in PDC Set Selected Config request
-qmi_message_pdc_set_selected_config_output_unref, function in PDC Set Selected Config +qmi_message_pdc_set_selected_config_output_unref, function in PDC Set Selected Config request
-qmi_message_pds_get_agps_config_input_get_network_mode, function in PDS Get AGPS Config +qmi_message_pds_get_agps_config_input_get_network_mode, function in PDS Get AGPS Config request
-qmi_message_pds_get_agps_config_input_new, function in PDS Get AGPS Config +qmi_message_pds_get_agps_config_input_new, function in PDS Get AGPS Config request
-qmi_message_pds_get_agps_config_input_ref, function in PDS Get AGPS Config +qmi_message_pds_get_agps_config_input_ref, function in PDS Get AGPS Config request
-qmi_message_pds_get_agps_config_input_set_network_mode, function in PDS Get AGPS Config +qmi_message_pds_get_agps_config_input_set_network_mode, function in PDS Get AGPS Config request
-qmi_message_pds_get_agps_config_input_unref, function in PDS Get AGPS Config +qmi_message_pds_get_agps_config_input_unref, function in PDS Get AGPS Config request
-qmi_message_pds_get_agps_config_output_get_location_server_address, function in PDS Get AGPS Config +qmi_message_pds_get_agps_config_output_get_location_server_address, function in PDS Get AGPS Config request
-qmi_message_pds_get_agps_config_output_get_location_server_url, function in PDS Get AGPS Config +qmi_message_pds_get_agps_config_output_get_location_server_url, function in PDS Get AGPS Config request
-qmi_message_pds_get_agps_config_output_get_result, function in PDS Get AGPS Config +qmi_message_pds_get_agps_config_output_get_result, function in PDS Get AGPS Config request
-qmi_message_pds_get_agps_config_output_ref, function in PDS Get AGPS Config +qmi_message_pds_get_agps_config_output_ref, function in PDS Get AGPS Config request
-qmi_message_pds_get_agps_config_output_unref, function in PDS Get AGPS Config +qmi_message_pds_get_agps_config_output_unref, function in PDS Get AGPS Config request
-qmi_message_pds_get_auto_tracking_state_output_get_result, function in PDS Get Auto Tracking State +qmi_message_pds_get_auto_tracking_state_output_get_result, function in PDS Get Auto Tracking State request
-qmi_message_pds_get_auto_tracking_state_output_get_state, function in PDS Get Auto Tracking State +qmi_message_pds_get_auto_tracking_state_output_get_state, function in PDS Get Auto Tracking State request
-qmi_message_pds_get_auto_tracking_state_output_ref, function in PDS Get Auto Tracking State +qmi_message_pds_get_auto_tracking_state_output_ref, function in PDS Get Auto Tracking State request
-qmi_message_pds_get_auto_tracking_state_output_unref, function in PDS Get Auto Tracking State +qmi_message_pds_get_auto_tracking_state_output_unref, function in PDS Get Auto Tracking State request
-qmi_message_pds_get_default_tracking_session_output_get_info, function in PDS Get Default Tracking Session +qmi_message_pds_get_default_tracking_session_output_get_info, function in PDS Get Default Tracking Session request
-qmi_message_pds_get_default_tracking_session_output_get_result, function in PDS Get Default Tracking Session +qmi_message_pds_get_default_tracking_session_output_get_result, function in PDS Get Default Tracking Session request
-qmi_message_pds_get_default_tracking_session_output_ref, function in PDS Get Default Tracking Session +qmi_message_pds_get_default_tracking_session_output_ref, function in PDS Get Default Tracking Session request
-qmi_message_pds_get_default_tracking_session_output_unref, function in PDS Get Default Tracking Session +qmi_message_pds_get_default_tracking_session_output_unref, function in PDS Get Default Tracking Session request
-qmi_message_pds_get_gps_service_state_output_get_result, function in PDS Get GPS Service State +qmi_message_pds_get_gps_service_state_output_get_result, function in PDS Get GPS Service State request
-qmi_message_pds_get_gps_service_state_output_get_state, function in PDS Get GPS Service State +qmi_message_pds_get_gps_service_state_output_get_state, function in PDS Get GPS Service State request
-qmi_message_pds_get_gps_service_state_output_ref, function in PDS Get GPS Service State +qmi_message_pds_get_gps_service_state_output_ref, function in PDS Get GPS Service State request
-qmi_message_pds_get_gps_service_state_output_unref, function in PDS Get GPS Service State +qmi_message_pds_get_gps_service_state_output_unref, function in PDS Get GPS Service State request
-qmi_message_pds_reset_output_get_result, function in PDS Reset +qmi_message_pds_reset_output_get_result, function in PDS Reset request
-qmi_message_pds_reset_output_ref, function in PDS Reset +qmi_message_pds_reset_output_ref, function in PDS Reset request
-qmi_message_pds_reset_output_unref, function in PDS Reset +qmi_message_pds_reset_output_unref, function in PDS Reset request
-qmi_message_pds_set_agps_config_input_get_location_server_address, function in PDS Set AGPS Config +qmi_message_pds_set_agps_config_input_get_location_server_address, function in PDS Set AGPS Config request
-qmi_message_pds_set_agps_config_input_get_location_server_url, function in PDS Set AGPS Config +qmi_message_pds_set_agps_config_input_get_location_server_url, function in PDS Set AGPS Config request
-qmi_message_pds_set_agps_config_input_get_network_mode, function in PDS Set AGPS Config +qmi_message_pds_set_agps_config_input_get_network_mode, function in PDS Set AGPS Config request
-qmi_message_pds_set_agps_config_input_new, function in PDS Set AGPS Config +qmi_message_pds_set_agps_config_input_new, function in PDS Set AGPS Config request
-qmi_message_pds_set_agps_config_input_ref, function in PDS Set AGPS Config +qmi_message_pds_set_agps_config_input_ref, function in PDS Set AGPS Config request
-qmi_message_pds_set_agps_config_input_set_location_server_address, function in PDS Set AGPS Config +qmi_message_pds_set_agps_config_input_set_location_server_address, function in PDS Set AGPS Config request
-qmi_message_pds_set_agps_config_input_set_location_server_url, function in PDS Set AGPS Config +qmi_message_pds_set_agps_config_input_set_location_server_url, function in PDS Set AGPS Config request
-qmi_message_pds_set_agps_config_input_set_network_mode, function in PDS Set AGPS Config +qmi_message_pds_set_agps_config_input_set_network_mode, function in PDS Set AGPS Config request
-qmi_message_pds_set_agps_config_input_unref, function in PDS Set AGPS Config +qmi_message_pds_set_agps_config_input_unref, function in PDS Set AGPS Config request
-qmi_message_pds_set_agps_config_output_get_result, function in PDS Set AGPS Config +qmi_message_pds_set_agps_config_output_get_result, function in PDS Set AGPS Config request
-qmi_message_pds_set_agps_config_output_ref, function in PDS Set AGPS Config +qmi_message_pds_set_agps_config_output_ref, function in PDS Set AGPS Config request
-qmi_message_pds_set_agps_config_output_unref, function in PDS Set AGPS Config +qmi_message_pds_set_agps_config_output_unref, function in PDS Set AGPS Config request
-qmi_message_pds_set_auto_tracking_state_input_get_state, function in PDS Set Auto Tracking State +qmi_message_pds_set_auto_tracking_state_input_get_state, function in PDS Set Auto Tracking State request
-qmi_message_pds_set_auto_tracking_state_input_new, function in PDS Set Auto Tracking State +qmi_message_pds_set_auto_tracking_state_input_new, function in PDS Set Auto Tracking State request
-qmi_message_pds_set_auto_tracking_state_input_ref, function in PDS Set Auto Tracking State +qmi_message_pds_set_auto_tracking_state_input_ref, function in PDS Set Auto Tracking State request
-qmi_message_pds_set_auto_tracking_state_input_set_state, function in PDS Set Auto Tracking State +qmi_message_pds_set_auto_tracking_state_input_set_state, function in PDS Set Auto Tracking State request
-qmi_message_pds_set_auto_tracking_state_input_unref, function in PDS Set Auto Tracking State +qmi_message_pds_set_auto_tracking_state_input_unref, function in PDS Set Auto Tracking State request
-qmi_message_pds_set_auto_tracking_state_output_get_result, function in PDS Set Auto Tracking State +qmi_message_pds_set_auto_tracking_state_output_get_result, function in PDS Set Auto Tracking State request
-qmi_message_pds_set_auto_tracking_state_output_ref, function in PDS Set Auto Tracking State +qmi_message_pds_set_auto_tracking_state_output_ref, function in PDS Set Auto Tracking State request
-qmi_message_pds_set_auto_tracking_state_output_unref, function in PDS Set Auto Tracking State +qmi_message_pds_set_auto_tracking_state_output_unref, function in PDS Set Auto Tracking State request
-qmi_message_pds_set_default_tracking_session_input_get_info, function in PDS Set Default Tracking Session +qmi_message_pds_set_default_tracking_session_input_get_info, function in PDS Set Default Tracking Session request
-qmi_message_pds_set_default_tracking_session_input_new, function in PDS Set Default Tracking Session +qmi_message_pds_set_default_tracking_session_input_new, function in PDS Set Default Tracking Session request
-qmi_message_pds_set_default_tracking_session_input_ref, function in PDS Set Default Tracking Session +qmi_message_pds_set_default_tracking_session_input_ref, function in PDS Set Default Tracking Session request
-qmi_message_pds_set_default_tracking_session_input_set_info, function in PDS Set Default Tracking Session +qmi_message_pds_set_default_tracking_session_input_set_info, function in PDS Set Default Tracking Session request
-qmi_message_pds_set_default_tracking_session_input_unref, function in PDS Set Default Tracking Session +qmi_message_pds_set_default_tracking_session_input_unref, function in PDS Set Default Tracking Session request
-qmi_message_pds_set_default_tracking_session_output_get_result, function in PDS Set Default Tracking Session +qmi_message_pds_set_default_tracking_session_output_get_result, function in PDS Set Default Tracking Session request
-qmi_message_pds_set_default_tracking_session_output_ref, function in PDS Set Default Tracking Session +qmi_message_pds_set_default_tracking_session_output_ref, function in PDS Set Default Tracking Session request
-qmi_message_pds_set_default_tracking_session_output_unref, function in PDS Set Default Tracking Session +qmi_message_pds_set_default_tracking_session_output_unref, function in PDS Set Default Tracking Session request
-qmi_message_pds_set_event_report_input_get_accelerometer_data_streaming_ready_reporting, function in PDS Set Event Report +qmi_message_pds_set_event_report_input_get_accelerometer_data_streaming_ready_reporting, function in PDS Set Event Report request
-qmi_message_pds_set_event_report_input_get_extended_external_xtra_data_request_reporting, function in PDS Set Event Report +qmi_message_pds_set_event_report_input_get_extended_external_xtra_data_request_reporting, function in PDS Set Event Report request
-qmi_message_pds_set_event_report_input_get_extended_nmea_position_reporting, function in PDS Set Event Report +qmi_message_pds_set_event_report_input_get_extended_nmea_position_reporting, function in PDS Set Event Report request
-qmi_message_pds_set_event_report_input_get_external_time_injection_request_reporting, function in PDS Set Event Report +qmi_message_pds_set_event_report_input_get_external_time_injection_request_reporting, function in PDS Set Event Report request
-qmi_message_pds_set_event_report_input_get_external_wifi_position_request_reporting, function in PDS Set Event Report +qmi_message_pds_set_event_report_input_get_external_wifi_position_request_reporting, function in PDS Set Event Report request
-qmi_message_pds_set_event_report_input_get_external_xtra_data_request_reporting, function in PDS Set Event Report +qmi_message_pds_set_event_report_input_get_external_xtra_data_request_reporting, function in PDS Set Event Report request
-qmi_message_pds_set_event_report_input_get_gyro_data_streaming_ready_reporting, function in PDS Set Event Report +qmi_message_pds_set_event_report_input_get_gyro_data_streaming_ready_reporting, function in PDS Set Event Report request
-qmi_message_pds_set_event_report_input_get_heading_uncertainty_reporting, function in PDS Set Event Report +qmi_message_pds_set_event_report_input_get_heading_uncertainty_reporting, function in PDS Set Event Report request
-qmi_message_pds_set_event_report_input_get_nmea_debug_strings_reporting, function in PDS Set Event Report +qmi_message_pds_set_event_report_input_get_nmea_debug_strings_reporting, function in PDS Set Event Report request
-qmi_message_pds_set_event_report_input_get_nmea_position_reporting, function in PDS Set Event Report +qmi_message_pds_set_event_report_input_get_nmea_position_reporting, function in PDS Set Event Report request
-qmi_message_pds_set_event_report_input_get_parsed_position_reporting, function in PDS Set Event Report +qmi_message_pds_set_event_report_input_get_parsed_position_reporting, function in PDS Set Event Report request
-qmi_message_pds_set_event_report_input_get_pds_comm_event_reporting, function in PDS Set Event Report +qmi_message_pds_set_event_report_input_get_pds_comm_event_reporting, function in PDS Set Event Report request
-qmi_message_pds_set_event_report_input_get_position_reliability_indicator_reporting, function in PDS Set Event Report +qmi_message_pds_set_event_report_input_get_position_reliability_indicator_reporting, function in PDS Set Event Report request
-qmi_message_pds_set_event_report_input_get_satellite_information_reporting, function in PDS Set Event Report +qmi_message_pds_set_event_report_input_get_satellite_information_reporting, function in PDS Set Event Report request
-qmi_message_pds_set_event_report_input_get_sensor_data_usage_indicator_reporting, function in PDS Set Event Report +qmi_message_pds_set_event_report_input_get_sensor_data_usage_indicator_reporting, function in PDS Set Event Report request
-qmi_message_pds_set_event_report_input_get_supl_network_initiated_prompt_reporting, function in PDS Set Event Report +qmi_message_pds_set_event_report_input_get_supl_network_initiated_prompt_reporting, function in PDS Set Event Report request
-qmi_message_pds_set_event_report_input_get_time_source_information_reporting, function in PDS Set Event Report +qmi_message_pds_set_event_report_input_get_time_source_information_reporting, function in PDS Set Event Report request
-qmi_message_pds_set_event_report_input_get_time_sync_request_reporting, function in PDS Set Event Report +qmi_message_pds_set_event_report_input_get_time_sync_request_reporting, function in PDS Set Event Report request
-qmi_message_pds_set_event_report_input_get_umts_cp_network_initiated_prompt_reporting, function in PDS Set Event Report +qmi_message_pds_set_event_report_input_get_umts_cp_network_initiated_prompt_reporting, function in PDS Set Event Report request
-qmi_message_pds_set_event_report_input_get_vx_network_initiated_request_reporting, function in PDS Set Event Report +qmi_message_pds_set_event_report_input_get_vx_network_initiated_request_reporting, function in PDS Set Event Report request
-qmi_message_pds_set_event_report_input_new, function in PDS Set Event Report +qmi_message_pds_set_event_report_input_new, function in PDS Set Event Report request
-qmi_message_pds_set_event_report_input_ref, function in PDS Set Event Report +qmi_message_pds_set_event_report_input_ref, function in PDS Set Event Report request
-qmi_message_pds_set_event_report_input_set_accelerometer_data_streaming_ready_reporting, function in PDS Set Event Report +qmi_message_pds_set_event_report_input_set_accelerometer_data_streaming_ready_reporting, function in PDS Set Event Report request
-qmi_message_pds_set_event_report_input_set_extended_external_xtra_data_request_reporting, function in PDS Set Event Report +qmi_message_pds_set_event_report_input_set_extended_external_xtra_data_request_reporting, function in PDS Set Event Report request
-qmi_message_pds_set_event_report_input_set_extended_nmea_position_reporting, function in PDS Set Event Report +qmi_message_pds_set_event_report_input_set_extended_nmea_position_reporting, function in PDS Set Event Report request
-qmi_message_pds_set_event_report_input_set_external_time_injection_request_reporting, function in PDS Set Event Report +qmi_message_pds_set_event_report_input_set_external_time_injection_request_reporting, function in PDS Set Event Report request
-qmi_message_pds_set_event_report_input_set_external_wifi_position_request_reporting, function in PDS Set Event Report +qmi_message_pds_set_event_report_input_set_external_wifi_position_request_reporting, function in PDS Set Event Report request
-qmi_message_pds_set_event_report_input_set_external_xtra_data_request_reporting, function in PDS Set Event Report +qmi_message_pds_set_event_report_input_set_external_xtra_data_request_reporting, function in PDS Set Event Report request
-qmi_message_pds_set_event_report_input_set_gyro_data_streaming_ready_reporting, function in PDS Set Event Report +qmi_message_pds_set_event_report_input_set_gyro_data_streaming_ready_reporting, function in PDS Set Event Report request
-qmi_message_pds_set_event_report_input_set_heading_uncertainty_reporting, function in PDS Set Event Report +qmi_message_pds_set_event_report_input_set_heading_uncertainty_reporting, function in PDS Set Event Report request
-qmi_message_pds_set_event_report_input_set_nmea_debug_strings_reporting, function in PDS Set Event Report +qmi_message_pds_set_event_report_input_set_nmea_debug_strings_reporting, function in PDS Set Event Report request
-qmi_message_pds_set_event_report_input_set_nmea_position_reporting, function in PDS Set Event Report +qmi_message_pds_set_event_report_input_set_nmea_position_reporting, function in PDS Set Event Report request
-qmi_message_pds_set_event_report_input_set_parsed_position_reporting, function in PDS Set Event Report +qmi_message_pds_set_event_report_input_set_parsed_position_reporting, function in PDS Set Event Report request
-qmi_message_pds_set_event_report_input_set_pds_comm_event_reporting, function in PDS Set Event Report +qmi_message_pds_set_event_report_input_set_pds_comm_event_reporting, function in PDS Set Event Report request
-qmi_message_pds_set_event_report_input_set_position_reliability_indicator_reporting, function in PDS Set Event Report +qmi_message_pds_set_event_report_input_set_position_reliability_indicator_reporting, function in PDS Set Event Report request
-qmi_message_pds_set_event_report_input_set_satellite_information_reporting, function in PDS Set Event Report +qmi_message_pds_set_event_report_input_set_satellite_information_reporting, function in PDS Set Event Report request
-qmi_message_pds_set_event_report_input_set_sensor_data_usage_indicator_reporting, function in PDS Set Event Report +qmi_message_pds_set_event_report_input_set_sensor_data_usage_indicator_reporting, function in PDS Set Event Report request
-qmi_message_pds_set_event_report_input_set_supl_network_initiated_prompt_reporting, function in PDS Set Event Report +qmi_message_pds_set_event_report_input_set_supl_network_initiated_prompt_reporting, function in PDS Set Event Report request
-qmi_message_pds_set_event_report_input_set_time_source_information_reporting, function in PDS Set Event Report +qmi_message_pds_set_event_report_input_set_time_source_information_reporting, function in PDS Set Event Report request
-qmi_message_pds_set_event_report_input_set_time_sync_request_reporting, function in PDS Set Event Report +qmi_message_pds_set_event_report_input_set_time_sync_request_reporting, function in PDS Set Event Report request
-qmi_message_pds_set_event_report_input_set_umts_cp_network_initiated_prompt_reporting, function in PDS Set Event Report +qmi_message_pds_set_event_report_input_set_umts_cp_network_initiated_prompt_reporting, function in PDS Set Event Report request
-qmi_message_pds_set_event_report_input_set_vx_network_initiated_request_reporting, function in PDS Set Event Report +qmi_message_pds_set_event_report_input_set_vx_network_initiated_request_reporting, function in PDS Set Event Report request
-qmi_message_pds_set_event_report_input_unref, function in PDS Set Event Report +qmi_message_pds_set_event_report_input_unref, function in PDS Set Event Report request
-qmi_message_pds_set_event_report_output_get_result, function in PDS Set Event Report +qmi_message_pds_set_event_report_output_get_result, function in PDS Set Event Report request
-qmi_message_pds_set_event_report_output_ref, function in PDS Set Event Report +qmi_message_pds_set_event_report_output_ref, function in PDS Set Event Report request
-qmi_message_pds_set_event_report_output_unref, function in PDS Set Event Report +qmi_message_pds_set_event_report_output_unref, function in PDS Set Event Report request
-qmi_message_pds_set_gps_service_state_input_get_state, function in PDS Set GPS Service State +qmi_message_pds_set_gps_service_state_input_get_state, function in PDS Set GPS Service State request
-qmi_message_pds_set_gps_service_state_input_new, function in PDS Set GPS Service State +qmi_message_pds_set_gps_service_state_input_new, function in PDS Set GPS Service State request
-qmi_message_pds_set_gps_service_state_input_ref, function in PDS Set GPS Service State +qmi_message_pds_set_gps_service_state_input_ref, function in PDS Set GPS Service State request
-qmi_message_pds_set_gps_service_state_input_set_state, function in PDS Set GPS Service State +qmi_message_pds_set_gps_service_state_input_set_state, function in PDS Set GPS Service State request
-qmi_message_pds_set_gps_service_state_input_unref, function in PDS Set GPS Service State +qmi_message_pds_set_gps_service_state_input_unref, function in PDS Set GPS Service State request
-qmi_message_pds_set_gps_service_state_output_get_result, function in PDS Set GPS Service State +qmi_message_pds_set_gps_service_state_output_get_result, function in PDS Set GPS Service State request
-qmi_message_pds_set_gps_service_state_output_ref, function in PDS Set GPS Service State +qmi_message_pds_set_gps_service_state_output_ref, function in PDS Set GPS Service State request
-qmi_message_pds_set_gps_service_state_output_unref, function in PDS Set GPS Service State +qmi_message_pds_set_gps_service_state_output_unref, function in PDS Set GPS Service State request
@@ -8334,6 +9971,110 @@
+qmi_message_qos_get_flow_status_input_get_qos_id, function in QOS Get Flow Status request +
+
+
+qmi_message_qos_get_flow_status_input_new, function in QOS Get Flow Status request +
+
+
+qmi_message_qos_get_flow_status_input_ref, function in QOS Get Flow Status request +
+
+
+qmi_message_qos_get_flow_status_input_set_qos_id, function in QOS Get Flow Status request +
+
+
+qmi_message_qos_get_flow_status_input_unref, function in QOS Get Flow Status request +
+
+
+qmi_message_qos_get_flow_status_output_get_result, function in QOS Get Flow Status request +
+
+
+qmi_message_qos_get_flow_status_output_get_value, function in QOS Get Flow Status request +
+
+
+qmi_message_qos_get_flow_status_output_ref, function in QOS Get Flow Status request +
+
+
+qmi_message_qos_get_flow_status_output_unref, function in QOS Get Flow Status request +
+
+
+qmi_message_qos_get_network_status_output_get_qos_supported, function in QOS Get Network Status request +
+
+
+qmi_message_qos_get_network_status_output_get_result, function in QOS Get Network Status request +
+
+
+qmi_message_qos_get_network_status_output_ref, function in QOS Get Network Status request +
+
+
+qmi_message_qos_get_network_status_output_unref, function in QOS Get Network Status request +
+
+
+qmi_message_qos_reset_output_get_result, function in QOS Reset request +
+
+
+qmi_message_qos_reset_output_ref, function in QOS Reset request +
+
+
+qmi_message_qos_reset_output_unref, function in QOS Reset request +
+
+
+qmi_message_qos_swi_read_data_stats_input_get_apn_id, function in QOS Swi Read Data Stats request +
+
+
+qmi_message_qos_swi_read_data_stats_input_new, function in QOS Swi Read Data Stats request +
+
+
+qmi_message_qos_swi_read_data_stats_input_ref, function in QOS Swi Read Data Stats request +
+
+
+qmi_message_qos_swi_read_data_stats_input_set_apn_id, function in QOS Swi Read Data Stats request +
+
+
+qmi_message_qos_swi_read_data_stats_input_unref, function in QOS Swi Read Data Stats request +
+
+
+qmi_message_qos_swi_read_data_stats_output_get_apn, function in QOS Swi Read Data Stats request +
+
+
+qmi_message_qos_swi_read_data_stats_output_get_flow, function in QOS Swi Read Data Stats request +
+
+
+qmi_message_qos_swi_read_data_stats_output_get_result, function in QOS Swi Read Data Stats request +
+
+
+qmi_message_qos_swi_read_data_stats_output_ref, function in QOS Swi Read Data Stats request +
+
+
+qmi_message_qos_swi_read_data_stats_output_unref, function in QOS Swi Read Data Stats request +
+
+
qmi_message_ref, function in QmiMessage
@@ -8350,7 +10091,15 @@
-qmi_message_tlv_read_gfloat, function in QmiMessage +qmi_message_tlv_read_gdouble, function in QmiMessage +
+
+
+qmi_message_tlv_read_gfloat, function in Deprecated interface +
+
+
+qmi_message_tlv_read_gfloat_endian, function in QmiMessage
@@ -8450,567 +10199,623 @@
-qmi_message_uim_change_pin_input_get_info, function in UIM Change PIN +qmi_message_uim_change_pin_input_get_info, function in UIM Change PIN request +
+
+
+qmi_message_uim_change_pin_input_get_response_in_indication_token, function in UIM Change PIN request +
+
+
+qmi_message_uim_change_pin_input_get_session, function in UIM Change PIN request +
+
+
+qmi_message_uim_change_pin_input_get_session_information, function in Deprecated interface +
+
+
+qmi_message_uim_change_pin_input_new, function in UIM Change PIN request +
+
+
+qmi_message_uim_change_pin_input_ref, function in UIM Change PIN request +
+
+
+qmi_message_uim_change_pin_input_set_info, function in UIM Change PIN request +
+
+
+qmi_message_uim_change_pin_input_set_response_in_indication_token, function in UIM Change PIN request
-qmi_message_uim_change_pin_input_get_response_in_indication_token, function in UIM Change PIN +qmi_message_uim_change_pin_input_set_session, function in UIM Change PIN request
-qmi_message_uim_change_pin_input_get_session_information, function in UIM Change PIN +qmi_message_uim_change_pin_input_set_session_information, function in Deprecated interface
-qmi_message_uim_change_pin_input_new, function in UIM Change PIN +qmi_message_uim_change_pin_input_unref, function in UIM Change PIN request
-qmi_message_uim_change_pin_input_ref, function in UIM Change PIN +qmi_message_uim_change_pin_output_get_card_result, function in UIM Change PIN request
-qmi_message_uim_change_pin_input_set_info, function in UIM Change PIN +qmi_message_uim_change_pin_output_get_response_in_indication_token, function in UIM Change PIN request
-qmi_message_uim_change_pin_input_set_response_in_indication_token, function in UIM Change PIN +qmi_message_uim_change_pin_output_get_result, function in UIM Change PIN request
-qmi_message_uim_change_pin_input_set_session_information, function in UIM Change PIN +qmi_message_uim_change_pin_output_get_retries_remaining, function in UIM Change PIN request
-qmi_message_uim_change_pin_input_unref, function in UIM Change PIN +qmi_message_uim_change_pin_output_ref, function in UIM Change PIN request
-qmi_message_uim_change_pin_output_get_card_result, function in UIM Change PIN +qmi_message_uim_change_pin_output_unref, function in UIM Change PIN request
-qmi_message_uim_change_pin_output_get_response_in_indication_token, function in UIM Change PIN +qmi_message_uim_get_card_status_output_get_card_status, function in UIM Get Card Status request
-qmi_message_uim_change_pin_output_get_result, function in UIM Change PIN +qmi_message_uim_get_card_status_output_get_result, function in UIM Get Card Status request
-qmi_message_uim_change_pin_output_get_retries_remaining, function in UIM Change PIN +qmi_message_uim_get_card_status_output_ref, function in UIM Get Card Status request
-qmi_message_uim_change_pin_output_ref, function in UIM Change PIN +qmi_message_uim_get_card_status_output_unref, function in UIM Get Card Status request
-qmi_message_uim_change_pin_output_unref, function in UIM Change PIN +qmi_message_uim_get_file_attributes_input_get_file, function in UIM Get File Attributes request
-qmi_message_uim_get_card_status_output_get_card_status, function in UIM Get Card Status +qmi_message_uim_get_file_attributes_input_get_response_in_indication_token, function in UIM Get File Attributes request
-qmi_message_uim_get_card_status_output_get_result, function in UIM Get Card Status +qmi_message_uim_get_file_attributes_input_get_session, function in UIM Get File Attributes request
-qmi_message_uim_get_card_status_output_ref, function in UIM Get Card Status +qmi_message_uim_get_file_attributes_input_get_session_information, function in Deprecated interface
-qmi_message_uim_get_card_status_output_unref, function in UIM Get Card Status +qmi_message_uim_get_file_attributes_input_new, function in UIM Get File Attributes request
-qmi_message_uim_get_file_attributes_input_get_file, function in UIM Get File Attributes +qmi_message_uim_get_file_attributes_input_ref, function in UIM Get File Attributes request
-qmi_message_uim_get_file_attributes_input_get_response_in_indication_token, function in UIM Get File Attributes +qmi_message_uim_get_file_attributes_input_set_file, function in UIM Get File Attributes request
-qmi_message_uim_get_file_attributes_input_get_session_information, function in UIM Get File Attributes +qmi_message_uim_get_file_attributes_input_set_response_in_indication_token, function in UIM Get File Attributes request
-qmi_message_uim_get_file_attributes_input_new, function in UIM Get File Attributes +qmi_message_uim_get_file_attributes_input_set_session, function in UIM Get File Attributes request
-qmi_message_uim_get_file_attributes_input_ref, function in UIM Get File Attributes +qmi_message_uim_get_file_attributes_input_set_session_information, function in Deprecated interface
-qmi_message_uim_get_file_attributes_input_set_file, function in UIM Get File Attributes +qmi_message_uim_get_file_attributes_input_unref, function in UIM Get File Attributes request
-qmi_message_uim_get_file_attributes_input_set_response_in_indication_token, function in UIM Get File Attributes +qmi_message_uim_get_file_attributes_output_get_card_result, function in UIM Get File Attributes request
-qmi_message_uim_get_file_attributes_input_set_session_information, function in UIM Get File Attributes +qmi_message_uim_get_file_attributes_output_get_file_attributes, function in UIM Get File Attributes request
-qmi_message_uim_get_file_attributes_input_unref, function in UIM Get File Attributes +qmi_message_uim_get_file_attributes_output_get_response_in_indication_token, function in UIM Get File Attributes request
-qmi_message_uim_get_file_attributes_output_get_card_result, function in UIM Get File Attributes +qmi_message_uim_get_file_attributes_output_get_result, function in UIM Get File Attributes request
-qmi_message_uim_get_file_attributes_output_get_file_attributes, function in UIM Get File Attributes +qmi_message_uim_get_file_attributes_output_ref, function in UIM Get File Attributes request
-qmi_message_uim_get_file_attributes_output_get_response_in_indication_token, function in UIM Get File Attributes +qmi_message_uim_get_file_attributes_output_unref, function in UIM Get File Attributes request
-qmi_message_uim_get_file_attributes_output_get_result, function in UIM Get File Attributes +qmi_message_uim_get_supported_messages_output_get_list, function in UIM Get Supported Messages request
-qmi_message_uim_get_file_attributes_output_ref, function in UIM Get File Attributes +qmi_message_uim_get_supported_messages_output_get_result, function in UIM Get Supported Messages request
-qmi_message_uim_get_file_attributes_output_unref, function in UIM Get File Attributes +qmi_message_uim_get_supported_messages_output_ref, function in UIM Get Supported Messages request
-qmi_message_uim_get_supported_messages_output_get_list, function in UIM Get Supported Messages +qmi_message_uim_get_supported_messages_output_unref, function in UIM Get Supported Messages request
-qmi_message_uim_get_supported_messages_output_get_result, function in UIM Get Supported Messages +qmi_message_uim_power_off_sim_input_get_slot, function in UIM Power Off SIM request
-qmi_message_uim_get_supported_messages_output_ref, function in UIM Get Supported Messages +qmi_message_uim_power_off_sim_input_new, function in UIM Power Off SIM request
-qmi_message_uim_get_supported_messages_output_unref, function in UIM Get Supported Messages +qmi_message_uim_power_off_sim_input_ref, function in UIM Power Off SIM request
-qmi_message_uim_power_off_sim_input_get_slot, function in UIM Power Off SIM +qmi_message_uim_power_off_sim_input_set_slot, function in UIM Power Off SIM request
-qmi_message_uim_power_off_sim_input_new, function in UIM Power Off SIM +qmi_message_uim_power_off_sim_input_unref, function in UIM Power Off SIM request
-qmi_message_uim_power_off_sim_input_ref, function in UIM Power Off SIM +qmi_message_uim_power_off_sim_output_get_result, function in UIM Power Off SIM request
-qmi_message_uim_power_off_sim_input_set_slot, function in UIM Power Off SIM +qmi_message_uim_power_off_sim_output_ref, function in UIM Power Off SIM request
-qmi_message_uim_power_off_sim_input_unref, function in UIM Power Off SIM +qmi_message_uim_power_off_sim_output_unref, function in UIM Power Off SIM request
-qmi_message_uim_power_off_sim_output_get_result, function in UIM Power Off SIM +qmi_message_uim_power_on_sim_input_get_slot, function in UIM Power On SIM request
-qmi_message_uim_power_off_sim_output_ref, function in UIM Power Off SIM +qmi_message_uim_power_on_sim_input_new, function in UIM Power On SIM request
-qmi_message_uim_power_off_sim_output_unref, function in UIM Power Off SIM +qmi_message_uim_power_on_sim_input_ref, function in UIM Power On SIM request
-qmi_message_uim_power_on_sim_input_get_slot, function in UIM Power On SIM +qmi_message_uim_power_on_sim_input_set_slot, function in UIM Power On SIM request
-qmi_message_uim_power_on_sim_input_new, function in UIM Power On SIM +qmi_message_uim_power_on_sim_input_unref, function in UIM Power On SIM request
-qmi_message_uim_power_on_sim_input_ref, function in UIM Power On SIM +qmi_message_uim_power_on_sim_output_get_result, function in UIM Power On SIM request
-qmi_message_uim_power_on_sim_input_set_slot, function in UIM Power On SIM +qmi_message_uim_power_on_sim_output_ref, function in UIM Power On SIM request
-qmi_message_uim_power_on_sim_input_unref, function in UIM Power On SIM +qmi_message_uim_power_on_sim_output_unref, function in UIM Power On SIM request
-qmi_message_uim_power_on_sim_output_get_result, function in UIM Power On SIM +qmi_message_uim_read_record_input_get_file, function in UIM Read Record request
-qmi_message_uim_power_on_sim_output_ref, function in UIM Power On SIM +qmi_message_uim_read_record_input_get_last_record, function in UIM Read Record request
-qmi_message_uim_power_on_sim_output_unref, function in UIM Power On SIM +qmi_message_uim_read_record_input_get_record, function in UIM Read Record request
-qmi_message_uim_read_record_input_get_file, function in UIM Read Record +qmi_message_uim_read_record_input_get_response_in_indication_token, function in UIM Read Record request
-qmi_message_uim_read_record_input_get_last_record, function in UIM Read Record +qmi_message_uim_read_record_input_get_session, function in UIM Read Record request
-qmi_message_uim_read_record_input_get_record, function in UIM Read Record +qmi_message_uim_read_record_input_get_session_information, function in Deprecated interface
-qmi_message_uim_read_record_input_get_response_in_indication_token, function in UIM Read Record +qmi_message_uim_read_record_input_new, function in UIM Read Record request
-qmi_message_uim_read_record_input_get_session_information, function in UIM Read Record +qmi_message_uim_read_record_input_ref, function in UIM Read Record request
-qmi_message_uim_read_record_input_new, function in UIM Read Record +qmi_message_uim_read_record_input_set_file, function in UIM Read Record request
-qmi_message_uim_read_record_input_ref, function in UIM Read Record +qmi_message_uim_read_record_input_set_last_record, function in UIM Read Record request
-qmi_message_uim_read_record_input_set_file, function in UIM Read Record +qmi_message_uim_read_record_input_set_record, function in UIM Read Record request
-qmi_message_uim_read_record_input_set_last_record, function in UIM Read Record +qmi_message_uim_read_record_input_set_response_in_indication_token, function in UIM Read Record request
-qmi_message_uim_read_record_input_set_record, function in UIM Read Record +qmi_message_uim_read_record_input_set_session, function in UIM Read Record request
-qmi_message_uim_read_record_input_set_response_in_indication_token, function in UIM Read Record +qmi_message_uim_read_record_input_set_session_information, function in Deprecated interface
-qmi_message_uim_read_record_input_set_session_information, function in UIM Read Record +qmi_message_uim_read_record_input_unref, function in UIM Read Record request
-qmi_message_uim_read_record_input_unref, function in UIM Read Record +qmi_message_uim_read_record_output_get_additional_read_result, function in UIM Read Record request
-qmi_message_uim_read_record_output_get_additional_read_result, function in UIM Read Record +qmi_message_uim_read_record_output_get_card_result, function in UIM Read Record request
-qmi_message_uim_read_record_output_get_card_result, function in UIM Read Record +qmi_message_uim_read_record_output_get_read_result, function in UIM Read Record request
-qmi_message_uim_read_record_output_get_read_result, function in UIM Read Record +qmi_message_uim_read_record_output_get_response_in_indication_token, function in UIM Read Record request
-qmi_message_uim_read_record_output_get_response_in_indication_token, function in UIM Read Record +qmi_message_uim_read_record_output_get_result, function in UIM Read Record request
-qmi_message_uim_read_record_output_get_result, function in UIM Read Record +qmi_message_uim_read_record_output_ref, function in UIM Read Record request
-qmi_message_uim_read_record_output_ref, function in UIM Read Record +qmi_message_uim_read_record_output_unref, function in UIM Read Record request
-qmi_message_uim_read_record_output_unref, function in UIM Read Record +qmi_message_uim_read_transparent_input_get_encrypt_data, function in UIM Read Transparent request
-qmi_message_uim_read_transparent_input_get_encrypt_data, function in UIM Read Transparent +qmi_message_uim_read_transparent_input_get_file, function in UIM Read Transparent request
-qmi_message_uim_read_transparent_input_get_file, function in UIM Read Transparent +qmi_message_uim_read_transparent_input_get_read_information, function in UIM Read Transparent request
-qmi_message_uim_read_transparent_input_get_read_information, function in UIM Read Transparent +qmi_message_uim_read_transparent_input_get_response_in_indication_token, function in UIM Read Transparent request
-qmi_message_uim_read_transparent_input_get_response_in_indication_token, function in UIM Read Transparent +qmi_message_uim_read_transparent_input_get_session, function in UIM Read Transparent request
-qmi_message_uim_read_transparent_input_get_session_information, function in UIM Read Transparent +qmi_message_uim_read_transparent_input_get_session_information, function in Deprecated interface
-qmi_message_uim_read_transparent_input_new, function in UIM Read Transparent +qmi_message_uim_read_transparent_input_new, function in UIM Read Transparent request
-qmi_message_uim_read_transparent_input_ref, function in UIM Read Transparent +qmi_message_uim_read_transparent_input_ref, function in UIM Read Transparent request
-qmi_message_uim_read_transparent_input_set_encrypt_data, function in UIM Read Transparent +qmi_message_uim_read_transparent_input_set_encrypt_data, function in UIM Read Transparent request
-qmi_message_uim_read_transparent_input_set_file, function in UIM Read Transparent +qmi_message_uim_read_transparent_input_set_file, function in UIM Read Transparent request
-qmi_message_uim_read_transparent_input_set_read_information, function in UIM Read Transparent +qmi_message_uim_read_transparent_input_set_read_information, function in UIM Read Transparent request
-qmi_message_uim_read_transparent_input_set_response_in_indication_token, function in UIM Read Transparent +qmi_message_uim_read_transparent_input_set_response_in_indication_token, function in UIM Read Transparent request
-qmi_message_uim_read_transparent_input_set_session_information, function in UIM Read Transparent +qmi_message_uim_read_transparent_input_set_session, function in UIM Read Transparent request
-qmi_message_uim_read_transparent_input_unref, function in UIM Read Transparent +qmi_message_uim_read_transparent_input_set_session_information, function in Deprecated interface
-qmi_message_uim_read_transparent_output_get_card_result, function in UIM Read Transparent +qmi_message_uim_read_transparent_input_unref, function in UIM Read Transparent request
-qmi_message_uim_read_transparent_output_get_encrypted_data, function in UIM Read Transparent +qmi_message_uim_read_transparent_output_get_card_result, function in UIM Read Transparent request
-qmi_message_uim_read_transparent_output_get_read_result, function in UIM Read Transparent +qmi_message_uim_read_transparent_output_get_encrypted_data, function in UIM Read Transparent request
-qmi_message_uim_read_transparent_output_get_response_in_indication_token, function in UIM Read Transparent +qmi_message_uim_read_transparent_output_get_read_result, function in UIM Read Transparent request
-qmi_message_uim_read_transparent_output_get_result, function in UIM Read Transparent +qmi_message_uim_read_transparent_output_get_response_in_indication_token, function in UIM Read Transparent request
-qmi_message_uim_read_transparent_output_ref, function in UIM Read Transparent +qmi_message_uim_read_transparent_output_get_result, function in UIM Read Transparent request
-qmi_message_uim_read_transparent_output_unref, function in UIM Read Transparent +qmi_message_uim_read_transparent_output_ref, function in UIM Read Transparent request
-qmi_message_uim_reset_output_get_result, function in UIM Reset +qmi_message_uim_read_transparent_output_unref, function in UIM Read Transparent request
-qmi_message_uim_reset_output_ref, function in UIM Reset +qmi_message_uim_reset_output_get_result, function in UIM Reset request
-qmi_message_uim_reset_output_unref, function in UIM Reset +qmi_message_uim_reset_output_ref, function in UIM Reset request
-qmi_message_uim_set_pin_protection_input_get_info, function in UIM Set PIN Protection +qmi_message_uim_reset_output_unref, function in UIM Reset request
-qmi_message_uim_set_pin_protection_input_get_response_in_indication_token, function in UIM Set PIN Protection +qmi_message_uim_set_pin_protection_input_get_info, function in UIM Set PIN Protection request
-qmi_message_uim_set_pin_protection_input_get_session_information, function in UIM Set PIN Protection +qmi_message_uim_set_pin_protection_input_get_response_in_indication_token, function in UIM Set PIN Protection request
-qmi_message_uim_set_pin_protection_input_new, function in UIM Set PIN Protection +qmi_message_uim_set_pin_protection_input_get_session, function in UIM Set PIN Protection request
-qmi_message_uim_set_pin_protection_input_ref, function in UIM Set PIN Protection +qmi_message_uim_set_pin_protection_input_get_session_information, function in Deprecated interface
-qmi_message_uim_set_pin_protection_input_set_info, function in UIM Set PIN Protection +qmi_message_uim_set_pin_protection_input_new, function in UIM Set PIN Protection request
-qmi_message_uim_set_pin_protection_input_set_response_in_indication_token, function in UIM Set PIN Protection +qmi_message_uim_set_pin_protection_input_ref, function in UIM Set PIN Protection request
-qmi_message_uim_set_pin_protection_input_set_session_information, function in UIM Set PIN Protection +qmi_message_uim_set_pin_protection_input_set_info, function in UIM Set PIN Protection request
-qmi_message_uim_set_pin_protection_input_unref, function in UIM Set PIN Protection +qmi_message_uim_set_pin_protection_input_set_response_in_indication_token, function in UIM Set PIN Protection request
-qmi_message_uim_set_pin_protection_output_get_response_in_indication_token, function in UIM Set PIN Protection +qmi_message_uim_set_pin_protection_input_set_session, function in UIM Set PIN Protection request
-qmi_message_uim_set_pin_protection_output_get_result, function in UIM Set PIN Protection +qmi_message_uim_set_pin_protection_input_set_session_information, function in Deprecated interface
-qmi_message_uim_set_pin_protection_output_get_retries_remaining, function in UIM Set PIN Protection +qmi_message_uim_set_pin_protection_input_unref, function in UIM Set PIN Protection request
-qmi_message_uim_set_pin_protection_output_ref, function in UIM Set PIN Protection +qmi_message_uim_set_pin_protection_output_get_response_in_indication_token, function in UIM Set PIN Protection request
-qmi_message_uim_set_pin_protection_output_unref, function in UIM Set PIN Protection +qmi_message_uim_set_pin_protection_output_get_result, function in UIM Set PIN Protection request
-qmi_message_uim_unblock_pin_input_get_info, function in UIM Unblock PIN +qmi_message_uim_set_pin_protection_output_get_retries_remaining, function in UIM Set PIN Protection request
-qmi_message_uim_unblock_pin_input_get_response_in_indication_token, function in UIM Unblock PIN +qmi_message_uim_set_pin_protection_output_ref, function in UIM Set PIN Protection request
-qmi_message_uim_unblock_pin_input_get_session_information, function in UIM Unblock PIN +qmi_message_uim_set_pin_protection_output_unref, function in UIM Set PIN Protection request
-qmi_message_uim_unblock_pin_input_new, function in UIM Unblock PIN +qmi_message_uim_unblock_pin_input_get_info, function in UIM Unblock PIN request
-qmi_message_uim_unblock_pin_input_ref, function in UIM Unblock PIN +qmi_message_uim_unblock_pin_input_get_response_in_indication_token, function in UIM Unblock PIN request
-qmi_message_uim_unblock_pin_input_set_info, function in UIM Unblock PIN +qmi_message_uim_unblock_pin_input_get_session, function in UIM Unblock PIN request
-qmi_message_uim_unblock_pin_input_set_response_in_indication_token, function in UIM Unblock PIN +qmi_message_uim_unblock_pin_input_get_session_information, function in Deprecated interface
-qmi_message_uim_unblock_pin_input_set_session_information, function in UIM Unblock PIN +qmi_message_uim_unblock_pin_input_new, function in UIM Unblock PIN request
-qmi_message_uim_unblock_pin_input_unref, function in UIM Unblock PIN +qmi_message_uim_unblock_pin_input_ref, function in UIM Unblock PIN request
-qmi_message_uim_unblock_pin_output_get_card_result, function in UIM Unblock PIN +qmi_message_uim_unblock_pin_input_set_info, function in UIM Unblock PIN request
-qmi_message_uim_unblock_pin_output_get_response_in_indication_token, function in UIM Unblock PIN +qmi_message_uim_unblock_pin_input_set_response_in_indication_token, function in UIM Unblock PIN request
-qmi_message_uim_unblock_pin_output_get_result, function in UIM Unblock PIN +qmi_message_uim_unblock_pin_input_set_session, function in UIM Unblock PIN request
-qmi_message_uim_unblock_pin_output_get_retries_remaining, function in UIM Unblock PIN +qmi_message_uim_unblock_pin_input_set_session_information, function in Deprecated interface
-qmi_message_uim_unblock_pin_output_ref, function in UIM Unblock PIN +qmi_message_uim_unblock_pin_input_unref, function in UIM Unblock PIN request
-qmi_message_uim_unblock_pin_output_unref, function in UIM Unblock PIN +qmi_message_uim_unblock_pin_output_get_card_result, function in UIM Unblock PIN request
-qmi_message_uim_verify_pin_input_get_info, function in UIM Verify PIN +qmi_message_uim_unblock_pin_output_get_response_in_indication_token, function in UIM Unblock PIN request
-qmi_message_uim_verify_pin_input_get_response_in_indication_token, function in UIM Verify PIN +qmi_message_uim_unblock_pin_output_get_result, function in UIM Unblock PIN request
-qmi_message_uim_verify_pin_input_get_session_information, function in UIM Verify PIN +qmi_message_uim_unblock_pin_output_get_retries_remaining, function in UIM Unblock PIN request
-qmi_message_uim_verify_pin_input_new, function in UIM Verify PIN +qmi_message_uim_unblock_pin_output_ref, function in UIM Unblock PIN request
-qmi_message_uim_verify_pin_input_ref, function in UIM Verify PIN +qmi_message_uim_unblock_pin_output_unref, function in UIM Unblock PIN request
-qmi_message_uim_verify_pin_input_set_info, function in UIM Verify PIN +qmi_message_uim_verify_pin_input_get_info, function in UIM Verify PIN request
-qmi_message_uim_verify_pin_input_set_response_in_indication_token, function in UIM Verify PIN +qmi_message_uim_verify_pin_input_get_response_in_indication_token, function in UIM Verify PIN request
-qmi_message_uim_verify_pin_input_set_session_information, function in UIM Verify PIN +qmi_message_uim_verify_pin_input_get_session, function in UIM Verify PIN request
-qmi_message_uim_verify_pin_input_unref, function in UIM Verify PIN +qmi_message_uim_verify_pin_input_get_session_information, function in Deprecated interface
-qmi_message_uim_verify_pin_output_get_card_result, function in UIM Verify PIN +qmi_message_uim_verify_pin_input_new, function in UIM Verify PIN request
-qmi_message_uim_verify_pin_output_get_response_in_indication_token, function in UIM Verify PIN +qmi_message_uim_verify_pin_input_ref, function in UIM Verify PIN request
-qmi_message_uim_verify_pin_output_get_result, function in UIM Verify PIN +qmi_message_uim_verify_pin_input_set_info, function in UIM Verify PIN request
-qmi_message_uim_verify_pin_output_get_retries_remaining, function in UIM Verify PIN +qmi_message_uim_verify_pin_input_set_response_in_indication_token, function in UIM Verify PIN request
-qmi_message_uim_verify_pin_output_ref, function in UIM Verify PIN +qmi_message_uim_verify_pin_input_set_session, function in UIM Verify PIN request
-qmi_message_uim_verify_pin_output_unref, function in UIM Verify PIN +qmi_message_uim_verify_pin_input_set_session_information, function in Deprecated interface +
+
+
+qmi_message_uim_verify_pin_input_unref, function in UIM Verify PIN request +
+
+
+qmi_message_uim_verify_pin_output_get_card_result, function in UIM Verify PIN request +
+
+
+qmi_message_uim_verify_pin_output_get_response_in_indication_token, function in UIM Verify PIN request +
+
+
+qmi_message_uim_verify_pin_output_get_result, function in UIM Verify PIN request +
+
+
+qmi_message_uim_verify_pin_output_get_retries_remaining, function in UIM Verify PIN request +
+
+
+qmi_message_uim_verify_pin_output_ref, function in UIM Verify PIN request +
+
+
+qmi_message_uim_verify_pin_output_unref, function in UIM Verify PIN request
@@ -9022,2667 +10827,2931 @@
-qmi_message_voice_answer_call_input_get_call_id, function in VOICE Answer Call +qmi_message_voice_answer_call_input_get_call_id, function in VOICE Answer Call request +
+
+
+qmi_message_voice_answer_call_input_new, function in VOICE Answer Call request +
+
+
+qmi_message_voice_answer_call_input_ref, function in VOICE Answer Call request +
+
+
+qmi_message_voice_answer_call_input_set_call_id, function in VOICE Answer Call request +
+
+
+qmi_message_voice_answer_call_input_unref, function in VOICE Answer Call request +
+
+
+qmi_message_voice_answer_call_output_get_call_id, function in VOICE Answer Call request +
+
+
+qmi_message_voice_answer_call_output_get_result, function in VOICE Answer Call request +
+
+
+qmi_message_voice_answer_call_output_ref, function in VOICE Answer Call request +
+
+
+qmi_message_voice_answer_call_output_unref, function in VOICE Answer Call request +
+
+
+qmi_message_voice_dial_call_input_get_calling_number, function in VOICE Dial Call request +
+
+
+qmi_message_voice_dial_call_input_new, function in VOICE Dial Call request +
+
+
+qmi_message_voice_dial_call_input_ref, function in VOICE Dial Call request +
+
+
+qmi_message_voice_dial_call_input_set_calling_number, function in VOICE Dial Call request +
+
+
+qmi_message_voice_dial_call_input_unref, function in VOICE Dial Call request +
+
+
+qmi_message_voice_dial_call_output_get_call_id, function in VOICE Dial Call request +
+
+
+qmi_message_voice_dial_call_output_get_result, function in VOICE Dial Call request +
+
+
+qmi_message_voice_dial_call_output_ref, function in VOICE Dial Call request +
+
+
+qmi_message_voice_dial_call_output_unref, function in VOICE Dial Call request +
+
+
+qmi_message_voice_end_call_input_get_call_id, function in VOICE End Call request +
+
+
+qmi_message_voice_end_call_input_new, function in VOICE End Call request +
+
+
+qmi_message_voice_end_call_input_ref, function in VOICE End Call request +
+
+
+qmi_message_voice_end_call_input_set_call_id, function in VOICE End Call request +
+
+
+qmi_message_voice_end_call_input_unref, function in VOICE End Call request +
+
+
+qmi_message_voice_end_call_output_get_call_id, function in VOICE End Call request +
+
+
+qmi_message_voice_end_call_output_get_result, function in VOICE End Call request +
+
+
+qmi_message_voice_end_call_output_ref, function in VOICE End Call request +
+
+
+qmi_message_voice_end_call_output_unref, function in VOICE End Call request
-qmi_message_voice_answer_call_input_new, function in VOICE Answer Call +qmi_message_voice_get_config_input_get_air_timer, function in VOICE Get Config request
-qmi_message_voice_answer_call_input_ref, function in VOICE Answer Call +qmi_message_voice_get_config_input_get_amr_status, function in VOICE Get Config request
-qmi_message_voice_answer_call_input_set_call_id, function in VOICE Answer Call +qmi_message_voice_get_config_input_get_auto_answer, function in VOICE Get Config request
-qmi_message_voice_answer_call_input_unref, function in VOICE Answer Call +qmi_message_voice_get_config_input_get_nam_index, function in VOICE Get Config request
-qmi_message_voice_answer_call_output_get_call_id, function in VOICE Answer Call +qmi_message_voice_get_config_input_get_preferred_voice_privacy, function in VOICE Get Config request
-qmi_message_voice_answer_call_output_get_result, function in VOICE Answer Call +qmi_message_voice_get_config_input_get_preferred_voice_service_option, function in VOICE Get Config request
-qmi_message_voice_answer_call_output_ref, function in VOICE Answer Call +qmi_message_voice_get_config_input_get_roam_timer, function in VOICE Get Config request
-qmi_message_voice_answer_call_output_unref, function in VOICE Answer Call +qmi_message_voice_get_config_input_get_tty_mode, function in VOICE Get Config request
-qmi_message_voice_dial_call_input_get_calling_number, function in VOICE Dial Call +qmi_message_voice_get_config_input_get_voice_domain_preference, function in VOICE Get Config request
-qmi_message_voice_dial_call_input_new, function in VOICE Dial Call +qmi_message_voice_get_config_input_new, function in VOICE Get Config request
-qmi_message_voice_dial_call_input_ref, function in VOICE Dial Call +qmi_message_voice_get_config_input_ref, function in VOICE Get Config request
-qmi_message_voice_dial_call_input_set_calling_number, function in VOICE Dial Call +qmi_message_voice_get_config_input_set_air_timer, function in VOICE Get Config request
-qmi_message_voice_dial_call_input_unref, function in VOICE Dial Call +qmi_message_voice_get_config_input_set_amr_status, function in VOICE Get Config request
-qmi_message_voice_dial_call_output_get_call_id, function in VOICE Dial Call +qmi_message_voice_get_config_input_set_auto_answer, function in VOICE Get Config request
-qmi_message_voice_dial_call_output_get_result, function in VOICE Dial Call +qmi_message_voice_get_config_input_set_nam_index, function in VOICE Get Config request
-qmi_message_voice_dial_call_output_ref, function in VOICE Dial Call +qmi_message_voice_get_config_input_set_preferred_voice_privacy, function in VOICE Get Config request
-qmi_message_voice_dial_call_output_unref, function in VOICE Dial Call +qmi_message_voice_get_config_input_set_preferred_voice_service_option, function in VOICE Get Config request
-qmi_message_voice_end_call_input_get_call_id, function in VOICE End Call +qmi_message_voice_get_config_input_set_roam_timer, function in VOICE Get Config request
-qmi_message_voice_end_call_input_new, function in VOICE End Call +qmi_message_voice_get_config_input_set_tty_mode, function in VOICE Get Config request
-qmi_message_voice_end_call_input_ref, function in VOICE End Call +qmi_message_voice_get_config_input_set_voice_domain_preference, function in VOICE Get Config request
-qmi_message_voice_end_call_input_set_call_id, function in VOICE End Call +qmi_message_voice_get_config_input_unref, function in VOICE Get Config request
-qmi_message_voice_end_call_input_unref, function in VOICE End Call +qmi_message_voice_get_config_output_get_air_timer_count, function in VOICE Get Config request
-qmi_message_voice_end_call_output_get_call_id, function in VOICE End Call +qmi_message_voice_get_config_output_get_auto_answer_status, function in VOICE Get Config request
-qmi_message_voice_end_call_output_get_result, function in VOICE End Call +qmi_message_voice_get_config_output_get_current_amr_status, function in VOICE Get Config request
-qmi_message_voice_end_call_output_ref, function in VOICE End Call +qmi_message_voice_get_config_output_get_current_preferred_voice_so, function in VOICE Get Config request
-qmi_message_voice_end_call_output_unref, function in VOICE End Call +qmi_message_voice_get_config_output_get_current_tty_mode, function in VOICE Get Config request
-qmi_message_voice_get_config_input_get_air_timer, function in VOICE Get Config +qmi_message_voice_get_config_output_get_current_voice_domain_preference, function in VOICE Get Config request
-qmi_message_voice_get_config_input_get_amr_status, function in VOICE Get Config +qmi_message_voice_get_config_output_get_current_voice_privacy_preference, function in VOICE Get Config request
-qmi_message_voice_get_config_input_get_auto_answer, function in VOICE Get Config +qmi_message_voice_get_config_output_get_result, function in VOICE Get Config request
-qmi_message_voice_get_config_input_get_nam_index, function in VOICE Get Config +qmi_message_voice_get_config_output_get_roam_timer_count, function in VOICE Get Config request
-qmi_message_voice_get_config_input_get_preferred_voice_privacy, function in VOICE Get Config +qmi_message_voice_get_config_output_ref, function in VOICE Get Config request
-qmi_message_voice_get_config_input_get_preferred_voice_service_option, function in VOICE Get Config +qmi_message_voice_get_config_output_unref, function in VOICE Get Config request
-qmi_message_voice_get_config_input_get_roam_timer, function in VOICE Get Config +qmi_message_voice_get_supported_messages_output_get_list, function in VOICE Get Supported Messages request
-qmi_message_voice_get_config_input_get_tty_mode, function in VOICE Get Config +qmi_message_voice_get_supported_messages_output_get_result, function in VOICE Get Supported Messages request
-qmi_message_voice_get_config_input_get_voice_domain_preference, function in VOICE Get Config +qmi_message_voice_get_supported_messages_output_ref, function in VOICE Get Supported Messages request
-qmi_message_voice_get_config_input_new, function in VOICE Get Config +qmi_message_voice_get_supported_messages_output_unref, function in VOICE Get Supported Messages request
-qmi_message_voice_get_config_input_ref, function in VOICE Get Config +qmi_message_wda_get_data_format_output_get_downlink_data_aggregation_max_size, function in WDA Get Data Format request
-qmi_message_voice_get_config_input_set_air_timer, function in VOICE Get Config +qmi_message_wda_get_data_format_output_get_downlink_data_aggregation_protocol, function in WDA Get Data Format request
-qmi_message_voice_get_config_input_set_amr_status, function in VOICE Get Config +qmi_message_wda_get_data_format_output_get_link_layer_protocol, function in WDA Get Data Format request
-qmi_message_voice_get_config_input_set_auto_answer, function in VOICE Get Config +qmi_message_wda_get_data_format_output_get_ndp_signature, function in WDA Get Data Format request
-qmi_message_voice_get_config_input_set_nam_index, function in VOICE Get Config +qmi_message_wda_get_data_format_output_get_qos_format, function in WDA Get Data Format request
-qmi_message_voice_get_config_input_set_preferred_voice_privacy, function in VOICE Get Config +qmi_message_wda_get_data_format_output_get_result, function in WDA Get Data Format request
-qmi_message_voice_get_config_input_set_preferred_voice_service_option, function in VOICE Get Config +qmi_message_wda_get_data_format_output_get_uplink_data_aggregation_max_size, function in WDA Get Data Format request
-qmi_message_voice_get_config_input_set_roam_timer, function in VOICE Get Config +qmi_message_wda_get_data_format_output_get_uplink_data_aggregation_protocol, function in WDA Get Data Format request
-qmi_message_voice_get_config_input_set_tty_mode, function in VOICE Get Config +qmi_message_wda_get_data_format_output_ref, function in WDA Get Data Format request
-qmi_message_voice_get_config_input_set_voice_domain_preference, function in VOICE Get Config +qmi_message_wda_get_data_format_output_unref, function in WDA Get Data Format request
-qmi_message_voice_get_config_input_unref, function in VOICE Get Config +qmi_message_wda_get_supported_messages_output_get_list, function in WDA Get Supported Messages request
-qmi_message_voice_get_config_output_get_air_timer_count, function in VOICE Get Config +qmi_message_wda_get_supported_messages_output_get_result, function in WDA Get Supported Messages request
-qmi_message_voice_get_config_output_get_auto_answer_status, function in VOICE Get Config +qmi_message_wda_get_supported_messages_output_ref, function in WDA Get Supported Messages request
-qmi_message_voice_get_config_output_get_current_amr_status, function in VOICE Get Config +qmi_message_wda_get_supported_messages_output_unref, function in WDA Get Supported Messages request
-qmi_message_voice_get_config_output_get_current_preferred_voice_so, function in VOICE Get Config +qmi_message_wda_set_data_format_input_get_downlink_data_aggregation_max_datagrams, function in WDA Set Data Format request
-qmi_message_voice_get_config_output_get_current_tty_mode, function in VOICE Get Config +qmi_message_wda_set_data_format_input_get_downlink_data_aggregation_max_size, function in WDA Set Data Format request
-qmi_message_voice_get_config_output_get_current_voice_domain_preference, function in VOICE Get Config +qmi_message_wda_set_data_format_input_get_downlink_data_aggregation_protocol, function in WDA Set Data Format request
-qmi_message_voice_get_config_output_get_current_voice_privacy_preference, function in VOICE Get Config +qmi_message_wda_set_data_format_input_get_endpoint_info, function in WDA Set Data Format request
-qmi_message_voice_get_config_output_get_result, function in VOICE Get Config +qmi_message_wda_set_data_format_input_get_link_layer_protocol, function in WDA Set Data Format request
-qmi_message_voice_get_config_output_get_roam_timer_count, function in VOICE Get Config +qmi_message_wda_set_data_format_input_get_ndp_signature, function in WDA Set Data Format request
-qmi_message_voice_get_config_output_ref, function in VOICE Get Config +qmi_message_wda_set_data_format_input_get_qos_format, function in WDA Set Data Format request
-qmi_message_voice_get_config_output_unref, function in VOICE Get Config +qmi_message_wda_set_data_format_input_get_uplink_data_aggregation_protocol, function in WDA Set Data Format request
-qmi_message_voice_get_supported_messages_output_get_list, function in VOICE Get Supported Messages +qmi_message_wda_set_data_format_input_new, function in WDA Set Data Format request
-qmi_message_voice_get_supported_messages_output_get_result, function in VOICE Get Supported Messages +qmi_message_wda_set_data_format_input_ref, function in WDA Set Data Format request
-qmi_message_voice_get_supported_messages_output_ref, function in VOICE Get Supported Messages +qmi_message_wda_set_data_format_input_set_downlink_data_aggregation_max_datagrams, function in WDA Set Data Format request
-qmi_message_voice_get_supported_messages_output_unref, function in VOICE Get Supported Messages +qmi_message_wda_set_data_format_input_set_downlink_data_aggregation_max_size, function in WDA Set Data Format request
-qmi_message_wda_get_data_format_output_get_downlink_data_aggregation_max_size, function in WDA Get Data Format +qmi_message_wda_set_data_format_input_set_downlink_data_aggregation_protocol, function in WDA Set Data Format request
-qmi_message_wda_get_data_format_output_get_downlink_data_aggregation_protocol, function in WDA Get Data Format +qmi_message_wda_set_data_format_input_set_endpoint_info, function in WDA Set Data Format request
-qmi_message_wda_get_data_format_output_get_link_layer_protocol, function in WDA Get Data Format +qmi_message_wda_set_data_format_input_set_link_layer_protocol, function in WDA Set Data Format request
-qmi_message_wda_get_data_format_output_get_ndp_signature, function in WDA Get Data Format +qmi_message_wda_set_data_format_input_set_ndp_signature, function in WDA Set Data Format request
-qmi_message_wda_get_data_format_output_get_qos_format, function in WDA Get Data Format +qmi_message_wda_set_data_format_input_set_qos_format, function in WDA Set Data Format request
-qmi_message_wda_get_data_format_output_get_result, function in WDA Get Data Format +qmi_message_wda_set_data_format_input_set_uplink_data_aggregation_protocol, function in WDA Set Data Format request
-qmi_message_wda_get_data_format_output_get_uplink_data_aggregation_max_size, function in WDA Get Data Format +qmi_message_wda_set_data_format_input_unref, function in WDA Set Data Format request
-qmi_message_wda_get_data_format_output_get_uplink_data_aggregation_protocol, function in WDA Get Data Format +qmi_message_wda_set_data_format_output_get_downlink_data_aggregation_max_datagrams, function in WDA Set Data Format request
-qmi_message_wda_get_data_format_output_ref, function in WDA Get Data Format +qmi_message_wda_set_data_format_output_get_downlink_data_aggregation_max_size, function in WDA Set Data Format request
-qmi_message_wda_get_data_format_output_unref, function in WDA Get Data Format +qmi_message_wda_set_data_format_output_get_downlink_data_aggregation_protocol, function in WDA Set Data Format request
-qmi_message_wda_get_supported_messages_output_get_list, function in WDA Get Supported Messages +qmi_message_wda_set_data_format_output_get_link_layer_protocol, function in WDA Set Data Format request
-qmi_message_wda_get_supported_messages_output_get_result, function in WDA Get Supported Messages +qmi_message_wda_set_data_format_output_get_ndp_signature, function in WDA Set Data Format request
-qmi_message_wda_get_supported_messages_output_ref, function in WDA Get Supported Messages +qmi_message_wda_set_data_format_output_get_qos_format, function in WDA Set Data Format request
-qmi_message_wda_get_supported_messages_output_unref, function in WDA Get Supported Messages +qmi_message_wda_set_data_format_output_get_result, function in WDA Set Data Format request
-qmi_message_wda_set_data_format_input_get_downlink_data_aggregation_max_datagrams, function in WDA Set Data Format +qmi_message_wda_set_data_format_output_get_uplink_data_aggregation_protocol, function in WDA Set Data Format request
-qmi_message_wda_set_data_format_input_get_downlink_data_aggregation_max_size, function in WDA Set Data Format +qmi_message_wda_set_data_format_output_ref, function in WDA Set Data Format request
-qmi_message_wda_set_data_format_input_get_downlink_data_aggregation_protocol, function in WDA Set Data Format +qmi_message_wda_set_data_format_output_unref, function in WDA Set Data Format request
-qmi_message_wda_set_data_format_input_get_endpoint_info, function in WDA Set Data Format +qmi_message_wds_bind_mux_data_port_input_get_client_type, function in WDS Bind Mux Data Port request
-qmi_message_wda_set_data_format_input_get_link_layer_protocol, function in WDA Set Data Format +qmi_message_wds_bind_mux_data_port_input_get_endpoint_info, function in WDS Bind Mux Data Port request
-qmi_message_wda_set_data_format_input_get_ndp_signature, function in WDA Set Data Format +qmi_message_wds_bind_mux_data_port_input_get_mux_id, function in WDS Bind Mux Data Port request
-qmi_message_wda_set_data_format_input_get_qos_format, function in WDA Set Data Format +qmi_message_wds_bind_mux_data_port_input_new, function in WDS Bind Mux Data Port request
-qmi_message_wda_set_data_format_input_get_uplink_data_aggregation_protocol, function in WDA Set Data Format +qmi_message_wds_bind_mux_data_port_input_ref, function in WDS Bind Mux Data Port request
-qmi_message_wda_set_data_format_input_new, function in WDA Set Data Format +qmi_message_wds_bind_mux_data_port_input_set_client_type, function in WDS Bind Mux Data Port request
-qmi_message_wda_set_data_format_input_ref, function in WDA Set Data Format +qmi_message_wds_bind_mux_data_port_input_set_endpoint_info, function in WDS Bind Mux Data Port request
-qmi_message_wda_set_data_format_input_set_downlink_data_aggregation_max_datagrams, function in WDA Set Data Format +qmi_message_wds_bind_mux_data_port_input_set_mux_id, function in WDS Bind Mux Data Port request
-qmi_message_wda_set_data_format_input_set_downlink_data_aggregation_max_size, function in WDA Set Data Format +qmi_message_wds_bind_mux_data_port_input_unref, function in WDS Bind Mux Data Port request
-qmi_message_wda_set_data_format_input_set_downlink_data_aggregation_protocol, function in WDA Set Data Format +qmi_message_wds_bind_mux_data_port_output_get_result, function in WDS Bind Mux Data Port request
-qmi_message_wda_set_data_format_input_set_endpoint_info, function in WDA Set Data Format +qmi_message_wds_bind_mux_data_port_output_ref, function in WDS Bind Mux Data Port request
-qmi_message_wda_set_data_format_input_set_link_layer_protocol, function in WDA Set Data Format +qmi_message_wds_bind_mux_data_port_output_unref, function in WDS Bind Mux Data Port request
-qmi_message_wda_set_data_format_input_set_ndp_signature, function in WDA Set Data Format +qmi_message_wds_create_profile_input_get_apn_disabled_flag, function in WDS Create Profile request
-qmi_message_wda_set_data_format_input_set_qos_format, function in WDA Set Data Format +qmi_message_wds_create_profile_input_get_apn_name, function in WDS Create Profile request
-qmi_message_wda_set_data_format_input_set_uplink_data_aggregation_protocol, function in WDA Set Data Format +qmi_message_wds_create_profile_input_get_authentication, function in WDS Create Profile request
-qmi_message_wda_set_data_format_input_unref, function in WDA Set Data Format +qmi_message_wds_create_profile_input_get_gprs_minimum_qos, function in WDS Create Profile request
-qmi_message_wda_set_data_format_output_get_downlink_data_aggregation_max_datagrams, function in WDA Set Data Format +qmi_message_wds_create_profile_input_get_gprs_requested_qos, function in WDS Create Profile request
-qmi_message_wda_set_data_format_output_get_downlink_data_aggregation_max_size, function in WDA Set Data Format +qmi_message_wds_create_profile_input_get_imcn_flag, function in WDS Create Profile request
-qmi_message_wda_set_data_format_output_get_downlink_data_aggregation_protocol, function in WDA Set Data Format +qmi_message_wds_create_profile_input_get_ipv4_address_preference, function in WDS Create Profile request
-qmi_message_wda_set_data_format_output_get_link_layer_protocol, function in WDA Set Data Format +qmi_message_wds_create_profile_input_get_ipv6_address_preference, function in WDS Create Profile request
-qmi_message_wda_set_data_format_output_get_ndp_signature, function in WDA Set Data Format +qmi_message_wds_create_profile_input_get_ipv6_primary_dns_address_preference, function in WDS Create Profile request
-qmi_message_wda_set_data_format_output_get_qos_format, function in WDA Set Data Format +qmi_message_wds_create_profile_input_get_ipv6_secondary_dns_address_preference, function in WDS Create Profile request
-qmi_message_wda_set_data_format_output_get_result, function in WDA Set Data Format +qmi_message_wds_create_profile_input_get_lte_qos_parameters, function in WDS Create Profile request
-qmi_message_wda_set_data_format_output_get_uplink_data_aggregation_protocol, function in WDA Set Data Format +qmi_message_wds_create_profile_input_get_password, function in WDS Create Profile request
-qmi_message_wda_set_data_format_output_ref, function in WDA Set Data Format +qmi_message_wds_create_profile_input_get_pcscf_address_using_dhcp, function in WDS Create Profile request
-qmi_message_wda_set_data_format_output_unref, function in WDA Set Data Format +qmi_message_wds_create_profile_input_get_pcscf_address_using_pco, function in WDS Create Profile request
-qmi_message_wds_bind_mux_data_port_input_get_client_type, function in WDS Bind Mux Data Port +qmi_message_wds_create_profile_input_get_pdp_context_number, function in WDS Create Profile request
-qmi_message_wds_bind_mux_data_port_input_get_endpoint_info, function in WDS Bind Mux Data Port +qmi_message_wds_create_profile_input_get_pdp_context_primary_id, function in WDS Create Profile request
-qmi_message_wds_bind_mux_data_port_input_get_mux_id, function in WDS Bind Mux Data Port +qmi_message_wds_create_profile_input_get_pdp_context_secondary_flag, function in WDS Create Profile request
-qmi_message_wds_bind_mux_data_port_input_new, function in WDS Bind Mux Data Port +qmi_message_wds_create_profile_input_get_pdp_data_compression_type, function in WDS Create Profile request
-qmi_message_wds_bind_mux_data_port_input_ref, function in WDS Bind Mux Data Port +qmi_message_wds_create_profile_input_get_pdp_header_compression_type, function in WDS Create Profile request
-qmi_message_wds_bind_mux_data_port_input_set_client_type, function in WDS Bind Mux Data Port +qmi_message_wds_create_profile_input_get_pdp_type, function in WDS Create Profile request
-qmi_message_wds_bind_mux_data_port_input_set_endpoint_info, function in WDS Bind Mux Data Port +qmi_message_wds_create_profile_input_get_primary_ipv4_dns_address, function in WDS Create Profile request
-qmi_message_wds_bind_mux_data_port_input_set_mux_id, function in WDS Bind Mux Data Port +qmi_message_wds_create_profile_input_get_profile_name, function in WDS Create Profile request
-qmi_message_wds_bind_mux_data_port_input_unref, function in WDS Bind Mux Data Port +qmi_message_wds_create_profile_input_get_profile_type, function in WDS Create Profile request
-qmi_message_wds_bind_mux_data_port_output_get_result, function in WDS Bind Mux Data Port +qmi_message_wds_create_profile_input_get_roaming_disallowed_flag, function in WDS Create Profile request
-qmi_message_wds_bind_mux_data_port_output_ref, function in WDS Bind Mux Data Port +qmi_message_wds_create_profile_input_get_secondary_ipv4_dns_address, function in WDS Create Profile request
-qmi_message_wds_bind_mux_data_port_output_unref, function in WDS Bind Mux Data Port +qmi_message_wds_create_profile_input_get_umts_minimum_qos, function in WDS Create Profile request
-qmi_message_wds_create_profile_input_get_apn_name, function in WDS Create Profile +qmi_message_wds_create_profile_input_get_umts_minimum_qos_with_signaling_indication_flag, function in WDS Create Profile request
-qmi_message_wds_create_profile_input_get_authentication, function in WDS Create Profile +qmi_message_wds_create_profile_input_get_umts_requested_qos, function in WDS Create Profile request
-qmi_message_wds_create_profile_input_get_gprs_minimum_qos, function in WDS Create Profile +qmi_message_wds_create_profile_input_get_umts_requested_qos_with_signaling_indication_flag, function in WDS Create Profile request
-qmi_message_wds_create_profile_input_get_gprs_requested_qos, function in WDS Create Profile +qmi_message_wds_create_profile_input_get_username, function in WDS Create Profile request
-qmi_message_wds_create_profile_input_get_imcn_flag, function in WDS Create Profile +qmi_message_wds_create_profile_input_new, function in WDS Create Profile request
-qmi_message_wds_create_profile_input_get_ipv4_address_preference, function in WDS Create Profile +qmi_message_wds_create_profile_input_ref, function in WDS Create Profile request
-qmi_message_wds_create_profile_input_get_ipv6_address_preference, function in WDS Create Profile +qmi_message_wds_create_profile_input_set_apn_disabled_flag, function in WDS Create Profile request
-qmi_message_wds_create_profile_input_get_ipv6_primary_dns_address_preference, function in WDS Create Profile +qmi_message_wds_create_profile_input_set_apn_name, function in WDS Create Profile request
-qmi_message_wds_create_profile_input_get_ipv6_secondary_dns_address_preference, function in WDS Create Profile +qmi_message_wds_create_profile_input_set_authentication, function in WDS Create Profile request
-qmi_message_wds_create_profile_input_get_lte_qos_parameters, function in WDS Create Profile +qmi_message_wds_create_profile_input_set_gprs_minimum_qos, function in WDS Create Profile request
-qmi_message_wds_create_profile_input_get_password, function in WDS Create Profile +qmi_message_wds_create_profile_input_set_gprs_requested_qos, function in WDS Create Profile request
-qmi_message_wds_create_profile_input_get_pcscf_address_using_dhcp, function in WDS Create Profile +qmi_message_wds_create_profile_input_set_imcn_flag, function in WDS Create Profile request
-qmi_message_wds_create_profile_input_get_pcscf_address_using_pco, function in WDS Create Profile +qmi_message_wds_create_profile_input_set_ipv4_address_preference, function in WDS Create Profile request
-qmi_message_wds_create_profile_input_get_pdp_context_number, function in WDS Create Profile +qmi_message_wds_create_profile_input_set_ipv6_address_preference, function in WDS Create Profile request
-qmi_message_wds_create_profile_input_get_pdp_context_primary_id, function in WDS Create Profile +qmi_message_wds_create_profile_input_set_ipv6_primary_dns_address_preference, function in WDS Create Profile request
-qmi_message_wds_create_profile_input_get_pdp_context_secondary_flag, function in WDS Create Profile +qmi_message_wds_create_profile_input_set_ipv6_secondary_dns_address_preference, function in WDS Create Profile request
-qmi_message_wds_create_profile_input_get_pdp_data_compression_type, function in WDS Create Profile +qmi_message_wds_create_profile_input_set_lte_qos_parameters, function in WDS Create Profile request
-qmi_message_wds_create_profile_input_get_pdp_header_compression_type, function in WDS Create Profile +qmi_message_wds_create_profile_input_set_password, function in WDS Create Profile request
-qmi_message_wds_create_profile_input_get_pdp_type, function in WDS Create Profile +qmi_message_wds_create_profile_input_set_pcscf_address_using_dhcp, function in WDS Create Profile request
-qmi_message_wds_create_profile_input_get_primary_ipv4_dns_address, function in WDS Create Profile +qmi_message_wds_create_profile_input_set_pcscf_address_using_pco, function in WDS Create Profile request
-qmi_message_wds_create_profile_input_get_profile_name, function in WDS Create Profile +qmi_message_wds_create_profile_input_set_pdp_context_number, function in WDS Create Profile request
-qmi_message_wds_create_profile_input_get_profile_type, function in WDS Create Profile +qmi_message_wds_create_profile_input_set_pdp_context_primary_id, function in WDS Create Profile request
-qmi_message_wds_create_profile_input_get_secondary_ipv4_dns_address, function in WDS Create Profile +qmi_message_wds_create_profile_input_set_pdp_context_secondary_flag, function in WDS Create Profile request
-qmi_message_wds_create_profile_input_get_umts_minimum_qos, function in WDS Create Profile +qmi_message_wds_create_profile_input_set_pdp_data_compression_type, function in WDS Create Profile request
-qmi_message_wds_create_profile_input_get_umts_minimum_qos_with_signaling_indication_flag, function in WDS Create Profile +qmi_message_wds_create_profile_input_set_pdp_header_compression_type, function in WDS Create Profile request
-qmi_message_wds_create_profile_input_get_umts_requested_qos, function in WDS Create Profile +qmi_message_wds_create_profile_input_set_pdp_type, function in WDS Create Profile request
-qmi_message_wds_create_profile_input_get_umts_requested_qos_with_signaling_indication_flag, function in WDS Create Profile +qmi_message_wds_create_profile_input_set_primary_ipv4_dns_address, function in WDS Create Profile request
-qmi_message_wds_create_profile_input_get_username, function in WDS Create Profile +qmi_message_wds_create_profile_input_set_profile_name, function in WDS Create Profile request
-qmi_message_wds_create_profile_input_new, function in WDS Create Profile +qmi_message_wds_create_profile_input_set_profile_type, function in WDS Create Profile request
-qmi_message_wds_create_profile_input_ref, function in WDS Create Profile +qmi_message_wds_create_profile_input_set_roaming_disallowed_flag, function in WDS Create Profile request
-qmi_message_wds_create_profile_input_set_apn_name, function in WDS Create Profile +qmi_message_wds_create_profile_input_set_secondary_ipv4_dns_address, function in WDS Create Profile request
-qmi_message_wds_create_profile_input_set_authentication, function in WDS Create Profile +qmi_message_wds_create_profile_input_set_umts_minimum_qos, function in WDS Create Profile request
-qmi_message_wds_create_profile_input_set_gprs_minimum_qos, function in WDS Create Profile +qmi_message_wds_create_profile_input_set_umts_minimum_qos_with_signaling_indication_flag, function in WDS Create Profile request
-qmi_message_wds_create_profile_input_set_gprs_requested_qos, function in WDS Create Profile +qmi_message_wds_create_profile_input_set_umts_requested_qos, function in WDS Create Profile request
-qmi_message_wds_create_profile_input_set_imcn_flag, function in WDS Create Profile +qmi_message_wds_create_profile_input_set_umts_requested_qos_with_signaling_indication_flag, function in WDS Create Profile request
-qmi_message_wds_create_profile_input_set_ipv4_address_preference, function in WDS Create Profile +qmi_message_wds_create_profile_input_set_username, function in WDS Create Profile request
-qmi_message_wds_create_profile_input_set_ipv6_address_preference, function in WDS Create Profile +qmi_message_wds_create_profile_input_unref, function in WDS Create Profile request
-qmi_message_wds_create_profile_input_set_ipv6_primary_dns_address_preference, function in WDS Create Profile +qmi_message_wds_create_profile_output_get_extended_error_code, function in WDS Create Profile request
-qmi_message_wds_create_profile_input_set_ipv6_secondary_dns_address_preference, function in WDS Create Profile +qmi_message_wds_create_profile_output_get_profile_identifier, function in WDS Create Profile request
-qmi_message_wds_create_profile_input_set_lte_qos_parameters, function in WDS Create Profile +qmi_message_wds_create_profile_output_get_result, function in WDS Create Profile request
-qmi_message_wds_create_profile_input_set_password, function in WDS Create Profile +qmi_message_wds_create_profile_output_ref, function in WDS Create Profile request
-qmi_message_wds_create_profile_input_set_pcscf_address_using_dhcp, function in WDS Create Profile +qmi_message_wds_create_profile_output_unref, function in WDS Create Profile request
-qmi_message_wds_create_profile_input_set_pcscf_address_using_pco, function in WDS Create Profile +qmi_message_wds_delete_profile_input_get_profile_identifier, function in WDS Delete Profile request
-qmi_message_wds_create_profile_input_set_pdp_context_number, function in WDS Create Profile +qmi_message_wds_delete_profile_input_new, function in WDS Delete Profile request
-qmi_message_wds_create_profile_input_set_pdp_context_primary_id, function in WDS Create Profile +qmi_message_wds_delete_profile_input_ref, function in WDS Delete Profile request
-qmi_message_wds_create_profile_input_set_pdp_context_secondary_flag, function in WDS Create Profile +qmi_message_wds_delete_profile_input_set_profile_identifier, function in WDS Delete Profile request
-qmi_message_wds_create_profile_input_set_pdp_data_compression_type, function in WDS Create Profile +qmi_message_wds_delete_profile_input_unref, function in WDS Delete Profile request
-qmi_message_wds_create_profile_input_set_pdp_header_compression_type, function in WDS Create Profile +qmi_message_wds_delete_profile_output_get_extended_error_code, function in WDS Delete Profile request
-qmi_message_wds_create_profile_input_set_pdp_type, function in WDS Create Profile +qmi_message_wds_delete_profile_output_get_result, function in WDS Delete Profile request
-qmi_message_wds_create_profile_input_set_primary_ipv4_dns_address, function in WDS Create Profile +qmi_message_wds_delete_profile_output_ref, function in WDS Delete Profile request
-qmi_message_wds_create_profile_input_set_profile_name, function in WDS Create Profile +qmi_message_wds_delete_profile_output_unref, function in WDS Delete Profile request
-qmi_message_wds_create_profile_input_set_profile_type, function in WDS Create Profile +qmi_message_wds_get_autoconnect_settings_output_get_result, function in WDS Get Autoconnect Settings request
-qmi_message_wds_create_profile_input_set_secondary_ipv4_dns_address, function in WDS Create Profile +qmi_message_wds_get_autoconnect_settings_output_get_roaming, function in WDS Get Autoconnect Settings request
-qmi_message_wds_create_profile_input_set_umts_minimum_qos, function in WDS Create Profile +qmi_message_wds_get_autoconnect_settings_output_get_status, function in WDS Get Autoconnect Settings request
-qmi_message_wds_create_profile_input_set_umts_minimum_qos_with_signaling_indication_flag, function in WDS Create Profile +qmi_message_wds_get_autoconnect_settings_output_ref, function in WDS Get Autoconnect Settings request
-qmi_message_wds_create_profile_input_set_umts_requested_qos, function in WDS Create Profile +qmi_message_wds_get_autoconnect_settings_output_unref, function in WDS Get Autoconnect Settings request
-qmi_message_wds_create_profile_input_set_umts_requested_qos_with_signaling_indication_flag, function in WDS Create Profile +qmi_message_wds_get_channel_rates_output_get_channel_rates, function in WDS Get Channel Rates request
-qmi_message_wds_create_profile_input_set_username, function in WDS Create Profile +qmi_message_wds_get_channel_rates_output_get_result, function in WDS Get Channel Rates request
-qmi_message_wds_create_profile_input_unref, function in WDS Create Profile +qmi_message_wds_get_channel_rates_output_ref, function in WDS Get Channel Rates request
-qmi_message_wds_create_profile_output_get_extended_error_code, function in WDS Create Profile +qmi_message_wds_get_channel_rates_output_unref, function in WDS Get Channel Rates request
-qmi_message_wds_create_profile_output_get_profile_identifier, function in WDS Create Profile +qmi_message_wds_get_current_data_bearer_technology_output_get_current, function in WDS Get Current Data Bearer Technology request
-qmi_message_wds_create_profile_output_get_result, function in WDS Create Profile +qmi_message_wds_get_current_data_bearer_technology_output_get_last, function in WDS Get Current Data Bearer Technology request
-qmi_message_wds_create_profile_output_ref, function in WDS Create Profile +qmi_message_wds_get_current_data_bearer_technology_output_get_result, function in WDS Get Current Data Bearer Technology request
-qmi_message_wds_create_profile_output_unref, function in WDS Create Profile +qmi_message_wds_get_current_data_bearer_technology_output_ref, function in WDS Get Current Data Bearer Technology request
-qmi_message_wds_delete_profile_input_get_profile_identifier, function in WDS Delete Profile +qmi_message_wds_get_current_data_bearer_technology_output_unref, function in WDS Get Current Data Bearer Technology request
-qmi_message_wds_delete_profile_input_new, function in WDS Delete Profile +qmi_message_wds_get_current_settings_input_get_requested_settings, function in WDS Get Current Settings request
-qmi_message_wds_delete_profile_input_ref, function in WDS Delete Profile +qmi_message_wds_get_current_settings_input_new, function in WDS Get Current Settings request
-qmi_message_wds_delete_profile_input_set_profile_identifier, function in WDS Delete Profile +qmi_message_wds_get_current_settings_input_ref, function in WDS Get Current Settings request
-qmi_message_wds_delete_profile_input_unref, function in WDS Delete Profile +qmi_message_wds_get_current_settings_input_set_requested_settings, function in WDS Get Current Settings request
-qmi_message_wds_delete_profile_output_get_extended_error_code, function in WDS Delete Profile +qmi_message_wds_get_current_settings_input_unref, function in WDS Get Current Settings request
-qmi_message_wds_delete_profile_output_get_result, function in WDS Delete Profile +qmi_message_wds_get_current_settings_output_get_apn_name, function in WDS Get Current Settings request
-qmi_message_wds_delete_profile_output_ref, function in WDS Delete Profile +qmi_message_wds_get_current_settings_output_get_authentication, function in WDS Get Current Settings request
-qmi_message_wds_delete_profile_output_unref, function in WDS Delete Profile +qmi_message_wds_get_current_settings_output_get_domain_name_list, function in WDS Get Current Settings request
-qmi_message_wds_get_autoconnect_settings_output_get_result, function in WDS Get Autoconnect Settings +qmi_message_wds_get_current_settings_output_get_extended_technology_preference, function in WDS Get Current Settings request
-qmi_message_wds_get_autoconnect_settings_output_get_roaming, function in WDS Get Autoconnect Settings +qmi_message_wds_get_current_settings_output_get_gprs_granted_qos, function in WDS Get Current Settings request
-qmi_message_wds_get_autoconnect_settings_output_get_status, function in WDS Get Autoconnect Settings +qmi_message_wds_get_current_settings_output_get_imcn_flag, function in WDS Get Current Settings request
-qmi_message_wds_get_autoconnect_settings_output_ref, function in WDS Get Autoconnect Settings +qmi_message_wds_get_current_settings_output_get_ipv4_address, function in WDS Get Current Settings request
-qmi_message_wds_get_autoconnect_settings_output_unref, function in WDS Get Autoconnect Settings +qmi_message_wds_get_current_settings_output_get_ipv4_gateway_address, function in WDS Get Current Settings request
-qmi_message_wds_get_current_data_bearer_technology_output_get_current, function in WDS Get Current Data Bearer Technology +qmi_message_wds_get_current_settings_output_get_ipv4_gateway_subnet_mask, function in WDS Get Current Settings request
-qmi_message_wds_get_current_data_bearer_technology_output_get_last, function in WDS Get Current Data Bearer Technology +qmi_message_wds_get_current_settings_output_get_ipv6_address, function in WDS Get Current Settings request
-qmi_message_wds_get_current_data_bearer_technology_output_get_result, function in WDS Get Current Data Bearer Technology +qmi_message_wds_get_current_settings_output_get_ipv6_gateway_address, function in WDS Get Current Settings request
-qmi_message_wds_get_current_data_bearer_technology_output_ref, function in WDS Get Current Data Bearer Technology +qmi_message_wds_get_current_settings_output_get_ipv6_primary_dns_address, function in WDS Get Current Settings request
-qmi_message_wds_get_current_data_bearer_technology_output_unref, function in WDS Get Current Data Bearer Technology +qmi_message_wds_get_current_settings_output_get_ipv6_secondary_dns_address, function in WDS Get Current Settings request
-qmi_message_wds_get_current_settings_input_get_requested_settings, function in WDS Get Current Settings +qmi_message_wds_get_current_settings_output_get_ip_family, function in WDS Get Current Settings request
-qmi_message_wds_get_current_settings_input_new, function in WDS Get Current Settings +qmi_message_wds_get_current_settings_output_get_mtu, function in WDS Get Current Settings request
-qmi_message_wds_get_current_settings_input_ref, function in WDS Get Current Settings +qmi_message_wds_get_current_settings_output_get_pcscf_address_using_pco, function in WDS Get Current Settings request
-qmi_message_wds_get_current_settings_input_set_requested_settings, function in WDS Get Current Settings +qmi_message_wds_get_current_settings_output_get_pcscf_domain_name_list, function in WDS Get Current Settings request
-qmi_message_wds_get_current_settings_input_unref, function in WDS Get Current Settings +qmi_message_wds_get_current_settings_output_get_pcscf_server_address_list, function in WDS Get Current Settings request
-qmi_message_wds_get_current_settings_output_get_apn_name, function in WDS Get Current Settings +qmi_message_wds_get_current_settings_output_get_pdp_type, function in WDS Get Current Settings request
-qmi_message_wds_get_current_settings_output_get_authentication, function in WDS Get Current Settings +qmi_message_wds_get_current_settings_output_get_primary_ipv4_dns_address, function in WDS Get Current Settings request
-qmi_message_wds_get_current_settings_output_get_domain_name_list, function in WDS Get Current Settings +qmi_message_wds_get_current_settings_output_get_profile_id, function in WDS Get Current Settings request
-qmi_message_wds_get_current_settings_output_get_extended_technology_preference, function in WDS Get Current Settings +qmi_message_wds_get_current_settings_output_get_profile_name, function in WDS Get Current Settings request
-qmi_message_wds_get_current_settings_output_get_gprs_granted_qos, function in WDS Get Current Settings +qmi_message_wds_get_current_settings_output_get_result, function in WDS Get Current Settings request
-qmi_message_wds_get_current_settings_output_get_imcn_flag, function in WDS Get Current Settings +qmi_message_wds_get_current_settings_output_get_secondary_ipv4_dns_address, function in WDS Get Current Settings request
-qmi_message_wds_get_current_settings_output_get_ipv4_address, function in WDS Get Current Settings +qmi_message_wds_get_current_settings_output_get_umts_granted_qos, function in WDS Get Current Settings request
-qmi_message_wds_get_current_settings_output_get_ipv4_gateway_address, function in WDS Get Current Settings +qmi_message_wds_get_current_settings_output_get_username, function in WDS Get Current Settings request
-qmi_message_wds_get_current_settings_output_get_ipv4_gateway_subnet_mask, function in WDS Get Current Settings +qmi_message_wds_get_current_settings_output_ref, function in WDS Get Current Settings request
-qmi_message_wds_get_current_settings_output_get_ipv6_address, function in WDS Get Current Settings +qmi_message_wds_get_current_settings_output_unref, function in WDS Get Current Settings request
-qmi_message_wds_get_current_settings_output_get_ipv6_gateway_address, function in WDS Get Current Settings +qmi_message_wds_get_data_bearer_technology_output_get_current, function in WDS Get Data Bearer Technology request
-qmi_message_wds_get_current_settings_output_get_ipv6_primary_dns_address, function in WDS Get Current Settings +qmi_message_wds_get_data_bearer_technology_output_get_last, function in WDS Get Data Bearer Technology request
-qmi_message_wds_get_current_settings_output_get_ipv6_secondary_dns_address, function in WDS Get Current Settings +qmi_message_wds_get_data_bearer_technology_output_get_result, function in WDS Get Data Bearer Technology request
-qmi_message_wds_get_current_settings_output_get_ip_family, function in WDS Get Current Settings +qmi_message_wds_get_data_bearer_technology_output_ref, function in WDS Get Data Bearer Technology request
-qmi_message_wds_get_current_settings_output_get_mtu, function in WDS Get Current Settings +qmi_message_wds_get_data_bearer_technology_output_unref, function in WDS Get Data Bearer Technology request
-qmi_message_wds_get_current_settings_output_get_pcscf_address_using_pco, function in WDS Get Current Settings +qmi_message_wds_get_default_profile_num_input_get_profile_type, function in WDS Get Default Profile Num request
-qmi_message_wds_get_current_settings_output_get_pcscf_domain_name_list, function in WDS Get Current Settings +qmi_message_wds_get_default_profile_num_input_new, function in WDS Get Default Profile Num request
-qmi_message_wds_get_current_settings_output_get_pcscf_server_address_list, function in WDS Get Current Settings +qmi_message_wds_get_default_profile_num_input_ref, function in WDS Get Default Profile Num request
-qmi_message_wds_get_current_settings_output_get_pdp_type, function in WDS Get Current Settings +qmi_message_wds_get_default_profile_num_input_set_profile_type, function in WDS Get Default Profile Num request
-qmi_message_wds_get_current_settings_output_get_primary_ipv4_dns_address, function in WDS Get Current Settings +qmi_message_wds_get_default_profile_num_input_unref, function in WDS Get Default Profile Num request
-qmi_message_wds_get_current_settings_output_get_profile_id, function in WDS Get Current Settings +qmi_message_wds_get_default_profile_num_output_get_default_profile_number, function in WDS Get Default Profile Num request
-qmi_message_wds_get_current_settings_output_get_profile_name, function in WDS Get Current Settings +qmi_message_wds_get_default_profile_num_output_get_extended_error_code, function in WDS Get Default Profile Num request
-qmi_message_wds_get_current_settings_output_get_result, function in WDS Get Current Settings +qmi_message_wds_get_default_profile_num_output_get_result, function in WDS Get Default Profile Num request
-qmi_message_wds_get_current_settings_output_get_secondary_ipv4_dns_address, function in WDS Get Current Settings +qmi_message_wds_get_default_profile_num_output_ref, function in WDS Get Default Profile Num request
-qmi_message_wds_get_current_settings_output_get_umts_granted_qos, function in WDS Get Current Settings +qmi_message_wds_get_default_profile_num_output_unref, function in WDS Get Default Profile Num request
-qmi_message_wds_get_current_settings_output_get_username, function in WDS Get Current Settings +qmi_message_wds_get_default_settings_input_get_profile_type, function in WDS Get Default Settings request
-qmi_message_wds_get_current_settings_output_ref, function in WDS Get Current Settings +qmi_message_wds_get_default_settings_input_new, function in WDS Get Default Settings request
-qmi_message_wds_get_current_settings_output_unref, function in WDS Get Current Settings +qmi_message_wds_get_default_settings_input_ref, function in WDS Get Default Settings request
-qmi_message_wds_get_data_bearer_technology_output_get_current, function in WDS Get Data Bearer Technology +qmi_message_wds_get_default_settings_input_set_profile_type, function in WDS Get Default Settings request
-qmi_message_wds_get_data_bearer_technology_output_get_last, function in WDS Get Data Bearer Technology +qmi_message_wds_get_default_settings_input_unref, function in WDS Get Default Settings request
-qmi_message_wds_get_data_bearer_technology_output_get_result, function in WDS Get Data Bearer Technology +qmi_message_wds_get_default_settings_output_get_apn_name, function in WDS Get Default Settings request
-qmi_message_wds_get_data_bearer_technology_output_ref, function in WDS Get Data Bearer Technology +qmi_message_wds_get_default_settings_output_get_authentication, function in WDS Get Default Settings request
-qmi_message_wds_get_data_bearer_technology_output_unref, function in WDS Get Data Bearer Technology +qmi_message_wds_get_default_settings_output_get_extended_error_code, function in WDS Get Default Settings request
-qmi_message_wds_get_default_settings_input_get_profile_type, function in WDS Get Default Settings +qmi_message_wds_get_default_settings_output_get_gprs_minimum_qos, function in WDS Get Default Settings request
-qmi_message_wds_get_default_settings_input_new, function in WDS Get Default Settings +qmi_message_wds_get_default_settings_output_get_gprs_requested_qos, function in WDS Get Default Settings request
-qmi_message_wds_get_default_settings_input_ref, function in WDS Get Default Settings +qmi_message_wds_get_default_settings_output_get_imcn_flag, function in WDS Get Default Settings request
-qmi_message_wds_get_default_settings_input_set_profile_type, function in WDS Get Default Settings +qmi_message_wds_get_default_settings_output_get_ipv4_address_preference, function in WDS Get Default Settings request
-qmi_message_wds_get_default_settings_input_unref, function in WDS Get Default Settings +qmi_message_wds_get_default_settings_output_get_ipv6_address_preference, function in WDS Get Default Settings request
-qmi_message_wds_get_default_settings_output_get_apn_name, function in WDS Get Default Settings +qmi_message_wds_get_default_settings_output_get_ipv6_primary_dns_address_preference, function in WDS Get Default Settings request
-qmi_message_wds_get_default_settings_output_get_authentication, function in WDS Get Default Settings +qmi_message_wds_get_default_settings_output_get_ipv6_secondary_dns_address_preference, function in WDS Get Default Settings request
-qmi_message_wds_get_default_settings_output_get_extended_error_code, function in WDS Get Default Settings +qmi_message_wds_get_default_settings_output_get_lte_qos_parameters, function in WDS Get Default Settings request
-qmi_message_wds_get_default_settings_output_get_gprs_minimum_qos, function in WDS Get Default Settings +qmi_message_wds_get_default_settings_output_get_password, function in WDS Get Default Settings request
-qmi_message_wds_get_default_settings_output_get_gprs_requested_qos, function in WDS Get Default Settings +qmi_message_wds_get_default_settings_output_get_pcscf_address_using_dhcp, function in WDS Get Default Settings request
-qmi_message_wds_get_default_settings_output_get_imcn_flag, function in WDS Get Default Settings +qmi_message_wds_get_default_settings_output_get_pcscf_address_using_pco, function in WDS Get Default Settings request
-qmi_message_wds_get_default_settings_output_get_ipv4_address_preference, function in WDS Get Default Settings +qmi_message_wds_get_default_settings_output_get_pdp_context_number, function in WDS Get Default Settings request
-qmi_message_wds_get_default_settings_output_get_ipv6_address_preference, function in WDS Get Default Settings +qmi_message_wds_get_default_settings_output_get_pdp_context_primary_id, function in WDS Get Default Settings request
-qmi_message_wds_get_default_settings_output_get_ipv6_primary_dns_address_preference, function in WDS Get Default Settings +qmi_message_wds_get_default_settings_output_get_pdp_context_secondary_flag, function in WDS Get Default Settings request
-qmi_message_wds_get_default_settings_output_get_ipv6_secondary_dns_address_preference, function in WDS Get Default Settings +qmi_message_wds_get_default_settings_output_get_pdp_data_compression_type, function in WDS Get Default Settings request
-qmi_message_wds_get_default_settings_output_get_lte_qos_parameters, function in WDS Get Default Settings +qmi_message_wds_get_default_settings_output_get_pdp_header_compression_type, function in WDS Get Default Settings request
-qmi_message_wds_get_default_settings_output_get_password, function in WDS Get Default Settings +qmi_message_wds_get_default_settings_output_get_pdp_type, function in WDS Get Default Settings request
-qmi_message_wds_get_default_settings_output_get_pcscf_address_using_dhcp, function in WDS Get Default Settings +qmi_message_wds_get_default_settings_output_get_primary_ipv4_dns_address, function in WDS Get Default Settings request
-qmi_message_wds_get_default_settings_output_get_pcscf_address_using_pco, function in WDS Get Default Settings +qmi_message_wds_get_default_settings_output_get_profile_name, function in WDS Get Default Settings request
-qmi_message_wds_get_default_settings_output_get_pdp_context_number, function in WDS Get Default Settings +qmi_message_wds_get_default_settings_output_get_result, function in WDS Get Default Settings request
-qmi_message_wds_get_default_settings_output_get_pdp_context_primary_id, function in WDS Get Default Settings +qmi_message_wds_get_default_settings_output_get_secondary_ipv4_dns_address, function in WDS Get Default Settings request
-qmi_message_wds_get_default_settings_output_get_pdp_context_secondary_flag, function in WDS Get Default Settings +qmi_message_wds_get_default_settings_output_get_umts_minimum_qos, function in WDS Get Default Settings request
-qmi_message_wds_get_default_settings_output_get_pdp_data_compression_type, function in WDS Get Default Settings +qmi_message_wds_get_default_settings_output_get_umts_minimum_qos_with_signaling_indication_flag, function in WDS Get Default Settings request
-qmi_message_wds_get_default_settings_output_get_pdp_header_compression_type, function in WDS Get Default Settings +qmi_message_wds_get_default_settings_output_get_umts_requested_qos, function in WDS Get Default Settings request
-qmi_message_wds_get_default_settings_output_get_pdp_type, function in WDS Get Default Settings +qmi_message_wds_get_default_settings_output_get_umts_requested_qos_with_signaling_indication_flag, function in WDS Get Default Settings request
-qmi_message_wds_get_default_settings_output_get_primary_ipv4_dns_address, function in WDS Get Default Settings +qmi_message_wds_get_default_settings_output_get_username, function in WDS Get Default Settings request
-qmi_message_wds_get_default_settings_output_get_profile_name, function in WDS Get Default Settings +qmi_message_wds_get_default_settings_output_ref, function in WDS Get Default Settings request
-qmi_message_wds_get_default_settings_output_get_result, function in WDS Get Default Settings +qmi_message_wds_get_default_settings_output_unref, function in WDS Get Default Settings request
-qmi_message_wds_get_default_settings_output_get_secondary_ipv4_dns_address, function in WDS Get Default Settings +qmi_message_wds_get_dormancy_status_output_get_dormancy_status, function in WDS Get Dormancy Status request
-qmi_message_wds_get_default_settings_output_get_umts_minimum_qos, function in WDS Get Default Settings +qmi_message_wds_get_dormancy_status_output_get_result, function in WDS Get Dormancy Status request
-qmi_message_wds_get_default_settings_output_get_umts_minimum_qos_with_signaling_indication_flag, function in WDS Get Default Settings +qmi_message_wds_get_dormancy_status_output_ref, function in WDS Get Dormancy Status request
-qmi_message_wds_get_default_settings_output_get_umts_requested_qos, function in WDS Get Default Settings +qmi_message_wds_get_dormancy_status_output_unref, function in WDS Get Dormancy Status request
-qmi_message_wds_get_default_settings_output_get_umts_requested_qos_with_signaling_indication_flag, function in WDS Get Default Settings +qmi_message_wds_get_packet_service_status_output_get_connection_status, function in WDS Get Packet Service Status request
-qmi_message_wds_get_default_settings_output_get_username, function in WDS Get Default Settings +qmi_message_wds_get_packet_service_status_output_get_result, function in WDS Get Packet Service Status request
-qmi_message_wds_get_default_settings_output_ref, function in WDS Get Default Settings +qmi_message_wds_get_packet_service_status_output_ref, function in WDS Get Packet Service Status request
-qmi_message_wds_get_default_settings_output_unref, function in WDS Get Default Settings +qmi_message_wds_get_packet_service_status_output_unref, function in WDS Get Packet Service Status request
-qmi_message_wds_get_dormancy_status_output_get_dormancy_status, function in WDS Get Dormancy Status +qmi_message_wds_get_packet_statistics_input_get_mask, function in WDS Get Packet Statistics request
-qmi_message_wds_get_dormancy_status_output_get_result, function in WDS Get Dormancy Status +qmi_message_wds_get_packet_statistics_input_new, function in WDS Get Packet Statistics request
-qmi_message_wds_get_dormancy_status_output_ref, function in WDS Get Dormancy Status +qmi_message_wds_get_packet_statistics_input_ref, function in WDS Get Packet Statistics request
-qmi_message_wds_get_dormancy_status_output_unref, function in WDS Get Dormancy Status +qmi_message_wds_get_packet_statistics_input_set_mask, function in WDS Get Packet Statistics request
-qmi_message_wds_get_packet_service_status_output_get_connection_status, function in WDS Get Packet Service Status +qmi_message_wds_get_packet_statistics_input_unref, function in WDS Get Packet Statistics request
-qmi_message_wds_get_packet_service_status_output_get_result, function in WDS Get Packet Service Status +qmi_message_wds_get_packet_statistics_output_get_last_call_rx_bytes_ok, function in WDS Get Packet Statistics request
-qmi_message_wds_get_packet_service_status_output_ref, function in WDS Get Packet Service Status +qmi_message_wds_get_packet_statistics_output_get_last_call_tx_bytes_ok, function in WDS Get Packet Statistics request
-qmi_message_wds_get_packet_service_status_output_unref, function in WDS Get Packet Service Status +qmi_message_wds_get_packet_statistics_output_get_result, function in WDS Get Packet Statistics request
-qmi_message_wds_get_packet_statistics_input_get_mask, function in WDS Get Packet Statistics +qmi_message_wds_get_packet_statistics_output_get_rx_bytes_ok, function in WDS Get Packet Statistics request
-qmi_message_wds_get_packet_statistics_input_new, function in WDS Get Packet Statistics +qmi_message_wds_get_packet_statistics_output_get_rx_overflows, function in WDS Get Packet Statistics request
-qmi_message_wds_get_packet_statistics_input_ref, function in WDS Get Packet Statistics +qmi_message_wds_get_packet_statistics_output_get_rx_packets_dropped, function in WDS Get Packet Statistics request
-qmi_message_wds_get_packet_statistics_input_set_mask, function in WDS Get Packet Statistics +qmi_message_wds_get_packet_statistics_output_get_rx_packets_error, function in WDS Get Packet Statistics request
-qmi_message_wds_get_packet_statistics_input_unref, function in WDS Get Packet Statistics +qmi_message_wds_get_packet_statistics_output_get_rx_packets_ok, function in WDS Get Packet Statistics request
-qmi_message_wds_get_packet_statistics_output_get_last_call_rx_bytes_ok, function in WDS Get Packet Statistics +qmi_message_wds_get_packet_statistics_output_get_tx_bytes_ok, function in WDS Get Packet Statistics request
-qmi_message_wds_get_packet_statistics_output_get_last_call_tx_bytes_ok, function in WDS Get Packet Statistics +qmi_message_wds_get_packet_statistics_output_get_tx_overflows, function in WDS Get Packet Statistics request
-qmi_message_wds_get_packet_statistics_output_get_result, function in WDS Get Packet Statistics +qmi_message_wds_get_packet_statistics_output_get_tx_packets_dropped, function in WDS Get Packet Statistics request
-qmi_message_wds_get_packet_statistics_output_get_rx_bytes_ok, function in WDS Get Packet Statistics +qmi_message_wds_get_packet_statistics_output_get_tx_packets_error, function in WDS Get Packet Statistics request
-qmi_message_wds_get_packet_statistics_output_get_rx_overflows, function in WDS Get Packet Statistics +qmi_message_wds_get_packet_statistics_output_get_tx_packets_ok, function in WDS Get Packet Statistics request
-qmi_message_wds_get_packet_statistics_output_get_rx_packets_dropped, function in WDS Get Packet Statistics +qmi_message_wds_get_packet_statistics_output_ref, function in WDS Get Packet Statistics request
-qmi_message_wds_get_packet_statistics_output_get_rx_packets_error, function in WDS Get Packet Statistics +qmi_message_wds_get_packet_statistics_output_unref, function in WDS Get Packet Statistics request
-qmi_message_wds_get_packet_statistics_output_get_rx_packets_ok, function in WDS Get Packet Statistics +qmi_message_wds_get_pdn_throttle_info_input_get_network_type, function in WDS Get PDN Throttle Info request
-qmi_message_wds_get_packet_statistics_output_get_tx_bytes_ok, function in WDS Get Packet Statistics +qmi_message_wds_get_pdn_throttle_info_input_new, function in WDS Get PDN Throttle Info request
-qmi_message_wds_get_packet_statistics_output_get_tx_overflows, function in WDS Get Packet Statistics +qmi_message_wds_get_pdn_throttle_info_input_ref, function in WDS Get PDN Throttle Info request
-qmi_message_wds_get_packet_statistics_output_get_tx_packets_dropped, function in WDS Get Packet Statistics +qmi_message_wds_get_pdn_throttle_info_input_set_network_type, function in WDS Get PDN Throttle Info request
-qmi_message_wds_get_packet_statistics_output_get_tx_packets_error, function in WDS Get Packet Statistics +qmi_message_wds_get_pdn_throttle_info_input_unref, function in WDS Get PDN Throttle Info request
-qmi_message_wds_get_packet_statistics_output_get_tx_packets_ok, function in WDS Get Packet Statistics +qmi_message_wds_get_pdn_throttle_info_output_get_info, function in WDS Get PDN Throttle Info request
-qmi_message_wds_get_packet_statistics_output_ref, function in WDS Get Packet Statistics +qmi_message_wds_get_pdn_throttle_info_output_get_result, function in WDS Get PDN Throttle Info request
-qmi_message_wds_get_packet_statistics_output_unref, function in WDS Get Packet Statistics +qmi_message_wds_get_pdn_throttle_info_output_ref, function in WDS Get PDN Throttle Info request
-qmi_message_wds_get_pdn_throttle_info_input_get_network_type, function in WDS Get PDN Throttle Info +qmi_message_wds_get_pdn_throttle_info_output_unref, function in WDS Get PDN Throttle Info request
-qmi_message_wds_get_pdn_throttle_info_input_new, function in WDS Get PDN Throttle Info +qmi_message_wds_get_profile_list_input_get_profile_type, function in WDS Get Profile List request
-qmi_message_wds_get_pdn_throttle_info_input_ref, function in WDS Get PDN Throttle Info +qmi_message_wds_get_profile_list_input_new, function in WDS Get Profile List request
-qmi_message_wds_get_pdn_throttle_info_input_set_network_type, function in WDS Get PDN Throttle Info +qmi_message_wds_get_profile_list_input_ref, function in WDS Get Profile List request
-qmi_message_wds_get_pdn_throttle_info_input_unref, function in WDS Get PDN Throttle Info +qmi_message_wds_get_profile_list_input_set_profile_type, function in WDS Get Profile List request
-qmi_message_wds_get_pdn_throttle_info_output_get_info, function in WDS Get PDN Throttle Info +qmi_message_wds_get_profile_list_input_unref, function in WDS Get Profile List request
-qmi_message_wds_get_pdn_throttle_info_output_get_result, function in WDS Get PDN Throttle Info +qmi_message_wds_get_profile_list_output_get_extended_error_code, function in WDS Get Profile List request
-qmi_message_wds_get_pdn_throttle_info_output_ref, function in WDS Get PDN Throttle Info +qmi_message_wds_get_profile_list_output_get_profile_list, function in WDS Get Profile List request
-qmi_message_wds_get_pdn_throttle_info_output_unref, function in WDS Get PDN Throttle Info +qmi_message_wds_get_profile_list_output_get_result, function in WDS Get Profile List request
-qmi_message_wds_get_profile_list_input_get_profile_type, function in WDS Get Profile List +qmi_message_wds_get_profile_list_output_ref, function in WDS Get Profile List request
-qmi_message_wds_get_profile_list_input_new, function in WDS Get Profile List +qmi_message_wds_get_profile_list_output_unref, function in WDS Get Profile List request
-qmi_message_wds_get_profile_list_input_ref, function in WDS Get Profile List +qmi_message_wds_get_profile_settings_input_get_profile_id, function in WDS Get Profile Settings request
-qmi_message_wds_get_profile_list_input_set_profile_type, function in WDS Get Profile List +qmi_message_wds_get_profile_settings_input_new, function in WDS Get Profile Settings request
-qmi_message_wds_get_profile_list_input_unref, function in WDS Get Profile List +qmi_message_wds_get_profile_settings_input_ref, function in WDS Get Profile Settings request
-qmi_message_wds_get_profile_list_output_get_extended_error_code, function in WDS Get Profile List +qmi_message_wds_get_profile_settings_input_set_profile_id, function in WDS Get Profile Settings request
-qmi_message_wds_get_profile_list_output_get_profile_list, function in WDS Get Profile List +qmi_message_wds_get_profile_settings_input_unref, function in WDS Get Profile Settings request
-qmi_message_wds_get_profile_list_output_get_result, function in WDS Get Profile List +qmi_message_wds_get_profile_settings_output_get_apn_disabled_flag, function in WDS Get Profile Settings request
-qmi_message_wds_get_profile_list_output_ref, function in WDS Get Profile List +qmi_message_wds_get_profile_settings_output_get_apn_name, function in WDS Get Profile Settings request
-qmi_message_wds_get_profile_list_output_unref, function in WDS Get Profile List +qmi_message_wds_get_profile_settings_output_get_authentication, function in WDS Get Profile Settings request
-qmi_message_wds_get_profile_settings_input_get_profile_id, function in WDS Get Profile Settings +qmi_message_wds_get_profile_settings_output_get_extended_error_code, function in WDS Get Profile Settings request
-qmi_message_wds_get_profile_settings_input_new, function in WDS Get Profile Settings +qmi_message_wds_get_profile_settings_output_get_gprs_minimum_qos, function in WDS Get Profile Settings request
-qmi_message_wds_get_profile_settings_input_ref, function in WDS Get Profile Settings +qmi_message_wds_get_profile_settings_output_get_gprs_requested_qos, function in WDS Get Profile Settings request
-qmi_message_wds_get_profile_settings_input_set_profile_id, function in WDS Get Profile Settings +qmi_message_wds_get_profile_settings_output_get_imcn_flag, function in WDS Get Profile Settings request
-qmi_message_wds_get_profile_settings_input_unref, function in WDS Get Profile Settings +qmi_message_wds_get_profile_settings_output_get_ipv4_address_preference, function in WDS Get Profile Settings request
-qmi_message_wds_get_profile_settings_output_get_apn_name, function in WDS Get Profile Settings +qmi_message_wds_get_profile_settings_output_get_ipv6_address_preference, function in WDS Get Profile Settings request
-qmi_message_wds_get_profile_settings_output_get_authentication, function in WDS Get Profile Settings +qmi_message_wds_get_profile_settings_output_get_ipv6_primary_dns_address_preference, function in WDS Get Profile Settings request
-qmi_message_wds_get_profile_settings_output_get_extended_error_code, function in WDS Get Profile Settings +qmi_message_wds_get_profile_settings_output_get_ipv6_secondary_dns_address_preference, function in WDS Get Profile Settings request
-qmi_message_wds_get_profile_settings_output_get_gprs_minimum_qos, function in WDS Get Profile Settings +qmi_message_wds_get_profile_settings_output_get_lte_qos_parameters, function in WDS Get Profile Settings request
-qmi_message_wds_get_profile_settings_output_get_gprs_requested_qos, function in WDS Get Profile Settings +qmi_message_wds_get_profile_settings_output_get_password, function in WDS Get Profile Settings request
-qmi_message_wds_get_profile_settings_output_get_imcn_flag, function in WDS Get Profile Settings +qmi_message_wds_get_profile_settings_output_get_pcscf_address_using_dhcp, function in WDS Get Profile Settings request
-qmi_message_wds_get_profile_settings_output_get_ipv4_address_preference, function in WDS Get Profile Settings +qmi_message_wds_get_profile_settings_output_get_pcscf_address_using_pco, function in WDS Get Profile Settings request
-qmi_message_wds_get_profile_settings_output_get_ipv6_address_preference, function in WDS Get Profile Settings +qmi_message_wds_get_profile_settings_output_get_pdp_context_number, function in WDS Get Profile Settings request
-qmi_message_wds_get_profile_settings_output_get_ipv6_primary_dns_address_preference, function in WDS Get Profile Settings +qmi_message_wds_get_profile_settings_output_get_pdp_context_primary_id, function in WDS Get Profile Settings request
-qmi_message_wds_get_profile_settings_output_get_ipv6_secondary_dns_address_preference, function in WDS Get Profile Settings +qmi_message_wds_get_profile_settings_output_get_pdp_context_secondary_flag, function in WDS Get Profile Settings request
-qmi_message_wds_get_profile_settings_output_get_lte_qos_parameters, function in WDS Get Profile Settings +qmi_message_wds_get_profile_settings_output_get_pdp_data_compression_type, function in WDS Get Profile Settings request
-qmi_message_wds_get_profile_settings_output_get_password, function in WDS Get Profile Settings +qmi_message_wds_get_profile_settings_output_get_pdp_header_compression_type, function in WDS Get Profile Settings request
-qmi_message_wds_get_profile_settings_output_get_pcscf_address_using_dhcp, function in WDS Get Profile Settings +qmi_message_wds_get_profile_settings_output_get_pdp_type, function in WDS Get Profile Settings request
-qmi_message_wds_get_profile_settings_output_get_pcscf_address_using_pco, function in WDS Get Profile Settings +qmi_message_wds_get_profile_settings_output_get_primary_ipv4_dns_address, function in WDS Get Profile Settings request
-qmi_message_wds_get_profile_settings_output_get_pdp_context_number, function in WDS Get Profile Settings +qmi_message_wds_get_profile_settings_output_get_profile_name, function in WDS Get Profile Settings request
-qmi_message_wds_get_profile_settings_output_get_pdp_context_primary_id, function in WDS Get Profile Settings +qmi_message_wds_get_profile_settings_output_get_result, function in WDS Get Profile Settings request
-qmi_message_wds_get_profile_settings_output_get_pdp_context_secondary_flag, function in WDS Get Profile Settings +qmi_message_wds_get_profile_settings_output_get_roaming_disallowed_flag, function in WDS Get Profile Settings request
-qmi_message_wds_get_profile_settings_output_get_pdp_data_compression_type, function in WDS Get Profile Settings +qmi_message_wds_get_profile_settings_output_get_secondary_ipv4_dns_address, function in WDS Get Profile Settings request
-qmi_message_wds_get_profile_settings_output_get_pdp_header_compression_type, function in WDS Get Profile Settings +qmi_message_wds_get_profile_settings_output_get_umts_minimum_qos, function in WDS Get Profile Settings request
-qmi_message_wds_get_profile_settings_output_get_pdp_type, function in WDS Get Profile Settings +qmi_message_wds_get_profile_settings_output_get_umts_minimum_qos_with_signaling_indication_flag, function in WDS Get Profile Settings request
-qmi_message_wds_get_profile_settings_output_get_primary_ipv4_dns_address, function in WDS Get Profile Settings +qmi_message_wds_get_profile_settings_output_get_umts_requested_qos, function in WDS Get Profile Settings request
-qmi_message_wds_get_profile_settings_output_get_profile_name, function in WDS Get Profile Settings +qmi_message_wds_get_profile_settings_output_get_umts_requested_qos_with_signaling_indication_flag, function in WDS Get Profile Settings request
-qmi_message_wds_get_profile_settings_output_get_result, function in WDS Get Profile Settings +qmi_message_wds_get_profile_settings_output_get_username, function in WDS Get Profile Settings request
-qmi_message_wds_get_profile_settings_output_get_secondary_ipv4_dns_address, function in WDS Get Profile Settings +qmi_message_wds_get_profile_settings_output_ref, function in WDS Get Profile Settings request
-qmi_message_wds_get_profile_settings_output_get_umts_minimum_qos, function in WDS Get Profile Settings +qmi_message_wds_get_profile_settings_output_unref, function in WDS Get Profile Settings request
-qmi_message_wds_get_profile_settings_output_get_umts_minimum_qos_with_signaling_indication_flag, function in WDS Get Profile Settings +qmi_message_wds_get_supported_messages_output_get_list, function in WDS Get Supported Messages request
-qmi_message_wds_get_profile_settings_output_get_umts_requested_qos, function in WDS Get Profile Settings +qmi_message_wds_get_supported_messages_output_get_result, function in WDS Get Supported Messages request
-qmi_message_wds_get_profile_settings_output_get_umts_requested_qos_with_signaling_indication_flag, function in WDS Get Profile Settings +qmi_message_wds_get_supported_messages_output_ref, function in WDS Get Supported Messages request
-qmi_message_wds_get_profile_settings_output_get_username, function in WDS Get Profile Settings +qmi_message_wds_get_supported_messages_output_unref, function in WDS Get Supported Messages request
-qmi_message_wds_get_profile_settings_output_ref, function in WDS Get Profile Settings +qmi_message_wds_go_active_output_get_result, function in WDS Go Active request
-qmi_message_wds_get_profile_settings_output_unref, function in WDS Get Profile Settings +qmi_message_wds_go_active_output_ref, function in WDS Go Active request
-qmi_message_wds_get_supported_messages_output_get_list, function in WDS Get Supported Messages +qmi_message_wds_go_active_output_unref, function in WDS Go Active request
-qmi_message_wds_get_supported_messages_output_get_result, function in WDS Get Supported Messages +qmi_message_wds_go_dormant_output_get_result, function in WDS Go Dormant request
-qmi_message_wds_get_supported_messages_output_ref, function in WDS Get Supported Messages +qmi_message_wds_go_dormant_output_ref, function in WDS Go Dormant request
-qmi_message_wds_get_supported_messages_output_unref, function in WDS Get Supported Messages +qmi_message_wds_go_dormant_output_unref, function in WDS Go Dormant request
-qmi_message_wds_go_active_output_get_result, function in WDS Go Active +qmi_message_wds_modify_profile_input_get_apn_disabled_flag, function in WDS Modify Profile request
-qmi_message_wds_go_active_output_ref, function in WDS Go Active +qmi_message_wds_modify_profile_input_get_apn_name, function in WDS Modify Profile request
-qmi_message_wds_go_active_output_unref, function in WDS Go Active +qmi_message_wds_modify_profile_input_get_authentication, function in WDS Modify Profile request
-qmi_message_wds_go_dormant_output_get_result, function in WDS Go Dormant +qmi_message_wds_modify_profile_input_get_gprs_minimum_qos, function in WDS Modify Profile request
-qmi_message_wds_go_dormant_output_ref, function in WDS Go Dormant +qmi_message_wds_modify_profile_input_get_gprs_requested_qos, function in WDS Modify Profile request
-qmi_message_wds_go_dormant_output_unref, function in WDS Go Dormant +qmi_message_wds_modify_profile_input_get_imcn_flag, function in WDS Modify Profile request
-qmi_message_wds_modify_profile_input_get_apn_name, function in WDS Modify Profile +qmi_message_wds_modify_profile_input_get_ipv4_address_preference, function in WDS Modify Profile request
-qmi_message_wds_modify_profile_input_get_authentication, function in WDS Modify Profile +qmi_message_wds_modify_profile_input_get_ipv6_address_preference, function in WDS Modify Profile request
-qmi_message_wds_modify_profile_input_get_gprs_minimum_qos, function in WDS Modify Profile +qmi_message_wds_modify_profile_input_get_ipv6_primary_dns_address_preference, function in WDS Modify Profile request
-qmi_message_wds_modify_profile_input_get_gprs_requested_qos, function in WDS Modify Profile +qmi_message_wds_modify_profile_input_get_ipv6_secondary_dns_address_preference, function in WDS Modify Profile request
-qmi_message_wds_modify_profile_input_get_imcn_flag, function in WDS Modify Profile +qmi_message_wds_modify_profile_input_get_lte_qos_parameters, function in WDS Modify Profile request
-qmi_message_wds_modify_profile_input_get_ipv4_address_preference, function in WDS Modify Profile +qmi_message_wds_modify_profile_input_get_password, function in WDS Modify Profile request
-qmi_message_wds_modify_profile_input_get_ipv6_address_preference, function in WDS Modify Profile +qmi_message_wds_modify_profile_input_get_pcscf_address_using_dhcp, function in WDS Modify Profile request
-qmi_message_wds_modify_profile_input_get_ipv6_primary_dns_address_preference, function in WDS Modify Profile +qmi_message_wds_modify_profile_input_get_pcscf_address_using_pco, function in WDS Modify Profile request
-qmi_message_wds_modify_profile_input_get_ipv6_secondary_dns_address_preference, function in WDS Modify Profile +qmi_message_wds_modify_profile_input_get_pdp_context_number, function in WDS Modify Profile request
-qmi_message_wds_modify_profile_input_get_lte_qos_parameters, function in WDS Modify Profile +qmi_message_wds_modify_profile_input_get_pdp_context_primary_id, function in WDS Modify Profile request
-qmi_message_wds_modify_profile_input_get_password, function in WDS Modify Profile +qmi_message_wds_modify_profile_input_get_pdp_context_secondary_flag, function in WDS Modify Profile request
-qmi_message_wds_modify_profile_input_get_pcscf_address_using_dhcp, function in WDS Modify Profile +qmi_message_wds_modify_profile_input_get_pdp_data_compression_type, function in WDS Modify Profile request
-qmi_message_wds_modify_profile_input_get_pcscf_address_using_pco, function in WDS Modify Profile +qmi_message_wds_modify_profile_input_get_pdp_header_compression_type, function in WDS Modify Profile request
-qmi_message_wds_modify_profile_input_get_pdp_context_number, function in WDS Modify Profile +qmi_message_wds_modify_profile_input_get_pdp_type, function in WDS Modify Profile request
-qmi_message_wds_modify_profile_input_get_pdp_context_primary_id, function in WDS Modify Profile +qmi_message_wds_modify_profile_input_get_primary_ipv4_dns_address, function in WDS Modify Profile request
-qmi_message_wds_modify_profile_input_get_pdp_context_secondary_flag, function in WDS Modify Profile +qmi_message_wds_modify_profile_input_get_profile_identifier, function in WDS Modify Profile request
-qmi_message_wds_modify_profile_input_get_pdp_data_compression_type, function in WDS Modify Profile +qmi_message_wds_modify_profile_input_get_profile_name, function in WDS Modify Profile request
-qmi_message_wds_modify_profile_input_get_pdp_header_compression_type, function in WDS Modify Profile +qmi_message_wds_modify_profile_input_get_roaming_disallowed_flag, function in WDS Modify Profile request
-qmi_message_wds_modify_profile_input_get_pdp_type, function in WDS Modify Profile +qmi_message_wds_modify_profile_input_get_secondary_ipv4_dns_address, function in WDS Modify Profile request
-qmi_message_wds_modify_profile_input_get_primary_ipv4_dns_address, function in WDS Modify Profile +qmi_message_wds_modify_profile_input_get_umts_minimum_qos, function in WDS Modify Profile request
-qmi_message_wds_modify_profile_input_get_profile_identifier, function in WDS Modify Profile +qmi_message_wds_modify_profile_input_get_umts_minimum_qos_with_signaling_indication_flag, function in WDS Modify Profile request
-qmi_message_wds_modify_profile_input_get_profile_name, function in WDS Modify Profile +qmi_message_wds_modify_profile_input_get_umts_requested_qos, function in WDS Modify Profile request
-qmi_message_wds_modify_profile_input_get_secondary_ipv4_dns_address, function in WDS Modify Profile +qmi_message_wds_modify_profile_input_get_umts_requested_qos_with_signaling_indication_flag, function in WDS Modify Profile request
-qmi_message_wds_modify_profile_input_get_umts_minimum_qos, function in WDS Modify Profile +qmi_message_wds_modify_profile_input_get_username, function in WDS Modify Profile request
-qmi_message_wds_modify_profile_input_get_umts_minimum_qos_with_signaling_indication_flag, function in WDS Modify Profile +qmi_message_wds_modify_profile_input_new, function in WDS Modify Profile request
-qmi_message_wds_modify_profile_input_get_umts_requested_qos, function in WDS Modify Profile +qmi_message_wds_modify_profile_input_ref, function in WDS Modify Profile request
-qmi_message_wds_modify_profile_input_get_umts_requested_qos_with_signaling_indication_flag, function in WDS Modify Profile +qmi_message_wds_modify_profile_input_set_apn_disabled_flag, function in WDS Modify Profile request
-qmi_message_wds_modify_profile_input_get_username, function in WDS Modify Profile +qmi_message_wds_modify_profile_input_set_apn_name, function in WDS Modify Profile request
-qmi_message_wds_modify_profile_input_new, function in WDS Modify Profile +qmi_message_wds_modify_profile_input_set_authentication, function in WDS Modify Profile request
-qmi_message_wds_modify_profile_input_ref, function in WDS Modify Profile +qmi_message_wds_modify_profile_input_set_gprs_minimum_qos, function in WDS Modify Profile request
-qmi_message_wds_modify_profile_input_set_apn_name, function in WDS Modify Profile +qmi_message_wds_modify_profile_input_set_gprs_requested_qos, function in WDS Modify Profile request
-qmi_message_wds_modify_profile_input_set_authentication, function in WDS Modify Profile +qmi_message_wds_modify_profile_input_set_imcn_flag, function in WDS Modify Profile request
-qmi_message_wds_modify_profile_input_set_gprs_minimum_qos, function in WDS Modify Profile +qmi_message_wds_modify_profile_input_set_ipv4_address_preference, function in WDS Modify Profile request
-qmi_message_wds_modify_profile_input_set_gprs_requested_qos, function in WDS Modify Profile +qmi_message_wds_modify_profile_input_set_ipv6_address_preference, function in WDS Modify Profile request
-qmi_message_wds_modify_profile_input_set_imcn_flag, function in WDS Modify Profile +qmi_message_wds_modify_profile_input_set_ipv6_primary_dns_address_preference, function in WDS Modify Profile request
-qmi_message_wds_modify_profile_input_set_ipv4_address_preference, function in WDS Modify Profile +qmi_message_wds_modify_profile_input_set_ipv6_secondary_dns_address_preference, function in WDS Modify Profile request
-qmi_message_wds_modify_profile_input_set_ipv6_address_preference, function in WDS Modify Profile +qmi_message_wds_modify_profile_input_set_lte_qos_parameters, function in WDS Modify Profile request
-qmi_message_wds_modify_profile_input_set_ipv6_primary_dns_address_preference, function in WDS Modify Profile +qmi_message_wds_modify_profile_input_set_password, function in WDS Modify Profile request
-qmi_message_wds_modify_profile_input_set_ipv6_secondary_dns_address_preference, function in WDS Modify Profile +qmi_message_wds_modify_profile_input_set_pcscf_address_using_dhcp, function in WDS Modify Profile request
-qmi_message_wds_modify_profile_input_set_lte_qos_parameters, function in WDS Modify Profile +qmi_message_wds_modify_profile_input_set_pcscf_address_using_pco, function in WDS Modify Profile request
-qmi_message_wds_modify_profile_input_set_password, function in WDS Modify Profile +qmi_message_wds_modify_profile_input_set_pdp_context_number, function in WDS Modify Profile request
-qmi_message_wds_modify_profile_input_set_pcscf_address_using_dhcp, function in WDS Modify Profile +qmi_message_wds_modify_profile_input_set_pdp_context_primary_id, function in WDS Modify Profile request
-qmi_message_wds_modify_profile_input_set_pcscf_address_using_pco, function in WDS Modify Profile +qmi_message_wds_modify_profile_input_set_pdp_context_secondary_flag, function in WDS Modify Profile request
-qmi_message_wds_modify_profile_input_set_pdp_context_number, function in WDS Modify Profile +qmi_message_wds_modify_profile_input_set_pdp_data_compression_type, function in WDS Modify Profile request
-qmi_message_wds_modify_profile_input_set_pdp_context_primary_id, function in WDS Modify Profile +qmi_message_wds_modify_profile_input_set_pdp_header_compression_type, function in WDS Modify Profile request
-qmi_message_wds_modify_profile_input_set_pdp_context_secondary_flag, function in WDS Modify Profile +qmi_message_wds_modify_profile_input_set_pdp_type, function in WDS Modify Profile request
-qmi_message_wds_modify_profile_input_set_pdp_data_compression_type, function in WDS Modify Profile +qmi_message_wds_modify_profile_input_set_primary_ipv4_dns_address, function in WDS Modify Profile request
-qmi_message_wds_modify_profile_input_set_pdp_header_compression_type, function in WDS Modify Profile +qmi_message_wds_modify_profile_input_set_profile_identifier, function in WDS Modify Profile request
-qmi_message_wds_modify_profile_input_set_pdp_type, function in WDS Modify Profile +qmi_message_wds_modify_profile_input_set_profile_name, function in WDS Modify Profile request
-qmi_message_wds_modify_profile_input_set_primary_ipv4_dns_address, function in WDS Modify Profile +qmi_message_wds_modify_profile_input_set_roaming_disallowed_flag, function in WDS Modify Profile request
-qmi_message_wds_modify_profile_input_set_profile_identifier, function in WDS Modify Profile +qmi_message_wds_modify_profile_input_set_secondary_ipv4_dns_address, function in WDS Modify Profile request
-qmi_message_wds_modify_profile_input_set_profile_name, function in WDS Modify Profile +qmi_message_wds_modify_profile_input_set_umts_minimum_qos, function in WDS Modify Profile request
-qmi_message_wds_modify_profile_input_set_secondary_ipv4_dns_address, function in WDS Modify Profile +qmi_message_wds_modify_profile_input_set_umts_minimum_qos_with_signaling_indication_flag, function in WDS Modify Profile request
-qmi_message_wds_modify_profile_input_set_umts_minimum_qos, function in WDS Modify Profile +qmi_message_wds_modify_profile_input_set_umts_requested_qos, function in WDS Modify Profile request
-qmi_message_wds_modify_profile_input_set_umts_minimum_qos_with_signaling_indication_flag, function in WDS Modify Profile +qmi_message_wds_modify_profile_input_set_umts_requested_qos_with_signaling_indication_flag, function in WDS Modify Profile request
-qmi_message_wds_modify_profile_input_set_umts_requested_qos, function in WDS Modify Profile +qmi_message_wds_modify_profile_input_set_username, function in WDS Modify Profile request
-qmi_message_wds_modify_profile_input_set_umts_requested_qos_with_signaling_indication_flag, function in WDS Modify Profile +qmi_message_wds_modify_profile_input_unref, function in WDS Modify Profile request
-qmi_message_wds_modify_profile_input_set_username, function in WDS Modify Profile +qmi_message_wds_modify_profile_output_get_extended_error_code, function in WDS Modify Profile request
-qmi_message_wds_modify_profile_input_unref, function in WDS Modify Profile +qmi_message_wds_modify_profile_output_get_result, function in WDS Modify Profile request
-qmi_message_wds_modify_profile_output_get_extended_error_code, function in WDS Modify Profile +qmi_message_wds_modify_profile_output_ref, function in WDS Modify Profile request
-qmi_message_wds_modify_profile_output_get_result, function in WDS Modify Profile +qmi_message_wds_modify_profile_output_unref, function in WDS Modify Profile request
-qmi_message_wds_modify_profile_output_ref, function in WDS Modify Profile +qmi_message_wds_reset_output_get_result, function in WDS Reset request
-qmi_message_wds_modify_profile_output_unref, function in WDS Modify Profile +qmi_message_wds_reset_output_ref, function in WDS Reset request
-qmi_message_wds_reset_output_get_result, function in WDS Reset +qmi_message_wds_reset_output_unref, function in WDS Reset request
-qmi_message_wds_reset_output_ref, function in WDS Reset +qmi_message_wds_set_autoconnect_settings_input_get_roaming, function in WDS Set Autoconnect Settings request
-qmi_message_wds_reset_output_unref, function in WDS Reset +qmi_message_wds_set_autoconnect_settings_input_get_status, function in WDS Set Autoconnect Settings request
-qmi_message_wds_set_autoconnect_settings_input_get_roaming, function in WDS Set Autoconnect Settings +qmi_message_wds_set_autoconnect_settings_input_new, function in WDS Set Autoconnect Settings request
-qmi_message_wds_set_autoconnect_settings_input_get_status, function in WDS Set Autoconnect Settings +qmi_message_wds_set_autoconnect_settings_input_ref, function in WDS Set Autoconnect Settings request
-qmi_message_wds_set_autoconnect_settings_input_new, function in WDS Set Autoconnect Settings +qmi_message_wds_set_autoconnect_settings_input_set_roaming, function in WDS Set Autoconnect Settings request
-qmi_message_wds_set_autoconnect_settings_input_ref, function in WDS Set Autoconnect Settings +qmi_message_wds_set_autoconnect_settings_input_set_status, function in WDS Set Autoconnect Settings request
-qmi_message_wds_set_autoconnect_settings_input_set_roaming, function in WDS Set Autoconnect Settings +qmi_message_wds_set_autoconnect_settings_input_unref, function in WDS Set Autoconnect Settings request
-qmi_message_wds_set_autoconnect_settings_input_set_status, function in WDS Set Autoconnect Settings +qmi_message_wds_set_autoconnect_settings_output_get_result, function in WDS Set Autoconnect Settings request
-qmi_message_wds_set_autoconnect_settings_input_unref, function in WDS Set Autoconnect Settings +qmi_message_wds_set_autoconnect_settings_output_ref, function in WDS Set Autoconnect Settings request
-qmi_message_wds_set_autoconnect_settings_output_get_result, function in WDS Set Autoconnect Settings +qmi_message_wds_set_autoconnect_settings_output_unref, function in WDS Set Autoconnect Settings request
-qmi_message_wds_set_autoconnect_settings_output_ref, function in WDS Set Autoconnect Settings +qmi_message_wds_set_default_profile_num_input_get_profile_identifier, function in WDS Set Default Profile Num request
-qmi_message_wds_set_autoconnect_settings_output_unref, function in WDS Set Autoconnect Settings +qmi_message_wds_set_default_profile_num_input_new, function in WDS Set Default Profile Num request
-qmi_message_wds_set_event_report_input_get_channel_rate, function in WDS Set Event Report +qmi_message_wds_set_default_profile_num_input_ref, function in WDS Set Default Profile Num request
-qmi_message_wds_set_event_report_input_get_current_data_bearer_technology, function in WDS Set Event Report +qmi_message_wds_set_default_profile_num_input_set_profile_identifier, function in WDS Set Default Profile Num request
-qmi_message_wds_set_event_report_input_get_data_bearer_technology, function in WDS Set Event Report +qmi_message_wds_set_default_profile_num_input_unref, function in WDS Set Default Profile Num request
-qmi_message_wds_set_event_report_input_get_data_call_status, function in WDS Set Event Report +qmi_message_wds_set_default_profile_num_output_get_extended_error_code, function in WDS Set Default Profile Num request
-qmi_message_wds_set_event_report_input_get_data_systems, function in WDS Set Event Report +qmi_message_wds_set_default_profile_num_output_get_result, function in WDS Set Default Profile Num request
-qmi_message_wds_set_event_report_input_get_dormancy_status, function in WDS Set Event Report +qmi_message_wds_set_default_profile_num_output_ref, function in WDS Set Default Profile Num request
-qmi_message_wds_set_event_report_input_get_evdo_pm_change, function in WDS Set Event Report +qmi_message_wds_set_default_profile_num_output_unref, function in WDS Set Default Profile Num request
-qmi_message_wds_set_event_report_input_get_extended_data_bearer_technology, function in WDS Set Event Report +qmi_message_wds_set_event_report_input_get_channel_rate, function in WDS Set Event Report request
-qmi_message_wds_set_event_report_input_get_limited_data_system_status, function in WDS Set Event Report +qmi_message_wds_set_event_report_input_get_current_data_bearer_technology, function in WDS Set Event Report request
-qmi_message_wds_set_event_report_input_get_mip_status, function in WDS Set Event Report +qmi_message_wds_set_event_report_input_get_data_bearer_technology, function in WDS Set Event Report request
-qmi_message_wds_set_event_report_input_get_pdn_filter_removals, function in WDS Set Event Report +qmi_message_wds_set_event_report_input_get_data_call_status, function in WDS Set Event Report request
-qmi_message_wds_set_event_report_input_get_preferred_data_system, function in WDS Set Event Report +qmi_message_wds_set_event_report_input_get_data_systems, function in WDS Set Event Report request
-qmi_message_wds_set_event_report_input_get_transfer_statistics, function in WDS Set Event Report +qmi_message_wds_set_event_report_input_get_dormancy_status, function in WDS Set Event Report request
-qmi_message_wds_set_event_report_input_get_uplink_flow_control, function in WDS Set Event Report +qmi_message_wds_set_event_report_input_get_evdo_pm_change, function in WDS Set Event Report request
-qmi_message_wds_set_event_report_input_new, function in WDS Set Event Report +qmi_message_wds_set_event_report_input_get_extended_data_bearer_technology, function in WDS Set Event Report request
-qmi_message_wds_set_event_report_input_ref, function in WDS Set Event Report +qmi_message_wds_set_event_report_input_get_limited_data_system_status, function in WDS Set Event Report request
-qmi_message_wds_set_event_report_input_set_channel_rate, function in WDS Set Event Report +qmi_message_wds_set_event_report_input_get_mip_status, function in WDS Set Event Report request
-qmi_message_wds_set_event_report_input_set_current_data_bearer_technology, function in WDS Set Event Report +qmi_message_wds_set_event_report_input_get_pdn_filter_removals, function in WDS Set Event Report request
-qmi_message_wds_set_event_report_input_set_data_bearer_technology, function in WDS Set Event Report +qmi_message_wds_set_event_report_input_get_preferred_data_system, function in WDS Set Event Report request
-qmi_message_wds_set_event_report_input_set_data_call_status, function in WDS Set Event Report +qmi_message_wds_set_event_report_input_get_transfer_statistics, function in WDS Set Event Report request
-qmi_message_wds_set_event_report_input_set_data_systems, function in WDS Set Event Report +qmi_message_wds_set_event_report_input_get_uplink_flow_control, function in WDS Set Event Report request
-qmi_message_wds_set_event_report_input_set_dormancy_status, function in WDS Set Event Report +qmi_message_wds_set_event_report_input_new, function in WDS Set Event Report request
-qmi_message_wds_set_event_report_input_set_evdo_pm_change, function in WDS Set Event Report +qmi_message_wds_set_event_report_input_ref, function in WDS Set Event Report request
-qmi_message_wds_set_event_report_input_set_extended_data_bearer_technology, function in WDS Set Event Report +qmi_message_wds_set_event_report_input_set_channel_rate, function in WDS Set Event Report request
-qmi_message_wds_set_event_report_input_set_limited_data_system_status, function in WDS Set Event Report +qmi_message_wds_set_event_report_input_set_current_data_bearer_technology, function in WDS Set Event Report request
-qmi_message_wds_set_event_report_input_set_mip_status, function in WDS Set Event Report +qmi_message_wds_set_event_report_input_set_data_bearer_technology, function in WDS Set Event Report request
-qmi_message_wds_set_event_report_input_set_pdn_filter_removals, function in WDS Set Event Report +qmi_message_wds_set_event_report_input_set_data_call_status, function in WDS Set Event Report request
-qmi_message_wds_set_event_report_input_set_preferred_data_system, function in WDS Set Event Report +qmi_message_wds_set_event_report_input_set_data_systems, function in WDS Set Event Report request
-qmi_message_wds_set_event_report_input_set_transfer_statistics, function in WDS Set Event Report +qmi_message_wds_set_event_report_input_set_dormancy_status, function in WDS Set Event Report request
-qmi_message_wds_set_event_report_input_set_uplink_flow_control, function in WDS Set Event Report +qmi_message_wds_set_event_report_input_set_evdo_pm_change, function in WDS Set Event Report request
-qmi_message_wds_set_event_report_input_unref, function in WDS Set Event Report +qmi_message_wds_set_event_report_input_set_extended_data_bearer_technology, function in WDS Set Event Report request
-qmi_message_wds_set_event_report_output_get_result, function in WDS Set Event Report +qmi_message_wds_set_event_report_input_set_limited_data_system_status, function in WDS Set Event Report request
-qmi_message_wds_set_event_report_output_ref, function in WDS Set Event Report +qmi_message_wds_set_event_report_input_set_mip_status, function in WDS Set Event Report request
-qmi_message_wds_set_event_report_output_unref, function in WDS Set Event Report +qmi_message_wds_set_event_report_input_set_pdn_filter_removals, function in WDS Set Event Report request
-qmi_message_wds_set_ip_family_input_get_preference, function in WDS Set IP Family +qmi_message_wds_set_event_report_input_set_preferred_data_system, function in WDS Set Event Report request
-qmi_message_wds_set_ip_family_input_new, function in WDS Set IP Family +qmi_message_wds_set_event_report_input_set_transfer_statistics, function in WDS Set Event Report request
-qmi_message_wds_set_ip_family_input_ref, function in WDS Set IP Family +qmi_message_wds_set_event_report_input_set_uplink_flow_control, function in WDS Set Event Report request
-qmi_message_wds_set_ip_family_input_set_preference, function in WDS Set IP Family +qmi_message_wds_set_event_report_input_unref, function in WDS Set Event Report request
-qmi_message_wds_set_ip_family_input_unref, function in WDS Set IP Family +qmi_message_wds_set_event_report_output_get_result, function in WDS Set Event Report request
-qmi_message_wds_set_ip_family_output_get_result, function in WDS Set IP Family +qmi_message_wds_set_event_report_output_ref, function in WDS Set Event Report request
-qmi_message_wds_set_ip_family_output_ref, function in WDS Set IP Family +qmi_message_wds_set_event_report_output_unref, function in WDS Set Event Report request
-qmi_message_wds_set_ip_family_output_unref, function in WDS Set IP Family +qmi_message_wds_set_ip_family_input_get_preference, function in WDS Set IP Family request
-qmi_message_wds_start_network_input_get_apn, function in WDS Start Network +qmi_message_wds_set_ip_family_input_new, function in WDS Set IP Family request
-qmi_message_wds_start_network_input_get_authentication_preference, function in WDS Start Network +qmi_message_wds_set_ip_family_input_ref, function in WDS Set IP Family request
-qmi_message_wds_start_network_input_get_call_type, function in WDS Start Network +qmi_message_wds_set_ip_family_input_set_preference, function in WDS Set IP Family request
-qmi_message_wds_start_network_input_get_enable_autoconnect, function in WDS Start Network +qmi_message_wds_set_ip_family_input_unref, function in WDS Set IP Family request
-qmi_message_wds_start_network_input_get_extended_technology_preference, function in WDS Start Network +qmi_message_wds_set_ip_family_output_get_result, function in WDS Set IP Family request
-qmi_message_wds_start_network_input_get_ipv4_address_preference, function in WDS Start Network +qmi_message_wds_set_ip_family_output_ref, function in WDS Set IP Family request
-qmi_message_wds_start_network_input_get_ip_family_preference, function in WDS Start Network +qmi_message_wds_set_ip_family_output_unref, function in WDS Set IP Family request
-qmi_message_wds_start_network_input_get_password, function in WDS Start Network +qmi_message_wds_start_network_input_get_apn, function in WDS Start Network request
-qmi_message_wds_start_network_input_get_primary_dns_address_preference, function in WDS Start Network +qmi_message_wds_start_network_input_get_authentication_preference, function in WDS Start Network request
-qmi_message_wds_start_network_input_get_primary_nbns_address_preference, function in WDS Start Network +qmi_message_wds_start_network_input_get_call_type, function in WDS Start Network request
-qmi_message_wds_start_network_input_get_profile_index_3gpp, function in WDS Start Network +qmi_message_wds_start_network_input_get_enable_autoconnect, function in WDS Start Network request
-qmi_message_wds_start_network_input_get_profile_index_3gpp2, function in WDS Start Network +qmi_message_wds_start_network_input_get_extended_technology_preference, function in WDS Start Network request
-qmi_message_wds_start_network_input_get_secondary_dns_address_preference, function in WDS Start Network +qmi_message_wds_start_network_input_get_ipv4_address_preference, function in WDS Start Network request
-qmi_message_wds_start_network_input_get_secondary_nbns_address_preference, function in WDS Start Network +qmi_message_wds_start_network_input_get_ip_family_preference, function in WDS Start Network request
-qmi_message_wds_start_network_input_get_technology_preference, function in WDS Start Network +qmi_message_wds_start_network_input_get_password, function in WDS Start Network request
-qmi_message_wds_start_network_input_get_username, function in WDS Start Network +qmi_message_wds_start_network_input_get_primary_dns_address_preference, function in WDS Start Network request
-qmi_message_wds_start_network_input_new, function in WDS Start Network +qmi_message_wds_start_network_input_get_primary_nbns_address_preference, function in WDS Start Network request
-qmi_message_wds_start_network_input_ref, function in WDS Start Network +qmi_message_wds_start_network_input_get_profile_index_3gpp, function in WDS Start Network request
-qmi_message_wds_start_network_input_set_apn, function in WDS Start Network +qmi_message_wds_start_network_input_get_profile_index_3gpp2, function in WDS Start Network request
-qmi_message_wds_start_network_input_set_authentication_preference, function in WDS Start Network +qmi_message_wds_start_network_input_get_secondary_dns_address_preference, function in WDS Start Network request
-qmi_message_wds_start_network_input_set_call_type, function in WDS Start Network +qmi_message_wds_start_network_input_get_secondary_nbns_address_preference, function in WDS Start Network request
-qmi_message_wds_start_network_input_set_enable_autoconnect, function in WDS Start Network +qmi_message_wds_start_network_input_get_technology_preference, function in WDS Start Network request
-qmi_message_wds_start_network_input_set_extended_technology_preference, function in WDS Start Network +qmi_message_wds_start_network_input_get_username, function in WDS Start Network request
-qmi_message_wds_start_network_input_set_ipv4_address_preference, function in WDS Start Network +qmi_message_wds_start_network_input_new, function in WDS Start Network request
-qmi_message_wds_start_network_input_set_ip_family_preference, function in WDS Start Network +qmi_message_wds_start_network_input_ref, function in WDS Start Network request
-qmi_message_wds_start_network_input_set_password, function in WDS Start Network +qmi_message_wds_start_network_input_set_apn, function in WDS Start Network request
-qmi_message_wds_start_network_input_set_primary_dns_address_preference, function in WDS Start Network +qmi_message_wds_start_network_input_set_authentication_preference, function in WDS Start Network request
-qmi_message_wds_start_network_input_set_primary_nbns_address_preference, function in WDS Start Network +qmi_message_wds_start_network_input_set_call_type, function in WDS Start Network request
-qmi_message_wds_start_network_input_set_profile_index_3gpp, function in WDS Start Network +qmi_message_wds_start_network_input_set_enable_autoconnect, function in WDS Start Network request
-qmi_message_wds_start_network_input_set_profile_index_3gpp2, function in WDS Start Network +qmi_message_wds_start_network_input_set_extended_technology_preference, function in WDS Start Network request
-qmi_message_wds_start_network_input_set_secondary_dns_address_preference, function in WDS Start Network +qmi_message_wds_start_network_input_set_ipv4_address_preference, function in WDS Start Network request
-qmi_message_wds_start_network_input_set_secondary_nbns_address_preference, function in WDS Start Network +qmi_message_wds_start_network_input_set_ip_family_preference, function in WDS Start Network request
-qmi_message_wds_start_network_input_set_technology_preference, function in WDS Start Network +qmi_message_wds_start_network_input_set_password, function in WDS Start Network request
-qmi_message_wds_start_network_input_set_username, function in WDS Start Network +qmi_message_wds_start_network_input_set_primary_dns_address_preference, function in WDS Start Network request
-qmi_message_wds_start_network_input_unref, function in WDS Start Network +qmi_message_wds_start_network_input_set_primary_nbns_address_preference, function in WDS Start Network request
-qmi_message_wds_start_network_output_get_call_end_reason, function in WDS Start Network +qmi_message_wds_start_network_input_set_profile_index_3gpp, function in WDS Start Network request
-qmi_message_wds_start_network_output_get_packet_data_handle, function in WDS Start Network +qmi_message_wds_start_network_input_set_profile_index_3gpp2, function in WDS Start Network request
-qmi_message_wds_start_network_output_get_result, function in WDS Start Network +qmi_message_wds_start_network_input_set_secondary_dns_address_preference, function in WDS Start Network request
-qmi_message_wds_start_network_output_get_verbose_call_end_reason, function in WDS Start Network +qmi_message_wds_start_network_input_set_secondary_nbns_address_preference, function in WDS Start Network request
-qmi_message_wds_start_network_output_ref, function in WDS Start Network +qmi_message_wds_start_network_input_set_technology_preference, function in WDS Start Network request
-qmi_message_wds_start_network_output_unref, function in WDS Start Network +qmi_message_wds_start_network_input_set_username, function in WDS Start Network request
-qmi_message_wds_stop_network_input_get_disable_autoconnect, function in WDS Stop Network +qmi_message_wds_start_network_input_unref, function in WDS Start Network request
-qmi_message_wds_stop_network_input_get_packet_data_handle, function in WDS Stop Network +qmi_message_wds_start_network_output_get_call_end_reason, function in WDS Start Network request
-qmi_message_wds_stop_network_input_new, function in WDS Stop Network +qmi_message_wds_start_network_output_get_packet_data_handle, function in WDS Start Network request
-qmi_message_wds_stop_network_input_ref, function in WDS Stop Network +qmi_message_wds_start_network_output_get_result, function in WDS Start Network request
-qmi_message_wds_stop_network_input_set_disable_autoconnect, function in WDS Stop Network +qmi_message_wds_start_network_output_get_verbose_call_end_reason, function in WDS Start Network request
-qmi_message_wds_stop_network_input_set_packet_data_handle, function in WDS Stop Network +qmi_message_wds_start_network_output_ref, function in WDS Start Network request
-qmi_message_wds_stop_network_input_unref, function in WDS Stop Network +qmi_message_wds_start_network_output_unref, function in WDS Start Network request
-qmi_message_wds_stop_network_output_get_result, function in WDS Stop Network +qmi_message_wds_stop_network_input_get_disable_autoconnect, function in WDS Stop Network request
-qmi_message_wds_stop_network_output_ref, function in WDS Stop Network +qmi_message_wds_stop_network_input_get_packet_data_handle, function in WDS Stop Network request
-qmi_message_wds_stop_network_output_unref, function in WDS Stop Network +qmi_message_wds_stop_network_input_new, function in WDS Stop Network request
-qmi_message_wms_delete_input_get_memory_index, function in WMS Delete +qmi_message_wds_stop_network_input_ref, function in WDS Stop Network request
-qmi_message_wms_delete_input_get_memory_storage, function in WMS Delete +qmi_message_wds_stop_network_input_set_disable_autoconnect, function in WDS Stop Network request
-qmi_message_wms_delete_input_get_message_mode, function in WMS Delete +qmi_message_wds_stop_network_input_set_packet_data_handle, function in WDS Stop Network request
-qmi_message_wms_delete_input_get_message_tag, function in WMS Delete +qmi_message_wds_stop_network_input_unref, function in WDS Stop Network request
-qmi_message_wms_delete_input_new, function in WMS Delete +qmi_message_wds_stop_network_output_get_result, function in WDS Stop Network request
-qmi_message_wms_delete_input_ref, function in WMS Delete +qmi_message_wds_stop_network_output_ref, function in WDS Stop Network request
-qmi_message_wms_delete_input_set_memory_index, function in WMS Delete +qmi_message_wds_stop_network_output_unref, function in WDS Stop Network request
-qmi_message_wms_delete_input_set_memory_storage, function in WMS Delete +qmi_message_wds_swi_create_profile_indexed_input_get_apn_disabled_flag, function in WDS Swi Create Profile Indexed request
-qmi_message_wms_delete_input_set_message_mode, function in WMS Delete +qmi_message_wds_swi_create_profile_indexed_input_get_apn_name, function in WDS Swi Create Profile Indexed request
-qmi_message_wms_delete_input_set_message_tag, function in WMS Delete +qmi_message_wds_swi_create_profile_indexed_input_get_authentication, function in WDS Swi Create Profile Indexed request
-qmi_message_wms_delete_input_unref, function in WMS Delete +qmi_message_wds_swi_create_profile_indexed_input_get_ipv4_address_preference, function in WDS Swi Create Profile Indexed request
-qmi_message_wms_delete_output_get_result, function in WMS Delete +qmi_message_wds_swi_create_profile_indexed_input_get_password, function in WDS Swi Create Profile Indexed request
-qmi_message_wms_delete_output_ref, function in WMS Delete +qmi_message_wds_swi_create_profile_indexed_input_get_pdp_context_number, function in WDS Swi Create Profile Indexed request
-qmi_message_wms_delete_output_unref, function in WMS Delete +qmi_message_wds_swi_create_profile_indexed_input_get_pdp_type, function in WDS Swi Create Profile Indexed request
-qmi_message_wms_get_message_protocol_output_get_message_protocol, function in WMS Get Message Protocol +qmi_message_wds_swi_create_profile_indexed_input_get_primary_ipv4_dns_address, function in WDS Swi Create Profile Indexed request
-qmi_message_wms_get_message_protocol_output_get_result, function in WMS Get Message Protocol +qmi_message_wds_swi_create_profile_indexed_input_get_profile_identifier, function in WDS Swi Create Profile Indexed request
-qmi_message_wms_get_message_protocol_output_ref, function in WMS Get Message Protocol +qmi_message_wds_swi_create_profile_indexed_input_get_profile_name, function in WDS Swi Create Profile Indexed request
-qmi_message_wms_get_message_protocol_output_unref, function in WMS Get Message Protocol +qmi_message_wds_swi_create_profile_indexed_input_get_roaming_disallowed_flag, function in WDS Swi Create Profile Indexed request
-qmi_message_wms_get_routes_output_get_result, function in WMS Get Routes +qmi_message_wds_swi_create_profile_indexed_input_get_secondary_ipv4_dns_address, function in WDS Swi Create Profile Indexed request
-qmi_message_wms_get_routes_output_get_route_list, function in WMS Get Routes +qmi_message_wds_swi_create_profile_indexed_input_get_username, function in WDS Swi Create Profile Indexed request
-qmi_message_wms_get_routes_output_get_transfer_status_report, function in WMS Get Routes +qmi_message_wds_swi_create_profile_indexed_input_new, function in WDS Swi Create Profile Indexed request
-qmi_message_wms_get_routes_output_ref, function in WMS Get Routes +qmi_message_wds_swi_create_profile_indexed_input_ref, function in WDS Swi Create Profile Indexed request
-qmi_message_wms_get_routes_output_unref, function in WMS Get Routes +qmi_message_wds_swi_create_profile_indexed_input_set_apn_disabled_flag, function in WDS Swi Create Profile Indexed request
-qmi_message_wms_get_supported_messages_output_get_list, function in WMS Get Supported Messages +qmi_message_wds_swi_create_profile_indexed_input_set_apn_name, function in WDS Swi Create Profile Indexed request
-qmi_message_wms_get_supported_messages_output_get_result, function in WMS Get Supported Messages +qmi_message_wds_swi_create_profile_indexed_input_set_authentication, function in WDS Swi Create Profile Indexed request
-qmi_message_wms_get_supported_messages_output_ref, function in WMS Get Supported Messages +qmi_message_wds_swi_create_profile_indexed_input_set_ipv4_address_preference, function in WDS Swi Create Profile Indexed request
-qmi_message_wms_get_supported_messages_output_unref, function in WMS Get Supported Messages +qmi_message_wds_swi_create_profile_indexed_input_set_password, function in WDS Swi Create Profile Indexed request
-qmi_message_wms_list_messages_input_get_message_mode, function in WMS List Messages +qmi_message_wds_swi_create_profile_indexed_input_set_pdp_context_number, function in WDS Swi Create Profile Indexed request
-qmi_message_wms_list_messages_input_get_message_tag, function in WMS List Messages +qmi_message_wds_swi_create_profile_indexed_input_set_pdp_type, function in WDS Swi Create Profile Indexed request
-qmi_message_wms_list_messages_input_get_storage_type, function in WMS List Messages +qmi_message_wds_swi_create_profile_indexed_input_set_primary_ipv4_dns_address, function in WDS Swi Create Profile Indexed request
-qmi_message_wms_list_messages_input_new, function in WMS List Messages +qmi_message_wds_swi_create_profile_indexed_input_set_profile_identifier, function in WDS Swi Create Profile Indexed request
-qmi_message_wms_list_messages_input_ref, function in WMS List Messages +qmi_message_wds_swi_create_profile_indexed_input_set_profile_name, function in WDS Swi Create Profile Indexed request
-qmi_message_wms_list_messages_input_set_message_mode, function in WMS List Messages +qmi_message_wds_swi_create_profile_indexed_input_set_roaming_disallowed_flag, function in WDS Swi Create Profile Indexed request
-qmi_message_wms_list_messages_input_set_message_tag, function in WMS List Messages +qmi_message_wds_swi_create_profile_indexed_input_set_secondary_ipv4_dns_address, function in WDS Swi Create Profile Indexed request
-qmi_message_wms_list_messages_input_set_storage_type, function in WMS List Messages +qmi_message_wds_swi_create_profile_indexed_input_set_username, function in WDS Swi Create Profile Indexed request
-qmi_message_wms_list_messages_input_unref, function in WMS List Messages +qmi_message_wds_swi_create_profile_indexed_input_unref, function in WDS Swi Create Profile Indexed request
-qmi_message_wms_list_messages_output_get_message_list, function in WMS List Messages +qmi_message_wds_swi_create_profile_indexed_output_get_profile_identifier, function in WDS Swi Create Profile Indexed request
-qmi_message_wms_list_messages_output_get_result, function in WMS List Messages +qmi_message_wds_swi_create_profile_indexed_output_get_result, function in WDS Swi Create Profile Indexed request
-qmi_message_wms_list_messages_output_ref, function in WMS List Messages +qmi_message_wds_swi_create_profile_indexed_output_ref, function in WDS Swi Create Profile Indexed request
-qmi_message_wms_list_messages_output_unref, function in WMS List Messages +qmi_message_wds_swi_create_profile_indexed_output_unref, function in WDS Swi Create Profile Indexed request
-qmi_message_wms_modify_tag_input_get_message_mode, function in WMS Modify Tag +qmi_message_wms_delete_input_get_memory_index, function in WMS Delete request
-qmi_message_wms_modify_tag_input_get_message_tag, function in WMS Modify Tag +qmi_message_wms_delete_input_get_memory_storage, function in WMS Delete request
-qmi_message_wms_modify_tag_input_new, function in WMS Modify Tag +qmi_message_wms_delete_input_get_message_mode, function in WMS Delete request
-qmi_message_wms_modify_tag_input_ref, function in WMS Modify Tag +qmi_message_wms_delete_input_get_message_tag, function in WMS Delete request
-qmi_message_wms_modify_tag_input_set_message_mode, function in WMS Modify Tag +qmi_message_wms_delete_input_new, function in WMS Delete request
-qmi_message_wms_modify_tag_input_set_message_tag, function in WMS Modify Tag +qmi_message_wms_delete_input_ref, function in WMS Delete request
-qmi_message_wms_modify_tag_input_unref, function in WMS Modify Tag +qmi_message_wms_delete_input_set_memory_index, function in WMS Delete request
-qmi_message_wms_modify_tag_output_get_result, function in WMS Modify Tag +qmi_message_wms_delete_input_set_memory_storage, function in WMS Delete request
-qmi_message_wms_modify_tag_output_ref, function in WMS Modify Tag +qmi_message_wms_delete_input_set_message_mode, function in WMS Delete request
-qmi_message_wms_modify_tag_output_unref, function in WMS Modify Tag +qmi_message_wms_delete_input_set_message_tag, function in WMS Delete request
-qmi_message_wms_raw_read_input_get_message_memory_storage_id, function in WMS Raw Read +qmi_message_wms_delete_input_unref, function in WMS Delete request
-qmi_message_wms_raw_read_input_get_message_mode, function in WMS Raw Read +qmi_message_wms_delete_output_get_result, function in WMS Delete request
-qmi_message_wms_raw_read_input_get_sms_on_ims, function in WMS Raw Read +qmi_message_wms_delete_output_ref, function in WMS Delete request
-qmi_message_wms_raw_read_input_new, function in WMS Raw Read +qmi_message_wms_delete_output_unref, function in WMS Delete request
-qmi_message_wms_raw_read_input_ref, function in WMS Raw Read +qmi_message_wms_get_message_protocol_output_get_message_protocol, function in WMS Get Message Protocol request
-qmi_message_wms_raw_read_input_set_message_memory_storage_id, function in WMS Raw Read +qmi_message_wms_get_message_protocol_output_get_result, function in WMS Get Message Protocol request
-qmi_message_wms_raw_read_input_set_message_mode, function in WMS Raw Read +qmi_message_wms_get_message_protocol_output_ref, function in WMS Get Message Protocol request
-qmi_message_wms_raw_read_input_set_sms_on_ims, function in WMS Raw Read +qmi_message_wms_get_message_protocol_output_unref, function in WMS Get Message Protocol request
-qmi_message_wms_raw_read_input_unref, function in WMS Raw Read +qmi_message_wms_get_routes_output_get_result, function in WMS Get Routes request
-qmi_message_wms_raw_read_output_get_raw_message_data, function in WMS Raw Read +qmi_message_wms_get_routes_output_get_route_list, function in WMS Get Routes request
-qmi_message_wms_raw_read_output_get_result, function in WMS Raw Read +qmi_message_wms_get_routes_output_get_transfer_status_report, function in WMS Get Routes request
-qmi_message_wms_raw_read_output_ref, function in WMS Raw Read +qmi_message_wms_get_routes_output_ref, function in WMS Get Routes request
-qmi_message_wms_raw_read_output_unref, function in WMS Raw Read +qmi_message_wms_get_routes_output_unref, function in WMS Get Routes request
-qmi_message_wms_raw_send_input_get_cdma_follow_on_dc, function in WMS Raw Send +qmi_message_wms_get_supported_messages_output_get_list, function in WMS Get Supported Messages request
-qmi_message_wms_raw_send_input_get_cdma_force_on_dc, function in WMS Raw Send +qmi_message_wms_get_supported_messages_output_get_result, function in WMS Get Supported Messages request
-qmi_message_wms_raw_send_input_get_gsm_wcdma_link_timer, function in WMS Raw Send +qmi_message_wms_get_supported_messages_output_ref, function in WMS Get Supported Messages request
-qmi_message_wms_raw_send_input_get_raw_message_data, function in WMS Raw Send +qmi_message_wms_get_supported_messages_output_unref, function in WMS Get Supported Messages request
-qmi_message_wms_raw_send_input_get_sms_on_ims, function in WMS Raw Send +qmi_message_wms_list_messages_input_get_message_mode, function in WMS List Messages request
-qmi_message_wms_raw_send_input_new, function in WMS Raw Send +qmi_message_wms_list_messages_input_get_message_tag, function in WMS List Messages request
-qmi_message_wms_raw_send_input_ref, function in WMS Raw Send +qmi_message_wms_list_messages_input_get_storage_type, function in WMS List Messages request
-qmi_message_wms_raw_send_input_set_cdma_follow_on_dc, function in WMS Raw Send +qmi_message_wms_list_messages_input_new, function in WMS List Messages request
-qmi_message_wms_raw_send_input_set_cdma_force_on_dc, function in WMS Raw Send +qmi_message_wms_list_messages_input_ref, function in WMS List Messages request
-qmi_message_wms_raw_send_input_set_gsm_wcdma_link_timer, function in WMS Raw Send +qmi_message_wms_list_messages_input_set_message_mode, function in WMS List Messages request
-qmi_message_wms_raw_send_input_set_raw_message_data, function in WMS Raw Send +qmi_message_wms_list_messages_input_set_message_tag, function in WMS List Messages request
-qmi_message_wms_raw_send_input_set_sms_on_ims, function in WMS Raw Send +qmi_message_wms_list_messages_input_set_storage_type, function in WMS List Messages request
-qmi_message_wms_raw_send_input_unref, function in WMS Raw Send +qmi_message_wms_list_messages_input_unref, function in WMS List Messages request
-qmi_message_wms_raw_send_output_get_cdma_cause_code, function in WMS Raw Send +qmi_message_wms_list_messages_output_get_message_list, function in WMS List Messages request
-qmi_message_wms_raw_send_output_get_cdma_error_class, function in WMS Raw Send +qmi_message_wms_list_messages_output_get_result, function in WMS List Messages request
-qmi_message_wms_raw_send_output_get_gsm_wcdma_cause_info, function in WMS Raw Send +qmi_message_wms_list_messages_output_ref, function in WMS List Messages request
-qmi_message_wms_raw_send_output_get_message_delivery_failure_type, function in WMS Raw Send +qmi_message_wms_list_messages_output_unref, function in WMS List Messages request
-qmi_message_wms_raw_send_output_get_message_id, function in WMS Raw Send +qmi_message_wms_modify_tag_input_get_message_mode, function in WMS Modify Tag request
-qmi_message_wms_raw_send_output_get_result, function in WMS Raw Send +qmi_message_wms_modify_tag_input_get_message_tag, function in WMS Modify Tag request
-qmi_message_wms_raw_send_output_ref, function in WMS Raw Send +qmi_message_wms_modify_tag_input_new, function in WMS Modify Tag request
-qmi_message_wms_raw_send_output_unref, function in WMS Raw Send +qmi_message_wms_modify_tag_input_ref, function in WMS Modify Tag request
-qmi_message_wms_raw_write_input_get_raw_message_data, function in WMS Raw Write +qmi_message_wms_modify_tag_input_set_message_mode, function in WMS Modify Tag request
-qmi_message_wms_raw_write_input_new, function in WMS Raw Write +qmi_message_wms_modify_tag_input_set_message_tag, function in WMS Modify Tag request
-qmi_message_wms_raw_write_input_ref, function in WMS Raw Write +qmi_message_wms_modify_tag_input_unref, function in WMS Modify Tag request
-qmi_message_wms_raw_write_input_set_raw_message_data, function in WMS Raw Write +qmi_message_wms_modify_tag_output_get_result, function in WMS Modify Tag request
-qmi_message_wms_raw_write_input_unref, function in WMS Raw Write +qmi_message_wms_modify_tag_output_ref, function in WMS Modify Tag request
-qmi_message_wms_raw_write_output_get_memory_index, function in WMS Raw Write +qmi_message_wms_modify_tag_output_unref, function in WMS Modify Tag request
-qmi_message_wms_raw_write_output_get_result, function in WMS Raw Write +qmi_message_wms_raw_read_input_get_message_memory_storage_id, function in WMS Raw Read request
-qmi_message_wms_raw_write_output_ref, function in WMS Raw Write +qmi_message_wms_raw_read_input_get_message_mode, function in WMS Raw Read request
-qmi_message_wms_raw_write_output_unref, function in WMS Raw Write +qmi_message_wms_raw_read_input_get_sms_on_ims, function in WMS Raw Read request
-qmi_message_wms_reset_output_get_result, function in WMS Reset +qmi_message_wms_raw_read_input_new, function in WMS Raw Read request
-qmi_message_wms_reset_output_ref, function in WMS Reset +qmi_message_wms_raw_read_input_ref, function in WMS Raw Read request
-qmi_message_wms_reset_output_unref, function in WMS Reset +qmi_message_wms_raw_read_input_set_message_memory_storage_id, function in WMS Raw Read request
-qmi_message_wms_send_from_memory_storage_input_get_information, function in WMS Send From Memory Storage +qmi_message_wms_raw_read_input_set_message_mode, function in WMS Raw Read request
-qmi_message_wms_send_from_memory_storage_input_get_sms_on_ims, function in WMS Send From Memory Storage +qmi_message_wms_raw_read_input_set_sms_on_ims, function in WMS Raw Read request
-qmi_message_wms_send_from_memory_storage_input_new, function in WMS Send From Memory Storage +qmi_message_wms_raw_read_input_unref, function in WMS Raw Read request
-qmi_message_wms_send_from_memory_storage_input_ref, function in WMS Send From Memory Storage +qmi_message_wms_raw_read_output_get_raw_message_data, function in WMS Raw Read request
-qmi_message_wms_send_from_memory_storage_input_set_information, function in WMS Send From Memory Storage +qmi_message_wms_raw_read_output_get_result, function in WMS Raw Read request
-qmi_message_wms_send_from_memory_storage_input_set_sms_on_ims, function in WMS Send From Memory Storage +qmi_message_wms_raw_read_output_ref, function in WMS Raw Read request
-qmi_message_wms_send_from_memory_storage_input_unref, function in WMS Send From Memory Storage +qmi_message_wms_raw_read_output_unref, function in WMS Raw Read request
-qmi_message_wms_send_from_memory_storage_output_get_cdma_cause_code, function in WMS Send From Memory Storage +qmi_message_wms_raw_send_input_get_cdma_follow_on_dc, function in WMS Raw Send request
-qmi_message_wms_send_from_memory_storage_output_get_cdma_error_class, function in WMS Send From Memory Storage +qmi_message_wms_raw_send_input_get_cdma_force_on_dc, function in WMS Raw Send request
-qmi_message_wms_send_from_memory_storage_output_get_gsm_wcdma_cause_info, function in WMS Send From Memory Storage +qmi_message_wms_raw_send_input_get_gsm_wcdma_link_timer, function in WMS Raw Send request
-qmi_message_wms_send_from_memory_storage_output_get_message_delivery_failure_type, function in WMS Send From Memory Storage +qmi_message_wms_raw_send_input_get_raw_message_data, function in WMS Raw Send request
-qmi_message_wms_send_from_memory_storage_output_get_message_id, function in WMS Send From Memory Storage +qmi_message_wms_raw_send_input_get_sms_on_ims, function in WMS Raw Send request
-qmi_message_wms_send_from_memory_storage_output_get_result, function in WMS Send From Memory Storage +qmi_message_wms_raw_send_input_new, function in WMS Raw Send request
-qmi_message_wms_send_from_memory_storage_output_ref, function in WMS Send From Memory Storage +qmi_message_wms_raw_send_input_ref, function in WMS Raw Send request
-qmi_message_wms_send_from_memory_storage_output_unref, function in WMS Send From Memory Storage +qmi_message_wms_raw_send_input_set_cdma_follow_on_dc, function in WMS Raw Send request
-qmi_message_wms_set_event_report_input_get_new_mt_message_indicator, function in WMS Set Event Report +qmi_message_wms_raw_send_input_set_cdma_force_on_dc, function in WMS Raw Send request
-qmi_message_wms_set_event_report_input_new, function in WMS Set Event Report +qmi_message_wms_raw_send_input_set_gsm_wcdma_link_timer, function in WMS Raw Send request
-qmi_message_wms_set_event_report_input_ref, function in WMS Set Event Report +qmi_message_wms_raw_send_input_set_raw_message_data, function in WMS Raw Send request
-qmi_message_wms_set_event_report_input_set_new_mt_message_indicator, function in WMS Set Event Report +qmi_message_wms_raw_send_input_set_sms_on_ims, function in WMS Raw Send request
-qmi_message_wms_set_event_report_input_unref, function in WMS Set Event Report +qmi_message_wms_raw_send_input_unref, function in WMS Raw Send request
-qmi_message_wms_set_event_report_output_get_result, function in WMS Set Event Report +qmi_message_wms_raw_send_output_get_cdma_cause_code, function in WMS Raw Send request
-qmi_message_wms_set_event_report_output_ref, function in WMS Set Event Report +qmi_message_wms_raw_send_output_get_cdma_error_class, function in WMS Raw Send request
-qmi_message_wms_set_event_report_output_unref, function in WMS Set Event Report +qmi_message_wms_raw_send_output_get_gsm_wcdma_cause_info, function in WMS Raw Send request
-qmi_message_wms_set_routes_input_get_route_list, function in WMS Set Routes +qmi_message_wms_raw_send_output_get_message_delivery_failure_type, function in WMS Raw Send request
-qmi_message_wms_set_routes_input_get_transfer_status_report, function in WMS Set Routes +qmi_message_wms_raw_send_output_get_message_id, function in WMS Raw Send request
-qmi_message_wms_set_routes_input_new, function in WMS Set Routes +qmi_message_wms_raw_send_output_get_result, function in WMS Raw Send request
-qmi_message_wms_set_routes_input_ref, function in WMS Set Routes +qmi_message_wms_raw_send_output_ref, function in WMS Raw Send request
-qmi_message_wms_set_routes_input_set_route_list, function in WMS Set Routes +qmi_message_wms_raw_send_output_unref, function in WMS Raw Send request
-qmi_message_wms_set_routes_input_set_transfer_status_report, function in WMS Set Routes +qmi_message_wms_raw_write_input_get_raw_message_data, function in WMS Raw Write request
-qmi_message_wms_set_routes_input_unref, function in WMS Set Routes +qmi_message_wms_raw_write_input_new, function in WMS Raw Write request
-qmi_message_wms_set_routes_output_get_result, function in WMS Set Routes +qmi_message_wms_raw_write_input_ref, function in WMS Raw Write request
-qmi_message_wms_set_routes_output_ref, function in WMS Set Routes +qmi_message_wms_raw_write_input_set_raw_message_data, function in WMS Raw Write request
-qmi_message_wms_set_routes_output_unref, function in WMS Set Routes +qmi_message_wms_raw_write_input_unref, function in WMS Raw Write request +
+
+
+qmi_message_wms_raw_write_output_get_memory_index, function in WMS Raw Write request +
+
+
+qmi_message_wms_raw_write_output_get_result, function in WMS Raw Write request +
+
+
+qmi_message_wms_raw_write_output_ref, function in WMS Raw Write request +
+
+
+qmi_message_wms_raw_write_output_unref, function in WMS Raw Write request +
+
+
+qmi_message_wms_reset_output_get_result, function in WMS Reset request +
+
+
+qmi_message_wms_reset_output_ref, function in WMS Reset request +
+
+
+qmi_message_wms_reset_output_unref, function in WMS Reset request +
+
+
+qmi_message_wms_send_from_memory_storage_input_get_information, function in WMS Send From Memory Storage request +
+
+
+qmi_message_wms_send_from_memory_storage_input_get_sms_on_ims, function in WMS Send From Memory Storage request +
+
+
+qmi_message_wms_send_from_memory_storage_input_new, function in WMS Send From Memory Storage request +
+
+
+qmi_message_wms_send_from_memory_storage_input_ref, function in WMS Send From Memory Storage request +
+
+
+qmi_message_wms_send_from_memory_storage_input_set_information, function in WMS Send From Memory Storage request +
+
+
+qmi_message_wms_send_from_memory_storage_input_set_sms_on_ims, function in WMS Send From Memory Storage request +
+
+
+qmi_message_wms_send_from_memory_storage_input_unref, function in WMS Send From Memory Storage request +
+
+
+qmi_message_wms_send_from_memory_storage_output_get_cdma_cause_code, function in WMS Send From Memory Storage request +
+
+
+qmi_message_wms_send_from_memory_storage_output_get_cdma_error_class, function in WMS Send From Memory Storage request +
+
+
+qmi_message_wms_send_from_memory_storage_output_get_gsm_wcdma_cause_info, function in WMS Send From Memory Storage request +
+
+
+qmi_message_wms_send_from_memory_storage_output_get_message_delivery_failure_type, function in WMS Send From Memory Storage request +
+
+
+qmi_message_wms_send_from_memory_storage_output_get_message_id, function in WMS Send From Memory Storage request +
+
+
+qmi_message_wms_send_from_memory_storage_output_get_result, function in WMS Send From Memory Storage request +
+
+
+qmi_message_wms_send_from_memory_storage_output_ref, function in WMS Send From Memory Storage request +
+
+
+qmi_message_wms_send_from_memory_storage_output_unref, function in WMS Send From Memory Storage request +
+
+
+qmi_message_wms_set_event_report_input_get_new_mt_message_indicator, function in WMS Set Event Report request +
+
+
+qmi_message_wms_set_event_report_input_new, function in WMS Set Event Report request +
+
+
+qmi_message_wms_set_event_report_input_ref, function in WMS Set Event Report request +
+
+
+qmi_message_wms_set_event_report_input_set_new_mt_message_indicator, function in WMS Set Event Report request +
+
+
+qmi_message_wms_set_event_report_input_unref, function in WMS Set Event Report request +
+
+
+qmi_message_wms_set_event_report_output_get_result, function in WMS Set Event Report request +
+
+
+qmi_message_wms_set_event_report_output_ref, function in WMS Set Event Report request +
+
+
+qmi_message_wms_set_event_report_output_unref, function in WMS Set Event Report request +
+
+
+qmi_message_wms_set_routes_input_get_route_list, function in WMS Set Routes request +
+
+
+qmi_message_wms_set_routes_input_get_transfer_status_report, function in WMS Set Routes request +
+
+
+qmi_message_wms_set_routes_input_new, function in WMS Set Routes request +
+
+
+qmi_message_wms_set_routes_input_ref, function in WMS Set Routes request +
+
+
+qmi_message_wms_set_routes_input_set_route_list, function in WMS Set Routes request +
+
+
+qmi_message_wms_set_routes_input_set_transfer_status_report, function in WMS Set Routes request +
+
+
+qmi_message_wms_set_routes_input_unref, function in WMS Set Routes request +
+
+
+qmi_message_wms_set_routes_output_get_result, function in WMS Set Routes request +
+
+
+qmi_message_wms_set_routes_output_ref, function in WMS Set Routes request +
+
+
+qmi_message_wms_set_routes_output_unref, function in WMS Set Routes request
@@ -11815,6 +13884,10 @@
+QmiNasPsAttachAction, enum in NAS enumerations and flags +
+
+
QmiNasRadioInterface, enum in NAS enumerations and flags
@@ -11995,6 +14068,10 @@
+qmi_nas_ps_attach_action_get_string, function in NAS enumerations and flags +
+
+
qmi_nas_radio_interface_get_string, function in NAS enumerations and flags
@@ -12043,7 +14120,7 @@
-QMI_NAS_SIM_REJECT_STATE_SIM_VAILABLE, macro in API break replacements +QMI_NAS_SIM_REJECT_STATE_SIM_VAILABLE, macro in Deprecated interface
@@ -12181,6 +14258,10 @@
+QMI_PROTOCOL_ERROR_QOS_UNAVAILABLE, macro in Deprecated interface +
+
+
QmiProxy, struct in QmiProxy
@@ -12204,6 +14285,23 @@ QMI_PROXY_SOCKET_PATH, macro in QmiProxy
+

Q

+
+QmiQosEvent, enum in QOS enumerations and flags +
+
+
+QmiQosStatus, enum in QOS enumerations and flags +
+
+
+qmi_qos_event_get_string, function in QOS enumerations and flags +
+
+
+qmi_qos_status_get_string, function in QOS enumerations and flags +
+

S

QmiService, enum in Common enumerations and flags @@ -12315,51 +14413,51 @@
-qmi_utils_read_fixed_size_string_from_buffer, function in Common utilities +qmi_utils_read_fixed_size_string_from_buffer, function in Deprecated interface
-qmi_utils_read_gfloat_from_buffer, function in Common utilities +qmi_utils_read_gfloat_from_buffer, function in Deprecated interface
-qmi_utils_read_gint16_from_buffer, function in Common utilities +qmi_utils_read_gint16_from_buffer, function in Deprecated interface
-qmi_utils_read_gint32_from_buffer, function in Common utilities +qmi_utils_read_gint32_from_buffer, function in Deprecated interface
-qmi_utils_read_gint64_from_buffer, function in Common utilities +qmi_utils_read_gint64_from_buffer, function in Deprecated interface
-qmi_utils_read_gint8_from_buffer, function in Common utilities +qmi_utils_read_gint8_from_buffer, function in Deprecated interface
-qmi_utils_read_guint16_from_buffer, function in Common utilities +qmi_utils_read_guint16_from_buffer, function in Deprecated interface
-qmi_utils_read_guint32_from_buffer, function in Common utilities +qmi_utils_read_guint32_from_buffer, function in Deprecated interface
-qmi_utils_read_guint64_from_buffer, function in Common utilities +qmi_utils_read_guint64_from_buffer, function in Deprecated interface
-qmi_utils_read_guint8_from_buffer, function in Common utilities +qmi_utils_read_guint8_from_buffer, function in Deprecated interface
-qmi_utils_read_sized_guint_from_buffer, function in Common utilities +qmi_utils_read_sized_guint_from_buffer, function in Deprecated interface
-qmi_utils_read_string_from_buffer, function in Common utilities +qmi_utils_read_string_from_buffer, function in Deprecated interface
@@ -12367,47 +14465,47 @@
-qmi_utils_write_fixed_size_string_to_buffer, function in Common utilities +qmi_utils_write_fixed_size_string_to_buffer, function in Deprecated interface
-qmi_utils_write_gint16_to_buffer, function in Common utilities +qmi_utils_write_gint16_to_buffer, function in Deprecated interface
-qmi_utils_write_gint32_to_buffer, function in Common utilities +qmi_utils_write_gint32_to_buffer, function in Deprecated interface
-qmi_utils_write_gint64_to_buffer, function in Common utilities +qmi_utils_write_gint64_to_buffer, function in Deprecated interface
-qmi_utils_write_gint8_to_buffer, function in Common utilities +qmi_utils_write_gint8_to_buffer, function in Deprecated interface
-qmi_utils_write_guint16_to_buffer, function in Common utilities +qmi_utils_write_guint16_to_buffer, function in Deprecated interface
-qmi_utils_write_guint32_to_buffer, function in Common utilities +qmi_utils_write_guint32_to_buffer, function in Deprecated interface
-qmi_utils_write_guint64_to_buffer, function in Common utilities +qmi_utils_write_guint64_to_buffer, function in Deprecated interface
-qmi_utils_write_guint8_to_buffer, function in Common utilities +qmi_utils_write_guint8_to_buffer, function in Deprecated interface
-qmi_utils_write_sized_guint_to_buffer, function in Common utilities +qmi_utils_write_sized_guint_to_buffer, function in Deprecated interface
-qmi_utils_write_string_to_buffer, function in Common utilities +qmi_utils_write_string_to_buffer, function in Deprecated interface

V

@@ -12617,6 +14715,10 @@
+QmiWdsProfileFamily, enum in WDS enumerations and flags +
+
+
QmiWdsProfileType, enum in WDS enumerations and flags
@@ -12733,115 +14835,115 @@
-QMI_WDS_CDMA_CAUSE_CODE_DESTINATION_BUSY, macro in API break replacements +QMI_WDS_CDMA_CAUSE_CODE_DESTINATION_BUSY, macro in Deprecated interface
-QMI_WDS_CDMA_CAUSE_CODE_DESTINATION_NOT_AT_ADDRESS, macro in API break replacements +QMI_WDS_CDMA_CAUSE_CODE_DESTINATION_NOT_AT_ADDRESS, macro in Deprecated interface
-QMI_WDS_CDMA_CAUSE_CODE_DESTINATION_NO_ACK, macro in API break replacements +QMI_WDS_CDMA_CAUSE_CODE_DESTINATION_NO_ACK, macro in Deprecated interface
-QMI_WDS_CDMA_CAUSE_CODE_DESTINATION_NO_PAGE_RESPONSE, macro in API break replacements +QMI_WDS_CDMA_CAUSE_CODE_DESTINATION_NO_PAGE_RESPONSE, macro in Deprecated interface
-QMI_WDS_CDMA_CAUSE_CODE_DESTINATION_OTHER, macro in API break replacements +QMI_WDS_CDMA_CAUSE_CODE_DESTINATION_OTHER, macro in Deprecated interface
-QMI_WDS_CDMA_CAUSE_CODE_DESTINATION_OUT_OF_SERVICE, macro in API break replacements +QMI_WDS_CDMA_CAUSE_CODE_DESTINATION_OUT_OF_SERVICE, macro in Deprecated interface
-QMI_WDS_CDMA_CAUSE_CODE_DESTINATION_RESOURCE_SHORTAGE, macro in API break replacements +QMI_WDS_CDMA_CAUSE_CODE_DESTINATION_RESOURCE_SHORTAGE, macro in Deprecated interface
-QMI_WDS_CDMA_CAUSE_CODE_DESTINATION_SMS_DELIVERY_POSTPONED, macro in API break replacements +QMI_WDS_CDMA_CAUSE_CODE_DESTINATION_SMS_DELIVERY_POSTPONED, macro in Deprecated interface
-QMI_WDS_CDMA_CAUSE_CODE_GENERAL_ENCODING, macro in API break replacements +QMI_WDS_CDMA_CAUSE_CODE_GENERAL_ENCODING, macro in Deprecated interface
-QMI_WDS_CDMA_CAUSE_CODE_GENERAL_MISSING_EXPECTED_PARAMETER, macro in API break replacements +QMI_WDS_CDMA_CAUSE_CODE_GENERAL_MISSING_EXPECTED_PARAMETER, macro in Deprecated interface
-QMI_WDS_CDMA_CAUSE_CODE_GENERAL_MISSING_MANDATORY_PARAMETER, macro in API break replacements +QMI_WDS_CDMA_CAUSE_CODE_GENERAL_MISSING_MANDATORY_PARAMETER, macro in Deprecated interface
-QMI_WDS_CDMA_CAUSE_CODE_GENERAL_OTHER, macro in API break replacements +QMI_WDS_CDMA_CAUSE_CODE_GENERAL_OTHER, macro in Deprecated interface
-QMI_WDS_CDMA_CAUSE_CODE_GENERAL_SMS_DESTINATION_DENIED, macro in API break replacements +QMI_WDS_CDMA_CAUSE_CODE_GENERAL_SMS_DESTINATION_DENIED, macro in Deprecated interface
-QMI_WDS_CDMA_CAUSE_CODE_GENERAL_SMS_NOT_SUPPORTED, macro in API break replacements +QMI_WDS_CDMA_CAUSE_CODE_GENERAL_SMS_NOT_SUPPORTED, macro in Deprecated interface
-QMI_WDS_CDMA_CAUSE_CODE_GENERAL_SMS_ORIGIN_DENIED, macro in API break replacements +QMI_WDS_CDMA_CAUSE_CODE_GENERAL_SMS_ORIGIN_DENIED, macro in Deprecated interface
-QMI_WDS_CDMA_CAUSE_CODE_GENERAL_SUPPLEMENTARY_SERVICE_NOT_SUPPORTED, macro in API break replacements +QMI_WDS_CDMA_CAUSE_CODE_GENERAL_SUPPLEMENTARY_SERVICE_NOT_SUPPORTED, macro in Deprecated interface
-QMI_WDS_CDMA_CAUSE_CODE_GENERAL_UNEXPECTED_PARAMETER_VALUE, macro in API break replacements +QMI_WDS_CDMA_CAUSE_CODE_GENERAL_UNEXPECTED_PARAMETER_VALUE, macro in Deprecated interface
-QMI_WDS_CDMA_CAUSE_CODE_GENERAL_UNRECOGNIZED_PARAMETER_VALUE, macro in API break replacements +QMI_WDS_CDMA_CAUSE_CODE_GENERAL_UNRECOGNIZED_PARAMETER_VALUE, macro in Deprecated interface
-QMI_WDS_CDMA_CAUSE_CODE_GENERAL_USER_DATA_SIZE_ERROR, macro in API break replacements +QMI_WDS_CDMA_CAUSE_CODE_GENERAL_USER_DATA_SIZE_ERROR, macro in Deprecated interface
-QMI_WDS_CDMA_CAUSE_CODE_NETWORK_ADDRESS_TRANSLATION_FAILURE, macro in API break replacements +QMI_WDS_CDMA_CAUSE_CODE_NETWORK_ADDRESS_TRANSLATION_FAILURE, macro in Deprecated interface
-QMI_WDS_CDMA_CAUSE_CODE_NETWORK_ADDRESS_VACANT, macro in API break replacements +QMI_WDS_CDMA_CAUSE_CODE_NETWORK_ADDRESS_VACANT, macro in Deprecated interface
-QMI_WDS_CDMA_CAUSE_CODE_NETWORK_FAILURE, macro in API break replacements +QMI_WDS_CDMA_CAUSE_CODE_NETWORK_FAILURE, macro in Deprecated interface
-QMI_WDS_CDMA_CAUSE_CODE_NETWORK_INVALID_TELESERVICE_ID, macro in API break replacements +QMI_WDS_CDMA_CAUSE_CODE_NETWORK_INVALID_TELESERVICE_ID, macro in Deprecated interface
-QMI_WDS_CDMA_CAUSE_CODE_NETWORK_OTHER, macro in API break replacements +QMI_WDS_CDMA_CAUSE_CODE_NETWORK_OTHER, macro in Deprecated interface
-QMI_WDS_CDMA_CAUSE_CODE_NETWORK_RESOURCE_SHORTAGE, macro in API break replacements +QMI_WDS_CDMA_CAUSE_CODE_NETWORK_RESOURCE_SHORTAGE, macro in Deprecated interface
-QMI_WDS_CDMA_CAUSE_CODE_RADIO_INTERFACE_INCOMPATIBILITY, macro in API break replacements +QMI_WDS_CDMA_CAUSE_CODE_RADIO_INTERFACE_INCOMPATIBILITY, macro in Deprecated interface
-QMI_WDS_CDMA_CAUSE_CODE_RADIO_INTERFACE_OTHER, macro in API break replacements +QMI_WDS_CDMA_CAUSE_CODE_RADIO_INTERFACE_OTHER, macro in Deprecated interface
-QMI_WDS_CDMA_CAUSE_CODE_RADIO_INTERFACE_RESOURCE_SHORTAGE, macro in API break replacements +QMI_WDS_CDMA_CAUSE_CODE_RADIO_INTERFACE_RESOURCE_SHORTAGE, macro in Deprecated interface
@@ -12925,6 +15027,10 @@
+qmi_wds_profile_family_get_string, function in WDS enumerations and flags +
+
+
qmi_wds_profile_type_get_string, function in WDS enumerations and flags
@@ -13162,6 +15268,6 @@
+
Generated by GTK-Doc V1.29 \ No newline at end of file diff -Nru libqmi-1.18.0/docs/reference/libqmi-glib/html/ch01.html libqmi-1.22.0/docs/reference/libqmi-glib/html/ch01.html --- libqmi-1.18.0/docs/reference/libqmi-glib/html/ch01.html 2017-03-22 12:28:29.000000000 +0100 +++ libqmi-1.22.0/docs/reference/libqmi-glib/html/ch01.html 2019-01-08 15:19:01.000000000 +0100 @@ -3,12 +3,12 @@ Core: libqmi-glib Reference Manual - + - + @@ -53,6 +53,6 @@ +
Generated by GTK-Doc V1.29 \ No newline at end of file diff -Nru libqmi-1.18.0/docs/reference/libqmi-glib/html/ch02.html libqmi-1.22.0/docs/reference/libqmi-glib/html/ch02.html --- libqmi-1.18.0/docs/reference/libqmi-glib/html/ch02.html 2017-03-22 12:28:29.000000000 +0100 +++ libqmi-1.22.0/docs/reference/libqmi-glib/html/ch02.html 2019-01-08 15:19:01.000000000 +0100 @@ -3,12 +3,12 @@ Device Management Service (DMS): libqmi-glib Reference Manual - + - + @@ -31,174 +31,180 @@
DMS Indications
-DMS Event Report +DMS Event Report indication
DMS Requests
-DMS Reset +DMS Reset request
-DMS Set Event Report +DMS Set Event Report request
-DMS Get Capabilities +DMS Get Capabilities request
-DMS Get Manufacturer +DMS Get Manufacturer request
-DMS Get Model +DMS Get Model request
-DMS Get Revision +DMS Get Revision request
-DMS Get MSISDN +DMS Get MSISDN request
-DMS Get IDs +DMS Get IDs request
-DMS Get Power State +DMS Get Power State request
-DMS UIM Set PIN Protection +DMS UIM Set PIN Protection request
-DMS UIM Verify PIN +DMS UIM Verify PIN request
-DMS UIM Unblock PIN +DMS UIM Unblock PIN request
-DMS UIM Change PIN +DMS UIM Change PIN request
-DMS UIM Get PIN Status +DMS UIM Get PIN Status request
-DMS Get Hardware Revision +DMS Get Hardware Revision request
-DMS Get Operating Mode +DMS Get Operating Mode request
-DMS Set Operating Mode +DMS Set Operating Mode request
-DMS Get Time +DMS Get Time request
-DMS Get PRL Version +DMS Get PRL Version request
-DMS Get Activation State +DMS Get Activation State request
-DMS Activate Automatic +DMS Activate Automatic request
-DMS Activate Manual +DMS Activate Manual request
-DMS Get User Lock State +DMS Get User Lock State request
-DMS Set User Lock State +DMS Set User Lock State request
-DMS Set User Lock Code +DMS Set User Lock Code request
-DMS Read User Data +DMS Read User Data request
-DMS Write User Data +DMS Write User Data request
-DMS Read ERI File +DMS Read ERI File request
-DMS Restore Factory Defaults +DMS Restore Factory Defaults request
-DMS Validate Service Programming Code +DMS Validate Service Programming Code request
-DMS UIM Get ICCID +DMS UIM Get ICCID request
-DMS Set Firmware ID +DMS Set Firmware ID request
-DMS UIM Get CK Status +DMS UIM Get CK Status request
-DMS UIM Set CK Protection +DMS UIM Set CK Protection request
-DMS UIM Unblock CK +DMS UIM Unblock CK request
-DMS UIM Get IMSI +DMS UIM Get IMSI request
-DMS UIM Get State +DMS UIM Get State request
-DMS Get Band Capabilities +DMS Get Band Capabilities request
-DMS Get Factory SKU +DMS Get Factory SKU request
-DMS Get Firmware Preference +DMS Get Firmware Preference request
-DMS Set Firmware Preference +DMS Set Firmware Preference request
-DMS List Stored Images +DMS List Stored Images request
-DMS Delete Stored Image +DMS Delete Stored Image request
-DMS Set Time +DMS Set Time request
-DMS Get Stored Image Info +DMS Get Stored Image Info request
-DMS Get Alt Net Config +DMS Get Alt Net Config request
-DMS Set Alt Net Config +DMS Set Alt Net Config request
-DMS Get Boot Image Download Mode +DMS Get Boot Image Download Mode request
-DMS Set Boot Image Download Mode +DMS Set Boot Image Download Mode request
-DMS Get Software Version +DMS Get Software Version request
-DMS Set Service Programming Code +DMS Set Service Programming Code request
-DMS HP Change Device Mode +DMS HP Change Device Mode request
-DMS Swi Get Current Firmware +DMS Swi Get Current Firmware request
-DMS Set FCC Authentication +DMS Swi Get USB Composition request
-DMS Get Supported Messages +DMS Swi Set USB Composition request +
+
+DMS Set FCC Authentication request +
+
+DMS Get Supported Messages request
@@ -206,6 +212,6 @@ DMS Indications +
Generated by GTK-Doc V1.29 \ No newline at end of file diff -Nru libqmi-1.18.0/docs/reference/libqmi-glib/html/ch02s02.html libqmi-1.22.0/docs/reference/libqmi-glib/html/ch02s02.html --- libqmi-1.18.0/docs/reference/libqmi-glib/html/ch02s02.html 2017-03-22 12:28:29.000000000 +0100 +++ libqmi-1.22.0/docs/reference/libqmi-glib/html/ch02s02.html 2019-01-08 15:19:01.000000000 +0100 @@ -3,12 +3,12 @@ DMS Requests: libqmi-glib Reference Manual - + - - - + + + @@ -16,12 +16,12 @@ Home Up -Prev -Next +Prev +Next

DMS Requests

+
Generated by GTK-Doc V1.29 \ No newline at end of file diff -Nru libqmi-1.18.0/docs/reference/libqmi-glib/html/ch03.html libqmi-1.22.0/docs/reference/libqmi-glib/html/ch03.html --- libqmi-1.18.0/docs/reference/libqmi-glib/html/ch03.html 2017-03-22 12:28:29.000000000 +0100 +++ libqmi-1.22.0/docs/reference/libqmi-glib/html/ch03.html 2019-01-08 15:19:01.000000000 +0100 @@ -3,12 +3,12 @@ Network Access Service (NAS): libqmi-glib Reference Manual - + - + - + @@ -16,7 +16,7 @@ Home -Prev +Prev Next
@@ -32,94 +32,97 @@
NAS Indications
-NAS Event Report +NAS Event Report indication
-NAS Network Time +NAS Network Time indication
-NAS Serving System +NAS Serving System indication
-NAS System Info +NAS System Info indication
-NAS Signal Info +NAS Signal Info indication
-NAS Operator Name +NAS Operator Name indication
NAS Requests
-NAS Reset +NAS Reset request
-NAS Set Event Report +NAS Set Event Report request
-NAS Register Indications +NAS Register Indications request
-NAS Get Signal Strength +NAS Get Signal Strength request
-NAS Network Scan +NAS Network Scan request
-NAS Initiate Network Register +NAS Initiate Network Register request
-NAS Get Serving System +NAS Attach Detach request
-NAS Get Home Network +NAS Get Serving System request
-NAS Set Technology Preference +NAS Get Home Network request
-NAS Get Technology Preference +NAS Set Technology Preference request
-NAS Get RF Band Information +NAS Get Technology Preference request
-NAS Set System Selection Preference +NAS Get RF Band Information request
-NAS Get System Selection Preference +NAS Set System Selection Preference request
-NAS Get System Info +NAS Get System Selection Preference request
-NAS Get Signal Info +NAS Get System Info request
-NAS Config Signal Info +NAS Get Signal Info request
-NAS Force Network Search +NAS Config Signal Info request
-NAS Get CDMA Position Info +NAS Force Network Search request
-NAS Get Tx Rx Info +NAS Get CDMA Position Info request
-NAS Get Cell Location Info +NAS Get Tx Rx Info request
-NAS Get Supported Messages +NAS Get Cell Location Info request
-NAS Get LTE Cphy CA Info +NAS Get Supported Messages request
-NAS Get Operator Name +NAS Get LTE Cphy CA Info request +
+
+NAS Get Operator Name request
@@ -127,6 +130,6 @@ NAS Indications +
Generated by GTK-Doc V1.29 \ No newline at end of file diff -Nru libqmi-1.18.0/docs/reference/libqmi-glib/html/ch03s02.html libqmi-1.22.0/docs/reference/libqmi-glib/html/ch03s02.html --- libqmi-1.18.0/docs/reference/libqmi-glib/html/ch03s02.html 2017-03-22 12:28:29.000000000 +0100 +++ libqmi-1.22.0/docs/reference/libqmi-glib/html/ch03s02.html 2019-01-08 15:19:01.000000000 +0100 @@ -3,12 +3,12 @@ NAS Requests: libqmi-glib Reference Manual - + - - - + + + @@ -16,12 +16,12 @@ Home Up -Prev -Next +Prev +Next

NAS Requests

+
Generated by GTK-Doc V1.29 \ No newline at end of file diff -Nru libqmi-1.18.0/docs/reference/libqmi-glib/html/ch04.html libqmi-1.22.0/docs/reference/libqmi-glib/html/ch04.html --- libqmi-1.18.0/docs/reference/libqmi-glib/html/ch04.html 2017-03-22 12:28:29.000000000 +0100 +++ libqmi-1.22.0/docs/reference/libqmi-glib/html/ch04.html 2019-01-08 15:19:01.000000000 +0100 @@ -3,12 +3,12 @@ Wireless Data Service (WDS): libqmi-glib Reference Manual - + - + - + @@ -16,7 +16,7 @@ Home -Prev +Prev Next
@@ -32,85 +32,97 @@
WDS Indications
-WDS Event Report +WDS Event Report indication
-WDS Packet Service Status +WDS Packet Service Status indication
WDS Requests
-WDS Reset +WDS Reset request
-WDS Set Event Report +WDS Set Event Report request
-WDS Start Network +WDS Start Network request
-WDS Stop Network +WDS Stop Network request
-WDS Get Packet Service Status +WDS Get Packet Service Status request
-WDS Get Packet Statistics +WDS Get Packet Statistics request
-WDS Go Dormant +WDS Go Dormant request
-WDS Go Active +WDS Go Active request
-WDS Create Profile +WDS Create Profile request
-WDS Modify Profile +WDS Modify Profile request
-WDS Delete Profile +WDS Delete Profile request
-WDS Get Profile List +WDS Get Profile List request
-WDS Get Profile Settings +WDS Get Profile Settings request
-WDS Get Default Settings +WDS Get Default Profile Num request
-WDS Get Current Settings +WDS Set Default Profile Num request
-WDS Get Dormancy Status +WDS Get Default Settings request
-WDS Get Autoconnect Settings +WDS Get Current Settings request
-WDS Set Autoconnect Settings +WDS Get Dormancy Status request
-WDS Get Data Bearer Technology +WDS Get Autoconnect Settings request
-WDS Get Current Data Bearer Technology +WDS Set Autoconnect Settings request
-WDS Set IP Family +WDS Get Data Bearer Technology request
-WDS Get Supported Messages +WDS Get Current Data Bearer Technology request
-WDS Get PDN Throttle Info +WDS Set IP Family request
-WDS Bind Mux Data Port +WDS Get Supported Messages request +
+
+WDS Get PDN Throttle Info request +
+
+WDS Bind Mux Data Port request +
+
+WDS Get Channel Rates request +
+
+WDS Swi Create Profile Indexed request
@@ -118,6 +130,6 @@ WDS Indications +
Generated by GTK-Doc V1.29 \ No newline at end of file diff -Nru libqmi-1.18.0/docs/reference/libqmi-glib/html/ch04s02.html libqmi-1.22.0/docs/reference/libqmi-glib/html/ch04s02.html --- libqmi-1.18.0/docs/reference/libqmi-glib/html/ch04s02.html 2017-03-22 12:28:29.000000000 +0100 +++ libqmi-1.22.0/docs/reference/libqmi-glib/html/ch04s02.html 2019-01-08 15:19:01.000000000 +0100 @@ -3,12 +3,12 @@ WDS Requests: libqmi-glib Reference Manual - + - - - + + + @@ -16,12 +16,12 @@ Home Up -Prev -Next +Prev +Next

WDS Requests

+
Generated by GTK-Doc V1.29 \ No newline at end of file diff -Nru libqmi-1.18.0/docs/reference/libqmi-glib/html/ch05.html libqmi-1.22.0/docs/reference/libqmi-glib/html/ch05.html --- libqmi-1.18.0/docs/reference/libqmi-glib/html/ch05.html 2017-03-22 12:28:29.000000000 +0100 +++ libqmi-1.22.0/docs/reference/libqmi-glib/html/ch05.html 2019-01-08 15:19:01.000000000 +0100 @@ -3,12 +3,12 @@ Wireless Messaging Service (WMS): libqmi-glib Reference Manual - + - + - + @@ -16,7 +16,7 @@ Home -Prev +Prev Next @@ -85,6 +85,6 @@ WMS Indications +
Generated by GTK-Doc V1.29 \ No newline at end of file diff -Nru libqmi-1.18.0/docs/reference/libqmi-glib/html/ch05s02.html libqmi-1.22.0/docs/reference/libqmi-glib/html/ch05s02.html --- libqmi-1.18.0/docs/reference/libqmi-glib/html/ch05s02.html 2017-03-22 12:28:29.000000000 +0100 +++ libqmi-1.22.0/docs/reference/libqmi-glib/html/ch05s02.html 2019-01-08 15:19:01.000000000 +0100 @@ -3,12 +3,12 @@ WMS Requests: libqmi-glib Reference Manual - + - - - + + + @@ -16,12 +16,12 @@ Home Up -Prev -Next +Prev +Next

WMS Requests

+
Generated by GTK-Doc V1.29 \ No newline at end of file diff -Nru libqmi-1.18.0/docs/reference/libqmi-glib/html/ch06.html libqmi-1.22.0/docs/reference/libqmi-glib/html/ch06.html --- libqmi-1.18.0/docs/reference/libqmi-glib/html/ch06.html 2017-03-22 12:28:29.000000000 +0100 +++ libqmi-1.22.0/docs/reference/libqmi-glib/html/ch06.html 2019-01-08 15:19:01.000000000 +0100 @@ -3,12 +3,12 @@ Persistent Device Configuration (PDC): libqmi-glib Reference Manual - + - + - + @@ -16,7 +16,7 @@ Home -Prev +Prev Next @@ -100,6 +100,6 @@ PDC Indications +
Generated by GTK-Doc V1.29 \ No newline at end of file diff -Nru libqmi-1.18.0/docs/reference/libqmi-glib/html/ch06s02.html libqmi-1.22.0/docs/reference/libqmi-glib/html/ch06s02.html --- libqmi-1.18.0/docs/reference/libqmi-glib/html/ch06s02.html 2017-03-22 12:28:29.000000000 +0100 +++ libqmi-1.22.0/docs/reference/libqmi-glib/html/ch06s02.html 2019-01-08 15:19:01.000000000 +0100 @@ -3,12 +3,12 @@ PDC Requests: libqmi-glib Reference Manual - + - - - + + + @@ -16,12 +16,12 @@ Home Up -Prev -Next +Prev +Next

PDC Requests

+
Generated by GTK-Doc V1.29 \ No newline at end of file diff -Nru libqmi-1.18.0/docs/reference/libqmi-glib/html/ch07.html libqmi-1.22.0/docs/reference/libqmi-glib/html/ch07.html --- libqmi-1.18.0/docs/reference/libqmi-glib/html/ch07.html 2017-03-22 12:28:29.000000000 +0100 +++ libqmi-1.22.0/docs/reference/libqmi-glib/html/ch07.html 2019-01-08 15:19:01.000000000 +0100 @@ -3,12 +3,12 @@ Position Determination Service (PDS): libqmi-glib Reference Manual - + - + - + @@ -16,7 +16,7 @@ Home -Prev +Prev Next @@ -71,6 +71,6 @@ PDS Indications +
Generated by GTK-Doc V1.29 \ No newline at end of file diff -Nru libqmi-1.18.0/docs/reference/libqmi-glib/html/ch07s02.html libqmi-1.22.0/docs/reference/libqmi-glib/html/ch07s02.html --- libqmi-1.18.0/docs/reference/libqmi-glib/html/ch07s02.html 2017-03-22 12:28:29.000000000 +0100 +++ libqmi-1.22.0/docs/reference/libqmi-glib/html/ch07s02.html 2019-01-08 15:19:01.000000000 +0100 @@ -3,12 +3,12 @@ PDS Requests: libqmi-glib Reference Manual - + - - - + + + @@ -16,12 +16,12 @@ Home Up -Prev -Next +Prev +Next

PDS Requests

+
Generated by GTK-Doc V1.29 \ No newline at end of file diff -Nru libqmi-1.18.0/docs/reference/libqmi-glib/html/ch08.html libqmi-1.22.0/docs/reference/libqmi-glib/html/ch08.html --- libqmi-1.18.0/docs/reference/libqmi-glib/html/ch08.html 2017-03-22 12:28:28.000000000 +0100 +++ libqmi-1.22.0/docs/reference/libqmi-glib/html/ch08.html 2019-01-08 15:19:01.000000000 +0100 @@ -3,12 +3,12 @@ Phonebook Management Service (PBM): libqmi-glib Reference Manual - + - + - + @@ -16,7 +16,7 @@ Home -Prev +Prev Next @@ -46,6 +46,6 @@ PBM Requests +
Generated by GTK-Doc V1.29 \ No newline at end of file diff -Nru libqmi-1.18.0/docs/reference/libqmi-glib/html/ch09.html libqmi-1.22.0/docs/reference/libqmi-glib/html/ch09.html --- libqmi-1.18.0/docs/reference/libqmi-glib/html/ch09.html 2017-03-22 12:28:29.000000000 +0100 +++ libqmi-1.22.0/docs/reference/libqmi-glib/html/ch09.html 2019-01-08 15:19:01.000000000 +0100 @@ -3,12 +3,12 @@ User Identity Module (UIM) service: libqmi-glib Reference Manual - + - + - + @@ -16,7 +16,7 @@ Home -Prev +Prev Next

-UIM Requests

+UIM Indications +
Generated by GTK-Doc V1.29 \ No newline at end of file diff -Nru libqmi-1.18.0/docs/reference/libqmi-glib/html/ch09s02.html libqmi-1.22.0/docs/reference/libqmi-glib/html/ch09s02.html --- libqmi-1.18.0/docs/reference/libqmi-glib/html/ch09s02.html 1970-01-01 01:00:00.000000000 +0100 +++ libqmi-1.22.0/docs/reference/libqmi-glib/html/ch09s02.html 2019-01-08 15:19:01.000000000 +0100 @@ -0,0 +1,27 @@ + + + + +UIM Requests: libqmi-glib Reference Manual + + + + + + + + + + + + + + + + +

+UIM Requests

+ + + \ No newline at end of file diff -Nru libqmi-1.18.0/docs/reference/libqmi-glib/html/ch10.html libqmi-1.22.0/docs/reference/libqmi-glib/html/ch10.html --- libqmi-1.18.0/docs/reference/libqmi-glib/html/ch10.html 2017-03-22 12:28:28.000000000 +0100 +++ libqmi-1.22.0/docs/reference/libqmi-glib/html/ch10.html 2019-01-08 15:19:01.000000000 +0100 @@ -3,12 +3,12 @@ Open Mobile Alliance Service (OMA): libqmi-glib Reference Manual - + - + - + @@ -16,7 +16,7 @@ Home -Prev +Prev Next @@ -65,6 +65,6 @@ OMA Indications +
Generated by GTK-Doc V1.29 \ No newline at end of file diff -Nru libqmi-1.18.0/docs/reference/libqmi-glib/html/ch10s02.html libqmi-1.22.0/docs/reference/libqmi-glib/html/ch10s02.html --- libqmi-1.18.0/docs/reference/libqmi-glib/html/ch10s02.html 2017-03-22 12:28:29.000000000 +0100 +++ libqmi-1.22.0/docs/reference/libqmi-glib/html/ch10s02.html 2019-01-08 15:19:01.000000000 +0100 @@ -3,12 +3,12 @@ OMA Requests: libqmi-glib Reference Manual - + - - - + + + @@ -16,12 +16,12 @@ Home Up -Prev -Next +Prev +Next

OMA Requests

+
Generated by GTK-Doc V1.29 \ No newline at end of file diff -Nru libqmi-1.18.0/docs/reference/libqmi-glib/html/ch11.html libqmi-1.22.0/docs/reference/libqmi-glib/html/ch11.html --- libqmi-1.18.0/docs/reference/libqmi-glib/html/ch11.html 2017-03-22 12:28:29.000000000 +0100 +++ libqmi-1.22.0/docs/reference/libqmi-glib/html/ch11.html 2019-01-08 15:19:01.000000000 +0100 @@ -3,12 +3,12 @@ Wireless Data Administrative Service (WDA): libqmi-glib Reference Manual - + - + - + @@ -16,7 +16,7 @@ Home -Prev +Prev Next @@ -46,6 +46,6 @@ WDA Requests +
Generated by GTK-Doc V1.29 \ No newline at end of file diff -Nru libqmi-1.18.0/docs/reference/libqmi-glib/html/ch12.html libqmi-1.22.0/docs/reference/libqmi-glib/html/ch12.html --- libqmi-1.18.0/docs/reference/libqmi-glib/html/ch12.html 2017-03-22 12:28:29.000000000 +0100 +++ libqmi-1.22.0/docs/reference/libqmi-glib/html/ch12.html 2019-01-08 15:19:01.000000000 +0100 @@ -3,12 +3,12 @@ Voice: libqmi-glib Reference Manual - + - + - + @@ -16,7 +16,7 @@ Home -Prev +Prev Next @@ -56,6 +56,6 @@ Voice Indications +
Generated by GTK-Doc V1.29 \ No newline at end of file diff -Nru libqmi-1.18.0/docs/reference/libqmi-glib/html/ch12s02.html libqmi-1.22.0/docs/reference/libqmi-glib/html/ch12s02.html --- libqmi-1.18.0/docs/reference/libqmi-glib/html/ch12s02.html 2017-03-22 12:28:29.000000000 +0100 +++ libqmi-1.22.0/docs/reference/libqmi-glib/html/ch12s02.html 2019-01-08 15:19:01.000000000 +0100 @@ -3,12 +3,12 @@ Voice Requests: libqmi-glib Reference Manual - + - - - + + + @@ -16,12 +16,12 @@ Home Up -Prev -Next +Prev +Next

Voice Requests

+
Generated by GTK-Doc V1.29 \ No newline at end of file diff -Nru libqmi-1.18.0/docs/reference/libqmi-glib/html/ch13.html libqmi-1.22.0/docs/reference/libqmi-glib/html/ch13.html --- libqmi-1.18.0/docs/reference/libqmi-glib/html/ch13.html 2017-03-22 12:28:29.000000000 +0100 +++ libqmi-1.22.0/docs/reference/libqmi-glib/html/ch13.html 2019-01-08 15:19:01.000000000 +0100 @@ -2,13 +2,13 @@ -Compatibility with older versions: libqmi-glib Reference Manual - +Location Service (LOC): libqmi-glib Reference Manual + - - - + + + @@ -16,17 +16,102 @@ Home -Prev -Next +Prev +Next

-Compatibility with older versions

- +Location Service (LOC)
+ +

+LOC Indications

+
Generated by GTK-Doc V1.29 \ No newline at end of file diff -Nru libqmi-1.18.0/docs/reference/libqmi-glib/html/ch13s02.html libqmi-1.22.0/docs/reference/libqmi-glib/html/ch13s02.html --- libqmi-1.18.0/docs/reference/libqmi-glib/html/ch13s02.html 1970-01-01 01:00:00.000000000 +0100 +++ libqmi-1.22.0/docs/reference/libqmi-glib/html/ch13s02.html 2019-01-08 15:19:01.000000000 +0100 @@ -0,0 +1,27 @@ + + + + +LOC Requests: libqmi-glib Reference Manual + + + + + + + + + + + + + + + + +

+LOC Requests

+ + + \ No newline at end of file diff -Nru libqmi-1.18.0/docs/reference/libqmi-glib/html/ch14.html libqmi-1.22.0/docs/reference/libqmi-glib/html/ch14.html --- libqmi-1.18.0/docs/reference/libqmi-glib/html/ch14.html 1970-01-01 01:00:00.000000000 +0100 +++ libqmi-1.22.0/docs/reference/libqmi-glib/html/ch14.html 2019-01-08 15:19:01.000000000 +0100 @@ -0,0 +1,63 @@ + + + + +QoS Service (QoS): libqmi-glib Reference Manual + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff -Nru libqmi-1.18.0/docs/reference/libqmi-glib/html/ch14s02.html libqmi-1.22.0/docs/reference/libqmi-glib/html/ch14s02.html --- libqmi-1.18.0/docs/reference/libqmi-glib/html/ch14s02.html 1970-01-01 01:00:00.000000000 +0100 +++ libqmi-1.22.0/docs/reference/libqmi-glib/html/ch14s02.html 2019-01-08 15:19:01.000000000 +0100 @@ -0,0 +1,27 @@ + + + + +QoS Requests: libqmi-glib Reference Manual + + + + + + + + + + + + + + + + +

+QoS Requests

+ + + \ No newline at end of file diff -Nru libqmi-1.18.0/docs/reference/libqmi-glib/html/ch15.html libqmi-1.22.0/docs/reference/libqmi-glib/html/ch15.html --- libqmi-1.18.0/docs/reference/libqmi-glib/html/ch15.html 1970-01-01 01:00:00.000000000 +0100 +++ libqmi-1.22.0/docs/reference/libqmi-glib/html/ch15.html 2019-01-08 15:19:01.000000000 +0100 @@ -0,0 +1,32 @@ + + + + +Compatibility with older versions: libqmi-glib Reference Manual + + + + + + + + + + + + + + + + +
+

+Compatibility with older versions

+ +
+ + + \ No newline at end of file diff -Nru libqmi-1.18.0/docs/reference/libqmi-glib/html/deprecated-api-index.html libqmi-1.22.0/docs/reference/libqmi-glib/html/deprecated-api-index.html --- libqmi-1.18.0/docs/reference/libqmi-glib/html/deprecated-api-index.html 2017-03-22 12:28:29.000000000 +0100 +++ libqmi-1.22.0/docs/reference/libqmi-glib/html/deprecated-api-index.html 1970-01-01 01:00:00.000000000 +0100 @@ -1,286 +0,0 @@ - - - - -Index of deprecated API: libqmi-glib Reference Manual - - - - - - - - - - - - - - - - -
-

-Index of deprecated API

-

D

-
-qmi_device_close, function in QmiDevice -
-
-
-qmi_device_command, function in QmiDevice -
-
-
-qmi_device_command_finish, function in QmiDevice -
-
-

M

-
-qmi_message_dms_set_service_programming_code_input_get_current, function in API break replacements -
-
-
-qmi_message_dms_set_service_programming_code_input_get_new, function in API break replacements -
-
-
-qmi_message_dms_set_service_programming_code_input_set_current, function in API break replacements -
-
-
-qmi_message_dms_set_service_programming_code_input_set_new, function in API break replacements -
-
-
-qmi_message_get_printable, function in QmiMessage -
-
-
-qmi_message_get_version_introduced, function in QmiMessage -
-
-

N

-
-QMI_NAS_SIM_REJECT_STATE_SIM_VAILABLE, macro in API break replacements -
-
-

U

-
-qmi_utils_read_fixed_size_string_from_buffer, function in Common utilities -
-
-
-qmi_utils_read_gfloat_from_buffer, function in Common utilities -
-
-
-qmi_utils_read_gint16_from_buffer, function in Common utilities -
-
-
-qmi_utils_read_gint32_from_buffer, function in Common utilities -
-
-
-qmi_utils_read_gint64_from_buffer, function in Common utilities -
-
-
-qmi_utils_read_gint8_from_buffer, function in Common utilities -
-
-
-qmi_utils_read_guint16_from_buffer, function in Common utilities -
-
-
-qmi_utils_read_guint32_from_buffer, function in Common utilities -
-
-
-qmi_utils_read_guint64_from_buffer, function in Common utilities -
-
-
-qmi_utils_read_guint8_from_buffer, function in Common utilities -
-
-
-qmi_utils_read_sized_guint_from_buffer, function in Common utilities -
-
-
-qmi_utils_read_string_from_buffer, function in Common utilities -
-
-
-qmi_utils_write_fixed_size_string_to_buffer, function in Common utilities -
-
-
-qmi_utils_write_gint16_to_buffer, function in Common utilities -
-
-
-qmi_utils_write_gint32_to_buffer, function in Common utilities -
-
-
-qmi_utils_write_gint64_to_buffer, function in Common utilities -
-
-
-qmi_utils_write_gint8_to_buffer, function in Common utilities -
-
-
-qmi_utils_write_guint16_to_buffer, function in Common utilities -
-
-
-qmi_utils_write_guint32_to_buffer, function in Common utilities -
-
-
-qmi_utils_write_guint64_to_buffer, function in Common utilities -
-
-
-qmi_utils_write_guint8_to_buffer, function in Common utilities -
-
-
-qmi_utils_write_sized_guint_to_buffer, function in Common utilities -
-
-
-qmi_utils_write_string_to_buffer, function in Common utilities -
-
-

W

-
-QMI_WDS_CDMA_CAUSE_CODE_DESTINATION_BUSY, macro in API break replacements -
-
-
-QMI_WDS_CDMA_CAUSE_CODE_DESTINATION_NOT_AT_ADDRESS, macro in API break replacements -
-
-
-QMI_WDS_CDMA_CAUSE_CODE_DESTINATION_NO_ACK, macro in API break replacements -
-
-
-QMI_WDS_CDMA_CAUSE_CODE_DESTINATION_NO_PAGE_RESPONSE, macro in API break replacements -
-
-
-QMI_WDS_CDMA_CAUSE_CODE_DESTINATION_OTHER, macro in API break replacements -
-
-
-QMI_WDS_CDMA_CAUSE_CODE_DESTINATION_OUT_OF_SERVICE, macro in API break replacements -
-
-
-QMI_WDS_CDMA_CAUSE_CODE_DESTINATION_RESOURCE_SHORTAGE, macro in API break replacements -
-
-
-QMI_WDS_CDMA_CAUSE_CODE_DESTINATION_SMS_DELIVERY_POSTPONED, macro in API break replacements -
-
-
-QMI_WDS_CDMA_CAUSE_CODE_GENERAL_ENCODING, macro in API break replacements -
-
-
-QMI_WDS_CDMA_CAUSE_CODE_GENERAL_MISSING_EXPECTED_PARAMETER, macro in API break replacements -
-
-
-QMI_WDS_CDMA_CAUSE_CODE_GENERAL_MISSING_MANDATORY_PARAMETER, macro in API break replacements -
-
-
-QMI_WDS_CDMA_CAUSE_CODE_GENERAL_OTHER, macro in API break replacements -
-
-
-QMI_WDS_CDMA_CAUSE_CODE_GENERAL_SMS_DESTINATION_DENIED, macro in API break replacements -
-
-
-QMI_WDS_CDMA_CAUSE_CODE_GENERAL_SMS_NOT_SUPPORTED, macro in API break replacements -
-
-
-QMI_WDS_CDMA_CAUSE_CODE_GENERAL_SMS_ORIGIN_DENIED, macro in API break replacements -
-
-
-QMI_WDS_CDMA_CAUSE_CODE_GENERAL_SUPPLEMENTARY_SERVICE_NOT_SUPPORTED, macro in API break replacements -
-
-
-QMI_WDS_CDMA_CAUSE_CODE_GENERAL_UNEXPECTED_PARAMETER_VALUE, macro in API break replacements -
-
-
-QMI_WDS_CDMA_CAUSE_CODE_GENERAL_UNRECOGNIZED_PARAMETER_VALUE, macro in API break replacements -
-
-
-QMI_WDS_CDMA_CAUSE_CODE_GENERAL_USER_DATA_SIZE_ERROR, macro in API break replacements -
-
-
-QMI_WDS_CDMA_CAUSE_CODE_NETWORK_ADDRESS_TRANSLATION_FAILURE, macro in API break replacements -
-
-
-QMI_WDS_CDMA_CAUSE_CODE_NETWORK_ADDRESS_VACANT, macro in API break replacements -
-
-
-QMI_WDS_CDMA_CAUSE_CODE_NETWORK_FAILURE, macro in API break replacements -
-
-
-QMI_WDS_CDMA_CAUSE_CODE_NETWORK_INVALID_TELESERVICE_ID, macro in API break replacements -
-
-
-QMI_WDS_CDMA_CAUSE_CODE_NETWORK_OTHER, macro in API break replacements -
-
-
-QMI_WDS_CDMA_CAUSE_CODE_NETWORK_RESOURCE_SHORTAGE, macro in API break replacements -
-
-
-QMI_WDS_CDMA_CAUSE_CODE_RADIO_INTERFACE_INCOMPATIBILITY, macro in API break replacements -
-
-
-QMI_WDS_CDMA_CAUSE_CODE_RADIO_INTERFACE_OTHER, macro in API break replacements -
-
-
-QMI_WDS_CDMA_CAUSE_CODE_RADIO_INTERFACE_RESOURCE_SHORTAGE, macro in API break replacements -
-
-
- - - \ No newline at end of file diff -Nru libqmi-1.18.0/docs/reference/libqmi-glib/html/index.html libqmi-1.22.0/docs/reference/libqmi-glib/html/index.html --- libqmi-1.18.0/docs/reference/libqmi-glib/html/index.html 2017-03-22 12:28:28.000000000 +0100 +++ libqmi-1.22.0/docs/reference/libqmi-glib/html/index.html 2019-01-08 15:19:01.000000000 +0100 @@ -3,10 +3,10 @@ libqmi-glib Reference Manual: libqmi-glib Reference Manual - + - + @@ -14,9 +14,9 @@
-

for libqmi-glib 1.18.0 +

for libqmi-glib 1.22.0

-
+

Permission is granted to copy, distribute and/or modify this @@ -82,174 +82,180 @@

DMS Indications
-DMS Event Report +DMS Event Report indication
DMS Requests
-DMS Reset +DMS Reset request
-DMS Set Event Report +DMS Set Event Report request
-DMS Get Capabilities +DMS Get Capabilities request
-DMS Get Manufacturer +DMS Get Manufacturer request
-DMS Get Model +DMS Get Model request
-DMS Get Revision +DMS Get Revision request
-DMS Get MSISDN +DMS Get MSISDN request
-DMS Get IDs +DMS Get IDs request
-DMS Get Power State +DMS Get Power State request
-DMS UIM Set PIN Protection +DMS UIM Set PIN Protection request
-DMS UIM Verify PIN +DMS UIM Verify PIN request
-DMS UIM Unblock PIN +DMS UIM Unblock PIN request
-DMS UIM Change PIN +DMS UIM Change PIN request
-DMS UIM Get PIN Status +DMS UIM Get PIN Status request
-DMS Get Hardware Revision +DMS Get Hardware Revision request
-DMS Get Operating Mode +DMS Get Operating Mode request
-DMS Set Operating Mode +DMS Set Operating Mode request
-DMS Get Time +DMS Get Time request
-DMS Get PRL Version +DMS Get PRL Version request
-DMS Get Activation State +DMS Get Activation State request
-DMS Activate Automatic +DMS Activate Automatic request
-DMS Activate Manual +DMS Activate Manual request
-DMS Get User Lock State +DMS Get User Lock State request
-DMS Set User Lock State +DMS Set User Lock State request
-DMS Set User Lock Code +DMS Set User Lock Code request
-DMS Read User Data +DMS Read User Data request
-DMS Write User Data +DMS Write User Data request
-DMS Read ERI File +DMS Read ERI File request
-DMS Restore Factory Defaults +DMS Restore Factory Defaults request
-DMS Validate Service Programming Code +DMS Validate Service Programming Code request
-DMS UIM Get ICCID +DMS UIM Get ICCID request
-DMS Set Firmware ID +DMS Set Firmware ID request
-DMS UIM Get CK Status +DMS UIM Get CK Status request
-DMS UIM Set CK Protection +DMS UIM Set CK Protection request
-DMS UIM Unblock CK +DMS UIM Unblock CK request
-DMS UIM Get IMSI +DMS UIM Get IMSI request
-DMS UIM Get State +DMS UIM Get State request
-DMS Get Band Capabilities +DMS Get Band Capabilities request
-DMS Get Factory SKU +DMS Get Factory SKU request
-DMS Get Firmware Preference +DMS Get Firmware Preference request
-DMS Set Firmware Preference +DMS Set Firmware Preference request
-DMS List Stored Images +DMS List Stored Images request
-DMS Delete Stored Image +DMS Delete Stored Image request
-DMS Set Time +DMS Set Time request
-DMS Get Stored Image Info +DMS Get Stored Image Info request
-DMS Get Alt Net Config +DMS Get Alt Net Config request
-DMS Set Alt Net Config +DMS Set Alt Net Config request
-DMS Get Boot Image Download Mode +DMS Get Boot Image Download Mode request
-DMS Set Boot Image Download Mode +DMS Set Boot Image Download Mode request
-DMS Get Software Version +DMS Get Software Version request
-DMS Set Service Programming Code +DMS Set Service Programming Code request
-DMS HP Change Device Mode +DMS HP Change Device Mode request
-DMS Swi Get Current Firmware +DMS Swi Get Current Firmware request
-DMS Set FCC Authentication +DMS Swi Get USB Composition request
-DMS Get Supported Messages +DMS Swi Set USB Composition request +
+
+DMS Set FCC Authentication request +
+
+DMS Get Supported Messages request
@@ -264,94 +270,97 @@
NAS Indications
-NAS Event Report +NAS Event Report indication
-NAS Network Time +NAS Network Time indication
-NAS Serving System +NAS Serving System indication
-NAS System Info +NAS System Info indication
-NAS Signal Info +NAS Signal Info indication
-NAS Operator Name +NAS Operator Name indication
NAS Requests
-NAS Reset +NAS Reset request +
+
+NAS Set Event Report request
-NAS Set Event Report +NAS Register Indications request
-NAS Register Indications +NAS Get Signal Strength request
-NAS Get Signal Strength +NAS Network Scan request
-NAS Network Scan +NAS Initiate Network Register request
-NAS Initiate Network Register +NAS Attach Detach request
-NAS Get Serving System +NAS Get Serving System request
-NAS Get Home Network +NAS Get Home Network request
-NAS Set Technology Preference +NAS Set Technology Preference request
-NAS Get Technology Preference +NAS Get Technology Preference request
-NAS Get RF Band Information +NAS Get RF Band Information request
-NAS Set System Selection Preference +NAS Set System Selection Preference request
-NAS Get System Selection Preference +NAS Get System Selection Preference request
-NAS Get System Info +NAS Get System Info request
-NAS Get Signal Info +NAS Get Signal Info request
-NAS Config Signal Info +NAS Config Signal Info request
-NAS Force Network Search +NAS Force Network Search request
-NAS Get CDMA Position Info +NAS Get CDMA Position Info request
-NAS Get Tx Rx Info +NAS Get Tx Rx Info request
-NAS Get Cell Location Info +NAS Get Cell Location Info request
-NAS Get Supported Messages +NAS Get Supported Messages request
-NAS Get LTE Cphy CA Info +NAS Get LTE Cphy CA Info request
-NAS Get Operator Name +NAS Get Operator Name request
@@ -366,85 +375,97 @@
WDS Indications
-WDS Event Report +WDS Event Report indication
-WDS Packet Service Status +WDS Packet Service Status indication
WDS Requests
-WDS Reset +WDS Reset request +
+
+WDS Set Event Report request +
+
+WDS Start Network request +
+
+WDS Stop Network request
-WDS Set Event Report +WDS Get Packet Service Status request
-WDS Start Network +WDS Get Packet Statistics request
-WDS Stop Network +WDS Go Dormant request
-WDS Get Packet Service Status +WDS Go Active request
-WDS Get Packet Statistics +WDS Create Profile request
-WDS Go Dormant +WDS Modify Profile request
-WDS Go Active +WDS Delete Profile request
-WDS Create Profile +WDS Get Profile List request
-WDS Modify Profile +WDS Get Profile Settings request
-WDS Delete Profile +WDS Get Default Profile Num request
-WDS Get Profile List +WDS Set Default Profile Num request
-WDS Get Profile Settings +WDS Get Default Settings request
-WDS Get Default Settings +WDS Get Current Settings request
-WDS Get Current Settings +WDS Get Dormancy Status request
-WDS Get Dormancy Status +WDS Get Autoconnect Settings request
-WDS Get Autoconnect Settings +WDS Set Autoconnect Settings request
-WDS Set Autoconnect Settings +WDS Get Data Bearer Technology request
-WDS Get Data Bearer Technology +WDS Get Current Data Bearer Technology request
-WDS Get Current Data Bearer Technology +WDS Set IP Family request
-WDS Set IP Family +WDS Get Supported Messages request
-WDS Get Supported Messages +WDS Get PDN Throttle Info request
-WDS Get PDN Throttle Info +WDS Bind Mux Data Port request
-WDS Bind Mux Data Port +WDS Get Channel Rates request +
+
+WDS Swi Create Profile Indexed request
@@ -459,52 +480,52 @@
WMS Indications
-WMS Event Report +WMS Event Report indication
-WMS SMSC Address +WMS SMSC Address indication
WMS Requests
-WMS Reset +WMS Reset request
-WMS Set Event Report +WMS Set Event Report request
-WMS Raw Send +WMS Raw Send request
-WMS Raw Write +WMS Raw Write request
-WMS Raw Read +WMS Raw Read request
-WMS Modify Tag +WMS Modify Tag request
-WMS Delete +WMS Delete request
-WMS Get Message Protocol +WMS Get Message Protocol request
-WMS List Messages +WMS List Messages request
-WMS Set Routes +WMS Set Routes request
-WMS Get Routes +WMS Get Routes request
-WMS Send From Memory Storage +WMS Send From Memory Storage request
-WMS Get Supported Messages +WMS Get Supported Messages request
@@ -519,67 +540,67 @@
PDC Indications
-PDC Activate Config +PDC Activate Config indication
-PDC Deactivate Config +PDC Deactivate Config indication
-PDC Get Config Info +PDC Get Config Info indication
-PDC Get Selected Config +PDC Get Selected Config indication
-PDC List Configs +PDC List Configs indication
-PDC Load Config +PDC Load Config indication
-PDC Set Selected Config +PDC Set Selected Config indication
PDC Requests
-PDC Reset +PDC Reset request
-PDC Register +PDC Register request
-PDC Config Change +PDC Config Change request
-PDC Get Selected Config +PDC Get Selected Config request
-PDC Set Selected Config +PDC Set Selected Config request
-PDC List Configs +PDC List Configs request
-PDC Delete Config +PDC Delete Config request
-PDC Load Config +PDC Load Config request
-PDC Activate Config +PDC Activate Config request
-PDC Get Config Info +PDC Get Config Info request
-PDC Get Config Limits +PDC Get Config Limits request
-PDC Get Default Config Info +PDC Get Default Config Info request
-PDC Deactivate Config +PDC Deactivate Config request
@@ -593,39 +614,39 @@
PDS Indications
-PDS Event Report +PDS Event Report indication
PDS Requests
-PDS Reset +PDS Reset request
-PDS Set Event Report +PDS Set Event Report request
-PDS Get GPS Service State +PDS Get GPS Service State request
-PDS Set GPS Service State +PDS Set GPS Service State request
-PDS Get Auto Tracking State +PDS Get Auto Tracking State request
-PDS Set Auto Tracking State +PDS Set Auto Tracking State request
-PDS Get Default Tracking Session +PDS Get Default Tracking Session request
-PDS Set Default Tracking Session +PDS Set Default Tracking Session request
-PDS Get AGPS Config +PDS Get AGPS Config request
-PDS Set AGPS Config +PDS Set AGPS Config request
@@ -640,13 +661,13 @@
PBM Requests
-PBM Indication Register +PBM Indication Register request
-PBM Get Capabilities +PBM Get Capabilities request
-PBM Get All Capabilities +PBM Get All Capabilities request
@@ -658,43 +679,47 @@
UIM enumerations and flags
-
UIM Requests
+
UIM Indications
+
+UIM Card Status indication +
+
UIM Requests
-UIM Reset +UIM Reset request
-UIM Set PIN Protection +UIM Set PIN Protection request
-UIM Verify PIN +UIM Verify PIN request
-UIM Unblock PIN +UIM Unblock PIN request
-UIM Change PIN +UIM Change PIN request
-UIM Read Transparent +UIM Read Transparent request
-UIM Read Record +UIM Read Record request
-UIM Get File Attributes +UIM Get File Attributes request
-UIM Get Card Status +UIM Get Card Status request
-UIM Get Supported Messages +UIM Get Supported Messages request
-UIM Power Off SIM +UIM Power Off SIM request
-UIM Power On SIM +UIM Power On SIM request
@@ -708,33 +733,33 @@
OMA Indications
-OMA Event Report +OMA Event Report indication
OMA Requests
-OMA Reset +OMA Reset request
-OMA Set Event Report +OMA Set Event Report request
-OMA Start Session +OMA Start Session request
-OMA Cancel Session +OMA Cancel Session request
-OMA Get Session Info +OMA Get Session Info request
-OMA Send Selection +OMA Send Selection request
-OMA Get Feature Setting +OMA Get Feature Setting request
-OMA Set Feature Setting +OMA Set Feature Setting request
@@ -749,13 +774,13 @@
WDA Requests
-WDA Set Data Format +WDA Set Data Format request
-WDA Get Data Format +WDA Get Data Format request
-WDA Get Supported Messages +WDA Get Supported Messages request
@@ -769,48 +794,157 @@
Voice Indications
-VOICE All Call Status +VOICE All Call Status indication
Voice Requests
-VOICE Dial Call +VOICE Dial Call request +
+
+VOICE End Call request +
+
+VOICE Answer Call request +
+
+VOICE Get Config request +
+
+VOICE Get Supported Messages request +
+
+ +
Location Service (LOC)
+
+
+QmiClientLocQmiClient for the LOC service. +
+
+LOC enumerations and flags +
+
LOC Indications
+
+
+LOC Position Report indication +
+
+LOC NMEA indication +
+
+LOC GNSS Sv Info indication +
+
+LOC Engine State indication +
+
+LOC Fix Recurrence Type indication +
+
+LOC Get Operation Mode indication +
+
+LOC Set Operation Mode indication +
+
+LOC Set Server indication +
+
+LOC Get Server indication +
+
+LOC Inject Predicted Orbits Data indication +
+
+LOC Get Predicted Orbits Data Source indication +
+
+LOC Delete Assistance Data indication +
+
+LOC Inject Xtra Data indication +
+
+
LOC Requests
+
+
+LOC Start request +
+
+LOC Stop request +
+
+LOC Register Events request +
+
+LOC Get Operation Mode request +
+
+LOC Set Operation Mode request +
+
+LOC Set Server request +
+
+LOC Get Server request +
+
+LOC Inject Predicted Orbits Data request +
+
+LOC Get Predicted Orbits Data Source request +
+
+LOC Delete Assistance Data request +
+
+LOC Inject Xtra Data request +
+
+
+
QoS Service (QoS)
+
+
+QmiClientQosQmiClient for the QOS service. +
+
+QOS enumerations and flags +
+
QoS Indications
+
+
+QOS Flow Status indication +
+
+QOS Network Status indication
+
+
QoS Requests
+
-VOICE End Call +QOS Reset request
-VOICE Answer Call +QOS Get Flow Status request
-VOICE Get Config +QOS Get Network Status request
-VOICE Get Supported Messages +QOS Swi Read Data Stats request
-
Compatibility with older versions
+
Compatibility with older versions
-API break replacements +Deprecated interface
Object Hierarchy
API Index
-
Index of deprecated API
-
Index of new core symbols in 1.0
-
Index of new core symbols in 1.2
-
Index of new core symbols in 1.4
-
Index of new core symbols in 1.6
-
Index of new core symbols in 1.8
-
Index of new core symbols in 1.10
-
Index of new core symbols in 1.12
-
Index of new core symbols in 1.14
-
Index of new core symbols in 1.16
-
Index of new core symbols in 1.18
Annotation Glossary
+
Generated by GTK-Doc V1.29
\ No newline at end of file diff -Nru libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-API-break-replacements.html libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-API-break-replacements.html --- libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-API-break-replacements.html 2017-03-22 12:28:29.000000000 +0100 +++ libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-API-break-replacements.html 1970-01-01 01:00:00.000000000 +0100 @@ -1,754 +0,0 @@ - - - - -API break replacements: libqmi-glib Reference Manual - - - - - - - - - - - - - - - - -
-
-
- - -
-

API break replacements

-

API break replacements

-
- -
-

Types and Values

-
---- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
#defineQMI_NAS_SIM_REJECT_STATE_SIM_VAILABLE
#defineQMI_WDS_CDMA_CAUSE_CODE_NETWORK_ADDRESS_VACANT
#defineQMI_WDS_CDMA_CAUSE_CODE_NETWORK_ADDRESS_TRANSLATION_FAILURE
#defineQMI_WDS_CDMA_CAUSE_CODE_NETWORK_RESOURCE_SHORTAGE
#defineQMI_WDS_CDMA_CAUSE_CODE_NETWORK_FAILURE
#defineQMI_WDS_CDMA_CAUSE_CODE_NETWORK_INVALID_TELESERVICE_ID
#defineQMI_WDS_CDMA_CAUSE_CODE_NETWORK_OTHER
#defineQMI_WDS_CDMA_CAUSE_CODE_DESTINATION_NO_PAGE_RESPONSE
#defineQMI_WDS_CDMA_CAUSE_CODE_DESTINATION_BUSY
#defineQMI_WDS_CDMA_CAUSE_CODE_DESTINATION_NO_ACK
#defineQMI_WDS_CDMA_CAUSE_CODE_DESTINATION_RESOURCE_SHORTAGE
#defineQMI_WDS_CDMA_CAUSE_CODE_DESTINATION_SMS_DELIVERY_POSTPONED
#defineQMI_WDS_CDMA_CAUSE_CODE_DESTINATION_OUT_OF_SERVICE
#defineQMI_WDS_CDMA_CAUSE_CODE_DESTINATION_NOT_AT_ADDRESS
#defineQMI_WDS_CDMA_CAUSE_CODE_DESTINATION_OTHER
#defineQMI_WDS_CDMA_CAUSE_CODE_RADIO_INTERFACE_RESOURCE_SHORTAGE
#defineQMI_WDS_CDMA_CAUSE_CODE_RADIO_INTERFACE_INCOMPATIBILITY
#defineQMI_WDS_CDMA_CAUSE_CODE_RADIO_INTERFACE_OTHER
#defineQMI_WDS_CDMA_CAUSE_CODE_GENERAL_ENCODING
#defineQMI_WDS_CDMA_CAUSE_CODE_GENERAL_SMS_ORIGIN_DENIED
#defineQMI_WDS_CDMA_CAUSE_CODE_GENERAL_SMS_DESTINATION_DENIED
#defineQMI_WDS_CDMA_CAUSE_CODE_GENERAL_SUPPLEMENTARY_SERVICE_NOT_SUPPORTED
#defineQMI_WDS_CDMA_CAUSE_CODE_GENERAL_SMS_NOT_SUPPORTED
#defineQMI_WDS_CDMA_CAUSE_CODE_GENERAL_MISSING_EXPECTED_PARAMETER
#defineQMI_WDS_CDMA_CAUSE_CODE_GENERAL_MISSING_MANDATORY_PARAMETER
#defineQMI_WDS_CDMA_CAUSE_CODE_GENERAL_UNRECOGNIZED_PARAMETER_VALUE
#defineQMI_WDS_CDMA_CAUSE_CODE_GENERAL_UNEXPECTED_PARAMETER_VALUE
#defineQMI_WDS_CDMA_CAUSE_CODE_GENERAL_USER_DATA_SIZE_ERROR
#defineQMI_WDS_CDMA_CAUSE_CODE_GENERAL_OTHER
-
-
-

Description

-

These compatibility types and methods are flagged as deprecated and therefore -shouldn't be used in newly written code. They are provided to avoid -innecessary API/ABI breaks.

-
-
-

Functions

-
-

qmi_message_dms_set_service_programming_code_input_get_new ()

-
gboolean
-qmi_message_dms_set_service_programming_code_input_get_new
-                               (QmiMessageDmsSetServiceProgrammingCodeInput *self,
-                                const gchar **arg_new,
-                                GError **error);
-
-

qmi_message_dms_set_service_programming_code_input_get_new has been deprecated since version 1.14.0 and should not be used in newly-written code.

-

Use qmi_message_dms_set_service_programming_code_input_get_new_code() instead.

-
-

Get the 'New Code' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessageDmsSetServiceProgrammingCodeInput.

 

arg_new

a placeholder for the output constant string, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.0

-
-
-
-

qmi_message_dms_set_service_programming_code_input_set_new ()

-
gboolean
-qmi_message_dms_set_service_programming_code_input_set_new
-                               (QmiMessageDmsSetServiceProgrammingCodeInput *self,
-                                const gchar *arg_new,
-                                GError **error);
-
-

qmi_message_dms_set_service_programming_code_input_set_new has been deprecated since version 1.14.0 and should not be used in newly-written code.

-

Use qmi_message_dms_set_service_programming_code_input_set_new_code() instead.

-
-

Set the 'New Code' field in the message.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessageDmsSetServiceProgrammingCodeInput.

 

arg_new

a constant string of exactly 6 characters.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if value -was successfully set, FALSE otherwise.

-
-

Since: 1.0

-
-
-
-

qmi_message_dms_set_service_programming_code_input_get_current ()

-
gboolean
-qmi_message_dms_set_service_programming_code_input_get_current
-                               (QmiMessageDmsSetServiceProgrammingCodeInput *self,
-                                const gchar **arg_current,
-                                GError **error);
-
-

qmi_message_dms_set_service_programming_code_input_get_current has been deprecated since version 1.14.0 and should not be used in newly-written code.

-

Use qmi_message_dms_set_service_programming_code_input_get_current_code() instead.

-
-

Get the 'Current Code' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessageDmsSetServiceProgrammingCodeInput.

 

arg_current

a placeholder for the output constant string, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.0

-
-
-
-

qmi_message_dms_set_service_programming_code_input_set_current ()

-
gboolean
-qmi_message_dms_set_service_programming_code_input_set_current
-                               (QmiMessageDmsSetServiceProgrammingCodeInput *self,
-                                const gchar *arg_current,
-                                GError **error);
-
-

qmi_message_dms_set_service_programming_code_input_set_current has been deprecated since version 1.14.0 and should not be used in newly-written code.

-

Use qmi_message_dms_set_service_programming_code_input_set_current_code() instead.

-
-

Get the 'Current Code' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessageDmsSetServiceProgrammingCodeInput.

 

arg_current

a placeholder for the output constant string, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.0

-
-
-
-

Types and Values

-
-

QMI_NAS_SIM_REJECT_STATE_SIM_VAILABLE

-
#define QMI_NAS_SIM_REJECT_STATE_SIM_VAILABLE QMI_NAS_SIM_REJECT_STATE_SIM_AVAILABLE
-
-
-

QMI_NAS_SIM_REJECT_STATE_SIM_VAILABLE has been deprecated since version 1.14.0 and should not be used in newly-written code.

-

Use the correct QMI_NAS_SIM_REJECT_STATE_SIM_AVAILABLE name instead.

-
-

SIM available.

-

Since: 1.0

-
-
-
-

QMI_WDS_CDMA_CAUSE_CODE_NETWORK_ADDRESS_VACANT

-
#define QMI_WDS_CDMA_CAUSE_CODE_NETWORK_ADDRESS_VACANT QMI_WMS_CDMA_CAUSE_CODE_NETWORK_ADDRESS_VACANT
-
-
-

QMI_WDS_CDMA_CAUSE_CODE_NETWORK_ADDRESS_VACANT has been deprecated since version 1.18.0 and should not be used in newly-written code.

-

Use the correct QMI_WMS_CDMA_CAUSE_CODE_NETWORK_ADDRESS_VACANT name instead.

-
-

Address is valid but not yet allocated.

-

Since: 1.0

-
-
-
-

QMI_WDS_CDMA_CAUSE_CODE_NETWORK_ADDRESS_TRANSLATION_FAILURE

-
#define QMI_WDS_CDMA_CAUSE_CODE_NETWORK_ADDRESS_TRANSLATION_FAILURE QMI_WMS_CDMA_CAUSE_CODE_NETWORK_ADDRESS_TRANSLATION_FAILURE
-
-
-

QMI_WDS_CDMA_CAUSE_CODE_NETWORK_ADDRESS_TRANSLATION_FAILURE has been deprecated since version 1.18.0 and should not be used in newly-written code.

-

Use the correct QMI_WMS_CDMA_CAUSE_CODE_NETWORK_ADDRESS_TRANSLATION_FAILURE name instead.

-
-

Address is invalid.

-

Since: 1.0

-
-
-
-

QMI_WDS_CDMA_CAUSE_CODE_NETWORK_RESOURCE_SHORTAGE

-
#define QMI_WDS_CDMA_CAUSE_CODE_NETWORK_RESOURCE_SHORTAGE QMI_WMS_CDMA_CAUSE_CODE_NETWORK_RESOURCE_SHORTAGE
-
-
-

QMI_WDS_CDMA_CAUSE_CODE_NETWORK_RESOURCE_SHORTAGE has been deprecated since version 1.18.0 and should not be used in newly-written code.

-

Use the correct QMI_WMS_CDMA_CAUSE_CODE_NETWORK_RESOURCE_SHORTAGE name instead.

-
-

Network resource shortage.

-

Since: 1.0

-
-
-
-

QMI_WDS_CDMA_CAUSE_CODE_NETWORK_FAILURE

-
#define QMI_WDS_CDMA_CAUSE_CODE_NETWORK_FAILURE QMI_WMS_CDMA_CAUSE_CODE_NETWORK_FAILURE
-
-
-

QMI_WDS_CDMA_CAUSE_CODE_NETWORK_FAILURE has been deprecated since version 1.18.0 and should not be used in newly-written code.

-

Use the correct QMI_WMS_CDMA_CAUSE_CODE_NETWORK_FAILURE name instead.

-
-

Network failed.

-

Since: 1.0

-
-
-
-

QMI_WDS_CDMA_CAUSE_CODE_NETWORK_INVALID_TELESERVICE_ID

-
#define QMI_WDS_CDMA_CAUSE_CODE_NETWORK_INVALID_TELESERVICE_ID QMI_WMS_CDMA_CAUSE_CODE_NETWORK_INVALID_TELESERVICE_ID
-
-
-

QMI_WDS_CDMA_CAUSE_CODE_NETWORK_INVALID_TELESERVICE_ID has been deprecated since version 1.18.0 and should not be used in newly-written code.

-

Use the correct QMI_WMS_CDMA_CAUSE_CODE_NETWORK_INVALID_TELESERVICE_ID name instead.

-
-

SMS teleservice ID is invalid.

-

Since: 1.0

-
-
-
-

QMI_WDS_CDMA_CAUSE_CODE_NETWORK_OTHER

-
#define QMI_WDS_CDMA_CAUSE_CODE_NETWORK_OTHER QMI_WMS_CDMA_CAUSE_CODE_NETWORK_OTHER
-
-
-

QMI_WDS_CDMA_CAUSE_CODE_NETWORK_OTHER has been deprecated since version 1.18.0 and should not be used in newly-written code.

-

Use the correct QMI_WMS_CDMA_CAUSE_CODE_NETWORK_OTHER name instead.

-
-

Other network error.

-

Since: 1.0

-
-
-
-

QMI_WDS_CDMA_CAUSE_CODE_DESTINATION_NO_PAGE_RESPONSE

-
#define QMI_WDS_CDMA_CAUSE_CODE_DESTINATION_NO_PAGE_RESPONSE QMI_WMS_CDMA_CAUSE_CODE_DESTINATION_NO_PAGE_RESPONSE
-
-
-

QMI_WDS_CDMA_CAUSE_CODE_DESTINATION_NO_PAGE_RESPONSE has been deprecated since version 1.18.0 and should not be used in newly-written code.

-

Use the correct QMI_WMS_CDMA_CAUSE_CODE_DESTINATION_NO_PAGE_RESPONSE name instead.

-
-

No page response from destination.

-

Since: 1.0

-
-
-
-

QMI_WDS_CDMA_CAUSE_CODE_DESTINATION_BUSY

-
#define QMI_WDS_CDMA_CAUSE_CODE_DESTINATION_BUSY QMI_WMS_CDMA_CAUSE_CODE_DESTINATION_BUSY
-
-
-

QMI_WDS_CDMA_CAUSE_CODE_DESTINATION_BUSY has been deprecated since version 1.18.0 and should not be used in newly-written code.

-

Use the correct QMI_WMS_CDMA_CAUSE_CODE_DESTINATION_BUSY name instead.

-
-

Destination is busy.

-

Since: 1.0

-
-
-
-

QMI_WDS_CDMA_CAUSE_CODE_DESTINATION_NO_ACK

-
#define QMI_WDS_CDMA_CAUSE_CODE_DESTINATION_NO_ACK QMI_WMS_CDMA_CAUSE_CODE_DESTINATION_NO_ACK
-
-
-

QMI_WDS_CDMA_CAUSE_CODE_DESTINATION_NO_ACK has been deprecated since version 1.18.0 and should not be used in newly-written code.

-

Use the correct QMI_WMS_CDMA_CAUSE_CODE_DESTINATION_NO_ACK name instead.

-
-

No acknowledge from destination.

-

Since: 1.0

-
-
-
-

QMI_WDS_CDMA_CAUSE_CODE_DESTINATION_RESOURCE_SHORTAGE

-
#define QMI_WDS_CDMA_CAUSE_CODE_DESTINATION_RESOURCE_SHORTAGE QMI_WMS_CDMA_CAUSE_CODE_DESTINATION_RESOURCE_SHORTAGE
-
-
-

QMI_WDS_CDMA_CAUSE_CODE_DESTINATION_RESOURCE_SHORTAGE has been deprecated since version 1.18.0 and should not be used in newly-written code.

-

Use the correct QMI_WMS_CDMA_CAUSE_CODE_DESTINATION_RESOURCE_SHORTAGE name instead.

-
-

Destination resource shortage.

-

Since: 1.0

-
-
-
-

QMI_WDS_CDMA_CAUSE_CODE_DESTINATION_SMS_DELIVERY_POSTPONED

-
#define QMI_WDS_CDMA_CAUSE_CODE_DESTINATION_SMS_DELIVERY_POSTPONED QMI_WMS_CDMA_CAUSE_CODE_DESTINATION_SMS_DELIVERY_POSTPONED
-
-
-

QMI_WDS_CDMA_CAUSE_CODE_DESTINATION_SMS_DELIVERY_POSTPONED has been deprecated since version 1.18.0 and should not be used in newly-written code.

-

Use the correct QMI_WMS_CDMA_CAUSE_CODE_DESTINATION_SMS_DELIVERY_POSTPONED name instead.

-
-

SMS delivery postponed.

-

Since: 1.0

-
-
-
-

QMI_WDS_CDMA_CAUSE_CODE_DESTINATION_OUT_OF_SERVICE

-
#define QMI_WDS_CDMA_CAUSE_CODE_DESTINATION_OUT_OF_SERVICE QMI_WMS_CDMA_CAUSE_CODE_DESTINATION_OUT_OF_SERVICE
-
-
-

QMI_WDS_CDMA_CAUSE_CODE_DESTINATION_OUT_OF_SERVICE has been deprecated since version 1.18.0 and should not be used in newly-written code.

-

Use the correct QMI_WMS_CDMA_CAUSE_CODE_DESTINATION_OUT_OF_SERVICE name instead.

-
-

Destination out of service.

-

Since: 1.0

-
-
-
-

QMI_WDS_CDMA_CAUSE_CODE_DESTINATION_NOT_AT_ADDRESS

-
#define QMI_WDS_CDMA_CAUSE_CODE_DESTINATION_NOT_AT_ADDRESS QMI_WMS_CDMA_CAUSE_CODE_DESTINATION_NOT_AT_ADDRESS
-
-
-

QMI_WDS_CDMA_CAUSE_CODE_DESTINATION_NOT_AT_ADDRESS has been deprecated since version 1.18.0 and should not be used in newly-written code.

-

Use the correct QMI_WMS_CDMA_CAUSE_CODE_DESTINATION_NOT_AT_ADDRESS name instead.

-
-

Destination not at address.

-

Since: 1.0

-
-
-
-

QMI_WDS_CDMA_CAUSE_CODE_DESTINATION_OTHER

-
#define QMI_WDS_CDMA_CAUSE_CODE_DESTINATION_OTHER QMI_WMS_CDMA_CAUSE_CODE_DESTINATION_OTHER
-
-
-

QMI_WDS_CDMA_CAUSE_CODE_DESTINATION_OTHER has been deprecated since version 1.18.0 and should not be used in newly-written code.

-

Use the correct QMI_WMS_CDMA_CAUSE_CODE_DESTINATION_OTHER name instead.

-
-

Other destination error.

-

Since: 1.0

-
-
-
-

QMI_WDS_CDMA_CAUSE_CODE_RADIO_INTERFACE_RESOURCE_SHORTAGE

-
#define QMI_WDS_CDMA_CAUSE_CODE_RADIO_INTERFACE_RESOURCE_SHORTAGE QMI_WMS_CDMA_CAUSE_CODE_RADIO_INTERFACE_RESOURCE_SHORTAGE
-
-
-

QMI_WDS_CDMA_CAUSE_CODE_RADIO_INTERFACE_RESOURCE_SHORTAGE has been deprecated since version 1.18.0 and should not be used in newly-written code.

-

Use the correct QMI_WMS_CDMA_CAUSE_CODE_RADIO_INTERFACE_RESOURCE_SHORTAGE name instead.

-
-

Radio interface resource shortage.

-

Since: 1.0

-
-
-
-

QMI_WDS_CDMA_CAUSE_CODE_RADIO_INTERFACE_INCOMPATIBILITY

-
#define QMI_WDS_CDMA_CAUSE_CODE_RADIO_INTERFACE_INCOMPATIBILITY QMI_WMS_CDMA_CAUSE_CODE_RADIO_INTERFACE_INCOMPATIBILITY
-
-
-

QMI_WDS_CDMA_CAUSE_CODE_RADIO_INTERFACE_INCOMPATIBILITY has been deprecated since version 1.18.0 and should not be used in newly-written code.

-

Use the correct QMI_WMS_CDMA_CAUSE_CODE_RADIO_INTERFACE_INCOMPATIBILITY name instead.

-
-

Radio interface incompatibility.

-

Since: 1.0

-
-
-
-

QMI_WDS_CDMA_CAUSE_CODE_RADIO_INTERFACE_OTHER

-
#define QMI_WDS_CDMA_CAUSE_CODE_RADIO_INTERFACE_OTHER QMI_WMS_CDMA_CAUSE_CODE_RADIO_INTERFACE_OTHER
-
-
-

QMI_WDS_CDMA_CAUSE_CODE_RADIO_INTERFACE_OTHER has been deprecated since version 1.18.0 and should not be used in newly-written code.

-

Use the correct QMI_WMS_CDMA_CAUSE_CODE_RADIO_INTERFACE_OTHER name instead.

-
-

Other radio interface error

-

Since: 1.0

-
-
-
-

QMI_WDS_CDMA_CAUSE_CODE_GENERAL_ENCODING

-
#define QMI_WDS_CDMA_CAUSE_CODE_GENERAL_ENCODING QMI_WMS_CDMA_CAUSE_CODE_GENERAL_ENCODING
-
-
-

QMI_WDS_CDMA_CAUSE_CODE_GENERAL_ENCODING has been deprecated since version 1.18.0 and should not be used in newly-written code.

-

Use the correct QMI_WMS_CDMA_CAUSE_CODE_GENERAL_ENCODING name instead.

-
-

Encoding error.

-

Since: 1.0

-
-
-
-

QMI_WDS_CDMA_CAUSE_CODE_GENERAL_SMS_ORIGIN_DENIED

-
#define QMI_WDS_CDMA_CAUSE_CODE_GENERAL_SMS_ORIGIN_DENIED QMI_WMS_CDMA_CAUSE_CODE_GENERAL_SMS_ORIGIN_DENIED
-
-
-

QMI_WDS_CDMA_CAUSE_CODE_GENERAL_SMS_ORIGIN_DENIED has been deprecated since version 1.18.0 and should not be used in newly-written code.

-

Use the correct QMI_WMS_CDMA_CAUSE_CODE_GENERAL_SMS_ORIGIN_DENIED name instead.

-
-

SMS origin denied.

-

Since: 1.0

-
-
-
-

QMI_WDS_CDMA_CAUSE_CODE_GENERAL_SMS_DESTINATION_DENIED

-
#define QMI_WDS_CDMA_CAUSE_CODE_GENERAL_SMS_DESTINATION_DENIED QMI_WMS_CDMA_CAUSE_CODE_GENERAL_SMS_DESTINATION_DENIED
-
-
-

QMI_WDS_CDMA_CAUSE_CODE_GENERAL_SMS_DESTINATION_DENIED has been deprecated since version 1.18.0 and should not be used in newly-written code.

-

Use the correct QMI_WMS_CDMA_CAUSE_CODE_GENERAL_SMS_DESTINATION_DENIED name instead.

-
-

SMS destination denied.

-

Since: 1.0

-
-
-
-

QMI_WDS_CDMA_CAUSE_CODE_GENERAL_SUPPLEMENTARY_SERVICE_NOT_SUPPORTED

-
#define QMI_WDS_CDMA_CAUSE_CODE_GENERAL_SUPPLEMENTARY_SERVICE_NOT_SUPPORTED QMI_WMS_CDMA_CAUSE_CODE_GENERAL_SUPPLEMENTARY_SERVICE_NOT_SUPPORTED
-
-
-

QMI_WDS_CDMA_CAUSE_CODE_GENERAL_SUPPLEMENTARY_SERVICE_NOT_SUPPORTED has been deprecated since version 1.18.0 and should not be used in newly-written code.

-

Use the correct QMI_WMS_CDMA_CAUSE_CODE_GENERAL_SUPPLEMENTARY_SERVICE_NOT_SUPPORTED name instead.

-
-

Supplementary service not supported.

-

Since: 1.0

-
-
-
-

QMI_WDS_CDMA_CAUSE_CODE_GENERAL_SMS_NOT_SUPPORTED

-
#define QMI_WDS_CDMA_CAUSE_CODE_GENERAL_SMS_NOT_SUPPORTED QMI_WMS_CDMA_CAUSE_CODE_GENERAL_SMS_NOT_SUPPORTED
-
-
-

QMI_WDS_CDMA_CAUSE_CODE_GENERAL_SMS_NOT_SUPPORTED has been deprecated since version 1.18.0 and should not be used in newly-written code.

-

Use the correct QMI_WMS_CDMA_CAUSE_CODE_GENERAL_SMS_NOT_SUPPORTED name instead.

-
-

SMS not supported.

-

Since: 1.0

-
-
-
-

QMI_WDS_CDMA_CAUSE_CODE_GENERAL_MISSING_EXPECTED_PARAMETER

-
#define QMI_WDS_CDMA_CAUSE_CODE_GENERAL_MISSING_EXPECTED_PARAMETER QMI_WMS_CDMA_CAUSE_CODE_GENERAL_MISSING_EXPECTED_PARAMETER
-
-
-

QMI_WDS_CDMA_CAUSE_CODE_GENERAL_MISSING_EXPECTED_PARAMETER has been deprecated since version 1.18.0 and should not be used in newly-written code.

-

Use the correct QMI_WMS_CDMA_CAUSE_CODE_GENERAL_MISSING_EXPECTED_PARAMETER name instead.

-
-

Missing optional expected parameter.

-

Since: 1.0

-
-
-
-

QMI_WDS_CDMA_CAUSE_CODE_GENERAL_MISSING_MANDATORY_PARAMETER

-
#define QMI_WDS_CDMA_CAUSE_CODE_GENERAL_MISSING_MANDATORY_PARAMETER QMI_WMS_CDMA_CAUSE_CODE_GENERAL_MISSING_MANDATORY_PARAMETER
-
-
-

QMI_WDS_CDMA_CAUSE_CODE_GENERAL_MISSING_MANDATORY_PARAMETER has been deprecated since version 1.18.0 and should not be used in newly-written code.

-

Use the correct QMI_WMS_CDMA_CAUSE_CODE_GENERAL_MISSING_MANDATORY_PARAMETER name instead.

-
-

Missing mandatory parameter.

-

Since: 1.0

-
-
-
-

QMI_WDS_CDMA_CAUSE_CODE_GENERAL_UNRECOGNIZED_PARAMETER_VALUE

-
#define QMI_WDS_CDMA_CAUSE_CODE_GENERAL_UNRECOGNIZED_PARAMETER_VALUE QMI_WMS_CDMA_CAUSE_CODE_GENERAL_UNRECOGNIZED_PARAMETER_VALUE
-
-
-

QMI_WDS_CDMA_CAUSE_CODE_GENERAL_UNRECOGNIZED_PARAMETER_VALUE has been deprecated since version 1.18.0 and should not be used in newly-written code.

-

Use the correct QMI_WMS_CDMA_CAUSE_CODE_GENERAL_UNRECOGNIZED_PARAMETER_VALUE name instead.

-
-

Unrecognized parameter value.

-

Since: 1.0

-
-
-
-

QMI_WDS_CDMA_CAUSE_CODE_GENERAL_UNEXPECTED_PARAMETER_VALUE

-
#define QMI_WDS_CDMA_CAUSE_CODE_GENERAL_UNEXPECTED_PARAMETER_VALUE QMI_WMS_CDMA_CAUSE_CODE_GENERAL_UNEXPECTED_PARAMETER_VALUE
-
-
-

QMI_WDS_CDMA_CAUSE_CODE_GENERAL_UNEXPECTED_PARAMETER_VALUE has been deprecated since version 1.18.0 and should not be used in newly-written code.

-

Use the correct QMI_WMS_CDMA_CAUSE_CODE_GENERAL_UNEXPECTED_PARAMETER_VALUE name instead.

-
-

Unexpected parameter value.

-

Since: 1.0

-
-
-
-

QMI_WDS_CDMA_CAUSE_CODE_GENERAL_USER_DATA_SIZE_ERROR

-
#define QMI_WDS_CDMA_CAUSE_CODE_GENERAL_USER_DATA_SIZE_ERROR QMI_WMS_CDMA_CAUSE_CODE_GENERAL_USER_DATA_SIZE_ERROR
-
-
-

QMI_WDS_CDMA_CAUSE_CODE_GENERAL_USER_DATA_SIZE_ERROR has been deprecated since version 1.18.0 and should not be used in newly-written code.

-

Use the correct QMI_WMS_CDMA_CAUSE_CODE_GENERAL_USER_DATA_SIZE_ERROR name instead.

-
-

User data size error.

-

Since: 1.0

-
-
-
-

QMI_WDS_CDMA_CAUSE_CODE_GENERAL_OTHER

-
#define QMI_WDS_CDMA_CAUSE_CODE_GENERAL_OTHER QMI_WMS_CDMA_CAUSE_CODE_GENERAL_OTHER
-
-
-

QMI_WDS_CDMA_CAUSE_CODE_GENERAL_OTHER has been deprecated since version 1.18.0 and should not be used in newly-written code.

-

Use the correct QMI_WMS_CDMA_CAUSE_CODE_GENERAL_OTHER name instead.

-
-

Other general error.

-

Since: 1.0

-
-
-
- - - \ No newline at end of file diff -Nru libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-Common-enumerations-and-flags.html libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-Common-enumerations-and-flags.html --- libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-Common-enumerations-and-flags.html 2017-03-22 12:28:29.000000000 +0100 +++ libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-Common-enumerations-and-flags.html 2019-01-08 15:19:01.000000000 +0100 @@ -3,12 +3,12 @@ Common enumerations and flags: libqmi-glib Reference Manual - + - + @@ -78,7 +78,7 @@

Object Hierarchy

-
    GEnum
+
    GEnum
     ├── QmiDataEndpointType
     ╰── QmiService
 
@@ -112,7 +112,7 @@

Returns

-

a string with the nickname, or NULL if not found. Do not free the returned value.

+

a string with the nickname, or NULL if not found. Do not free the returned value.

[transfer none]

Since: 1.0

@@ -141,7 +141,7 @@

Returns

-

a string with the nickname, or NULL if not found. Do not free the returned value.

+

a string with the nickname, or NULL if not found. Do not free the returned value.

[transfer none]

Since: 1.18

@@ -523,6 +523,6 @@ +
Generated by GTK-Doc V1.29 \ No newline at end of file diff -Nru libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-Common-utilities.html libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-Common-utilities.html --- libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-Common-utilities.html 2017-03-22 12:28:28.000000000 +0100 +++ libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-Common-utilities.html 2019-01-08 15:19:01.000000000 +0100 @@ -3,12 +3,12 @@ Common utilities: libqmi-glib Reference Manual - + - + @@ -55,190 +55,6 @@ qmi_utils_set_traces_enabled () - - -void - - -qmi_utils_read_guint8_from_buffer () - - - - -void - - -qmi_utils_read_gint8_from_buffer () - - - - -void - - -qmi_utils_read_guint16_from_buffer () - - - - -void - - -qmi_utils_read_gint16_from_buffer () - - - - -void - - -qmi_utils_read_guint32_from_buffer () - - - - -void - - -qmi_utils_read_gint32_from_buffer () - - - - -void - - -qmi_utils_read_guint64_from_buffer () - - - - -void - - -qmi_utils_read_gint64_from_buffer () - - - - -void - - -qmi_utils_read_sized_guint_from_buffer () - - - - -void - - -qmi_utils_read_gfloat_from_buffer () - - - - -void - - -qmi_utils_read_string_from_buffer () - - - - -void - - -qmi_utils_read_fixed_size_string_from_buffer () - - - - -void - - -qmi_utils_write_guint8_to_buffer () - - - - -void - - -qmi_utils_write_gint8_to_buffer () - - - - -void - - -qmi_utils_write_guint16_to_buffer () - - - - -void - - -qmi_utils_write_gint16_to_buffer () - - - - -void - - -qmi_utils_write_guint32_to_buffer () - - - - -void - - -qmi_utils_write_gint32_to_buffer () - - - - -void - - -qmi_utils_write_guint64_to_buffer () - - - - -void - - -qmi_utils_write_gint64_to_buffer () - - - - -void - - -qmi_utils_write_sized_guint_to_buffer () - - - - -void - - -qmi_utils_write_string_to_buffer () - - - - -void - - -qmi_utils_write_fixed_size_string_to_buffer () - - @@ -296,1287 +112,6 @@

Since: 1.0

-
-
-

qmi_utils_read_guint8_from_buffer ()

-
void
-qmi_utils_read_guint8_from_buffer (const guint8 **buffer,
-                                   guint16 *buffer_size,
-                                   guint8 *out);
-
-

qmi_utils_read_guint8_from_buffer has been deprecated since version 1.12 and should not be used in newly-written code.

-

Use qmi_message_tlv_read_guint8() instead.

-
-

Reads an unsigned byte from the buffer.

-

The user needs to make sure that at least 1 byte is available -in the buffer.

-

Also note that both buffer - and buffer_size - get updated after the 1 byte -read.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

buffer

a buffer with raw binary data.

 

buffer_size

size of buffer -.

 

out

return location for the read variable.

 
-
-

Since: 1.0

-
-
-
-

qmi_utils_read_gint8_from_buffer ()

-
void
-qmi_utils_read_gint8_from_buffer (const guint8 **buffer,
-                                  guint16 *buffer_size,
-                                  gint8 *out);
-
-

qmi_utils_read_gint8_from_buffer has been deprecated since version 1.12 and should not be used in newly-written code.

-

Use qmi_message_tlv_read_gint8() instead.

-
-

Reads a signed byte from the buffer.

-

The user needs to make sure that at least 1 byte is available -in the buffer.

-

Also note that both buffer - and buffer_size - get updated after the 1 byte -read.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

buffer

a buffer with raw binary data.

 

buffer_size

size of buffer -.

 

out

return location for the read variable.

 
-
-

Since: 1.0

-
-
-
-

qmi_utils_read_guint16_from_buffer ()

-
void
-qmi_utils_read_guint16_from_buffer (const guint8 **buffer,
-                                    guint16 *buffer_size,
-                                    QmiEndian endian,
-                                    guint16 *out);
-
-

qmi_utils_read_guint16_from_buffer has been deprecated since version 1.12 and should not be used in newly-written code.

-

Use qmi_message_tlv_read_guint16() instead.

-
-

Reads an unsigned 16-bit integer from the buffer. The number in the buffer is -expected to be given in the byte order specificed by endian -, and this method -takes care of converting the read value to the proper host endianness.

-

The user needs to make sure that at least 2 bytes are available -in the buffer.

-

Also note that both buffer - and buffer_size - get updated after the 2 bytes -read.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - - - - - - -

buffer

a buffer with raw binary data.

 

buffer_size

size of buffer -.

 

endian

endianness of firmware value; swapped to host byte order if necessary

 

out

return location for the read variable.

 
-
-

Since: 1.0

-
-
-
-

qmi_utils_read_gint16_from_buffer ()

-
void
-qmi_utils_read_gint16_from_buffer (const guint8 **buffer,
-                                   guint16 *buffer_size,
-                                   QmiEndian endian,
-                                   gint16 *out);
-
-

qmi_utils_read_gint16_from_buffer has been deprecated since version 1.12 and should not be used in newly-written code.

-

Use qmi_message_tlv_read_gint16() instead.

-
-

Reads a signed 16-bit integer from the buffer. The number in the buffer is -expected to be given in the byte order specified by endian -, and this method -takes care of converting the read value to the proper host endianness.

-

The user needs to make sure that at least 2 bytes are available -in the buffer.

-

Also note that both buffer - and buffer_size - get updated after the 2 bytes -read.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - - - - - - -

buffer

a buffer with raw binary data.

 

buffer_size

size of buffer -.

 

endian

endianness of firmware value; swapped to host byte order if necessary

 

out

return location for the read variable.

 
-
-

Since: 1.0

-
-
-
-

qmi_utils_read_guint32_from_buffer ()

-
void
-qmi_utils_read_guint32_from_buffer (const guint8 **buffer,
-                                    guint16 *buffer_size,
-                                    QmiEndian endian,
-                                    guint32 *out);
-
-

qmi_utils_read_guint32_from_buffer has been deprecated since version 1.12 and should not be used in newly-written code.

-

Use qmi_message_tlv_read_guint32() instead.

-
-

Reads an unsigned 32-bit integer from the buffer. The number in the buffer is -expected to be given in the byte order specified by endian -, and this method -takes care of converting the read value to the proper host endianness.

-

The user needs to make sure that at least 4 bytes are available -in the buffer.

-

Also note that both buffer - and buffer_size - get updated after the 4 bytes -read.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - - - - - - -

buffer

a buffer with raw binary data.

 

buffer_size

size of buffer -.

 

endian

endianness of firmware value; swapped to host byte order if necessary

 

out

return location for the read variable.

 
-
-

Since: 1.0

-
-
-
-

qmi_utils_read_gint32_from_buffer ()

-
void
-qmi_utils_read_gint32_from_buffer (const guint8 **buffer,
-                                   guint16 *buffer_size,
-                                   QmiEndian endian,
-                                   gint32 *out);
-
-

qmi_utils_read_gint32_from_buffer has been deprecated since version 1.12 and should not be used in newly-written code.

-

Use qmi_message_tlv_read_gint32() instead.

-
-

Reads a signed 32-bit integer from the buffer. The number in the buffer is -expected to be given in the byte order specified by endian -, and this method -takes care of converting the read value to the proper host endianness.

-

The user needs to make sure that at least 4 bytes are available -in the buffer.

-

Also note that both buffer - and buffer_size - get updated after the 4 bytes -read.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - - - - - - -

buffer

a buffer with raw binary data.

 

buffer_size

size of buffer -.

 

endian

endianness of firmware value; swapped to host byte order if necessary

 

out

return location for the read variable.

 
-
-

Since: 1.0

-
-
-
-

qmi_utils_read_guint64_from_buffer ()

-
void
-qmi_utils_read_guint64_from_buffer (const guint8 **buffer,
-                                    guint16 *buffer_size,
-                                    QmiEndian endian,
-                                    guint64 *out);
-
-

qmi_utils_read_guint64_from_buffer has been deprecated since version 1.12 and should not be used in newly-written code.

-

Use qmi_message_tlv_read_guint64() instead.

-
-

Reads an unsigned 64-bit integer from the buffer. The number in the buffer is -expected to be given in the byte order specified by endian -, and this method -takes care of converting the read value to the proper host endianness.

-

The user needs to make sure that at least 8 bytes are available -in the buffer.

-

Also note that both buffer - and buffer_size - get updated after the 8 bytes -read.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - - - - - - -

buffer

a buffer with raw binary data.

 

buffer_size

size of buffer -.

 

endian

endianness of firmware value; swapped to host byte order if necessary

 

out

return location for the read variable.

 
-
-

Since: 1.0

-
-
-
-

qmi_utils_read_gint64_from_buffer ()

-
void
-qmi_utils_read_gint64_from_buffer (const guint8 **buffer,
-                                   guint16 *buffer_size,
-                                   QmiEndian endian,
-                                   gint64 *out);
-
-

qmi_utils_read_gint64_from_buffer has been deprecated since version 1.12 and should not be used in newly-written code.

-

Use qmi_message_tlv_read_gint64() instead.

-
-

Reads a signed 64-bit integer from the buffer. The number in the buffer is -expected to be given in the byte order specified by endian -, and this method -takes care of converting the read value to the proper host endianness.

-

The user needs to make sure that at least 8 bytes are available -in the buffer.

-

Also note that both buffer - and buffer_size - get updated after the 8 bytes -read.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - - - - - - -

buffer

a buffer with raw binary data.

 

buffer_size

size of buffer -.

 

endian

endianness of firmware value; swapped to host byte order if necessary

 

out

return location for the read variable.

 
-
-

Since: 1.0

-
-
-
-

qmi_utils_read_sized_guint_from_buffer ()

-
void
-qmi_utils_read_sized_guint_from_buffer
-                               (const guint8 **buffer,
-                                guint16 *buffer_size,
-                                guint n_bytes,
-                                QmiEndian endian,
-                                guint64 *out);
-
-

qmi_utils_read_sized_guint_from_buffer has been deprecated since version 1.12 and should not be used in newly-written code.

-

Use qmi_message_tlv_read_sized_guint() instead.

-
-

Reads a n_bytes --sized unsigned integer from the buffer. The number in the -buffer is expected to be given in the byte order specified by endian -, and -this method takes care of converting the read value to the proper host -endianness.

-

The user needs to make sure that at least n_bytes - bytes are available -in the buffer.

-

Also note that both buffer - and buffer_size - get updated after the n_bytes - -bytes read.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - - - - - - - - - - - -

buffer

a buffer with raw binary data.

 

buffer_size

size of buffer -.

 

n_bytes

number of bytes to read.

 

endian

endianness of firmware value; swapped to host byte order if necessary

 

out

return location for the read variable.

 
-
-

Since: 1.0

-
-
-
-

qmi_utils_read_gfloat_from_buffer ()

-
void
-qmi_utils_read_gfloat_from_buffer (const guint8 **buffer,
-                                   guint16 *buffer_size,
-                                   gfloat *out);
-
-

qmi_utils_read_gfloat_from_buffer has been deprecated since version 1.12 and should not be used in newly-written code.

-

Use qmi_message_tlv_read_gfloat() instead.

-
-

Reads a 32-bit floating-point number from the buffer.

-

The user needs to make sure that at least 4 bytes are available -in the buffer.

-

Also note that both buffer - and buffer_size - get updated after the 4 bytes -read.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

buffer

a buffer with raw binary data.

 

buffer_size

size of buffer -.

 

out

return location for the read variable.

 
-
-

Since: 1.10

-
-
-
-

qmi_utils_read_string_from_buffer ()

-
void
-qmi_utils_read_string_from_buffer (const guint8 **buffer,
-                                   guint16 *buffer_size,
-                                   guint8 length_prefix_size,
-                                   guint16 max_size,
-                                   gchar **out);
-
-

qmi_utils_read_string_from_buffer has been deprecated since version 1.12 and should not be used in newly-written code.

-

Use qmi_message_tlv_read_string() instead.

-
-

Reads a string from the buffer.

-

If length_prefix_size - is greater than 0, only the amount of bytes given -there will be read. Otherwise, up to buffer_size - bytes will be read.

-

Also note that both buffer - and buffer_size - get updated after the write.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - - - - - - - - - - - -

buffer

a buffer with raw binary data.

 

buffer_size

size of buffer -.

 

length_prefix_size

size of the length prefix integer in bits.

 

max_size

maximum number of bytes to read, or 0 to read all available bytes.

 

out

return location for the read string. The returned value should be freed with g_free().

 
-
-

Since: 1.0

-
-
-
-

qmi_utils_read_fixed_size_string_from_buffer ()

-
void
-qmi_utils_read_fixed_size_string_from_buffer
-                               (const guint8 **buffer,
-                                guint16 *buffer_size,
-                                guint16 fixed_size,
-                                gchar *out);
-
-

qmi_utils_read_fixed_size_string_from_buffer has been deprecated since version 1.12 and should not be used in newly-written code.

-

Use qmi_message_tlv_read_fixed_size_string() instead.

-
-

Reads a fixed_size --sized string from the buffer into the out - buffer.

-

Also note that both buffer - and buffer_size - get updated after the -fixed_size - bytes read.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - - - - - - -

buffer

a buffer with raw binary data.

 

buffer_size

size of buffer -.

 

fixed_size

number of bytes to read.

 

out

buffer preallocated by the client, with at least fixed_size -bytes.

 
-
-

Since: 1.0

-
-
-
-

qmi_utils_write_guint8_to_buffer ()

-
void
-qmi_utils_write_guint8_to_buffer (guint8 **buffer,
-                                  guint16 *buffer_size,
-                                  guint8 *in);
-
-

qmi_utils_write_guint8_to_buffer has been deprecated since version 1.12 and should not be used in newly-written code.

-

Use qmi_message_tlv_write_guint8() instead.

-
-

Writes an unsigned byte into the buffer.

-

The user needs to make sure that the buffer is at least 1 byte long.

-

Also note that both buffer - and buffer_size - get updated after the 1 byte -write.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

buffer

a buffer.

 

buffer_size

size of buffer -.

 

in

location of the variable to be written.

 
-
-

Since: 1.0

-
-
-
-

qmi_utils_write_gint8_to_buffer ()

-
void
-qmi_utils_write_gint8_to_buffer (guint8 **buffer,
-                                 guint16 *buffer_size,
-                                 gint8 *in);
-
-

qmi_utils_write_gint8_to_buffer has been deprecated since version 1.12 and should not be used in newly-written code.

-

Use qmi_message_tlv_write_gint8() instead.

-
-

Writes a signed byte into the buffer.

-

The user needs to make sure that the buffer is at least 1 byte long.

-

Also note that both buffer - and buffer_size - get updated after the 1 byte -write.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

buffer

a buffer.

 

buffer_size

size of buffer -.

 

in

location of the variable to be written.

 
-
-

Since: 1.0

-
-
-
-

qmi_utils_write_guint16_to_buffer ()

-
void
-qmi_utils_write_guint16_to_buffer (guint8 **buffer,
-                                   guint16 *buffer_size,
-                                   QmiEndian endian,
-                                   guint16 *in);
-
-

qmi_utils_write_guint16_to_buffer has been deprecated since version 1.12 and should not be used in newly-written code.

-

Use qmi_message_tlv_write_guint16() instead.

-
-

Writes an unsigned 16-bit integer into the buffer. The number to be written -is expected to be given in host endianness, and this method takes care of -converting the value written to the byte order specified by endian -.

-

The user needs to make sure that the buffer is at least 2 bytes long.

-

Also note that both buffer - and buffer_size - get updated after the 2 bytes -write.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - - - - - - -

buffer

a buffer.

 

buffer_size

size of buffer -.

 

endian

endianness of firmware value; swapped from host byte order if necessary

 

in

location of the variable to be written.

 
-
-

Since: 1.0

-
-
-
-

qmi_utils_write_gint16_to_buffer ()

-
void
-qmi_utils_write_gint16_to_buffer (guint8 **buffer,
-                                  guint16 *buffer_size,
-                                  QmiEndian endian,
-                                  gint16 *in);
-
-

qmi_utils_write_gint16_to_buffer has been deprecated since version 1.12 and should not be used in newly-written code.

-

Use qmi_message_tlv_write_gint16() instead.

-
-

Writes a signed 16-bit integer into the buffer. The number to be written -is expected to be given in host endianness, and this method takes care of -converting the value written to the byte order specified by endian -.

-

The user needs to make sure that the buffer is at least 2 bytes long.

-

Also note that both buffer - and buffer_size - get updated after the 2 bytes -write.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - - - - - - -

buffer

a buffer.

 

buffer_size

size of buffer -.

 

endian

endianness of firmware value; swapped from host byte order if necessary

 

in

location of the variable to be written.

 
-
-

Since: 1.0

-
-
-
-

qmi_utils_write_guint32_to_buffer ()

-
void
-qmi_utils_write_guint32_to_buffer (guint8 **buffer,
-                                   guint16 *buffer_size,
-                                   QmiEndian endian,
-                                   guint32 *in);
-
-

qmi_utils_write_guint32_to_buffer has been deprecated since version 1.12 and should not be used in newly-written code.

-

Use qmi_message_tlv_write_guint32() instead.

-
-

Writes an unsigned 32-bit integer into the buffer. The number to be written -is expected to be given in host endianness, and this method takes care of -converting the value written to the byte order specified by endian -.

-

The user needs to make sure that the buffer is at least 4 bytes long.

-

Also note that both buffer - and buffer_size - get updated after the 4 bytes -write.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - - - - - - -

buffer

a buffer.

 

buffer_size

size of buffer -.

 

endian

endianness of firmware value; swapped from host byte order if necessary

 

in

location of the variable to be written.

 
-
-

Since: 1.0

-
-
-
-

qmi_utils_write_gint32_to_buffer ()

-
void
-qmi_utils_write_gint32_to_buffer (guint8 **buffer,
-                                  guint16 *buffer_size,
-                                  QmiEndian endian,
-                                  gint32 *in);
-
-

qmi_utils_write_gint32_to_buffer has been deprecated since version 1.12 and should not be used in newly-written code.

-

Use qmi_message_tlv_write_gint32() instead.

-
-

Writes a signed 32-bit integer into the buffer. The number to be written -is expected to be given in host endianness, and this method takes care of -converting the value written to the byte order specified by endian -.

-

The user needs to make sure that the buffer is at least 4 bytes long.

-

Also note that both buffer - and buffer_size - get updated after the 4 bytes -write.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - - - - - - -

buffer

a buffer.

 

buffer_size

size of buffer -.

 

endian

endianness of firmware value; swapped from host byte order if necessary

 

in

location of the variable to be written.

 
-
-

Since: 1.0

-
-
-
-

qmi_utils_write_guint64_to_buffer ()

-
void
-qmi_utils_write_guint64_to_buffer (guint8 **buffer,
-                                   guint16 *buffer_size,
-                                   QmiEndian endian,
-                                   guint64 *in);
-
-

qmi_utils_write_guint64_to_buffer has been deprecated since version 1.12 and should not be used in newly-written code.

-

Use qmi_message_tlv_write_guint64() instead.

-
-

Writes an unsigned 64-bit integer into the buffer. The number to be written -is expected to be given in host endianness, and this method takes care of -converting the value written to the byte order specified by endian -.

-

The user needs to make sure that the buffer is at least 8 bytes long.

-

Also note that both buffer - and buffer_size - get updated after the 8 bytes -write.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - - - - - - -

buffer

a buffer.

 

buffer_size

size of buffer -.

 

endian

endianness of firmware value; swapped from host byte order if necessary

 

in

location of the variable to be written.

 
-
-

Since: 1.0

-
-
-
-

qmi_utils_write_gint64_to_buffer ()

-
void
-qmi_utils_write_gint64_to_buffer (guint8 **buffer,
-                                  guint16 *buffer_size,
-                                  QmiEndian endian,
-                                  gint64 *in);
-
-

qmi_utils_write_gint64_to_buffer has been deprecated since version 1.12 and should not be used in newly-written code.

-

Use qmi_message_tlv_write_gint64() instead.

-
-

Writes a signed 64-bit integer into the buffer. The number to be written -is expected to be given in host endianness, and this method takes care of -converting the value written to the byte order specified by endian -.

-

The user needs to make sure that the buffer is at least 8 bytes long.

-

Also note that both buffer - and buffer_size - get updated after the 8 bytes -write.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - - - - - - -

buffer

a buffer.

 

buffer_size

size of buffer -.

 

endian

endianness of firmware value; swapped from host byte order if necessary

 

in

location of the variable to be written.

 
-
-

Since: 1.0

-
-
-
-

qmi_utils_write_sized_guint_to_buffer ()

-
void
-qmi_utils_write_sized_guint_to_buffer (guint8 **buffer,
-                                       guint16 *buffer_size,
-                                       guint n_bytes,
-                                       QmiEndian endian,
-                                       guint64 *in);
-
-

qmi_utils_write_sized_guint_to_buffer has been deprecated since version 1.12 and should not be used in newly-written code.

-

Use qmi_message_tlv_write_sized_guint() instead.

-
-

Writes a n_bytes --sized unsigned integer into the buffer. The number to be -written is expected to be given in host endianness, and this method takes -care of converting the value written to the byte order specified by endian -.

-

The user needs to make sure that the buffer is at least n_bytes - bytes long.

-

Also note that both buffer - and buffer_size - get updated after the n_bytes - -bytes write.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - - - - - - - - - - - -

buffer

a buffer.

 

buffer_size

size of buffer -.

 

n_bytes

number of bytes to write.

 

endian

endianness of firmware value; swapped from host byte order if necessary

 

in

location of the variable to be written.

 
-
-

Since: 1.0

-
-
-
-

qmi_utils_write_string_to_buffer ()

-
void
-qmi_utils_write_string_to_buffer (guint8 **buffer,
-                                  guint16 *buffer_size,
-                                  guint8 length_prefix_size,
-                                  const gchar *in);
-
-

qmi_utils_write_string_to_buffer has been deprecated since version 1.12 and should not be used in newly-written code.

-

Use qmi_message_tlv_write_string() instead.

-
-

Writes a string to the buffer.

-

If length_prefix_size - is greater than 0, a length prefix integer will be -included in the write operation.

-

The user needs to make sure that the buffer has enough space for both the -whole string and the length prefix.

-

Also note that both buffer - and buffer_size - get updated after the write.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - - - - - - -

buffer

a buffer.

 

buffer_size

size of buffer -.

 

length_prefix_size

size of the length prefix integer in bits.

 

in

string to write.

 
-
-

Since: 1.0

-
-
-
-

qmi_utils_write_fixed_size_string_to_buffer ()

-
void
-qmi_utils_write_fixed_size_string_to_buffer
-                               (guint8 **buffer,
-                                guint16 *buffer_size,
-                                guint16 fixed_size,
-                                const gchar *in);
-
-

qmi_utils_write_fixed_size_string_to_buffer has been deprecated since version 1.12 and should not be used in newly-written code.

-

Use qmi_message_tlv_write_string() instead.

-
-

Writes a fixed_size --sized string to the buffer, without any length prefix.

-

The user needs to make sure that the buffer is at least fixed_size - bytes -long.

-

Also note that both buffer - and buffer_size - get updated after the -fixed_size - bytes write.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - - - - - - -

buffer

a buffer.

 

buffer_size

size of buffer -.

 

fixed_size

number of bytes to write.

 

in

string to write.

 
-
-

Since: 1.0

-

Types and Values

@@ -1614,6 +149,6 @@
+
Generated by GTK-Doc V1.29 \ No newline at end of file diff -Nru libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-Deprecated-interface.html libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-Deprecated-interface.html --- libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-Deprecated-interface.html 1970-01-01 01:00:00.000000000 +0100 +++ libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-Deprecated-interface.html 2019-01-08 15:19:01.000000000 +0100 @@ -0,0 +1,3323 @@ + + + + +Deprecated interface: libqmi-glib Reference Manual + + + + + + + + + + + + + + + + +
+
+
+ + +
+

Deprecated interface

+

Deprecated interface

+
+
+

Functions

+
++++ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+gboolean + +qmi_device_close () +
+void + +qmi_utils_read_guint8_from_buffer () +
+void + +qmi_utils_read_gint8_from_buffer () +
+void + +qmi_utils_read_guint16_from_buffer () +
+void + +qmi_utils_read_gint16_from_buffer () +
+void + +qmi_utils_read_guint32_from_buffer () +
+void + +qmi_utils_read_gint32_from_buffer () +
+void + +qmi_utils_read_guint64_from_buffer () +
+void + +qmi_utils_read_gint64_from_buffer () +
+void + +qmi_utils_read_sized_guint_from_buffer () +
+void + +qmi_utils_read_gfloat_from_buffer () +
+void + +qmi_utils_read_string_from_buffer () +
+void + +qmi_utils_read_fixed_size_string_from_buffer () +
+void + +qmi_utils_write_guint8_to_buffer () +
+void + +qmi_utils_write_gint8_to_buffer () +
+void + +qmi_utils_write_guint16_to_buffer () +
+void + +qmi_utils_write_gint16_to_buffer () +
+void + +qmi_utils_write_guint32_to_buffer () +
+void + +qmi_utils_write_gint32_to_buffer () +
+void + +qmi_utils_write_guint64_to_buffer () +
+void + +qmi_utils_write_gint64_to_buffer () +
+void + +qmi_utils_write_sized_guint_to_buffer () +
+void + +qmi_utils_write_string_to_buffer () +
+void + +qmi_utils_write_fixed_size_string_to_buffer () +
+gboolean + +qmi_message_get_version_introduced () +
+gchar * + +qmi_message_get_printable () +
+gboolean + +qmi_message_dms_set_service_programming_code_input_get_new () +
+gboolean + +qmi_message_dms_set_service_programming_code_input_set_new () +
+gboolean + +qmi_message_dms_set_service_programming_code_input_get_current () +
+gboolean + +qmi_message_dms_set_service_programming_code_input_set_current () +
+gboolean + +qmi_message_tlv_read_gfloat () +
+gboolean + +qmi_message_uim_change_pin_input_get_session_information () +
+gboolean + +qmi_message_uim_change_pin_input_set_session_information () +
+gboolean + +qmi_message_uim_get_file_attributes_input_get_session_information () +
+gboolean + +qmi_message_uim_get_file_attributes_input_set_session_information () +
+gboolean + +qmi_message_uim_read_record_input_get_session_information () +
+gboolean + +qmi_message_uim_read_record_input_set_session_information () +
+gboolean + +qmi_message_uim_read_transparent_input_get_session_information () +
+gboolean + +qmi_message_uim_read_transparent_input_set_session_information () +
+gboolean + +qmi_message_uim_set_pin_protection_input_get_session_information () +
+gboolean + +qmi_message_uim_set_pin_protection_input_set_session_information () +
+gboolean + +qmi_message_uim_unblock_pin_input_get_session_information () +
+gboolean + +qmi_message_uim_unblock_pin_input_set_session_information () +
+gboolean + +qmi_message_uim_verify_pin_input_get_session_information () +
+gboolean + +qmi_message_uim_verify_pin_input_set_session_information () +
+
+
+

Types and Values

+
++++ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
#defineQMI_NAS_SIM_REJECT_STATE_SIM_VAILABLE
#defineQMI_WDS_CDMA_CAUSE_CODE_NETWORK_ADDRESS_VACANT
#defineQMI_WDS_CDMA_CAUSE_CODE_NETWORK_ADDRESS_TRANSLATION_FAILURE
#defineQMI_WDS_CDMA_CAUSE_CODE_NETWORK_RESOURCE_SHORTAGE
#defineQMI_WDS_CDMA_CAUSE_CODE_NETWORK_FAILURE
#defineQMI_WDS_CDMA_CAUSE_CODE_NETWORK_INVALID_TELESERVICE_ID
#defineQMI_WDS_CDMA_CAUSE_CODE_NETWORK_OTHER
#defineQMI_WDS_CDMA_CAUSE_CODE_DESTINATION_NO_PAGE_RESPONSE
#defineQMI_WDS_CDMA_CAUSE_CODE_DESTINATION_BUSY
#defineQMI_WDS_CDMA_CAUSE_CODE_DESTINATION_NO_ACK
#defineQMI_WDS_CDMA_CAUSE_CODE_DESTINATION_RESOURCE_SHORTAGE
#defineQMI_WDS_CDMA_CAUSE_CODE_DESTINATION_SMS_DELIVERY_POSTPONED
#defineQMI_WDS_CDMA_CAUSE_CODE_DESTINATION_OUT_OF_SERVICE
#defineQMI_WDS_CDMA_CAUSE_CODE_DESTINATION_NOT_AT_ADDRESS
#defineQMI_WDS_CDMA_CAUSE_CODE_DESTINATION_OTHER
#defineQMI_WDS_CDMA_CAUSE_CODE_RADIO_INTERFACE_RESOURCE_SHORTAGE
#defineQMI_WDS_CDMA_CAUSE_CODE_RADIO_INTERFACE_INCOMPATIBILITY
#defineQMI_WDS_CDMA_CAUSE_CODE_RADIO_INTERFACE_OTHER
#defineQMI_WDS_CDMA_CAUSE_CODE_GENERAL_ENCODING
#defineQMI_WDS_CDMA_CAUSE_CODE_GENERAL_SMS_ORIGIN_DENIED
#defineQMI_WDS_CDMA_CAUSE_CODE_GENERAL_SMS_DESTINATION_DENIED
#defineQMI_WDS_CDMA_CAUSE_CODE_GENERAL_SUPPLEMENTARY_SERVICE_NOT_SUPPORTED
#defineQMI_WDS_CDMA_CAUSE_CODE_GENERAL_SMS_NOT_SUPPORTED
#defineQMI_WDS_CDMA_CAUSE_CODE_GENERAL_MISSING_EXPECTED_PARAMETER
#defineQMI_WDS_CDMA_CAUSE_CODE_GENERAL_MISSING_MANDATORY_PARAMETER
#defineQMI_WDS_CDMA_CAUSE_CODE_GENERAL_UNRECOGNIZED_PARAMETER_VALUE
#defineQMI_WDS_CDMA_CAUSE_CODE_GENERAL_UNEXPECTED_PARAMETER_VALUE
#defineQMI_WDS_CDMA_CAUSE_CODE_GENERAL_USER_DATA_SIZE_ERROR
#defineQMI_WDS_CDMA_CAUSE_CODE_GENERAL_OTHER
#defineQMI_PROTOCOL_ERROR_QOS_UNAVAILABLE
+
+
+

Description

+

These types and methods are flagged as deprecated and therefore +shouldn't be used in newly written code. They are provided to avoid +innecessary API/ABI breaks, for compatibility purposes only.

+
+
+

Functions

+
+

qmi_device_close ()

+
gboolean
+qmi_device_close (QmiDevice *self,
+                  GError **error);
+
+

qmi_device_close has been deprecated since version 1.18 and should not be used in newly-written code.

+

Use qmi_device_close_async() instead.

+
+

Synchronously closes a QmiDevice, preventing any further I/O.

+

If this device was opened with QMI_DEVICE_OPEN_FLAGS_MBIM +, this +operation will not wait for the response of the underlying MBIM +close sequence.

+

Closing a QmiDevice multiple times will not return an error.

+
+

Parameters

+
+++++ + + + + + + + + + + + + +

self

a QmiDevice

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if successful, FALSE if error +is set.

+
+

Since: 1.0

+
+
+
+

qmi_utils_read_guint8_from_buffer ()

+
void
+qmi_utils_read_guint8_from_buffer (const guint8 **buffer,
+                                   guint16 *buffer_size,
+                                   guint8 *out);
+
+

qmi_utils_read_guint8_from_buffer has been deprecated since version 1.12 and should not be used in newly-written code.

+

Use qmi_message_tlv_read_guint8() instead.

+
+

Reads an unsigned byte from the buffer.

+

The user needs to make sure that at least 1 byte is available +in the buffer.

+

Also note that both buffer + and buffer_size + get updated after the 1 byte +read.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

buffer

a buffer with raw binary data.

 

buffer_size

size of buffer +.

 

out

return location for the read variable.

 
+
+

Since: 1.0

+
+
+
+

qmi_utils_read_gint8_from_buffer ()

+
void
+qmi_utils_read_gint8_from_buffer (const guint8 **buffer,
+                                  guint16 *buffer_size,
+                                  gint8 *out);
+
+

qmi_utils_read_gint8_from_buffer has been deprecated since version 1.12 and should not be used in newly-written code.

+

Use qmi_message_tlv_read_gint8() instead.

+
+

Reads a signed byte from the buffer.

+

The user needs to make sure that at least 1 byte is available +in the buffer.

+

Also note that both buffer + and buffer_size + get updated after the 1 byte +read.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

buffer

a buffer with raw binary data.

 

buffer_size

size of buffer +.

 

out

return location for the read variable.

 
+
+

Since: 1.0

+
+
+
+

qmi_utils_read_guint16_from_buffer ()

+
void
+qmi_utils_read_guint16_from_buffer (const guint8 **buffer,
+                                    guint16 *buffer_size,
+                                    QmiEndian endian,
+                                    guint16 *out);
+
+

qmi_utils_read_guint16_from_buffer has been deprecated since version 1.12 and should not be used in newly-written code.

+

Use qmi_message_tlv_read_guint16() instead.

+
+

Reads an unsigned 16-bit integer from the buffer. The number in the buffer is +expected to be given in the byte order specificed by endian +, and this method +takes care of converting the read value to the proper host endianness.

+

The user needs to make sure that at least 2 bytes are available +in the buffer.

+

Also note that both buffer + and buffer_size + get updated after the 2 bytes +read.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + + + + + + +

buffer

a buffer with raw binary data.

 

buffer_size

size of buffer +.

 

endian

endianness of firmware value; swapped to host byte order if necessary

 

out

return location for the read variable.

 
+
+

Since: 1.0

+
+
+
+

qmi_utils_read_gint16_from_buffer ()

+
void
+qmi_utils_read_gint16_from_buffer (const guint8 **buffer,
+                                   guint16 *buffer_size,
+                                   QmiEndian endian,
+                                   gint16 *out);
+
+

qmi_utils_read_gint16_from_buffer has been deprecated since version 1.12 and should not be used in newly-written code.

+

Use qmi_message_tlv_read_gint16() instead.

+
+

Reads a signed 16-bit integer from the buffer. The number in the buffer is +expected to be given in the byte order specified by endian +, and this method +takes care of converting the read value to the proper host endianness.

+

The user needs to make sure that at least 2 bytes are available +in the buffer.

+

Also note that both buffer + and buffer_size + get updated after the 2 bytes +read.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + + + + + + +

buffer

a buffer with raw binary data.

 

buffer_size

size of buffer +.

 

endian

endianness of firmware value; swapped to host byte order if necessary

 

out

return location for the read variable.

 
+
+

Since: 1.0

+
+
+
+

qmi_utils_read_guint32_from_buffer ()

+
void
+qmi_utils_read_guint32_from_buffer (const guint8 **buffer,
+                                    guint16 *buffer_size,
+                                    QmiEndian endian,
+                                    guint32 *out);
+
+

qmi_utils_read_guint32_from_buffer has been deprecated since version 1.12 and should not be used in newly-written code.

+

Use qmi_message_tlv_read_guint32() instead.

+
+

Reads an unsigned 32-bit integer from the buffer. The number in the buffer is +expected to be given in the byte order specified by endian +, and this method +takes care of converting the read value to the proper host endianness.

+

The user needs to make sure that at least 4 bytes are available +in the buffer.

+

Also note that both buffer + and buffer_size + get updated after the 4 bytes +read.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + + + + + + +

buffer

a buffer with raw binary data.

 

buffer_size

size of buffer +.

 

endian

endianness of firmware value; swapped to host byte order if necessary

 

out

return location for the read variable.

 
+
+

Since: 1.0

+
+
+
+

qmi_utils_read_gint32_from_buffer ()

+
void
+qmi_utils_read_gint32_from_buffer (const guint8 **buffer,
+                                   guint16 *buffer_size,
+                                   QmiEndian endian,
+                                   gint32 *out);
+
+

qmi_utils_read_gint32_from_buffer has been deprecated since version 1.12 and should not be used in newly-written code.

+

Use qmi_message_tlv_read_gint32() instead.

+
+

Reads a signed 32-bit integer from the buffer. The number in the buffer is +expected to be given in the byte order specified by endian +, and this method +takes care of converting the read value to the proper host endianness.

+

The user needs to make sure that at least 4 bytes are available +in the buffer.

+

Also note that both buffer + and buffer_size + get updated after the 4 bytes +read.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + + + + + + +

buffer

a buffer with raw binary data.

 

buffer_size

size of buffer +.

 

endian

endianness of firmware value; swapped to host byte order if necessary

 

out

return location for the read variable.

 
+
+

Since: 1.0

+
+
+
+

qmi_utils_read_guint64_from_buffer ()

+
void
+qmi_utils_read_guint64_from_buffer (const guint8 **buffer,
+                                    guint16 *buffer_size,
+                                    QmiEndian endian,
+                                    guint64 *out);
+
+

qmi_utils_read_guint64_from_buffer has been deprecated since version 1.12 and should not be used in newly-written code.

+

Use qmi_message_tlv_read_guint64() instead.

+
+

Reads an unsigned 64-bit integer from the buffer. The number in the buffer is +expected to be given in the byte order specified by endian +, and this method +takes care of converting the read value to the proper host endianness.

+

The user needs to make sure that at least 8 bytes are available +in the buffer.

+

Also note that both buffer + and buffer_size + get updated after the 8 bytes +read.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + + + + + + +

buffer

a buffer with raw binary data.

 

buffer_size

size of buffer +.

 

endian

endianness of firmware value; swapped to host byte order if necessary

 

out

return location for the read variable.

 
+
+

Since: 1.0

+
+
+
+

qmi_utils_read_gint64_from_buffer ()

+
void
+qmi_utils_read_gint64_from_buffer (const guint8 **buffer,
+                                   guint16 *buffer_size,
+                                   QmiEndian endian,
+                                   gint64 *out);
+
+

qmi_utils_read_gint64_from_buffer has been deprecated since version 1.12 and should not be used in newly-written code.

+

Use qmi_message_tlv_read_gint64() instead.

+
+

Reads a signed 64-bit integer from the buffer. The number in the buffer is +expected to be given in the byte order specified by endian +, and this method +takes care of converting the read value to the proper host endianness.

+

The user needs to make sure that at least 8 bytes are available +in the buffer.

+

Also note that both buffer + and buffer_size + get updated after the 8 bytes +read.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + + + + + + +

buffer

a buffer with raw binary data.

 

buffer_size

size of buffer +.

 

endian

endianness of firmware value; swapped to host byte order if necessary

 

out

return location for the read variable.

 
+
+

Since: 1.0

+
+
+
+

qmi_utils_read_sized_guint_from_buffer ()

+
void
+qmi_utils_read_sized_guint_from_buffer
+                               (const guint8 **buffer,
+                                guint16 *buffer_size,
+                                guint n_bytes,
+                                QmiEndian endian,
+                                guint64 *out);
+
+

qmi_utils_read_sized_guint_from_buffer has been deprecated since version 1.12 and should not be used in newly-written code.

+

Use qmi_message_tlv_read_sized_guint() instead.

+
+

Reads a n_bytes +-sized unsigned integer from the buffer. The number in the +buffer is expected to be given in the byte order specified by endian +, and +this method takes care of converting the read value to the proper host +endianness.

+

The user needs to make sure that at least n_bytes + bytes are available +in the buffer.

+

Also note that both buffer + and buffer_size + get updated after the n_bytes + +bytes read.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + + + + + + + + + + + +

buffer

a buffer with raw binary data.

 

buffer_size

size of buffer +.

 

n_bytes

number of bytes to read.

 

endian

endianness of firmware value; swapped to host byte order if necessary

 

out

return location for the read variable.

 
+
+

Since: 1.0

+
+
+
+

qmi_utils_read_gfloat_from_buffer ()

+
void
+qmi_utils_read_gfloat_from_buffer (const guint8 **buffer,
+                                   guint16 *buffer_size,
+                                   gfloat *out);
+
+

qmi_utils_read_gfloat_from_buffer has been deprecated since version 1.12 and should not be used in newly-written code.

+

Use qmi_message_tlv_read_gfloat() instead.

+
+

Reads a 32-bit floating-point number from the buffer.

+

The user needs to make sure that at least 4 bytes are available +in the buffer.

+

Also note that both buffer + and buffer_size + get updated after the 4 bytes +read.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

buffer

a buffer with raw binary data.

 

buffer_size

size of buffer +.

 

out

return location for the read variable.

 
+
+

Since: 1.10

+
+
+
+

qmi_utils_read_string_from_buffer ()

+
void
+qmi_utils_read_string_from_buffer (const guint8 **buffer,
+                                   guint16 *buffer_size,
+                                   guint8 length_prefix_size,
+                                   guint16 max_size,
+                                   gchar **out);
+
+

qmi_utils_read_string_from_buffer has been deprecated since version 1.12 and should not be used in newly-written code.

+

Use qmi_message_tlv_read_string() instead.

+
+

Reads a string from the buffer.

+

If length_prefix_size + is greater than 0, only the amount of bytes given +there will be read. Otherwise, up to buffer_size + bytes will be read.

+

Also note that both buffer + and buffer_size + get updated after the write.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + + + + + + + + + + + +

buffer

a buffer with raw binary data.

 

buffer_size

size of buffer +.

 

length_prefix_size

size of the length prefix integer in bits.

 

max_size

maximum number of bytes to read, or 0 to read all available bytes.

 

out

return location for the read string. The returned value should be freed with g_free().

 
+
+

Since: 1.0

+
+
+
+

qmi_utils_read_fixed_size_string_from_buffer ()

+
void
+qmi_utils_read_fixed_size_string_from_buffer
+                               (const guint8 **buffer,
+                                guint16 *buffer_size,
+                                guint16 fixed_size,
+                                gchar *out);
+
+

qmi_utils_read_fixed_size_string_from_buffer has been deprecated since version 1.12 and should not be used in newly-written code.

+

Use qmi_message_tlv_read_fixed_size_string() instead.

+
+

Reads a fixed_size +-sized string from the buffer into the out + buffer.

+

Also note that both buffer + and buffer_size + get updated after the +fixed_size + bytes read.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + + + + + + +

buffer

a buffer with raw binary data.

 

buffer_size

size of buffer +.

 

fixed_size

number of bytes to read.

 

out

buffer preallocated by the client, with at least fixed_size +bytes.

 
+
+

Since: 1.0

+
+
+
+

qmi_utils_write_guint8_to_buffer ()

+
void
+qmi_utils_write_guint8_to_buffer (guint8 **buffer,
+                                  guint16 *buffer_size,
+                                  guint8 *in);
+
+

qmi_utils_write_guint8_to_buffer has been deprecated since version 1.12 and should not be used in newly-written code.

+

Use qmi_message_tlv_write_guint8() instead.

+
+

Writes an unsigned byte into the buffer.

+

The user needs to make sure that the buffer is at least 1 byte long.

+

Also note that both buffer + and buffer_size + get updated after the 1 byte +write.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

buffer

a buffer.

 

buffer_size

size of buffer +.

 

in

location of the variable to be written.

 
+
+

Since: 1.0

+
+
+
+

qmi_utils_write_gint8_to_buffer ()

+
void
+qmi_utils_write_gint8_to_buffer (guint8 **buffer,
+                                 guint16 *buffer_size,
+                                 gint8 *in);
+
+

qmi_utils_write_gint8_to_buffer has been deprecated since version 1.12 and should not be used in newly-written code.

+

Use qmi_message_tlv_write_gint8() instead.

+
+

Writes a signed byte into the buffer.

+

The user needs to make sure that the buffer is at least 1 byte long.

+

Also note that both buffer + and buffer_size + get updated after the 1 byte +write.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

buffer

a buffer.

 

buffer_size

size of buffer +.

 

in

location of the variable to be written.

 
+
+

Since: 1.0

+
+
+
+

qmi_utils_write_guint16_to_buffer ()

+
void
+qmi_utils_write_guint16_to_buffer (guint8 **buffer,
+                                   guint16 *buffer_size,
+                                   QmiEndian endian,
+                                   guint16 *in);
+
+

qmi_utils_write_guint16_to_buffer has been deprecated since version 1.12 and should not be used in newly-written code.

+

Use qmi_message_tlv_write_guint16() instead.

+
+

Writes an unsigned 16-bit integer into the buffer. The number to be written +is expected to be given in host endianness, and this method takes care of +converting the value written to the byte order specified by endian +.

+

The user needs to make sure that the buffer is at least 2 bytes long.

+

Also note that both buffer + and buffer_size + get updated after the 2 bytes +write.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + + + + + + +

buffer

a buffer.

 

buffer_size

size of buffer +.

 

endian

endianness of firmware value; swapped from host byte order if necessary

 

in

location of the variable to be written.

 
+
+

Since: 1.0

+
+
+
+

qmi_utils_write_gint16_to_buffer ()

+
void
+qmi_utils_write_gint16_to_buffer (guint8 **buffer,
+                                  guint16 *buffer_size,
+                                  QmiEndian endian,
+                                  gint16 *in);
+
+

qmi_utils_write_gint16_to_buffer has been deprecated since version 1.12 and should not be used in newly-written code.

+

Use qmi_message_tlv_write_gint16() instead.

+
+

Writes a signed 16-bit integer into the buffer. The number to be written +is expected to be given in host endianness, and this method takes care of +converting the value written to the byte order specified by endian +.

+

The user needs to make sure that the buffer is at least 2 bytes long.

+

Also note that both buffer + and buffer_size + get updated after the 2 bytes +write.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + + + + + + +

buffer

a buffer.

 

buffer_size

size of buffer +.

 

endian

endianness of firmware value; swapped from host byte order if necessary

 

in

location of the variable to be written.

 
+
+

Since: 1.0

+
+
+
+

qmi_utils_write_guint32_to_buffer ()

+
void
+qmi_utils_write_guint32_to_buffer (guint8 **buffer,
+                                   guint16 *buffer_size,
+                                   QmiEndian endian,
+                                   guint32 *in);
+
+

qmi_utils_write_guint32_to_buffer has been deprecated since version 1.12 and should not be used in newly-written code.

+

Use qmi_message_tlv_write_guint32() instead.

+
+

Writes an unsigned 32-bit integer into the buffer. The number to be written +is expected to be given in host endianness, and this method takes care of +converting the value written to the byte order specified by endian +.

+

The user needs to make sure that the buffer is at least 4 bytes long.

+

Also note that both buffer + and buffer_size + get updated after the 4 bytes +write.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + + + + + + +

buffer

a buffer.

 

buffer_size

size of buffer +.

 

endian

endianness of firmware value; swapped from host byte order if necessary

 

in

location of the variable to be written.

 
+
+

Since: 1.0

+
+
+
+

qmi_utils_write_gint32_to_buffer ()

+
void
+qmi_utils_write_gint32_to_buffer (guint8 **buffer,
+                                  guint16 *buffer_size,
+                                  QmiEndian endian,
+                                  gint32 *in);
+
+

qmi_utils_write_gint32_to_buffer has been deprecated since version 1.12 and should not be used in newly-written code.

+

Use qmi_message_tlv_write_gint32() instead.

+
+

Writes a signed 32-bit integer into the buffer. The number to be written +is expected to be given in host endianness, and this method takes care of +converting the value written to the byte order specified by endian +.

+

The user needs to make sure that the buffer is at least 4 bytes long.

+

Also note that both buffer + and buffer_size + get updated after the 4 bytes +write.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + + + + + + +

buffer

a buffer.

 

buffer_size

size of buffer +.

 

endian

endianness of firmware value; swapped from host byte order if necessary

 

in

location of the variable to be written.

 
+
+

Since: 1.0

+
+
+
+

qmi_utils_write_guint64_to_buffer ()

+
void
+qmi_utils_write_guint64_to_buffer (guint8 **buffer,
+                                   guint16 *buffer_size,
+                                   QmiEndian endian,
+                                   guint64 *in);
+
+

qmi_utils_write_guint64_to_buffer has been deprecated since version 1.12 and should not be used in newly-written code.

+

Use qmi_message_tlv_write_guint64() instead.

+
+

Writes an unsigned 64-bit integer into the buffer. The number to be written +is expected to be given in host endianness, and this method takes care of +converting the value written to the byte order specified by endian +.

+

The user needs to make sure that the buffer is at least 8 bytes long.

+

Also note that both buffer + and buffer_size + get updated after the 8 bytes +write.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + + + + + + +

buffer

a buffer.

 

buffer_size

size of buffer +.

 

endian

endianness of firmware value; swapped from host byte order if necessary

 

in

location of the variable to be written.

 
+
+

Since: 1.0

+
+
+
+

qmi_utils_write_gint64_to_buffer ()

+
void
+qmi_utils_write_gint64_to_buffer (guint8 **buffer,
+                                  guint16 *buffer_size,
+                                  QmiEndian endian,
+                                  gint64 *in);
+
+

qmi_utils_write_gint64_to_buffer has been deprecated since version 1.12 and should not be used in newly-written code.

+

Use qmi_message_tlv_write_gint64() instead.

+
+

Writes a signed 64-bit integer into the buffer. The number to be written +is expected to be given in host endianness, and this method takes care of +converting the value written to the byte order specified by endian +.

+

The user needs to make sure that the buffer is at least 8 bytes long.

+

Also note that both buffer + and buffer_size + get updated after the 8 bytes +write.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + + + + + + +

buffer

a buffer.

 

buffer_size

size of buffer +.

 

endian

endianness of firmware value; swapped from host byte order if necessary

 

in

location of the variable to be written.

 
+
+

Since: 1.0

+
+
+
+

qmi_utils_write_sized_guint_to_buffer ()

+
void
+qmi_utils_write_sized_guint_to_buffer (guint8 **buffer,
+                                       guint16 *buffer_size,
+                                       guint n_bytes,
+                                       QmiEndian endian,
+                                       guint64 *in);
+
+

qmi_utils_write_sized_guint_to_buffer has been deprecated since version 1.12 and should not be used in newly-written code.

+

Use qmi_message_tlv_write_sized_guint() instead.

+
+

Writes a n_bytes +-sized unsigned integer into the buffer. The number to be +written is expected to be given in host endianness, and this method takes +care of converting the value written to the byte order specified by endian +.

+

The user needs to make sure that the buffer is at least n_bytes + bytes long.

+

Also note that both buffer + and buffer_size + get updated after the n_bytes + +bytes write.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + + + + + + + + + + + +

buffer

a buffer.

 

buffer_size

size of buffer +.

 

n_bytes

number of bytes to write.

 

endian

endianness of firmware value; swapped from host byte order if necessary

 

in

location of the variable to be written.

 
+
+

Since: 1.0

+
+
+
+

qmi_utils_write_string_to_buffer ()

+
void
+qmi_utils_write_string_to_buffer (guint8 **buffer,
+                                  guint16 *buffer_size,
+                                  guint8 length_prefix_size,
+                                  const gchar *in);
+
+

qmi_utils_write_string_to_buffer has been deprecated since version 1.12 and should not be used in newly-written code.

+

Use qmi_message_tlv_write_string() instead.

+
+

Writes a string to the buffer.

+

If length_prefix_size + is greater than 0, a length prefix integer will be +included in the write operation.

+

The user needs to make sure that the buffer has enough space for both the +whole string and the length prefix.

+

Also note that both buffer + and buffer_size + get updated after the write.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + + + + + + +

buffer

a buffer.

 

buffer_size

size of buffer +.

 

length_prefix_size

size of the length prefix integer in bits.

 

in

string to write.

 
+
+

Since: 1.0

+
+
+
+

qmi_utils_write_fixed_size_string_to_buffer ()

+
void
+qmi_utils_write_fixed_size_string_to_buffer
+                               (guint8 **buffer,
+                                guint16 *buffer_size,
+                                guint16 fixed_size,
+                                const gchar *in);
+
+

qmi_utils_write_fixed_size_string_to_buffer has been deprecated since version 1.12 and should not be used in newly-written code.

+

Use qmi_message_tlv_write_string() instead.

+
+

Writes a fixed_size +-sized string to the buffer, without any length prefix.

+

The user needs to make sure that the buffer is at least fixed_size + bytes +long.

+

Also note that both buffer + and buffer_size + get updated after the +fixed_size + bytes write.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + + + + + + +

buffer

a buffer.

 

buffer_size

size of buffer +.

 

fixed_size

number of bytes to write.

 

in

string to write.

 
+
+

Since: 1.0

+
+
+
+

qmi_message_get_version_introduced ()

+
gboolean
+qmi_message_get_version_introduced (QmiMessage *self,
+                                    guint *major,
+                                    guint *minor);
+
+

qmi_message_get_version_introduced has been deprecated since version 1.18 and should not be used in newly-written code.

+

Use qmi_message_get_version_introduced_full() instead.

+
+

Gets, if known, the service version in which the given message was first +introduced.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessage.

 

major

(out) return location for the major version.

 

minor

(out) return location for the minor version.

 
+
+
+

Returns

+

TRUE if major +and minor +are set, FALSE otherwise.

+
+

Since: 1.0

+
+
+
+

qmi_message_get_printable ()

+
gchar *
+qmi_message_get_printable (QmiMessage *self,
+                           const gchar *line_prefix);
+
+

qmi_message_get_printable has been deprecated since version 1.18 and should not be used in newly-written code.

+

Use qmi_message_get_printable_full() instead.

+
+

Gets a printable string with the contents of the whole QMI message.

+

If known, the printable string will contain translated TLV values as well as the raw +data buffer contents.

+
+

Parameters

+
+++++ + + + + + + + + + + + + +

self

a QmiMessage.

 

line_prefix

prefix string to use in each new generated line.

 
+
+
+

Returns

+

a newly allocated string, which should be freed with g_free().

+

[transfer full]

+
+

Since: 1.0

+
+
+
+

qmi_message_dms_set_service_programming_code_input_get_new ()

+
gboolean
+qmi_message_dms_set_service_programming_code_input_get_new
+                               (QmiMessageDmsSetServiceProgrammingCodeInput *self,
+                                const gchar **arg_new,
+                                GError **error);
+
+

qmi_message_dms_set_service_programming_code_input_get_new has been deprecated since version 1.14.0 and should not be used in newly-written code.

+

Use qmi_message_dms_set_service_programming_code_input_get_new_code() instead.

+
+

Get the 'New Code' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageDmsSetServiceProgrammingCodeInput.

 

arg_new

a placeholder for the output constant string, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.0

+
+
+
+

qmi_message_dms_set_service_programming_code_input_set_new ()

+
gboolean
+qmi_message_dms_set_service_programming_code_input_set_new
+                               (QmiMessageDmsSetServiceProgrammingCodeInput *self,
+                                const gchar *arg_new,
+                                GError **error);
+
+

qmi_message_dms_set_service_programming_code_input_set_new has been deprecated since version 1.14.0 and should not be used in newly-written code.

+

Use qmi_message_dms_set_service_programming_code_input_set_new_code() instead.

+
+

Set the 'New Code' field in the message.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageDmsSetServiceProgrammingCodeInput.

 

arg_new

a constant string of exactly 6 characters.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if value +was successfully set, FALSE otherwise.

+
+

Since: 1.0

+
+
+
+

qmi_message_dms_set_service_programming_code_input_get_current ()

+
gboolean
+qmi_message_dms_set_service_programming_code_input_get_current
+                               (QmiMessageDmsSetServiceProgrammingCodeInput *self,
+                                const gchar **arg_current,
+                                GError **error);
+
+

qmi_message_dms_set_service_programming_code_input_get_current has been deprecated since version 1.14.0 and should not be used in newly-written code.

+

Use qmi_message_dms_set_service_programming_code_input_get_current_code() instead.

+
+

Get the 'Current Code' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageDmsSetServiceProgrammingCodeInput.

 

arg_current

a placeholder for the output constant string, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.0

+
+
+
+

qmi_message_dms_set_service_programming_code_input_set_current ()

+
gboolean
+qmi_message_dms_set_service_programming_code_input_set_current
+                               (QmiMessageDmsSetServiceProgrammingCodeInput *self,
+                                const gchar *arg_current,
+                                GError **error);
+
+

qmi_message_dms_set_service_programming_code_input_set_current has been deprecated since version 1.14.0 and should not be used in newly-written code.

+

Use qmi_message_dms_set_service_programming_code_input_set_current_code() instead.

+
+

Get the 'Current Code' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageDmsSetServiceProgrammingCodeInput.

 

arg_current

a placeholder for the output constant string, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.0

+
+
+
+

qmi_message_tlv_read_gfloat ()

+
gboolean
+qmi_message_tlv_read_gfloat (QmiMessage *self,
+                             gsize tlv_offset,
+                             gsize *offset,
+                             gfloat *out,
+                             GError **error);
+
+

qmi_message_tlv_read_gfloat has been deprecated since version 1.22 and should not be used in newly-written code.

+

Use qmi_message_tlv_read_gfloat_endian() instead.

+
+

Reads a 32-bit floating-point number from the TLV.

+

offset + needs to point to a valid gsize + specifying the index to start +reading from within the TLV value (0 for the first item). If the variable +is successfully read, offset + will be updated to point past the read item.

+

The implementation assumes the float is encoded with the same endianness as +the host, which may not be true. The use of this method is discouraged, and +new code should use qmi_message_tlv_read_gfloat_endian() instead.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + + + + + + + + + + + +

self

a QmiMessage.

 

tlv_offset

offset that was returned by qmi_message_tlv_read_init().

 

offset

address of a the offset within the TLV value.

 

out

return location for the read gfloat.

 

error

return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the variable is successfully read, otherwise FALSE is returned and error +is set.

+
+

Since: 1.12

+
+
+
+

qmi_message_uim_change_pin_input_get_session_information ()

+
gboolean
+qmi_message_uim_change_pin_input_get_session_information
+                               (QmiMessageUimChangePinInput *self,
+                                QmiUimSessionType *value_session_information_session_type,
+                                const gchar **value_session_information_application_identifier,
+                                GError **error);
+
+

qmi_message_uim_change_pin_input_get_session_information has been deprecated since version 1.22 and should not be used in newly-written code.

+

Use qmi_message_uim_change_pin_input_get_session() instead.

+
+

Get the 'Session Information' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + + + + + + +

self

a QmiMessageUimChangePinInput.

 

value_session_information_session_type

a placeholder for the output QmiUimSessionType, or NULL if not required.

 

value_session_information_application_identifier

a placeholder for the output constant string, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.14

+
+
+
+

qmi_message_uim_change_pin_input_set_session_information ()

+
gboolean
+qmi_message_uim_change_pin_input_set_session_information
+                               (QmiMessageUimChangePinInput *self,
+                                QmiUimSessionType value_session_information_session_type,
+                                const gchar *value_session_information_application_identifier,
+                                GError **error);
+
+

qmi_message_uim_change_pin_input_set_session_information has been deprecated since version 1.22 and should not be used in newly-written code.

+

Use qmi_message_uim_change_pin_input_set_session() instead.

+
+

Set the 'Session Information' field in the message.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + + + + + + +

self

a QmiMessageUimChangePinInput.

 

value_session_information_session_type

a QmiUimSessionType.

 

value_session_information_application_identifier

a constant string.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if value +was successfully set, FALSE otherwise.

+
+

Since: 1.14

+
+
+
+

qmi_message_uim_get_file_attributes_input_get_session_information ()

+
gboolean
+qmi_message_uim_get_file_attributes_input_get_session_information
+                               (QmiMessageUimGetFileAttributesInput *self,
+                                QmiUimSessionType *value_session_information_session_type,
+                                const gchar **value_session_information_application_identifier,
+                                GError **error);
+
+

qmi_message_uim_get_file_attributes_input_get_session_information has been deprecated since version 1.22 and should not be used in newly-written code.

+

Use qmi_message_uim_get_file_attributes_input_get_session() instead.

+
+

Get the 'Session Information' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + + + + + + +

self

a QmiMessageUimGetFileAttributesInput.

 

value_session_information_session_type

a placeholder for the output QmiUimSessionType, or NULL if not required.

 

value_session_information_application_identifier

a placeholder for the output constant string, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.6

+
+
+
+

qmi_message_uim_get_file_attributes_input_set_session_information ()

+
gboolean
+qmi_message_uim_get_file_attributes_input_set_session_information
+                               (QmiMessageUimGetFileAttributesInput *self,
+                                QmiUimSessionType value_session_information_session_type,
+                                const gchar *value_session_information_application_identifier,
+                                GError **error);
+
+

qmi_message_uim_get_file_attributes_input_set_session_information has been deprecated since version 1.22 and should not be used in newly-written code.

+

Use qmi_message_uim_get_file_attributes_input_set_session() instead.

+
+

Set the 'Session Information' field in the message.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + + + + + + +

self

a QmiMessageUimGetFileAttributesInput.

 

value_session_information_session_type

a QmiUimSessionType.

 

value_session_information_application_identifier

a constant string.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if value +was successfully set, FALSE otherwise.

+
+

Since: 1.6

+
+
+
+

qmi_message_uim_read_record_input_get_session_information ()

+
gboolean
+qmi_message_uim_read_record_input_get_session_information
+                               (QmiMessageUimReadRecordInput *self,
+                                QmiUimSessionType *value_session_information_session_type,
+                                const gchar **value_session_information_application_identifier,
+                                GError **error);
+
+

qmi_message_uim_read_record_input_get_session_information has been deprecated since version 1.22 and should not be used in newly-written code.

+

Use qmi_message_uim_read_record_input_get_session_information() instead.

+
+

Get the 'Session Information' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + + + + + + +

self

a QmiMessageUimReadRecordInput.

 

value_session_information_session_type

a placeholder for the output QmiUimSessionType, or NULL if not required.

 

value_session_information_application_identifier

a placeholder for the output constant string, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.6

+
+
+
+

qmi_message_uim_read_record_input_set_session_information ()

+
gboolean
+qmi_message_uim_read_record_input_set_session_information
+                               (QmiMessageUimReadRecordInput *self,
+                                QmiUimSessionType value_session_information_session_type,
+                                const gchar *value_session_information_application_identifier,
+                                GError **error);
+
+

qmi_message_uim_read_record_input_set_session_information has been deprecated since version 1.22 and should not be used in newly-written code.

+

Use qmi_message_uim_read_record_input_set_session() instead.

+
+

Set the 'Session Information' field in the message.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + + + + + + +

self

a QmiMessageUimReadRecordInput.

 

value_session_information_session_type

a QmiUimSessionType.

 

value_session_information_application_identifier

a constant string.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if value +was successfully set, FALSE otherwise.

+
+

Since: 1.6

+
+
+
+

qmi_message_uim_read_transparent_input_get_session_information ()

+
gboolean
+qmi_message_uim_read_transparent_input_get_session_information
+                               (QmiMessageUimReadTransparentInput *self,
+                                QmiUimSessionType *value_session_information_session_type,
+                                const gchar **value_session_information_application_identifier,
+                                GError **error);
+
+

qmi_message_uim_read_transparent_input_get_session_information has been deprecated since version 1.22 and should not be used in newly-written code.

+

Use qmi_message_uim_read_transparent_input_get_session() instead.

+
+

Get the 'Session Information' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + + + + + + +

self

a QmiMessageUimReadTransparentInput.

 

value_session_information_session_type

a placeholder for the output QmiUimSessionType, or NULL if not required.

 

value_session_information_application_identifier

a placeholder for the output constant string, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.6

+
+
+
+

qmi_message_uim_read_transparent_input_set_session_information ()

+
gboolean
+qmi_message_uim_read_transparent_input_set_session_information
+                               (QmiMessageUimReadTransparentInput *self,
+                                QmiUimSessionType value_session_information_session_type,
+                                const gchar *value_session_information_application_identifier,
+                                GError **error);
+
+

qmi_message_uim_read_transparent_input_set_session_information has been deprecated since version 1.22 and should not be used in newly-written code.

+

Use qmi_message_uim_read_transparent_input_set_session() instead.

+
+

Set the 'Session Information' field in the message.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + + + + + + +

self

a QmiMessageUimReadTransparentInput.

 

value_session_information_session_type

a QmiUimSessionType.

 

value_session_information_application_identifier

a constant string.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if value +was successfully set, FALSE otherwise.

+
+

Since: 1.6

+
+
+
+

qmi_message_uim_set_pin_protection_input_get_session_information ()

+
gboolean
+qmi_message_uim_set_pin_protection_input_get_session_information
+                               (QmiMessageUimSetPinProtectionInput *self,
+                                QmiUimSessionType *value_session_information_session_type,
+                                const gchar **value_session_information_application_identifier,
+                                GError **error);
+
+

qmi_message_uim_set_pin_protection_input_get_session_information has been deprecated since version 1.22 and should not be used in newly-written code.

+

Use qmi_message_uim_set_pin_protection_input_get_session() instead.

+
+

Get the 'Session Information' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + + + + + + +

self

a QmiMessageUimSetPinProtectionInput.

 

value_session_information_session_type

a placeholder for the output QmiUimSessionType, or NULL if not required.

 

value_session_information_application_identifier

a placeholder for the output constant string, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.14

+
+
+
+

qmi_message_uim_set_pin_protection_input_set_session_information ()

+
gboolean
+qmi_message_uim_set_pin_protection_input_set_session_information
+                               (QmiMessageUimSetPinProtectionInput *self,
+                                QmiUimSessionType value_session_information_session_type,
+                                const gchar *value_session_information_application_identifier,
+                                GError **error);
+
+

qmi_message_uim_set_pin_protection_input_set_session_information has been deprecated since version 1.22 and should not be used in newly-written code.

+

Use qmi_message_uim_set_pin_protection_input_set_session() instead.

+
+

Set the 'Session Information' field in the message.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + + + + + + +

self

a QmiMessageUimSetPinProtectionInput.

 

value_session_information_session_type

a QmiUimSessionType.

 

value_session_information_application_identifier

a constant string.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if value +was successfully set, FALSE otherwise.

+
+

Since: 1.14

+
+
+
+

qmi_message_uim_unblock_pin_input_get_session_information ()

+
gboolean
+qmi_message_uim_unblock_pin_input_get_session_information
+                               (QmiMessageUimUnblockPinInput *self,
+                                QmiUimSessionType *value_session_information_session_type,
+                                const gchar **value_session_information_application_identifier,
+                                GError **error);
+
+

qmi_message_uim_unblock_pin_input_get_session_information has been deprecated since version 1.22 and should not be used in newly-written code.

+

Use qmi_message_uim_unblock_pin_input_get_session() instead.

+
+

Get the 'Session Information' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + + + + + + +

self

a QmiMessageUimUnblockPinInput.

 

value_session_information_session_type

a placeholder for the output QmiUimSessionType, or NULL if not required.

 

value_session_information_application_identifier

a placeholder for the output constant string, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.14

+
+
+
+

qmi_message_uim_unblock_pin_input_set_session_information ()

+
gboolean
+qmi_message_uim_unblock_pin_input_set_session_information
+                               (QmiMessageUimUnblockPinInput *self,
+                                QmiUimSessionType value_session_information_session_type,
+                                const gchar *value_session_information_application_identifier,
+                                GError **error);
+
+

qmi_message_uim_unblock_pin_input_set_session_information has been deprecated since version 1.22 and should not be used in newly-written code.

+

Use qmi_message_uim_unblock_pin_input_set_session() instead.

+
+

Set the 'Session Information' field in the message.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + + + + + + +

self

a QmiMessageUimUnblockPinInput.

 

value_session_information_session_type

a QmiUimSessionType.

 

value_session_information_application_identifier

a constant string.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if value +was successfully set, FALSE otherwise.

+
+

Since: 1.14

+
+
+
+

qmi_message_uim_verify_pin_input_get_session_information ()

+
gboolean
+qmi_message_uim_verify_pin_input_get_session_information
+                               (QmiMessageUimVerifyPinInput *self,
+                                QmiUimSessionType *value_session_information_session_type,
+                                const gchar **value_session_information_application_identifier,
+                                GError **error);
+
+

qmi_message_uim_verify_pin_input_get_session_information has been deprecated since version 1.22 and should not be used in newly-written code.

+

Use qmi_message_uim_verify_pin_input_get_session() instead.

+
+

Get the 'Session Information' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + + + + + + +

self

a QmiMessageUimVerifyPinInput.

 

value_session_information_session_type

a placeholder for the output QmiUimSessionType, or NULL if not required.

 

value_session_information_application_identifier

a placeholder for the output constant string, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.14

+
+
+
+

qmi_message_uim_verify_pin_input_set_session_information ()

+
gboolean
+qmi_message_uim_verify_pin_input_set_session_information
+                               (QmiMessageUimVerifyPinInput *self,
+                                QmiUimSessionType value_session_information_session_type,
+                                const gchar *value_session_information_application_identifier,
+                                GError **error);
+
+

qmi_message_uim_verify_pin_input_set_session_information has been deprecated since version 1.22 and should not be used in newly-written code.

+

Use qmi_message_uim_verify_pin_input_set_session() instead.

+
+

Set the 'Session Information' field in the message.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + + + + + + +

self

a QmiMessageUimVerifyPinInput.

 

value_session_information_session_type

a QmiUimSessionType.

 

value_session_information_application_identifier

a constant string.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if value +was successfully set, FALSE otherwise.

+
+

Since: 1.14

+
+
+
+

Types and Values

+
+

QMI_NAS_SIM_REJECT_STATE_SIM_VAILABLE

+
#define QMI_NAS_SIM_REJECT_STATE_SIM_VAILABLE (QmiDeprecatedNasSimRejectState) QMI_NAS_SIM_REJECT_STATE_SIM_AVAILABLE
+
+
+

QMI_NAS_SIM_REJECT_STATE_SIM_VAILABLE has been deprecated since version 1.14.0 and should not be used in newly-written code.

+

Use the correct QMI_NAS_SIM_REJECT_STATE_SIM_AVAILABLE name instead.

+
+

SIM available.

+

Since: 1.0

+
+
+
+

QMI_WDS_CDMA_CAUSE_CODE_NETWORK_ADDRESS_VACANT

+
#define QMI_WDS_CDMA_CAUSE_CODE_NETWORK_ADDRESS_VACANT (QmiDeprecatedWdsCdmaCauseCode) QMI_WMS_CDMA_CAUSE_CODE_NETWORK_ADDRESS_VACANT
+
+
+

QMI_WDS_CDMA_CAUSE_CODE_NETWORK_ADDRESS_VACANT has been deprecated since version 1.18.0 and should not be used in newly-written code.

+

Use the correct QMI_WMS_CDMA_CAUSE_CODE_NETWORK_ADDRESS_VACANT name instead.

+
+

Address is valid but not yet allocated.

+

Since: 1.0

+
+
+
+

QMI_WDS_CDMA_CAUSE_CODE_NETWORK_ADDRESS_TRANSLATION_FAILURE

+
#define QMI_WDS_CDMA_CAUSE_CODE_NETWORK_ADDRESS_TRANSLATION_FAILURE (QmiDeprecatedWdsCdmaCauseCode) QMI_WMS_CDMA_CAUSE_CODE_NETWORK_ADDRESS_TRANSLATION_FAILURE
+
+
+

QMI_WDS_CDMA_CAUSE_CODE_NETWORK_ADDRESS_TRANSLATION_FAILURE has been deprecated since version 1.18.0 and should not be used in newly-written code.

+

Use the correct QMI_WMS_CDMA_CAUSE_CODE_NETWORK_ADDRESS_TRANSLATION_FAILURE name instead.

+
+

Address is invalid.

+

Since: 1.0

+
+
+
+

QMI_WDS_CDMA_CAUSE_CODE_NETWORK_RESOURCE_SHORTAGE

+
#define QMI_WDS_CDMA_CAUSE_CODE_NETWORK_RESOURCE_SHORTAGE (QmiDeprecatedWdsCdmaCauseCode) QMI_WMS_CDMA_CAUSE_CODE_NETWORK_RESOURCE_SHORTAGE
+
+
+

QMI_WDS_CDMA_CAUSE_CODE_NETWORK_RESOURCE_SHORTAGE has been deprecated since version 1.18.0 and should not be used in newly-written code.

+

Use the correct QMI_WMS_CDMA_CAUSE_CODE_NETWORK_RESOURCE_SHORTAGE name instead.

+
+

Network resource shortage.

+

Since: 1.0

+
+
+
+

QMI_WDS_CDMA_CAUSE_CODE_NETWORK_FAILURE

+
#define QMI_WDS_CDMA_CAUSE_CODE_NETWORK_FAILURE (QmiDeprecatedWdsCdmaCauseCode) QMI_WMS_CDMA_CAUSE_CODE_NETWORK_FAILURE
+
+
+

QMI_WDS_CDMA_CAUSE_CODE_NETWORK_FAILURE has been deprecated since version 1.18.0 and should not be used in newly-written code.

+

Use the correct QMI_WMS_CDMA_CAUSE_CODE_NETWORK_FAILURE name instead.

+
+

Network failed.

+

Since: 1.0

+
+
+
+

QMI_WDS_CDMA_CAUSE_CODE_NETWORK_INVALID_TELESERVICE_ID

+
#define QMI_WDS_CDMA_CAUSE_CODE_NETWORK_INVALID_TELESERVICE_ID (QmiDeprecatedWdsCdmaCauseCode) QMI_WMS_CDMA_CAUSE_CODE_NETWORK_INVALID_TELESERVICE_ID
+
+
+

QMI_WDS_CDMA_CAUSE_CODE_NETWORK_INVALID_TELESERVICE_ID has been deprecated since version 1.18.0 and should not be used in newly-written code.

+

Use the correct QMI_WMS_CDMA_CAUSE_CODE_NETWORK_INVALID_TELESERVICE_ID name instead.

+
+

SMS teleservice ID is invalid.

+

Since: 1.0

+
+
+
+

QMI_WDS_CDMA_CAUSE_CODE_NETWORK_OTHER

+
#define QMI_WDS_CDMA_CAUSE_CODE_NETWORK_OTHER (QmiDeprecatedWdsCdmaCauseCode) QMI_WMS_CDMA_CAUSE_CODE_NETWORK_OTHER
+
+
+

QMI_WDS_CDMA_CAUSE_CODE_NETWORK_OTHER has been deprecated since version 1.18.0 and should not be used in newly-written code.

+

Use the correct QMI_WMS_CDMA_CAUSE_CODE_NETWORK_OTHER name instead.

+
+

Other network error.

+

Since: 1.0

+
+
+
+

QMI_WDS_CDMA_CAUSE_CODE_DESTINATION_NO_PAGE_RESPONSE

+
#define QMI_WDS_CDMA_CAUSE_CODE_DESTINATION_NO_PAGE_RESPONSE (QmiDeprecatedWdsCdmaCauseCode) QMI_WMS_CDMA_CAUSE_CODE_DESTINATION_NO_PAGE_RESPONSE
+
+
+

QMI_WDS_CDMA_CAUSE_CODE_DESTINATION_NO_PAGE_RESPONSE has been deprecated since version 1.18.0 and should not be used in newly-written code.

+

Use the correct QMI_WMS_CDMA_CAUSE_CODE_DESTINATION_NO_PAGE_RESPONSE name instead.

+
+

No page response from destination.

+

Since: 1.0

+
+
+
+

QMI_WDS_CDMA_CAUSE_CODE_DESTINATION_BUSY

+
#define QMI_WDS_CDMA_CAUSE_CODE_DESTINATION_BUSY (QmiDeprecatedWdsCdmaCauseCode) QMI_WMS_CDMA_CAUSE_CODE_DESTINATION_BUSY
+
+
+

QMI_WDS_CDMA_CAUSE_CODE_DESTINATION_BUSY has been deprecated since version 1.18.0 and should not be used in newly-written code.

+

Use the correct QMI_WMS_CDMA_CAUSE_CODE_DESTINATION_BUSY name instead.

+
+

Destination is busy.

+

Since: 1.0

+
+
+
+

QMI_WDS_CDMA_CAUSE_CODE_DESTINATION_NO_ACK

+
#define QMI_WDS_CDMA_CAUSE_CODE_DESTINATION_NO_ACK (QmiDeprecatedWdsCdmaCauseCode) QMI_WMS_CDMA_CAUSE_CODE_DESTINATION_NO_ACK
+
+
+

QMI_WDS_CDMA_CAUSE_CODE_DESTINATION_NO_ACK has been deprecated since version 1.18.0 and should not be used in newly-written code.

+

Use the correct QMI_WMS_CDMA_CAUSE_CODE_DESTINATION_NO_ACK name instead.

+
+

No acknowledge from destination.

+

Since: 1.0

+
+
+
+

QMI_WDS_CDMA_CAUSE_CODE_DESTINATION_RESOURCE_SHORTAGE

+
#define QMI_WDS_CDMA_CAUSE_CODE_DESTINATION_RESOURCE_SHORTAGE (QmiDeprecatedWdsCdmaCauseCode) QMI_WMS_CDMA_CAUSE_CODE_DESTINATION_RESOURCE_SHORTAGE
+
+
+

QMI_WDS_CDMA_CAUSE_CODE_DESTINATION_RESOURCE_SHORTAGE has been deprecated since version 1.18.0 and should not be used in newly-written code.

+

Use the correct QMI_WMS_CDMA_CAUSE_CODE_DESTINATION_RESOURCE_SHORTAGE name instead.

+
+

Destination resource shortage.

+

Since: 1.0

+
+
+
+

QMI_WDS_CDMA_CAUSE_CODE_DESTINATION_SMS_DELIVERY_POSTPONED

+
#define QMI_WDS_CDMA_CAUSE_CODE_DESTINATION_SMS_DELIVERY_POSTPONED (QmiDeprecatedWdsCdmaCauseCode) QMI_WMS_CDMA_CAUSE_CODE_DESTINATION_SMS_DELIVERY_POSTPONED
+
+
+

QMI_WDS_CDMA_CAUSE_CODE_DESTINATION_SMS_DELIVERY_POSTPONED has been deprecated since version 1.18.0 and should not be used in newly-written code.

+

Use the correct QMI_WMS_CDMA_CAUSE_CODE_DESTINATION_SMS_DELIVERY_POSTPONED name instead.

+
+

SMS delivery postponed.

+

Since: 1.0

+
+
+
+

QMI_WDS_CDMA_CAUSE_CODE_DESTINATION_OUT_OF_SERVICE

+
#define QMI_WDS_CDMA_CAUSE_CODE_DESTINATION_OUT_OF_SERVICE (QmiDeprecatedWdsCdmaCauseCode) QMI_WMS_CDMA_CAUSE_CODE_DESTINATION_OUT_OF_SERVICE
+
+
+

QMI_WDS_CDMA_CAUSE_CODE_DESTINATION_OUT_OF_SERVICE has been deprecated since version 1.18.0 and should not be used in newly-written code.

+

Use the correct QMI_WMS_CDMA_CAUSE_CODE_DESTINATION_OUT_OF_SERVICE name instead.

+
+

Destination out of service.

+

Since: 1.0

+
+
+
+

QMI_WDS_CDMA_CAUSE_CODE_DESTINATION_NOT_AT_ADDRESS

+
#define QMI_WDS_CDMA_CAUSE_CODE_DESTINATION_NOT_AT_ADDRESS (QmiDeprecatedWdsCdmaCauseCode) QMI_WMS_CDMA_CAUSE_CODE_DESTINATION_NOT_AT_ADDRESS
+
+
+

QMI_WDS_CDMA_CAUSE_CODE_DESTINATION_NOT_AT_ADDRESS has been deprecated since version 1.18.0 and should not be used in newly-written code.

+

Use the correct QMI_WMS_CDMA_CAUSE_CODE_DESTINATION_NOT_AT_ADDRESS name instead.

+
+

Destination not at address.

+

Since: 1.0

+
+
+
+

QMI_WDS_CDMA_CAUSE_CODE_DESTINATION_OTHER

+
#define QMI_WDS_CDMA_CAUSE_CODE_DESTINATION_OTHER (QmiDeprecatedWdsCdmaCauseCode) QMI_WMS_CDMA_CAUSE_CODE_DESTINATION_OTHER
+
+
+

QMI_WDS_CDMA_CAUSE_CODE_DESTINATION_OTHER has been deprecated since version 1.18.0 and should not be used in newly-written code.

+

Use the correct QMI_WMS_CDMA_CAUSE_CODE_DESTINATION_OTHER name instead.

+
+

Other destination error.

+

Since: 1.0

+
+
+
+

QMI_WDS_CDMA_CAUSE_CODE_RADIO_INTERFACE_RESOURCE_SHORTAGE

+
#define QMI_WDS_CDMA_CAUSE_CODE_RADIO_INTERFACE_RESOURCE_SHORTAGE (QmiDeprecatedWdsCdmaCauseCode) QMI_WMS_CDMA_CAUSE_CODE_RADIO_INTERFACE_RESOURCE_SHORTAGE
+
+
+

QMI_WDS_CDMA_CAUSE_CODE_RADIO_INTERFACE_RESOURCE_SHORTAGE has been deprecated since version 1.18.0 and should not be used in newly-written code.

+

Use the correct QMI_WMS_CDMA_CAUSE_CODE_RADIO_INTERFACE_RESOURCE_SHORTAGE name instead.

+
+

Radio interface resource shortage.

+

Since: 1.0

+
+
+
+

QMI_WDS_CDMA_CAUSE_CODE_RADIO_INTERFACE_INCOMPATIBILITY

+
#define QMI_WDS_CDMA_CAUSE_CODE_RADIO_INTERFACE_INCOMPATIBILITY (QmiDeprecatedWdsCdmaCauseCode) QMI_WMS_CDMA_CAUSE_CODE_RADIO_INTERFACE_INCOMPATIBILITY
+
+
+

QMI_WDS_CDMA_CAUSE_CODE_RADIO_INTERFACE_INCOMPATIBILITY has been deprecated since version 1.18.0 and should not be used in newly-written code.

+

Use the correct QMI_WMS_CDMA_CAUSE_CODE_RADIO_INTERFACE_INCOMPATIBILITY name instead.

+
+

Radio interface incompatibility.

+

Since: 1.0

+
+
+
+

QMI_WDS_CDMA_CAUSE_CODE_RADIO_INTERFACE_OTHER

+
#define QMI_WDS_CDMA_CAUSE_CODE_RADIO_INTERFACE_OTHER (QmiDeprecatedWdsCdmaCauseCode) QMI_WMS_CDMA_CAUSE_CODE_RADIO_INTERFACE_OTHER
+
+
+

QMI_WDS_CDMA_CAUSE_CODE_RADIO_INTERFACE_OTHER has been deprecated since version 1.18.0 and should not be used in newly-written code.

+

Use the correct QMI_WMS_CDMA_CAUSE_CODE_RADIO_INTERFACE_OTHER name instead.

+
+

Other radio interface error

+

Since: 1.0

+
+
+
+

QMI_WDS_CDMA_CAUSE_CODE_GENERAL_ENCODING

+
#define QMI_WDS_CDMA_CAUSE_CODE_GENERAL_ENCODING (QmiDeprecatedWdsCdmaCauseCode) QMI_WMS_CDMA_CAUSE_CODE_GENERAL_ENCODING
+
+
+

QMI_WDS_CDMA_CAUSE_CODE_GENERAL_ENCODING has been deprecated since version 1.18.0 and should not be used in newly-written code.

+

Use the correct QMI_WMS_CDMA_CAUSE_CODE_GENERAL_ENCODING name instead.

+
+

Encoding error.

+

Since: 1.0

+
+
+
+

QMI_WDS_CDMA_CAUSE_CODE_GENERAL_SMS_ORIGIN_DENIED

+
#define QMI_WDS_CDMA_CAUSE_CODE_GENERAL_SMS_ORIGIN_DENIED (QmiDeprecatedWdsCdmaCauseCode) QMI_WMS_CDMA_CAUSE_CODE_GENERAL_SMS_ORIGIN_DENIED
+
+
+

QMI_WDS_CDMA_CAUSE_CODE_GENERAL_SMS_ORIGIN_DENIED has been deprecated since version 1.18.0 and should not be used in newly-written code.

+

Use the correct QMI_WMS_CDMA_CAUSE_CODE_GENERAL_SMS_ORIGIN_DENIED name instead.

+
+

SMS origin denied.

+

Since: 1.0

+
+
+
+

QMI_WDS_CDMA_CAUSE_CODE_GENERAL_SMS_DESTINATION_DENIED

+
#define QMI_WDS_CDMA_CAUSE_CODE_GENERAL_SMS_DESTINATION_DENIED (QmiDeprecatedWdsCdmaCauseCode) QMI_WMS_CDMA_CAUSE_CODE_GENERAL_SMS_DESTINATION_DENIED
+
+
+

QMI_WDS_CDMA_CAUSE_CODE_GENERAL_SMS_DESTINATION_DENIED has been deprecated since version 1.18.0 and should not be used in newly-written code.

+

Use the correct QMI_WMS_CDMA_CAUSE_CODE_GENERAL_SMS_DESTINATION_DENIED name instead.

+
+

SMS destination denied.

+

Since: 1.0

+
+
+
+

QMI_WDS_CDMA_CAUSE_CODE_GENERAL_SUPPLEMENTARY_SERVICE_NOT_SUPPORTED

+
#define QMI_WDS_CDMA_CAUSE_CODE_GENERAL_SUPPLEMENTARY_SERVICE_NOT_SUPPORTED (QmiDeprecatedWdsCdmaCauseCode) QMI_WMS_CDMA_CAUSE_CODE_GENERAL_SUPPLEMENTARY_SERVICE_NOT_SUPPORTED
+
+
+

QMI_WDS_CDMA_CAUSE_CODE_GENERAL_SUPPLEMENTARY_SERVICE_NOT_SUPPORTED has been deprecated since version 1.18.0 and should not be used in newly-written code.

+

Use the correct QMI_WMS_CDMA_CAUSE_CODE_GENERAL_SUPPLEMENTARY_SERVICE_NOT_SUPPORTED name instead.

+
+

Supplementary service not supported.

+

Since: 1.0

+
+
+
+

QMI_WDS_CDMA_CAUSE_CODE_GENERAL_SMS_NOT_SUPPORTED

+
#define QMI_WDS_CDMA_CAUSE_CODE_GENERAL_SMS_NOT_SUPPORTED (QmiDeprecatedWdsCdmaCauseCode) QMI_WMS_CDMA_CAUSE_CODE_GENERAL_SMS_NOT_SUPPORTED
+
+
+

QMI_WDS_CDMA_CAUSE_CODE_GENERAL_SMS_NOT_SUPPORTED has been deprecated since version 1.18.0 and should not be used in newly-written code.

+

Use the correct QMI_WMS_CDMA_CAUSE_CODE_GENERAL_SMS_NOT_SUPPORTED name instead.

+
+

SMS not supported.

+

Since: 1.0

+
+
+
+

QMI_WDS_CDMA_CAUSE_CODE_GENERAL_MISSING_EXPECTED_PARAMETER

+
#define QMI_WDS_CDMA_CAUSE_CODE_GENERAL_MISSING_EXPECTED_PARAMETER (QmiDeprecatedWdsCdmaCauseCode) QMI_WMS_CDMA_CAUSE_CODE_GENERAL_MISSING_EXPECTED_PARAMETER
+
+
+

QMI_WDS_CDMA_CAUSE_CODE_GENERAL_MISSING_EXPECTED_PARAMETER has been deprecated since version 1.18.0 and should not be used in newly-written code.

+

Use the correct QMI_WMS_CDMA_CAUSE_CODE_GENERAL_MISSING_EXPECTED_PARAMETER name instead.

+
+

Missing optional expected parameter.

+

Since: 1.0

+
+
+
+

QMI_WDS_CDMA_CAUSE_CODE_GENERAL_MISSING_MANDATORY_PARAMETER

+
#define QMI_WDS_CDMA_CAUSE_CODE_GENERAL_MISSING_MANDATORY_PARAMETER (QmiDeprecatedWdsCdmaCauseCode) QMI_WMS_CDMA_CAUSE_CODE_GENERAL_MISSING_MANDATORY_PARAMETER
+
+
+

QMI_WDS_CDMA_CAUSE_CODE_GENERAL_MISSING_MANDATORY_PARAMETER has been deprecated since version 1.18.0 and should not be used in newly-written code.

+

Use the correct QMI_WMS_CDMA_CAUSE_CODE_GENERAL_MISSING_MANDATORY_PARAMETER name instead.

+
+

Missing mandatory parameter.

+

Since: 1.0

+
+
+
+

QMI_WDS_CDMA_CAUSE_CODE_GENERAL_UNRECOGNIZED_PARAMETER_VALUE

+
#define QMI_WDS_CDMA_CAUSE_CODE_GENERAL_UNRECOGNIZED_PARAMETER_VALUE (QmiDeprecatedWdsCdmaCauseCode) QMI_WMS_CDMA_CAUSE_CODE_GENERAL_UNRECOGNIZED_PARAMETER_VALUE
+
+
+

QMI_WDS_CDMA_CAUSE_CODE_GENERAL_UNRECOGNIZED_PARAMETER_VALUE has been deprecated since version 1.18.0 and should not be used in newly-written code.

+

Use the correct QMI_WMS_CDMA_CAUSE_CODE_GENERAL_UNRECOGNIZED_PARAMETER_VALUE name instead.

+
+

Unrecognized parameter value.

+

Since: 1.0

+
+
+
+

QMI_WDS_CDMA_CAUSE_CODE_GENERAL_UNEXPECTED_PARAMETER_VALUE

+
#define QMI_WDS_CDMA_CAUSE_CODE_GENERAL_UNEXPECTED_PARAMETER_VALUE (QmiDeprecatedWdsCdmaCauseCode) QMI_WMS_CDMA_CAUSE_CODE_GENERAL_UNEXPECTED_PARAMETER_VALUE
+
+
+

QMI_WDS_CDMA_CAUSE_CODE_GENERAL_UNEXPECTED_PARAMETER_VALUE has been deprecated since version 1.18.0 and should not be used in newly-written code.

+

Use the correct QMI_WMS_CDMA_CAUSE_CODE_GENERAL_UNEXPECTED_PARAMETER_VALUE name instead.

+
+

Unexpected parameter value.

+

Since: 1.0

+
+
+
+

QMI_WDS_CDMA_CAUSE_CODE_GENERAL_USER_DATA_SIZE_ERROR

+
#define QMI_WDS_CDMA_CAUSE_CODE_GENERAL_USER_DATA_SIZE_ERROR (QmiDeprecatedWdsCdmaCauseCode) QMI_WMS_CDMA_CAUSE_CODE_GENERAL_USER_DATA_SIZE_ERROR
+
+
+

QMI_WDS_CDMA_CAUSE_CODE_GENERAL_USER_DATA_SIZE_ERROR has been deprecated since version 1.18.0 and should not be used in newly-written code.

+

Use the correct QMI_WMS_CDMA_CAUSE_CODE_GENERAL_USER_DATA_SIZE_ERROR name instead.

+
+

User data size error.

+

Since: 1.0

+
+
+
+

QMI_WDS_CDMA_CAUSE_CODE_GENERAL_OTHER

+
#define QMI_WDS_CDMA_CAUSE_CODE_GENERAL_OTHER (QmiDeprecatedWdsCdmaCauseCode) QMI_WMS_CDMA_CAUSE_CODE_GENERAL_OTHER
+
+
+

QMI_WDS_CDMA_CAUSE_CODE_GENERAL_OTHER has been deprecated since version 1.18.0 and should not be used in newly-written code.

+

Use the correct QMI_WMS_CDMA_CAUSE_CODE_GENERAL_OTHER name instead.

+
+

Other general error.

+

Since: 1.0

+
+
+
+

QMI_PROTOCOL_ERROR_QOS_UNAVAILABLE

+
#define QMI_PROTOCOL_ERROR_QOS_UNAVAILABLE (QmiProtocolError) QMI_PROTOCOL_ERROR_REQUESTED_NUMBER_UNSUPPORTED
+
+
+

QMI_PROTOCOL_ERROR_QOS_UNAVAILABLE has been deprecated since version 1.22.0 and should not be used in newly-written code.

+

Use the QMI_PROTOCOL_ERROR_REQUESTED_NUMBER_UNSUPPORTED instead.

+
+

QoS unavailable.

+

Since: 1.0

+
+
+
+ + + \ No newline at end of file diff -Nru libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib.devhelp2 libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib.devhelp2 --- libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib.devhelp2 2017-03-22 12:28:28.000000000 +0100 +++ libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib.devhelp2 2019-01-08 15:19:01.000000000 +0100 @@ -16,282 +16,337 @@ - + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - + + + + + + - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + - - + + - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - + + - - - - - - - - - - - - - + + + + + + + + + + + + + - - - - - - - + + + + + + + - - - - - - - - - - - - - + + + + + + + + + + + + + - + - - - - - - - - - - + + + + + + + + + + - - - + + + - - - - - - - - - - - - - + + + + + + + + + + + + + + + + - + - - - - - - - - + + + + + + + + - - - + + + - + - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - + + - @@ -300,6 +355,8 @@ + + @@ -322,7 +379,6 @@ - @@ -347,7 +403,8 @@ - + + @@ -355,7 +412,6 @@ - @@ -379,7 +435,6 @@ - @@ -402,6 +457,7 @@ + @@ -411,11 +467,13 @@ + + @@ -426,10 +484,12 @@ + + @@ -448,29 +508,6 @@ - - - - - - - - - - - - - - - - - - - - - - - @@ -493,6 +530,8 @@ + + @@ -512,582 +551,604 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + @@ -1115,6 +1176,7 @@ + @@ -1160,6 +1222,7 @@ + @@ -1185,527 +1248,548 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + @@ -1756,6 +1840,7 @@ + @@ -1804,562 +1889,643 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + @@ -2397,200 +2563,200 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + @@ -2601,238 +2767,238 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + @@ -2848,155 +3014,155 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + @@ -3004,63 +3170,64 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + @@ -3085,194 +3252,200 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + @@ -3283,156 +3456,156 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + @@ -3457,128 +3630,537 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + @@ -3589,6 +4171,7 @@ + @@ -3691,8 +4274,10 @@ - + + + @@ -3708,6 +4293,10 @@ + + + + @@ -3721,6 +4310,7 @@ + @@ -3746,9 +4336,25 @@ + + + + + + + + + + + + + + + + @@ -3824,6 +4430,13 @@ + + + + + + + @@ -3900,6 +4513,30 @@ + + + + + + + + + + + + + + + + + + + + + + + + @@ -3968,8 +4605,14 @@ + + + + + + @@ -3981,6 +4624,12 @@ + + + + + + @@ -4085,6 +4734,8 @@ + + @@ -4148,6 +4799,8 @@ + + @@ -4169,6 +4822,13 @@ + + + + + + + @@ -4266,6 +4926,8 @@ + + @@ -5131,226 +5793,440 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff -Nru libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-DMS-Activate-Automatic.html libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-DMS-Activate-Automatic.html --- libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-DMS-Activate-Automatic.html 2017-03-22 12:28:28.000000000 +0100 +++ libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-DMS-Activate-Automatic.html 1970-01-01 01:00:00.000000000 +0100 @@ -1,531 +0,0 @@ - - - - -DMS Activate Automatic: libqmi-glib Reference Manual - - - - - - - - - - - - - - - - -
-
-
- - -
-

DMS Activate Automatic

-

DMS Activate Automatic

-
- -
-

Types and Values

- -
-
-

Object Hierarchy

-
    GBoxed
-    ├── QmiMessageDmsActivateAutomaticInput
-    ╰── QmiMessageDmsActivateAutomaticOutput
-
-
-
-

Description

-
-
-

Functions

-
-

qmi_message_dms_activate_automatic_input_new ()

-
QmiMessageDmsActivateAutomaticInput *
-qmi_message_dms_activate_automatic_input_new
-                               (void);
-

Allocates a new QmiMessageDmsActivateAutomaticInput.

-
-

Returns

-

the newly created QmiMessageDmsActivateAutomaticInput. The returned value should be freed with qmi_message_dms_activate_automatic_input_unref().

-
-

Since: 1.0

-
-
-
-

qmi_message_dms_activate_automatic_input_ref ()

-
QmiMessageDmsActivateAutomaticInput *
-qmi_message_dms_activate_automatic_input_ref
-                               (QmiMessageDmsActivateAutomaticInput *self);
-

Atomically increments the reference count of self - by one.

-
-

Parameters

-
----- - - - - - -

self

a QmiMessageDmsActivateAutomaticInput.

 
-
-
-

Returns

-

the new reference to self -.

-
-

Since: 1.0

-
-
-
-

qmi_message_dms_activate_automatic_input_unref ()

-
void
-qmi_message_dms_activate_automatic_input_unref
-                               (QmiMessageDmsActivateAutomaticInput *self);
-

Atomically decrements the reference count of self - by one. -If the reference count drops to 0, self - is completely disposed.

-
-

Parameters

-
----- - - - - - -

self

a QmiMessageDmsActivateAutomaticInput.

 
-
-

Since: 1.0

-
-
-
-

qmi_message_dms_activate_automatic_input_get_activation_code ()

-
gboolean
-qmi_message_dms_activate_automatic_input_get_activation_code
-                               (QmiMessageDmsActivateAutomaticInput *self,
-                                const gchar **value_activation_code,
-                                GError **error);
-

Get the 'Activation Code' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessageDmsActivateAutomaticInput.

 

value_activation_code

a placeholder for the output constant string, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.0

-
-
-
-

qmi_message_dms_activate_automatic_input_set_activation_code ()

-
gboolean
-qmi_message_dms_activate_automatic_input_set_activation_code
-                               (QmiMessageDmsActivateAutomaticInput *self,
-                                const gchar *value_activation_code,
-                                GError **error);
-

Set the 'Activation Code' field in the message.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessageDmsActivateAutomaticInput.

 

value_activation_code

a constant string.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if value -was successfully set, FALSE otherwise.

-
-

Since: 1.0

-
-
-
-

qmi_message_dms_activate_automatic_output_ref ()

-
QmiMessageDmsActivateAutomaticOutput *
-qmi_message_dms_activate_automatic_output_ref
-                               (QmiMessageDmsActivateAutomaticOutput *self);
-

Atomically increments the reference count of self - by one.

-
-

Parameters

-
----- - - - - - -

self

a QmiMessageDmsActivateAutomaticOutput.

 
-
-
-

Returns

-

the new reference to self -.

-
-

Since: 1.0

-
-
-
-

qmi_message_dms_activate_automatic_output_unref ()

-
void
-qmi_message_dms_activate_automatic_output_unref
-                               (QmiMessageDmsActivateAutomaticOutput *self);
-

Atomically decrements the reference count of self - by one. -If the reference count drops to 0, self - is completely disposed.

-
-

Parameters

-
----- - - - - - -

self

a QmiMessageDmsActivateAutomaticOutput.

 
-
-

Since: 1.0

-
-
-
-

qmi_message_dms_activate_automatic_output_get_result ()

-
gboolean
-qmi_message_dms_activate_automatic_output_get_result
-                               (QmiMessageDmsActivateAutomaticOutput *self,
-                                GError **error);
-

Get the result of the QMI operation.

-
-

Parameters

-
----- - - - - - - - - - - - - -

self

a QmiMessageDmsActivateAutomaticOutput.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the QMI operation succeeded, FALSE if error -is set.

-
-

Since: 1.0

-
-
-
-

qmi_client_dms_activate_automatic ()

-
void
-qmi_client_dms_activate_automatic (QmiClientDms *self,
-                                   QmiMessageDmsActivateAutomaticInput *input,
-                                   guint timeout,
-                                   GCancellable *cancellable,
-                                   GAsyncReadyCallback callback,
-                                   gpointer user_data);
-

Asynchronously sends a Activate Automatic request to the device.

-

When the operation is finished, callback - will be invoked in the thread-default main loop of the thread you are calling this method from.

-

You can then call qmi_client_dms_activate_automatic_finish() to get the result of the operation.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

self

a QmiClientDms.

 

input

a QmiMessageDmsActivateAutomaticInput.

 

timeout

maximum time to wait for the method to complete, in seconds.

 

cancellable

a GCancellable or NULL.

 

callback

a GAsyncReadyCallback to call when the request is satisfied.

 

user_data

user data to pass to callback -.

 
-
-

Since: 1.0

-
-
-
-

qmi_client_dms_activate_automatic_finish ()

-
QmiMessageDmsActivateAutomaticOutput *
-qmi_client_dms_activate_automatic_finish
-                               (QmiClientDms *self,
-                                GAsyncResult *res,
-                                GError **error);
-

Finishes an async operation started with qmi_client_dms_activate_automatic().

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiClientDms.

 

res

the GAsyncResult obtained from the GAsyncReadyCallback passed to qmi_client_dms_activate_automatic().

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

a QmiMessageDmsActivateAutomaticOutput, or NULL if error -is set. The returned value should be freed with qmi_message_dms_activate_automatic_output_unref().

-
-

Since: 1.0

-
-
-
-

Types and Values

-
-

QmiMessageDmsActivateAutomaticInput

-
typedef struct _QmiMessageDmsActivateAutomaticInput QmiMessageDmsActivateAutomaticInput;
-

The QmiMessageDmsActivateAutomaticInput structure contains private data and should only be accessed -using the provided API.

-

Since: 1.0

-
-
-
-

QmiMessageDmsActivateAutomaticOutput

-
typedef struct _QmiMessageDmsActivateAutomaticOutput QmiMessageDmsActivateAutomaticOutput;
-

The QmiMessageDmsActivateAutomaticOutput structure contains private data and should only be accessed -using the provided API.

-

Since: 1.0

-
-
-
- - - \ No newline at end of file diff -Nru libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-DMS-Activate-Automatic-request.html libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-DMS-Activate-Automatic-request.html --- libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-DMS-Activate-Automatic-request.html 1970-01-01 01:00:00.000000000 +0100 +++ libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-DMS-Activate-Automatic-request.html 2019-01-08 15:19:01.000000000 +0100 @@ -0,0 +1,531 @@ + + + + +DMS Activate Automatic request: libqmi-glib Reference Manual + + + + + + + + + + + + + + + + +
+
+
+ + +
+

DMS Activate Automatic request

+

DMS Activate Automatic request

+
+ +
+

Types and Values

+ +
+
+

Object Hierarchy

+
    GBoxed
+    ├── QmiMessageDmsActivateAutomaticInput
+    ╰── QmiMessageDmsActivateAutomaticOutput
+
+
+
+

Description

+
+
+

Functions

+
+

qmi_message_dms_activate_automatic_input_new ()

+
QmiMessageDmsActivateAutomaticInput *
+qmi_message_dms_activate_automatic_input_new
+                               (void);
+

Allocates a new QmiMessageDmsActivateAutomaticInput.

+
+

Returns

+

the newly created QmiMessageDmsActivateAutomaticInput. The returned value should be freed with qmi_message_dms_activate_automatic_input_unref().

+
+

Since: 1.0

+
+
+
+

qmi_message_dms_activate_automatic_input_ref ()

+
QmiMessageDmsActivateAutomaticInput *
+qmi_message_dms_activate_automatic_input_ref
+                               (QmiMessageDmsActivateAutomaticInput *self);
+

Atomically increments the reference count of self + by one.

+
+

Parameters

+
+++++ + + + + + +

self

a QmiMessageDmsActivateAutomaticInput.

 
+
+
+

Returns

+

the new reference to self +.

+
+

Since: 1.0

+
+
+
+

qmi_message_dms_activate_automatic_input_unref ()

+
void
+qmi_message_dms_activate_automatic_input_unref
+                               (QmiMessageDmsActivateAutomaticInput *self);
+

Atomically decrements the reference count of self + by one. +If the reference count drops to 0, self + is completely disposed.

+
+

Parameters

+
+++++ + + + + + +

self

a QmiMessageDmsActivateAutomaticInput.

 
+
+

Since: 1.0

+
+
+
+

qmi_message_dms_activate_automatic_input_get_activation_code ()

+
gboolean
+qmi_message_dms_activate_automatic_input_get_activation_code
+                               (QmiMessageDmsActivateAutomaticInput *self,
+                                const gchar **value_activation_code,
+                                GError **error);
+

Get the 'Activation Code' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageDmsActivateAutomaticInput.

 

value_activation_code

a placeholder for the output constant string, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.0

+
+
+
+

qmi_message_dms_activate_automatic_input_set_activation_code ()

+
gboolean
+qmi_message_dms_activate_automatic_input_set_activation_code
+                               (QmiMessageDmsActivateAutomaticInput *self,
+                                const gchar *value_activation_code,
+                                GError **error);
+

Set the 'Activation Code' field in the message.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageDmsActivateAutomaticInput.

 

value_activation_code

a constant string.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if value +was successfully set, FALSE otherwise.

+
+

Since: 1.0

+
+
+
+

qmi_message_dms_activate_automatic_output_ref ()

+
QmiMessageDmsActivateAutomaticOutput *
+qmi_message_dms_activate_automatic_output_ref
+                               (QmiMessageDmsActivateAutomaticOutput *self);
+

Atomically increments the reference count of self + by one.

+
+

Parameters

+
+++++ + + + + + +

self

a QmiMessageDmsActivateAutomaticOutput.

 
+
+
+

Returns

+

the new reference to self +.

+
+

Since: 1.0

+
+
+
+

qmi_message_dms_activate_automatic_output_unref ()

+
void
+qmi_message_dms_activate_automatic_output_unref
+                               (QmiMessageDmsActivateAutomaticOutput *self);
+

Atomically decrements the reference count of self + by one. +If the reference count drops to 0, self + is completely disposed.

+
+

Parameters

+
+++++ + + + + + +

self

a QmiMessageDmsActivateAutomaticOutput.

 
+
+

Since: 1.0

+
+
+
+

qmi_message_dms_activate_automatic_output_get_result ()

+
gboolean
+qmi_message_dms_activate_automatic_output_get_result
+                               (QmiMessageDmsActivateAutomaticOutput *self,
+                                GError **error);
+

Get the result of the QMI operation.

+
+

Parameters

+
+++++ + + + + + + + + + + + + +

self

a QmiMessageDmsActivateAutomaticOutput.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the QMI operation succeeded, FALSE if error +is set.

+
+

Since: 1.0

+
+
+
+

qmi_client_dms_activate_automatic ()

+
void
+qmi_client_dms_activate_automatic (QmiClientDms *self,
+                                   QmiMessageDmsActivateAutomaticInput *input,
+                                   guint timeout,
+                                   GCancellable *cancellable,
+                                   GAsyncReadyCallback callback,
+                                   gpointer user_data);
+

Asynchronously sends a Activate Automatic request to the device.

+

When the operation is finished, callback + will be invoked in the thread-default main loop of the thread you are calling this method from.

+

You can then call qmi_client_dms_activate_automatic_finish() to get the result of the operation.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

self

a QmiClientDms.

 

input

a QmiMessageDmsActivateAutomaticInput.

 

timeout

maximum time to wait for the method to complete, in seconds.

 

cancellable

a GCancellable or NULL.

 

callback

a GAsyncReadyCallback to call when the request is satisfied.

 

user_data

user data to pass to callback +.

 
+
+

Since: 1.0

+
+
+
+

qmi_client_dms_activate_automatic_finish ()

+
QmiMessageDmsActivateAutomaticOutput *
+qmi_client_dms_activate_automatic_finish
+                               (QmiClientDms *self,
+                                GAsyncResult *res,
+                                GError **error);
+

Finishes an async operation started with qmi_client_dms_activate_automatic().

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiClientDms.

 

res

the GAsyncResult obtained from the GAsyncReadyCallback passed to qmi_client_dms_activate_automatic().

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

a QmiMessageDmsActivateAutomaticOutput, or NULL if error +is set. The returned value should be freed with qmi_message_dms_activate_automatic_output_unref().

+
+

Since: 1.0

+
+
+
+

Types and Values

+
+

QmiMessageDmsActivateAutomaticInput

+
typedef struct _QmiMessageDmsActivateAutomaticInput QmiMessageDmsActivateAutomaticInput;
+

The QmiMessageDmsActivateAutomaticInput structure contains private data and should only be accessed +using the provided API.

+

Since: 1.0

+
+
+
+

QmiMessageDmsActivateAutomaticOutput

+
typedef struct _QmiMessageDmsActivateAutomaticOutput QmiMessageDmsActivateAutomaticOutput;
+

The QmiMessageDmsActivateAutomaticOutput structure contains private data and should only be accessed +using the provided API.

+

Since: 1.0

+
+
+
+ + + \ No newline at end of file diff -Nru libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-DMS-Activate-Manual.html libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-DMS-Activate-Manual.html --- libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-DMS-Activate-Manual.html 2017-03-22 12:28:28.000000000 +0100 +++ libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-DMS-Activate-Manual.html 1970-01-01 01:00:00.000000000 +0100 @@ -1,898 +0,0 @@ - - - - -DMS Activate Manual: libqmi-glib Reference Manual - - - - - - - - - - - - - - - - -
-
-
- - -
-

DMS Activate Manual

-

DMS Activate Manual

-
- -
-

Types and Values

- -
-
-

Object Hierarchy

-
    GBoxed
-    ├── QmiMessageDmsActivateManualInput
-    ╰── QmiMessageDmsActivateManualOutput
-
-
-
-

Description

-
-
-

Functions

-
-

qmi_message_dms_activate_manual_input_new ()

-
QmiMessageDmsActivateManualInput *
-qmi_message_dms_activate_manual_input_new
-                               (void);
-

Allocates a new QmiMessageDmsActivateManualInput.

-
-

Returns

-

the newly created QmiMessageDmsActivateManualInput. The returned value should be freed with qmi_message_dms_activate_manual_input_unref().

-
-

Since: 1.0

-
-
-
-

qmi_message_dms_activate_manual_input_ref ()

-
QmiMessageDmsActivateManualInput *
-qmi_message_dms_activate_manual_input_ref
-                               (QmiMessageDmsActivateManualInput *self);
-

Atomically increments the reference count of self - by one.

-
-

Parameters

-
----- - - - - - -

self

a QmiMessageDmsActivateManualInput.

 
-
-
-

Returns

-

the new reference to self -.

-
-

Since: 1.0

-
-
-
-

qmi_message_dms_activate_manual_input_unref ()

-
void
-qmi_message_dms_activate_manual_input_unref
-                               (QmiMessageDmsActivateManualInput *self);
-

Atomically decrements the reference count of self - by one. -If the reference count drops to 0, self - is completely disposed.

-
-

Parameters

-
----- - - - - - -

self

a QmiMessageDmsActivateManualInput.

 
-
-

Since: 1.0

-
-
-
-

qmi_message_dms_activate_manual_input_get_prl ()

-
gboolean
-qmi_message_dms_activate_manual_input_get_prl
-                               (QmiMessageDmsActivateManualInput *self,
-                                guint16 *value_prl_prl_total_length,
-                                guint8 *value_prl_prl_segment_sequence,
-                                GArray **value_prl_prl_segment,
-                                GError **error);
-

Get the 'PRL' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - - - - - - - - - - - -

self

a QmiMessageDmsActivateManualInput.

 

value_prl_prl_total_length

a placeholder for the output guint16, or NULL if not required.

 

value_prl_prl_segment_sequence

a placeholder for the output sequence number, or NULL if not required.

 

value_prl_prl_segment

a placeholder for the output GArray of guint8 elements, or NULL if not required. Do not free it, it is owned by self -.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.6

-
-
-
-

qmi_message_dms_activate_manual_input_set_prl ()

-
gboolean
-qmi_message_dms_activate_manual_input_set_prl
-                               (QmiMessageDmsActivateManualInput *self,
-                                guint16 value_prl_prl_total_length,
-                                guint8 value_prl_prl_segment_sequence,
-                                GArray *value_prl_prl_segment,
-                                GError **error);
-

Set the 'PRL' field in the message.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - - - - - - - - - - - -

self

a QmiMessageDmsActivateManualInput.

 

value_prl_prl_total_length

a guint16.

 

value_prl_prl_segment_sequence

the sequence number.

 

value_prl_prl_segment

a GArray of guint8 elements. A new reference to value_prl_prl_segment -will be taken.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if value -was successfully set, FALSE otherwise.

-
-

Since: 1.6

-
-
-
-

qmi_message_dms_activate_manual_input_get_mn_aaa_key ()

-
gboolean
-qmi_message_dms_activate_manual_input_get_mn_aaa_key
-                               (QmiMessageDmsActivateManualInput *self,
-                                const gchar **value_mn_aaa_key,
-                                GError **error);
-

Get the 'MN AAA key' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessageDmsActivateManualInput.

 

value_mn_aaa_key

a placeholder for the output constant string, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.0

-
-
-
-

qmi_message_dms_activate_manual_input_set_mn_aaa_key ()

-
gboolean
-qmi_message_dms_activate_manual_input_set_mn_aaa_key
-                               (QmiMessageDmsActivateManualInput *self,
-                                const gchar *value_mn_aaa_key,
-                                GError **error);
-

Set the 'MN AAA key' field in the message.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessageDmsActivateManualInput.

 

value_mn_aaa_key

a constant string with a maximum length of 16 characters.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if value -was successfully set, FALSE otherwise.

-
-

Since: 1.0

-
-
-
-

qmi_message_dms_activate_manual_input_get_mn_ha_key ()

-
gboolean
-qmi_message_dms_activate_manual_input_get_mn_ha_key
-                               (QmiMessageDmsActivateManualInput *self,
-                                const gchar **value_mn_ha_key,
-                                GError **error);
-

Get the 'MN HA key' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessageDmsActivateManualInput.

 

value_mn_ha_key

a placeholder for the output constant string, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.0

-
-
-
-

qmi_message_dms_activate_manual_input_set_mn_ha_key ()

-
gboolean
-qmi_message_dms_activate_manual_input_set_mn_ha_key
-                               (QmiMessageDmsActivateManualInput *self,
-                                const gchar *value_mn_ha_key,
-                                GError **error);
-

Set the 'MN HA key' field in the message.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessageDmsActivateManualInput.

 

value_mn_ha_key

a constant string with a maximum length of 16 characters.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if value -was successfully set, FALSE otherwise.

-
-

Since: 1.0

-
-
-
-

qmi_message_dms_activate_manual_input_get_info ()

-
gboolean
-qmi_message_dms_activate_manual_input_get_info
-                               (QmiMessageDmsActivateManualInput *self,
-                                const gchar **value_info_service_programming_code,
-                                guint16 *value_info_system_identification_number,
-                                const gchar **value_info_mobile_directory_number,
-                                const gchar **value_info_mobile_identification_number,
-                                GError **error);
-

Get the 'Info' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

self

a QmiMessageDmsActivateManualInput.

 

value_info_service_programming_code

a placeholder for the output constant string, or NULL if not required.

 

value_info_system_identification_number

a placeholder for the output guint16, or NULL if not required.

 

value_info_mobile_directory_number

a placeholder for the output constant string, or NULL if not required.

 

value_info_mobile_identification_number

a placeholder for the output constant string, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.6

-
-
-
-

qmi_message_dms_activate_manual_input_set_info ()

-
gboolean
-qmi_message_dms_activate_manual_input_set_info
-                               (QmiMessageDmsActivateManualInput *self,
-                                const gchar *value_info_service_programming_code,
-                                guint16 value_info_system_identification_number,
-                                const gchar *value_info_mobile_directory_number,
-                                const gchar *value_info_mobile_identification_number,
-                                GError **error);
-

Set the 'Info' field in the message.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

self

a QmiMessageDmsActivateManualInput.

 

value_info_service_programming_code

a constant string of exactly 6 characters.

 

value_info_system_identification_number

a guint16.

 

value_info_mobile_directory_number

a constant string with a maximum length of 15 characters.

 

value_info_mobile_identification_number

a constant string with a maximum length of 15 characters.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if value -was successfully set, FALSE otherwise.

-
-

Since: 1.6

-
-
-
-

qmi_message_dms_activate_manual_output_ref ()

-
QmiMessageDmsActivateManualOutput *
-qmi_message_dms_activate_manual_output_ref
-                               (QmiMessageDmsActivateManualOutput *self);
-

Atomically increments the reference count of self - by one.

-
-

Parameters

-
----- - - - - - -

self

a QmiMessageDmsActivateManualOutput.

 
-
-
-

Returns

-

the new reference to self -.

-
-

Since: 1.0

-
-
-
-

qmi_message_dms_activate_manual_output_unref ()

-
void
-qmi_message_dms_activate_manual_output_unref
-                               (QmiMessageDmsActivateManualOutput *self);
-

Atomically decrements the reference count of self - by one. -If the reference count drops to 0, self - is completely disposed.

-
-

Parameters

-
----- - - - - - -

self

a QmiMessageDmsActivateManualOutput.

 
-
-

Since: 1.0

-
-
-
-

qmi_message_dms_activate_manual_output_get_result ()

-
gboolean
-qmi_message_dms_activate_manual_output_get_result
-                               (QmiMessageDmsActivateManualOutput *self,
-                                GError **error);
-

Get the result of the QMI operation.

-
-

Parameters

-
----- - - - - - - - - - - - - -

self

a QmiMessageDmsActivateManualOutput.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the QMI operation succeeded, FALSE if error -is set.

-
-

Since: 1.0

-
-
-
-

qmi_client_dms_activate_manual ()

-
void
-qmi_client_dms_activate_manual (QmiClientDms *self,
-                                QmiMessageDmsActivateManualInput *input,
-                                guint timeout,
-                                GCancellable *cancellable,
-                                GAsyncReadyCallback callback,
-                                gpointer user_data);
-

Asynchronously sends a Activate Manual request to the device.

-

When the operation is finished, callback - will be invoked in the thread-default main loop of the thread you are calling this method from.

-

You can then call qmi_client_dms_activate_manual_finish() to get the result of the operation.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

self

a QmiClientDms.

 

input

a QmiMessageDmsActivateManualInput.

 

timeout

maximum time to wait for the method to complete, in seconds.

 

cancellable

a GCancellable or NULL.

 

callback

a GAsyncReadyCallback to call when the request is satisfied.

 

user_data

user data to pass to callback -.

 
-
-

Since: 1.0

-
-
-
-

qmi_client_dms_activate_manual_finish ()

-
QmiMessageDmsActivateManualOutput *
-qmi_client_dms_activate_manual_finish (QmiClientDms *self,
-                                       GAsyncResult *res,
-                                       GError **error);
-

Finishes an async operation started with qmi_client_dms_activate_manual().

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiClientDms.

 

res

the GAsyncResult obtained from the GAsyncReadyCallback passed to qmi_client_dms_activate_manual().

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

a QmiMessageDmsActivateManualOutput, or NULL if error -is set. The returned value should be freed with qmi_message_dms_activate_manual_output_unref().

-
-

Since: 1.0

-
-
-
-

Types and Values

-
-

QmiMessageDmsActivateManualInput

-
typedef struct _QmiMessageDmsActivateManualInput QmiMessageDmsActivateManualInput;
-

The QmiMessageDmsActivateManualInput structure contains private data and should only be accessed -using the provided API.

-

Since: 1.0

-
-
-
-

QmiMessageDmsActivateManualOutput

-
typedef struct _QmiMessageDmsActivateManualOutput QmiMessageDmsActivateManualOutput;
-

The QmiMessageDmsActivateManualOutput structure contains private data and should only be accessed -using the provided API.

-

Since: 1.0

-
-
-
- - - \ No newline at end of file diff -Nru libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-DMS-Activate-Manual-request.html libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-DMS-Activate-Manual-request.html --- libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-DMS-Activate-Manual-request.html 1970-01-01 01:00:00.000000000 +0100 +++ libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-DMS-Activate-Manual-request.html 2019-01-08 15:19:01.000000000 +0100 @@ -0,0 +1,898 @@ + + + + +DMS Activate Manual request: libqmi-glib Reference Manual + + + + + + + + + + + + + + + + +
+
+
+ + +
+

DMS Activate Manual request

+

DMS Activate Manual request

+
+ +
+

Types and Values

+ +
+
+

Object Hierarchy

+
    GBoxed
+    ├── QmiMessageDmsActivateManualInput
+    ╰── QmiMessageDmsActivateManualOutput
+
+
+
+

Description

+
+
+

Functions

+
+

qmi_message_dms_activate_manual_input_new ()

+
QmiMessageDmsActivateManualInput *
+qmi_message_dms_activate_manual_input_new
+                               (void);
+

Allocates a new QmiMessageDmsActivateManualInput.

+
+

Returns

+

the newly created QmiMessageDmsActivateManualInput. The returned value should be freed with qmi_message_dms_activate_manual_input_unref().

+
+

Since: 1.0

+
+
+
+

qmi_message_dms_activate_manual_input_ref ()

+
QmiMessageDmsActivateManualInput *
+qmi_message_dms_activate_manual_input_ref
+                               (QmiMessageDmsActivateManualInput *self);
+

Atomically increments the reference count of self + by one.

+
+

Parameters

+
+++++ + + + + + +

self

a QmiMessageDmsActivateManualInput.

 
+
+
+

Returns

+

the new reference to self +.

+
+

Since: 1.0

+
+
+
+

qmi_message_dms_activate_manual_input_unref ()

+
void
+qmi_message_dms_activate_manual_input_unref
+                               (QmiMessageDmsActivateManualInput *self);
+

Atomically decrements the reference count of self + by one. +If the reference count drops to 0, self + is completely disposed.

+
+

Parameters

+
+++++ + + + + + +

self

a QmiMessageDmsActivateManualInput.

 
+
+

Since: 1.0

+
+
+
+

qmi_message_dms_activate_manual_input_get_prl ()

+
gboolean
+qmi_message_dms_activate_manual_input_get_prl
+                               (QmiMessageDmsActivateManualInput *self,
+                                guint16 *value_prl_prl_total_length,
+                                guint8 *value_prl_prl_segment_sequence,
+                                GArray **value_prl_prl_segment,
+                                GError **error);
+

Get the 'PRL' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + + + + + + + + + + + +

self

a QmiMessageDmsActivateManualInput.

 

value_prl_prl_total_length

a placeholder for the output guint16, or NULL if not required.

 

value_prl_prl_segment_sequence

a placeholder for the output sequence number, or NULL if not required.

 

value_prl_prl_segment

a placeholder for the output GArray of guint8 elements, or NULL if not required. Do not free it, it is owned by self +.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.6

+
+
+
+

qmi_message_dms_activate_manual_input_set_prl ()

+
gboolean
+qmi_message_dms_activate_manual_input_set_prl
+                               (QmiMessageDmsActivateManualInput *self,
+                                guint16 value_prl_prl_total_length,
+                                guint8 value_prl_prl_segment_sequence,
+                                GArray *value_prl_prl_segment,
+                                GError **error);
+

Set the 'PRL' field in the message.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + + + + + + + + + + + +

self

a QmiMessageDmsActivateManualInput.

 

value_prl_prl_total_length

a guint16.

 

value_prl_prl_segment_sequence

the sequence number.

 

value_prl_prl_segment

a GArray of guint8 elements. A new reference to value_prl_prl_segment +will be taken.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if value +was successfully set, FALSE otherwise.

+
+

Since: 1.6

+
+
+
+

qmi_message_dms_activate_manual_input_get_mn_aaa_key ()

+
gboolean
+qmi_message_dms_activate_manual_input_get_mn_aaa_key
+                               (QmiMessageDmsActivateManualInput *self,
+                                const gchar **value_mn_aaa_key,
+                                GError **error);
+

Get the 'MN AAA key' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageDmsActivateManualInput.

 

value_mn_aaa_key

a placeholder for the output constant string, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.0

+
+
+
+

qmi_message_dms_activate_manual_input_set_mn_aaa_key ()

+
gboolean
+qmi_message_dms_activate_manual_input_set_mn_aaa_key
+                               (QmiMessageDmsActivateManualInput *self,
+                                const gchar *value_mn_aaa_key,
+                                GError **error);
+

Set the 'MN AAA key' field in the message.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageDmsActivateManualInput.

 

value_mn_aaa_key

a constant string with a maximum length of 16 characters.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if value +was successfully set, FALSE otherwise.

+
+

Since: 1.0

+
+
+
+

qmi_message_dms_activate_manual_input_get_mn_ha_key ()

+
gboolean
+qmi_message_dms_activate_manual_input_get_mn_ha_key
+                               (QmiMessageDmsActivateManualInput *self,
+                                const gchar **value_mn_ha_key,
+                                GError **error);
+

Get the 'MN HA key' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageDmsActivateManualInput.

 

value_mn_ha_key

a placeholder for the output constant string, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.0

+
+
+
+

qmi_message_dms_activate_manual_input_set_mn_ha_key ()

+
gboolean
+qmi_message_dms_activate_manual_input_set_mn_ha_key
+                               (QmiMessageDmsActivateManualInput *self,
+                                const gchar *value_mn_ha_key,
+                                GError **error);
+

Set the 'MN HA key' field in the message.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageDmsActivateManualInput.

 

value_mn_ha_key

a constant string with a maximum length of 16 characters.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if value +was successfully set, FALSE otherwise.

+
+

Since: 1.0

+
+
+
+

qmi_message_dms_activate_manual_input_get_info ()

+
gboolean
+qmi_message_dms_activate_manual_input_get_info
+                               (QmiMessageDmsActivateManualInput *self,
+                                const gchar **value_info_service_programming_code,
+                                guint16 *value_info_system_identification_number,
+                                const gchar **value_info_mobile_directory_number,
+                                const gchar **value_info_mobile_identification_number,
+                                GError **error);
+

Get the 'Info' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

self

a QmiMessageDmsActivateManualInput.

 

value_info_service_programming_code

a placeholder for the output constant string, or NULL if not required.

 

value_info_system_identification_number

a placeholder for the output guint16, or NULL if not required.

 

value_info_mobile_directory_number

a placeholder for the output constant string, or NULL if not required.

 

value_info_mobile_identification_number

a placeholder for the output constant string, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.6

+
+
+
+

qmi_message_dms_activate_manual_input_set_info ()

+
gboolean
+qmi_message_dms_activate_manual_input_set_info
+                               (QmiMessageDmsActivateManualInput *self,
+                                const gchar *value_info_service_programming_code,
+                                guint16 value_info_system_identification_number,
+                                const gchar *value_info_mobile_directory_number,
+                                const gchar *value_info_mobile_identification_number,
+                                GError **error);
+

Set the 'Info' field in the message.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

self

a QmiMessageDmsActivateManualInput.

 

value_info_service_programming_code

a constant string of exactly 6 characters.

 

value_info_system_identification_number

a guint16.

 

value_info_mobile_directory_number

a constant string with a maximum length of 15 characters.

 

value_info_mobile_identification_number

a constant string with a maximum length of 15 characters.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if value +was successfully set, FALSE otherwise.

+
+

Since: 1.6

+
+
+
+

qmi_message_dms_activate_manual_output_ref ()

+
QmiMessageDmsActivateManualOutput *
+qmi_message_dms_activate_manual_output_ref
+                               (QmiMessageDmsActivateManualOutput *self);
+

Atomically increments the reference count of self + by one.

+
+

Parameters

+
+++++ + + + + + +

self

a QmiMessageDmsActivateManualOutput.

 
+
+
+

Returns

+

the new reference to self +.

+
+

Since: 1.0

+
+
+
+

qmi_message_dms_activate_manual_output_unref ()

+
void
+qmi_message_dms_activate_manual_output_unref
+                               (QmiMessageDmsActivateManualOutput *self);
+

Atomically decrements the reference count of self + by one. +If the reference count drops to 0, self + is completely disposed.

+
+

Parameters

+
+++++ + + + + + +

self

a QmiMessageDmsActivateManualOutput.

 
+
+

Since: 1.0

+
+
+
+

qmi_message_dms_activate_manual_output_get_result ()

+
gboolean
+qmi_message_dms_activate_manual_output_get_result
+                               (QmiMessageDmsActivateManualOutput *self,
+                                GError **error);
+

Get the result of the QMI operation.

+
+

Parameters

+
+++++ + + + + + + + + + + + + +

self

a QmiMessageDmsActivateManualOutput.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the QMI operation succeeded, FALSE if error +is set.

+
+

Since: 1.0

+
+
+
+

qmi_client_dms_activate_manual ()

+
void
+qmi_client_dms_activate_manual (QmiClientDms *self,
+                                QmiMessageDmsActivateManualInput *input,
+                                guint timeout,
+                                GCancellable *cancellable,
+                                GAsyncReadyCallback callback,
+                                gpointer user_data);
+

Asynchronously sends a Activate Manual request to the device.

+

When the operation is finished, callback + will be invoked in the thread-default main loop of the thread you are calling this method from.

+

You can then call qmi_client_dms_activate_manual_finish() to get the result of the operation.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

self

a QmiClientDms.

 

input

a QmiMessageDmsActivateManualInput.

 

timeout

maximum time to wait for the method to complete, in seconds.

 

cancellable

a GCancellable or NULL.

 

callback

a GAsyncReadyCallback to call when the request is satisfied.

 

user_data

user data to pass to callback +.

 
+
+

Since: 1.0

+
+
+
+

qmi_client_dms_activate_manual_finish ()

+
QmiMessageDmsActivateManualOutput *
+qmi_client_dms_activate_manual_finish (QmiClientDms *self,
+                                       GAsyncResult *res,
+                                       GError **error);
+

Finishes an async operation started with qmi_client_dms_activate_manual().

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiClientDms.

 

res

the GAsyncResult obtained from the GAsyncReadyCallback passed to qmi_client_dms_activate_manual().

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

a QmiMessageDmsActivateManualOutput, or NULL if error +is set. The returned value should be freed with qmi_message_dms_activate_manual_output_unref().

+
+

Since: 1.0

+
+
+
+

Types and Values

+
+

QmiMessageDmsActivateManualInput

+
typedef struct _QmiMessageDmsActivateManualInput QmiMessageDmsActivateManualInput;
+

The QmiMessageDmsActivateManualInput structure contains private data and should only be accessed +using the provided API.

+

Since: 1.0

+
+
+
+

QmiMessageDmsActivateManualOutput

+
typedef struct _QmiMessageDmsActivateManualOutput QmiMessageDmsActivateManualOutput;
+

The QmiMessageDmsActivateManualOutput structure contains private data and should only be accessed +using the provided API.

+

Since: 1.0

+
+
+
+ + + \ No newline at end of file diff -Nru libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-DMS-Delete-Stored-Image.html libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-DMS-Delete-Stored-Image.html --- libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-DMS-Delete-Stored-Image.html 2017-03-22 12:28:28.000000000 +0100 +++ libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-DMS-Delete-Stored-Image.html 1970-01-01 01:00:00.000000000 +0100 @@ -1,574 +0,0 @@ - - - - -DMS Delete Stored Image: libqmi-glib Reference Manual - - - - - - - - - - - - - - - - -
-
-
- - -
-

DMS Delete Stored Image

-

DMS Delete Stored Image

-
- - -
-

Object Hierarchy

-
    GBoxed
-    ├── QmiMessageDmsDeleteStoredImageInput
-    ╰── QmiMessageDmsDeleteStoredImageOutput
-
-
-
-

Description

-
-
-

Functions

-
-

qmi_message_dms_delete_stored_image_input_new ()

-
QmiMessageDmsDeleteStoredImageInput *
-qmi_message_dms_delete_stored_image_input_new
-                               (void);
-

Allocates a new QmiMessageDmsDeleteStoredImageInput.

-
-

Returns

-

the newly created QmiMessageDmsDeleteStoredImageInput. The returned value should be freed with qmi_message_dms_delete_stored_image_input_unref().

-
-

Since: 1.0

-
-
-
-

qmi_message_dms_delete_stored_image_input_ref ()

-
QmiMessageDmsDeleteStoredImageInput *
-qmi_message_dms_delete_stored_image_input_ref
-                               (QmiMessageDmsDeleteStoredImageInput *self);
-

Atomically increments the reference count of self - by one.

-
-

Parameters

-
----- - - - - - -

self

a QmiMessageDmsDeleteStoredImageInput.

 
-
-
-

Returns

-

the new reference to self -.

-
-

Since: 1.0

-
-
-
-

qmi_message_dms_delete_stored_image_input_unref ()

-
void
-qmi_message_dms_delete_stored_image_input_unref
-                               (QmiMessageDmsDeleteStoredImageInput *self);
-

Atomically decrements the reference count of self - by one. -If the reference count drops to 0, self - is completely disposed.

-
-

Parameters

-
----- - - - - - -

self

a QmiMessageDmsDeleteStoredImageInput.

 
-
-

Since: 1.0

-
-
-
-

qmi_message_dms_delete_stored_image_input_get_image ()

-
gboolean
-qmi_message_dms_delete_stored_image_input_get_image
-                               (QmiMessageDmsDeleteStoredImageInput *self,
-                                QmiMessageDmsDeleteStoredImageInputImage *value_image,
-                                GError **error);
-

Get the 'Image' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessageDmsDeleteStoredImageInput.

 

value_image

a placeholder for the output constant QmiMessageDmsDeleteStoredImageInputImage, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.0

-
-
-
-

qmi_message_dms_delete_stored_image_input_set_image ()

-
gboolean
-qmi_message_dms_delete_stored_image_input_set_image
-                               (QmiMessageDmsDeleteStoredImageInput *self,
-                                const QmiMessageDmsDeleteStoredImageInputImage *value_image,
-                                GError **error);
-

Set the 'Image' field in the message.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessageDmsDeleteStoredImageInput.

 

value_image

the address of the QmiMessageDmsDeleteStoredImageInputImage to set.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if value -was successfully set, FALSE otherwise.

-
-

Since: 1.0

-
-
-
-

qmi_message_dms_delete_stored_image_output_ref ()

-
QmiMessageDmsDeleteStoredImageOutput *
-qmi_message_dms_delete_stored_image_output_ref
-                               (QmiMessageDmsDeleteStoredImageOutput *self);
-

Atomically increments the reference count of self - by one.

-
-

Parameters

-
----- - - - - - -

self

a QmiMessageDmsDeleteStoredImageOutput.

 
-
-
-

Returns

-

the new reference to self -.

-
-

Since: 1.0

-
-
-
-

qmi_message_dms_delete_stored_image_output_unref ()

-
void
-qmi_message_dms_delete_stored_image_output_unref
-                               (QmiMessageDmsDeleteStoredImageOutput *self);
-

Atomically decrements the reference count of self - by one. -If the reference count drops to 0, self - is completely disposed.

-
-

Parameters

-
----- - - - - - -

self

a QmiMessageDmsDeleteStoredImageOutput.

 
-
-

Since: 1.0

-
-
-
-

qmi_message_dms_delete_stored_image_output_get_result ()

-
gboolean
-qmi_message_dms_delete_stored_image_output_get_result
-                               (QmiMessageDmsDeleteStoredImageOutput *self,
-                                GError **error);
-

Get the result of the QMI operation.

-
-

Parameters

-
----- - - - - - - - - - - - - -

self

a QmiMessageDmsDeleteStoredImageOutput.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the QMI operation succeeded, FALSE if error -is set.

-
-

Since: 1.0

-
-
-
-

qmi_client_dms_delete_stored_image ()

-
void
-qmi_client_dms_delete_stored_image (QmiClientDms *self,
-                                    QmiMessageDmsDeleteStoredImageInput *input,
-                                    guint timeout,
-                                    GCancellable *cancellable,
-                                    GAsyncReadyCallback callback,
-                                    gpointer user_data);
-

Asynchronously sends a Delete Stored Image request to the device.

-

When the operation is finished, callback - will be invoked in the thread-default main loop of the thread you are calling this method from.

-

You can then call qmi_client_dms_delete_stored_image_finish() to get the result of the operation.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

self

a QmiClientDms.

 

input

a QmiMessageDmsDeleteStoredImageInput.

 

timeout

maximum time to wait for the method to complete, in seconds.

 

cancellable

a GCancellable or NULL.

 

callback

a GAsyncReadyCallback to call when the request is satisfied.

 

user_data

user data to pass to callback -.

 
-
-

Since: 1.0

-
-
-
-

qmi_client_dms_delete_stored_image_finish ()

-
QmiMessageDmsDeleteStoredImageOutput *
-qmi_client_dms_delete_stored_image_finish
-                               (QmiClientDms *self,
-                                GAsyncResult *res,
-                                GError **error);
-

Finishes an async operation started with qmi_client_dms_delete_stored_image().

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiClientDms.

 

res

the GAsyncResult obtained from the GAsyncReadyCallback passed to qmi_client_dms_delete_stored_image().

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

a QmiMessageDmsDeleteStoredImageOutput, or NULL if error -is set. The returned value should be freed with qmi_message_dms_delete_stored_image_output_unref().

-
-

Since: 1.0

-
-
-
-

Types and Values

-
-

QmiMessageDmsDeleteStoredImageInput

-
typedef struct _QmiMessageDmsDeleteStoredImageInput QmiMessageDmsDeleteStoredImageInput;
-

The QmiMessageDmsDeleteStoredImageInput structure contains private data and should only be accessed -using the provided API.

-

Since: 1.0

-
-
-
-

QmiMessageDmsDeleteStoredImageInputImage

-
typedef struct {
-    QmiDmsFirmwareImageType type;
-    GArray *unique_id;
-    gchar *build_id;
-} QmiMessageDmsDeleteStoredImageInputImage;
-
-

A QmiMessageDmsDeleteStoredImageInputImage struct.

-
-

Members

-
----- - - - - - - - - - - - - - - - - - -

QmiDmsFirmwareImageType type;

a QmiDmsFirmwareImageType.

 

GArray *unique_id;

a GArray of guint8 elements.

 

gchar *build_id;

a string.

 
-
-

Since: 1.0

-
-
-
-

QmiMessageDmsDeleteStoredImageOutput

-
typedef struct _QmiMessageDmsDeleteStoredImageOutput QmiMessageDmsDeleteStoredImageOutput;
-

The QmiMessageDmsDeleteStoredImageOutput structure contains private data and should only be accessed -using the provided API.

-

Since: 1.0

-
-
-
- - - \ No newline at end of file diff -Nru libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-DMS-Delete-Stored-Image-request.html libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-DMS-Delete-Stored-Image-request.html --- libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-DMS-Delete-Stored-Image-request.html 1970-01-01 01:00:00.000000000 +0100 +++ libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-DMS-Delete-Stored-Image-request.html 2019-01-08 15:19:01.000000000 +0100 @@ -0,0 +1,574 @@ + + + + +DMS Delete Stored Image request: libqmi-glib Reference Manual + + + + + + + + + + + + + + + + +
+
+
+ + +
+

DMS Delete Stored Image request

+

DMS Delete Stored Image request

+
+ + +
+

Object Hierarchy

+
    GBoxed
+    ├── QmiMessageDmsDeleteStoredImageInput
+    ╰── QmiMessageDmsDeleteStoredImageOutput
+
+
+
+

Description

+
+
+

Functions

+
+

qmi_message_dms_delete_stored_image_input_new ()

+
QmiMessageDmsDeleteStoredImageInput *
+qmi_message_dms_delete_stored_image_input_new
+                               (void);
+

Allocates a new QmiMessageDmsDeleteStoredImageInput.

+
+

Returns

+

the newly created QmiMessageDmsDeleteStoredImageInput. The returned value should be freed with qmi_message_dms_delete_stored_image_input_unref().

+
+

Since: 1.0

+
+
+
+

qmi_message_dms_delete_stored_image_input_ref ()

+
QmiMessageDmsDeleteStoredImageInput *
+qmi_message_dms_delete_stored_image_input_ref
+                               (QmiMessageDmsDeleteStoredImageInput *self);
+

Atomically increments the reference count of self + by one.

+
+

Parameters

+
+++++ + + + + + +

self

a QmiMessageDmsDeleteStoredImageInput.

 
+
+
+

Returns

+

the new reference to self +.

+
+

Since: 1.0

+
+
+
+

qmi_message_dms_delete_stored_image_input_unref ()

+
void
+qmi_message_dms_delete_stored_image_input_unref
+                               (QmiMessageDmsDeleteStoredImageInput *self);
+

Atomically decrements the reference count of self + by one. +If the reference count drops to 0, self + is completely disposed.

+
+

Parameters

+
+++++ + + + + + +

self

a QmiMessageDmsDeleteStoredImageInput.

 
+
+

Since: 1.0

+
+
+
+

qmi_message_dms_delete_stored_image_input_get_image ()

+
gboolean
+qmi_message_dms_delete_stored_image_input_get_image
+                               (QmiMessageDmsDeleteStoredImageInput *self,
+                                QmiMessageDmsDeleteStoredImageInputImage *value_image,
+                                GError **error);
+

Get the 'Image' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageDmsDeleteStoredImageInput.

 

value_image

a placeholder for the output constant QmiMessageDmsDeleteStoredImageInputImage, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.0

+
+
+
+

qmi_message_dms_delete_stored_image_input_set_image ()

+
gboolean
+qmi_message_dms_delete_stored_image_input_set_image
+                               (QmiMessageDmsDeleteStoredImageInput *self,
+                                const QmiMessageDmsDeleteStoredImageInputImage *value_image,
+                                GError **error);
+

Set the 'Image' field in the message.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageDmsDeleteStoredImageInput.

 

value_image

the address of the QmiMessageDmsDeleteStoredImageInputImage to set.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if value +was successfully set, FALSE otherwise.

+
+

Since: 1.0

+
+
+
+

qmi_message_dms_delete_stored_image_output_ref ()

+
QmiMessageDmsDeleteStoredImageOutput *
+qmi_message_dms_delete_stored_image_output_ref
+                               (QmiMessageDmsDeleteStoredImageOutput *self);
+

Atomically increments the reference count of self + by one.

+
+

Parameters

+
+++++ + + + + + +

self

a QmiMessageDmsDeleteStoredImageOutput.

 
+
+
+

Returns

+

the new reference to self +.

+
+

Since: 1.0

+
+
+
+

qmi_message_dms_delete_stored_image_output_unref ()

+
void
+qmi_message_dms_delete_stored_image_output_unref
+                               (QmiMessageDmsDeleteStoredImageOutput *self);
+

Atomically decrements the reference count of self + by one. +If the reference count drops to 0, self + is completely disposed.

+
+

Parameters

+
+++++ + + + + + +

self

a QmiMessageDmsDeleteStoredImageOutput.

 
+
+

Since: 1.0

+
+
+
+

qmi_message_dms_delete_stored_image_output_get_result ()

+
gboolean
+qmi_message_dms_delete_stored_image_output_get_result
+                               (QmiMessageDmsDeleteStoredImageOutput *self,
+                                GError **error);
+

Get the result of the QMI operation.

+
+

Parameters

+
+++++ + + + + + + + + + + + + +

self

a QmiMessageDmsDeleteStoredImageOutput.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the QMI operation succeeded, FALSE if error +is set.

+
+

Since: 1.0

+
+
+
+

qmi_client_dms_delete_stored_image ()

+
void
+qmi_client_dms_delete_stored_image (QmiClientDms *self,
+                                    QmiMessageDmsDeleteStoredImageInput *input,
+                                    guint timeout,
+                                    GCancellable *cancellable,
+                                    GAsyncReadyCallback callback,
+                                    gpointer user_data);
+

Asynchronously sends a Delete Stored Image request to the device.

+

When the operation is finished, callback + will be invoked in the thread-default main loop of the thread you are calling this method from.

+

You can then call qmi_client_dms_delete_stored_image_finish() to get the result of the operation.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

self

a QmiClientDms.

 

input

a QmiMessageDmsDeleteStoredImageInput.

 

timeout

maximum time to wait for the method to complete, in seconds.

 

cancellable

a GCancellable or NULL.

 

callback

a GAsyncReadyCallback to call when the request is satisfied.

 

user_data

user data to pass to callback +.

 
+
+

Since: 1.0

+
+
+
+

qmi_client_dms_delete_stored_image_finish ()

+
QmiMessageDmsDeleteStoredImageOutput *
+qmi_client_dms_delete_stored_image_finish
+                               (QmiClientDms *self,
+                                GAsyncResult *res,
+                                GError **error);
+

Finishes an async operation started with qmi_client_dms_delete_stored_image().

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiClientDms.

 

res

the GAsyncResult obtained from the GAsyncReadyCallback passed to qmi_client_dms_delete_stored_image().

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

a QmiMessageDmsDeleteStoredImageOutput, or NULL if error +is set. The returned value should be freed with qmi_message_dms_delete_stored_image_output_unref().

+
+

Since: 1.0

+
+
+
+

Types and Values

+
+

QmiMessageDmsDeleteStoredImageInput

+
typedef struct _QmiMessageDmsDeleteStoredImageInput QmiMessageDmsDeleteStoredImageInput;
+

The QmiMessageDmsDeleteStoredImageInput structure contains private data and should only be accessed +using the provided API.

+

Since: 1.0

+
+
+
+

QmiMessageDmsDeleteStoredImageInputImage

+
typedef struct {
+    QmiDmsFirmwareImageType type;
+    GArray *unique_id;
+    gchar *build_id;
+} QmiMessageDmsDeleteStoredImageInputImage;
+
+

A QmiMessageDmsDeleteStoredImageInputImage struct.

+
+

Members

+
+++++ + + + + + + + + + + + + + + + + + +

QmiDmsFirmwareImageType type;

a QmiDmsFirmwareImageType.

 

GArray *unique_id;

a GArray of guint8 elements.

 

gchar *build_id;

a string.

 
+
+

Since: 1.0

+
+
+
+

QmiMessageDmsDeleteStoredImageOutput

+
typedef struct _QmiMessageDmsDeleteStoredImageOutput QmiMessageDmsDeleteStoredImageOutput;
+

The QmiMessageDmsDeleteStoredImageOutput structure contains private data and should only be accessed +using the provided API.

+

Since: 1.0

+
+
+
+ + + \ No newline at end of file diff -Nru libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-DMS-enumerations-and-flags.html libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-DMS-enumerations-and-flags.html --- libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-DMS-enumerations-and-flags.html 2017-03-22 12:28:28.000000000 +0100 +++ libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-DMS-enumerations-and-flags.html 2019-01-08 15:19:01.000000000 +0100 @@ -3,12 +3,12 @@ DMS enumerations and flags: libqmi-glib Reference Manual - + - - + + @@ -21,7 +21,7 @@ Home Up Prev -Next +Next @@ -264,12 +278,16 @@ enum QmiDmsHpDeviceMode + +enum +QmiDmsSwiUsbComposition +

Object Hierarchy

-
    GEnum
+
    GEnum
     ├── QmiDmsActivationState
     ├── QmiDmsBootImageDownloadMode
     ├── QmiDmsDataServiceCapability
@@ -278,6 +296,7 @@
     ├── QmiDmsOperatingMode
     ├── QmiDmsRadioInterface
     ├── QmiDmsSimCapability
+    ├── QmiDmsSwiUsbComposition
     ├── QmiDmsTimeReferenceType
     ├── QmiDmsTimeSource
     ├── QmiDmsUimFacility
@@ -285,7 +304,7 @@
     ├── QmiDmsUimPinId
     ├── QmiDmsUimPinStatus
     ╰── QmiDmsUimState
-    GFlags
+    GFlags
     ├── QmiDmsOfflineReason
     ╰── QmiDmsPowerState
 
@@ -321,7 +340,7 @@

Returns

-

a string with the nickname, or NULL if not found. Do not free the returned value.

+

a string with the nickname, or NULL if not found. Do not free the returned value.

[transfer none]

Since: 1.0

@@ -350,7 +369,7 @@

Returns

-

a string with the nickname, or NULL if not found. Do not free the returned value.

+

a string with the nickname, or NULL if not found. Do not free the returned value.

[transfer none]

Since: 1.0

@@ -381,7 +400,7 @@

Returns

-

a string with the list of nicknames, or NULL if none given. The returned value should be freed with g_free().

+

a string with the list of nicknames, or NULL if none given. The returned value should be freed with g_free().

[transfer full]

Since: 1.0

@@ -412,7 +431,7 @@

Returns

-

a string with the list of nicknames, or NULL if none given. The returned value should be freed with g_free().

+

a string with the list of nicknames, or NULL if none given. The returned value should be freed with g_free().

[transfer full]

Since: 1.0

@@ -441,7 +460,7 @@

Returns

-

a string with the nickname, or NULL if not found. Do not free the returned value.

+

a string with the nickname, or NULL if not found. Do not free the returned value.

[transfer none]

Since: 1.0

@@ -472,7 +491,7 @@

Returns

-

a string with the list of nicknames, or NULL if none given. The returned value should be freed with g_free().

+

a string with the list of nicknames, or NULL if none given. The returned value should be freed with g_free().

[transfer full]

@@ -500,7 +519,7 @@

Returns

-

a string with the nickname, or NULL if not found. Do not free the returned value.

+

a string with the nickname, or NULL if not found. Do not free the returned value.

[transfer none]

Since: 1.0

@@ -529,7 +548,7 @@

Returns

-

a string with the nickname, or NULL if not found. Do not free the returned value.

+

a string with the nickname, or NULL if not found. Do not free the returned value.

[transfer none]

Since: 1.0

@@ -558,7 +577,7 @@

Returns

-

a string with the nickname, or NULL if not found. Do not free the returned value.

+

a string with the nickname, or NULL if not found. Do not free the returned value.

[transfer none]

Since: 1.0

@@ -589,7 +608,7 @@

Returns

-

a string with the list of nicknames, or NULL if none given. The returned value should be freed with g_free().

+

a string with the list of nicknames, or NULL if none given. The returned value should be freed with g_free().

[transfer full]

Since: 1.0

@@ -618,7 +637,7 @@

Returns

-

a string with the nickname, or NULL if not found. Do not free the returned value.

+

a string with the nickname, or NULL if not found. Do not free the returned value.

[transfer none]

Since: 1.0

@@ -647,7 +666,7 @@

Returns

-

a string with the nickname, or NULL if not found. Do not free the returned value.

+

a string with the nickname, or NULL if not found. Do not free the returned value.

[transfer none]

Since: 1.0

@@ -676,7 +695,7 @@

Returns

-

a string with the nickname, or NULL if not found. Do not free the returned value.

+

a string with the nickname, or NULL if not found. Do not free the returned value.

[transfer none]

Since: 1.0

@@ -705,7 +724,7 @@

Returns

-

a string with the nickname, or NULL if not found. Do not free the returned value.

+

a string with the nickname, or NULL if not found. Do not free the returned value.

[transfer none]

Since: 1.0

@@ -734,7 +753,7 @@

Returns

-

a string with the nickname, or NULL if not found. Do not free the returned value.

+

a string with the nickname, or NULL if not found. Do not free the returned value.

[transfer none]

Since: 1.0

@@ -764,7 +783,7 @@

Returns

-

a string with the nickname, or NULL if not found. Do not free the returned value.

+

a string with the nickname, or NULL if not found. Do not free the returned value.

[transfer none]

Since: 1.0

@@ -794,7 +813,7 @@

Returns

-

a string with the nickname, or NULL if not found. Do not free the returned value.

+

a string with the nickname, or NULL if not found. Do not free the returned value.

[transfer none]

Since: 1.0

@@ -824,7 +843,7 @@

Returns

-

a string with the nickname, or NULL if not found. Do not free the returned value.

+

a string with the nickname, or NULL if not found. Do not free the returned value.

[transfer none]

Since: 1.18

@@ -853,11 +872,69 @@

Returns

-

a string with the nickname, or NULL if not found. Do not free the returned value.

+

a string with the nickname, or NULL if not found. Do not free the returned value.

[transfer none]

Since: 1.18

+
+
+

qmi_dms_swi_usb_composition_get_string ()

+
const gchar *
+qmi_dms_swi_usb_composition_get_string
+                               (QmiDmsSwiUsbComposition val);
+

Gets the nickname string for the QmiDmsSwiUsbComposition specified at val +.

+
+

Parameters

+
+++++ + + + + + +

val

a QmiDmsSwiUsbComposition.

 
+
+
+

Returns

+

a string with the nickname, or NULL if not found. Do not free the returned value.

+

[transfer none]

+
+

Since: 1.20

+
+
+
+

qmi_dms_swi_usb_composition_get_description ()

+
const gchar *
+qmi_dms_swi_usb_composition_get_description
+                               (QmiDmsSwiUsbComposition value);
+

Gets a text description of the Sierra Wireless USB composition.

+
+

Parameters

+
+++++ + + + + + +

value

a QmiDmsSwiUsbComposition.

 
+
+
+

Returns

+

a string.

+
+

Since: 1.20

+

Types and Values

@@ -1403,6 +1480,55 @@   +

QMI_DMS_LTE_BAND_CAPABILITY_EUTRAN_26

+ +

LTE EUTRAN Band 26.

+ +  + + +

QMI_DMS_LTE_BAND_CAPABILITY_EUTRAN_27

+ +

LTE EUTRAN Band 27.

+ +  + + +

QMI_DMS_LTE_BAND_CAPABILITY_EUTRAN_28

+ +

LTE EUTRAN Band 28.

+ +  + + +

QMI_DMS_LTE_BAND_CAPABILITY_EUTRAN_29

+ +

LTE EUTRAN Band 29.

+ +  + + +

QMI_DMS_LTE_BAND_CAPABILITY_EUTRAN_30

+ +

LTE EUTRAN Band 30.

+ +  + + +

QMI_DMS_LTE_BAND_CAPABILITY_EUTRAN_31

+ +

LTE EUTRAN Band 31.

+ +  + + +

QMI_DMS_LTE_BAND_CAPABILITY_EUTRAN_32

+ +

LTE EUTRAN Band 32.

+ +  + +

QMI_DMS_LTE_BAND_CAPABILITY_EUTRAN_33

LTE EUTRAN Band 33.

@@ -2216,9 +2342,195 @@

Since: 1.18

+
+
+

enum QmiDmsSwiUsbComposition

+

Sierra Wireless USB composition modes.

+
+

Members

+
+++++ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

QMI_DMS_SWI_USB_COMPOSITION_UNKNOWN

+

Unknown.

+
 

QMI_DMS_SWI_USB_COMPOSITION_0

+

HIP, DM, NMEA, AT, MDM1, MDM2, MDM3, MS.

+
 

QMI_DMS_SWI_USB_COMPOSITION_1

+

HIP, DM, NMEA, AT, MDM1, MS.

+
 

QMI_DMS_SWI_USB_COMPOSITION_2

+

HIP, DM, NMEA, AT, NIC1, MS.

+
 

QMI_DMS_SWI_USB_COMPOSITION_3

+

HIP, DM, NMEA, AT, MDM1, NIC1, MS.

+
 

QMI_DMS_SWI_USB_COMPOSITION_4

+

HIP, DM, NMEA, AT, NIC1, NIC2, NIC3, MS.

+
 

QMI_DMS_SWI_USB_COMPOSITION_5

+

HIP, DM, NMEA, AT, ECM1, MS.

+
 

QMI_DMS_SWI_USB_COMPOSITION_6

+

DM, NMEA, AT, QMI.

+
 

QMI_DMS_SWI_USB_COMPOSITION_7

+

DM, NMEA, AT, RMNET1, RMNET2, RMNET3.

+
 

QMI_DMS_SWI_USB_COMPOSITION_8

+

DM, NMEA, AT, MBIM.

+
 

QMI_DMS_SWI_USB_COMPOSITION_9

+

MBIM.

+
 

QMI_DMS_SWI_USB_COMPOSITION_10

+

NMEA, MBIM.

+
 

QMI_DMS_SWI_USB_COMPOSITION_11

+

DM, MBIM.

+
 

QMI_DMS_SWI_USB_COMPOSITION_12

+

DM, NMEA, MBIM.

+
 

QMI_DMS_SWI_USB_COMPOSITION_13

+

Dual configuration: USB composition 6 and USB composition 8.

+
 

QMI_DMS_SWI_USB_COMPOSITION_14

+

Dual configuration: USB composition 6 and USB composition 9.

+
 

QMI_DMS_SWI_USB_COMPOSITION_15

+

Dual configuration: USB composition 6 and USB composition 10.

+
 

QMI_DMS_SWI_USB_COMPOSITION_16

+

Dual configuration: USB composition 6 and USB composition 11.

+
 

QMI_DMS_SWI_USB_COMPOSITION_17

+

Dual configuration: USB composition 6 and USB composition 12.

+
 

QMI_DMS_SWI_USB_COMPOSITION_18

+

Dual configuration: USB composition 7 and USB composition 8.

+
 

QMI_DMS_SWI_USB_COMPOSITION_19

+

Dual configuration: USB composition 7 and USB composition 9.

+
 

QMI_DMS_SWI_USB_COMPOSITION_20

+

Dual configuration: USB composition 7 and USB composition 10.

+
 

QMI_DMS_SWI_USB_COMPOSITION_21

+

Dual configuration: USB composition 7 and USB composition 11.

+
 

QMI_DMS_SWI_USB_COMPOSITION_22

+

Dual configuration: USB composition 7 and USB composition 12.

+
 
+
+

Since: 1.20

+
+
Generated by GTK-Doc V1.29 \ No newline at end of file diff -Nru libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-DMS-Event-Report.html libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-DMS-Event-Report.html --- libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-DMS-Event-Report.html 2017-03-22 12:28:29.000000000 +0100 +++ libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-DMS-Event-Report.html 1970-01-01 01:00:00.000000000 +0100 @@ -1,595 +0,0 @@ - - - - -DMS Event Report: libqmi-glib Reference Manual - - - - - - - - - - - - - - - - -
-
-
- - -
-

DMS Event Report

-

DMS Event Report

-
- -
-

Types and Values

- -
-
-

Object Hierarchy

-
    GBoxed
-    ╰── QmiIndicationDmsEventReportOutput
-
-
-
-

Description

-
-
-

Functions

-
-

qmi_indication_dms_event_report_output_ref ()

-
QmiIndicationDmsEventReportOutput *
-qmi_indication_dms_event_report_output_ref
-                               (QmiIndicationDmsEventReportOutput *self);
-

Atomically increments the reference count of self - by one.

-
-

Parameters

-
----- - - - - - -

self

a QmiIndicationDmsEventReportOutput.

 
-
-
-

Returns

-

the new reference to self -.

-
-

Since: 1.0

-
-
-
-

qmi_indication_dms_event_report_output_unref ()

-
void
-qmi_indication_dms_event_report_output_unref
-                               (QmiIndicationDmsEventReportOutput *self);
-

Atomically decrements the reference count of self - by one. -If the reference count drops to 0, self - is completely disposed.

-
-

Parameters

-
----- - - - - - -

self

a QmiIndicationDmsEventReportOutput.

 
-
-

Since: 1.0

-
-
-
-

qmi_indication_dms_event_report_output_get_prl_init_notification ()

-
gboolean
-qmi_indication_dms_event_report_output_get_prl_init_notification
-                               (QmiIndicationDmsEventReportOutput *self,
-                                gboolean *value_prl_init_notification,
-                                GError **error);
-

Get the 'PRL Init Notification' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiIndicationDmsEventReportOutput.

 

value_prl_init_notification

a placeholder for the output gboolean, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.0

-
-
-
-

qmi_indication_dms_event_report_output_get_wireless_disable_state ()

-
gboolean
-qmi_indication_dms_event_report_output_get_wireless_disable_state
-                               (QmiIndicationDmsEventReportOutput *self,
-                                gboolean *value_wireless_disable_state,
-                                GError **error);
-

Get the 'Wireless Disable State' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiIndicationDmsEventReportOutput.

 

value_wireless_disable_state

a placeholder for the output gboolean, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.0

-
-
-
-

qmi_indication_dms_event_report_output_get_uim_state ()

-
gboolean
-qmi_indication_dms_event_report_output_get_uim_state
-                               (QmiIndicationDmsEventReportOutput *self,
-                                QmiDmsUimState *value_uim_state,
-                                GError **error);
-

Get the 'UIM State' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiIndicationDmsEventReportOutput.

 

value_uim_state

a placeholder for the output QmiDmsUimState, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.0

-
-
-
-

qmi_indication_dms_event_report_output_get_operating_mode ()

-
gboolean
-qmi_indication_dms_event_report_output_get_operating_mode
-                               (QmiIndicationDmsEventReportOutput *self,
-                                QmiDmsOperatingMode *value_operating_mode,
-                                GError **error);
-

Get the 'Operating Mode' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiIndicationDmsEventReportOutput.

 

value_operating_mode

a placeholder for the output QmiDmsOperatingMode, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.0

-
-
-
-

qmi_indication_dms_event_report_output_get_activation_state ()

-
gboolean
-qmi_indication_dms_event_report_output_get_activation_state
-                               (QmiIndicationDmsEventReportOutput *self,
-                                QmiDmsActivationState *value_activation_state,
-                                GError **error);
-

Get the 'Activation State' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiIndicationDmsEventReportOutput.

 

value_activation_state

a placeholder for the output QmiDmsActivationState, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.0

-
-
-
-

qmi_indication_dms_event_report_output_get_pin2_status ()

-
gboolean
-qmi_indication_dms_event_report_output_get_pin2_status
-                               (QmiIndicationDmsEventReportOutput *self,
-                                QmiDmsUimPinStatus *value_pin2_status_current_status,
-                                guint8 *value_pin2_status_verify_retries_left,
-                                guint8 *value_pin2_status_unblock_retries_left,
-                                GError **error);
-

Get the 'PIN2 Status' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - - - - - - - - - - - -

self

a QmiIndicationDmsEventReportOutput.

 

value_pin2_status_current_status

a placeholder for the output QmiDmsUimPinStatus, or NULL if not required.

 

value_pin2_status_verify_retries_left

a placeholder for the output guint8, or NULL if not required.

 

value_pin2_status_unblock_retries_left

a placeholder for the output guint8, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.0

-
-
-
-

qmi_indication_dms_event_report_output_get_pin1_status ()

-
gboolean
-qmi_indication_dms_event_report_output_get_pin1_status
-                               (QmiIndicationDmsEventReportOutput *self,
-                                QmiDmsUimPinStatus *value_pin1_status_current_status,
-                                guint8 *value_pin1_status_verify_retries_left,
-                                guint8 *value_pin1_status_unblock_retries_left,
-                                GError **error);
-

Get the 'PIN1 Status' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - - - - - - - - - - - -

self

a QmiIndicationDmsEventReportOutput.

 

value_pin1_status_current_status

a placeholder for the output QmiDmsUimPinStatus, or NULL if not required.

 

value_pin1_status_verify_retries_left

a placeholder for the output guint8, or NULL if not required.

 

value_pin1_status_unblock_retries_left

a placeholder for the output guint8, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.0

-
-
-
-

qmi_indication_dms_event_report_output_get_power_state ()

-
gboolean
-qmi_indication_dms_event_report_output_get_power_state
-                               (QmiIndicationDmsEventReportOutput *self,
-                                guint8 *value_power_state_power_state_flags,
-                                guint8 *value_power_state_battery_level,
-                                GError **error);
-

Get the 'Power State' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - - - - - - -

self

a QmiIndicationDmsEventReportOutput.

 

value_power_state_power_state_flags

a placeholder for the output guint8, or NULL if not required.

 

value_power_state_battery_level

a placeholder for the output guint8, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.0

-
-
-
-

Types and Values

-
-

QmiIndicationDmsEventReportOutput

-
typedef struct _QmiIndicationDmsEventReportOutput QmiIndicationDmsEventReportOutput;
-

The QmiIndicationDmsEventReportOutput structure contains private data and should only be accessed -using the provided API.

-

Since: 1.0

-
-
-
- - - \ No newline at end of file diff -Nru libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-DMS-Event-Report-indication.html libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-DMS-Event-Report-indication.html --- libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-DMS-Event-Report-indication.html 1970-01-01 01:00:00.000000000 +0100 +++ libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-DMS-Event-Report-indication.html 2019-01-08 15:19:01.000000000 +0100 @@ -0,0 +1,595 @@ + + + + +DMS Event Report indication: libqmi-glib Reference Manual + + + + + + + + + + + + + + + + +
+
+
+ + +
+

DMS Event Report indication

+

DMS Event Report indication

+
+ +
+

Types and Values

+ +
+
+

Object Hierarchy

+
    GBoxed
+    ╰── QmiIndicationDmsEventReportOutput
+
+
+
+

Description

+
+
+

Functions

+
+

qmi_indication_dms_event_report_output_ref ()

+
QmiIndicationDmsEventReportOutput *
+qmi_indication_dms_event_report_output_ref
+                               (QmiIndicationDmsEventReportOutput *self);
+

Atomically increments the reference count of self + by one.

+
+

Parameters

+
+++++ + + + + + +

self

a QmiIndicationDmsEventReportOutput.

 
+
+
+

Returns

+

the new reference to self +.

+
+

Since: 1.0

+
+
+
+

qmi_indication_dms_event_report_output_unref ()

+
void
+qmi_indication_dms_event_report_output_unref
+                               (QmiIndicationDmsEventReportOutput *self);
+

Atomically decrements the reference count of self + by one. +If the reference count drops to 0, self + is completely disposed.

+
+

Parameters

+
+++++ + + + + + +

self

a QmiIndicationDmsEventReportOutput.

 
+
+

Since: 1.0

+
+
+
+

qmi_indication_dms_event_report_output_get_prl_init_notification ()

+
gboolean
+qmi_indication_dms_event_report_output_get_prl_init_notification
+                               (QmiIndicationDmsEventReportOutput *self,
+                                gboolean *value_prl_init_notification,
+                                GError **error);
+

Get the 'PRL Init Notification' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiIndicationDmsEventReportOutput.

 

value_prl_init_notification

a placeholder for the output gboolean, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.0

+
+
+
+

qmi_indication_dms_event_report_output_get_wireless_disable_state ()

+
gboolean
+qmi_indication_dms_event_report_output_get_wireless_disable_state
+                               (QmiIndicationDmsEventReportOutput *self,
+                                gboolean *value_wireless_disable_state,
+                                GError **error);
+

Get the 'Wireless Disable State' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiIndicationDmsEventReportOutput.

 

value_wireless_disable_state

a placeholder for the output gboolean, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.0

+
+
+
+

qmi_indication_dms_event_report_output_get_uim_state ()

+
gboolean
+qmi_indication_dms_event_report_output_get_uim_state
+                               (QmiIndicationDmsEventReportOutput *self,
+                                QmiDmsUimState *value_uim_state,
+                                GError **error);
+

Get the 'UIM State' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiIndicationDmsEventReportOutput.

 

value_uim_state

a placeholder for the output QmiDmsUimState, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.0

+
+
+
+

qmi_indication_dms_event_report_output_get_operating_mode ()

+
gboolean
+qmi_indication_dms_event_report_output_get_operating_mode
+                               (QmiIndicationDmsEventReportOutput *self,
+                                QmiDmsOperatingMode *value_operating_mode,
+                                GError **error);
+

Get the 'Operating Mode' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiIndicationDmsEventReportOutput.

 

value_operating_mode

a placeholder for the output QmiDmsOperatingMode, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.0

+
+
+
+

qmi_indication_dms_event_report_output_get_activation_state ()

+
gboolean
+qmi_indication_dms_event_report_output_get_activation_state
+                               (QmiIndicationDmsEventReportOutput *self,
+                                QmiDmsActivationState *value_activation_state,
+                                GError **error);
+

Get the 'Activation State' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiIndicationDmsEventReportOutput.

 

value_activation_state

a placeholder for the output QmiDmsActivationState, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.0

+
+
+
+

qmi_indication_dms_event_report_output_get_pin2_status ()

+
gboolean
+qmi_indication_dms_event_report_output_get_pin2_status
+                               (QmiIndicationDmsEventReportOutput *self,
+                                QmiDmsUimPinStatus *value_pin2_status_current_status,
+                                guint8 *value_pin2_status_verify_retries_left,
+                                guint8 *value_pin2_status_unblock_retries_left,
+                                GError **error);
+

Get the 'PIN2 Status' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + + + + + + + + + + + +

self

a QmiIndicationDmsEventReportOutput.

 

value_pin2_status_current_status

a placeholder for the output QmiDmsUimPinStatus, or NULL if not required.

 

value_pin2_status_verify_retries_left

a placeholder for the output guint8, or NULL if not required.

 

value_pin2_status_unblock_retries_left

a placeholder for the output guint8, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.0

+
+
+
+

qmi_indication_dms_event_report_output_get_pin1_status ()

+
gboolean
+qmi_indication_dms_event_report_output_get_pin1_status
+                               (QmiIndicationDmsEventReportOutput *self,
+                                QmiDmsUimPinStatus *value_pin1_status_current_status,
+                                guint8 *value_pin1_status_verify_retries_left,
+                                guint8 *value_pin1_status_unblock_retries_left,
+                                GError **error);
+

Get the 'PIN1 Status' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + + + + + + + + + + + +

self

a QmiIndicationDmsEventReportOutput.

 

value_pin1_status_current_status

a placeholder for the output QmiDmsUimPinStatus, or NULL if not required.

 

value_pin1_status_verify_retries_left

a placeholder for the output guint8, or NULL if not required.

 

value_pin1_status_unblock_retries_left

a placeholder for the output guint8, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.0

+
+
+
+

qmi_indication_dms_event_report_output_get_power_state ()

+
gboolean
+qmi_indication_dms_event_report_output_get_power_state
+                               (QmiIndicationDmsEventReportOutput *self,
+                                guint8 *value_power_state_power_state_flags,
+                                guint8 *value_power_state_battery_level,
+                                GError **error);
+

Get the 'Power State' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + + + + + + +

self

a QmiIndicationDmsEventReportOutput.

 

value_power_state_power_state_flags

a placeholder for the output guint8, or NULL if not required.

 

value_power_state_battery_level

a placeholder for the output guint8, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.0

+
+
+
+

Types and Values

+
+

QmiIndicationDmsEventReportOutput

+
typedef struct _QmiIndicationDmsEventReportOutput QmiIndicationDmsEventReportOutput;
+

The QmiIndicationDmsEventReportOutput structure contains private data and should only be accessed +using the provided API.

+

Since: 1.0

+
+
+
+ + + \ No newline at end of file diff -Nru libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-DMS-Get-Activation-State.html libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-DMS-Get-Activation-State.html --- libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-DMS-Get-Activation-State.html 2017-03-22 12:28:29.000000000 +0100 +++ libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-DMS-Get-Activation-State.html 1970-01-01 01:00:00.000000000 +0100 @@ -1,371 +0,0 @@ - - - - -DMS Get Activation State: libqmi-glib Reference Manual - - - - - - - - - - - - - - - - -
-
-
- - -
-

DMS Get Activation State

-

DMS Get Activation State

-
- -
-

Types and Values

- -
-
-

Object Hierarchy

-
    GBoxed
-    ╰── QmiMessageDmsGetActivationStateOutput
-
-
-
-

Description

-
-
-

Functions

-
-

qmi_message_dms_get_activation_state_output_ref ()

-
QmiMessageDmsGetActivationStateOutput *
-qmi_message_dms_get_activation_state_output_ref
-                               (QmiMessageDmsGetActivationStateOutput *self);
-

Atomically increments the reference count of self - by one.

-
-

Parameters

-
----- - - - - - -

self

a QmiMessageDmsGetActivationStateOutput.

 
-
-
-

Returns

-

the new reference to self -.

-
-

Since: 1.0

-
-
-
-

qmi_message_dms_get_activation_state_output_unref ()

-
void
-qmi_message_dms_get_activation_state_output_unref
-                               (QmiMessageDmsGetActivationStateOutput *self);
-

Atomically decrements the reference count of self - by one. -If the reference count drops to 0, self - is completely disposed.

-
-

Parameters

-
----- - - - - - -

self

a QmiMessageDmsGetActivationStateOutput.

 
-
-

Since: 1.0

-
-
-
-

qmi_message_dms_get_activation_state_output_get_result ()

-
gboolean
-qmi_message_dms_get_activation_state_output_get_result
-                               (QmiMessageDmsGetActivationStateOutput *self,
-                                GError **error);
-

Get the result of the QMI operation.

-
-

Parameters

-
----- - - - - - - - - - - - - -

self

a QmiMessageDmsGetActivationStateOutput.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the QMI operation succeeded, FALSE if error -is set.

-
-

Since: 1.0

-
-
-
-

qmi_message_dms_get_activation_state_output_get_info ()

-
gboolean
-qmi_message_dms_get_activation_state_output_get_info
-                               (QmiMessageDmsGetActivationStateOutput *self,
-                                QmiDmsActivationState *value_info,
-                                GError **error);
-

Get the 'Info' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessageDmsGetActivationStateOutput.

 

value_info

a placeholder for the output QmiDmsActivationState, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.0

-
-
-
-

qmi_client_dms_get_activation_state ()

-
void
-qmi_client_dms_get_activation_state (QmiClientDms *self,
-                                     gpointer unused,
-                                     guint timeout,
-                                     GCancellable *cancellable,
-                                     GAsyncReadyCallback callback,
-                                     gpointer user_data);
-

Asynchronously sends a Get Activation State request to the device.

-

When the operation is finished, callback - will be invoked in the thread-default main loop of the thread you are calling this method from.

-

You can then call qmi_client_dms_get_activation_state_finish() to get the result of the operation.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

self

a QmiClientDms.

 

unused

NULL. This message doesn't have any input bundle.

 

timeout

maximum time to wait for the method to complete, in seconds.

 

cancellable

a GCancellable or NULL.

 

callback

a GAsyncReadyCallback to call when the request is satisfied.

 

user_data

user data to pass to callback -.

 
-
-

Since: 1.0

-
-
-
-

qmi_client_dms_get_activation_state_finish ()

-
QmiMessageDmsGetActivationStateOutput *
-qmi_client_dms_get_activation_state_finish
-                               (QmiClientDms *self,
-                                GAsyncResult *res,
-                                GError **error);
-

Finishes an async operation started with qmi_client_dms_get_activation_state().

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiClientDms.

 

res

the GAsyncResult obtained from the GAsyncReadyCallback passed to qmi_client_dms_get_activation_state().

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

a QmiMessageDmsGetActivationStateOutput, or NULL if error -is set. The returned value should be freed with qmi_message_dms_get_activation_state_output_unref().

-
-

Since: 1.0

-
-
-
-

Types and Values

-
-

QmiMessageDmsGetActivationStateOutput

-
typedef struct _QmiMessageDmsGetActivationStateOutput QmiMessageDmsGetActivationStateOutput;
-

The QmiMessageDmsGetActivationStateOutput structure contains private data and should only be accessed -using the provided API.

-

Since: 1.0

-
-
-
- - - \ No newline at end of file diff -Nru libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-DMS-Get-Activation-State-request.html libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-DMS-Get-Activation-State-request.html --- libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-DMS-Get-Activation-State-request.html 1970-01-01 01:00:00.000000000 +0100 +++ libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-DMS-Get-Activation-State-request.html 2019-01-08 15:19:01.000000000 +0100 @@ -0,0 +1,371 @@ + + + + +DMS Get Activation State request: libqmi-glib Reference Manual + + + + + + + + + + + + + + + + +
+
+
+ + +
+

DMS Get Activation State request

+

DMS Get Activation State request

+
+ +
+

Types and Values

+ +
+
+

Object Hierarchy

+
    GBoxed
+    ╰── QmiMessageDmsGetActivationStateOutput
+
+
+
+

Description

+
+
+

Functions

+
+

qmi_message_dms_get_activation_state_output_ref ()

+
QmiMessageDmsGetActivationStateOutput *
+qmi_message_dms_get_activation_state_output_ref
+                               (QmiMessageDmsGetActivationStateOutput *self);
+

Atomically increments the reference count of self + by one.

+
+

Parameters

+
+++++ + + + + + +

self

a QmiMessageDmsGetActivationStateOutput.

 
+
+
+

Returns

+

the new reference to self +.

+
+

Since: 1.0

+
+
+
+

qmi_message_dms_get_activation_state_output_unref ()

+
void
+qmi_message_dms_get_activation_state_output_unref
+                               (QmiMessageDmsGetActivationStateOutput *self);
+

Atomically decrements the reference count of self + by one. +If the reference count drops to 0, self + is completely disposed.

+
+

Parameters

+
+++++ + + + + + +

self

a QmiMessageDmsGetActivationStateOutput.

 
+
+

Since: 1.0

+
+
+
+

qmi_message_dms_get_activation_state_output_get_result ()

+
gboolean
+qmi_message_dms_get_activation_state_output_get_result
+                               (QmiMessageDmsGetActivationStateOutput *self,
+                                GError **error);
+

Get the result of the QMI operation.

+
+

Parameters

+
+++++ + + + + + + + + + + + + +

self

a QmiMessageDmsGetActivationStateOutput.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the QMI operation succeeded, FALSE if error +is set.

+
+

Since: 1.0

+
+
+
+

qmi_message_dms_get_activation_state_output_get_info ()

+
gboolean
+qmi_message_dms_get_activation_state_output_get_info
+                               (QmiMessageDmsGetActivationStateOutput *self,
+                                QmiDmsActivationState *value_info,
+                                GError **error);
+

Get the 'Info' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageDmsGetActivationStateOutput.

 

value_info

a placeholder for the output QmiDmsActivationState, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.0

+
+
+
+

qmi_client_dms_get_activation_state ()

+
void
+qmi_client_dms_get_activation_state (QmiClientDms *self,
+                                     gpointer unused,
+                                     guint timeout,
+                                     GCancellable *cancellable,
+                                     GAsyncReadyCallback callback,
+                                     gpointer user_data);
+

Asynchronously sends a Get Activation State request to the device.

+

When the operation is finished, callback + will be invoked in the thread-default main loop of the thread you are calling this method from.

+

You can then call qmi_client_dms_get_activation_state_finish() to get the result of the operation.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

self

a QmiClientDms.

 

unused

NULL. This message doesn't have any input bundle.

 

timeout

maximum time to wait for the method to complete, in seconds.

 

cancellable

a GCancellable or NULL.

 

callback

a GAsyncReadyCallback to call when the request is satisfied.

 

user_data

user data to pass to callback +.

 
+
+

Since: 1.0

+
+
+
+

qmi_client_dms_get_activation_state_finish ()

+
QmiMessageDmsGetActivationStateOutput *
+qmi_client_dms_get_activation_state_finish
+                               (QmiClientDms *self,
+                                GAsyncResult *res,
+                                GError **error);
+

Finishes an async operation started with qmi_client_dms_get_activation_state().

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiClientDms.

 

res

the GAsyncResult obtained from the GAsyncReadyCallback passed to qmi_client_dms_get_activation_state().

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

a QmiMessageDmsGetActivationStateOutput, or NULL if error +is set. The returned value should be freed with qmi_message_dms_get_activation_state_output_unref().

+
+

Since: 1.0

+
+
+
+

Types and Values

+
+

QmiMessageDmsGetActivationStateOutput

+
typedef struct _QmiMessageDmsGetActivationStateOutput QmiMessageDmsGetActivationStateOutput;
+

The QmiMessageDmsGetActivationStateOutput structure contains private data and should only be accessed +using the provided API.

+

Since: 1.0

+
+
+
+ + + \ No newline at end of file diff -Nru libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-DMS-Get-Alt-Net-Config.html libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-DMS-Get-Alt-Net-Config.html --- libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-DMS-Get-Alt-Net-Config.html 2017-03-22 12:28:29.000000000 +0100 +++ libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-DMS-Get-Alt-Net-Config.html 1970-01-01 01:00:00.000000000 +0100 @@ -1,371 +0,0 @@ - - - - -DMS Get Alt Net Config: libqmi-glib Reference Manual - - - - - - - - - - - - - - - - -
-
-
- - -
-

DMS Get Alt Net Config

-

DMS Get Alt Net Config

-
- -
-

Types and Values

- -
-
-

Object Hierarchy

-
    GBoxed
-    ╰── QmiMessageDmsGetAltNetConfigOutput
-
-
-
-

Description

-
-
-

Functions

-
-

qmi_message_dms_get_alt_net_config_output_ref ()

-
QmiMessageDmsGetAltNetConfigOutput *
-qmi_message_dms_get_alt_net_config_output_ref
-                               (QmiMessageDmsGetAltNetConfigOutput *self);
-

Atomically increments the reference count of self - by one.

-
-

Parameters

-
----- - - - - - -

self

a QmiMessageDmsGetAltNetConfigOutput.

 
-
-
-

Returns

-

the new reference to self -.

-
-

Since: 1.0

-
-
-
-

qmi_message_dms_get_alt_net_config_output_unref ()

-
void
-qmi_message_dms_get_alt_net_config_output_unref
-                               (QmiMessageDmsGetAltNetConfigOutput *self);
-

Atomically decrements the reference count of self - by one. -If the reference count drops to 0, self - is completely disposed.

-
-

Parameters

-
----- - - - - - -

self

a QmiMessageDmsGetAltNetConfigOutput.

 
-
-

Since: 1.0

-
-
-
-

qmi_message_dms_get_alt_net_config_output_get_result ()

-
gboolean
-qmi_message_dms_get_alt_net_config_output_get_result
-                               (QmiMessageDmsGetAltNetConfigOutput *self,
-                                GError **error);
-

Get the result of the QMI operation.

-
-

Parameters

-
----- - - - - - - - - - - - - -

self

a QmiMessageDmsGetAltNetConfigOutput.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the QMI operation succeeded, FALSE if error -is set.

-
-

Since: 1.0

-
-
-
-

qmi_message_dms_get_alt_net_config_output_get_config ()

-
gboolean
-qmi_message_dms_get_alt_net_config_output_get_config
-                               (QmiMessageDmsGetAltNetConfigOutput *self,
-                                gboolean *value_config,
-                                GError **error);
-

Get the 'Config' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessageDmsGetAltNetConfigOutput.

 

value_config

a placeholder for the output gboolean, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.0

-
-
-
-

qmi_client_dms_get_alt_net_config ()

-
void
-qmi_client_dms_get_alt_net_config (QmiClientDms *self,
-                                   gpointer unused,
-                                   guint timeout,
-                                   GCancellable *cancellable,
-                                   GAsyncReadyCallback callback,
-                                   gpointer user_data);
-

Asynchronously sends a Get Alt Net Config request to the device.

-

When the operation is finished, callback - will be invoked in the thread-default main loop of the thread you are calling this method from.

-

You can then call qmi_client_dms_get_alt_net_config_finish() to get the result of the operation.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

self

a QmiClientDms.

 

unused

NULL. This message doesn't have any input bundle.

 

timeout

maximum time to wait for the method to complete, in seconds.

 

cancellable

a GCancellable or NULL.

 

callback

a GAsyncReadyCallback to call when the request is satisfied.

 

user_data

user data to pass to callback -.

 
-
-

Since: 1.0

-
-
-
-

qmi_client_dms_get_alt_net_config_finish ()

-
QmiMessageDmsGetAltNetConfigOutput *
-qmi_client_dms_get_alt_net_config_finish
-                               (QmiClientDms *self,
-                                GAsyncResult *res,
-                                GError **error);
-

Finishes an async operation started with qmi_client_dms_get_alt_net_config().

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiClientDms.

 

res

the GAsyncResult obtained from the GAsyncReadyCallback passed to qmi_client_dms_get_alt_net_config().

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

a QmiMessageDmsGetAltNetConfigOutput, or NULL if error -is set. The returned value should be freed with qmi_message_dms_get_alt_net_config_output_unref().

-
-

Since: 1.0

-
-
-
-

Types and Values

-
-

QmiMessageDmsGetAltNetConfigOutput

-
typedef struct _QmiMessageDmsGetAltNetConfigOutput QmiMessageDmsGetAltNetConfigOutput;
-

The QmiMessageDmsGetAltNetConfigOutput structure contains private data and should only be accessed -using the provided API.

-

Since: 1.0

-
-
-
- - - \ No newline at end of file diff -Nru libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-DMS-Get-Alt-Net-Config-request.html libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-DMS-Get-Alt-Net-Config-request.html --- libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-DMS-Get-Alt-Net-Config-request.html 1970-01-01 01:00:00.000000000 +0100 +++ libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-DMS-Get-Alt-Net-Config-request.html 2019-01-08 15:19:01.000000000 +0100 @@ -0,0 +1,371 @@ + + + + +DMS Get Alt Net Config request: libqmi-glib Reference Manual + + + + + + + + + + + + + + + + +
+
+
+ + +
+

DMS Get Alt Net Config request

+

DMS Get Alt Net Config request

+
+ +
+

Types and Values

+ +
+
+

Object Hierarchy

+
    GBoxed
+    ╰── QmiMessageDmsGetAltNetConfigOutput
+
+
+
+

Description

+
+
+

Functions

+
+

qmi_message_dms_get_alt_net_config_output_ref ()

+
QmiMessageDmsGetAltNetConfigOutput *
+qmi_message_dms_get_alt_net_config_output_ref
+                               (QmiMessageDmsGetAltNetConfigOutput *self);
+

Atomically increments the reference count of self + by one.

+
+

Parameters

+
+++++ + + + + + +

self

a QmiMessageDmsGetAltNetConfigOutput.

 
+
+
+

Returns

+

the new reference to self +.

+
+

Since: 1.0

+
+
+
+

qmi_message_dms_get_alt_net_config_output_unref ()

+
void
+qmi_message_dms_get_alt_net_config_output_unref
+                               (QmiMessageDmsGetAltNetConfigOutput *self);
+

Atomically decrements the reference count of self + by one. +If the reference count drops to 0, self + is completely disposed.

+
+

Parameters

+
+++++ + + + + + +

self

a QmiMessageDmsGetAltNetConfigOutput.

 
+
+

Since: 1.0

+
+
+
+

qmi_message_dms_get_alt_net_config_output_get_result ()

+
gboolean
+qmi_message_dms_get_alt_net_config_output_get_result
+                               (QmiMessageDmsGetAltNetConfigOutput *self,
+                                GError **error);
+

Get the result of the QMI operation.

+
+

Parameters

+
+++++ + + + + + + + + + + + + +

self

a QmiMessageDmsGetAltNetConfigOutput.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the QMI operation succeeded, FALSE if error +is set.

+
+

Since: 1.0

+
+
+
+

qmi_message_dms_get_alt_net_config_output_get_config ()

+
gboolean
+qmi_message_dms_get_alt_net_config_output_get_config
+                               (QmiMessageDmsGetAltNetConfigOutput *self,
+                                gboolean *value_config,
+                                GError **error);
+

Get the 'Config' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageDmsGetAltNetConfigOutput.

 

value_config

a placeholder for the output gboolean, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.0

+
+
+
+

qmi_client_dms_get_alt_net_config ()

+
void
+qmi_client_dms_get_alt_net_config (QmiClientDms *self,
+                                   gpointer unused,
+                                   guint timeout,
+                                   GCancellable *cancellable,
+                                   GAsyncReadyCallback callback,
+                                   gpointer user_data);
+

Asynchronously sends a Get Alt Net Config request to the device.

+

When the operation is finished, callback + will be invoked in the thread-default main loop of the thread you are calling this method from.

+

You can then call qmi_client_dms_get_alt_net_config_finish() to get the result of the operation.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

self

a QmiClientDms.

 

unused

NULL. This message doesn't have any input bundle.

 

timeout

maximum time to wait for the method to complete, in seconds.

 

cancellable

a GCancellable or NULL.

 

callback

a GAsyncReadyCallback to call when the request is satisfied.

 

user_data

user data to pass to callback +.

 
+
+

Since: 1.0

+
+
+
+

qmi_client_dms_get_alt_net_config_finish ()

+
QmiMessageDmsGetAltNetConfigOutput *
+qmi_client_dms_get_alt_net_config_finish
+                               (QmiClientDms *self,
+                                GAsyncResult *res,
+                                GError **error);
+

Finishes an async operation started with qmi_client_dms_get_alt_net_config().

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiClientDms.

 

res

the GAsyncResult obtained from the GAsyncReadyCallback passed to qmi_client_dms_get_alt_net_config().

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

a QmiMessageDmsGetAltNetConfigOutput, or NULL if error +is set. The returned value should be freed with qmi_message_dms_get_alt_net_config_output_unref().

+
+

Since: 1.0

+
+
+
+

Types and Values

+
+

QmiMessageDmsGetAltNetConfigOutput

+
typedef struct _QmiMessageDmsGetAltNetConfigOutput QmiMessageDmsGetAltNetConfigOutput;
+

The QmiMessageDmsGetAltNetConfigOutput structure contains private data and should only be accessed +using the provided API.

+

Since: 1.0

+
+
+
+ + + \ No newline at end of file diff -Nru libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-DMS-Get-Band-Capabilities.html libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-DMS-Get-Band-Capabilities.html --- libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-DMS-Get-Band-Capabilities.html 2017-03-22 12:28:29.000000000 +0100 +++ libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-DMS-Get-Band-Capabilities.html 1970-01-01 01:00:00.000000000 +0100 @@ -1,422 +0,0 @@ - - - - -DMS Get Band Capabilities: libqmi-glib Reference Manual - - - - - - - - - - - - - - - - -
-
-
- - -
-

DMS Get Band Capabilities

-

DMS Get Band Capabilities

-
- -
-

Types and Values

- -
-
-

Object Hierarchy

-
    GBoxed
-    ╰── QmiMessageDmsGetBandCapabilitiesOutput
-
-
-
-

Description

-
-
-

Functions

-
-

qmi_message_dms_get_band_capabilities_output_ref ()

-
QmiMessageDmsGetBandCapabilitiesOutput *
-qmi_message_dms_get_band_capabilities_output_ref
-                               (QmiMessageDmsGetBandCapabilitiesOutput *self);
-

Atomically increments the reference count of self - by one.

-
-

Parameters

-
----- - - - - - -

self

a QmiMessageDmsGetBandCapabilitiesOutput.

 
-
-
-

Returns

-

the new reference to self -.

-
-

Since: 1.0

-
-
-
-

qmi_message_dms_get_band_capabilities_output_unref ()

-
void
-qmi_message_dms_get_band_capabilities_output_unref
-                               (QmiMessageDmsGetBandCapabilitiesOutput *self);
-

Atomically decrements the reference count of self - by one. -If the reference count drops to 0, self - is completely disposed.

-
-

Parameters

-
----- - - - - - -

self

a QmiMessageDmsGetBandCapabilitiesOutput.

 
-
-

Since: 1.0

-
-
-
-

qmi_message_dms_get_band_capabilities_output_get_result ()

-
gboolean
-qmi_message_dms_get_band_capabilities_output_get_result
-                               (QmiMessageDmsGetBandCapabilitiesOutput *self,
-                                GError **error);
-

Get the result of the QMI operation.

-
-

Parameters

-
----- - - - - - - - - - - - - -

self

a QmiMessageDmsGetBandCapabilitiesOutput.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the QMI operation succeeded, FALSE if error -is set.

-
-

Since: 1.0

-
-
-
-

qmi_message_dms_get_band_capabilities_output_get_band_capability ()

-
gboolean
-qmi_message_dms_get_band_capabilities_output_get_band_capability
-                               (QmiMessageDmsGetBandCapabilitiesOutput *self,
-                                QmiDmsBandCapability *value_band_capability,
-                                GError **error);
-

Get the 'Band Capability' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessageDmsGetBandCapabilitiesOutput.

 

value_band_capability

a placeholder for the output QmiDmsBandCapability, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.0

-
-
-
-

qmi_message_dms_get_band_capabilities_output_get_lte_band_capability ()

-
gboolean
-qmi_message_dms_get_band_capabilities_output_get_lte_band_capability
-                               (QmiMessageDmsGetBandCapabilitiesOutput *self,
-                                QmiDmsLteBandCapability *value_lte_band_capability,
-                                GError **error);
-

Get the 'LTE Band Capability' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessageDmsGetBandCapabilitiesOutput.

 

value_lte_band_capability

a placeholder for the output QmiDmsLteBandCapability, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.0

-
-
-
-

qmi_client_dms_get_band_capabilities ()

-
void
-qmi_client_dms_get_band_capabilities (QmiClientDms *self,
-                                      gpointer unused,
-                                      guint timeout,
-                                      GCancellable *cancellable,
-                                      GAsyncReadyCallback callback,
-                                      gpointer user_data);
-

Asynchronously sends a Get Band Capabilities request to the device.

-

When the operation is finished, callback - will be invoked in the thread-default main loop of the thread you are calling this method from.

-

You can then call qmi_client_dms_get_band_capabilities_finish() to get the result of the operation.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

self

a QmiClientDms.

 

unused

NULL. This message doesn't have any input bundle.

 

timeout

maximum time to wait for the method to complete, in seconds.

 

cancellable

a GCancellable or NULL.

 

callback

a GAsyncReadyCallback to call when the request is satisfied.

 

user_data

user data to pass to callback -.

 
-
-

Since: 1.0

-
-
-
-

qmi_client_dms_get_band_capabilities_finish ()

-
QmiMessageDmsGetBandCapabilitiesOutput *
-qmi_client_dms_get_band_capabilities_finish
-                               (QmiClientDms *self,
-                                GAsyncResult *res,
-                                GError **error);
-

Finishes an async operation started with qmi_client_dms_get_band_capabilities().

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiClientDms.

 

res

the GAsyncResult obtained from the GAsyncReadyCallback passed to qmi_client_dms_get_band_capabilities().

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

a QmiMessageDmsGetBandCapabilitiesOutput, or NULL if error -is set. The returned value should be freed with qmi_message_dms_get_band_capabilities_output_unref().

-
-

Since: 1.0

-
-
-
-

Types and Values

-
-

QmiMessageDmsGetBandCapabilitiesOutput

-
typedef struct _QmiMessageDmsGetBandCapabilitiesOutput QmiMessageDmsGetBandCapabilitiesOutput;
-

The QmiMessageDmsGetBandCapabilitiesOutput structure contains private data and should only be accessed -using the provided API.

-

Since: 1.0

-
-
-
- - - \ No newline at end of file diff -Nru libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-DMS-Get-Band-Capabilities-request.html libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-DMS-Get-Band-Capabilities-request.html --- libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-DMS-Get-Band-Capabilities-request.html 1970-01-01 01:00:00.000000000 +0100 +++ libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-DMS-Get-Band-Capabilities-request.html 2019-01-08 15:19:01.000000000 +0100 @@ -0,0 +1,474 @@ + + + + +DMS Get Band Capabilities request: libqmi-glib Reference Manual + + + + + + + + + + + + + + + + +
+
+
+ + +
+

DMS Get Band Capabilities request

+

DMS Get Band Capabilities request

+
+ +
+

Types and Values

+ +
+
+

Object Hierarchy

+
    GBoxed
+    ╰── QmiMessageDmsGetBandCapabilitiesOutput
+
+
+
+

Description

+
+
+

Functions

+
+

qmi_message_dms_get_band_capabilities_output_ref ()

+
QmiMessageDmsGetBandCapabilitiesOutput *
+qmi_message_dms_get_band_capabilities_output_ref
+                               (QmiMessageDmsGetBandCapabilitiesOutput *self);
+

Atomically increments the reference count of self + by one.

+
+

Parameters

+
+++++ + + + + + +

self

a QmiMessageDmsGetBandCapabilitiesOutput.

 
+
+
+

Returns

+

the new reference to self +.

+
+

Since: 1.0

+
+
+
+

qmi_message_dms_get_band_capabilities_output_unref ()

+
void
+qmi_message_dms_get_band_capabilities_output_unref
+                               (QmiMessageDmsGetBandCapabilitiesOutput *self);
+

Atomically decrements the reference count of self + by one. +If the reference count drops to 0, self + is completely disposed.

+
+

Parameters

+
+++++ + + + + + +

self

a QmiMessageDmsGetBandCapabilitiesOutput.

 
+
+

Since: 1.0

+
+
+
+

qmi_message_dms_get_band_capabilities_output_get_result ()

+
gboolean
+qmi_message_dms_get_band_capabilities_output_get_result
+                               (QmiMessageDmsGetBandCapabilitiesOutput *self,
+                                GError **error);
+

Get the result of the QMI operation.

+
+

Parameters

+
+++++ + + + + + + + + + + + + +

self

a QmiMessageDmsGetBandCapabilitiesOutput.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the QMI operation succeeded, FALSE if error +is set.

+
+

Since: 1.0

+
+
+
+

qmi_message_dms_get_band_capabilities_output_get_band_capability ()

+
gboolean
+qmi_message_dms_get_band_capabilities_output_get_band_capability
+                               (QmiMessageDmsGetBandCapabilitiesOutput *self,
+                                QmiDmsBandCapability *value_band_capability,
+                                GError **error);
+

Get the 'Band Capability' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageDmsGetBandCapabilitiesOutput.

 

value_band_capability

a placeholder for the output QmiDmsBandCapability, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.0

+
+
+
+

qmi_message_dms_get_band_capabilities_output_get_lte_band_capability ()

+
gboolean
+qmi_message_dms_get_band_capabilities_output_get_lte_band_capability
+                               (QmiMessageDmsGetBandCapabilitiesOutput *self,
+                                QmiDmsLteBandCapability *value_lte_band_capability,
+                                GError **error);
+

Get the 'LTE Band Capability' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageDmsGetBandCapabilitiesOutput.

 

value_lte_band_capability

a placeholder for the output QmiDmsLteBandCapability, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.0

+
+
+
+

qmi_message_dms_get_band_capabilities_output_get_extended_lte_band_capability ()

+
gboolean
+qmi_message_dms_get_band_capabilities_output_get_extended_lte_band_capability
+                               (QmiMessageDmsGetBandCapabilitiesOutput *self,
+                                GArray **value_extended_lte_band_capability,
+                                GError **error);
+

Get the 'Extended LTE Band Capability' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageDmsGetBandCapabilitiesOutput.

 

value_extended_lte_band_capability

a placeholder for the output GArray of guint16 elements, or NULL if not required. Do not free it, it is owned by self +.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.20

+
+
+
+

qmi_client_dms_get_band_capabilities ()

+
void
+qmi_client_dms_get_band_capabilities (QmiClientDms *self,
+                                      gpointer unused,
+                                      guint timeout,
+                                      GCancellable *cancellable,
+                                      GAsyncReadyCallback callback,
+                                      gpointer user_data);
+

Asynchronously sends a Get Band Capabilities request to the device.

+

When the operation is finished, callback + will be invoked in the thread-default main loop of the thread you are calling this method from.

+

You can then call qmi_client_dms_get_band_capabilities_finish() to get the result of the operation.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

self

a QmiClientDms.

 

unused

NULL. This message doesn't have any input bundle.

 

timeout

maximum time to wait for the method to complete, in seconds.

 

cancellable

a GCancellable or NULL.

 

callback

a GAsyncReadyCallback to call when the request is satisfied.

 

user_data

user data to pass to callback +.

 
+
+

Since: 1.0

+
+
+
+

qmi_client_dms_get_band_capabilities_finish ()

+
QmiMessageDmsGetBandCapabilitiesOutput *
+qmi_client_dms_get_band_capabilities_finish
+                               (QmiClientDms *self,
+                                GAsyncResult *res,
+                                GError **error);
+

Finishes an async operation started with qmi_client_dms_get_band_capabilities().

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiClientDms.

 

res

the GAsyncResult obtained from the GAsyncReadyCallback passed to qmi_client_dms_get_band_capabilities().

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

a QmiMessageDmsGetBandCapabilitiesOutput, or NULL if error +is set. The returned value should be freed with qmi_message_dms_get_band_capabilities_output_unref().

+
+

Since: 1.0

+
+
+
+

Types and Values

+
+

QmiMessageDmsGetBandCapabilitiesOutput

+
typedef struct _QmiMessageDmsGetBandCapabilitiesOutput QmiMessageDmsGetBandCapabilitiesOutput;
+

The QmiMessageDmsGetBandCapabilitiesOutput structure contains private data and should only be accessed +using the provided API.

+

Since: 1.0

+
+
+
+ + + \ No newline at end of file diff -Nru libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-DMS-Get-Boot-Image-Download-Mode.html libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-DMS-Get-Boot-Image-Download-Mode.html --- libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-DMS-Get-Boot-Image-Download-Mode.html 2017-03-22 12:28:28.000000000 +0100 +++ libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-DMS-Get-Boot-Image-Download-Mode.html 1970-01-01 01:00:00.000000000 +0100 @@ -1,372 +0,0 @@ - - - - -DMS Get Boot Image Download Mode: libqmi-glib Reference Manual - - - - - - - - - - - - - - - - -
-
-
- - -
-

DMS Get Boot Image Download Mode

-

DMS Get Boot Image Download Mode

-
- -
-

Types and Values

- -
-
-

Object Hierarchy

-
    GBoxed
-    ╰── QmiMessageDmsGetBootImageDownloadModeOutput
-
-
-
-

Description

-
-
-

Functions

-
-

qmi_message_dms_get_boot_image_download_mode_output_ref ()

-
QmiMessageDmsGetBootImageDownloadModeOutput *
-qmi_message_dms_get_boot_image_download_mode_output_ref
-                               (QmiMessageDmsGetBootImageDownloadModeOutput *self);
-

Atomically increments the reference count of self - by one.

-
-

Parameters

- -
-
-

Returns

-

the new reference to self -.

-
-

Since: 1.18

-
-
-
-

qmi_message_dms_get_boot_image_download_mode_output_unref ()

-
void
-qmi_message_dms_get_boot_image_download_mode_output_unref
-                               (QmiMessageDmsGetBootImageDownloadModeOutput *self);
-

Atomically decrements the reference count of self - by one. -If the reference count drops to 0, self - is completely disposed.

-
-

Parameters

- -
-

Since: 1.18

-
-
-
-

qmi_message_dms_get_boot_image_download_mode_output_get_result ()

-
gboolean
-qmi_message_dms_get_boot_image_download_mode_output_get_result
-                               (QmiMessageDmsGetBootImageDownloadModeOutput *self,
-                                GError **error);
-

Get the result of the QMI operation.

-
-

Parameters

-
----- - - - - - - - - - - - - -

self

a QmiMessageDmsGetBootImageDownloadModeOutput.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the QMI operation succeeded, FALSE if error -is set.

-
-

Since: 1.18

-
-
-
-

qmi_message_dms_get_boot_image_download_mode_output_get_mode ()

-
gboolean
-qmi_message_dms_get_boot_image_download_mode_output_get_mode
-                               (QmiMessageDmsGetBootImageDownloadModeOutput *self,
-                                QmiDmsBootImageDownloadMode *value_mode,
-                                GError **error);
-

Get the 'Mode' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessageDmsGetBootImageDownloadModeOutput.

 

value_mode

a placeholder for the output QmiDmsBootImageDownloadMode, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.18

-
-
-
-

qmi_client_dms_get_boot_image_download_mode ()

-
void
-qmi_client_dms_get_boot_image_download_mode
-                               (QmiClientDms *self,
-                                gpointer unused,
-                                guint timeout,
-                                GCancellable *cancellable,
-                                GAsyncReadyCallback callback,
-                                gpointer user_data);
-

Asynchronously sends a Get Boot Image Download Mode request to the device.

-

When the operation is finished, callback - will be invoked in the thread-default main loop of the thread you are calling this method from.

-

You can then call qmi_client_dms_get_boot_image_download_mode_finish() to get the result of the operation.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

self

a QmiClientDms.

 

unused

NULL. This message doesn't have any input bundle.

 

timeout

maximum time to wait for the method to complete, in seconds.

 

cancellable

a GCancellable or NULL.

 

callback

a GAsyncReadyCallback to call when the request is satisfied.

 

user_data

user data to pass to callback -.

 
-
-

Since: 1.18

-
-
-
-

qmi_client_dms_get_boot_image_download_mode_finish ()

-
QmiMessageDmsGetBootImageDownloadModeOutput *
-qmi_client_dms_get_boot_image_download_mode_finish
-                               (QmiClientDms *self,
-                                GAsyncResult *res,
-                                GError **error);
-

Finishes an async operation started with qmi_client_dms_get_boot_image_download_mode().

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiClientDms.

 

res

the GAsyncResult obtained from the GAsyncReadyCallback passed to qmi_client_dms_get_boot_image_download_mode().

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

a QmiMessageDmsGetBootImageDownloadModeOutput, or NULL if error -is set. The returned value should be freed with qmi_message_dms_get_boot_image_download_mode_output_unref().

-
-

Since: 1.18

-
-
-
-

Types and Values

-
-

QmiMessageDmsGetBootImageDownloadModeOutput

-
typedef struct _QmiMessageDmsGetBootImageDownloadModeOutput QmiMessageDmsGetBootImageDownloadModeOutput;
-

The QmiMessageDmsGetBootImageDownloadModeOutput structure contains private data and should only be accessed -using the provided API.

-

Since: 1.18

-
-
-
- - - \ No newline at end of file diff -Nru libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-DMS-Get-Boot-Image-Download-Mode-request.html libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-DMS-Get-Boot-Image-Download-Mode-request.html --- libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-DMS-Get-Boot-Image-Download-Mode-request.html 1970-01-01 01:00:00.000000000 +0100 +++ libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-DMS-Get-Boot-Image-Download-Mode-request.html 2019-01-08 15:19:01.000000000 +0100 @@ -0,0 +1,372 @@ + + + + +DMS Get Boot Image Download Mode request: libqmi-glib Reference Manual + + + + + + + + + + + + + + + + +
+
+
+ + +
+

DMS Get Boot Image Download Mode request

+

DMS Get Boot Image Download Mode request

+
+ +
+

Types and Values

+ +
+
+

Object Hierarchy

+
    GBoxed
+    ╰── QmiMessageDmsGetBootImageDownloadModeOutput
+
+
+
+

Description

+
+
+

Functions

+
+

qmi_message_dms_get_boot_image_download_mode_output_ref ()

+
QmiMessageDmsGetBootImageDownloadModeOutput *
+qmi_message_dms_get_boot_image_download_mode_output_ref
+                               (QmiMessageDmsGetBootImageDownloadModeOutput *self);
+

Atomically increments the reference count of self + by one.

+
+

Parameters

+ +
+
+

Returns

+

the new reference to self +.

+
+

Since: 1.18

+
+
+
+

qmi_message_dms_get_boot_image_download_mode_output_unref ()

+
void
+qmi_message_dms_get_boot_image_download_mode_output_unref
+                               (QmiMessageDmsGetBootImageDownloadModeOutput *self);
+

Atomically decrements the reference count of self + by one. +If the reference count drops to 0, self + is completely disposed.

+
+

Parameters

+ +
+

Since: 1.18

+
+
+
+

qmi_message_dms_get_boot_image_download_mode_output_get_result ()

+
gboolean
+qmi_message_dms_get_boot_image_download_mode_output_get_result
+                               (QmiMessageDmsGetBootImageDownloadModeOutput *self,
+                                GError **error);
+

Get the result of the QMI operation.

+
+

Parameters

+
+++++ + + + + + + + + + + + + +

self

a QmiMessageDmsGetBootImageDownloadModeOutput.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the QMI operation succeeded, FALSE if error +is set.

+
+

Since: 1.18

+
+
+
+

qmi_message_dms_get_boot_image_download_mode_output_get_mode ()

+
gboolean
+qmi_message_dms_get_boot_image_download_mode_output_get_mode
+                               (QmiMessageDmsGetBootImageDownloadModeOutput *self,
+                                QmiDmsBootImageDownloadMode *value_mode,
+                                GError **error);
+

Get the 'Mode' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageDmsGetBootImageDownloadModeOutput.

 

value_mode

a placeholder for the output QmiDmsBootImageDownloadMode, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.18

+
+
+
+

qmi_client_dms_get_boot_image_download_mode ()

+
void
+qmi_client_dms_get_boot_image_download_mode
+                               (QmiClientDms *self,
+                                gpointer unused,
+                                guint timeout,
+                                GCancellable *cancellable,
+                                GAsyncReadyCallback callback,
+                                gpointer user_data);
+

Asynchronously sends a Get Boot Image Download Mode request to the device.

+

When the operation is finished, callback + will be invoked in the thread-default main loop of the thread you are calling this method from.

+

You can then call qmi_client_dms_get_boot_image_download_mode_finish() to get the result of the operation.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

self

a QmiClientDms.

 

unused

NULL. This message doesn't have any input bundle.

 

timeout

maximum time to wait for the method to complete, in seconds.

 

cancellable

a GCancellable or NULL.

 

callback

a GAsyncReadyCallback to call when the request is satisfied.

 

user_data

user data to pass to callback +.

 
+
+

Since: 1.18

+
+
+
+

qmi_client_dms_get_boot_image_download_mode_finish ()

+
QmiMessageDmsGetBootImageDownloadModeOutput *
+qmi_client_dms_get_boot_image_download_mode_finish
+                               (QmiClientDms *self,
+                                GAsyncResult *res,
+                                GError **error);
+

Finishes an async operation started with qmi_client_dms_get_boot_image_download_mode().

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiClientDms.

 

res

the GAsyncResult obtained from the GAsyncReadyCallback passed to qmi_client_dms_get_boot_image_download_mode().

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

a QmiMessageDmsGetBootImageDownloadModeOutput, or NULL if error +is set. The returned value should be freed with qmi_message_dms_get_boot_image_download_mode_output_unref().

+
+

Since: 1.18

+
+
+
+

Types and Values

+
+

QmiMessageDmsGetBootImageDownloadModeOutput

+
typedef struct _QmiMessageDmsGetBootImageDownloadModeOutput QmiMessageDmsGetBootImageDownloadModeOutput;
+

The QmiMessageDmsGetBootImageDownloadModeOutput structure contains private data and should only be accessed +using the provided API.

+

Since: 1.18

+
+
+
+ + + \ No newline at end of file diff -Nru libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-DMS-Get-Capabilities.html libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-DMS-Get-Capabilities.html --- libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-DMS-Get-Capabilities.html 2017-03-22 12:28:29.000000000 +0100 +++ libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-DMS-Get-Capabilities.html 1970-01-01 01:00:00.000000000 +0100 @@ -1,396 +0,0 @@ - - - - -DMS Get Capabilities: libqmi-glib Reference Manual - - - - - - - - - - - - - - - - -
-
-
- - -
-

DMS Get Capabilities

-

DMS Get Capabilities

-
- -
-

Types and Values

- -
-
-

Object Hierarchy

-
    GBoxed
-    ╰── QmiMessageDmsGetCapabilitiesOutput
-
-
-
-

Description

-
-
-

Functions

-
-

qmi_message_dms_get_capabilities_output_ref ()

-
QmiMessageDmsGetCapabilitiesOutput *
-qmi_message_dms_get_capabilities_output_ref
-                               (QmiMessageDmsGetCapabilitiesOutput *self);
-

Atomically increments the reference count of self - by one.

-
-

Parameters

-
----- - - - - - -

self

a QmiMessageDmsGetCapabilitiesOutput.

 
-
-
-

Returns

-

the new reference to self -.

-
-

Since: 1.0

-
-
-
-

qmi_message_dms_get_capabilities_output_unref ()

-
void
-qmi_message_dms_get_capabilities_output_unref
-                               (QmiMessageDmsGetCapabilitiesOutput *self);
-

Atomically decrements the reference count of self - by one. -If the reference count drops to 0, self - is completely disposed.

-
-

Parameters

-
----- - - - - - -

self

a QmiMessageDmsGetCapabilitiesOutput.

 
-
-

Since: 1.0

-
-
-
-

qmi_message_dms_get_capabilities_output_get_result ()

-
gboolean
-qmi_message_dms_get_capabilities_output_get_result
-                               (QmiMessageDmsGetCapabilitiesOutput *self,
-                                GError **error);
-

Get the result of the QMI operation.

-
-

Parameters

-
----- - - - - - - - - - - - - -

self

a QmiMessageDmsGetCapabilitiesOutput.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the QMI operation succeeded, FALSE if error -is set.

-
-

Since: 1.0

-
-
-
-

qmi_message_dms_get_capabilities_output_get_info ()

-
gboolean
-qmi_message_dms_get_capabilities_output_get_info
-                               (QmiMessageDmsGetCapabilitiesOutput *self,
-                                guint32 *value_info_max_tx_channel_rate,
-                                guint32 *value_info_max_rx_channel_rate,
-                                QmiDmsDataServiceCapability *value_info_data_service_capability,
-                                QmiDmsSimCapability *value_info_sim_capability,
-                                GArray **value_info_radio_interface_list,
-                                GError **error);
-

Get the 'Info' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

self

a QmiMessageDmsGetCapabilitiesOutput.

 

value_info_max_tx_channel_rate

a placeholder for the output guint32, or NULL if not required.

 

value_info_max_rx_channel_rate

a placeholder for the output guint32, or NULL if not required.

 

value_info_data_service_capability

a placeholder for the output QmiDmsDataServiceCapability, or NULL if not required.

 

value_info_sim_capability

a placeholder for the output QmiDmsSimCapability, or NULL if not required.

 

value_info_radio_interface_list

a placeholder for the output GArray of QmiDmsRadioInterface elements, or NULL if not required. Do not free it, it is owned by self -.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.0

-
-
-
-

qmi_client_dms_get_capabilities ()

-
void
-qmi_client_dms_get_capabilities (QmiClientDms *self,
-                                 gpointer unused,
-                                 guint timeout,
-                                 GCancellable *cancellable,
-                                 GAsyncReadyCallback callback,
-                                 gpointer user_data);
-

Asynchronously sends a Get Capabilities request to the device.

-

When the operation is finished, callback - will be invoked in the thread-default main loop of the thread you are calling this method from.

-

You can then call qmi_client_dms_get_capabilities_finish() to get the result of the operation.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

self

a QmiClientDms.

 

unused

NULL. This message doesn't have any input bundle.

 

timeout

maximum time to wait for the method to complete, in seconds.

 

cancellable

a GCancellable or NULL.

 

callback

a GAsyncReadyCallback to call when the request is satisfied.

 

user_data

user data to pass to callback -.

 
-
-

Since: 1.0

-
-
-
-

qmi_client_dms_get_capabilities_finish ()

-
QmiMessageDmsGetCapabilitiesOutput *
-qmi_client_dms_get_capabilities_finish
-                               (QmiClientDms *self,
-                                GAsyncResult *res,
-                                GError **error);
-

Finishes an async operation started with qmi_client_dms_get_capabilities().

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiClientDms.

 

res

the GAsyncResult obtained from the GAsyncReadyCallback passed to qmi_client_dms_get_capabilities().

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

a QmiMessageDmsGetCapabilitiesOutput, or NULL if error -is set. The returned value should be freed with qmi_message_dms_get_capabilities_output_unref().

-
-

Since: 1.0

-
-
-
-

Types and Values

-
-

QmiMessageDmsGetCapabilitiesOutput

-
typedef struct _QmiMessageDmsGetCapabilitiesOutput QmiMessageDmsGetCapabilitiesOutput;
-

The QmiMessageDmsGetCapabilitiesOutput structure contains private data and should only be accessed -using the provided API.

-

Since: 1.0

-
-
-
- - - \ No newline at end of file diff -Nru libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-DMS-Get-Capabilities-request.html libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-DMS-Get-Capabilities-request.html --- libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-DMS-Get-Capabilities-request.html 1970-01-01 01:00:00.000000000 +0100 +++ libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-DMS-Get-Capabilities-request.html 2019-01-08 15:19:01.000000000 +0100 @@ -0,0 +1,396 @@ + + + + +DMS Get Capabilities request: libqmi-glib Reference Manual + + + + + + + + + + + + + + + + +
+
+
+ + +
+

DMS Get Capabilities request

+

DMS Get Capabilities request

+
+ +
+

Types and Values

+ +
+
+

Object Hierarchy

+
    GBoxed
+    ╰── QmiMessageDmsGetCapabilitiesOutput
+
+
+
+

Description

+
+
+

Functions

+
+

qmi_message_dms_get_capabilities_output_ref ()

+
QmiMessageDmsGetCapabilitiesOutput *
+qmi_message_dms_get_capabilities_output_ref
+                               (QmiMessageDmsGetCapabilitiesOutput *self);
+

Atomically increments the reference count of self + by one.

+
+

Parameters

+
+++++ + + + + + +

self

a QmiMessageDmsGetCapabilitiesOutput.

 
+
+
+

Returns

+

the new reference to self +.

+
+

Since: 1.0

+
+
+
+

qmi_message_dms_get_capabilities_output_unref ()

+
void
+qmi_message_dms_get_capabilities_output_unref
+                               (QmiMessageDmsGetCapabilitiesOutput *self);
+

Atomically decrements the reference count of self + by one. +If the reference count drops to 0, self + is completely disposed.

+
+

Parameters

+
+++++ + + + + + +

self

a QmiMessageDmsGetCapabilitiesOutput.

 
+
+

Since: 1.0

+
+
+
+

qmi_message_dms_get_capabilities_output_get_result ()

+
gboolean
+qmi_message_dms_get_capabilities_output_get_result
+                               (QmiMessageDmsGetCapabilitiesOutput *self,
+                                GError **error);
+

Get the result of the QMI operation.

+
+

Parameters

+
+++++ + + + + + + + + + + + + +

self

a QmiMessageDmsGetCapabilitiesOutput.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the QMI operation succeeded, FALSE if error +is set.

+
+

Since: 1.0

+
+
+
+

qmi_message_dms_get_capabilities_output_get_info ()

+
gboolean
+qmi_message_dms_get_capabilities_output_get_info
+                               (QmiMessageDmsGetCapabilitiesOutput *self,
+                                guint32 *value_info_max_tx_channel_rate,
+                                guint32 *value_info_max_rx_channel_rate,
+                                QmiDmsDataServiceCapability *value_info_data_service_capability,
+                                QmiDmsSimCapability *value_info_sim_capability,
+                                GArray **value_info_radio_interface_list,
+                                GError **error);
+

Get the 'Info' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

self

a QmiMessageDmsGetCapabilitiesOutput.

 

value_info_max_tx_channel_rate

a placeholder for the output guint32, or NULL if not required.

 

value_info_max_rx_channel_rate

a placeholder for the output guint32, or NULL if not required.

 

value_info_data_service_capability

a placeholder for the output QmiDmsDataServiceCapability, or NULL if not required.

 

value_info_sim_capability

a placeholder for the output QmiDmsSimCapability, or NULL if not required.

 

value_info_radio_interface_list

a placeholder for the output GArray of QmiDmsRadioInterface elements, or NULL if not required. Do not free it, it is owned by self +.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.0

+
+
+
+

qmi_client_dms_get_capabilities ()

+
void
+qmi_client_dms_get_capabilities (QmiClientDms *self,
+                                 gpointer unused,
+                                 guint timeout,
+                                 GCancellable *cancellable,
+                                 GAsyncReadyCallback callback,
+                                 gpointer user_data);
+

Asynchronously sends a Get Capabilities request to the device.

+

When the operation is finished, callback + will be invoked in the thread-default main loop of the thread you are calling this method from.

+

You can then call qmi_client_dms_get_capabilities_finish() to get the result of the operation.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

self

a QmiClientDms.

 

unused

NULL. This message doesn't have any input bundle.

 

timeout

maximum time to wait for the method to complete, in seconds.

 

cancellable

a GCancellable or NULL.

 

callback

a GAsyncReadyCallback to call when the request is satisfied.

 

user_data

user data to pass to callback +.

 
+
+

Since: 1.0

+
+
+
+

qmi_client_dms_get_capabilities_finish ()

+
QmiMessageDmsGetCapabilitiesOutput *
+qmi_client_dms_get_capabilities_finish
+                               (QmiClientDms *self,
+                                GAsyncResult *res,
+                                GError **error);
+

Finishes an async operation started with qmi_client_dms_get_capabilities().

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiClientDms.

 

res

the GAsyncResult obtained from the GAsyncReadyCallback passed to qmi_client_dms_get_capabilities().

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

a QmiMessageDmsGetCapabilitiesOutput, or NULL if error +is set. The returned value should be freed with qmi_message_dms_get_capabilities_output_unref().

+
+

Since: 1.0

+
+
+
+

Types and Values

+
+

QmiMessageDmsGetCapabilitiesOutput

+
typedef struct _QmiMessageDmsGetCapabilitiesOutput QmiMessageDmsGetCapabilitiesOutput;
+

The QmiMessageDmsGetCapabilitiesOutput structure contains private data and should only be accessed +using the provided API.

+

Since: 1.0

+
+
+
+ + + \ No newline at end of file diff -Nru libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-DMS-Get-Factory-SKU.html libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-DMS-Get-Factory-SKU.html --- libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-DMS-Get-Factory-SKU.html 2017-03-22 12:28:29.000000000 +0100 +++ libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-DMS-Get-Factory-SKU.html 1970-01-01 01:00:00.000000000 +0100 @@ -1,370 +0,0 @@ - - - - -DMS Get Factory SKU: libqmi-glib Reference Manual - - - - - - - - - - - - - - - - -
-
-
- - -
-

DMS Get Factory SKU

-

DMS Get Factory SKU

-
- -
-

Types and Values

- -
-
-

Object Hierarchy

-
    GBoxed
-    ╰── QmiMessageDmsGetFactorySkuOutput
-
-
-
-

Description

-
-
-

Functions

-
-

qmi_message_dms_get_factory_sku_output_ref ()

-
QmiMessageDmsGetFactorySkuOutput *
-qmi_message_dms_get_factory_sku_output_ref
-                               (QmiMessageDmsGetFactorySkuOutput *self);
-

Atomically increments the reference count of self - by one.

-
-

Parameters

-
----- - - - - - -

self

a QmiMessageDmsGetFactorySkuOutput.

 
-
-
-

Returns

-

the new reference to self -.

-
-

Since: 1.0

-
-
-
-

qmi_message_dms_get_factory_sku_output_unref ()

-
void
-qmi_message_dms_get_factory_sku_output_unref
-                               (QmiMessageDmsGetFactorySkuOutput *self);
-

Atomically decrements the reference count of self - by one. -If the reference count drops to 0, self - is completely disposed.

-
-

Parameters

-
----- - - - - - -

self

a QmiMessageDmsGetFactorySkuOutput.

 
-
-

Since: 1.0

-
-
-
-

qmi_message_dms_get_factory_sku_output_get_result ()

-
gboolean
-qmi_message_dms_get_factory_sku_output_get_result
-                               (QmiMessageDmsGetFactorySkuOutput *self,
-                                GError **error);
-

Get the result of the QMI operation.

-
-

Parameters

-
----- - - - - - - - - - - - - -

self

a QmiMessageDmsGetFactorySkuOutput.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the QMI operation succeeded, FALSE if error -is set.

-
-

Since: 1.0

-
-
-
-

qmi_message_dms_get_factory_sku_output_get_sku ()

-
gboolean
-qmi_message_dms_get_factory_sku_output_get_sku
-                               (QmiMessageDmsGetFactorySkuOutput *self,
-                                const gchar **value_sku,
-                                GError **error);
-

Get the 'SKU' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessageDmsGetFactorySkuOutput.

 

value_sku

a placeholder for the output constant string, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.0

-
-
-
-

qmi_client_dms_get_factory_sku ()

-
void
-qmi_client_dms_get_factory_sku (QmiClientDms *self,
-                                gpointer unused,
-                                guint timeout,
-                                GCancellable *cancellable,
-                                GAsyncReadyCallback callback,
-                                gpointer user_data);
-

Asynchronously sends a Get Factory SKU request to the device.

-

When the operation is finished, callback - will be invoked in the thread-default main loop of the thread you are calling this method from.

-

You can then call qmi_client_dms_get_factory_sku_finish() to get the result of the operation.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

self

a QmiClientDms.

 

unused

NULL. This message doesn't have any input bundle.

 

timeout

maximum time to wait for the method to complete, in seconds.

 

cancellable

a GCancellable or NULL.

 

callback

a GAsyncReadyCallback to call when the request is satisfied.

 

user_data

user data to pass to callback -.

 
-
-

Since: 1.0

-
-
-
-

qmi_client_dms_get_factory_sku_finish ()

-
QmiMessageDmsGetFactorySkuOutput *
-qmi_client_dms_get_factory_sku_finish (QmiClientDms *self,
-                                       GAsyncResult *res,
-                                       GError **error);
-

Finishes an async operation started with qmi_client_dms_get_factory_sku().

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiClientDms.

 

res

the GAsyncResult obtained from the GAsyncReadyCallback passed to qmi_client_dms_get_factory_sku().

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

a QmiMessageDmsGetFactorySkuOutput, or NULL if error -is set. The returned value should be freed with qmi_message_dms_get_factory_sku_output_unref().

-
-

Since: 1.0

-
-
-
-

Types and Values

-
-

QmiMessageDmsGetFactorySkuOutput

-
typedef struct _QmiMessageDmsGetFactorySkuOutput QmiMessageDmsGetFactorySkuOutput;
-

The QmiMessageDmsGetFactorySkuOutput structure contains private data and should only be accessed -using the provided API.

-

Since: 1.0

-
-
-
- - - \ No newline at end of file diff -Nru libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-DMS-Get-Factory-SKU-request.html libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-DMS-Get-Factory-SKU-request.html --- libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-DMS-Get-Factory-SKU-request.html 1970-01-01 01:00:00.000000000 +0100 +++ libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-DMS-Get-Factory-SKU-request.html 2019-01-08 15:19:01.000000000 +0100 @@ -0,0 +1,370 @@ + + + + +DMS Get Factory SKU request: libqmi-glib Reference Manual + + + + + + + + + + + + + + + + +
+
+
+ + +
+

DMS Get Factory SKU request

+

DMS Get Factory SKU request

+
+ +
+

Types and Values

+ +
+
+

Object Hierarchy

+
    GBoxed
+    ╰── QmiMessageDmsGetFactorySkuOutput
+
+
+
+

Description

+
+
+

Functions

+
+

qmi_message_dms_get_factory_sku_output_ref ()

+
QmiMessageDmsGetFactorySkuOutput *
+qmi_message_dms_get_factory_sku_output_ref
+                               (QmiMessageDmsGetFactorySkuOutput *self);
+

Atomically increments the reference count of self + by one.

+
+

Parameters

+
+++++ + + + + + +

self

a QmiMessageDmsGetFactorySkuOutput.

 
+
+
+

Returns

+

the new reference to self +.

+
+

Since: 1.0

+
+
+
+

qmi_message_dms_get_factory_sku_output_unref ()

+
void
+qmi_message_dms_get_factory_sku_output_unref
+                               (QmiMessageDmsGetFactorySkuOutput *self);
+

Atomically decrements the reference count of self + by one. +If the reference count drops to 0, self + is completely disposed.

+
+

Parameters

+
+++++ + + + + + +

self

a QmiMessageDmsGetFactorySkuOutput.

 
+
+

Since: 1.0

+
+
+
+

qmi_message_dms_get_factory_sku_output_get_result ()

+
gboolean
+qmi_message_dms_get_factory_sku_output_get_result
+                               (QmiMessageDmsGetFactorySkuOutput *self,
+                                GError **error);
+

Get the result of the QMI operation.

+
+

Parameters

+
+++++ + + + + + + + + + + + + +

self

a QmiMessageDmsGetFactorySkuOutput.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the QMI operation succeeded, FALSE if error +is set.

+
+

Since: 1.0

+
+
+
+

qmi_message_dms_get_factory_sku_output_get_sku ()

+
gboolean
+qmi_message_dms_get_factory_sku_output_get_sku
+                               (QmiMessageDmsGetFactorySkuOutput *self,
+                                const gchar **value_sku,
+                                GError **error);
+

Get the 'SKU' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageDmsGetFactorySkuOutput.

 

value_sku

a placeholder for the output constant string, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.0

+
+
+
+

qmi_client_dms_get_factory_sku ()

+
void
+qmi_client_dms_get_factory_sku (QmiClientDms *self,
+                                gpointer unused,
+                                guint timeout,
+                                GCancellable *cancellable,
+                                GAsyncReadyCallback callback,
+                                gpointer user_data);
+

Asynchronously sends a Get Factory SKU request to the device.

+

When the operation is finished, callback + will be invoked in the thread-default main loop of the thread you are calling this method from.

+

You can then call qmi_client_dms_get_factory_sku_finish() to get the result of the operation.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

self

a QmiClientDms.

 

unused

NULL. This message doesn't have any input bundle.

 

timeout

maximum time to wait for the method to complete, in seconds.

 

cancellable

a GCancellable or NULL.

 

callback

a GAsyncReadyCallback to call when the request is satisfied.

 

user_data

user data to pass to callback +.

 
+
+

Since: 1.0

+
+
+
+

qmi_client_dms_get_factory_sku_finish ()

+
QmiMessageDmsGetFactorySkuOutput *
+qmi_client_dms_get_factory_sku_finish (QmiClientDms *self,
+                                       GAsyncResult *res,
+                                       GError **error);
+

Finishes an async operation started with qmi_client_dms_get_factory_sku().

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiClientDms.

 

res

the GAsyncResult obtained from the GAsyncReadyCallback passed to qmi_client_dms_get_factory_sku().

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

a QmiMessageDmsGetFactorySkuOutput, or NULL if error +is set. The returned value should be freed with qmi_message_dms_get_factory_sku_output_unref().

+
+

Since: 1.0

+
+
+
+

Types and Values

+
+

QmiMessageDmsGetFactorySkuOutput

+
typedef struct _QmiMessageDmsGetFactorySkuOutput QmiMessageDmsGetFactorySkuOutput;
+

The QmiMessageDmsGetFactorySkuOutput structure contains private data and should only be accessed +using the provided API.

+

Since: 1.0

+
+
+
+ + + \ No newline at end of file diff -Nru libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-DMS-Get-Firmware-Preference.html libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-DMS-Get-Firmware-Preference.html --- libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-DMS-Get-Firmware-Preference.html 2017-03-22 12:28:29.000000000 +0100 +++ libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-DMS-Get-Firmware-Preference.html 1970-01-01 01:00:00.000000000 +0100 @@ -1,418 +0,0 @@ - - - - -DMS Get Firmware Preference: libqmi-glib Reference Manual - - - - - - - - - - - - - - - - -
-
-
- - -
-

DMS Get Firmware Preference

-

DMS Get Firmware Preference

-
- - -
-

Object Hierarchy

-
    GBoxed
-    ╰── QmiMessageDmsGetFirmwarePreferenceOutput
-
-
-
-

Description

-
-
-

Functions

-
-

qmi_message_dms_get_firmware_preference_output_ref ()

-
QmiMessageDmsGetFirmwarePreferenceOutput *
-qmi_message_dms_get_firmware_preference_output_ref
-                               (QmiMessageDmsGetFirmwarePreferenceOutput *self);
-

Atomically increments the reference count of self - by one.

-
-

Parameters

-
----- - - - - - -

self

a QmiMessageDmsGetFirmwarePreferenceOutput.

 
-
-
-

Returns

-

the new reference to self -.

-
-

Since: 1.0

-
-
-
-

qmi_message_dms_get_firmware_preference_output_unref ()

-
void
-qmi_message_dms_get_firmware_preference_output_unref
-                               (QmiMessageDmsGetFirmwarePreferenceOutput *self);
-

Atomically decrements the reference count of self - by one. -If the reference count drops to 0, self - is completely disposed.

-
-

Parameters

-
----- - - - - - -

self

a QmiMessageDmsGetFirmwarePreferenceOutput.

 
-
-

Since: 1.0

-
-
-
-

qmi_message_dms_get_firmware_preference_output_get_result ()

-
gboolean
-qmi_message_dms_get_firmware_preference_output_get_result
-                               (QmiMessageDmsGetFirmwarePreferenceOutput *self,
-                                GError **error);
-

Get the result of the QMI operation.

-
-

Parameters

-
----- - - - - - - - - - - - - -

self

a QmiMessageDmsGetFirmwarePreferenceOutput.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the QMI operation succeeded, FALSE if error -is set.

-
-

Since: 1.0

-
-
-
-

qmi_message_dms_get_firmware_preference_output_get_list ()

-
gboolean
-qmi_message_dms_get_firmware_preference_output_get_list
-                               (QmiMessageDmsGetFirmwarePreferenceOutput *self,
-                                GArray **value_list,
-                                GError **error);
-

Get the 'List' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessageDmsGetFirmwarePreferenceOutput.

 

value_list

a placeholder for the output GArray of QmiMessageDmsGetFirmwarePreferenceOutputListImage elements, or NULL if not required. Do not free it, it is owned by self -.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.0

-
-
-
-

qmi_client_dms_get_firmware_preference ()

-
void
-qmi_client_dms_get_firmware_preference
-                               (QmiClientDms *self,
-                                gpointer unused,
-                                guint timeout,
-                                GCancellable *cancellable,
-                                GAsyncReadyCallback callback,
-                                gpointer user_data);
-

Asynchronously sends a Get Firmware Preference request to the device.

-

When the operation is finished, callback - will be invoked in the thread-default main loop of the thread you are calling this method from.

-

You can then call qmi_client_dms_get_firmware_preference_finish() to get the result of the operation.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

self

a QmiClientDms.

 

unused

NULL. This message doesn't have any input bundle.

 

timeout

maximum time to wait for the method to complete, in seconds.

 

cancellable

a GCancellable or NULL.

 

callback

a GAsyncReadyCallback to call when the request is satisfied.

 

user_data

user data to pass to callback -.

 
-
-

Since: 1.0

-
-
-
-

qmi_client_dms_get_firmware_preference_finish ()

-
QmiMessageDmsGetFirmwarePreferenceOutput *
-qmi_client_dms_get_firmware_preference_finish
-                               (QmiClientDms *self,
-                                GAsyncResult *res,
-                                GError **error);
-

Finishes an async operation started with qmi_client_dms_get_firmware_preference().

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiClientDms.

 

res

the GAsyncResult obtained from the GAsyncReadyCallback passed to qmi_client_dms_get_firmware_preference().

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

a QmiMessageDmsGetFirmwarePreferenceOutput, or NULL if error -is set. The returned value should be freed with qmi_message_dms_get_firmware_preference_output_unref().

-
-

Since: 1.0

-
-
-
-

Types and Values

-
-

QmiMessageDmsGetFirmwarePreferenceOutput

-
typedef struct _QmiMessageDmsGetFirmwarePreferenceOutput QmiMessageDmsGetFirmwarePreferenceOutput;
-

The QmiMessageDmsGetFirmwarePreferenceOutput structure contains private data and should only be accessed -using the provided API.

-

Since: 1.0

-
-
-
-

QmiMessageDmsGetFirmwarePreferenceOutputListImage

-
typedef struct {
-    QmiDmsFirmwareImageType type;
-    GArray *unique_id;
-    gchar *build_id;
-} QmiMessageDmsGetFirmwarePreferenceOutputListImage;
-
-

A QmiMessageDmsGetFirmwarePreferenceOutputListImage struct.

-
-

Members

-
----- - - - - - - - - - - - - - - - - - -

QmiDmsFirmwareImageType type;

a QmiDmsFirmwareImageType.

 

GArray *unique_id;

a GArray of guint8 elements.

 

gchar *build_id;

a string.

 
-
-

Since: 1.0

-
-
-
- - - \ No newline at end of file diff -Nru libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-DMS-Get-Firmware-Preference-request.html libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-DMS-Get-Firmware-Preference-request.html --- libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-DMS-Get-Firmware-Preference-request.html 1970-01-01 01:00:00.000000000 +0100 +++ libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-DMS-Get-Firmware-Preference-request.html 2019-01-08 15:19:01.000000000 +0100 @@ -0,0 +1,418 @@ + + + + +DMS Get Firmware Preference request: libqmi-glib Reference Manual + + + + + + + + + + + + + + + + +
+
+
+ + +
+

DMS Get Firmware Preference request

+

DMS Get Firmware Preference request

+
+ + +
+

Object Hierarchy

+
    GBoxed
+    ╰── QmiMessageDmsGetFirmwarePreferenceOutput
+
+
+
+

Description

+
+
+

Functions

+
+

qmi_message_dms_get_firmware_preference_output_ref ()

+
QmiMessageDmsGetFirmwarePreferenceOutput *
+qmi_message_dms_get_firmware_preference_output_ref
+                               (QmiMessageDmsGetFirmwarePreferenceOutput *self);
+

Atomically increments the reference count of self + by one.

+
+

Parameters

+
+++++ + + + + + +

self

a QmiMessageDmsGetFirmwarePreferenceOutput.

 
+
+
+

Returns

+

the new reference to self +.

+
+

Since: 1.0

+
+
+
+

qmi_message_dms_get_firmware_preference_output_unref ()

+
void
+qmi_message_dms_get_firmware_preference_output_unref
+                               (QmiMessageDmsGetFirmwarePreferenceOutput *self);
+

Atomically decrements the reference count of self + by one. +If the reference count drops to 0, self + is completely disposed.

+
+

Parameters

+
+++++ + + + + + +

self

a QmiMessageDmsGetFirmwarePreferenceOutput.

 
+
+

Since: 1.0

+
+
+
+

qmi_message_dms_get_firmware_preference_output_get_result ()

+
gboolean
+qmi_message_dms_get_firmware_preference_output_get_result
+                               (QmiMessageDmsGetFirmwarePreferenceOutput *self,
+                                GError **error);
+

Get the result of the QMI operation.

+
+

Parameters

+
+++++ + + + + + + + + + + + + +

self

a QmiMessageDmsGetFirmwarePreferenceOutput.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the QMI operation succeeded, FALSE if error +is set.

+
+

Since: 1.0

+
+
+
+

qmi_message_dms_get_firmware_preference_output_get_list ()

+
gboolean
+qmi_message_dms_get_firmware_preference_output_get_list
+                               (QmiMessageDmsGetFirmwarePreferenceOutput *self,
+                                GArray **value_list,
+                                GError **error);
+

Get the 'List' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageDmsGetFirmwarePreferenceOutput.

 

value_list

a placeholder for the output GArray of QmiMessageDmsGetFirmwarePreferenceOutputListImage elements, or NULL if not required. Do not free it, it is owned by self +.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.0

+
+
+
+

qmi_client_dms_get_firmware_preference ()

+
void
+qmi_client_dms_get_firmware_preference
+                               (QmiClientDms *self,
+                                gpointer unused,
+                                guint timeout,
+                                GCancellable *cancellable,
+                                GAsyncReadyCallback callback,
+                                gpointer user_data);
+

Asynchronously sends a Get Firmware Preference request to the device.

+

When the operation is finished, callback + will be invoked in the thread-default main loop of the thread you are calling this method from.

+

You can then call qmi_client_dms_get_firmware_preference_finish() to get the result of the operation.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

self

a QmiClientDms.

 

unused

NULL. This message doesn't have any input bundle.

 

timeout

maximum time to wait for the method to complete, in seconds.

 

cancellable

a GCancellable or NULL.

 

callback

a GAsyncReadyCallback to call when the request is satisfied.

 

user_data

user data to pass to callback +.

 
+
+

Since: 1.0

+
+
+
+

qmi_client_dms_get_firmware_preference_finish ()

+
QmiMessageDmsGetFirmwarePreferenceOutput *
+qmi_client_dms_get_firmware_preference_finish
+                               (QmiClientDms *self,
+                                GAsyncResult *res,
+                                GError **error);
+

Finishes an async operation started with qmi_client_dms_get_firmware_preference().

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiClientDms.

 

res

the GAsyncResult obtained from the GAsyncReadyCallback passed to qmi_client_dms_get_firmware_preference().

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

a QmiMessageDmsGetFirmwarePreferenceOutput, or NULL if error +is set. The returned value should be freed with qmi_message_dms_get_firmware_preference_output_unref().

+
+

Since: 1.0

+
+
+
+

Types and Values

+
+

QmiMessageDmsGetFirmwarePreferenceOutput

+
typedef struct _QmiMessageDmsGetFirmwarePreferenceOutput QmiMessageDmsGetFirmwarePreferenceOutput;
+

The QmiMessageDmsGetFirmwarePreferenceOutput structure contains private data and should only be accessed +using the provided API.

+

Since: 1.0

+
+
+
+

QmiMessageDmsGetFirmwarePreferenceOutputListImage

+
typedef struct {
+    QmiDmsFirmwareImageType type;
+    GArray *unique_id;
+    gchar *build_id;
+} QmiMessageDmsGetFirmwarePreferenceOutputListImage;
+
+

A QmiMessageDmsGetFirmwarePreferenceOutputListImage struct.

+
+

Members

+
+++++ + + + + + + + + + + + + + + + + + +

QmiDmsFirmwareImageType type;

a QmiDmsFirmwareImageType.

 

GArray *unique_id;

a GArray of guint8 elements.

 

gchar *build_id;

a string.

 
+
+

Since: 1.0

+
+
+
+ + + \ No newline at end of file diff -Nru libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-DMS-Get-Hardware-Revision.html libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-DMS-Get-Hardware-Revision.html --- libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-DMS-Get-Hardware-Revision.html 2017-03-22 12:28:29.000000000 +0100 +++ libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-DMS-Get-Hardware-Revision.html 1970-01-01 01:00:00.000000000 +0100 @@ -1,371 +0,0 @@ - - - - -DMS Get Hardware Revision: libqmi-glib Reference Manual - - - - - - - - - - - - - - - - -
-
-
- - -
-

DMS Get Hardware Revision

-

DMS Get Hardware Revision

-
- -
-

Types and Values

- -
-
-

Object Hierarchy

-
    GBoxed
-    ╰── QmiMessageDmsGetHardwareRevisionOutput
-
-
-
-

Description

-
-
-

Functions

-
-

qmi_message_dms_get_hardware_revision_output_ref ()

-
QmiMessageDmsGetHardwareRevisionOutput *
-qmi_message_dms_get_hardware_revision_output_ref
-                               (QmiMessageDmsGetHardwareRevisionOutput *self);
-

Atomically increments the reference count of self - by one.

-
-

Parameters

-
----- - - - - - -

self

a QmiMessageDmsGetHardwareRevisionOutput.

 
-
-
-

Returns

-

the new reference to self -.

-
-

Since: 1.0

-
-
-
-

qmi_message_dms_get_hardware_revision_output_unref ()

-
void
-qmi_message_dms_get_hardware_revision_output_unref
-                               (QmiMessageDmsGetHardwareRevisionOutput *self);
-

Atomically decrements the reference count of self - by one. -If the reference count drops to 0, self - is completely disposed.

-
-

Parameters

-
----- - - - - - -

self

a QmiMessageDmsGetHardwareRevisionOutput.

 
-
-

Since: 1.0

-
-
-
-

qmi_message_dms_get_hardware_revision_output_get_result ()

-
gboolean
-qmi_message_dms_get_hardware_revision_output_get_result
-                               (QmiMessageDmsGetHardwareRevisionOutput *self,
-                                GError **error);
-

Get the result of the QMI operation.

-
-

Parameters

-
----- - - - - - - - - - - - - -

self

a QmiMessageDmsGetHardwareRevisionOutput.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the QMI operation succeeded, FALSE if error -is set.

-
-

Since: 1.0

-
-
-
-

qmi_message_dms_get_hardware_revision_output_get_revision ()

-
gboolean
-qmi_message_dms_get_hardware_revision_output_get_revision
-                               (QmiMessageDmsGetHardwareRevisionOutput *self,
-                                const gchar **value_revision,
-                                GError **error);
-

Get the 'Revision' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessageDmsGetHardwareRevisionOutput.

 

value_revision

a placeholder for the output constant string, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.0

-
-
-
-

qmi_client_dms_get_hardware_revision ()

-
void
-qmi_client_dms_get_hardware_revision (QmiClientDms *self,
-                                      gpointer unused,
-                                      guint timeout,
-                                      GCancellable *cancellable,
-                                      GAsyncReadyCallback callback,
-                                      gpointer user_data);
-

Asynchronously sends a Get Hardware Revision request to the device.

-

When the operation is finished, callback - will be invoked in the thread-default main loop of the thread you are calling this method from.

-

You can then call qmi_client_dms_get_hardware_revision_finish() to get the result of the operation.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

self

a QmiClientDms.

 

unused

NULL. This message doesn't have any input bundle.

 

timeout

maximum time to wait for the method to complete, in seconds.

 

cancellable

a GCancellable or NULL.

 

callback

a GAsyncReadyCallback to call when the request is satisfied.

 

user_data

user data to pass to callback -.

 
-
-

Since: 1.0

-
-
-
-

qmi_client_dms_get_hardware_revision_finish ()

-
QmiMessageDmsGetHardwareRevisionOutput *
-qmi_client_dms_get_hardware_revision_finish
-                               (QmiClientDms *self,
-                                GAsyncResult *res,
-                                GError **error);
-

Finishes an async operation started with qmi_client_dms_get_hardware_revision().

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiClientDms.

 

res

the GAsyncResult obtained from the GAsyncReadyCallback passed to qmi_client_dms_get_hardware_revision().

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

a QmiMessageDmsGetHardwareRevisionOutput, or NULL if error -is set. The returned value should be freed with qmi_message_dms_get_hardware_revision_output_unref().

-
-

Since: 1.0

-
-
-
-

Types and Values

-
-

QmiMessageDmsGetHardwareRevisionOutput

-
typedef struct _QmiMessageDmsGetHardwareRevisionOutput QmiMessageDmsGetHardwareRevisionOutput;
-

The QmiMessageDmsGetHardwareRevisionOutput structure contains private data and should only be accessed -using the provided API.

-

Since: 1.0

-
-
-
- - - \ No newline at end of file diff -Nru libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-DMS-Get-Hardware-Revision-request.html libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-DMS-Get-Hardware-Revision-request.html --- libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-DMS-Get-Hardware-Revision-request.html 1970-01-01 01:00:00.000000000 +0100 +++ libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-DMS-Get-Hardware-Revision-request.html 2019-01-08 15:19:01.000000000 +0100 @@ -0,0 +1,371 @@ + + + + +DMS Get Hardware Revision request: libqmi-glib Reference Manual + + + + + + + + + + + + + + + + +
+
+
+ + +
+

DMS Get Hardware Revision request

+

DMS Get Hardware Revision request

+
+ +
+

Types and Values

+ +
+
+

Object Hierarchy

+
    GBoxed
+    ╰── QmiMessageDmsGetHardwareRevisionOutput
+
+
+
+

Description

+
+
+

Functions

+
+

qmi_message_dms_get_hardware_revision_output_ref ()

+
QmiMessageDmsGetHardwareRevisionOutput *
+qmi_message_dms_get_hardware_revision_output_ref
+                               (QmiMessageDmsGetHardwareRevisionOutput *self);
+

Atomically increments the reference count of self + by one.

+
+

Parameters

+
+++++ + + + + + +

self

a QmiMessageDmsGetHardwareRevisionOutput.

 
+
+
+

Returns

+

the new reference to self +.

+
+

Since: 1.0

+
+
+
+

qmi_message_dms_get_hardware_revision_output_unref ()

+
void
+qmi_message_dms_get_hardware_revision_output_unref
+                               (QmiMessageDmsGetHardwareRevisionOutput *self);
+

Atomically decrements the reference count of self + by one. +If the reference count drops to 0, self + is completely disposed.

+
+

Parameters

+
+++++ + + + + + +

self

a QmiMessageDmsGetHardwareRevisionOutput.

 
+
+

Since: 1.0

+
+
+
+

qmi_message_dms_get_hardware_revision_output_get_result ()

+
gboolean
+qmi_message_dms_get_hardware_revision_output_get_result
+                               (QmiMessageDmsGetHardwareRevisionOutput *self,
+                                GError **error);
+

Get the result of the QMI operation.

+
+

Parameters

+
+++++ + + + + + + + + + + + + +

self

a QmiMessageDmsGetHardwareRevisionOutput.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the QMI operation succeeded, FALSE if error +is set.

+
+

Since: 1.0

+
+
+
+

qmi_message_dms_get_hardware_revision_output_get_revision ()

+
gboolean
+qmi_message_dms_get_hardware_revision_output_get_revision
+                               (QmiMessageDmsGetHardwareRevisionOutput *self,
+                                const gchar **value_revision,
+                                GError **error);
+

Get the 'Revision' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageDmsGetHardwareRevisionOutput.

 

value_revision

a placeholder for the output constant string, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.0

+
+
+
+

qmi_client_dms_get_hardware_revision ()

+
void
+qmi_client_dms_get_hardware_revision (QmiClientDms *self,
+                                      gpointer unused,
+                                      guint timeout,
+                                      GCancellable *cancellable,
+                                      GAsyncReadyCallback callback,
+                                      gpointer user_data);
+

Asynchronously sends a Get Hardware Revision request to the device.

+

When the operation is finished, callback + will be invoked in the thread-default main loop of the thread you are calling this method from.

+

You can then call qmi_client_dms_get_hardware_revision_finish() to get the result of the operation.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

self

a QmiClientDms.

 

unused

NULL. This message doesn't have any input bundle.

 

timeout

maximum time to wait for the method to complete, in seconds.

 

cancellable

a GCancellable or NULL.

 

callback

a GAsyncReadyCallback to call when the request is satisfied.

 

user_data

user data to pass to callback +.

 
+
+

Since: 1.0

+
+
+
+

qmi_client_dms_get_hardware_revision_finish ()

+
QmiMessageDmsGetHardwareRevisionOutput *
+qmi_client_dms_get_hardware_revision_finish
+                               (QmiClientDms *self,
+                                GAsyncResult *res,
+                                GError **error);
+

Finishes an async operation started with qmi_client_dms_get_hardware_revision().

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiClientDms.

 

res

the GAsyncResult obtained from the GAsyncReadyCallback passed to qmi_client_dms_get_hardware_revision().

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

a QmiMessageDmsGetHardwareRevisionOutput, or NULL if error +is set. The returned value should be freed with qmi_message_dms_get_hardware_revision_output_unref().

+
+

Since: 1.0

+
+
+
+

Types and Values

+
+

QmiMessageDmsGetHardwareRevisionOutput

+
typedef struct _QmiMessageDmsGetHardwareRevisionOutput QmiMessageDmsGetHardwareRevisionOutput;
+

The QmiMessageDmsGetHardwareRevisionOutput structure contains private data and should only be accessed +using the provided API.

+

Since: 1.0

+
+
+
+ + + \ No newline at end of file diff -Nru libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-DMS-Get-IDs.html libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-DMS-Get-IDs.html --- libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-DMS-Get-IDs.html 2017-03-22 12:28:29.000000000 +0100 +++ libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-DMS-Get-IDs.html 1970-01-01 01:00:00.000000000 +0100 @@ -1,470 +0,0 @@ - - - - -DMS Get IDs: libqmi-glib Reference Manual - - - - - - - - - - - - - - - - -
-
-
- - -
-

DMS Get IDs

-

DMS Get IDs

-
- -
-

Types and Values

-
---- - - - - -
 QmiMessageDmsGetIdsOutput
-
-
-

Object Hierarchy

-
    GBoxed
-    ╰── QmiMessageDmsGetIdsOutput
-
-
-
-

Description

-
-
-

Functions

-
-

qmi_message_dms_get_ids_output_ref ()

-
QmiMessageDmsGetIdsOutput *
-qmi_message_dms_get_ids_output_ref (QmiMessageDmsGetIdsOutput *self);
-

Atomically increments the reference count of self - by one.

-
-

Parameters

-
----- - - - - - -

self

a QmiMessageDmsGetIdsOutput.

 
-
-
-

Returns

-

the new reference to self -.

-
-

Since: 1.0

-
-
-
-

qmi_message_dms_get_ids_output_unref ()

-
void
-qmi_message_dms_get_ids_output_unref (QmiMessageDmsGetIdsOutput *self);
-

Atomically decrements the reference count of self - by one. -If the reference count drops to 0, self - is completely disposed.

-
-

Parameters

-
----- - - - - - -

self

a QmiMessageDmsGetIdsOutput.

 
-
-

Since: 1.0

-
-
-
-

qmi_message_dms_get_ids_output_get_result ()

-
gboolean
-qmi_message_dms_get_ids_output_get_result
-                               (QmiMessageDmsGetIdsOutput *self,
-                                GError **error);
-

Get the result of the QMI operation.

-
-

Parameters

-
----- - - - - - - - - - - - - -

self

a QmiMessageDmsGetIdsOutput.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the QMI operation succeeded, FALSE if error -is set.

-
-

Since: 1.0

-
-
-
-

qmi_message_dms_get_ids_output_get_esn ()

-
gboolean
-qmi_message_dms_get_ids_output_get_esn
-                               (QmiMessageDmsGetIdsOutput *self,
-                                const gchar **value_esn,
-                                GError **error);
-

Get the 'Esn' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessageDmsGetIdsOutput.

 

value_esn

a placeholder for the output constant string, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.0

-
-
-
-

qmi_message_dms_get_ids_output_get_imei ()

-
gboolean
-qmi_message_dms_get_ids_output_get_imei
-                               (QmiMessageDmsGetIdsOutput *self,
-                                const gchar **value_imei,
-                                GError **error);
-

Get the 'Imei' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessageDmsGetIdsOutput.

 

value_imei

a placeholder for the output constant string, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.0

-
-
-
-

qmi_message_dms_get_ids_output_get_meid ()

-
gboolean
-qmi_message_dms_get_ids_output_get_meid
-                               (QmiMessageDmsGetIdsOutput *self,
-                                const gchar **value_meid,
-                                GError **error);
-

Get the 'Meid' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessageDmsGetIdsOutput.

 

value_meid

a placeholder for the output constant string, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.0

-
-
-
-

qmi_client_dms_get_ids ()

-
void
-qmi_client_dms_get_ids (QmiClientDms *self,
-                        gpointer unused,
-                        guint timeout,
-                        GCancellable *cancellable,
-                        GAsyncReadyCallback callback,
-                        gpointer user_data);
-

Asynchronously sends a Get IDs request to the device.

-

When the operation is finished, callback - will be invoked in the thread-default main loop of the thread you are calling this method from.

-

You can then call qmi_client_dms_get_ids_finish() to get the result of the operation.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

self

a QmiClientDms.

 

unused

NULL. This message doesn't have any input bundle.

 

timeout

maximum time to wait for the method to complete, in seconds.

 

cancellable

a GCancellable or NULL.

 

callback

a GAsyncReadyCallback to call when the request is satisfied.

 

user_data

user data to pass to callback -.

 
-
-

Since: 1.0

-
-
-
-

qmi_client_dms_get_ids_finish ()

-
QmiMessageDmsGetIdsOutput *
-qmi_client_dms_get_ids_finish (QmiClientDms *self,
-                               GAsyncResult *res,
-                               GError **error);
-

Finishes an async operation started with qmi_client_dms_get_ids().

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiClientDms.

 

res

the GAsyncResult obtained from the GAsyncReadyCallback passed to qmi_client_dms_get_ids().

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

a QmiMessageDmsGetIdsOutput, or NULL if error -is set. The returned value should be freed with qmi_message_dms_get_ids_output_unref().

-
-

Since: 1.0

-
-
-
-

Types and Values

-
-

QmiMessageDmsGetIdsOutput

-
typedef struct _QmiMessageDmsGetIdsOutput QmiMessageDmsGetIdsOutput;
-

The QmiMessageDmsGetIdsOutput structure contains private data and should only be accessed -using the provided API.

-

Since: 1.0

-
-
-
- - - \ No newline at end of file diff -Nru libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-DMS-Get-IDs-request.html libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-DMS-Get-IDs-request.html --- libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-DMS-Get-IDs-request.html 1970-01-01 01:00:00.000000000 +0100 +++ libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-DMS-Get-IDs-request.html 2019-01-08 15:19:01.000000000 +0100 @@ -0,0 +1,470 @@ + + + + +DMS Get IDs request: libqmi-glib Reference Manual + + + + + + + + + + + + + + + + +
+
+
+ + +
+

DMS Get IDs request

+

DMS Get IDs request

+
+ +
+

Types and Values

+
++++ + + + + +
 QmiMessageDmsGetIdsOutput
+
+
+

Object Hierarchy

+
    GBoxed
+    ╰── QmiMessageDmsGetIdsOutput
+
+
+
+

Description

+
+
+

Functions

+
+

qmi_message_dms_get_ids_output_ref ()

+
QmiMessageDmsGetIdsOutput *
+qmi_message_dms_get_ids_output_ref (QmiMessageDmsGetIdsOutput *self);
+

Atomically increments the reference count of self + by one.

+
+

Parameters

+
+++++ + + + + + +

self

a QmiMessageDmsGetIdsOutput.

 
+
+
+

Returns

+

the new reference to self +.

+
+

Since: 1.0

+
+
+
+

qmi_message_dms_get_ids_output_unref ()

+
void
+qmi_message_dms_get_ids_output_unref (QmiMessageDmsGetIdsOutput *self);
+

Atomically decrements the reference count of self + by one. +If the reference count drops to 0, self + is completely disposed.

+
+

Parameters

+
+++++ + + + + + +

self

a QmiMessageDmsGetIdsOutput.

 
+
+

Since: 1.0

+
+
+
+

qmi_message_dms_get_ids_output_get_result ()

+
gboolean
+qmi_message_dms_get_ids_output_get_result
+                               (QmiMessageDmsGetIdsOutput *self,
+                                GError **error);
+

Get the result of the QMI operation.

+
+

Parameters

+
+++++ + + + + + + + + + + + + +

self

a QmiMessageDmsGetIdsOutput.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the QMI operation succeeded, FALSE if error +is set.

+
+

Since: 1.0

+
+
+
+

qmi_message_dms_get_ids_output_get_esn ()

+
gboolean
+qmi_message_dms_get_ids_output_get_esn
+                               (QmiMessageDmsGetIdsOutput *self,
+                                const gchar **value_esn,
+                                GError **error);
+

Get the 'Esn' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageDmsGetIdsOutput.

 

value_esn

a placeholder for the output constant string, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.0

+
+
+
+

qmi_message_dms_get_ids_output_get_imei ()

+
gboolean
+qmi_message_dms_get_ids_output_get_imei
+                               (QmiMessageDmsGetIdsOutput *self,
+                                const gchar **value_imei,
+                                GError **error);
+

Get the 'Imei' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageDmsGetIdsOutput.

 

value_imei

a placeholder for the output constant string, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.0

+
+
+
+

qmi_message_dms_get_ids_output_get_meid ()

+
gboolean
+qmi_message_dms_get_ids_output_get_meid
+                               (QmiMessageDmsGetIdsOutput *self,
+                                const gchar **value_meid,
+                                GError **error);
+

Get the 'Meid' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageDmsGetIdsOutput.

 

value_meid

a placeholder for the output constant string, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.0

+
+
+
+

qmi_client_dms_get_ids ()

+
void
+qmi_client_dms_get_ids (QmiClientDms *self,
+                        gpointer unused,
+                        guint timeout,
+                        GCancellable *cancellable,
+                        GAsyncReadyCallback callback,
+                        gpointer user_data);
+

Asynchronously sends a Get IDs request to the device.

+

When the operation is finished, callback + will be invoked in the thread-default main loop of the thread you are calling this method from.

+

You can then call qmi_client_dms_get_ids_finish() to get the result of the operation.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

self

a QmiClientDms.

 

unused

NULL. This message doesn't have any input bundle.

 

timeout

maximum time to wait for the method to complete, in seconds.

 

cancellable

a GCancellable or NULL.

 

callback

a GAsyncReadyCallback to call when the request is satisfied.

 

user_data

user data to pass to callback +.

 
+
+

Since: 1.0

+
+
+
+

qmi_client_dms_get_ids_finish ()

+
QmiMessageDmsGetIdsOutput *
+qmi_client_dms_get_ids_finish (QmiClientDms *self,
+                               GAsyncResult *res,
+                               GError **error);
+

Finishes an async operation started with qmi_client_dms_get_ids().

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiClientDms.

 

res

the GAsyncResult obtained from the GAsyncReadyCallback passed to qmi_client_dms_get_ids().

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

a QmiMessageDmsGetIdsOutput, or NULL if error +is set. The returned value should be freed with qmi_message_dms_get_ids_output_unref().

+
+

Since: 1.0

+
+
+
+

Types and Values

+
+

QmiMessageDmsGetIdsOutput

+
typedef struct _QmiMessageDmsGetIdsOutput QmiMessageDmsGetIdsOutput;
+

The QmiMessageDmsGetIdsOutput structure contains private data and should only be accessed +using the provided API.

+

Since: 1.0

+
+
+
+ + + \ No newline at end of file diff -Nru libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-DMS-Get-Manufacturer.html libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-DMS-Get-Manufacturer.html --- libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-DMS-Get-Manufacturer.html 2017-03-22 12:28:29.000000000 +0100 +++ libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-DMS-Get-Manufacturer.html 1970-01-01 01:00:00.000000000 +0100 @@ -1,371 +0,0 @@ - - - - -DMS Get Manufacturer: libqmi-glib Reference Manual - - - - - - - - - - - - - - - - -
-
-
- - -
-

DMS Get Manufacturer

-

DMS Get Manufacturer

-
- -
-

Types and Values

- -
-
-

Object Hierarchy

-
    GBoxed
-    ╰── QmiMessageDmsGetManufacturerOutput
-
-
-
-

Description

-
-
-

Functions

-
-

qmi_message_dms_get_manufacturer_output_ref ()

-
QmiMessageDmsGetManufacturerOutput *
-qmi_message_dms_get_manufacturer_output_ref
-                               (QmiMessageDmsGetManufacturerOutput *self);
-

Atomically increments the reference count of self - by one.

-
-

Parameters

-
----- - - - - - -

self

a QmiMessageDmsGetManufacturerOutput.

 
-
-
-

Returns

-

the new reference to self -.

-
-

Since: 1.0

-
-
-
-

qmi_message_dms_get_manufacturer_output_unref ()

-
void
-qmi_message_dms_get_manufacturer_output_unref
-                               (QmiMessageDmsGetManufacturerOutput *self);
-

Atomically decrements the reference count of self - by one. -If the reference count drops to 0, self - is completely disposed.

-
-

Parameters

-
----- - - - - - -

self

a QmiMessageDmsGetManufacturerOutput.

 
-
-

Since: 1.0

-
-
-
-

qmi_message_dms_get_manufacturer_output_get_result ()

-
gboolean
-qmi_message_dms_get_manufacturer_output_get_result
-                               (QmiMessageDmsGetManufacturerOutput *self,
-                                GError **error);
-

Get the result of the QMI operation.

-
-

Parameters

-
----- - - - - - - - - - - - - -

self

a QmiMessageDmsGetManufacturerOutput.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the QMI operation succeeded, FALSE if error -is set.

-
-

Since: 1.0

-
-
-
-

qmi_message_dms_get_manufacturer_output_get_manufacturer ()

-
gboolean
-qmi_message_dms_get_manufacturer_output_get_manufacturer
-                               (QmiMessageDmsGetManufacturerOutput *self,
-                                const gchar **value_manufacturer,
-                                GError **error);
-

Get the 'Manufacturer' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessageDmsGetManufacturerOutput.

 

value_manufacturer

a placeholder for the output constant string, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.0

-
-
-
-

qmi_client_dms_get_manufacturer ()

-
void
-qmi_client_dms_get_manufacturer (QmiClientDms *self,
-                                 gpointer unused,
-                                 guint timeout,
-                                 GCancellable *cancellable,
-                                 GAsyncReadyCallback callback,
-                                 gpointer user_data);
-

Asynchronously sends a Get Manufacturer request to the device.

-

When the operation is finished, callback - will be invoked in the thread-default main loop of the thread you are calling this method from.

-

You can then call qmi_client_dms_get_manufacturer_finish() to get the result of the operation.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

self

a QmiClientDms.

 

unused

NULL. This message doesn't have any input bundle.

 

timeout

maximum time to wait for the method to complete, in seconds.

 

cancellable

a GCancellable or NULL.

 

callback

a GAsyncReadyCallback to call when the request is satisfied.

 

user_data

user data to pass to callback -.

 
-
-

Since: 1.0

-
-
-
-

qmi_client_dms_get_manufacturer_finish ()

-
QmiMessageDmsGetManufacturerOutput *
-qmi_client_dms_get_manufacturer_finish
-                               (QmiClientDms *self,
-                                GAsyncResult *res,
-                                GError **error);
-

Finishes an async operation started with qmi_client_dms_get_manufacturer().

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiClientDms.

 

res

the GAsyncResult obtained from the GAsyncReadyCallback passed to qmi_client_dms_get_manufacturer().

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

a QmiMessageDmsGetManufacturerOutput, or NULL if error -is set. The returned value should be freed with qmi_message_dms_get_manufacturer_output_unref().

-
-

Since: 1.0

-
-
-
-

Types and Values

-
-

QmiMessageDmsGetManufacturerOutput

-
typedef struct _QmiMessageDmsGetManufacturerOutput QmiMessageDmsGetManufacturerOutput;
-

The QmiMessageDmsGetManufacturerOutput structure contains private data and should only be accessed -using the provided API.

-

Since: 1.0

-
-
-
- - - \ No newline at end of file diff -Nru libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-DMS-Get-Manufacturer-request.html libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-DMS-Get-Manufacturer-request.html --- libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-DMS-Get-Manufacturer-request.html 1970-01-01 01:00:00.000000000 +0100 +++ libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-DMS-Get-Manufacturer-request.html 2019-01-08 15:19:01.000000000 +0100 @@ -0,0 +1,371 @@ + + + + +DMS Get Manufacturer request: libqmi-glib Reference Manual + + + + + + + + + + + + + + + + +
+
+
+ + +
+

DMS Get Manufacturer request

+

DMS Get Manufacturer request

+
+ +
+

Types and Values

+ +
+
+

Object Hierarchy

+
    GBoxed
+    ╰── QmiMessageDmsGetManufacturerOutput
+
+
+
+

Description

+
+
+

Functions

+
+

qmi_message_dms_get_manufacturer_output_ref ()

+
QmiMessageDmsGetManufacturerOutput *
+qmi_message_dms_get_manufacturer_output_ref
+                               (QmiMessageDmsGetManufacturerOutput *self);
+

Atomically increments the reference count of self + by one.

+
+

Parameters

+
+++++ + + + + + +

self

a QmiMessageDmsGetManufacturerOutput.

 
+
+
+

Returns

+

the new reference to self +.

+
+

Since: 1.0

+
+
+
+

qmi_message_dms_get_manufacturer_output_unref ()

+
void
+qmi_message_dms_get_manufacturer_output_unref
+                               (QmiMessageDmsGetManufacturerOutput *self);
+

Atomically decrements the reference count of self + by one. +If the reference count drops to 0, self + is completely disposed.

+
+

Parameters

+
+++++ + + + + + +

self

a QmiMessageDmsGetManufacturerOutput.

 
+
+

Since: 1.0

+
+
+
+

qmi_message_dms_get_manufacturer_output_get_result ()

+
gboolean
+qmi_message_dms_get_manufacturer_output_get_result
+                               (QmiMessageDmsGetManufacturerOutput *self,
+                                GError **error);
+

Get the result of the QMI operation.

+
+

Parameters

+
+++++ + + + + + + + + + + + + +

self

a QmiMessageDmsGetManufacturerOutput.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the QMI operation succeeded, FALSE if error +is set.

+
+

Since: 1.0

+
+
+
+

qmi_message_dms_get_manufacturer_output_get_manufacturer ()

+
gboolean
+qmi_message_dms_get_manufacturer_output_get_manufacturer
+                               (QmiMessageDmsGetManufacturerOutput *self,
+                                const gchar **value_manufacturer,
+                                GError **error);
+

Get the 'Manufacturer' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageDmsGetManufacturerOutput.

 

value_manufacturer

a placeholder for the output constant string, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.0

+
+
+
+

qmi_client_dms_get_manufacturer ()

+
void
+qmi_client_dms_get_manufacturer (QmiClientDms *self,
+                                 gpointer unused,
+                                 guint timeout,
+                                 GCancellable *cancellable,
+                                 GAsyncReadyCallback callback,
+                                 gpointer user_data);
+

Asynchronously sends a Get Manufacturer request to the device.

+

When the operation is finished, callback + will be invoked in the thread-default main loop of the thread you are calling this method from.

+

You can then call qmi_client_dms_get_manufacturer_finish() to get the result of the operation.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

self

a QmiClientDms.

 

unused

NULL. This message doesn't have any input bundle.

 

timeout

maximum time to wait for the method to complete, in seconds.

 

cancellable

a GCancellable or NULL.

 

callback

a GAsyncReadyCallback to call when the request is satisfied.

 

user_data

user data to pass to callback +.

 
+
+

Since: 1.0

+
+
+
+

qmi_client_dms_get_manufacturer_finish ()

+
QmiMessageDmsGetManufacturerOutput *
+qmi_client_dms_get_manufacturer_finish
+                               (QmiClientDms *self,
+                                GAsyncResult *res,
+                                GError **error);
+

Finishes an async operation started with qmi_client_dms_get_manufacturer().

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiClientDms.

 

res

the GAsyncResult obtained from the GAsyncReadyCallback passed to qmi_client_dms_get_manufacturer().

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

a QmiMessageDmsGetManufacturerOutput, or NULL if error +is set. The returned value should be freed with qmi_message_dms_get_manufacturer_output_unref().

+
+

Since: 1.0

+
+
+
+

Types and Values

+
+

QmiMessageDmsGetManufacturerOutput

+
typedef struct _QmiMessageDmsGetManufacturerOutput QmiMessageDmsGetManufacturerOutput;
+

The QmiMessageDmsGetManufacturerOutput structure contains private data and should only be accessed +using the provided API.

+

Since: 1.0

+
+
+
+ + + \ No newline at end of file diff -Nru libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-DMS-Get-Model.html libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-DMS-Get-Model.html --- libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-DMS-Get-Model.html 2017-03-22 12:28:29.000000000 +0100 +++ libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-DMS-Get-Model.html 1970-01-01 01:00:00.000000000 +0100 @@ -1,369 +0,0 @@ - - - - -DMS Get Model: libqmi-glib Reference Manual - - - - - - - - - - - - - - - - -
-
-
- - -
-

DMS Get Model

-

DMS Get Model

-
- -
-

Types and Values

-
---- - - - - -
 QmiMessageDmsGetModelOutput
-
-
-

Object Hierarchy

-
    GBoxed
-    ╰── QmiMessageDmsGetModelOutput
-
-
-
-

Description

-
-
-

Functions

-
-

qmi_message_dms_get_model_output_ref ()

-
QmiMessageDmsGetModelOutput *
-qmi_message_dms_get_model_output_ref (QmiMessageDmsGetModelOutput *self);
-

Atomically increments the reference count of self - by one.

-
-

Parameters

-
----- - - - - - -

self

a QmiMessageDmsGetModelOutput.

 
-
-
-

Returns

-

the new reference to self -.

-
-

Since: 1.0

-
-
-
-

qmi_message_dms_get_model_output_unref ()

-
void
-qmi_message_dms_get_model_output_unref
-                               (QmiMessageDmsGetModelOutput *self);
-

Atomically decrements the reference count of self - by one. -If the reference count drops to 0, self - is completely disposed.

-
-

Parameters

-
----- - - - - - -

self

a QmiMessageDmsGetModelOutput.

 
-
-

Since: 1.0

-
-
-
-

qmi_message_dms_get_model_output_get_result ()

-
gboolean
-qmi_message_dms_get_model_output_get_result
-                               (QmiMessageDmsGetModelOutput *self,
-                                GError **error);
-

Get the result of the QMI operation.

-
-

Parameters

-
----- - - - - - - - - - - - - -

self

a QmiMessageDmsGetModelOutput.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the QMI operation succeeded, FALSE if error -is set.

-
-

Since: 1.0

-
-
-
-

qmi_message_dms_get_model_output_get_model ()

-
gboolean
-qmi_message_dms_get_model_output_get_model
-                               (QmiMessageDmsGetModelOutput *self,
-                                const gchar **value_model,
-                                GError **error);
-

Get the 'Model' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessageDmsGetModelOutput.

 

value_model

a placeholder for the output constant string, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.0

-
-
-
-

qmi_client_dms_get_model ()

-
void
-qmi_client_dms_get_model (QmiClientDms *self,
-                          gpointer unused,
-                          guint timeout,
-                          GCancellable *cancellable,
-                          GAsyncReadyCallback callback,
-                          gpointer user_data);
-

Asynchronously sends a Get Model request to the device.

-

When the operation is finished, callback - will be invoked in the thread-default main loop of the thread you are calling this method from.

-

You can then call qmi_client_dms_get_model_finish() to get the result of the operation.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

self

a QmiClientDms.

 

unused

NULL. This message doesn't have any input bundle.

 

timeout

maximum time to wait for the method to complete, in seconds.

 

cancellable

a GCancellable or NULL.

 

callback

a GAsyncReadyCallback to call when the request is satisfied.

 

user_data

user data to pass to callback -.

 
-
-

Since: 1.0

-
-
-
-

qmi_client_dms_get_model_finish ()

-
QmiMessageDmsGetModelOutput *
-qmi_client_dms_get_model_finish (QmiClientDms *self,
-                                 GAsyncResult *res,
-                                 GError **error);
-

Finishes an async operation started with qmi_client_dms_get_model().

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiClientDms.

 

res

the GAsyncResult obtained from the GAsyncReadyCallback passed to qmi_client_dms_get_model().

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

a QmiMessageDmsGetModelOutput, or NULL if error -is set. The returned value should be freed with qmi_message_dms_get_model_output_unref().

-
-

Since: 1.0

-
-
-
-

Types and Values

-
-

QmiMessageDmsGetModelOutput

-
typedef struct _QmiMessageDmsGetModelOutput QmiMessageDmsGetModelOutput;
-

The QmiMessageDmsGetModelOutput structure contains private data and should only be accessed -using the provided API.

-

Since: 1.0

-
-
-
- - - \ No newline at end of file diff -Nru libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-DMS-Get-Model-request.html libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-DMS-Get-Model-request.html --- libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-DMS-Get-Model-request.html 1970-01-01 01:00:00.000000000 +0100 +++ libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-DMS-Get-Model-request.html 2019-01-08 15:19:01.000000000 +0100 @@ -0,0 +1,369 @@ + + + + +DMS Get Model request: libqmi-glib Reference Manual + + + + + + + + + + + + + + + + +
+
+
+ + +
+

DMS Get Model request

+

DMS Get Model request

+
+ +
+

Types and Values

+
++++ + + + + +
 QmiMessageDmsGetModelOutput
+
+
+

Object Hierarchy

+
    GBoxed
+    ╰── QmiMessageDmsGetModelOutput
+
+
+
+

Description

+
+
+

Functions

+
+

qmi_message_dms_get_model_output_ref ()

+
QmiMessageDmsGetModelOutput *
+qmi_message_dms_get_model_output_ref (QmiMessageDmsGetModelOutput *self);
+

Atomically increments the reference count of self + by one.

+
+

Parameters

+
+++++ + + + + + +

self

a QmiMessageDmsGetModelOutput.

 
+
+
+

Returns

+

the new reference to self +.

+
+

Since: 1.0

+
+
+
+

qmi_message_dms_get_model_output_unref ()

+
void
+qmi_message_dms_get_model_output_unref
+                               (QmiMessageDmsGetModelOutput *self);
+

Atomically decrements the reference count of self + by one. +If the reference count drops to 0, self + is completely disposed.

+
+

Parameters

+
+++++ + + + + + +

self

a QmiMessageDmsGetModelOutput.

 
+
+

Since: 1.0

+
+
+
+

qmi_message_dms_get_model_output_get_result ()

+
gboolean
+qmi_message_dms_get_model_output_get_result
+                               (QmiMessageDmsGetModelOutput *self,
+                                GError **error);
+

Get the result of the QMI operation.

+
+

Parameters

+
+++++ + + + + + + + + + + + + +

self

a QmiMessageDmsGetModelOutput.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the QMI operation succeeded, FALSE if error +is set.

+
+

Since: 1.0

+
+
+
+

qmi_message_dms_get_model_output_get_model ()

+
gboolean
+qmi_message_dms_get_model_output_get_model
+                               (QmiMessageDmsGetModelOutput *self,
+                                const gchar **value_model,
+                                GError **error);
+

Get the 'Model' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageDmsGetModelOutput.

 

value_model

a placeholder for the output constant string, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.0

+
+
+
+

qmi_client_dms_get_model ()

+
void
+qmi_client_dms_get_model (QmiClientDms *self,
+                          gpointer unused,
+                          guint timeout,
+                          GCancellable *cancellable,
+                          GAsyncReadyCallback callback,
+                          gpointer user_data);
+

Asynchronously sends a Get Model request to the device.

+

When the operation is finished, callback + will be invoked in the thread-default main loop of the thread you are calling this method from.

+

You can then call qmi_client_dms_get_model_finish() to get the result of the operation.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

self

a QmiClientDms.

 

unused

NULL. This message doesn't have any input bundle.

 

timeout

maximum time to wait for the method to complete, in seconds.

 

cancellable

a GCancellable or NULL.

 

callback

a GAsyncReadyCallback to call when the request is satisfied.

 

user_data

user data to pass to callback +.

 
+
+

Since: 1.0

+
+
+
+

qmi_client_dms_get_model_finish ()

+
QmiMessageDmsGetModelOutput *
+qmi_client_dms_get_model_finish (QmiClientDms *self,
+                                 GAsyncResult *res,
+                                 GError **error);
+

Finishes an async operation started with qmi_client_dms_get_model().

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiClientDms.

 

res

the GAsyncResult obtained from the GAsyncReadyCallback passed to qmi_client_dms_get_model().

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

a QmiMessageDmsGetModelOutput, or NULL if error +is set. The returned value should be freed with qmi_message_dms_get_model_output_unref().

+
+

Since: 1.0

+
+
+
+

Types and Values

+
+

QmiMessageDmsGetModelOutput

+
typedef struct _QmiMessageDmsGetModelOutput QmiMessageDmsGetModelOutput;
+

The QmiMessageDmsGetModelOutput structure contains private data and should only be accessed +using the provided API.

+

Since: 1.0

+
+
+
+ + + \ No newline at end of file diff -Nru libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-DMS-Get-MSISDN.html libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-DMS-Get-MSISDN.html --- libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-DMS-Get-MSISDN.html 2017-03-22 12:28:29.000000000 +0100 +++ libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-DMS-Get-MSISDN.html 1970-01-01 01:00:00.000000000 +0100 @@ -1,369 +0,0 @@ - - - - -DMS Get MSISDN: libqmi-glib Reference Manual - - - - - - - - - - - - - - - - -
-
-
- - -
-

DMS Get MSISDN

-

DMS Get MSISDN

-
- -
-

Types and Values

- -
-
-

Object Hierarchy

-
    GBoxed
-    ╰── QmiMessageDmsGetMsisdnOutput
-
-
-
-

Description

-
-
-

Functions

-
-

qmi_message_dms_get_msisdn_output_ref ()

-
QmiMessageDmsGetMsisdnOutput *
-qmi_message_dms_get_msisdn_output_ref (QmiMessageDmsGetMsisdnOutput *self);
-

Atomically increments the reference count of self - by one.

-
-

Parameters

-
----- - - - - - -

self

a QmiMessageDmsGetMsisdnOutput.

 
-
-
-

Returns

-

the new reference to self -.

-
-

Since: 1.0

-
-
-
-

qmi_message_dms_get_msisdn_output_unref ()

-
void
-qmi_message_dms_get_msisdn_output_unref
-                               (QmiMessageDmsGetMsisdnOutput *self);
-

Atomically decrements the reference count of self - by one. -If the reference count drops to 0, self - is completely disposed.

-
-

Parameters

-
----- - - - - - -

self

a QmiMessageDmsGetMsisdnOutput.

 
-
-

Since: 1.0

-
-
-
-

qmi_message_dms_get_msisdn_output_get_result ()

-
gboolean
-qmi_message_dms_get_msisdn_output_get_result
-                               (QmiMessageDmsGetMsisdnOutput *self,
-                                GError **error);
-

Get the result of the QMI operation.

-
-

Parameters

-
----- - - - - - - - - - - - - -

self

a QmiMessageDmsGetMsisdnOutput.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the QMI operation succeeded, FALSE if error -is set.

-
-

Since: 1.0

-
-
-
-

qmi_message_dms_get_msisdn_output_get_msisdn ()

-
gboolean
-qmi_message_dms_get_msisdn_output_get_msisdn
-                               (QmiMessageDmsGetMsisdnOutput *self,
-                                const gchar **value_msisdn,
-                                GError **error);
-

Get the 'MSISDN' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessageDmsGetMsisdnOutput.

 

value_msisdn

a placeholder for the output constant string, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.0

-
-
-
-

qmi_client_dms_get_msisdn ()

-
void
-qmi_client_dms_get_msisdn (QmiClientDms *self,
-                           gpointer unused,
-                           guint timeout,
-                           GCancellable *cancellable,
-                           GAsyncReadyCallback callback,
-                           gpointer user_data);
-

Asynchronously sends a Get MSISDN request to the device.

-

When the operation is finished, callback - will be invoked in the thread-default main loop of the thread you are calling this method from.

-

You can then call qmi_client_dms_get_msisdn_finish() to get the result of the operation.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

self

a QmiClientDms.

 

unused

NULL. This message doesn't have any input bundle.

 

timeout

maximum time to wait for the method to complete, in seconds.

 

cancellable

a GCancellable or NULL.

 

callback

a GAsyncReadyCallback to call when the request is satisfied.

 

user_data

user data to pass to callback -.

 
-
-

Since: 1.0

-
-
-
-

qmi_client_dms_get_msisdn_finish ()

-
QmiMessageDmsGetMsisdnOutput *
-qmi_client_dms_get_msisdn_finish (QmiClientDms *self,
-                                  GAsyncResult *res,
-                                  GError **error);
-

Finishes an async operation started with qmi_client_dms_get_msisdn().

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiClientDms.

 

res

the GAsyncResult obtained from the GAsyncReadyCallback passed to qmi_client_dms_get_msisdn().

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

a QmiMessageDmsGetMsisdnOutput, or NULL if error -is set. The returned value should be freed with qmi_message_dms_get_msisdn_output_unref().

-
-

Since: 1.0

-
-
-
-

Types and Values

-
-

QmiMessageDmsGetMsisdnOutput

-
typedef struct _QmiMessageDmsGetMsisdnOutput QmiMessageDmsGetMsisdnOutput;
-

The QmiMessageDmsGetMsisdnOutput structure contains private data and should only be accessed -using the provided API.

-

Since: 1.0

-
-
-
- - - \ No newline at end of file diff -Nru libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-DMS-Get-MSISDN-request.html libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-DMS-Get-MSISDN-request.html --- libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-DMS-Get-MSISDN-request.html 1970-01-01 01:00:00.000000000 +0100 +++ libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-DMS-Get-MSISDN-request.html 2019-01-08 15:19:01.000000000 +0100 @@ -0,0 +1,369 @@ + + + + +DMS Get MSISDN request: libqmi-glib Reference Manual + + + + + + + + + + + + + + + + +
+
+
+ + +
+

DMS Get MSISDN request

+

DMS Get MSISDN request

+
+ +
+

Types and Values

+ +
+
+

Object Hierarchy

+
    GBoxed
+    ╰── QmiMessageDmsGetMsisdnOutput
+
+
+
+

Description

+
+
+

Functions

+
+

qmi_message_dms_get_msisdn_output_ref ()

+
QmiMessageDmsGetMsisdnOutput *
+qmi_message_dms_get_msisdn_output_ref (QmiMessageDmsGetMsisdnOutput *self);
+

Atomically increments the reference count of self + by one.

+
+

Parameters

+
+++++ + + + + + +

self

a QmiMessageDmsGetMsisdnOutput.

 
+
+
+

Returns

+

the new reference to self +.

+
+

Since: 1.0

+
+
+
+

qmi_message_dms_get_msisdn_output_unref ()

+
void
+qmi_message_dms_get_msisdn_output_unref
+                               (QmiMessageDmsGetMsisdnOutput *self);
+

Atomically decrements the reference count of self + by one. +If the reference count drops to 0, self + is completely disposed.

+
+

Parameters

+
+++++ + + + + + +

self

a QmiMessageDmsGetMsisdnOutput.

 
+
+

Since: 1.0

+
+
+
+

qmi_message_dms_get_msisdn_output_get_result ()

+
gboolean
+qmi_message_dms_get_msisdn_output_get_result
+                               (QmiMessageDmsGetMsisdnOutput *self,
+                                GError **error);
+

Get the result of the QMI operation.

+
+

Parameters

+
+++++ + + + + + + + + + + + + +

self

a QmiMessageDmsGetMsisdnOutput.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the QMI operation succeeded, FALSE if error +is set.

+
+

Since: 1.0

+
+
+
+

qmi_message_dms_get_msisdn_output_get_msisdn ()

+
gboolean
+qmi_message_dms_get_msisdn_output_get_msisdn
+                               (QmiMessageDmsGetMsisdnOutput *self,
+                                const gchar **value_msisdn,
+                                GError **error);
+

Get the 'MSISDN' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageDmsGetMsisdnOutput.

 

value_msisdn

a placeholder for the output constant string, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.0

+
+
+
+

qmi_client_dms_get_msisdn ()

+
void
+qmi_client_dms_get_msisdn (QmiClientDms *self,
+                           gpointer unused,
+                           guint timeout,
+                           GCancellable *cancellable,
+                           GAsyncReadyCallback callback,
+                           gpointer user_data);
+

Asynchronously sends a Get MSISDN request to the device.

+

When the operation is finished, callback + will be invoked in the thread-default main loop of the thread you are calling this method from.

+

You can then call qmi_client_dms_get_msisdn_finish() to get the result of the operation.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

self

a QmiClientDms.

 

unused

NULL. This message doesn't have any input bundle.

 

timeout

maximum time to wait for the method to complete, in seconds.

 

cancellable

a GCancellable or NULL.

 

callback

a GAsyncReadyCallback to call when the request is satisfied.

 

user_data

user data to pass to callback +.

 
+
+

Since: 1.0

+
+
+
+

qmi_client_dms_get_msisdn_finish ()

+
QmiMessageDmsGetMsisdnOutput *
+qmi_client_dms_get_msisdn_finish (QmiClientDms *self,
+                                  GAsyncResult *res,
+                                  GError **error);
+

Finishes an async operation started with qmi_client_dms_get_msisdn().

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiClientDms.

 

res

the GAsyncResult obtained from the GAsyncReadyCallback passed to qmi_client_dms_get_msisdn().

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

a QmiMessageDmsGetMsisdnOutput, or NULL if error +is set. The returned value should be freed with qmi_message_dms_get_msisdn_output_unref().

+
+

Since: 1.0

+
+
+
+

Types and Values

+
+

QmiMessageDmsGetMsisdnOutput

+
typedef struct _QmiMessageDmsGetMsisdnOutput QmiMessageDmsGetMsisdnOutput;
+

The QmiMessageDmsGetMsisdnOutput structure contains private data and should only be accessed +using the provided API.

+

Since: 1.0

+
+
+
+ + + \ No newline at end of file diff -Nru libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-DMS-Get-Operating-Mode.html libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-DMS-Get-Operating-Mode.html --- libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-DMS-Get-Operating-Mode.html 2017-03-22 12:28:29.000000000 +0100 +++ libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-DMS-Get-Operating-Mode.html 1970-01-01 01:00:00.000000000 +0100 @@ -1,473 +0,0 @@ - - - - -DMS Get Operating Mode: libqmi-glib Reference Manual - - - - - - - - - - - - - - - - -
-
-
- - -
-

DMS Get Operating Mode

-

DMS Get Operating Mode

-
- -
-

Types and Values

- -
-
-

Object Hierarchy

-
    GBoxed
-    ╰── QmiMessageDmsGetOperatingModeOutput
-
-
-
-

Description

-
-
-

Functions

-
-

qmi_message_dms_get_operating_mode_output_ref ()

-
QmiMessageDmsGetOperatingModeOutput *
-qmi_message_dms_get_operating_mode_output_ref
-                               (QmiMessageDmsGetOperatingModeOutput *self);
-

Atomically increments the reference count of self - by one.

-
-

Parameters

-
----- - - - - - -

self

a QmiMessageDmsGetOperatingModeOutput.

 
-
-
-

Returns

-

the new reference to self -.

-
-

Since: 1.0

-
-
-
-

qmi_message_dms_get_operating_mode_output_unref ()

-
void
-qmi_message_dms_get_operating_mode_output_unref
-                               (QmiMessageDmsGetOperatingModeOutput *self);
-

Atomically decrements the reference count of self - by one. -If the reference count drops to 0, self - is completely disposed.

-
-

Parameters

-
----- - - - - - -

self

a QmiMessageDmsGetOperatingModeOutput.

 
-
-

Since: 1.0

-
-
-
-

qmi_message_dms_get_operating_mode_output_get_result ()

-
gboolean
-qmi_message_dms_get_operating_mode_output_get_result
-                               (QmiMessageDmsGetOperatingModeOutput *self,
-                                GError **error);
-

Get the result of the QMI operation.

-
-

Parameters

-
----- - - - - - - - - - - - - -

self

a QmiMessageDmsGetOperatingModeOutput.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the QMI operation succeeded, FALSE if error -is set.

-
-

Since: 1.0

-
-
-
-

qmi_message_dms_get_operating_mode_output_get_mode ()

-
gboolean
-qmi_message_dms_get_operating_mode_output_get_mode
-                               (QmiMessageDmsGetOperatingModeOutput *self,
-                                QmiDmsOperatingMode *value_mode,
-                                GError **error);
-

Get the 'Mode' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessageDmsGetOperatingModeOutput.

 

value_mode

a placeholder for the output QmiDmsOperatingMode, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.0

-
-
-
-

qmi_message_dms_get_operating_mode_output_get_offline_reason ()

-
gboolean
-qmi_message_dms_get_operating_mode_output_get_offline_reason
-                               (QmiMessageDmsGetOperatingModeOutput *self,
-                                QmiDmsOfflineReason *value_offline_reason,
-                                GError **error);
-

Get the 'Offline Reason' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessageDmsGetOperatingModeOutput.

 

value_offline_reason

a placeholder for the output QmiDmsOfflineReason, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.0

-
-
-
-

qmi_message_dms_get_operating_mode_output_get_hardware_restricted_mode ()

-
gboolean
-qmi_message_dms_get_operating_mode_output_get_hardware_restricted_mode
-                               (QmiMessageDmsGetOperatingModeOutput *self,
-                                gboolean *value_hardware_restricted_mode,
-                                GError **error);
-

Get the 'Hardware Restricted Mode' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessageDmsGetOperatingModeOutput.

 

value_hardware_restricted_mode

a placeholder for the output gboolean, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.0

-
-
-
-

qmi_client_dms_get_operating_mode ()

-
void
-qmi_client_dms_get_operating_mode (QmiClientDms *self,
-                                   gpointer unused,
-                                   guint timeout,
-                                   GCancellable *cancellable,
-                                   GAsyncReadyCallback callback,
-                                   gpointer user_data);
-

Asynchronously sends a Get Operating Mode request to the device.

-

When the operation is finished, callback - will be invoked in the thread-default main loop of the thread you are calling this method from.

-

You can then call qmi_client_dms_get_operating_mode_finish() to get the result of the operation.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

self

a QmiClientDms.

 

unused

NULL. This message doesn't have any input bundle.

 

timeout

maximum time to wait for the method to complete, in seconds.

 

cancellable

a GCancellable or NULL.

 

callback

a GAsyncReadyCallback to call when the request is satisfied.

 

user_data

user data to pass to callback -.

 
-
-

Since: 1.0

-
-
-
-

qmi_client_dms_get_operating_mode_finish ()

-
QmiMessageDmsGetOperatingModeOutput *
-qmi_client_dms_get_operating_mode_finish
-                               (QmiClientDms *self,
-                                GAsyncResult *res,
-                                GError **error);
-

Finishes an async operation started with qmi_client_dms_get_operating_mode().

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiClientDms.

 

res

the GAsyncResult obtained from the GAsyncReadyCallback passed to qmi_client_dms_get_operating_mode().

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

a QmiMessageDmsGetOperatingModeOutput, or NULL if error -is set. The returned value should be freed with qmi_message_dms_get_operating_mode_output_unref().

-
-

Since: 1.0

-
-
-
-

Types and Values

-
-

QmiMessageDmsGetOperatingModeOutput

-
typedef struct _QmiMessageDmsGetOperatingModeOutput QmiMessageDmsGetOperatingModeOutput;
-

The QmiMessageDmsGetOperatingModeOutput structure contains private data and should only be accessed -using the provided API.

-

Since: 1.0

-
-
-
- - - \ No newline at end of file diff -Nru libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-DMS-Get-Operating-Mode-request.html libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-DMS-Get-Operating-Mode-request.html --- libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-DMS-Get-Operating-Mode-request.html 1970-01-01 01:00:00.000000000 +0100 +++ libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-DMS-Get-Operating-Mode-request.html 2019-01-08 15:19:01.000000000 +0100 @@ -0,0 +1,473 @@ + + + + +DMS Get Operating Mode request: libqmi-glib Reference Manual + + + + + + + + + + + + + + + + +
+
+
+ + +
+

DMS Get Operating Mode request

+

DMS Get Operating Mode request

+
+ +
+

Types and Values

+ +
+
+

Object Hierarchy

+
    GBoxed
+    ╰── QmiMessageDmsGetOperatingModeOutput
+
+
+
+

Description

+
+
+

Functions

+
+

qmi_message_dms_get_operating_mode_output_ref ()

+
QmiMessageDmsGetOperatingModeOutput *
+qmi_message_dms_get_operating_mode_output_ref
+                               (QmiMessageDmsGetOperatingModeOutput *self);
+

Atomically increments the reference count of self + by one.

+
+

Parameters

+
+++++ + + + + + +

self

a QmiMessageDmsGetOperatingModeOutput.

 
+
+
+

Returns

+

the new reference to self +.

+
+

Since: 1.0

+
+
+
+

qmi_message_dms_get_operating_mode_output_unref ()

+
void
+qmi_message_dms_get_operating_mode_output_unref
+                               (QmiMessageDmsGetOperatingModeOutput *self);
+

Atomically decrements the reference count of self + by one. +If the reference count drops to 0, self + is completely disposed.

+
+

Parameters

+
+++++ + + + + + +

self

a QmiMessageDmsGetOperatingModeOutput.

 
+
+

Since: 1.0

+
+
+
+

qmi_message_dms_get_operating_mode_output_get_result ()

+
gboolean
+qmi_message_dms_get_operating_mode_output_get_result
+                               (QmiMessageDmsGetOperatingModeOutput *self,
+                                GError **error);
+

Get the result of the QMI operation.

+
+

Parameters

+
+++++ + + + + + + + + + + + + +

self

a QmiMessageDmsGetOperatingModeOutput.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the QMI operation succeeded, FALSE if error +is set.

+
+

Since: 1.0

+
+
+
+

qmi_message_dms_get_operating_mode_output_get_mode ()

+
gboolean
+qmi_message_dms_get_operating_mode_output_get_mode
+                               (QmiMessageDmsGetOperatingModeOutput *self,
+                                QmiDmsOperatingMode *value_mode,
+                                GError **error);
+

Get the 'Mode' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageDmsGetOperatingModeOutput.

 

value_mode

a placeholder for the output QmiDmsOperatingMode, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.0

+
+
+
+

qmi_message_dms_get_operating_mode_output_get_offline_reason ()

+
gboolean
+qmi_message_dms_get_operating_mode_output_get_offline_reason
+                               (QmiMessageDmsGetOperatingModeOutput *self,
+                                QmiDmsOfflineReason *value_offline_reason,
+                                GError **error);
+

Get the 'Offline Reason' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageDmsGetOperatingModeOutput.

 

value_offline_reason

a placeholder for the output QmiDmsOfflineReason, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.0

+
+
+
+

qmi_message_dms_get_operating_mode_output_get_hardware_restricted_mode ()

+
gboolean
+qmi_message_dms_get_operating_mode_output_get_hardware_restricted_mode
+                               (QmiMessageDmsGetOperatingModeOutput *self,
+                                gboolean *value_hardware_restricted_mode,
+                                GError **error);
+

Get the 'Hardware Restricted Mode' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageDmsGetOperatingModeOutput.

 

value_hardware_restricted_mode

a placeholder for the output gboolean, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.0

+
+
+
+

qmi_client_dms_get_operating_mode ()

+
void
+qmi_client_dms_get_operating_mode (QmiClientDms *self,
+                                   gpointer unused,
+                                   guint timeout,
+                                   GCancellable *cancellable,
+                                   GAsyncReadyCallback callback,
+                                   gpointer user_data);
+

Asynchronously sends a Get Operating Mode request to the device.

+

When the operation is finished, callback + will be invoked in the thread-default main loop of the thread you are calling this method from.

+

You can then call qmi_client_dms_get_operating_mode_finish() to get the result of the operation.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

self

a QmiClientDms.

 

unused

NULL. This message doesn't have any input bundle.

 

timeout

maximum time to wait for the method to complete, in seconds.

 

cancellable

a GCancellable or NULL.

 

callback

a GAsyncReadyCallback to call when the request is satisfied.

 

user_data

user data to pass to callback +.

 
+
+

Since: 1.0

+
+
+
+

qmi_client_dms_get_operating_mode_finish ()

+
QmiMessageDmsGetOperatingModeOutput *
+qmi_client_dms_get_operating_mode_finish
+                               (QmiClientDms *self,
+                                GAsyncResult *res,
+                                GError **error);
+

Finishes an async operation started with qmi_client_dms_get_operating_mode().

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiClientDms.

 

res

the GAsyncResult obtained from the GAsyncReadyCallback passed to qmi_client_dms_get_operating_mode().

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

a QmiMessageDmsGetOperatingModeOutput, or NULL if error +is set. The returned value should be freed with qmi_message_dms_get_operating_mode_output_unref().

+
+

Since: 1.0

+
+
+
+

Types and Values

+
+

QmiMessageDmsGetOperatingModeOutput

+
typedef struct _QmiMessageDmsGetOperatingModeOutput QmiMessageDmsGetOperatingModeOutput;
+

The QmiMessageDmsGetOperatingModeOutput structure contains private data and should only be accessed +using the provided API.

+

Since: 1.0

+
+
+
+ + + \ No newline at end of file diff -Nru libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-DMS-Get-Power-State.html libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-DMS-Get-Power-State.html --- libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-DMS-Get-Power-State.html 2017-03-22 12:28:29.000000000 +0100 +++ libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-DMS-Get-Power-State.html 1970-01-01 01:00:00.000000000 +0100 @@ -1,376 +0,0 @@ - - - - -DMS Get Power State: libqmi-glib Reference Manual - - - - - - - - - - - - - - - - -
-
-
- - -
-

DMS Get Power State

-

DMS Get Power State

-
- -
-

Types and Values

- -
-
-

Object Hierarchy

-
    GBoxed
-    ╰── QmiMessageDmsGetPowerStateOutput
-
-
-
-

Description

-
-
-

Functions

-
-

qmi_message_dms_get_power_state_output_ref ()

-
QmiMessageDmsGetPowerStateOutput *
-qmi_message_dms_get_power_state_output_ref
-                               (QmiMessageDmsGetPowerStateOutput *self);
-

Atomically increments the reference count of self - by one.

-
-

Parameters

-
----- - - - - - -

self

a QmiMessageDmsGetPowerStateOutput.

 
-
-
-

Returns

-

the new reference to self -.

-
-

Since: 1.0

-
-
-
-

qmi_message_dms_get_power_state_output_unref ()

-
void
-qmi_message_dms_get_power_state_output_unref
-                               (QmiMessageDmsGetPowerStateOutput *self);
-

Atomically decrements the reference count of self - by one. -If the reference count drops to 0, self - is completely disposed.

-
-

Parameters

-
----- - - - - - -

self

a QmiMessageDmsGetPowerStateOutput.

 
-
-

Since: 1.0

-
-
-
-

qmi_message_dms_get_power_state_output_get_result ()

-
gboolean
-qmi_message_dms_get_power_state_output_get_result
-                               (QmiMessageDmsGetPowerStateOutput *self,
-                                GError **error);
-

Get the result of the QMI operation.

-
-

Parameters

-
----- - - - - - - - - - - - - -

self

a QmiMessageDmsGetPowerStateOutput.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the QMI operation succeeded, FALSE if error -is set.

-
-

Since: 1.0

-
-
-
-

qmi_message_dms_get_power_state_output_get_info ()

-
gboolean
-qmi_message_dms_get_power_state_output_get_info
-                               (QmiMessageDmsGetPowerStateOutput *self,
-                                guint8 *value_info_power_state_flags,
-                                guint8 *value_info_battery_level,
-                                GError **error);
-

Get the 'Info' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - - - - - - -

self

a QmiMessageDmsGetPowerStateOutput.

 

value_info_power_state_flags

a placeholder for the output guint8, or NULL if not required.

 

value_info_battery_level

a placeholder for the output guint8, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.0

-
-
-
-

qmi_client_dms_get_power_state ()

-
void
-qmi_client_dms_get_power_state (QmiClientDms *self,
-                                gpointer unused,
-                                guint timeout,
-                                GCancellable *cancellable,
-                                GAsyncReadyCallback callback,
-                                gpointer user_data);
-

Asynchronously sends a Get Power State request to the device.

-

When the operation is finished, callback - will be invoked in the thread-default main loop of the thread you are calling this method from.

-

You can then call qmi_client_dms_get_power_state_finish() to get the result of the operation.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

self

a QmiClientDms.

 

unused

NULL. This message doesn't have any input bundle.

 

timeout

maximum time to wait for the method to complete, in seconds.

 

cancellable

a GCancellable or NULL.

 

callback

a GAsyncReadyCallback to call when the request is satisfied.

 

user_data

user data to pass to callback -.

 
-
-

Since: 1.0

-
-
-
-

qmi_client_dms_get_power_state_finish ()

-
QmiMessageDmsGetPowerStateOutput *
-qmi_client_dms_get_power_state_finish (QmiClientDms *self,
-                                       GAsyncResult *res,
-                                       GError **error);
-

Finishes an async operation started with qmi_client_dms_get_power_state().

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiClientDms.

 

res

the GAsyncResult obtained from the GAsyncReadyCallback passed to qmi_client_dms_get_power_state().

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

a QmiMessageDmsGetPowerStateOutput, or NULL if error -is set. The returned value should be freed with qmi_message_dms_get_power_state_output_unref().

-
-

Since: 1.0

-
-
-
-

Types and Values

-
-

QmiMessageDmsGetPowerStateOutput

-
typedef struct _QmiMessageDmsGetPowerStateOutput QmiMessageDmsGetPowerStateOutput;
-

The QmiMessageDmsGetPowerStateOutput structure contains private data and should only be accessed -using the provided API.

-

Since: 1.0

-
-
-
- - - \ No newline at end of file diff -Nru libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-DMS-Get-Power-State-request.html libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-DMS-Get-Power-State-request.html --- libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-DMS-Get-Power-State-request.html 1970-01-01 01:00:00.000000000 +0100 +++ libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-DMS-Get-Power-State-request.html 2019-01-08 15:19:01.000000000 +0100 @@ -0,0 +1,376 @@ + + + + +DMS Get Power State request: libqmi-glib Reference Manual + + + + + + + + + + + + + + + + +
+
+
+ + +
+

DMS Get Power State request

+

DMS Get Power State request

+
+ +
+

Types and Values

+ +
+
+

Object Hierarchy

+
    GBoxed
+    ╰── QmiMessageDmsGetPowerStateOutput
+
+
+
+

Description

+
+
+

Functions

+
+

qmi_message_dms_get_power_state_output_ref ()

+
QmiMessageDmsGetPowerStateOutput *
+qmi_message_dms_get_power_state_output_ref
+                               (QmiMessageDmsGetPowerStateOutput *self);
+

Atomically increments the reference count of self + by one.

+
+

Parameters

+
+++++ + + + + + +

self

a QmiMessageDmsGetPowerStateOutput.

 
+
+
+

Returns

+

the new reference to self +.

+
+

Since: 1.0

+
+
+
+

qmi_message_dms_get_power_state_output_unref ()

+
void
+qmi_message_dms_get_power_state_output_unref
+                               (QmiMessageDmsGetPowerStateOutput *self);
+

Atomically decrements the reference count of self + by one. +If the reference count drops to 0, self + is completely disposed.

+
+

Parameters

+
+++++ + + + + + +

self

a QmiMessageDmsGetPowerStateOutput.

 
+
+

Since: 1.0

+
+
+
+

qmi_message_dms_get_power_state_output_get_result ()

+
gboolean
+qmi_message_dms_get_power_state_output_get_result
+                               (QmiMessageDmsGetPowerStateOutput *self,
+                                GError **error);
+

Get the result of the QMI operation.

+
+

Parameters

+
+++++ + + + + + + + + + + + + +

self

a QmiMessageDmsGetPowerStateOutput.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the QMI operation succeeded, FALSE if error +is set.

+
+

Since: 1.0

+
+
+
+

qmi_message_dms_get_power_state_output_get_info ()

+
gboolean
+qmi_message_dms_get_power_state_output_get_info
+                               (QmiMessageDmsGetPowerStateOutput *self,
+                                guint8 *value_info_power_state_flags,
+                                guint8 *value_info_battery_level,
+                                GError **error);
+

Get the 'Info' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + + + + + + +

self

a QmiMessageDmsGetPowerStateOutput.

 

value_info_power_state_flags

a placeholder for the output guint8, or NULL if not required.

 

value_info_battery_level

a placeholder for the output guint8, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.0

+
+
+
+

qmi_client_dms_get_power_state ()

+
void
+qmi_client_dms_get_power_state (QmiClientDms *self,
+                                gpointer unused,
+                                guint timeout,
+                                GCancellable *cancellable,
+                                GAsyncReadyCallback callback,
+                                gpointer user_data);
+

Asynchronously sends a Get Power State request to the device.

+

When the operation is finished, callback + will be invoked in the thread-default main loop of the thread you are calling this method from.

+

You can then call qmi_client_dms_get_power_state_finish() to get the result of the operation.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

self

a QmiClientDms.

 

unused

NULL. This message doesn't have any input bundle.

 

timeout

maximum time to wait for the method to complete, in seconds.

 

cancellable

a GCancellable or NULL.

 

callback

a GAsyncReadyCallback to call when the request is satisfied.

 

user_data

user data to pass to callback +.

 
+
+

Since: 1.0

+
+
+
+

qmi_client_dms_get_power_state_finish ()

+
QmiMessageDmsGetPowerStateOutput *
+qmi_client_dms_get_power_state_finish (QmiClientDms *self,
+                                       GAsyncResult *res,
+                                       GError **error);
+

Finishes an async operation started with qmi_client_dms_get_power_state().

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiClientDms.

 

res

the GAsyncResult obtained from the GAsyncReadyCallback passed to qmi_client_dms_get_power_state().

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

a QmiMessageDmsGetPowerStateOutput, or NULL if error +is set. The returned value should be freed with qmi_message_dms_get_power_state_output_unref().

+
+

Since: 1.0

+
+
+
+

Types and Values

+
+

QmiMessageDmsGetPowerStateOutput

+
typedef struct _QmiMessageDmsGetPowerStateOutput QmiMessageDmsGetPowerStateOutput;
+

The QmiMessageDmsGetPowerStateOutput structure contains private data and should only be accessed +using the provided API.

+

Since: 1.0

+
+
+
+ + + \ No newline at end of file diff -Nru libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-DMS-Get-PRL-Version.html libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-DMS-Get-PRL-Version.html --- libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-DMS-Get-PRL-Version.html 2017-03-22 12:28:29.000000000 +0100 +++ libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-DMS-Get-PRL-Version.html 1970-01-01 01:00:00.000000000 +0100 @@ -1,421 +0,0 @@ - - - - -DMS Get PRL Version: libqmi-glib Reference Manual - - - - - - - - - - - - - - - - -
-
-
- - -
-

DMS Get PRL Version

-

DMS Get PRL Version

-
- -
-

Types and Values

- -
-
-

Object Hierarchy

-
    GBoxed
-    ╰── QmiMessageDmsGetPrlVersionOutput
-
-
-
-

Description

-
-
-

Functions

-
-

qmi_message_dms_get_prl_version_output_ref ()

-
QmiMessageDmsGetPrlVersionOutput *
-qmi_message_dms_get_prl_version_output_ref
-                               (QmiMessageDmsGetPrlVersionOutput *self);
-

Atomically increments the reference count of self - by one.

-
-

Parameters

-
----- - - - - - -

self

a QmiMessageDmsGetPrlVersionOutput.

 
-
-
-

Returns

-

the new reference to self -.

-
-

Since: 1.0

-
-
-
-

qmi_message_dms_get_prl_version_output_unref ()

-
void
-qmi_message_dms_get_prl_version_output_unref
-                               (QmiMessageDmsGetPrlVersionOutput *self);
-

Atomically decrements the reference count of self - by one. -If the reference count drops to 0, self - is completely disposed.

-
-

Parameters

-
----- - - - - - -

self

a QmiMessageDmsGetPrlVersionOutput.

 
-
-

Since: 1.0

-
-
-
-

qmi_message_dms_get_prl_version_output_get_result ()

-
gboolean
-qmi_message_dms_get_prl_version_output_get_result
-                               (QmiMessageDmsGetPrlVersionOutput *self,
-                                GError **error);
-

Get the result of the QMI operation.

-
-

Parameters

-
----- - - - - - - - - - - - - -

self

a QmiMessageDmsGetPrlVersionOutput.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the QMI operation succeeded, FALSE if error -is set.

-
-

Since: 1.0

-
-
-
-

qmi_message_dms_get_prl_version_output_get_version ()

-
gboolean
-qmi_message_dms_get_prl_version_output_get_version
-                               (QmiMessageDmsGetPrlVersionOutput *self,
-                                guint16 *value_version,
-                                GError **error);
-

Get the 'Version' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessageDmsGetPrlVersionOutput.

 

value_version

a placeholder for the output guint16, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.0

-
-
-
-

qmi_message_dms_get_prl_version_output_get_prl_only_preference ()

-
gboolean
-qmi_message_dms_get_prl_version_output_get_prl_only_preference
-                               (QmiMessageDmsGetPrlVersionOutput *self,
-                                gboolean *value_prl_only_preference,
-                                GError **error);
-

Get the 'PRL Only Preference' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessageDmsGetPrlVersionOutput.

 

value_prl_only_preference

a placeholder for the output gboolean, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.0

-
-
-
-

qmi_client_dms_get_prl_version ()

-
void
-qmi_client_dms_get_prl_version (QmiClientDms *self,
-                                gpointer unused,
-                                guint timeout,
-                                GCancellable *cancellable,
-                                GAsyncReadyCallback callback,
-                                gpointer user_data);
-

Asynchronously sends a Get PRL Version request to the device.

-

When the operation is finished, callback - will be invoked in the thread-default main loop of the thread you are calling this method from.

-

You can then call qmi_client_dms_get_prl_version_finish() to get the result of the operation.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

self

a QmiClientDms.

 

unused

NULL. This message doesn't have any input bundle.

 

timeout

maximum time to wait for the method to complete, in seconds.

 

cancellable

a GCancellable or NULL.

 

callback

a GAsyncReadyCallback to call when the request is satisfied.

 

user_data

user data to pass to callback -.

 
-
-

Since: 1.0

-
-
-
-

qmi_client_dms_get_prl_version_finish ()

-
QmiMessageDmsGetPrlVersionOutput *
-qmi_client_dms_get_prl_version_finish (QmiClientDms *self,
-                                       GAsyncResult *res,
-                                       GError **error);
-

Finishes an async operation started with qmi_client_dms_get_prl_version().

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiClientDms.

 

res

the GAsyncResult obtained from the GAsyncReadyCallback passed to qmi_client_dms_get_prl_version().

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

a QmiMessageDmsGetPrlVersionOutput, or NULL if error -is set. The returned value should be freed with qmi_message_dms_get_prl_version_output_unref().

-
-

Since: 1.0

-
-
-
-

Types and Values

-
-

QmiMessageDmsGetPrlVersionOutput

-
typedef struct _QmiMessageDmsGetPrlVersionOutput QmiMessageDmsGetPrlVersionOutput;
-

The QmiMessageDmsGetPrlVersionOutput structure contains private data and should only be accessed -using the provided API.

-

Since: 1.0

-
-
-
- - - \ No newline at end of file diff -Nru libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-DMS-Get-PRL-Version-request.html libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-DMS-Get-PRL-Version-request.html --- libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-DMS-Get-PRL-Version-request.html 1970-01-01 01:00:00.000000000 +0100 +++ libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-DMS-Get-PRL-Version-request.html 2019-01-08 15:19:01.000000000 +0100 @@ -0,0 +1,421 @@ + + + + +DMS Get PRL Version request: libqmi-glib Reference Manual + + + + + + + + + + + + + + + + +
+
+
+ + +
+

DMS Get PRL Version request

+

DMS Get PRL Version request

+
+ +
+

Types and Values

+ +
+
+

Object Hierarchy

+
    GBoxed
+    ╰── QmiMessageDmsGetPrlVersionOutput
+
+
+
+

Description

+
+
+

Functions

+
+

qmi_message_dms_get_prl_version_output_ref ()

+
QmiMessageDmsGetPrlVersionOutput *
+qmi_message_dms_get_prl_version_output_ref
+                               (QmiMessageDmsGetPrlVersionOutput *self);
+

Atomically increments the reference count of self + by one.

+
+

Parameters

+
+++++ + + + + + +

self

a QmiMessageDmsGetPrlVersionOutput.

 
+
+
+

Returns

+

the new reference to self +.

+
+

Since: 1.0

+
+
+
+

qmi_message_dms_get_prl_version_output_unref ()

+
void
+qmi_message_dms_get_prl_version_output_unref
+                               (QmiMessageDmsGetPrlVersionOutput *self);
+

Atomically decrements the reference count of self + by one. +If the reference count drops to 0, self + is completely disposed.

+
+

Parameters

+
+++++ + + + + + +

self

a QmiMessageDmsGetPrlVersionOutput.

 
+
+

Since: 1.0

+
+
+
+

qmi_message_dms_get_prl_version_output_get_result ()

+
gboolean
+qmi_message_dms_get_prl_version_output_get_result
+                               (QmiMessageDmsGetPrlVersionOutput *self,
+                                GError **error);
+

Get the result of the QMI operation.

+
+

Parameters

+
+++++ + + + + + + + + + + + + +

self

a QmiMessageDmsGetPrlVersionOutput.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the QMI operation succeeded, FALSE if error +is set.

+
+

Since: 1.0

+
+
+
+

qmi_message_dms_get_prl_version_output_get_version ()

+
gboolean
+qmi_message_dms_get_prl_version_output_get_version
+                               (QmiMessageDmsGetPrlVersionOutput *self,
+                                guint16 *value_version,
+                                GError **error);
+

Get the 'Version' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageDmsGetPrlVersionOutput.

 

value_version

a placeholder for the output guint16, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.0

+
+
+
+

qmi_message_dms_get_prl_version_output_get_prl_only_preference ()

+
gboolean
+qmi_message_dms_get_prl_version_output_get_prl_only_preference
+                               (QmiMessageDmsGetPrlVersionOutput *self,
+                                gboolean *value_prl_only_preference,
+                                GError **error);
+

Get the 'PRL Only Preference' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageDmsGetPrlVersionOutput.

 

value_prl_only_preference

a placeholder for the output gboolean, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.0

+
+
+
+

qmi_client_dms_get_prl_version ()

+
void
+qmi_client_dms_get_prl_version (QmiClientDms *self,
+                                gpointer unused,
+                                guint timeout,
+                                GCancellable *cancellable,
+                                GAsyncReadyCallback callback,
+                                gpointer user_data);
+

Asynchronously sends a Get PRL Version request to the device.

+

When the operation is finished, callback + will be invoked in the thread-default main loop of the thread you are calling this method from.

+

You can then call qmi_client_dms_get_prl_version_finish() to get the result of the operation.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

self

a QmiClientDms.

 

unused

NULL. This message doesn't have any input bundle.

 

timeout

maximum time to wait for the method to complete, in seconds.

 

cancellable

a GCancellable or NULL.

 

callback

a GAsyncReadyCallback to call when the request is satisfied.

 

user_data

user data to pass to callback +.

 
+
+

Since: 1.0

+
+
+
+

qmi_client_dms_get_prl_version_finish ()

+
QmiMessageDmsGetPrlVersionOutput *
+qmi_client_dms_get_prl_version_finish (QmiClientDms *self,
+                                       GAsyncResult *res,
+                                       GError **error);
+

Finishes an async operation started with qmi_client_dms_get_prl_version().

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiClientDms.

 

res

the GAsyncResult obtained from the GAsyncReadyCallback passed to qmi_client_dms_get_prl_version().

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

a QmiMessageDmsGetPrlVersionOutput, or NULL if error +is set. The returned value should be freed with qmi_message_dms_get_prl_version_output_unref().

+
+

Since: 1.0

+
+
+
+

Types and Values

+
+

QmiMessageDmsGetPrlVersionOutput

+
typedef struct _QmiMessageDmsGetPrlVersionOutput QmiMessageDmsGetPrlVersionOutput;
+

The QmiMessageDmsGetPrlVersionOutput structure contains private data and should only be accessed +using the provided API.

+

Since: 1.0

+
+
+
+ + + \ No newline at end of file diff -Nru libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-DMS-Get-Revision.html libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-DMS-Get-Revision.html --- libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-DMS-Get-Revision.html 2017-03-22 12:28:29.000000000 +0100 +++ libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-DMS-Get-Revision.html 1970-01-01 01:00:00.000000000 +0100 @@ -1,370 +0,0 @@ - - - - -DMS Get Revision: libqmi-glib Reference Manual - - - - - - - - - - - - - - - - -
-
-
- - -
-

DMS Get Revision

-

DMS Get Revision

-
- -
-

Types and Values

- -
-
-

Object Hierarchy

-
    GBoxed
-    ╰── QmiMessageDmsGetRevisionOutput
-
-
-
-

Description

-
-
-

Functions

-
-

qmi_message_dms_get_revision_output_ref ()

-
QmiMessageDmsGetRevisionOutput *
-qmi_message_dms_get_revision_output_ref
-                               (QmiMessageDmsGetRevisionOutput *self);
-

Atomically increments the reference count of self - by one.

-
-

Parameters

-
----- - - - - - -

self

a QmiMessageDmsGetRevisionOutput.

 
-
-
-

Returns

-

the new reference to self -.

-
-

Since: 1.0

-
-
-
-

qmi_message_dms_get_revision_output_unref ()

-
void
-qmi_message_dms_get_revision_output_unref
-                               (QmiMessageDmsGetRevisionOutput *self);
-

Atomically decrements the reference count of self - by one. -If the reference count drops to 0, self - is completely disposed.

-
-

Parameters

-
----- - - - - - -

self

a QmiMessageDmsGetRevisionOutput.

 
-
-

Since: 1.0

-
-
-
-

qmi_message_dms_get_revision_output_get_result ()

-
gboolean
-qmi_message_dms_get_revision_output_get_result
-                               (QmiMessageDmsGetRevisionOutput *self,
-                                GError **error);
-

Get the result of the QMI operation.

-
-

Parameters

-
----- - - - - - - - - - - - - -

self

a QmiMessageDmsGetRevisionOutput.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the QMI operation succeeded, FALSE if error -is set.

-
-

Since: 1.0

-
-
-
-

qmi_message_dms_get_revision_output_get_revision ()

-
gboolean
-qmi_message_dms_get_revision_output_get_revision
-                               (QmiMessageDmsGetRevisionOutput *self,
-                                const gchar **value_revision,
-                                GError **error);
-

Get the 'Revision' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessageDmsGetRevisionOutput.

 

value_revision

a placeholder for the output constant string, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.0

-
-
-
-

qmi_client_dms_get_revision ()

-
void
-qmi_client_dms_get_revision (QmiClientDms *self,
-                             gpointer unused,
-                             guint timeout,
-                             GCancellable *cancellable,
-                             GAsyncReadyCallback callback,
-                             gpointer user_data);
-

Asynchronously sends a Get Revision request to the device.

-

When the operation is finished, callback - will be invoked in the thread-default main loop of the thread you are calling this method from.

-

You can then call qmi_client_dms_get_revision_finish() to get the result of the operation.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

self

a QmiClientDms.

 

unused

NULL. This message doesn't have any input bundle.

 

timeout

maximum time to wait for the method to complete, in seconds.

 

cancellable

a GCancellable or NULL.

 

callback

a GAsyncReadyCallback to call when the request is satisfied.

 

user_data

user data to pass to callback -.

 
-
-

Since: 1.0

-
-
-
-

qmi_client_dms_get_revision_finish ()

-
QmiMessageDmsGetRevisionOutput *
-qmi_client_dms_get_revision_finish (QmiClientDms *self,
-                                    GAsyncResult *res,
-                                    GError **error);
-

Finishes an async operation started with qmi_client_dms_get_revision().

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiClientDms.

 

res

the GAsyncResult obtained from the GAsyncReadyCallback passed to qmi_client_dms_get_revision().

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

a QmiMessageDmsGetRevisionOutput, or NULL if error -is set. The returned value should be freed with qmi_message_dms_get_revision_output_unref().

-
-

Since: 1.0

-
-
-
-

Types and Values

-
-

QmiMessageDmsGetRevisionOutput

-
typedef struct _QmiMessageDmsGetRevisionOutput QmiMessageDmsGetRevisionOutput;
-

The QmiMessageDmsGetRevisionOutput structure contains private data and should only be accessed -using the provided API.

-

Since: 1.0

-
-
-
- - - \ No newline at end of file diff -Nru libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-DMS-Get-Revision-request.html libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-DMS-Get-Revision-request.html --- libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-DMS-Get-Revision-request.html 1970-01-01 01:00:00.000000000 +0100 +++ libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-DMS-Get-Revision-request.html 2019-01-08 15:19:01.000000000 +0100 @@ -0,0 +1,370 @@ + + + + +DMS Get Revision request: libqmi-glib Reference Manual + + + + + + + + + + + + + + + + +
+
+
+ + +
+

DMS Get Revision request

+

DMS Get Revision request

+
+ +
+

Types and Values

+ +
+
+

Object Hierarchy

+
    GBoxed
+    ╰── QmiMessageDmsGetRevisionOutput
+
+
+
+

Description

+
+
+

Functions

+
+

qmi_message_dms_get_revision_output_ref ()

+
QmiMessageDmsGetRevisionOutput *
+qmi_message_dms_get_revision_output_ref
+                               (QmiMessageDmsGetRevisionOutput *self);
+

Atomically increments the reference count of self + by one.

+
+

Parameters

+
+++++ + + + + + +

self

a QmiMessageDmsGetRevisionOutput.

 
+
+
+

Returns

+

the new reference to self +.

+
+

Since: 1.0

+
+
+
+

qmi_message_dms_get_revision_output_unref ()

+
void
+qmi_message_dms_get_revision_output_unref
+                               (QmiMessageDmsGetRevisionOutput *self);
+

Atomically decrements the reference count of self + by one. +If the reference count drops to 0, self + is completely disposed.

+
+

Parameters

+
+++++ + + + + + +

self

a QmiMessageDmsGetRevisionOutput.

 
+
+

Since: 1.0

+
+
+
+

qmi_message_dms_get_revision_output_get_result ()

+
gboolean
+qmi_message_dms_get_revision_output_get_result
+                               (QmiMessageDmsGetRevisionOutput *self,
+                                GError **error);
+

Get the result of the QMI operation.

+
+

Parameters

+
+++++ + + + + + + + + + + + + +

self

a QmiMessageDmsGetRevisionOutput.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the QMI operation succeeded, FALSE if error +is set.

+
+

Since: 1.0

+
+
+
+

qmi_message_dms_get_revision_output_get_revision ()

+
gboolean
+qmi_message_dms_get_revision_output_get_revision
+                               (QmiMessageDmsGetRevisionOutput *self,
+                                const gchar **value_revision,
+                                GError **error);
+

Get the 'Revision' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageDmsGetRevisionOutput.

 

value_revision

a placeholder for the output constant string, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.0

+
+
+
+

qmi_client_dms_get_revision ()

+
void
+qmi_client_dms_get_revision (QmiClientDms *self,
+                             gpointer unused,
+                             guint timeout,
+                             GCancellable *cancellable,
+                             GAsyncReadyCallback callback,
+                             gpointer user_data);
+

Asynchronously sends a Get Revision request to the device.

+

When the operation is finished, callback + will be invoked in the thread-default main loop of the thread you are calling this method from.

+

You can then call qmi_client_dms_get_revision_finish() to get the result of the operation.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

self

a QmiClientDms.

 

unused

NULL. This message doesn't have any input bundle.

 

timeout

maximum time to wait for the method to complete, in seconds.

 

cancellable

a GCancellable or NULL.

 

callback

a GAsyncReadyCallback to call when the request is satisfied.

 

user_data

user data to pass to callback +.

 
+
+

Since: 1.0

+
+
+
+

qmi_client_dms_get_revision_finish ()

+
QmiMessageDmsGetRevisionOutput *
+qmi_client_dms_get_revision_finish (QmiClientDms *self,
+                                    GAsyncResult *res,
+                                    GError **error);
+

Finishes an async operation started with qmi_client_dms_get_revision().

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiClientDms.

 

res

the GAsyncResult obtained from the GAsyncReadyCallback passed to qmi_client_dms_get_revision().

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

a QmiMessageDmsGetRevisionOutput, or NULL if error +is set. The returned value should be freed with qmi_message_dms_get_revision_output_unref().

+
+

Since: 1.0

+
+
+
+

Types and Values

+
+

QmiMessageDmsGetRevisionOutput

+
typedef struct _QmiMessageDmsGetRevisionOutput QmiMessageDmsGetRevisionOutput;
+

The QmiMessageDmsGetRevisionOutput structure contains private data and should only be accessed +using the provided API.

+

Since: 1.0

+
+
+
+ + + \ No newline at end of file diff -Nru libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-DMS-Get-Software-Version.html libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-DMS-Get-Software-Version.html --- libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-DMS-Get-Software-Version.html 2017-03-22 12:28:28.000000000 +0100 +++ libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-DMS-Get-Software-Version.html 1970-01-01 01:00:00.000000000 +0100 @@ -1,371 +0,0 @@ - - - - -DMS Get Software Version: libqmi-glib Reference Manual - - - - - - - - - - - - - - - - -
-
-
- - -
-

DMS Get Software Version

-

DMS Get Software Version

-
- -
-

Types and Values

- -
-
-

Object Hierarchy

-
    GBoxed
-    ╰── QmiMessageDmsGetSoftwareVersionOutput
-
-
-
-

Description

-
-
-

Functions

-
-

qmi_message_dms_get_software_version_output_ref ()

-
QmiMessageDmsGetSoftwareVersionOutput *
-qmi_message_dms_get_software_version_output_ref
-                               (QmiMessageDmsGetSoftwareVersionOutput *self);
-

Atomically increments the reference count of self - by one.

-
-

Parameters

-
----- - - - - - -

self

a QmiMessageDmsGetSoftwareVersionOutput.

 
-
-
-

Returns

-

the new reference to self -.

-
-

Since: 1.0

-
-
-
-

qmi_message_dms_get_software_version_output_unref ()

-
void
-qmi_message_dms_get_software_version_output_unref
-                               (QmiMessageDmsGetSoftwareVersionOutput *self);
-

Atomically decrements the reference count of self - by one. -If the reference count drops to 0, self - is completely disposed.

-
-

Parameters

-
----- - - - - - -

self

a QmiMessageDmsGetSoftwareVersionOutput.

 
-
-

Since: 1.0

-
-
-
-

qmi_message_dms_get_software_version_output_get_result ()

-
gboolean
-qmi_message_dms_get_software_version_output_get_result
-                               (QmiMessageDmsGetSoftwareVersionOutput *self,
-                                GError **error);
-

Get the result of the QMI operation.

-
-

Parameters

-
----- - - - - - - - - - - - - -

self

a QmiMessageDmsGetSoftwareVersionOutput.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the QMI operation succeeded, FALSE if error -is set.

-
-

Since: 1.0

-
-
-
-

qmi_message_dms_get_software_version_output_get_version ()

-
gboolean
-qmi_message_dms_get_software_version_output_get_version
-                               (QmiMessageDmsGetSoftwareVersionOutput *self,
-                                const gchar **value_version,
-                                GError **error);
-

Get the 'Version' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessageDmsGetSoftwareVersionOutput.

 

value_version

a placeholder for the output constant string, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.0

-
-
-
-

qmi_client_dms_get_software_version ()

-
void
-qmi_client_dms_get_software_version (QmiClientDms *self,
-                                     gpointer unused,
-                                     guint timeout,
-                                     GCancellable *cancellable,
-                                     GAsyncReadyCallback callback,
-                                     gpointer user_data);
-

Asynchronously sends a Get Software Version request to the device.

-

When the operation is finished, callback - will be invoked in the thread-default main loop of the thread you are calling this method from.

-

You can then call qmi_client_dms_get_software_version_finish() to get the result of the operation.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

self

a QmiClientDms.

 

unused

NULL. This message doesn't have any input bundle.

 

timeout

maximum time to wait for the method to complete, in seconds.

 

cancellable

a GCancellable or NULL.

 

callback

a GAsyncReadyCallback to call when the request is satisfied.

 

user_data

user data to pass to callback -.

 
-
-

Since: 1.0

-
-
-
-

qmi_client_dms_get_software_version_finish ()

-
QmiMessageDmsGetSoftwareVersionOutput *
-qmi_client_dms_get_software_version_finish
-                               (QmiClientDms *self,
-                                GAsyncResult *res,
-                                GError **error);
-

Finishes an async operation started with qmi_client_dms_get_software_version().

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiClientDms.

 

res

the GAsyncResult obtained from the GAsyncReadyCallback passed to qmi_client_dms_get_software_version().

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

a QmiMessageDmsGetSoftwareVersionOutput, or NULL if error -is set. The returned value should be freed with qmi_message_dms_get_software_version_output_unref().

-
-

Since: 1.0

-
-
-
-

Types and Values

-
-

QmiMessageDmsGetSoftwareVersionOutput

-
typedef struct _QmiMessageDmsGetSoftwareVersionOutput QmiMessageDmsGetSoftwareVersionOutput;
-

The QmiMessageDmsGetSoftwareVersionOutput structure contains private data and should only be accessed -using the provided API.

-

Since: 1.0

-
-
-
- - - \ No newline at end of file diff -Nru libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-DMS-Get-Software-Version-request.html libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-DMS-Get-Software-Version-request.html --- libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-DMS-Get-Software-Version-request.html 1970-01-01 01:00:00.000000000 +0100 +++ libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-DMS-Get-Software-Version-request.html 2019-01-08 15:19:01.000000000 +0100 @@ -0,0 +1,371 @@ + + + + +DMS Get Software Version request: libqmi-glib Reference Manual + + + + + + + + + + + + + + + + +
+
+
+ + +
+

DMS Get Software Version request

+

DMS Get Software Version request

+
+ +
+

Types and Values

+ +
+
+

Object Hierarchy

+
    GBoxed
+    ╰── QmiMessageDmsGetSoftwareVersionOutput
+
+
+
+

Description

+
+
+

Functions

+
+

qmi_message_dms_get_software_version_output_ref ()

+
QmiMessageDmsGetSoftwareVersionOutput *
+qmi_message_dms_get_software_version_output_ref
+                               (QmiMessageDmsGetSoftwareVersionOutput *self);
+

Atomically increments the reference count of self + by one.

+
+

Parameters

+
+++++ + + + + + +

self

a QmiMessageDmsGetSoftwareVersionOutput.

 
+
+
+

Returns

+

the new reference to self +.

+
+

Since: 1.0

+
+
+
+

qmi_message_dms_get_software_version_output_unref ()

+
void
+qmi_message_dms_get_software_version_output_unref
+                               (QmiMessageDmsGetSoftwareVersionOutput *self);
+

Atomically decrements the reference count of self + by one. +If the reference count drops to 0, self + is completely disposed.

+
+

Parameters

+
+++++ + + + + + +

self

a QmiMessageDmsGetSoftwareVersionOutput.

 
+
+

Since: 1.0

+
+
+
+

qmi_message_dms_get_software_version_output_get_result ()

+
gboolean
+qmi_message_dms_get_software_version_output_get_result
+                               (QmiMessageDmsGetSoftwareVersionOutput *self,
+                                GError **error);
+

Get the result of the QMI operation.

+
+

Parameters

+
+++++ + + + + + + + + + + + + +

self

a QmiMessageDmsGetSoftwareVersionOutput.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the QMI operation succeeded, FALSE if error +is set.

+
+

Since: 1.0

+
+
+
+

qmi_message_dms_get_software_version_output_get_version ()

+
gboolean
+qmi_message_dms_get_software_version_output_get_version
+                               (QmiMessageDmsGetSoftwareVersionOutput *self,
+                                const gchar **value_version,
+                                GError **error);
+

Get the 'Version' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageDmsGetSoftwareVersionOutput.

 

value_version

a placeholder for the output constant string, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.0

+
+
+
+

qmi_client_dms_get_software_version ()

+
void
+qmi_client_dms_get_software_version (QmiClientDms *self,
+                                     gpointer unused,
+                                     guint timeout,
+                                     GCancellable *cancellable,
+                                     GAsyncReadyCallback callback,
+                                     gpointer user_data);
+

Asynchronously sends a Get Software Version request to the device.

+

When the operation is finished, callback + will be invoked in the thread-default main loop of the thread you are calling this method from.

+

You can then call qmi_client_dms_get_software_version_finish() to get the result of the operation.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

self

a QmiClientDms.

 

unused

NULL. This message doesn't have any input bundle.

 

timeout

maximum time to wait for the method to complete, in seconds.

 

cancellable

a GCancellable or NULL.

 

callback

a GAsyncReadyCallback to call when the request is satisfied.

 

user_data

user data to pass to callback +.

 
+
+

Since: 1.0

+
+
+
+

qmi_client_dms_get_software_version_finish ()

+
QmiMessageDmsGetSoftwareVersionOutput *
+qmi_client_dms_get_software_version_finish
+                               (QmiClientDms *self,
+                                GAsyncResult *res,
+                                GError **error);
+

Finishes an async operation started with qmi_client_dms_get_software_version().

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiClientDms.

 

res

the GAsyncResult obtained from the GAsyncReadyCallback passed to qmi_client_dms_get_software_version().

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

a QmiMessageDmsGetSoftwareVersionOutput, or NULL if error +is set. The returned value should be freed with qmi_message_dms_get_software_version_output_unref().

+
+

Since: 1.0

+
+
+
+

Types and Values

+
+

QmiMessageDmsGetSoftwareVersionOutput

+
typedef struct _QmiMessageDmsGetSoftwareVersionOutput QmiMessageDmsGetSoftwareVersionOutput;
+

The QmiMessageDmsGetSoftwareVersionOutput structure contains private data and should only be accessed +using the provided API.

+

Since: 1.0

+
+
+
+ + + \ No newline at end of file diff -Nru libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-DMS-Get-Stored-Image-Info.html libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-DMS-Get-Stored-Image-Info.html --- libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-DMS-Get-Stored-Image-Info.html 2017-03-22 12:28:29.000000000 +0100 +++ libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-DMS-Get-Stored-Image-Info.html 1970-01-01 01:00:00.000000000 +0100 @@ -1,739 +0,0 @@ - - - - -DMS Get Stored Image Info: libqmi-glib Reference Manual - - - - - - - - - - - - - - - - -
-
-
- - -
-

DMS Get Stored Image Info

-

DMS Get Stored Image Info

-
- - -
-

Object Hierarchy

-
    GBoxed
-    ├── QmiMessageDmsGetStoredImageInfoInput
-    ╰── QmiMessageDmsGetStoredImageInfoOutput
-
-
-
-

Description

-
-
-

Functions

-
-

qmi_message_dms_get_stored_image_info_input_new ()

-
QmiMessageDmsGetStoredImageInfoInput *
-qmi_message_dms_get_stored_image_info_input_new
-                               (void);
-

Allocates a new QmiMessageDmsGetStoredImageInfoInput.

-
-

Returns

-

the newly created QmiMessageDmsGetStoredImageInfoInput. The returned value should be freed with qmi_message_dms_get_stored_image_info_input_unref().

-
-

Since: 1.0

-
-
-
-

qmi_message_dms_get_stored_image_info_input_ref ()

-
QmiMessageDmsGetStoredImageInfoInput *
-qmi_message_dms_get_stored_image_info_input_ref
-                               (QmiMessageDmsGetStoredImageInfoInput *self);
-

Atomically increments the reference count of self - by one.

-
-

Parameters

-
----- - - - - - -

self

a QmiMessageDmsGetStoredImageInfoInput.

 
-
-
-

Returns

-

the new reference to self -.

-
-

Since: 1.0

-
-
-
-

qmi_message_dms_get_stored_image_info_input_unref ()

-
void
-qmi_message_dms_get_stored_image_info_input_unref
-                               (QmiMessageDmsGetStoredImageInfoInput *self);
-

Atomically decrements the reference count of self - by one. -If the reference count drops to 0, self - is completely disposed.

-
-

Parameters

-
----- - - - - - -

self

a QmiMessageDmsGetStoredImageInfoInput.

 
-
-

Since: 1.0

-
-
-
-

qmi_message_dms_get_stored_image_info_input_get_image ()

-
gboolean
-qmi_message_dms_get_stored_image_info_input_get_image
-                               (QmiMessageDmsGetStoredImageInfoInput *self,
-                                QmiMessageDmsGetStoredImageInfoInputImage *value_image,
-                                GError **error);
-

Get the 'Image' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessageDmsGetStoredImageInfoInput.

 

value_image

a placeholder for the output constant QmiMessageDmsGetStoredImageInfoInputImage, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.0

-
-
-
-

qmi_message_dms_get_stored_image_info_input_set_image ()

-
gboolean
-qmi_message_dms_get_stored_image_info_input_set_image
-                               (QmiMessageDmsGetStoredImageInfoInput *self,
-                                const QmiMessageDmsGetStoredImageInfoInputImage *value_image,
-                                GError **error);
-

Set the 'Image' field in the message.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessageDmsGetStoredImageInfoInput.

 

value_image

the address of the QmiMessageDmsGetStoredImageInfoInputImage to set.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if value -was successfully set, FALSE otherwise.

-
-

Since: 1.0

-
-
-
-

qmi_message_dms_get_stored_image_info_output_ref ()

-
QmiMessageDmsGetStoredImageInfoOutput *
-qmi_message_dms_get_stored_image_info_output_ref
-                               (QmiMessageDmsGetStoredImageInfoOutput *self);
-

Atomically increments the reference count of self - by one.

-
-

Parameters

-
----- - - - - - -

self

a QmiMessageDmsGetStoredImageInfoOutput.

 
-
-
-

Returns

-

the new reference to self -.

-
-

Since: 1.0

-
-
-
-

qmi_message_dms_get_stored_image_info_output_unref ()

-
void
-qmi_message_dms_get_stored_image_info_output_unref
-                               (QmiMessageDmsGetStoredImageInfoOutput *self);
-

Atomically decrements the reference count of self - by one. -If the reference count drops to 0, self - is completely disposed.

-
-

Parameters

-
----- - - - - - -

self

a QmiMessageDmsGetStoredImageInfoOutput.

 
-
-

Since: 1.0

-
-
-
-

qmi_message_dms_get_stored_image_info_output_get_result ()

-
gboolean
-qmi_message_dms_get_stored_image_info_output_get_result
-                               (QmiMessageDmsGetStoredImageInfoOutput *self,
-                                GError **error);
-

Get the result of the QMI operation.

-
-

Parameters

-
----- - - - - - - - - - - - - -

self

a QmiMessageDmsGetStoredImageInfoOutput.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the QMI operation succeeded, FALSE if error -is set.

-
-

Since: 1.0

-
-
-
-

qmi_message_dms_get_stored_image_info_output_get_boot_version ()

-
gboolean
-qmi_message_dms_get_stored_image_info_output_get_boot_version
-                               (QmiMessageDmsGetStoredImageInfoOutput *self,
-                                guint16 *value_boot_version_major_version,
-                                guint16 *value_boot_version_minor_version,
-                                GError **error);
-

Get the 'Boot Version' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - - - - - - -

self

a QmiMessageDmsGetStoredImageInfoOutput.

 

value_boot_version_major_version

a placeholder for the output guint16, or NULL if not required.

 

value_boot_version_minor_version

a placeholder for the output guint16, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.0

-
-
-
-

qmi_message_dms_get_stored_image_info_output_get_pri_version ()

-
gboolean
-qmi_message_dms_get_stored_image_info_output_get_pri_version
-                               (QmiMessageDmsGetStoredImageInfoOutput *self,
-                                guint32 *value_pri_version_pri_version,
-                                const gchar **value_pri_version_pri_info,
-                                GError **error);
-

Get the 'PRI Version' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - - - - - - -

self

a QmiMessageDmsGetStoredImageInfoOutput.

 

value_pri_version_pri_version

a placeholder for the output guint32, or NULL if not required.

 

value_pri_version_pri_info

a placeholder for the output constant string, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.0

-
-
-
-

qmi_message_dms_get_stored_image_info_output_get_oem_lock_id ()

-
gboolean
-qmi_message_dms_get_stored_image_info_output_get_oem_lock_id
-                               (QmiMessageDmsGetStoredImageInfoOutput *self,
-                                guint32 *value_oem_lock_id,
-                                GError **error);
-

Get the 'OEM Lock ID' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessageDmsGetStoredImageInfoOutput.

 

value_oem_lock_id

a placeholder for the output guint32, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.0

-
-
-
-

qmi_client_dms_get_stored_image_info ()

-
void
-qmi_client_dms_get_stored_image_info (QmiClientDms *self,
-                                      QmiMessageDmsGetStoredImageInfoInput *input,
-                                      guint timeout,
-                                      GCancellable *cancellable,
-                                      GAsyncReadyCallback callback,
-                                      gpointer user_data);
-

Asynchronously sends a Get Stored Image Info request to the device.

-

When the operation is finished, callback - will be invoked in the thread-default main loop of the thread you are calling this method from.

-

You can then call qmi_client_dms_get_stored_image_info_finish() to get the result of the operation.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

self

a QmiClientDms.

 

input

a QmiMessageDmsGetStoredImageInfoInput.

 

timeout

maximum time to wait for the method to complete, in seconds.

 

cancellable

a GCancellable or NULL.

 

callback

a GAsyncReadyCallback to call when the request is satisfied.

 

user_data

user data to pass to callback -.

 
-
-

Since: 1.0

-
-
-
-

qmi_client_dms_get_stored_image_info_finish ()

-
QmiMessageDmsGetStoredImageInfoOutput *
-qmi_client_dms_get_stored_image_info_finish
-                               (QmiClientDms *self,
-                                GAsyncResult *res,
-                                GError **error);
-

Finishes an async operation started with qmi_client_dms_get_stored_image_info().

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiClientDms.

 

res

the GAsyncResult obtained from the GAsyncReadyCallback passed to qmi_client_dms_get_stored_image_info().

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

a QmiMessageDmsGetStoredImageInfoOutput, or NULL if error -is set. The returned value should be freed with qmi_message_dms_get_stored_image_info_output_unref().

-
-

Since: 1.0

-
-
-
-

Types and Values

-
-

QmiMessageDmsGetStoredImageInfoInput

-
typedef struct _QmiMessageDmsGetStoredImageInfoInput QmiMessageDmsGetStoredImageInfoInput;
-

The QmiMessageDmsGetStoredImageInfoInput structure contains private data and should only be accessed -using the provided API.

-

Since: 1.0

-
-
-
-

QmiMessageDmsGetStoredImageInfoInputImage

-
typedef struct {
-    QmiDmsFirmwareImageType type;
-    GArray *unique_id;
-    gchar *build_id;
-} QmiMessageDmsGetStoredImageInfoInputImage;
-
-

A QmiMessageDmsGetStoredImageInfoInputImage struct.

-
-

Members

-
----- - - - - - - - - - - - - - - - - - -

QmiDmsFirmwareImageType type;

a QmiDmsFirmwareImageType.

 

GArray *unique_id;

a GArray of guint8 elements.

 

gchar *build_id;

a string.

 
-
-

Since: 1.0

-
-
-
-

QmiMessageDmsGetStoredImageInfoOutput

-
typedef struct _QmiMessageDmsGetStoredImageInfoOutput QmiMessageDmsGetStoredImageInfoOutput;
-

The QmiMessageDmsGetStoredImageInfoOutput structure contains private data and should only be accessed -using the provided API.

-

Since: 1.0

-
-
-
- - - \ No newline at end of file diff -Nru libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-DMS-Get-Stored-Image-Info-request.html libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-DMS-Get-Stored-Image-Info-request.html --- libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-DMS-Get-Stored-Image-Info-request.html 1970-01-01 01:00:00.000000000 +0100 +++ libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-DMS-Get-Stored-Image-Info-request.html 2019-01-08 15:19:01.000000000 +0100 @@ -0,0 +1,739 @@ + + + + +DMS Get Stored Image Info request: libqmi-glib Reference Manual + + + + + + + + + + + + + + + + +
+
+
+ + +
+

DMS Get Stored Image Info request

+

DMS Get Stored Image Info request

+
+ + +
+

Object Hierarchy

+
    GBoxed
+    ├── QmiMessageDmsGetStoredImageInfoInput
+    ╰── QmiMessageDmsGetStoredImageInfoOutput
+
+
+
+

Description

+
+
+

Functions

+
+

qmi_message_dms_get_stored_image_info_input_new ()

+
QmiMessageDmsGetStoredImageInfoInput *
+qmi_message_dms_get_stored_image_info_input_new
+                               (void);
+

Allocates a new QmiMessageDmsGetStoredImageInfoInput.

+
+

Returns

+

the newly created QmiMessageDmsGetStoredImageInfoInput. The returned value should be freed with qmi_message_dms_get_stored_image_info_input_unref().

+
+

Since: 1.0

+
+
+
+

qmi_message_dms_get_stored_image_info_input_ref ()

+
QmiMessageDmsGetStoredImageInfoInput *
+qmi_message_dms_get_stored_image_info_input_ref
+                               (QmiMessageDmsGetStoredImageInfoInput *self);
+

Atomically increments the reference count of self + by one.

+
+

Parameters

+
+++++ + + + + + +

self

a QmiMessageDmsGetStoredImageInfoInput.

 
+
+
+

Returns

+

the new reference to self +.

+
+

Since: 1.0

+
+
+
+

qmi_message_dms_get_stored_image_info_input_unref ()

+
void
+qmi_message_dms_get_stored_image_info_input_unref
+                               (QmiMessageDmsGetStoredImageInfoInput *self);
+

Atomically decrements the reference count of self + by one. +If the reference count drops to 0, self + is completely disposed.

+
+

Parameters

+
+++++ + + + + + +

self

a QmiMessageDmsGetStoredImageInfoInput.

 
+
+

Since: 1.0

+
+
+
+

qmi_message_dms_get_stored_image_info_input_get_image ()

+
gboolean
+qmi_message_dms_get_stored_image_info_input_get_image
+                               (QmiMessageDmsGetStoredImageInfoInput *self,
+                                QmiMessageDmsGetStoredImageInfoInputImage *value_image,
+                                GError **error);
+

Get the 'Image' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageDmsGetStoredImageInfoInput.

 

value_image

a placeholder for the output constant QmiMessageDmsGetStoredImageInfoInputImage, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.0

+
+
+
+

qmi_message_dms_get_stored_image_info_input_set_image ()

+
gboolean
+qmi_message_dms_get_stored_image_info_input_set_image
+                               (QmiMessageDmsGetStoredImageInfoInput *self,
+                                const QmiMessageDmsGetStoredImageInfoInputImage *value_image,
+                                GError **error);
+

Set the 'Image' field in the message.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageDmsGetStoredImageInfoInput.

 

value_image

the address of the QmiMessageDmsGetStoredImageInfoInputImage to set.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if value +was successfully set, FALSE otherwise.

+
+

Since: 1.0

+
+
+
+

qmi_message_dms_get_stored_image_info_output_ref ()

+
QmiMessageDmsGetStoredImageInfoOutput *
+qmi_message_dms_get_stored_image_info_output_ref
+                               (QmiMessageDmsGetStoredImageInfoOutput *self);
+

Atomically increments the reference count of self + by one.

+
+

Parameters

+
+++++ + + + + + +

self

a QmiMessageDmsGetStoredImageInfoOutput.

 
+
+
+

Returns

+

the new reference to self +.

+
+

Since: 1.0

+
+
+
+

qmi_message_dms_get_stored_image_info_output_unref ()

+
void
+qmi_message_dms_get_stored_image_info_output_unref
+                               (QmiMessageDmsGetStoredImageInfoOutput *self);
+

Atomically decrements the reference count of self + by one. +If the reference count drops to 0, self + is completely disposed.

+
+

Parameters

+
+++++ + + + + + +

self

a QmiMessageDmsGetStoredImageInfoOutput.

 
+
+

Since: 1.0

+
+
+
+

qmi_message_dms_get_stored_image_info_output_get_result ()

+
gboolean
+qmi_message_dms_get_stored_image_info_output_get_result
+                               (QmiMessageDmsGetStoredImageInfoOutput *self,
+                                GError **error);
+

Get the result of the QMI operation.

+
+

Parameters

+
+++++ + + + + + + + + + + + + +

self

a QmiMessageDmsGetStoredImageInfoOutput.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the QMI operation succeeded, FALSE if error +is set.

+
+

Since: 1.0

+
+
+
+

qmi_message_dms_get_stored_image_info_output_get_boot_version ()

+
gboolean
+qmi_message_dms_get_stored_image_info_output_get_boot_version
+                               (QmiMessageDmsGetStoredImageInfoOutput *self,
+                                guint16 *value_boot_version_major_version,
+                                guint16 *value_boot_version_minor_version,
+                                GError **error);
+

Get the 'Boot Version' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + + + + + + +

self

a QmiMessageDmsGetStoredImageInfoOutput.

 

value_boot_version_major_version

a placeholder for the output guint16, or NULL if not required.

 

value_boot_version_minor_version

a placeholder for the output guint16, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.0

+
+
+
+

qmi_message_dms_get_stored_image_info_output_get_pri_version ()

+
gboolean
+qmi_message_dms_get_stored_image_info_output_get_pri_version
+                               (QmiMessageDmsGetStoredImageInfoOutput *self,
+                                guint32 *value_pri_version_pri_version,
+                                const gchar **value_pri_version_pri_info,
+                                GError **error);
+

Get the 'PRI Version' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + + + + + + +

self

a QmiMessageDmsGetStoredImageInfoOutput.

 

value_pri_version_pri_version

a placeholder for the output guint32, or NULL if not required.

 

value_pri_version_pri_info

a placeholder for the output constant string, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.0

+
+
+
+

qmi_message_dms_get_stored_image_info_output_get_oem_lock_id ()

+
gboolean
+qmi_message_dms_get_stored_image_info_output_get_oem_lock_id
+                               (QmiMessageDmsGetStoredImageInfoOutput *self,
+                                guint32 *value_oem_lock_id,
+                                GError **error);
+

Get the 'OEM Lock ID' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageDmsGetStoredImageInfoOutput.

 

value_oem_lock_id

a placeholder for the output guint32, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.0

+
+
+
+

qmi_client_dms_get_stored_image_info ()

+
void
+qmi_client_dms_get_stored_image_info (QmiClientDms *self,
+                                      QmiMessageDmsGetStoredImageInfoInput *input,
+                                      guint timeout,
+                                      GCancellable *cancellable,
+                                      GAsyncReadyCallback callback,
+                                      gpointer user_data);
+

Asynchronously sends a Get Stored Image Info request to the device.

+

When the operation is finished, callback + will be invoked in the thread-default main loop of the thread you are calling this method from.

+

You can then call qmi_client_dms_get_stored_image_info_finish() to get the result of the operation.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

self

a QmiClientDms.

 

input

a QmiMessageDmsGetStoredImageInfoInput.

 

timeout

maximum time to wait for the method to complete, in seconds.

 

cancellable

a GCancellable or NULL.

 

callback

a GAsyncReadyCallback to call when the request is satisfied.

 

user_data

user data to pass to callback +.

 
+
+

Since: 1.0

+
+
+
+

qmi_client_dms_get_stored_image_info_finish ()

+
QmiMessageDmsGetStoredImageInfoOutput *
+qmi_client_dms_get_stored_image_info_finish
+                               (QmiClientDms *self,
+                                GAsyncResult *res,
+                                GError **error);
+

Finishes an async operation started with qmi_client_dms_get_stored_image_info().

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiClientDms.

 

res

the GAsyncResult obtained from the GAsyncReadyCallback passed to qmi_client_dms_get_stored_image_info().

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

a QmiMessageDmsGetStoredImageInfoOutput, or NULL if error +is set. The returned value should be freed with qmi_message_dms_get_stored_image_info_output_unref().

+
+

Since: 1.0

+
+
+
+

Types and Values

+
+

QmiMessageDmsGetStoredImageInfoInput

+
typedef struct _QmiMessageDmsGetStoredImageInfoInput QmiMessageDmsGetStoredImageInfoInput;
+

The QmiMessageDmsGetStoredImageInfoInput structure contains private data and should only be accessed +using the provided API.

+

Since: 1.0

+
+
+
+

QmiMessageDmsGetStoredImageInfoInputImage

+
typedef struct {
+    QmiDmsFirmwareImageType type;
+    GArray *unique_id;
+    gchar *build_id;
+} QmiMessageDmsGetStoredImageInfoInputImage;
+
+

A QmiMessageDmsGetStoredImageInfoInputImage struct.

+
+

Members

+
+++++ + + + + + + + + + + + + + + + + + +

QmiDmsFirmwareImageType type;

a QmiDmsFirmwareImageType.

 

GArray *unique_id;

a GArray of guint8 elements.

 

gchar *build_id;

a string.

 
+
+

Since: 1.0

+
+
+
+

QmiMessageDmsGetStoredImageInfoOutput

+
typedef struct _QmiMessageDmsGetStoredImageInfoOutput QmiMessageDmsGetStoredImageInfoOutput;
+

The QmiMessageDmsGetStoredImageInfoOutput structure contains private data and should only be accessed +using the provided API.

+

Since: 1.0

+
+
+
+ + + \ No newline at end of file diff -Nru libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-DMS-Get-Supported-Messages.html libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-DMS-Get-Supported-Messages.html --- libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-DMS-Get-Supported-Messages.html 2017-03-22 12:28:28.000000000 +0100 +++ libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-DMS-Get-Supported-Messages.html 1970-01-01 01:00:00.000000000 +0100 @@ -1,372 +0,0 @@ - - - - -DMS Get Supported Messages: libqmi-glib Reference Manual - - - - - - - - - - - - - - - - -
-
-
- - -
-

DMS Get Supported Messages

-

DMS Get Supported Messages

-
- -
-

Types and Values

- -
-
-

Object Hierarchy

-
    GBoxed
-    ╰── QmiMessageDmsGetSupportedMessagesOutput
-
-
-
-

Description

-
-
-

Functions

-
-

qmi_message_dms_get_supported_messages_output_ref ()

-
QmiMessageDmsGetSupportedMessagesOutput *
-qmi_message_dms_get_supported_messages_output_ref
-                               (QmiMessageDmsGetSupportedMessagesOutput *self);
-

Atomically increments the reference count of self - by one.

-
-

Parameters

-
----- - - - - - -

self

a QmiMessageDmsGetSupportedMessagesOutput.

 
-
-
-

Returns

-

the new reference to self -.

-
-

Since: 1.14

-
-
-
-

qmi_message_dms_get_supported_messages_output_unref ()

-
void
-qmi_message_dms_get_supported_messages_output_unref
-                               (QmiMessageDmsGetSupportedMessagesOutput *self);
-

Atomically decrements the reference count of self - by one. -If the reference count drops to 0, self - is completely disposed.

-
-

Parameters

-
----- - - - - - -

self

a QmiMessageDmsGetSupportedMessagesOutput.

 
-
-

Since: 1.14

-
-
-
-

qmi_message_dms_get_supported_messages_output_get_result ()

-
gboolean
-qmi_message_dms_get_supported_messages_output_get_result
-                               (QmiMessageDmsGetSupportedMessagesOutput *self,
-                                GError **error);
-

Get the result of the QMI operation.

-
-

Parameters

-
----- - - - - - - - - - - - - -

self

a QmiMessageDmsGetSupportedMessagesOutput.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the QMI operation succeeded, FALSE if error -is set.

-
-

Since: 1.14

-
-
-
-

qmi_message_dms_get_supported_messages_output_get_list ()

-
gboolean
-qmi_message_dms_get_supported_messages_output_get_list
-                               (QmiMessageDmsGetSupportedMessagesOutput *self,
-                                GArray **value_list,
-                                GError **error);
-

Get the 'List' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessageDmsGetSupportedMessagesOutput.

 

value_list

a placeholder for the output GArray of guint8 elements, or NULL if not required. Do not free it, it is owned by self -.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.14

-
-
-
-

qmi_client_dms_get_supported_messages ()

-
void
-qmi_client_dms_get_supported_messages (QmiClientDms *self,
-                                       gpointer unused,
-                                       guint timeout,
-                                       GCancellable *cancellable,
-                                       GAsyncReadyCallback callback,
-                                       gpointer user_data);
-

Asynchronously sends a Get Supported Messages request to the device.

-

When the operation is finished, callback - will be invoked in the thread-default main loop of the thread you are calling this method from.

-

You can then call qmi_client_dms_get_supported_messages_finish() to get the result of the operation.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

self

a QmiClientDms.

 

unused

NULL. This message doesn't have any input bundle.

 

timeout

maximum time to wait for the method to complete, in seconds.

 

cancellable

a GCancellable or NULL.

 

callback

a GAsyncReadyCallback to call when the request is satisfied.

 

user_data

user data to pass to callback -.

 
-
-

Since: 1.14

-
-
-
-

qmi_client_dms_get_supported_messages_finish ()

-
QmiMessageDmsGetSupportedMessagesOutput *
-qmi_client_dms_get_supported_messages_finish
-                               (QmiClientDms *self,
-                                GAsyncResult *res,
-                                GError **error);
-

Finishes an async operation started with qmi_client_dms_get_supported_messages().

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiClientDms.

 

res

the GAsyncResult obtained from the GAsyncReadyCallback passed to qmi_client_dms_get_supported_messages().

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

a QmiMessageDmsGetSupportedMessagesOutput, or NULL if error -is set. The returned value should be freed with qmi_message_dms_get_supported_messages_output_unref().

-
-

Since: 1.14

-
-
-
-

Types and Values

-
-

QmiMessageDmsGetSupportedMessagesOutput

-
typedef struct _QmiMessageDmsGetSupportedMessagesOutput QmiMessageDmsGetSupportedMessagesOutput;
-

The QmiMessageDmsGetSupportedMessagesOutput structure contains private data and should only be accessed -using the provided API.

-

Since: 1.14

-
-
-
- - - \ No newline at end of file diff -Nru libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-DMS-Get-Supported-Messages-request.html libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-DMS-Get-Supported-Messages-request.html --- libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-DMS-Get-Supported-Messages-request.html 1970-01-01 01:00:00.000000000 +0100 +++ libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-DMS-Get-Supported-Messages-request.html 2019-01-08 15:19:01.000000000 +0100 @@ -0,0 +1,372 @@ + + + + +DMS Get Supported Messages request: libqmi-glib Reference Manual + + + + + + + + + + + + + + + + +
+
+
+ + +
+

DMS Get Supported Messages request

+

DMS Get Supported Messages request

+
+ +
+

Types and Values

+ +
+
+

Object Hierarchy

+
    GBoxed
+    ╰── QmiMessageDmsGetSupportedMessagesOutput
+
+
+
+

Description

+
+
+

Functions

+
+

qmi_message_dms_get_supported_messages_output_ref ()

+
QmiMessageDmsGetSupportedMessagesOutput *
+qmi_message_dms_get_supported_messages_output_ref
+                               (QmiMessageDmsGetSupportedMessagesOutput *self);
+

Atomically increments the reference count of self + by one.

+
+

Parameters

+
+++++ + + + + + +

self

a QmiMessageDmsGetSupportedMessagesOutput.

 
+
+
+

Returns

+

the new reference to self +.

+
+

Since: 1.14

+
+
+
+

qmi_message_dms_get_supported_messages_output_unref ()

+
void
+qmi_message_dms_get_supported_messages_output_unref
+                               (QmiMessageDmsGetSupportedMessagesOutput *self);
+

Atomically decrements the reference count of self + by one. +If the reference count drops to 0, self + is completely disposed.

+
+

Parameters

+
+++++ + + + + + +

self

a QmiMessageDmsGetSupportedMessagesOutput.

 
+
+

Since: 1.14

+
+
+
+

qmi_message_dms_get_supported_messages_output_get_result ()

+
gboolean
+qmi_message_dms_get_supported_messages_output_get_result
+                               (QmiMessageDmsGetSupportedMessagesOutput *self,
+                                GError **error);
+

Get the result of the QMI operation.

+
+

Parameters

+
+++++ + + + + + + + + + + + + +

self

a QmiMessageDmsGetSupportedMessagesOutput.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the QMI operation succeeded, FALSE if error +is set.

+
+

Since: 1.14

+
+
+
+

qmi_message_dms_get_supported_messages_output_get_list ()

+
gboolean
+qmi_message_dms_get_supported_messages_output_get_list
+                               (QmiMessageDmsGetSupportedMessagesOutput *self,
+                                GArray **value_list,
+                                GError **error);
+

Get the 'List' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageDmsGetSupportedMessagesOutput.

 

value_list

a placeholder for the output GArray of guint8 elements, or NULL if not required. Do not free it, it is owned by self +.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.14

+
+
+
+

qmi_client_dms_get_supported_messages ()

+
void
+qmi_client_dms_get_supported_messages (QmiClientDms *self,
+                                       gpointer unused,
+                                       guint timeout,
+                                       GCancellable *cancellable,
+                                       GAsyncReadyCallback callback,
+                                       gpointer user_data);
+

Asynchronously sends a Get Supported Messages request to the device.

+

When the operation is finished, callback + will be invoked in the thread-default main loop of the thread you are calling this method from.

+

You can then call qmi_client_dms_get_supported_messages_finish() to get the result of the operation.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

self

a QmiClientDms.

 

unused

NULL. This message doesn't have any input bundle.

 

timeout

maximum time to wait for the method to complete, in seconds.

 

cancellable

a GCancellable or NULL.

 

callback

a GAsyncReadyCallback to call when the request is satisfied.

 

user_data

user data to pass to callback +.

 
+
+

Since: 1.14

+
+
+
+

qmi_client_dms_get_supported_messages_finish ()

+
QmiMessageDmsGetSupportedMessagesOutput *
+qmi_client_dms_get_supported_messages_finish
+                               (QmiClientDms *self,
+                                GAsyncResult *res,
+                                GError **error);
+

Finishes an async operation started with qmi_client_dms_get_supported_messages().

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiClientDms.

 

res

the GAsyncResult obtained from the GAsyncReadyCallback passed to qmi_client_dms_get_supported_messages().

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

a QmiMessageDmsGetSupportedMessagesOutput, or NULL if error +is set. The returned value should be freed with qmi_message_dms_get_supported_messages_output_unref().

+
+

Since: 1.14

+
+
+
+

Types and Values

+
+

QmiMessageDmsGetSupportedMessagesOutput

+
typedef struct _QmiMessageDmsGetSupportedMessagesOutput QmiMessageDmsGetSupportedMessagesOutput;
+

The QmiMessageDmsGetSupportedMessagesOutput structure contains private data and should only be accessed +using the provided API.

+

Since: 1.14

+
+
+
+ + + \ No newline at end of file diff -Nru libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-DMS-Get-Time.html libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-DMS-Get-Time.html --- libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-DMS-Get-Time.html 2017-03-22 12:28:29.000000000 +0100 +++ libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-DMS-Get-Time.html 1970-01-01 01:00:00.000000000 +0100 @@ -1,476 +0,0 @@ - - - - -DMS Get Time: libqmi-glib Reference Manual - - - - - - - - - - - - - - - - -
-
-
- - -
-

DMS Get Time

-

DMS Get Time

-
- -
-

Types and Values

-
---- - - - - -
 QmiMessageDmsGetTimeOutput
-
-
-

Object Hierarchy

-
    GBoxed
-    ╰── QmiMessageDmsGetTimeOutput
-
-
-
-

Description

-
-
-

Functions

-
-

qmi_message_dms_get_time_output_ref ()

-
QmiMessageDmsGetTimeOutput *
-qmi_message_dms_get_time_output_ref (QmiMessageDmsGetTimeOutput *self);
-

Atomically increments the reference count of self - by one.

-
-

Parameters

-
----- - - - - - -

self

a QmiMessageDmsGetTimeOutput.

 
-
-
-

Returns

-

the new reference to self -.

-
-

Since: 1.0

-
-
-
-

qmi_message_dms_get_time_output_unref ()

-
void
-qmi_message_dms_get_time_output_unref (QmiMessageDmsGetTimeOutput *self);
-

Atomically decrements the reference count of self - by one. -If the reference count drops to 0, self - is completely disposed.

-
-

Parameters

-
----- - - - - - -

self

a QmiMessageDmsGetTimeOutput.

 
-
-

Since: 1.0

-
-
-
-

qmi_message_dms_get_time_output_get_result ()

-
gboolean
-qmi_message_dms_get_time_output_get_result
-                               (QmiMessageDmsGetTimeOutput *self,
-                                GError **error);
-

Get the result of the QMI operation.

-
-

Parameters

-
----- - - - - - - - - - - - - -

self

a QmiMessageDmsGetTimeOutput.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the QMI operation succeeded, FALSE if error -is set.

-
-

Since: 1.0

-
-
-
-

qmi_message_dms_get_time_output_get_device_time ()

-
gboolean
-qmi_message_dms_get_time_output_get_device_time
-                               (QmiMessageDmsGetTimeOutput *self,
-                                guint64 *value_device_time_time_count,
-                                QmiDmsTimeSource *value_device_time_time_source,
-                                GError **error);
-

Get the 'Device Time' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - - - - - - -

self

a QmiMessageDmsGetTimeOutput.

 

value_device_time_time_count

a placeholder for the output guint64, or NULL if not required.

 

value_device_time_time_source

a placeholder for the output QmiDmsTimeSource, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.0

-
-
-
-

qmi_message_dms_get_time_output_get_system_time ()

-
gboolean
-qmi_message_dms_get_time_output_get_system_time
-                               (QmiMessageDmsGetTimeOutput *self,
-                                guint64 *value_system_time,
-                                GError **error);
-

Get the 'System Time' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessageDmsGetTimeOutput.

 

value_system_time

a placeholder for the output guint64, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.0

-
-
-
-

qmi_message_dms_get_time_output_get_user_time ()

-
gboolean
-qmi_message_dms_get_time_output_get_user_time
-                               (QmiMessageDmsGetTimeOutput *self,
-                                guint64 *value_user_time,
-                                GError **error);
-

Get the 'User Time' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessageDmsGetTimeOutput.

 

value_user_time

a placeholder for the output guint64, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.0

-
-
-
-

qmi_client_dms_get_time ()

-
void
-qmi_client_dms_get_time (QmiClientDms *self,
-                         gpointer unused,
-                         guint timeout,
-                         GCancellable *cancellable,
-                         GAsyncReadyCallback callback,
-                         gpointer user_data);
-

Asynchronously sends a Get Time request to the device.

-

When the operation is finished, callback - will be invoked in the thread-default main loop of the thread you are calling this method from.

-

You can then call qmi_client_dms_get_time_finish() to get the result of the operation.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

self

a QmiClientDms.

 

unused

NULL. This message doesn't have any input bundle.

 

timeout

maximum time to wait for the method to complete, in seconds.

 

cancellable

a GCancellable or NULL.

 

callback

a GAsyncReadyCallback to call when the request is satisfied.

 

user_data

user data to pass to callback -.

 
-
-

Since: 1.0

-
-
-
-

qmi_client_dms_get_time_finish ()

-
QmiMessageDmsGetTimeOutput *
-qmi_client_dms_get_time_finish (QmiClientDms *self,
-                                GAsyncResult *res,
-                                GError **error);
-

Finishes an async operation started with qmi_client_dms_get_time().

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiClientDms.

 

res

the GAsyncResult obtained from the GAsyncReadyCallback passed to qmi_client_dms_get_time().

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

a QmiMessageDmsGetTimeOutput, or NULL if error -is set. The returned value should be freed with qmi_message_dms_get_time_output_unref().

-
-

Since: 1.0

-
-
-
-

Types and Values

-
-

QmiMessageDmsGetTimeOutput

-
typedef struct _QmiMessageDmsGetTimeOutput QmiMessageDmsGetTimeOutput;
-

The QmiMessageDmsGetTimeOutput structure contains private data and should only be accessed -using the provided API.

-

Since: 1.0

-
-
-
- - - \ No newline at end of file diff -Nru libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-DMS-Get-Time-request.html libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-DMS-Get-Time-request.html --- libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-DMS-Get-Time-request.html 1970-01-01 01:00:00.000000000 +0100 +++ libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-DMS-Get-Time-request.html 2019-01-08 15:19:01.000000000 +0100 @@ -0,0 +1,476 @@ + + + + +DMS Get Time request: libqmi-glib Reference Manual + + + + + + + + + + + + + + + + +
+
+
+ + +
+

DMS Get Time request

+

DMS Get Time request

+
+ +
+

Types and Values

+
++++ + + + + +
 QmiMessageDmsGetTimeOutput
+
+
+

Object Hierarchy

+
    GBoxed
+    ╰── QmiMessageDmsGetTimeOutput
+
+
+
+

Description

+
+
+

Functions

+
+

qmi_message_dms_get_time_output_ref ()

+
QmiMessageDmsGetTimeOutput *
+qmi_message_dms_get_time_output_ref (QmiMessageDmsGetTimeOutput *self);
+

Atomically increments the reference count of self + by one.

+
+

Parameters

+
+++++ + + + + + +

self

a QmiMessageDmsGetTimeOutput.

 
+
+
+

Returns

+

the new reference to self +.

+
+

Since: 1.0

+
+
+
+

qmi_message_dms_get_time_output_unref ()

+
void
+qmi_message_dms_get_time_output_unref (QmiMessageDmsGetTimeOutput *self);
+

Atomically decrements the reference count of self + by one. +If the reference count drops to 0, self + is completely disposed.

+
+

Parameters

+
+++++ + + + + + +

self

a QmiMessageDmsGetTimeOutput.

 
+
+

Since: 1.0

+
+
+
+

qmi_message_dms_get_time_output_get_result ()

+
gboolean
+qmi_message_dms_get_time_output_get_result
+                               (QmiMessageDmsGetTimeOutput *self,
+                                GError **error);
+

Get the result of the QMI operation.

+
+

Parameters

+
+++++ + + + + + + + + + + + + +

self

a QmiMessageDmsGetTimeOutput.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the QMI operation succeeded, FALSE if error +is set.

+
+

Since: 1.0

+
+
+
+

qmi_message_dms_get_time_output_get_device_time ()

+
gboolean
+qmi_message_dms_get_time_output_get_device_time
+                               (QmiMessageDmsGetTimeOutput *self,
+                                guint64 *value_device_time_time_count,
+                                QmiDmsTimeSource *value_device_time_time_source,
+                                GError **error);
+

Get the 'Device Time' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + + + + + + +

self

a QmiMessageDmsGetTimeOutput.

 

value_device_time_time_count

a placeholder for the output guint64, or NULL if not required.

 

value_device_time_time_source

a placeholder for the output QmiDmsTimeSource, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.0

+
+
+
+

qmi_message_dms_get_time_output_get_system_time ()

+
gboolean
+qmi_message_dms_get_time_output_get_system_time
+                               (QmiMessageDmsGetTimeOutput *self,
+                                guint64 *value_system_time,
+                                GError **error);
+

Get the 'System Time' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageDmsGetTimeOutput.

 

value_system_time

a placeholder for the output guint64, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.0

+
+
+
+

qmi_message_dms_get_time_output_get_user_time ()

+
gboolean
+qmi_message_dms_get_time_output_get_user_time
+                               (QmiMessageDmsGetTimeOutput *self,
+                                guint64 *value_user_time,
+                                GError **error);
+

Get the 'User Time' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageDmsGetTimeOutput.

 

value_user_time

a placeholder for the output guint64, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.0

+
+
+
+

qmi_client_dms_get_time ()

+
void
+qmi_client_dms_get_time (QmiClientDms *self,
+                         gpointer unused,
+                         guint timeout,
+                         GCancellable *cancellable,
+                         GAsyncReadyCallback callback,
+                         gpointer user_data);
+

Asynchronously sends a Get Time request to the device.

+

When the operation is finished, callback + will be invoked in the thread-default main loop of the thread you are calling this method from.

+

You can then call qmi_client_dms_get_time_finish() to get the result of the operation.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

self

a QmiClientDms.

 

unused

NULL. This message doesn't have any input bundle.

 

timeout

maximum time to wait for the method to complete, in seconds.

 

cancellable

a GCancellable or NULL.

 

callback

a GAsyncReadyCallback to call when the request is satisfied.

 

user_data

user data to pass to callback +.

 
+
+

Since: 1.0

+
+
+
+

qmi_client_dms_get_time_finish ()

+
QmiMessageDmsGetTimeOutput *
+qmi_client_dms_get_time_finish (QmiClientDms *self,
+                                GAsyncResult *res,
+                                GError **error);
+

Finishes an async operation started with qmi_client_dms_get_time().

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiClientDms.

 

res

the GAsyncResult obtained from the GAsyncReadyCallback passed to qmi_client_dms_get_time().

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

a QmiMessageDmsGetTimeOutput, or NULL if error +is set. The returned value should be freed with qmi_message_dms_get_time_output_unref().

+
+

Since: 1.0

+
+
+
+

Types and Values

+
+

QmiMessageDmsGetTimeOutput

+
typedef struct _QmiMessageDmsGetTimeOutput QmiMessageDmsGetTimeOutput;
+

The QmiMessageDmsGetTimeOutput structure contains private data and should only be accessed +using the provided API.

+

Since: 1.0

+
+
+
+ + + \ No newline at end of file diff -Nru libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-DMS-Get-User-Lock-State.html libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-DMS-Get-User-Lock-State.html --- libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-DMS-Get-User-Lock-State.html 2017-03-22 12:28:29.000000000 +0100 +++ libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-DMS-Get-User-Lock-State.html 1970-01-01 01:00:00.000000000 +0100 @@ -1,371 +0,0 @@ - - - - -DMS Get User Lock State: libqmi-glib Reference Manual - - - - - - - - - - - - - - - - -
-
-
- - -
-

DMS Get User Lock State

-

DMS Get User Lock State

-
- -
-

Types and Values

- -
-
-

Object Hierarchy

-
    GBoxed
-    ╰── QmiMessageDmsGetUserLockStateOutput
-
-
-
-

Description

-
-
-

Functions

-
-

qmi_message_dms_get_user_lock_state_output_ref ()

-
QmiMessageDmsGetUserLockStateOutput *
-qmi_message_dms_get_user_lock_state_output_ref
-                               (QmiMessageDmsGetUserLockStateOutput *self);
-

Atomically increments the reference count of self - by one.

-
-

Parameters

-
----- - - - - - -

self

a QmiMessageDmsGetUserLockStateOutput.

 
-
-
-

Returns

-

the new reference to self -.

-
-

Since: 1.0

-
-
-
-

qmi_message_dms_get_user_lock_state_output_unref ()

-
void
-qmi_message_dms_get_user_lock_state_output_unref
-                               (QmiMessageDmsGetUserLockStateOutput *self);
-

Atomically decrements the reference count of self - by one. -If the reference count drops to 0, self - is completely disposed.

-
-

Parameters

-
----- - - - - - -

self

a QmiMessageDmsGetUserLockStateOutput.

 
-
-

Since: 1.0

-
-
-
-

qmi_message_dms_get_user_lock_state_output_get_result ()

-
gboolean
-qmi_message_dms_get_user_lock_state_output_get_result
-                               (QmiMessageDmsGetUserLockStateOutput *self,
-                                GError **error);
-

Get the result of the QMI operation.

-
-

Parameters

-
----- - - - - - - - - - - - - -

self

a QmiMessageDmsGetUserLockStateOutput.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the QMI operation succeeded, FALSE if error -is set.

-
-

Since: 1.0

-
-
-
-

qmi_message_dms_get_user_lock_state_output_get_enabled ()

-
gboolean
-qmi_message_dms_get_user_lock_state_output_get_enabled
-                               (QmiMessageDmsGetUserLockStateOutput *self,
-                                gboolean *value_enabled,
-                                GError **error);
-

Get the 'Enabled' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessageDmsGetUserLockStateOutput.

 

value_enabled

a placeholder for the output gboolean, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.0

-
-
-
-

qmi_client_dms_get_user_lock_state ()

-
void
-qmi_client_dms_get_user_lock_state (QmiClientDms *self,
-                                    gpointer unused,
-                                    guint timeout,
-                                    GCancellable *cancellable,
-                                    GAsyncReadyCallback callback,
-                                    gpointer user_data);
-

Asynchronously sends a Get User Lock State request to the device.

-

When the operation is finished, callback - will be invoked in the thread-default main loop of the thread you are calling this method from.

-

You can then call qmi_client_dms_get_user_lock_state_finish() to get the result of the operation.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

self

a QmiClientDms.

 

unused

NULL. This message doesn't have any input bundle.

 

timeout

maximum time to wait for the method to complete, in seconds.

 

cancellable

a GCancellable or NULL.

 

callback

a GAsyncReadyCallback to call when the request is satisfied.

 

user_data

user data to pass to callback -.

 
-
-

Since: 1.0

-
-
-
-

qmi_client_dms_get_user_lock_state_finish ()

-
QmiMessageDmsGetUserLockStateOutput *
-qmi_client_dms_get_user_lock_state_finish
-                               (QmiClientDms *self,
-                                GAsyncResult *res,
-                                GError **error);
-

Finishes an async operation started with qmi_client_dms_get_user_lock_state().

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiClientDms.

 

res

the GAsyncResult obtained from the GAsyncReadyCallback passed to qmi_client_dms_get_user_lock_state().

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

a QmiMessageDmsGetUserLockStateOutput, or NULL if error -is set. The returned value should be freed with qmi_message_dms_get_user_lock_state_output_unref().

-
-

Since: 1.0

-
-
-
-

Types and Values

-
-

QmiMessageDmsGetUserLockStateOutput

-
typedef struct _QmiMessageDmsGetUserLockStateOutput QmiMessageDmsGetUserLockStateOutput;
-

The QmiMessageDmsGetUserLockStateOutput structure contains private data and should only be accessed -using the provided API.

-

Since: 1.0

-
-
-
- - - \ No newline at end of file diff -Nru libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-DMS-Get-User-Lock-State-request.html libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-DMS-Get-User-Lock-State-request.html --- libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-DMS-Get-User-Lock-State-request.html 1970-01-01 01:00:00.000000000 +0100 +++ libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-DMS-Get-User-Lock-State-request.html 2019-01-08 15:19:01.000000000 +0100 @@ -0,0 +1,371 @@ + + + + +DMS Get User Lock State request: libqmi-glib Reference Manual + + + + + + + + + + + + + + + + +
+
+
+ + +
+

DMS Get User Lock State request

+

DMS Get User Lock State request

+
+ +
+

Types and Values

+ +
+
+

Object Hierarchy

+
    GBoxed
+    ╰── QmiMessageDmsGetUserLockStateOutput
+
+
+
+

Description

+
+
+

Functions

+
+

qmi_message_dms_get_user_lock_state_output_ref ()

+
QmiMessageDmsGetUserLockStateOutput *
+qmi_message_dms_get_user_lock_state_output_ref
+                               (QmiMessageDmsGetUserLockStateOutput *self);
+

Atomically increments the reference count of self + by one.

+
+

Parameters

+
+++++ + + + + + +

self

a QmiMessageDmsGetUserLockStateOutput.

 
+
+
+

Returns

+

the new reference to self +.

+
+

Since: 1.0

+
+
+
+

qmi_message_dms_get_user_lock_state_output_unref ()

+
void
+qmi_message_dms_get_user_lock_state_output_unref
+                               (QmiMessageDmsGetUserLockStateOutput *self);
+

Atomically decrements the reference count of self + by one. +If the reference count drops to 0, self + is completely disposed.

+
+

Parameters

+
+++++ + + + + + +

self

a QmiMessageDmsGetUserLockStateOutput.

 
+
+

Since: 1.0

+
+
+
+

qmi_message_dms_get_user_lock_state_output_get_result ()

+
gboolean
+qmi_message_dms_get_user_lock_state_output_get_result
+                               (QmiMessageDmsGetUserLockStateOutput *self,
+                                GError **error);
+

Get the result of the QMI operation.

+
+

Parameters

+
+++++ + + + + + + + + + + + + +

self

a QmiMessageDmsGetUserLockStateOutput.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the QMI operation succeeded, FALSE if error +is set.

+
+

Since: 1.0

+
+
+
+

qmi_message_dms_get_user_lock_state_output_get_enabled ()

+
gboolean
+qmi_message_dms_get_user_lock_state_output_get_enabled
+                               (QmiMessageDmsGetUserLockStateOutput *self,
+                                gboolean *value_enabled,
+                                GError **error);
+

Get the 'Enabled' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageDmsGetUserLockStateOutput.

 

value_enabled

a placeholder for the output gboolean, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.0

+
+
+
+

qmi_client_dms_get_user_lock_state ()

+
void
+qmi_client_dms_get_user_lock_state (QmiClientDms *self,
+                                    gpointer unused,
+                                    guint timeout,
+                                    GCancellable *cancellable,
+                                    GAsyncReadyCallback callback,
+                                    gpointer user_data);
+

Asynchronously sends a Get User Lock State request to the device.

+

When the operation is finished, callback + will be invoked in the thread-default main loop of the thread you are calling this method from.

+

You can then call qmi_client_dms_get_user_lock_state_finish() to get the result of the operation.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

self

a QmiClientDms.

 

unused

NULL. This message doesn't have any input bundle.

 

timeout

maximum time to wait for the method to complete, in seconds.

 

cancellable

a GCancellable or NULL.

 

callback

a GAsyncReadyCallback to call when the request is satisfied.

 

user_data

user data to pass to callback +.

 
+
+

Since: 1.0

+
+
+
+

qmi_client_dms_get_user_lock_state_finish ()

+
QmiMessageDmsGetUserLockStateOutput *
+qmi_client_dms_get_user_lock_state_finish
+                               (QmiClientDms *self,
+                                GAsyncResult *res,
+                                GError **error);
+

Finishes an async operation started with qmi_client_dms_get_user_lock_state().

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiClientDms.

 

res

the GAsyncResult obtained from the GAsyncReadyCallback passed to qmi_client_dms_get_user_lock_state().

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

a QmiMessageDmsGetUserLockStateOutput, or NULL if error +is set. The returned value should be freed with qmi_message_dms_get_user_lock_state_output_unref().

+
+

Since: 1.0

+
+
+
+

Types and Values

+
+

QmiMessageDmsGetUserLockStateOutput

+
typedef struct _QmiMessageDmsGetUserLockStateOutput QmiMessageDmsGetUserLockStateOutput;
+

The QmiMessageDmsGetUserLockStateOutput structure contains private data and should only be accessed +using the provided API.

+

Since: 1.0

+
+
+
+ + + \ No newline at end of file diff -Nru libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-DMS-HP-Change-Device-Mode.html libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-DMS-HP-Change-Device-Mode.html --- libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-DMS-HP-Change-Device-Mode.html 2017-03-22 12:28:29.000000000 +0100 +++ libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-DMS-HP-Change-Device-Mode.html 1970-01-01 01:00:00.000000000 +0100 @@ -1,531 +0,0 @@ - - - - -DMS HP Change Device Mode: libqmi-glib Reference Manual - - - - - - - - - - - - - - - - -
-
-
- - -
-

DMS HP Change Device Mode

-

DMS HP Change Device Mode

-
- -
-

Types and Values

- -
-
-

Object Hierarchy

-
    GBoxed
-    ├── QmiMessageDmsHpChangeDeviceModeInput
-    ╰── QmiMessageDmsHpChangeDeviceModeOutput
-
-
-
-

Description

-
-
-

Functions

-
-

qmi_message_dms_hp_change_device_mode_input_new ()

-
QmiMessageDmsHpChangeDeviceModeInput *
-qmi_message_dms_hp_change_device_mode_input_new
-                               (void);
-

Allocates a new QmiMessageDmsHpChangeDeviceModeInput.

-
-

Returns

-

the newly created QmiMessageDmsHpChangeDeviceModeInput. The returned value should be freed with qmi_message_dms_hp_change_device_mode_input_unref().

-
-

Since: 1.18

-
-
-
-

qmi_message_dms_hp_change_device_mode_input_ref ()

-
QmiMessageDmsHpChangeDeviceModeInput *
-qmi_message_dms_hp_change_device_mode_input_ref
-                               (QmiMessageDmsHpChangeDeviceModeInput *self);
-

Atomically increments the reference count of self - by one.

-
-

Parameters

-
----- - - - - - -

self

a QmiMessageDmsHpChangeDeviceModeInput.

 
-
-
-

Returns

-

the new reference to self -.

-
-

Since: 1.18

-
-
-
-

qmi_message_dms_hp_change_device_mode_input_unref ()

-
void
-qmi_message_dms_hp_change_device_mode_input_unref
-                               (QmiMessageDmsHpChangeDeviceModeInput *self);
-

Atomically decrements the reference count of self - by one. -If the reference count drops to 0, self - is completely disposed.

-
-

Parameters

-
----- - - - - - -

self

a QmiMessageDmsHpChangeDeviceModeInput.

 
-
-

Since: 1.18

-
-
-
-

qmi_message_dms_hp_change_device_mode_input_get_mode ()

-
gboolean
-qmi_message_dms_hp_change_device_mode_input_get_mode
-                               (QmiMessageDmsHpChangeDeviceModeInput *self,
-                                QmiDmsHpDeviceMode *value_mode,
-                                GError **error);
-

Get the 'Mode' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessageDmsHpChangeDeviceModeInput.

 

value_mode

a placeholder for the output QmiDmsHpDeviceMode, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.18

-
-
-
-

qmi_message_dms_hp_change_device_mode_input_set_mode ()

-
gboolean
-qmi_message_dms_hp_change_device_mode_input_set_mode
-                               (QmiMessageDmsHpChangeDeviceModeInput *self,
-                                QmiDmsHpDeviceMode value_mode,
-                                GError **error);
-

Set the 'Mode' field in the message.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessageDmsHpChangeDeviceModeInput.

 

value_mode

a QmiDmsHpDeviceMode.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if value -was successfully set, FALSE otherwise.

-
-

Since: 1.18

-
-
-
-

qmi_message_dms_hp_change_device_mode_output_ref ()

-
QmiMessageDmsHpChangeDeviceModeOutput *
-qmi_message_dms_hp_change_device_mode_output_ref
-                               (QmiMessageDmsHpChangeDeviceModeOutput *self);
-

Atomically increments the reference count of self - by one.

-
-

Parameters

-
----- - - - - - -

self

a QmiMessageDmsHpChangeDeviceModeOutput.

 
-
-
-

Returns

-

the new reference to self -.

-
-

Since: 1.18

-
-
-
-

qmi_message_dms_hp_change_device_mode_output_unref ()

-
void
-qmi_message_dms_hp_change_device_mode_output_unref
-                               (QmiMessageDmsHpChangeDeviceModeOutput *self);
-

Atomically decrements the reference count of self - by one. -If the reference count drops to 0, self - is completely disposed.

-
-

Parameters

-
----- - - - - - -

self

a QmiMessageDmsHpChangeDeviceModeOutput.

 
-
-

Since: 1.18

-
-
-
-

qmi_message_dms_hp_change_device_mode_output_get_result ()

-
gboolean
-qmi_message_dms_hp_change_device_mode_output_get_result
-                               (QmiMessageDmsHpChangeDeviceModeOutput *self,
-                                GError **error);
-

Get the result of the QMI operation.

-
-

Parameters

-
----- - - - - - - - - - - - - -

self

a QmiMessageDmsHpChangeDeviceModeOutput.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the QMI operation succeeded, FALSE if error -is set.

-
-

Since: 1.18

-
-
-
-

qmi_client_dms_hp_change_device_mode ()

-
void
-qmi_client_dms_hp_change_device_mode (QmiClientDms *self,
-                                      QmiMessageDmsHpChangeDeviceModeInput *input,
-                                      guint timeout,
-                                      GCancellable *cancellable,
-                                      GAsyncReadyCallback callback,
-                                      gpointer user_data);
-

Asynchronously sends a HP Change Device Mode request to the device.

-

When the operation is finished, callback - will be invoked in the thread-default main loop of the thread you are calling this method from.

-

You can then call qmi_client_dms_hp_change_device_mode_finish() to get the result of the operation.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

self

a QmiClientDms.

 

input

a QmiMessageDmsHpChangeDeviceModeInput.

 

timeout

maximum time to wait for the method to complete, in seconds.

 

cancellable

a GCancellable or NULL.

 

callback

a GAsyncReadyCallback to call when the request is satisfied.

 

user_data

user data to pass to callback -.

 
-
-

Since: 1.18

-
-
-
-

qmi_client_dms_hp_change_device_mode_finish ()

-
QmiMessageDmsHpChangeDeviceModeOutput *
-qmi_client_dms_hp_change_device_mode_finish
-                               (QmiClientDms *self,
-                                GAsyncResult *res,
-                                GError **error);
-

Finishes an async operation started with qmi_client_dms_hp_change_device_mode().

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiClientDms.

 

res

the GAsyncResult obtained from the GAsyncReadyCallback passed to qmi_client_dms_hp_change_device_mode().

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

a QmiMessageDmsHpChangeDeviceModeOutput, or NULL if error -is set. The returned value should be freed with qmi_message_dms_hp_change_device_mode_output_unref().

-
-

Since: 1.18

-
-
-
-

Types and Values

-
-

QmiMessageDmsHpChangeDeviceModeInput

-
typedef struct _QmiMessageDmsHpChangeDeviceModeInput QmiMessageDmsHpChangeDeviceModeInput;
-

The QmiMessageDmsHpChangeDeviceModeInput structure contains private data and should only be accessed -using the provided API.

-

Since: 1.18

-
-
-
-

QmiMessageDmsHpChangeDeviceModeOutput

-
typedef struct _QmiMessageDmsHpChangeDeviceModeOutput QmiMessageDmsHpChangeDeviceModeOutput;
-

The QmiMessageDmsHpChangeDeviceModeOutput structure contains private data and should only be accessed -using the provided API.

-

Since: 1.18

-
-
-
- - - \ No newline at end of file diff -Nru libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-DMS-HP-Change-Device-Mode-request.html libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-DMS-HP-Change-Device-Mode-request.html --- libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-DMS-HP-Change-Device-Mode-request.html 1970-01-01 01:00:00.000000000 +0100 +++ libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-DMS-HP-Change-Device-Mode-request.html 2019-01-08 15:19:01.000000000 +0100 @@ -0,0 +1,531 @@ + + + + +DMS HP Change Device Mode request: libqmi-glib Reference Manual + + + + + + + + + + + + + + + + +
+
+
+ + +
+

DMS HP Change Device Mode request

+

DMS HP Change Device Mode request

+
+ +
+

Types and Values

+ +
+
+

Object Hierarchy

+
    GBoxed
+    ├── QmiMessageDmsHpChangeDeviceModeInput
+    ╰── QmiMessageDmsHpChangeDeviceModeOutput
+
+
+
+

Description

+
+
+

Functions

+
+

qmi_message_dms_hp_change_device_mode_input_new ()

+
QmiMessageDmsHpChangeDeviceModeInput *
+qmi_message_dms_hp_change_device_mode_input_new
+                               (void);
+

Allocates a new QmiMessageDmsHpChangeDeviceModeInput.

+
+

Returns

+

the newly created QmiMessageDmsHpChangeDeviceModeInput. The returned value should be freed with qmi_message_dms_hp_change_device_mode_input_unref().

+
+

Since: 1.18

+
+
+
+

qmi_message_dms_hp_change_device_mode_input_ref ()

+
QmiMessageDmsHpChangeDeviceModeInput *
+qmi_message_dms_hp_change_device_mode_input_ref
+                               (QmiMessageDmsHpChangeDeviceModeInput *self);
+

Atomically increments the reference count of self + by one.

+
+

Parameters

+
+++++ + + + + + +

self

a QmiMessageDmsHpChangeDeviceModeInput.

 
+
+
+

Returns

+

the new reference to self +.

+
+

Since: 1.18

+
+
+
+

qmi_message_dms_hp_change_device_mode_input_unref ()

+
void
+qmi_message_dms_hp_change_device_mode_input_unref
+                               (QmiMessageDmsHpChangeDeviceModeInput *self);
+

Atomically decrements the reference count of self + by one. +If the reference count drops to 0, self + is completely disposed.

+
+

Parameters

+
+++++ + + + + + +

self

a QmiMessageDmsHpChangeDeviceModeInput.

 
+
+

Since: 1.18

+
+
+
+

qmi_message_dms_hp_change_device_mode_input_get_mode ()

+
gboolean
+qmi_message_dms_hp_change_device_mode_input_get_mode
+                               (QmiMessageDmsHpChangeDeviceModeInput *self,
+                                QmiDmsHpDeviceMode *value_mode,
+                                GError **error);
+

Get the 'Mode' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageDmsHpChangeDeviceModeInput.

 

value_mode

a placeholder for the output QmiDmsHpDeviceMode, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.18

+
+
+
+

qmi_message_dms_hp_change_device_mode_input_set_mode ()

+
gboolean
+qmi_message_dms_hp_change_device_mode_input_set_mode
+                               (QmiMessageDmsHpChangeDeviceModeInput *self,
+                                QmiDmsHpDeviceMode value_mode,
+                                GError **error);
+

Set the 'Mode' field in the message.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageDmsHpChangeDeviceModeInput.

 

value_mode

a QmiDmsHpDeviceMode.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if value +was successfully set, FALSE otherwise.

+
+

Since: 1.18

+
+
+
+

qmi_message_dms_hp_change_device_mode_output_ref ()

+
QmiMessageDmsHpChangeDeviceModeOutput *
+qmi_message_dms_hp_change_device_mode_output_ref
+                               (QmiMessageDmsHpChangeDeviceModeOutput *self);
+

Atomically increments the reference count of self + by one.

+
+

Parameters

+
+++++ + + + + + +

self

a QmiMessageDmsHpChangeDeviceModeOutput.

 
+
+
+

Returns

+

the new reference to self +.

+
+

Since: 1.18

+
+
+
+

qmi_message_dms_hp_change_device_mode_output_unref ()

+
void
+qmi_message_dms_hp_change_device_mode_output_unref
+                               (QmiMessageDmsHpChangeDeviceModeOutput *self);
+

Atomically decrements the reference count of self + by one. +If the reference count drops to 0, self + is completely disposed.

+
+

Parameters

+
+++++ + + + + + +

self

a QmiMessageDmsHpChangeDeviceModeOutput.

 
+
+

Since: 1.18

+
+
+
+

qmi_message_dms_hp_change_device_mode_output_get_result ()

+
gboolean
+qmi_message_dms_hp_change_device_mode_output_get_result
+                               (QmiMessageDmsHpChangeDeviceModeOutput *self,
+                                GError **error);
+

Get the result of the QMI operation.

+
+

Parameters

+
+++++ + + + + + + + + + + + + +

self

a QmiMessageDmsHpChangeDeviceModeOutput.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the QMI operation succeeded, FALSE if error +is set.

+
+

Since: 1.18

+
+
+
+

qmi_client_dms_hp_change_device_mode ()

+
void
+qmi_client_dms_hp_change_device_mode (QmiClientDms *self,
+                                      QmiMessageDmsHpChangeDeviceModeInput *input,
+                                      guint timeout,
+                                      GCancellable *cancellable,
+                                      GAsyncReadyCallback callback,
+                                      gpointer user_data);
+

Asynchronously sends a HP Change Device Mode request to the device.

+

When the operation is finished, callback + will be invoked in the thread-default main loop of the thread you are calling this method from.

+

You can then call qmi_client_dms_hp_change_device_mode_finish() to get the result of the operation.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

self

a QmiClientDms.

 

input

a QmiMessageDmsHpChangeDeviceModeInput.

 

timeout

maximum time to wait for the method to complete, in seconds.

 

cancellable

a GCancellable or NULL.

 

callback

a GAsyncReadyCallback to call when the request is satisfied.

 

user_data

user data to pass to callback +.

 
+
+

Since: 1.18

+
+
+
+

qmi_client_dms_hp_change_device_mode_finish ()

+
QmiMessageDmsHpChangeDeviceModeOutput *
+qmi_client_dms_hp_change_device_mode_finish
+                               (QmiClientDms *self,
+                                GAsyncResult *res,
+                                GError **error);
+

Finishes an async operation started with qmi_client_dms_hp_change_device_mode().

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiClientDms.

 

res

the GAsyncResult obtained from the GAsyncReadyCallback passed to qmi_client_dms_hp_change_device_mode().

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

a QmiMessageDmsHpChangeDeviceModeOutput, or NULL if error +is set. The returned value should be freed with qmi_message_dms_hp_change_device_mode_output_unref().

+
+

Since: 1.18

+
+
+
+

Types and Values

+
+

QmiMessageDmsHpChangeDeviceModeInput

+
typedef struct _QmiMessageDmsHpChangeDeviceModeInput QmiMessageDmsHpChangeDeviceModeInput;
+

The QmiMessageDmsHpChangeDeviceModeInput structure contains private data and should only be accessed +using the provided API.

+

Since: 1.18

+
+
+
+

QmiMessageDmsHpChangeDeviceModeOutput

+
typedef struct _QmiMessageDmsHpChangeDeviceModeOutput QmiMessageDmsHpChangeDeviceModeOutput;
+

The QmiMessageDmsHpChangeDeviceModeOutput structure contains private data and should only be accessed +using the provided API.

+

Since: 1.18

+
+
+
+ + + \ No newline at end of file diff -Nru libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-DMS-List-Stored-Images.html libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-DMS-List-Stored-Images.html --- libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-DMS-List-Stored-Images.html 2017-03-22 12:28:29.000000000 +0100 +++ libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-DMS-List-Stored-Images.html 1970-01-01 01:00:00.000000000 +0100 @@ -1,472 +0,0 @@ - - - - -DMS List Stored Images: libqmi-glib Reference Manual - - - - - - - - - - - - - - - - -
-
-
- - -
-

DMS List Stored Images

-

DMS List Stored Images

-
- - -
-

Object Hierarchy

-
    GBoxed
-    ╰── QmiMessageDmsListStoredImagesOutput
-
-
-
-

Description

-
-
-

Functions

-
-

qmi_message_dms_list_stored_images_output_ref ()

-
QmiMessageDmsListStoredImagesOutput *
-qmi_message_dms_list_stored_images_output_ref
-                               (QmiMessageDmsListStoredImagesOutput *self);
-

Atomically increments the reference count of self - by one.

-
-

Parameters

-
----- - - - - - -

self

a QmiMessageDmsListStoredImagesOutput.

 
-
-
-

Returns

-

the new reference to self -.

-
-

Since: 1.0

-
-
-
-

qmi_message_dms_list_stored_images_output_unref ()

-
void
-qmi_message_dms_list_stored_images_output_unref
-                               (QmiMessageDmsListStoredImagesOutput *self);
-

Atomically decrements the reference count of self - by one. -If the reference count drops to 0, self - is completely disposed.

-
-

Parameters

-
----- - - - - - -

self

a QmiMessageDmsListStoredImagesOutput.

 
-
-

Since: 1.0

-
-
-
-

qmi_message_dms_list_stored_images_output_get_result ()

-
gboolean
-qmi_message_dms_list_stored_images_output_get_result
-                               (QmiMessageDmsListStoredImagesOutput *self,
-                                GError **error);
-

Get the result of the QMI operation.

-
-

Parameters

-
----- - - - - - - - - - - - - -

self

a QmiMessageDmsListStoredImagesOutput.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the QMI operation succeeded, FALSE if error -is set.

-
-

Since: 1.0

-
-
-
-

qmi_message_dms_list_stored_images_output_get_list ()

-
gboolean
-qmi_message_dms_list_stored_images_output_get_list
-                               (QmiMessageDmsListStoredImagesOutput *self,
-                                GArray **value_list,
-                                GError **error);
-

Get the 'List' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessageDmsListStoredImagesOutput.

 

value_list

a placeholder for the output GArray of QmiMessageDmsListStoredImagesOutputListImage elements, or NULL if not required. Do not free it, it is owned by self -.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.0

-
-
-
-

qmi_client_dms_list_stored_images ()

-
void
-qmi_client_dms_list_stored_images (QmiClientDms *self,
-                                   gpointer unused,
-                                   guint timeout,
-                                   GCancellable *cancellable,
-                                   GAsyncReadyCallback callback,
-                                   gpointer user_data);
-

Asynchronously sends a List Stored Images request to the device.

-

When the operation is finished, callback - will be invoked in the thread-default main loop of the thread you are calling this method from.

-

You can then call qmi_client_dms_list_stored_images_finish() to get the result of the operation.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

self

a QmiClientDms.

 

unused

NULL. This message doesn't have any input bundle.

 

timeout

maximum time to wait for the method to complete, in seconds.

 

cancellable

a GCancellable or NULL.

 

callback

a GAsyncReadyCallback to call when the request is satisfied.

 

user_data

user data to pass to callback -.

 
-
-

Since: 1.0

-
-
-
-

qmi_client_dms_list_stored_images_finish ()

-
QmiMessageDmsListStoredImagesOutput *
-qmi_client_dms_list_stored_images_finish
-                               (QmiClientDms *self,
-                                GAsyncResult *res,
-                                GError **error);
-

Finishes an async operation started with qmi_client_dms_list_stored_images().

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiClientDms.

 

res

the GAsyncResult obtained from the GAsyncReadyCallback passed to qmi_client_dms_list_stored_images().

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

a QmiMessageDmsListStoredImagesOutput, or NULL if error -is set. The returned value should be freed with qmi_message_dms_list_stored_images_output_unref().

-
-

Since: 1.0

-
-
-
-

Types and Values

-
-

QmiMessageDmsListStoredImagesOutput

-
typedef struct _QmiMessageDmsListStoredImagesOutput QmiMessageDmsListStoredImagesOutput;
-

The QmiMessageDmsListStoredImagesOutput structure contains private data and should only be accessed -using the provided API.

-

Since: 1.0

-
-
-
-

QmiMessageDmsListStoredImagesOutputListImageSublistSublistElement

-
typedef struct {
-    guint8 storage_index;
-    guint8 failure_count;
-    GArray *unique_id;
-    gchar *build_id;
-} QmiMessageDmsListStoredImagesOutputListImageSublistSublistElement;
-
-

A QmiMessageDmsListStoredImagesOutputListImageSublistSublistElement struct.

-
-

Members

-
----- - - - - - - - - - - - - - - - - - - - - - - -

guint8 storage_index;

a guint8.

 

guint8 failure_count;

a guint8.

 

GArray *unique_id;

a GArray of guint8 elements.

 

gchar *build_id;

a string.

 
-
-

Since: 1.0

-
-
-
-

QmiMessageDmsListStoredImagesOutputListImage

-
typedef struct {
-    QmiDmsFirmwareImageType type;
-    guint8 maximum_images;
-    guint8 index_of_running_image;
-    GArray *sublist;
-} QmiMessageDmsListStoredImagesOutputListImage;
-
-

A QmiMessageDmsListStoredImagesOutputListImage struct.

-
-

Members

-
----- - - - - - - - - - - - - - - - - - - - - - - -

QmiDmsFirmwareImageType type;

a QmiDmsFirmwareImageType.

 

guint8 maximum_images;

a guint8.

 

guint8 index_of_running_image;

a guint8.

 

GArray *sublist;

a GArray of QmiMessageDmsListStoredImagesOutputListImageSublistSublistElement elements.

 
-
-

Since: 1.0

-
-
-
- - - \ No newline at end of file diff -Nru libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-DMS-List-Stored-Images-request.html libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-DMS-List-Stored-Images-request.html --- libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-DMS-List-Stored-Images-request.html 1970-01-01 01:00:00.000000000 +0100 +++ libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-DMS-List-Stored-Images-request.html 2019-01-08 15:19:01.000000000 +0100 @@ -0,0 +1,472 @@ + + + + +DMS List Stored Images request: libqmi-glib Reference Manual + + + + + + + + + + + + + + + + +
+
+
+ + +
+

DMS List Stored Images request

+

DMS List Stored Images request

+
+ + +
+

Object Hierarchy

+
    GBoxed
+    ╰── QmiMessageDmsListStoredImagesOutput
+
+
+
+

Description

+
+
+

Functions

+
+

qmi_message_dms_list_stored_images_output_ref ()

+
QmiMessageDmsListStoredImagesOutput *
+qmi_message_dms_list_stored_images_output_ref
+                               (QmiMessageDmsListStoredImagesOutput *self);
+

Atomically increments the reference count of self + by one.

+
+

Parameters

+
+++++ + + + + + +

self

a QmiMessageDmsListStoredImagesOutput.

 
+
+
+

Returns

+

the new reference to self +.

+
+

Since: 1.0

+
+
+
+

qmi_message_dms_list_stored_images_output_unref ()

+
void
+qmi_message_dms_list_stored_images_output_unref
+                               (QmiMessageDmsListStoredImagesOutput *self);
+

Atomically decrements the reference count of self + by one. +If the reference count drops to 0, self + is completely disposed.

+
+

Parameters

+
+++++ + + + + + +

self

a QmiMessageDmsListStoredImagesOutput.

 
+
+

Since: 1.0

+
+
+
+

qmi_message_dms_list_stored_images_output_get_result ()

+
gboolean
+qmi_message_dms_list_stored_images_output_get_result
+                               (QmiMessageDmsListStoredImagesOutput *self,
+                                GError **error);
+

Get the result of the QMI operation.

+
+

Parameters

+
+++++ + + + + + + + + + + + + +

self

a QmiMessageDmsListStoredImagesOutput.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the QMI operation succeeded, FALSE if error +is set.

+
+

Since: 1.0

+
+
+
+

qmi_message_dms_list_stored_images_output_get_list ()

+
gboolean
+qmi_message_dms_list_stored_images_output_get_list
+                               (QmiMessageDmsListStoredImagesOutput *self,
+                                GArray **value_list,
+                                GError **error);
+

Get the 'List' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageDmsListStoredImagesOutput.

 

value_list

a placeholder for the output GArray of QmiMessageDmsListStoredImagesOutputListImage elements, or NULL if not required. Do not free it, it is owned by self +.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.0

+
+
+
+

qmi_client_dms_list_stored_images ()

+
void
+qmi_client_dms_list_stored_images (QmiClientDms *self,
+                                   gpointer unused,
+                                   guint timeout,
+                                   GCancellable *cancellable,
+                                   GAsyncReadyCallback callback,
+                                   gpointer user_data);
+

Asynchronously sends a List Stored Images request to the device.

+

When the operation is finished, callback + will be invoked in the thread-default main loop of the thread you are calling this method from.

+

You can then call qmi_client_dms_list_stored_images_finish() to get the result of the operation.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

self

a QmiClientDms.

 

unused

NULL. This message doesn't have any input bundle.

 

timeout

maximum time to wait for the method to complete, in seconds.

 

cancellable

a GCancellable or NULL.

 

callback

a GAsyncReadyCallback to call when the request is satisfied.

 

user_data

user data to pass to callback +.

 
+
+

Since: 1.0

+
+
+
+

qmi_client_dms_list_stored_images_finish ()

+
QmiMessageDmsListStoredImagesOutput *
+qmi_client_dms_list_stored_images_finish
+                               (QmiClientDms *self,
+                                GAsyncResult *res,
+                                GError **error);
+

Finishes an async operation started with qmi_client_dms_list_stored_images().

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiClientDms.

 

res

the GAsyncResult obtained from the GAsyncReadyCallback passed to qmi_client_dms_list_stored_images().

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

a QmiMessageDmsListStoredImagesOutput, or NULL if error +is set. The returned value should be freed with qmi_message_dms_list_stored_images_output_unref().

+
+

Since: 1.0

+
+
+
+

Types and Values

+
+

QmiMessageDmsListStoredImagesOutput

+
typedef struct _QmiMessageDmsListStoredImagesOutput QmiMessageDmsListStoredImagesOutput;
+

The QmiMessageDmsListStoredImagesOutput structure contains private data and should only be accessed +using the provided API.

+

Since: 1.0

+
+
+
+

QmiMessageDmsListStoredImagesOutputListImageSublistSublistElement

+
typedef struct {
+    guint8 storage_index;
+    guint8 failure_count;
+    GArray *unique_id;
+    gchar *build_id;
+} QmiMessageDmsListStoredImagesOutputListImageSublistSublistElement;
+
+

A QmiMessageDmsListStoredImagesOutputListImageSublistSublistElement struct.

+
+

Members

+
+++++ + + + + + + + + + + + + + + + + + + + + + + +

guint8 storage_index;

a guint8.

 

guint8 failure_count;

a guint8.

 

GArray *unique_id;

a GArray of guint8 elements.

 

gchar *build_id;

a string.

 
+
+

Since: 1.0

+
+
+
+

QmiMessageDmsListStoredImagesOutputListImage

+
typedef struct {
+    QmiDmsFirmwareImageType type;
+    guint8 maximum_images;
+    guint8 index_of_running_image;
+    GArray *sublist;
+} QmiMessageDmsListStoredImagesOutputListImage;
+
+

A QmiMessageDmsListStoredImagesOutputListImage struct.

+
+

Members

+
+++++ + + + + + + + + + + + + + + + + + + + + + + +

QmiDmsFirmwareImageType type;

a QmiDmsFirmwareImageType.

 

guint8 maximum_images;

a guint8.

 

guint8 index_of_running_image;

a guint8.

 

GArray *sublist;

a GArray of QmiMessageDmsListStoredImagesOutputListImageSublistSublistElement elements.

 
+
+

Since: 1.0

+
+
+
+ + + \ No newline at end of file diff -Nru libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-DMS-Read-ERI-File.html libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-DMS-Read-ERI-File.html --- libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-DMS-Read-ERI-File.html 2017-03-22 12:28:29.000000000 +0100 +++ libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-DMS-Read-ERI-File.html 1970-01-01 01:00:00.000000000 +0100 @@ -1,371 +0,0 @@ - - - - -DMS Read ERI File: libqmi-glib Reference Manual - - - - - - - - - - - - - - - - -
-
-
- - -
-

DMS Read ERI File

-

DMS Read ERI File

-
- -
-

Types and Values

- -
-
-

Object Hierarchy

-
    GBoxed
-    ╰── QmiMessageDmsReadEriFileOutput
-
-
-
-

Description

-
-
-

Functions

-
-

qmi_message_dms_read_eri_file_output_ref ()

-
QmiMessageDmsReadEriFileOutput *
-qmi_message_dms_read_eri_file_output_ref
-                               (QmiMessageDmsReadEriFileOutput *self);
-

Atomically increments the reference count of self - by one.

-
-

Parameters

-
----- - - - - - -

self

a QmiMessageDmsReadEriFileOutput.

 
-
-
-

Returns

-

the new reference to self -.

-
-

Since: 1.0

-
-
-
-

qmi_message_dms_read_eri_file_output_unref ()

-
void
-qmi_message_dms_read_eri_file_output_unref
-                               (QmiMessageDmsReadEriFileOutput *self);
-

Atomically decrements the reference count of self - by one. -If the reference count drops to 0, self - is completely disposed.

-
-

Parameters

-
----- - - - - - -

self

a QmiMessageDmsReadEriFileOutput.

 
-
-

Since: 1.0

-
-
-
-

qmi_message_dms_read_eri_file_output_get_result ()

-
gboolean
-qmi_message_dms_read_eri_file_output_get_result
-                               (QmiMessageDmsReadEriFileOutput *self,
-                                GError **error);
-

Get the result of the QMI operation.

-
-

Parameters

-
----- - - - - - - - - - - - - -

self

a QmiMessageDmsReadEriFileOutput.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the QMI operation succeeded, FALSE if error -is set.

-
-

Since: 1.0

-
-
-
-

qmi_message_dms_read_eri_file_output_get_eri_file ()

-
gboolean
-qmi_message_dms_read_eri_file_output_get_eri_file
-                               (QmiMessageDmsReadEriFileOutput *self,
-                                GArray **value_eri_file,
-                                GError **error);
-

Get the 'ERI File' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessageDmsReadEriFileOutput.

 

value_eri_file

a placeholder for the output GArray of guint8 elements, or NULL if not required. Do not free it, it is owned by self -.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.0

-
-
-
-

qmi_client_dms_read_eri_file ()

-
void
-qmi_client_dms_read_eri_file (QmiClientDms *self,
-                              gpointer unused,
-                              guint timeout,
-                              GCancellable *cancellable,
-                              GAsyncReadyCallback callback,
-                              gpointer user_data);
-

Asynchronously sends a Read ERI File request to the device.

-

When the operation is finished, callback - will be invoked in the thread-default main loop of the thread you are calling this method from.

-

You can then call qmi_client_dms_read_eri_file_finish() to get the result of the operation.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

self

a QmiClientDms.

 

unused

NULL. This message doesn't have any input bundle.

 

timeout

maximum time to wait for the method to complete, in seconds.

 

cancellable

a GCancellable or NULL.

 

callback

a GAsyncReadyCallback to call when the request is satisfied.

 

user_data

user data to pass to callback -.

 
-
-

Since: 1.0

-
-
-
-

qmi_client_dms_read_eri_file_finish ()

-
QmiMessageDmsReadEriFileOutput *
-qmi_client_dms_read_eri_file_finish (QmiClientDms *self,
-                                     GAsyncResult *res,
-                                     GError **error);
-

Finishes an async operation started with qmi_client_dms_read_eri_file().

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiClientDms.

 

res

the GAsyncResult obtained from the GAsyncReadyCallback passed to qmi_client_dms_read_eri_file().

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

a QmiMessageDmsReadEriFileOutput, or NULL if error -is set. The returned value should be freed with qmi_message_dms_read_eri_file_output_unref().

-
-

Since: 1.0

-
-
-
-

Types and Values

-
-

QmiMessageDmsReadEriFileOutput

-
typedef struct _QmiMessageDmsReadEriFileOutput QmiMessageDmsReadEriFileOutput;
-

The QmiMessageDmsReadEriFileOutput structure contains private data and should only be accessed -using the provided API.

-

Since: 1.0

-
-
-
- - - \ No newline at end of file diff -Nru libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-DMS-Read-ERI-File-request.html libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-DMS-Read-ERI-File-request.html --- libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-DMS-Read-ERI-File-request.html 1970-01-01 01:00:00.000000000 +0100 +++ libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-DMS-Read-ERI-File-request.html 2019-01-08 15:19:01.000000000 +0100 @@ -0,0 +1,371 @@ + + + + +DMS Read ERI File request: libqmi-glib Reference Manual + + + + + + + + + + + + + + + + +
+
+
+ + +
+

DMS Read ERI File request

+

DMS Read ERI File request

+
+ +
+

Types and Values

+ +
+
+

Object Hierarchy

+
    GBoxed
+    ╰── QmiMessageDmsReadEriFileOutput
+
+
+
+

Description

+
+
+

Functions

+
+

qmi_message_dms_read_eri_file_output_ref ()

+
QmiMessageDmsReadEriFileOutput *
+qmi_message_dms_read_eri_file_output_ref
+                               (QmiMessageDmsReadEriFileOutput *self);
+

Atomically increments the reference count of self + by one.

+
+

Parameters

+
+++++ + + + + + +

self

a QmiMessageDmsReadEriFileOutput.

 
+
+
+

Returns

+

the new reference to self +.

+
+

Since: 1.0

+
+
+
+

qmi_message_dms_read_eri_file_output_unref ()

+
void
+qmi_message_dms_read_eri_file_output_unref
+                               (QmiMessageDmsReadEriFileOutput *self);
+

Atomically decrements the reference count of self + by one. +If the reference count drops to 0, self + is completely disposed.

+
+

Parameters

+
+++++ + + + + + +

self

a QmiMessageDmsReadEriFileOutput.

 
+
+

Since: 1.0

+
+
+
+

qmi_message_dms_read_eri_file_output_get_result ()

+
gboolean
+qmi_message_dms_read_eri_file_output_get_result
+                               (QmiMessageDmsReadEriFileOutput *self,
+                                GError **error);
+

Get the result of the QMI operation.

+
+

Parameters

+
+++++ + + + + + + + + + + + + +

self

a QmiMessageDmsReadEriFileOutput.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the QMI operation succeeded, FALSE if error +is set.

+
+

Since: 1.0

+
+
+
+

qmi_message_dms_read_eri_file_output_get_eri_file ()

+
gboolean
+qmi_message_dms_read_eri_file_output_get_eri_file
+                               (QmiMessageDmsReadEriFileOutput *self,
+                                GArray **value_eri_file,
+                                GError **error);
+

Get the 'ERI File' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageDmsReadEriFileOutput.

 

value_eri_file

a placeholder for the output GArray of guint8 elements, or NULL if not required. Do not free it, it is owned by self +.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.0

+
+
+
+

qmi_client_dms_read_eri_file ()

+
void
+qmi_client_dms_read_eri_file (QmiClientDms *self,
+                              gpointer unused,
+                              guint timeout,
+                              GCancellable *cancellable,
+                              GAsyncReadyCallback callback,
+                              gpointer user_data);
+

Asynchronously sends a Read ERI File request to the device.

+

When the operation is finished, callback + will be invoked in the thread-default main loop of the thread you are calling this method from.

+

You can then call qmi_client_dms_read_eri_file_finish() to get the result of the operation.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

self

a QmiClientDms.

 

unused

NULL. This message doesn't have any input bundle.

 

timeout

maximum time to wait for the method to complete, in seconds.

 

cancellable

a GCancellable or NULL.

 

callback

a GAsyncReadyCallback to call when the request is satisfied.

 

user_data

user data to pass to callback +.

 
+
+

Since: 1.0

+
+
+
+

qmi_client_dms_read_eri_file_finish ()

+
QmiMessageDmsReadEriFileOutput *
+qmi_client_dms_read_eri_file_finish (QmiClientDms *self,
+                                     GAsyncResult *res,
+                                     GError **error);
+

Finishes an async operation started with qmi_client_dms_read_eri_file().

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiClientDms.

 

res

the GAsyncResult obtained from the GAsyncReadyCallback passed to qmi_client_dms_read_eri_file().

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

a QmiMessageDmsReadEriFileOutput, or NULL if error +is set. The returned value should be freed with qmi_message_dms_read_eri_file_output_unref().

+
+

Since: 1.0

+
+
+
+

Types and Values

+
+

QmiMessageDmsReadEriFileOutput

+
typedef struct _QmiMessageDmsReadEriFileOutput QmiMessageDmsReadEriFileOutput;
+

The QmiMessageDmsReadEriFileOutput structure contains private data and should only be accessed +using the provided API.

+

Since: 1.0

+
+
+
+ + + \ No newline at end of file diff -Nru libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-DMS-Read-User-Data.html libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-DMS-Read-User-Data.html --- libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-DMS-Read-User-Data.html 2017-03-22 12:28:29.000000000 +0100 +++ libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-DMS-Read-User-Data.html 1970-01-01 01:00:00.000000000 +0100 @@ -1,371 +0,0 @@ - - - - -DMS Read User Data: libqmi-glib Reference Manual - - - - - - - - - - - - - - - - -
-
-
- - -
-

DMS Read User Data

-

DMS Read User Data

-
- -
-

Types and Values

- -
-
-

Object Hierarchy

-
    GBoxed
-    ╰── QmiMessageDmsReadUserDataOutput
-
-
-
-

Description

-
-
-

Functions

-
-

qmi_message_dms_read_user_data_output_ref ()

-
QmiMessageDmsReadUserDataOutput *
-qmi_message_dms_read_user_data_output_ref
-                               (QmiMessageDmsReadUserDataOutput *self);
-

Atomically increments the reference count of self - by one.

-
-

Parameters

-
----- - - - - - -

self

a QmiMessageDmsReadUserDataOutput.

 
-
-
-

Returns

-

the new reference to self -.

-
-

Since: 1.0

-
-
-
-

qmi_message_dms_read_user_data_output_unref ()

-
void
-qmi_message_dms_read_user_data_output_unref
-                               (QmiMessageDmsReadUserDataOutput *self);
-

Atomically decrements the reference count of self - by one. -If the reference count drops to 0, self - is completely disposed.

-
-

Parameters

-
----- - - - - - -

self

a QmiMessageDmsReadUserDataOutput.

 
-
-

Since: 1.0

-
-
-
-

qmi_message_dms_read_user_data_output_get_result ()

-
gboolean
-qmi_message_dms_read_user_data_output_get_result
-                               (QmiMessageDmsReadUserDataOutput *self,
-                                GError **error);
-

Get the result of the QMI operation.

-
-

Parameters

-
----- - - - - - - - - - - - - -

self

a QmiMessageDmsReadUserDataOutput.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the QMI operation succeeded, FALSE if error -is set.

-
-

Since: 1.0

-
-
-
-

qmi_message_dms_read_user_data_output_get_user_data ()

-
gboolean
-qmi_message_dms_read_user_data_output_get_user_data
-                               (QmiMessageDmsReadUserDataOutput *self,
-                                GArray **value_user_data,
-                                GError **error);
-

Get the 'User Data' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessageDmsReadUserDataOutput.

 

value_user_data

a placeholder for the output GArray of guint8 elements, or NULL if not required. Do not free it, it is owned by self -.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.0

-
-
-
-

qmi_client_dms_read_user_data ()

-
void
-qmi_client_dms_read_user_data (QmiClientDms *self,
-                               gpointer unused,
-                               guint timeout,
-                               GCancellable *cancellable,
-                               GAsyncReadyCallback callback,
-                               gpointer user_data);
-

Asynchronously sends a Read User Data request to the device.

-

When the operation is finished, callback - will be invoked in the thread-default main loop of the thread you are calling this method from.

-

You can then call qmi_client_dms_read_user_data_finish() to get the result of the operation.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

self

a QmiClientDms.

 

unused

NULL. This message doesn't have any input bundle.

 

timeout

maximum time to wait for the method to complete, in seconds.

 

cancellable

a GCancellable or NULL.

 

callback

a GAsyncReadyCallback to call when the request is satisfied.

 

user_data

user data to pass to callback -.

 
-
-

Since: 1.0

-
-
-
-

qmi_client_dms_read_user_data_finish ()

-
QmiMessageDmsReadUserDataOutput *
-qmi_client_dms_read_user_data_finish (QmiClientDms *self,
-                                      GAsyncResult *res,
-                                      GError **error);
-

Finishes an async operation started with qmi_client_dms_read_user_data().

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiClientDms.

 

res

the GAsyncResult obtained from the GAsyncReadyCallback passed to qmi_client_dms_read_user_data().

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

a QmiMessageDmsReadUserDataOutput, or NULL if error -is set. The returned value should be freed with qmi_message_dms_read_user_data_output_unref().

-
-

Since: 1.0

-
-
-
-

Types and Values

-
-

QmiMessageDmsReadUserDataOutput

-
typedef struct _QmiMessageDmsReadUserDataOutput QmiMessageDmsReadUserDataOutput;
-

The QmiMessageDmsReadUserDataOutput structure contains private data and should only be accessed -using the provided API.

-

Since: 1.0

-
-
-
- - - \ No newline at end of file diff -Nru libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-DMS-Read-User-Data-request.html libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-DMS-Read-User-Data-request.html --- libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-DMS-Read-User-Data-request.html 1970-01-01 01:00:00.000000000 +0100 +++ libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-DMS-Read-User-Data-request.html 2019-01-08 15:19:01.000000000 +0100 @@ -0,0 +1,371 @@ + + + + +DMS Read User Data request: libqmi-glib Reference Manual + + + + + + + + + + + + + + + + +
+
+
+ + +
+

DMS Read User Data request

+

DMS Read User Data request

+
+ +
+

Types and Values

+ +
+
+

Object Hierarchy

+
    GBoxed
+    ╰── QmiMessageDmsReadUserDataOutput
+
+
+
+

Description

+
+
+

Functions

+
+

qmi_message_dms_read_user_data_output_ref ()

+
QmiMessageDmsReadUserDataOutput *
+qmi_message_dms_read_user_data_output_ref
+                               (QmiMessageDmsReadUserDataOutput *self);
+

Atomically increments the reference count of self + by one.

+
+

Parameters

+
+++++ + + + + + +

self

a QmiMessageDmsReadUserDataOutput.

 
+
+
+

Returns

+

the new reference to self +.

+
+

Since: 1.0

+
+
+
+

qmi_message_dms_read_user_data_output_unref ()

+
void
+qmi_message_dms_read_user_data_output_unref
+                               (QmiMessageDmsReadUserDataOutput *self);
+

Atomically decrements the reference count of self + by one. +If the reference count drops to 0, self + is completely disposed.

+
+

Parameters

+
+++++ + + + + + +

self

a QmiMessageDmsReadUserDataOutput.

 
+
+

Since: 1.0

+
+
+
+

qmi_message_dms_read_user_data_output_get_result ()

+
gboolean
+qmi_message_dms_read_user_data_output_get_result
+                               (QmiMessageDmsReadUserDataOutput *self,
+                                GError **error);
+

Get the result of the QMI operation.

+
+

Parameters

+
+++++ + + + + + + + + + + + + +

self

a QmiMessageDmsReadUserDataOutput.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the QMI operation succeeded, FALSE if error +is set.

+
+

Since: 1.0

+
+
+
+

qmi_message_dms_read_user_data_output_get_user_data ()

+
gboolean
+qmi_message_dms_read_user_data_output_get_user_data
+                               (QmiMessageDmsReadUserDataOutput *self,
+                                GArray **value_user_data,
+                                GError **error);
+

Get the 'User Data' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageDmsReadUserDataOutput.

 

value_user_data

a placeholder for the output GArray of guint8 elements, or NULL if not required. Do not free it, it is owned by self +.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.0

+
+
+
+

qmi_client_dms_read_user_data ()

+
void
+qmi_client_dms_read_user_data (QmiClientDms *self,
+                               gpointer unused,
+                               guint timeout,
+                               GCancellable *cancellable,
+                               GAsyncReadyCallback callback,
+                               gpointer user_data);
+

Asynchronously sends a Read User Data request to the device.

+

When the operation is finished, callback + will be invoked in the thread-default main loop of the thread you are calling this method from.

+

You can then call qmi_client_dms_read_user_data_finish() to get the result of the operation.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

self

a QmiClientDms.

 

unused

NULL. This message doesn't have any input bundle.

 

timeout

maximum time to wait for the method to complete, in seconds.

 

cancellable

a GCancellable or NULL.

 

callback

a GAsyncReadyCallback to call when the request is satisfied.

 

user_data

user data to pass to callback +.

 
+
+

Since: 1.0

+
+
+
+

qmi_client_dms_read_user_data_finish ()

+
QmiMessageDmsReadUserDataOutput *
+qmi_client_dms_read_user_data_finish (QmiClientDms *self,
+                                      GAsyncResult *res,
+                                      GError **error);
+

Finishes an async operation started with qmi_client_dms_read_user_data().

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiClientDms.

 

res

the GAsyncResult obtained from the GAsyncReadyCallback passed to qmi_client_dms_read_user_data().

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

a QmiMessageDmsReadUserDataOutput, or NULL if error +is set. The returned value should be freed with qmi_message_dms_read_user_data_output_unref().

+
+

Since: 1.0

+
+
+
+

Types and Values

+
+

QmiMessageDmsReadUserDataOutput

+
typedef struct _QmiMessageDmsReadUserDataOutput QmiMessageDmsReadUserDataOutput;
+

The QmiMessageDmsReadUserDataOutput structure contains private data and should only be accessed +using the provided API.

+

Since: 1.0

+
+
+
+ + + \ No newline at end of file diff -Nru libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-DMS-Reset.html libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-DMS-Reset.html --- libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-DMS-Reset.html 2017-03-22 12:28:29.000000000 +0100 +++ libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-DMS-Reset.html 1970-01-01 01:00:00.000000000 +0100 @@ -1,317 +0,0 @@ - - - - -DMS Reset: libqmi-glib Reference Manual - - - - - - - - - - - - - - - - -
-
-
- - -
-

DMS Reset

-

DMS Reset

-
-
-

Functions

- -
-
-

Types and Values

-
---- - - - - -
 QmiMessageDmsResetOutput
-
-
-

Object Hierarchy

-
    GBoxed
-    ╰── QmiMessageDmsResetOutput
-
-
-
-

Description

-
-
-

Functions

-
-

qmi_message_dms_reset_output_ref ()

-
QmiMessageDmsResetOutput *
-qmi_message_dms_reset_output_ref (QmiMessageDmsResetOutput *self);
-

Atomically increments the reference count of self - by one.

-
-

Parameters

-
----- - - - - - -

self

a QmiMessageDmsResetOutput.

 
-
-
-

Returns

-

the new reference to self -.

-
-

Since: 1.0

-
-
-
-

qmi_message_dms_reset_output_unref ()

-
void
-qmi_message_dms_reset_output_unref (QmiMessageDmsResetOutput *self);
-

Atomically decrements the reference count of self - by one. -If the reference count drops to 0, self - is completely disposed.

-
-

Parameters

-
----- - - - - - -

self

a QmiMessageDmsResetOutput.

 
-
-

Since: 1.0

-
-
-
-

qmi_message_dms_reset_output_get_result ()

-
gboolean
-qmi_message_dms_reset_output_get_result
-                               (QmiMessageDmsResetOutput *self,
-                                GError **error);
-

Get the result of the QMI operation.

-
-

Parameters

-
----- - - - - - - - - - - - - -

self

a QmiMessageDmsResetOutput.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the QMI operation succeeded, FALSE if error -is set.

-
-

Since: 1.0

-
-
-
-

qmi_client_dms_reset ()

-
void
-qmi_client_dms_reset (QmiClientDms *self,
-                      gpointer unused,
-                      guint timeout,
-                      GCancellable *cancellable,
-                      GAsyncReadyCallback callback,
-                      gpointer user_data);
-

Asynchronously sends a Reset request to the device.

-

When the operation is finished, callback - will be invoked in the thread-default main loop of the thread you are calling this method from.

-

You can then call qmi_client_dms_reset_finish() to get the result of the operation.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

self

a QmiClientDms.

 

unused

NULL. This message doesn't have any input bundle.

 

timeout

maximum time to wait for the method to complete, in seconds.

 

cancellable

a GCancellable or NULL.

 

callback

a GAsyncReadyCallback to call when the request is satisfied.

 

user_data

user data to pass to callback -.

 
-
-

Since: 1.0

-
-
-
-

qmi_client_dms_reset_finish ()

-
QmiMessageDmsResetOutput *
-qmi_client_dms_reset_finish (QmiClientDms *self,
-                             GAsyncResult *res,
-                             GError **error);
-

Finishes an async operation started with qmi_client_dms_reset().

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiClientDms.

 

res

the GAsyncResult obtained from the GAsyncReadyCallback passed to qmi_client_dms_reset().

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

a QmiMessageDmsResetOutput, or NULL if error -is set. The returned value should be freed with qmi_message_dms_reset_output_unref().

-
-

Since: 1.0

-
-
-
-

Types and Values

-
-

QmiMessageDmsResetOutput

-
typedef struct _QmiMessageDmsResetOutput QmiMessageDmsResetOutput;
-

The QmiMessageDmsResetOutput structure contains private data and should only be accessed -using the provided API.

-

Since: 1.0

-
-
-
- - - \ No newline at end of file diff -Nru libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-DMS-Reset-request.html libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-DMS-Reset-request.html --- libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-DMS-Reset-request.html 1970-01-01 01:00:00.000000000 +0100 +++ libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-DMS-Reset-request.html 2019-01-08 15:19:01.000000000 +0100 @@ -0,0 +1,317 @@ + + + + +DMS Reset request: libqmi-glib Reference Manual + + + + + + + + + + + + + + + + +
+
+
+ + +
+

DMS Reset request

+

DMS Reset request

+
+
+

Functions

+ +
+
+

Types and Values

+
++++ + + + + +
 QmiMessageDmsResetOutput
+
+
+

Object Hierarchy

+
    GBoxed
+    ╰── QmiMessageDmsResetOutput
+
+
+
+

Description

+
+
+

Functions

+
+

qmi_message_dms_reset_output_ref ()

+
QmiMessageDmsResetOutput *
+qmi_message_dms_reset_output_ref (QmiMessageDmsResetOutput *self);
+

Atomically increments the reference count of self + by one.

+
+

Parameters

+
+++++ + + + + + +

self

a QmiMessageDmsResetOutput.

 
+
+
+

Returns

+

the new reference to self +.

+
+

Since: 1.0

+
+
+
+

qmi_message_dms_reset_output_unref ()

+
void
+qmi_message_dms_reset_output_unref (QmiMessageDmsResetOutput *self);
+

Atomically decrements the reference count of self + by one. +If the reference count drops to 0, self + is completely disposed.

+
+

Parameters

+
+++++ + + + + + +

self

a QmiMessageDmsResetOutput.

 
+
+

Since: 1.0

+
+
+
+

qmi_message_dms_reset_output_get_result ()

+
gboolean
+qmi_message_dms_reset_output_get_result
+                               (QmiMessageDmsResetOutput *self,
+                                GError **error);
+

Get the result of the QMI operation.

+
+

Parameters

+
+++++ + + + + + + + + + + + + +

self

a QmiMessageDmsResetOutput.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the QMI operation succeeded, FALSE if error +is set.

+
+

Since: 1.0

+
+
+
+

qmi_client_dms_reset ()

+
void
+qmi_client_dms_reset (QmiClientDms *self,
+                      gpointer unused,
+                      guint timeout,
+                      GCancellable *cancellable,
+                      GAsyncReadyCallback callback,
+                      gpointer user_data);
+

Asynchronously sends a Reset request to the device.

+

When the operation is finished, callback + will be invoked in the thread-default main loop of the thread you are calling this method from.

+

You can then call qmi_client_dms_reset_finish() to get the result of the operation.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

self

a QmiClientDms.

 

unused

NULL. This message doesn't have any input bundle.

 

timeout

maximum time to wait for the method to complete, in seconds.

 

cancellable

a GCancellable or NULL.

 

callback

a GAsyncReadyCallback to call when the request is satisfied.

 

user_data

user data to pass to callback +.

 
+
+

Since: 1.0

+
+
+
+

qmi_client_dms_reset_finish ()

+
QmiMessageDmsResetOutput *
+qmi_client_dms_reset_finish (QmiClientDms *self,
+                             GAsyncResult *res,
+                             GError **error);
+

Finishes an async operation started with qmi_client_dms_reset().

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiClientDms.

 

res

the GAsyncResult obtained from the GAsyncReadyCallback passed to qmi_client_dms_reset().

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

a QmiMessageDmsResetOutput, or NULL if error +is set. The returned value should be freed with qmi_message_dms_reset_output_unref().

+
+

Since: 1.0

+
+
+
+

Types and Values

+
+

QmiMessageDmsResetOutput

+
typedef struct _QmiMessageDmsResetOutput QmiMessageDmsResetOutput;
+

The QmiMessageDmsResetOutput structure contains private data and should only be accessed +using the provided API.

+

Since: 1.0

+
+
+
+ + + \ No newline at end of file diff -Nru libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-DMS-Restore-Factory-Defaults.html libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-DMS-Restore-Factory-Defaults.html --- libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-DMS-Restore-Factory-Defaults.html 2017-03-22 12:28:28.000000000 +0100 +++ libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-DMS-Restore-Factory-Defaults.html 1970-01-01 01:00:00.000000000 +0100 @@ -1,532 +0,0 @@ - - - - -DMS Restore Factory Defaults: libqmi-glib Reference Manual - - - - - - - - - - - - - - - - -
-
-
- - -
-

DMS Restore Factory Defaults

-

DMS Restore Factory Defaults

-
- -
-

Types and Values

- -
-
-

Object Hierarchy

-
    GBoxed
-    ├── QmiMessageDmsRestoreFactoryDefaultsInput
-    ╰── QmiMessageDmsRestoreFactoryDefaultsOutput
-
-
-
-

Description

-
-
-

Functions

-
-

qmi_message_dms_restore_factory_defaults_input_new ()

-
QmiMessageDmsRestoreFactoryDefaultsInput *
-qmi_message_dms_restore_factory_defaults_input_new
-                               (void);
-

Allocates a new QmiMessageDmsRestoreFactoryDefaultsInput.

-
-

Returns

-

the newly created QmiMessageDmsRestoreFactoryDefaultsInput. The returned value should be freed with qmi_message_dms_restore_factory_defaults_input_unref().

-
-

Since: 1.0

-
-
-
-

qmi_message_dms_restore_factory_defaults_input_ref ()

-
QmiMessageDmsRestoreFactoryDefaultsInput *
-qmi_message_dms_restore_factory_defaults_input_ref
-                               (QmiMessageDmsRestoreFactoryDefaultsInput *self);
-

Atomically increments the reference count of self - by one.

-
-

Parameters

-
----- - - - - - -

self

a QmiMessageDmsRestoreFactoryDefaultsInput.

 
-
-
-

Returns

-

the new reference to self -.

-
-

Since: 1.0

-
-
-
-

qmi_message_dms_restore_factory_defaults_input_unref ()

-
void
-qmi_message_dms_restore_factory_defaults_input_unref
-                               (QmiMessageDmsRestoreFactoryDefaultsInput *self);
-

Atomically decrements the reference count of self - by one. -If the reference count drops to 0, self - is completely disposed.

-
-

Parameters

-
----- - - - - - -

self

a QmiMessageDmsRestoreFactoryDefaultsInput.

 
-
-

Since: 1.0

-
-
-
-

qmi_message_dms_restore_factory_defaults_input_get_service_programming_code ()

-
gboolean
-qmi_message_dms_restore_factory_defaults_input_get_service_programming_code
-                               (QmiMessageDmsRestoreFactoryDefaultsInput *self,
-                                const gchar **value_service_programming_code,
-                                GError **error);
-

Get the 'Service Programming Code' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessageDmsRestoreFactoryDefaultsInput.

 

value_service_programming_code

a placeholder for the output constant string, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.0

-
-
-
-

qmi_message_dms_restore_factory_defaults_input_set_service_programming_code ()

-
gboolean
-qmi_message_dms_restore_factory_defaults_input_set_service_programming_code
-                               (QmiMessageDmsRestoreFactoryDefaultsInput *self,
-                                const gchar *value_service_programming_code,
-                                GError **error);
-

Set the 'Service Programming Code' field in the message.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessageDmsRestoreFactoryDefaultsInput.

 

value_service_programming_code

a constant string of exactly 6 characters.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if value -was successfully set, FALSE otherwise.

-
-

Since: 1.0

-
-
-
-

qmi_message_dms_restore_factory_defaults_output_ref ()

-
QmiMessageDmsRestoreFactoryDefaultsOutput *
-qmi_message_dms_restore_factory_defaults_output_ref
-                               (QmiMessageDmsRestoreFactoryDefaultsOutput *self);
-

Atomically increments the reference count of self - by one.

-
-

Parameters

-
----- - - - - - -

self

a QmiMessageDmsRestoreFactoryDefaultsOutput.

 
-
-
-

Returns

-

the new reference to self -.

-
-

Since: 1.0

-
-
-
-

qmi_message_dms_restore_factory_defaults_output_unref ()

-
void
-qmi_message_dms_restore_factory_defaults_output_unref
-                               (QmiMessageDmsRestoreFactoryDefaultsOutput *self);
-

Atomically decrements the reference count of self - by one. -If the reference count drops to 0, self - is completely disposed.

-
-

Parameters

-
----- - - - - - -

self

a QmiMessageDmsRestoreFactoryDefaultsOutput.

 
-
-

Since: 1.0

-
-
-
-

qmi_message_dms_restore_factory_defaults_output_get_result ()

-
gboolean
-qmi_message_dms_restore_factory_defaults_output_get_result
-                               (QmiMessageDmsRestoreFactoryDefaultsOutput *self,
-                                GError **error);
-

Get the result of the QMI operation.

-
-

Parameters

-
----- - - - - - - - - - - - - -

self

a QmiMessageDmsRestoreFactoryDefaultsOutput.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the QMI operation succeeded, FALSE if error -is set.

-
-

Since: 1.0

-
-
-
-

qmi_client_dms_restore_factory_defaults ()

-
void
-qmi_client_dms_restore_factory_defaults
-                               (QmiClientDms *self,
-                                QmiMessageDmsRestoreFactoryDefaultsInput *input,
-                                guint timeout,
-                                GCancellable *cancellable,
-                                GAsyncReadyCallback callback,
-                                gpointer user_data);
-

Asynchronously sends a Restore Factory Defaults request to the device.

-

When the operation is finished, callback - will be invoked in the thread-default main loop of the thread you are calling this method from.

-

You can then call qmi_client_dms_restore_factory_defaults_finish() to get the result of the operation.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

self

a QmiClientDms.

 

input

a QmiMessageDmsRestoreFactoryDefaultsInput.

 

timeout

maximum time to wait for the method to complete, in seconds.

 

cancellable

a GCancellable or NULL.

 

callback

a GAsyncReadyCallback to call when the request is satisfied.

 

user_data

user data to pass to callback -.

 
-
-

Since: 1.0

-
-
-
-

qmi_client_dms_restore_factory_defaults_finish ()

-
QmiMessageDmsRestoreFactoryDefaultsOutput *
-qmi_client_dms_restore_factory_defaults_finish
-                               (QmiClientDms *self,
-                                GAsyncResult *res,
-                                GError **error);
-

Finishes an async operation started with qmi_client_dms_restore_factory_defaults().

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiClientDms.

 

res

the GAsyncResult obtained from the GAsyncReadyCallback passed to qmi_client_dms_restore_factory_defaults().

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

a QmiMessageDmsRestoreFactoryDefaultsOutput, or NULL if error -is set. The returned value should be freed with qmi_message_dms_restore_factory_defaults_output_unref().

-
-

Since: 1.0

-
-
-
-

Types and Values

-
-

QmiMessageDmsRestoreFactoryDefaultsInput

-
typedef struct _QmiMessageDmsRestoreFactoryDefaultsInput QmiMessageDmsRestoreFactoryDefaultsInput;
-

The QmiMessageDmsRestoreFactoryDefaultsInput structure contains private data and should only be accessed -using the provided API.

-

Since: 1.0

-
-
-
-

QmiMessageDmsRestoreFactoryDefaultsOutput

-
typedef struct _QmiMessageDmsRestoreFactoryDefaultsOutput QmiMessageDmsRestoreFactoryDefaultsOutput;
-

The QmiMessageDmsRestoreFactoryDefaultsOutput structure contains private data and should only be accessed -using the provided API.

-

Since: 1.0

-
-
-
- - - \ No newline at end of file diff -Nru libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-DMS-Restore-Factory-Defaults-request.html libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-DMS-Restore-Factory-Defaults-request.html --- libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-DMS-Restore-Factory-Defaults-request.html 1970-01-01 01:00:00.000000000 +0100 +++ libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-DMS-Restore-Factory-Defaults-request.html 2019-01-08 15:19:01.000000000 +0100 @@ -0,0 +1,532 @@ + + + + +DMS Restore Factory Defaults request: libqmi-glib Reference Manual + + + + + + + + + + + + + + + + +
+
+
+ + +
+

DMS Restore Factory Defaults request

+

DMS Restore Factory Defaults request

+
+ +
+

Types and Values

+ +
+
+

Object Hierarchy

+
    GBoxed
+    ├── QmiMessageDmsRestoreFactoryDefaultsInput
+    ╰── QmiMessageDmsRestoreFactoryDefaultsOutput
+
+
+
+

Description

+
+
+

Functions

+
+

qmi_message_dms_restore_factory_defaults_input_new ()

+
QmiMessageDmsRestoreFactoryDefaultsInput *
+qmi_message_dms_restore_factory_defaults_input_new
+                               (void);
+

Allocates a new QmiMessageDmsRestoreFactoryDefaultsInput.

+
+

Returns

+

the newly created QmiMessageDmsRestoreFactoryDefaultsInput. The returned value should be freed with qmi_message_dms_restore_factory_defaults_input_unref().

+
+

Since: 1.0

+
+
+
+

qmi_message_dms_restore_factory_defaults_input_ref ()

+
QmiMessageDmsRestoreFactoryDefaultsInput *
+qmi_message_dms_restore_factory_defaults_input_ref
+                               (QmiMessageDmsRestoreFactoryDefaultsInput *self);
+

Atomically increments the reference count of self + by one.

+
+

Parameters

+
+++++ + + + + + +

self

a QmiMessageDmsRestoreFactoryDefaultsInput.

 
+
+
+

Returns

+

the new reference to self +.

+
+

Since: 1.0

+
+
+
+

qmi_message_dms_restore_factory_defaults_input_unref ()

+
void
+qmi_message_dms_restore_factory_defaults_input_unref
+                               (QmiMessageDmsRestoreFactoryDefaultsInput *self);
+

Atomically decrements the reference count of self + by one. +If the reference count drops to 0, self + is completely disposed.

+
+

Parameters

+
+++++ + + + + + +

self

a QmiMessageDmsRestoreFactoryDefaultsInput.

 
+
+

Since: 1.0

+
+
+
+

qmi_message_dms_restore_factory_defaults_input_get_service_programming_code ()

+
gboolean
+qmi_message_dms_restore_factory_defaults_input_get_service_programming_code
+                               (QmiMessageDmsRestoreFactoryDefaultsInput *self,
+                                const gchar **value_service_programming_code,
+                                GError **error);
+

Get the 'Service Programming Code' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageDmsRestoreFactoryDefaultsInput.

 

value_service_programming_code

a placeholder for the output constant string, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.0

+
+
+
+

qmi_message_dms_restore_factory_defaults_input_set_service_programming_code ()

+
gboolean
+qmi_message_dms_restore_factory_defaults_input_set_service_programming_code
+                               (QmiMessageDmsRestoreFactoryDefaultsInput *self,
+                                const gchar *value_service_programming_code,
+                                GError **error);
+

Set the 'Service Programming Code' field in the message.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageDmsRestoreFactoryDefaultsInput.

 

value_service_programming_code

a constant string of exactly 6 characters.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if value +was successfully set, FALSE otherwise.

+
+

Since: 1.0

+
+
+
+

qmi_message_dms_restore_factory_defaults_output_ref ()

+
QmiMessageDmsRestoreFactoryDefaultsOutput *
+qmi_message_dms_restore_factory_defaults_output_ref
+                               (QmiMessageDmsRestoreFactoryDefaultsOutput *self);
+

Atomically increments the reference count of self + by one.

+
+

Parameters

+
+++++ + + + + + +

self

a QmiMessageDmsRestoreFactoryDefaultsOutput.

 
+
+
+

Returns

+

the new reference to self +.

+
+

Since: 1.0

+
+
+
+

qmi_message_dms_restore_factory_defaults_output_unref ()

+
void
+qmi_message_dms_restore_factory_defaults_output_unref
+                               (QmiMessageDmsRestoreFactoryDefaultsOutput *self);
+

Atomically decrements the reference count of self + by one. +If the reference count drops to 0, self + is completely disposed.

+
+

Parameters

+
+++++ + + + + + +

self

a QmiMessageDmsRestoreFactoryDefaultsOutput.

 
+
+

Since: 1.0

+
+
+
+

qmi_message_dms_restore_factory_defaults_output_get_result ()

+
gboolean
+qmi_message_dms_restore_factory_defaults_output_get_result
+                               (QmiMessageDmsRestoreFactoryDefaultsOutput *self,
+                                GError **error);
+

Get the result of the QMI operation.

+
+

Parameters

+
+++++ + + + + + + + + + + + + +

self

a QmiMessageDmsRestoreFactoryDefaultsOutput.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the QMI operation succeeded, FALSE if error +is set.

+
+

Since: 1.0

+
+
+
+

qmi_client_dms_restore_factory_defaults ()

+
void
+qmi_client_dms_restore_factory_defaults
+                               (QmiClientDms *self,
+                                QmiMessageDmsRestoreFactoryDefaultsInput *input,
+                                guint timeout,
+                                GCancellable *cancellable,
+                                GAsyncReadyCallback callback,
+                                gpointer user_data);
+

Asynchronously sends a Restore Factory Defaults request to the device.

+

When the operation is finished, callback + will be invoked in the thread-default main loop of the thread you are calling this method from.

+

You can then call qmi_client_dms_restore_factory_defaults_finish() to get the result of the operation.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

self

a QmiClientDms.

 

input

a QmiMessageDmsRestoreFactoryDefaultsInput.

 

timeout

maximum time to wait for the method to complete, in seconds.

 

cancellable

a GCancellable or NULL.

 

callback

a GAsyncReadyCallback to call when the request is satisfied.

 

user_data

user data to pass to callback +.

 
+
+

Since: 1.0

+
+
+
+

qmi_client_dms_restore_factory_defaults_finish ()

+
QmiMessageDmsRestoreFactoryDefaultsOutput *
+qmi_client_dms_restore_factory_defaults_finish
+                               (QmiClientDms *self,
+                                GAsyncResult *res,
+                                GError **error);
+

Finishes an async operation started with qmi_client_dms_restore_factory_defaults().

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiClientDms.

 

res

the GAsyncResult obtained from the GAsyncReadyCallback passed to qmi_client_dms_restore_factory_defaults().

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

a QmiMessageDmsRestoreFactoryDefaultsOutput, or NULL if error +is set. The returned value should be freed with qmi_message_dms_restore_factory_defaults_output_unref().

+
+

Since: 1.0

+
+
+
+

Types and Values

+
+

QmiMessageDmsRestoreFactoryDefaultsInput

+
typedef struct _QmiMessageDmsRestoreFactoryDefaultsInput QmiMessageDmsRestoreFactoryDefaultsInput;
+

The QmiMessageDmsRestoreFactoryDefaultsInput structure contains private data and should only be accessed +using the provided API.

+

Since: 1.0

+
+
+
+

QmiMessageDmsRestoreFactoryDefaultsOutput

+
typedef struct _QmiMessageDmsRestoreFactoryDefaultsOutput QmiMessageDmsRestoreFactoryDefaultsOutput;
+

The QmiMessageDmsRestoreFactoryDefaultsOutput structure contains private data and should only be accessed +using the provided API.

+

Since: 1.0

+
+
+
+ + + \ No newline at end of file diff -Nru libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-DMS-Set-Alt-Net-Config.html libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-DMS-Set-Alt-Net-Config.html --- libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-DMS-Set-Alt-Net-Config.html 2017-03-22 12:28:29.000000000 +0100 +++ libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-DMS-Set-Alt-Net-Config.html 1970-01-01 01:00:00.000000000 +0100 @@ -1,531 +0,0 @@ - - - - -DMS Set Alt Net Config: libqmi-glib Reference Manual - - - - - - - - - - - - - - - - -
-
-
- - -
-

DMS Set Alt Net Config

-

DMS Set Alt Net Config

-
- -
-

Types and Values

- -
-
-

Object Hierarchy

-
    GBoxed
-    ├── QmiMessageDmsSetAltNetConfigInput
-    ╰── QmiMessageDmsSetAltNetConfigOutput
-
-
-
-

Description

-
-
-

Functions

-
-

qmi_message_dms_set_alt_net_config_input_new ()

-
QmiMessageDmsSetAltNetConfigInput *
-qmi_message_dms_set_alt_net_config_input_new
-                               (void);
-

Allocates a new QmiMessageDmsSetAltNetConfigInput.

-
-

Returns

-

the newly created QmiMessageDmsSetAltNetConfigInput. The returned value should be freed with qmi_message_dms_set_alt_net_config_input_unref().

-
-

Since: 1.0

-
-
-
-

qmi_message_dms_set_alt_net_config_input_ref ()

-
QmiMessageDmsSetAltNetConfigInput *
-qmi_message_dms_set_alt_net_config_input_ref
-                               (QmiMessageDmsSetAltNetConfigInput *self);
-

Atomically increments the reference count of self - by one.

-
-

Parameters

-
----- - - - - - -

self

a QmiMessageDmsSetAltNetConfigInput.

 
-
-
-

Returns

-

the new reference to self -.

-
-

Since: 1.0

-
-
-
-

qmi_message_dms_set_alt_net_config_input_unref ()

-
void
-qmi_message_dms_set_alt_net_config_input_unref
-                               (QmiMessageDmsSetAltNetConfigInput *self);
-

Atomically decrements the reference count of self - by one. -If the reference count drops to 0, self - is completely disposed.

-
-

Parameters

-
----- - - - - - -

self

a QmiMessageDmsSetAltNetConfigInput.

 
-
-

Since: 1.0

-
-
-
-

qmi_message_dms_set_alt_net_config_input_get_config ()

-
gboolean
-qmi_message_dms_set_alt_net_config_input_get_config
-                               (QmiMessageDmsSetAltNetConfigInput *self,
-                                gboolean *value_config,
-                                GError **error);
-

Get the 'Config' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessageDmsSetAltNetConfigInput.

 

value_config

a placeholder for the output gboolean, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.0

-
-
-
-

qmi_message_dms_set_alt_net_config_input_set_config ()

-
gboolean
-qmi_message_dms_set_alt_net_config_input_set_config
-                               (QmiMessageDmsSetAltNetConfigInput *self,
-                                gboolean value_config,
-                                GError **error);
-

Set the 'Config' field in the message.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessageDmsSetAltNetConfigInput.

 

value_config

a gboolean.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if value -was successfully set, FALSE otherwise.

-
-

Since: 1.0

-
-
-
-

qmi_message_dms_set_alt_net_config_output_ref ()

-
QmiMessageDmsSetAltNetConfigOutput *
-qmi_message_dms_set_alt_net_config_output_ref
-                               (QmiMessageDmsSetAltNetConfigOutput *self);
-

Atomically increments the reference count of self - by one.

-
-

Parameters

-
----- - - - - - -

self

a QmiMessageDmsSetAltNetConfigOutput.

 
-
-
-

Returns

-

the new reference to self -.

-
-

Since: 1.0

-
-
-
-

qmi_message_dms_set_alt_net_config_output_unref ()

-
void
-qmi_message_dms_set_alt_net_config_output_unref
-                               (QmiMessageDmsSetAltNetConfigOutput *self);
-

Atomically decrements the reference count of self - by one. -If the reference count drops to 0, self - is completely disposed.

-
-

Parameters

-
----- - - - - - -

self

a QmiMessageDmsSetAltNetConfigOutput.

 
-
-

Since: 1.0

-
-
-
-

qmi_message_dms_set_alt_net_config_output_get_result ()

-
gboolean
-qmi_message_dms_set_alt_net_config_output_get_result
-                               (QmiMessageDmsSetAltNetConfigOutput *self,
-                                GError **error);
-

Get the result of the QMI operation.

-
-

Parameters

-
----- - - - - - - - - - - - - -

self

a QmiMessageDmsSetAltNetConfigOutput.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the QMI operation succeeded, FALSE if error -is set.

-
-

Since: 1.0

-
-
-
-

qmi_client_dms_set_alt_net_config ()

-
void
-qmi_client_dms_set_alt_net_config (QmiClientDms *self,
-                                   QmiMessageDmsSetAltNetConfigInput *input,
-                                   guint timeout,
-                                   GCancellable *cancellable,
-                                   GAsyncReadyCallback callback,
-                                   gpointer user_data);
-

Asynchronously sends a Set Alt Net Config request to the device.

-

When the operation is finished, callback - will be invoked in the thread-default main loop of the thread you are calling this method from.

-

You can then call qmi_client_dms_set_alt_net_config_finish() to get the result of the operation.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

self

a QmiClientDms.

 

input

a QmiMessageDmsSetAltNetConfigInput.

 

timeout

maximum time to wait for the method to complete, in seconds.

 

cancellable

a GCancellable or NULL.

 

callback

a GAsyncReadyCallback to call when the request is satisfied.

 

user_data

user data to pass to callback -.

 
-
-

Since: 1.0

-
-
-
-

qmi_client_dms_set_alt_net_config_finish ()

-
QmiMessageDmsSetAltNetConfigOutput *
-qmi_client_dms_set_alt_net_config_finish
-                               (QmiClientDms *self,
-                                GAsyncResult *res,
-                                GError **error);
-

Finishes an async operation started with qmi_client_dms_set_alt_net_config().

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiClientDms.

 

res

the GAsyncResult obtained from the GAsyncReadyCallback passed to qmi_client_dms_set_alt_net_config().

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

a QmiMessageDmsSetAltNetConfigOutput, or NULL if error -is set. The returned value should be freed with qmi_message_dms_set_alt_net_config_output_unref().

-
-

Since: 1.0

-
-
-
-

Types and Values

-
-

QmiMessageDmsSetAltNetConfigInput

-
typedef struct _QmiMessageDmsSetAltNetConfigInput QmiMessageDmsSetAltNetConfigInput;
-

The QmiMessageDmsSetAltNetConfigInput structure contains private data and should only be accessed -using the provided API.

-

Since: 1.0

-
-
-
-

QmiMessageDmsSetAltNetConfigOutput

-
typedef struct _QmiMessageDmsSetAltNetConfigOutput QmiMessageDmsSetAltNetConfigOutput;
-

The QmiMessageDmsSetAltNetConfigOutput structure contains private data and should only be accessed -using the provided API.

-

Since: 1.0

-
-
-
- - - \ No newline at end of file diff -Nru libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-DMS-Set-Alt-Net-Config-request.html libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-DMS-Set-Alt-Net-Config-request.html --- libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-DMS-Set-Alt-Net-Config-request.html 1970-01-01 01:00:00.000000000 +0100 +++ libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-DMS-Set-Alt-Net-Config-request.html 2019-01-08 15:19:01.000000000 +0100 @@ -0,0 +1,531 @@ + + + + +DMS Set Alt Net Config request: libqmi-glib Reference Manual + + + + + + + + + + + + + + + + +
+
+
+ + +
+

DMS Set Alt Net Config request

+

DMS Set Alt Net Config request

+
+ +
+

Types and Values

+ +
+
+

Object Hierarchy

+
    GBoxed
+    ├── QmiMessageDmsSetAltNetConfigInput
+    ╰── QmiMessageDmsSetAltNetConfigOutput
+
+
+
+

Description

+
+
+

Functions

+
+

qmi_message_dms_set_alt_net_config_input_new ()

+
QmiMessageDmsSetAltNetConfigInput *
+qmi_message_dms_set_alt_net_config_input_new
+                               (void);
+

Allocates a new QmiMessageDmsSetAltNetConfigInput.

+
+

Returns

+

the newly created QmiMessageDmsSetAltNetConfigInput. The returned value should be freed with qmi_message_dms_set_alt_net_config_input_unref().

+
+

Since: 1.0

+
+
+
+

qmi_message_dms_set_alt_net_config_input_ref ()

+
QmiMessageDmsSetAltNetConfigInput *
+qmi_message_dms_set_alt_net_config_input_ref
+                               (QmiMessageDmsSetAltNetConfigInput *self);
+

Atomically increments the reference count of self + by one.

+
+

Parameters

+
+++++ + + + + + +

self

a QmiMessageDmsSetAltNetConfigInput.

 
+
+
+

Returns

+

the new reference to self +.

+
+

Since: 1.0

+
+
+
+

qmi_message_dms_set_alt_net_config_input_unref ()

+
void
+qmi_message_dms_set_alt_net_config_input_unref
+                               (QmiMessageDmsSetAltNetConfigInput *self);
+

Atomically decrements the reference count of self + by one. +If the reference count drops to 0, self + is completely disposed.

+
+

Parameters

+
+++++ + + + + + +

self

a QmiMessageDmsSetAltNetConfigInput.

 
+
+

Since: 1.0

+
+
+
+

qmi_message_dms_set_alt_net_config_input_get_config ()

+
gboolean
+qmi_message_dms_set_alt_net_config_input_get_config
+                               (QmiMessageDmsSetAltNetConfigInput *self,
+                                gboolean *value_config,
+                                GError **error);
+

Get the 'Config' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageDmsSetAltNetConfigInput.

 

value_config

a placeholder for the output gboolean, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.0

+
+
+
+

qmi_message_dms_set_alt_net_config_input_set_config ()

+
gboolean
+qmi_message_dms_set_alt_net_config_input_set_config
+                               (QmiMessageDmsSetAltNetConfigInput *self,
+                                gboolean value_config,
+                                GError **error);
+

Set the 'Config' field in the message.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageDmsSetAltNetConfigInput.

 

value_config

a gboolean.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if value +was successfully set, FALSE otherwise.

+
+

Since: 1.0

+
+
+
+

qmi_message_dms_set_alt_net_config_output_ref ()

+
QmiMessageDmsSetAltNetConfigOutput *
+qmi_message_dms_set_alt_net_config_output_ref
+                               (QmiMessageDmsSetAltNetConfigOutput *self);
+

Atomically increments the reference count of self + by one.

+
+

Parameters

+
+++++ + + + + + +

self

a QmiMessageDmsSetAltNetConfigOutput.

 
+
+
+

Returns

+

the new reference to self +.

+
+

Since: 1.0

+
+
+
+

qmi_message_dms_set_alt_net_config_output_unref ()

+
void
+qmi_message_dms_set_alt_net_config_output_unref
+                               (QmiMessageDmsSetAltNetConfigOutput *self);
+

Atomically decrements the reference count of self + by one. +If the reference count drops to 0, self + is completely disposed.

+
+

Parameters

+
+++++ + + + + + +

self

a QmiMessageDmsSetAltNetConfigOutput.

 
+
+

Since: 1.0

+
+
+
+

qmi_message_dms_set_alt_net_config_output_get_result ()

+
gboolean
+qmi_message_dms_set_alt_net_config_output_get_result
+                               (QmiMessageDmsSetAltNetConfigOutput *self,
+                                GError **error);
+

Get the result of the QMI operation.

+
+

Parameters

+
+++++ + + + + + + + + + + + + +

self

a QmiMessageDmsSetAltNetConfigOutput.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the QMI operation succeeded, FALSE if error +is set.

+
+

Since: 1.0

+
+
+
+

qmi_client_dms_set_alt_net_config ()

+
void
+qmi_client_dms_set_alt_net_config (QmiClientDms *self,
+                                   QmiMessageDmsSetAltNetConfigInput *input,
+                                   guint timeout,
+                                   GCancellable *cancellable,
+                                   GAsyncReadyCallback callback,
+                                   gpointer user_data);
+

Asynchronously sends a Set Alt Net Config request to the device.

+

When the operation is finished, callback + will be invoked in the thread-default main loop of the thread you are calling this method from.

+

You can then call qmi_client_dms_set_alt_net_config_finish() to get the result of the operation.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

self

a QmiClientDms.

 

input

a QmiMessageDmsSetAltNetConfigInput.

 

timeout

maximum time to wait for the method to complete, in seconds.

 

cancellable

a GCancellable or NULL.

 

callback

a GAsyncReadyCallback to call when the request is satisfied.

 

user_data

user data to pass to callback +.

 
+
+

Since: 1.0

+
+
+
+

qmi_client_dms_set_alt_net_config_finish ()

+
QmiMessageDmsSetAltNetConfigOutput *
+qmi_client_dms_set_alt_net_config_finish
+                               (QmiClientDms *self,
+                                GAsyncResult *res,
+                                GError **error);
+

Finishes an async operation started with qmi_client_dms_set_alt_net_config().

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiClientDms.

 

res

the GAsyncResult obtained from the GAsyncReadyCallback passed to qmi_client_dms_set_alt_net_config().

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

a QmiMessageDmsSetAltNetConfigOutput, or NULL if error +is set. The returned value should be freed with qmi_message_dms_set_alt_net_config_output_unref().

+
+

Since: 1.0

+
+
+
+

Types and Values

+
+

QmiMessageDmsSetAltNetConfigInput

+
typedef struct _QmiMessageDmsSetAltNetConfigInput QmiMessageDmsSetAltNetConfigInput;
+

The QmiMessageDmsSetAltNetConfigInput structure contains private data and should only be accessed +using the provided API.

+

Since: 1.0

+
+
+
+

QmiMessageDmsSetAltNetConfigOutput

+
typedef struct _QmiMessageDmsSetAltNetConfigOutput QmiMessageDmsSetAltNetConfigOutput;
+

The QmiMessageDmsSetAltNetConfigOutput structure contains private data and should only be accessed +using the provided API.

+

Since: 1.0

+
+
+
+ + + \ No newline at end of file diff -Nru libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-DMS-Set-Boot-Image-Download-Mode.html libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-DMS-Set-Boot-Image-Download-Mode.html --- libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-DMS-Set-Boot-Image-Download-Mode.html 2017-03-22 12:28:29.000000000 +0100 +++ libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-DMS-Set-Boot-Image-Download-Mode.html 1970-01-01 01:00:00.000000000 +0100 @@ -1,532 +0,0 @@ - - - - -DMS Set Boot Image Download Mode: libqmi-glib Reference Manual - - - - - - - - - - - - - - - - -
-
-
- - -
-

DMS Set Boot Image Download Mode

-

DMS Set Boot Image Download Mode

-
- - -
-

Object Hierarchy

-
    GBoxed
-    ├── QmiMessageDmsSetBootImageDownloadModeInput
-    ╰── QmiMessageDmsSetBootImageDownloadModeOutput
-
-
-
-

Description

-
-
-

Functions

-
-

qmi_message_dms_set_boot_image_download_mode_input_new ()

-
QmiMessageDmsSetBootImageDownloadModeInput *
-qmi_message_dms_set_boot_image_download_mode_input_new
-                               (void);
-

Allocates a new QmiMessageDmsSetBootImageDownloadModeInput.

-
-

Returns

-

the newly created QmiMessageDmsSetBootImageDownloadModeInput. The returned value should be freed with qmi_message_dms_set_boot_image_download_mode_input_unref().

-
-

Since: 1.18

-
-
-
-

qmi_message_dms_set_boot_image_download_mode_input_ref ()

-
QmiMessageDmsSetBootImageDownloadModeInput *
-qmi_message_dms_set_boot_image_download_mode_input_ref
-                               (QmiMessageDmsSetBootImageDownloadModeInput *self);
-

Atomically increments the reference count of self - by one.

-
-

Parameters

-
----- - - - - - -

self

a QmiMessageDmsSetBootImageDownloadModeInput.

 
-
-
-

Returns

-

the new reference to self -.

-
-

Since: 1.18

-
-
-
-

qmi_message_dms_set_boot_image_download_mode_input_unref ()

-
void
-qmi_message_dms_set_boot_image_download_mode_input_unref
-                               (QmiMessageDmsSetBootImageDownloadModeInput *self);
-

Atomically decrements the reference count of self - by one. -If the reference count drops to 0, self - is completely disposed.

-
-

Parameters

-
----- - - - - - -

self

a QmiMessageDmsSetBootImageDownloadModeInput.

 
-
-

Since: 1.18

-
-
-
-

qmi_message_dms_set_boot_image_download_mode_input_get_mode ()

-
gboolean
-qmi_message_dms_set_boot_image_download_mode_input_get_mode
-                               (QmiMessageDmsSetBootImageDownloadModeInput *self,
-                                QmiDmsBootImageDownloadMode *value_mode,
-                                GError **error);
-

Get the 'Mode' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessageDmsSetBootImageDownloadModeInput.

 

value_mode

a placeholder for the output QmiDmsBootImageDownloadMode, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.18

-
-
-
-

qmi_message_dms_set_boot_image_download_mode_input_set_mode ()

-
gboolean
-qmi_message_dms_set_boot_image_download_mode_input_set_mode
-                               (QmiMessageDmsSetBootImageDownloadModeInput *self,
-                                QmiDmsBootImageDownloadMode value_mode,
-                                GError **error);
-

Set the 'Mode' field in the message.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessageDmsSetBootImageDownloadModeInput.

 

value_mode

a QmiDmsBootImageDownloadMode.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if value -was successfully set, FALSE otherwise.

-
-

Since: 1.18

-
-
-
-

qmi_message_dms_set_boot_image_download_mode_output_ref ()

-
QmiMessageDmsSetBootImageDownloadModeOutput *
-qmi_message_dms_set_boot_image_download_mode_output_ref
-                               (QmiMessageDmsSetBootImageDownloadModeOutput *self);
-

Atomically increments the reference count of self - by one.

-
-

Parameters

- -
-
-

Returns

-

the new reference to self -.

-
-

Since: 1.18

-
-
-
-

qmi_message_dms_set_boot_image_download_mode_output_unref ()

-
void
-qmi_message_dms_set_boot_image_download_mode_output_unref
-                               (QmiMessageDmsSetBootImageDownloadModeOutput *self);
-

Atomically decrements the reference count of self - by one. -If the reference count drops to 0, self - is completely disposed.

-
-

Parameters

- -
-

Since: 1.18

-
-
-
-

qmi_message_dms_set_boot_image_download_mode_output_get_result ()

-
gboolean
-qmi_message_dms_set_boot_image_download_mode_output_get_result
-                               (QmiMessageDmsSetBootImageDownloadModeOutput *self,
-                                GError **error);
-

Get the result of the QMI operation.

-
-

Parameters

-
----- - - - - - - - - - - - - -

self

a QmiMessageDmsSetBootImageDownloadModeOutput.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the QMI operation succeeded, FALSE if error -is set.

-
-

Since: 1.18

-
-
-
-

qmi_client_dms_set_boot_image_download_mode ()

-
void
-qmi_client_dms_set_boot_image_download_mode
-                               (QmiClientDms *self,
-                                QmiMessageDmsSetBootImageDownloadModeInput *input,
-                                guint timeout,
-                                GCancellable *cancellable,
-                                GAsyncReadyCallback callback,
-                                gpointer user_data);
-

Asynchronously sends a Set Boot Image Download Mode request to the device.

-

When the operation is finished, callback - will be invoked in the thread-default main loop of the thread you are calling this method from.

-

You can then call qmi_client_dms_set_boot_image_download_mode_finish() to get the result of the operation.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

self

a QmiClientDms.

 

input

a QmiMessageDmsSetBootImageDownloadModeInput.

 

timeout

maximum time to wait for the method to complete, in seconds.

 

cancellable

a GCancellable or NULL.

 

callback

a GAsyncReadyCallback to call when the request is satisfied.

 

user_data

user data to pass to callback -.

 
-
-

Since: 1.18

-
-
-
-

qmi_client_dms_set_boot_image_download_mode_finish ()

-
QmiMessageDmsSetBootImageDownloadModeOutput *
-qmi_client_dms_set_boot_image_download_mode_finish
-                               (QmiClientDms *self,
-                                GAsyncResult *res,
-                                GError **error);
-

Finishes an async operation started with qmi_client_dms_set_boot_image_download_mode().

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiClientDms.

 

res

the GAsyncResult obtained from the GAsyncReadyCallback passed to qmi_client_dms_set_boot_image_download_mode().

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

a QmiMessageDmsSetBootImageDownloadModeOutput, or NULL if error -is set. The returned value should be freed with qmi_message_dms_set_boot_image_download_mode_output_unref().

-
-

Since: 1.18

-
-
-
-

Types and Values

-
-

QmiMessageDmsSetBootImageDownloadModeInput

-
typedef struct _QmiMessageDmsSetBootImageDownloadModeInput QmiMessageDmsSetBootImageDownloadModeInput;
-

The QmiMessageDmsSetBootImageDownloadModeInput structure contains private data and should only be accessed -using the provided API.

-

Since: 1.18

-
-
-
-

QmiMessageDmsSetBootImageDownloadModeOutput

-
typedef struct _QmiMessageDmsSetBootImageDownloadModeOutput QmiMessageDmsSetBootImageDownloadModeOutput;
-

The QmiMessageDmsSetBootImageDownloadModeOutput structure contains private data and should only be accessed -using the provided API.

-

Since: 1.18

-
-
-
- - - \ No newline at end of file diff -Nru libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-DMS-Set-Boot-Image-Download-Mode-request.html libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-DMS-Set-Boot-Image-Download-Mode-request.html --- libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-DMS-Set-Boot-Image-Download-Mode-request.html 1970-01-01 01:00:00.000000000 +0100 +++ libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-DMS-Set-Boot-Image-Download-Mode-request.html 2019-01-08 15:19:01.000000000 +0100 @@ -0,0 +1,532 @@ + + + + +DMS Set Boot Image Download Mode request: libqmi-glib Reference Manual + + + + + + + + + + + + + + + + +
+
+
+ + +
+

DMS Set Boot Image Download Mode request

+

DMS Set Boot Image Download Mode request

+
+ + +
+

Object Hierarchy

+
    GBoxed
+    ├── QmiMessageDmsSetBootImageDownloadModeInput
+    ╰── QmiMessageDmsSetBootImageDownloadModeOutput
+
+
+
+

Description

+
+
+

Functions

+
+

qmi_message_dms_set_boot_image_download_mode_input_new ()

+
QmiMessageDmsSetBootImageDownloadModeInput *
+qmi_message_dms_set_boot_image_download_mode_input_new
+                               (void);
+

Allocates a new QmiMessageDmsSetBootImageDownloadModeInput.

+
+

Returns

+

the newly created QmiMessageDmsSetBootImageDownloadModeInput. The returned value should be freed with qmi_message_dms_set_boot_image_download_mode_input_unref().

+
+

Since: 1.18

+
+
+
+

qmi_message_dms_set_boot_image_download_mode_input_ref ()

+
QmiMessageDmsSetBootImageDownloadModeInput *
+qmi_message_dms_set_boot_image_download_mode_input_ref
+                               (QmiMessageDmsSetBootImageDownloadModeInput *self);
+

Atomically increments the reference count of self + by one.

+
+

Parameters

+
+++++ + + + + + +

self

a QmiMessageDmsSetBootImageDownloadModeInput.

 
+
+
+

Returns

+

the new reference to self +.

+
+

Since: 1.18

+
+
+
+

qmi_message_dms_set_boot_image_download_mode_input_unref ()

+
void
+qmi_message_dms_set_boot_image_download_mode_input_unref
+                               (QmiMessageDmsSetBootImageDownloadModeInput *self);
+

Atomically decrements the reference count of self + by one. +If the reference count drops to 0, self + is completely disposed.

+
+

Parameters

+
+++++ + + + + + +

self

a QmiMessageDmsSetBootImageDownloadModeInput.

 
+
+

Since: 1.18

+
+
+
+

qmi_message_dms_set_boot_image_download_mode_input_get_mode ()

+
gboolean
+qmi_message_dms_set_boot_image_download_mode_input_get_mode
+                               (QmiMessageDmsSetBootImageDownloadModeInput *self,
+                                QmiDmsBootImageDownloadMode *value_mode,
+                                GError **error);
+

Get the 'Mode' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageDmsSetBootImageDownloadModeInput.

 

value_mode

a placeholder for the output QmiDmsBootImageDownloadMode, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.18

+
+
+
+

qmi_message_dms_set_boot_image_download_mode_input_set_mode ()

+
gboolean
+qmi_message_dms_set_boot_image_download_mode_input_set_mode
+                               (QmiMessageDmsSetBootImageDownloadModeInput *self,
+                                QmiDmsBootImageDownloadMode value_mode,
+                                GError **error);
+

Set the 'Mode' field in the message.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageDmsSetBootImageDownloadModeInput.

 

value_mode

a QmiDmsBootImageDownloadMode.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if value +was successfully set, FALSE otherwise.

+
+

Since: 1.18

+
+
+
+

qmi_message_dms_set_boot_image_download_mode_output_ref ()

+
QmiMessageDmsSetBootImageDownloadModeOutput *
+qmi_message_dms_set_boot_image_download_mode_output_ref
+                               (QmiMessageDmsSetBootImageDownloadModeOutput *self);
+

Atomically increments the reference count of self + by one.

+
+

Parameters

+ +
+
+

Returns

+

the new reference to self +.

+
+

Since: 1.18

+
+
+
+

qmi_message_dms_set_boot_image_download_mode_output_unref ()

+
void
+qmi_message_dms_set_boot_image_download_mode_output_unref
+                               (QmiMessageDmsSetBootImageDownloadModeOutput *self);
+

Atomically decrements the reference count of self + by one. +If the reference count drops to 0, self + is completely disposed.

+
+

Parameters

+ +
+

Since: 1.18

+
+
+
+

qmi_message_dms_set_boot_image_download_mode_output_get_result ()

+
gboolean
+qmi_message_dms_set_boot_image_download_mode_output_get_result
+                               (QmiMessageDmsSetBootImageDownloadModeOutput *self,
+                                GError **error);
+

Get the result of the QMI operation.

+
+

Parameters

+
+++++ + + + + + + + + + + + + +

self

a QmiMessageDmsSetBootImageDownloadModeOutput.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the QMI operation succeeded, FALSE if error +is set.

+
+

Since: 1.18

+
+
+
+

qmi_client_dms_set_boot_image_download_mode ()

+
void
+qmi_client_dms_set_boot_image_download_mode
+                               (QmiClientDms *self,
+                                QmiMessageDmsSetBootImageDownloadModeInput *input,
+                                guint timeout,
+                                GCancellable *cancellable,
+                                GAsyncReadyCallback callback,
+                                gpointer user_data);
+

Asynchronously sends a Set Boot Image Download Mode request to the device.

+

When the operation is finished, callback + will be invoked in the thread-default main loop of the thread you are calling this method from.

+

You can then call qmi_client_dms_set_boot_image_download_mode_finish() to get the result of the operation.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

self

a QmiClientDms.

 

input

a QmiMessageDmsSetBootImageDownloadModeInput.

 

timeout

maximum time to wait for the method to complete, in seconds.

 

cancellable

a GCancellable or NULL.

 

callback

a GAsyncReadyCallback to call when the request is satisfied.

 

user_data

user data to pass to callback +.

 
+
+

Since: 1.18

+
+
+
+

qmi_client_dms_set_boot_image_download_mode_finish ()

+
QmiMessageDmsSetBootImageDownloadModeOutput *
+qmi_client_dms_set_boot_image_download_mode_finish
+                               (QmiClientDms *self,
+                                GAsyncResult *res,
+                                GError **error);
+

Finishes an async operation started with qmi_client_dms_set_boot_image_download_mode().

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiClientDms.

 

res

the GAsyncResult obtained from the GAsyncReadyCallback passed to qmi_client_dms_set_boot_image_download_mode().

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

a QmiMessageDmsSetBootImageDownloadModeOutput, or NULL if error +is set. The returned value should be freed with qmi_message_dms_set_boot_image_download_mode_output_unref().

+
+

Since: 1.18

+
+
+
+

Types and Values

+
+

QmiMessageDmsSetBootImageDownloadModeInput

+
typedef struct _QmiMessageDmsSetBootImageDownloadModeInput QmiMessageDmsSetBootImageDownloadModeInput;
+

The QmiMessageDmsSetBootImageDownloadModeInput structure contains private data and should only be accessed +using the provided API.

+

Since: 1.18

+
+
+
+

QmiMessageDmsSetBootImageDownloadModeOutput

+
typedef struct _QmiMessageDmsSetBootImageDownloadModeOutput QmiMessageDmsSetBootImageDownloadModeOutput;
+

The QmiMessageDmsSetBootImageDownloadModeOutput structure contains private data and should only be accessed +using the provided API.

+

Since: 1.18

+
+
+
+ + + \ No newline at end of file diff -Nru libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-DMS-Set-Event-Report.html libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-DMS-Set-Event-Report.html --- libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-DMS-Set-Event-Report.html 2017-03-22 12:28:29.000000000 +0100 +++ libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-DMS-Set-Event-Report.html 1970-01-01 01:00:00.000000000 +0100 @@ -1,1257 +0,0 @@ - - - - -DMS Set Event Report: libqmi-glib Reference Manual - - - - - - - - - - - - - - - - -
-
-
- - -
-

DMS Set Event Report

-

DMS Set Event Report

-
-
-

Functions

-
---- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
-QmiMessageDmsSetEventReportInput * - -qmi_message_dms_set_event_report_input_new () -
-QmiMessageDmsSetEventReportInput * - -qmi_message_dms_set_event_report_input_ref () -
-void - -qmi_message_dms_set_event_report_input_unref () -
-gboolean - -qmi_message_dms_set_event_report_input_get_prl_init_reporting () -
-gboolean - -qmi_message_dms_set_event_report_input_set_prl_init_reporting () -
-gboolean - -qmi_message_dms_set_event_report_input_get_wireless_disable_state_reporting () -
-gboolean - -qmi_message_dms_set_event_report_input_set_wireless_disable_state_reporting () -
-gboolean - -qmi_message_dms_set_event_report_input_get_uim_state_reporting () -
-gboolean - -qmi_message_dms_set_event_report_input_set_uim_state_reporting () -
-gboolean - -qmi_message_dms_set_event_report_input_get_operating_mode_reporting () -
-gboolean - -qmi_message_dms_set_event_report_input_set_operating_mode_reporting () -
-gboolean - -qmi_message_dms_set_event_report_input_get_activation_state_reporting () -
-gboolean - -qmi_message_dms_set_event_report_input_set_activation_state_reporting () -
-gboolean - -qmi_message_dms_set_event_report_input_get_pin_state_reporting () -
-gboolean - -qmi_message_dms_set_event_report_input_set_pin_state_reporting () -
-gboolean - -qmi_message_dms_set_event_report_input_get_battery_level_report_limits () -
-gboolean - -qmi_message_dms_set_event_report_input_set_battery_level_report_limits () -
-gboolean - -qmi_message_dms_set_event_report_input_get_power_state_reporting () -
-gboolean - -qmi_message_dms_set_event_report_input_set_power_state_reporting () -
-QmiMessageDmsSetEventReportOutput * - -qmi_message_dms_set_event_report_output_ref () -
-void - -qmi_message_dms_set_event_report_output_unref () -
-gboolean - -qmi_message_dms_set_event_report_output_get_result () -
-void - -qmi_client_dms_set_event_report () -
-QmiMessageDmsSetEventReportOutput * - -qmi_client_dms_set_event_report_finish () -
-
-
-

Types and Values

- -
-
-

Object Hierarchy

-
    GBoxed
-    ├── QmiMessageDmsSetEventReportInput
-    ╰── QmiMessageDmsSetEventReportOutput
-
-
-
-

Description

-
-
-

Functions

-
-

qmi_message_dms_set_event_report_input_new ()

-
QmiMessageDmsSetEventReportInput *
-qmi_message_dms_set_event_report_input_new
-                               (void);
-

Allocates a new QmiMessageDmsSetEventReportInput.

-
-

Returns

-

the newly created QmiMessageDmsSetEventReportInput. The returned value should be freed with qmi_message_dms_set_event_report_input_unref().

-
-

Since: 1.0

-
-
-
-

qmi_message_dms_set_event_report_input_ref ()

-
QmiMessageDmsSetEventReportInput *
-qmi_message_dms_set_event_report_input_ref
-                               (QmiMessageDmsSetEventReportInput *self);
-

Atomically increments the reference count of self - by one.

-
-

Parameters

-
----- - - - - - -

self

a QmiMessageDmsSetEventReportInput.

 
-
-
-

Returns

-

the new reference to self -.

-
-

Since: 1.0

-
-
-
-

qmi_message_dms_set_event_report_input_unref ()

-
void
-qmi_message_dms_set_event_report_input_unref
-                               (QmiMessageDmsSetEventReportInput *self);
-

Atomically decrements the reference count of self - by one. -If the reference count drops to 0, self - is completely disposed.

-
-

Parameters

-
----- - - - - - -

self

a QmiMessageDmsSetEventReportInput.

 
-
-

Since: 1.0

-
-
-
-

qmi_message_dms_set_event_report_input_get_prl_init_reporting ()

-
gboolean
-qmi_message_dms_set_event_report_input_get_prl_init_reporting
-                               (QmiMessageDmsSetEventReportInput *self,
-                                gboolean *value_prl_init_reporting,
-                                GError **error);
-

Get the 'PRL Init Reporting' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessageDmsSetEventReportInput.

 

value_prl_init_reporting

a placeholder for the output gboolean, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.0

-
-
-
-

qmi_message_dms_set_event_report_input_set_prl_init_reporting ()

-
gboolean
-qmi_message_dms_set_event_report_input_set_prl_init_reporting
-                               (QmiMessageDmsSetEventReportInput *self,
-                                gboolean value_prl_init_reporting,
-                                GError **error);
-

Set the 'PRL Init Reporting' field in the message.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessageDmsSetEventReportInput.

 

value_prl_init_reporting

a gboolean.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if value -was successfully set, FALSE otherwise.

-
-

Since: 1.0

-
-
-
-

qmi_message_dms_set_event_report_input_get_wireless_disable_state_reporting ()

-
gboolean
-qmi_message_dms_set_event_report_input_get_wireless_disable_state_reporting
-                               (QmiMessageDmsSetEventReportInput *self,
-                                gboolean *value_wireless_disable_state_reporting,
-                                GError **error);
-

Get the 'Wireless Disable State Reporting' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessageDmsSetEventReportInput.

 

value_wireless_disable_state_reporting

a placeholder for the output gboolean, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.0

-
-
-
-

qmi_message_dms_set_event_report_input_set_wireless_disable_state_reporting ()

-
gboolean
-qmi_message_dms_set_event_report_input_set_wireless_disable_state_reporting
-                               (QmiMessageDmsSetEventReportInput *self,
-                                gboolean value_wireless_disable_state_reporting,
-                                GError **error);
-

Set the 'Wireless Disable State Reporting' field in the message.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessageDmsSetEventReportInput.

 

value_wireless_disable_state_reporting

a gboolean.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if value -was successfully set, FALSE otherwise.

-
-

Since: 1.0

-
-
-
-

qmi_message_dms_set_event_report_input_get_uim_state_reporting ()

-
gboolean
-qmi_message_dms_set_event_report_input_get_uim_state_reporting
-                               (QmiMessageDmsSetEventReportInput *self,
-                                gboolean *value_uim_state_reporting,
-                                GError **error);
-

Get the 'UIM State Reporting' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessageDmsSetEventReportInput.

 

value_uim_state_reporting

a placeholder for the output gboolean, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.0

-
-
-
-

qmi_message_dms_set_event_report_input_set_uim_state_reporting ()

-
gboolean
-qmi_message_dms_set_event_report_input_set_uim_state_reporting
-                               (QmiMessageDmsSetEventReportInput *self,
-                                gboolean value_uim_state_reporting,
-                                GError **error);
-

Set the 'UIM State Reporting' field in the message.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessageDmsSetEventReportInput.

 

value_uim_state_reporting

a gboolean.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if value -was successfully set, FALSE otherwise.

-
-

Since: 1.0

-
-
-
-

qmi_message_dms_set_event_report_input_get_operating_mode_reporting ()

-
gboolean
-qmi_message_dms_set_event_report_input_get_operating_mode_reporting
-                               (QmiMessageDmsSetEventReportInput *self,
-                                gboolean *value_operating_mode_reporting,
-                                GError **error);
-

Get the 'Operating Mode Reporting' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessageDmsSetEventReportInput.

 

value_operating_mode_reporting

a placeholder for the output gboolean, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.0

-
-
-
-

qmi_message_dms_set_event_report_input_set_operating_mode_reporting ()

-
gboolean
-qmi_message_dms_set_event_report_input_set_operating_mode_reporting
-                               (QmiMessageDmsSetEventReportInput *self,
-                                gboolean value_operating_mode_reporting,
-                                GError **error);
-

Set the 'Operating Mode Reporting' field in the message.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessageDmsSetEventReportInput.

 

value_operating_mode_reporting

a gboolean.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if value -was successfully set, FALSE otherwise.

-
-

Since: 1.0

-
-
-
-

qmi_message_dms_set_event_report_input_get_activation_state_reporting ()

-
gboolean
-qmi_message_dms_set_event_report_input_get_activation_state_reporting
-                               (QmiMessageDmsSetEventReportInput *self,
-                                gboolean *value_activation_state_reporting,
-                                GError **error);
-

Get the 'Activation State Reporting' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessageDmsSetEventReportInput.

 

value_activation_state_reporting

a placeholder for the output gboolean, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.0

-
-
-
-

qmi_message_dms_set_event_report_input_set_activation_state_reporting ()

-
gboolean
-qmi_message_dms_set_event_report_input_set_activation_state_reporting
-                               (QmiMessageDmsSetEventReportInput *self,
-                                gboolean value_activation_state_reporting,
-                                GError **error);
-

Set the 'Activation State Reporting' field in the message.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessageDmsSetEventReportInput.

 

value_activation_state_reporting

a gboolean.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if value -was successfully set, FALSE otherwise.

-
-

Since: 1.0

-
-
-
-

qmi_message_dms_set_event_report_input_get_pin_state_reporting ()

-
gboolean
-qmi_message_dms_set_event_report_input_get_pin_state_reporting
-                               (QmiMessageDmsSetEventReportInput *self,
-                                gboolean *value_pin_state_reporting,
-                                GError **error);
-

Get the 'PIN State Reporting' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessageDmsSetEventReportInput.

 

value_pin_state_reporting

a placeholder for the output gboolean, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.0

-
-
-
-

qmi_message_dms_set_event_report_input_set_pin_state_reporting ()

-
gboolean
-qmi_message_dms_set_event_report_input_set_pin_state_reporting
-                               (QmiMessageDmsSetEventReportInput *self,
-                                gboolean value_pin_state_reporting,
-                                GError **error);
-

Set the 'PIN State Reporting' field in the message.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessageDmsSetEventReportInput.

 

value_pin_state_reporting

a gboolean.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if value -was successfully set, FALSE otherwise.

-
-

Since: 1.0

-
-
-
-

qmi_message_dms_set_event_report_input_get_battery_level_report_limits ()

-
gboolean
-qmi_message_dms_set_event_report_input_get_battery_level_report_limits
-                               (QmiMessageDmsSetEventReportInput *self,
-                                guint8 *value_battery_level_report_limits_lower_limit,
-                                guint8 *value_battery_level_report_limits_upper_limit,
-                                GError **error);
-

Get the 'Battery Level Report Limits' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - - - - - - -

self

a QmiMessageDmsSetEventReportInput.

 

value_battery_level_report_limits_lower_limit

a placeholder for the output guint8, or NULL if not required.

 

value_battery_level_report_limits_upper_limit

a placeholder for the output guint8, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.0

-
-
-
-

qmi_message_dms_set_event_report_input_set_battery_level_report_limits ()

-
gboolean
-qmi_message_dms_set_event_report_input_set_battery_level_report_limits
-                               (QmiMessageDmsSetEventReportInput *self,
-                                guint8 value_battery_level_report_limits_lower_limit,
-                                guint8 value_battery_level_report_limits_upper_limit,
-                                GError **error);
-

Set the 'Battery Level Report Limits' field in the message.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - - - - - - -

self

a QmiMessageDmsSetEventReportInput.

 

value_battery_level_report_limits_lower_limit

a guint8.

 

value_battery_level_report_limits_upper_limit

a guint8.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if value -was successfully set, FALSE otherwise.

-
-

Since: 1.0

-
-
-
-

qmi_message_dms_set_event_report_input_get_power_state_reporting ()

-
gboolean
-qmi_message_dms_set_event_report_input_get_power_state_reporting
-                               (QmiMessageDmsSetEventReportInput *self,
-                                gboolean *value_power_state_reporting,
-                                GError **error);
-

Get the 'Power State Reporting' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessageDmsSetEventReportInput.

 

value_power_state_reporting

a placeholder for the output gboolean, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.0

-
-
-
-

qmi_message_dms_set_event_report_input_set_power_state_reporting ()

-
gboolean
-qmi_message_dms_set_event_report_input_set_power_state_reporting
-                               (QmiMessageDmsSetEventReportInput *self,
-                                gboolean value_power_state_reporting,
-                                GError **error);
-

Set the 'Power State Reporting' field in the message.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessageDmsSetEventReportInput.

 

value_power_state_reporting

a gboolean.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if value -was successfully set, FALSE otherwise.

-
-

Since: 1.0

-
-
-
-

qmi_message_dms_set_event_report_output_ref ()

-
QmiMessageDmsSetEventReportOutput *
-qmi_message_dms_set_event_report_output_ref
-                               (QmiMessageDmsSetEventReportOutput *self);
-

Atomically increments the reference count of self - by one.

-
-

Parameters

-
----- - - - - - -

self

a QmiMessageDmsSetEventReportOutput.

 
-
-
-

Returns

-

the new reference to self -.

-
-

Since: 1.0

-
-
-
-

qmi_message_dms_set_event_report_output_unref ()

-
void
-qmi_message_dms_set_event_report_output_unref
-                               (QmiMessageDmsSetEventReportOutput *self);
-

Atomically decrements the reference count of self - by one. -If the reference count drops to 0, self - is completely disposed.

-
-

Parameters

-
----- - - - - - -

self

a QmiMessageDmsSetEventReportOutput.

 
-
-

Since: 1.0

-
-
-
-

qmi_message_dms_set_event_report_output_get_result ()

-
gboolean
-qmi_message_dms_set_event_report_output_get_result
-                               (QmiMessageDmsSetEventReportOutput *self,
-                                GError **error);
-

Get the result of the QMI operation.

-
-

Parameters

-
----- - - - - - - - - - - - - -

self

a QmiMessageDmsSetEventReportOutput.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the QMI operation succeeded, FALSE if error -is set.

-
-

Since: 1.0

-
-
-
-

qmi_client_dms_set_event_report ()

-
void
-qmi_client_dms_set_event_report (QmiClientDms *self,
-                                 QmiMessageDmsSetEventReportInput *input,
-                                 guint timeout,
-                                 GCancellable *cancellable,
-                                 GAsyncReadyCallback callback,
-                                 gpointer user_data);
-

Asynchronously sends a Set Event Report request to the device.

-

When the operation is finished, callback - will be invoked in the thread-default main loop of the thread you are calling this method from.

-

You can then call qmi_client_dms_set_event_report_finish() to get the result of the operation.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

self

a QmiClientDms.

 

input

a QmiMessageDmsSetEventReportInput.

 

timeout

maximum time to wait for the method to complete, in seconds.

 

cancellable

a GCancellable or NULL.

 

callback

a GAsyncReadyCallback to call when the request is satisfied.

 

user_data

user data to pass to callback -.

 
-
-

Since: 1.0

-
-
-
-

qmi_client_dms_set_event_report_finish ()

-
QmiMessageDmsSetEventReportOutput *
-qmi_client_dms_set_event_report_finish
-                               (QmiClientDms *self,
-                                GAsyncResult *res,
-                                GError **error);
-

Finishes an async operation started with qmi_client_dms_set_event_report().

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiClientDms.

 

res

the GAsyncResult obtained from the GAsyncReadyCallback passed to qmi_client_dms_set_event_report().

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

a QmiMessageDmsSetEventReportOutput, or NULL if error -is set. The returned value should be freed with qmi_message_dms_set_event_report_output_unref().

-
-

Since: 1.0

-
-
-
-

Types and Values

-
-

QmiMessageDmsSetEventReportInput

-
typedef struct _QmiMessageDmsSetEventReportInput QmiMessageDmsSetEventReportInput;
-

The QmiMessageDmsSetEventReportInput structure contains private data and should only be accessed -using the provided API.

-

Since: 1.0

-
-
-
-

QmiMessageDmsSetEventReportOutput

-
typedef struct _QmiMessageDmsSetEventReportOutput QmiMessageDmsSetEventReportOutput;
-

The QmiMessageDmsSetEventReportOutput structure contains private data and should only be accessed -using the provided API.

-

Since: 1.0

-
-
-
- - - \ No newline at end of file diff -Nru libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-DMS-Set-Event-Report-request.html libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-DMS-Set-Event-Report-request.html --- libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-DMS-Set-Event-Report-request.html 1970-01-01 01:00:00.000000000 +0100 +++ libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-DMS-Set-Event-Report-request.html 2019-01-08 15:19:01.000000000 +0100 @@ -0,0 +1,1257 @@ + + + + +DMS Set Event Report request: libqmi-glib Reference Manual + + + + + + + + + + + + + + + + +
+
+
+ + +
+

DMS Set Event Report request

+

DMS Set Event Report request

+
+
+

Functions

+
++++ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+QmiMessageDmsSetEventReportInput * + +qmi_message_dms_set_event_report_input_new () +
+QmiMessageDmsSetEventReportInput * + +qmi_message_dms_set_event_report_input_ref () +
+void + +qmi_message_dms_set_event_report_input_unref () +
+gboolean + +qmi_message_dms_set_event_report_input_get_prl_init_reporting () +
+gboolean + +qmi_message_dms_set_event_report_input_set_prl_init_reporting () +
+gboolean + +qmi_message_dms_set_event_report_input_get_wireless_disable_state_reporting () +
+gboolean + +qmi_message_dms_set_event_report_input_set_wireless_disable_state_reporting () +
+gboolean + +qmi_message_dms_set_event_report_input_get_uim_state_reporting () +
+gboolean + +qmi_message_dms_set_event_report_input_set_uim_state_reporting () +
+gboolean + +qmi_message_dms_set_event_report_input_get_operating_mode_reporting () +
+gboolean + +qmi_message_dms_set_event_report_input_set_operating_mode_reporting () +
+gboolean + +qmi_message_dms_set_event_report_input_get_activation_state_reporting () +
+gboolean + +qmi_message_dms_set_event_report_input_set_activation_state_reporting () +
+gboolean + +qmi_message_dms_set_event_report_input_get_pin_state_reporting () +
+gboolean + +qmi_message_dms_set_event_report_input_set_pin_state_reporting () +
+gboolean + +qmi_message_dms_set_event_report_input_get_battery_level_report_limits () +
+gboolean + +qmi_message_dms_set_event_report_input_set_battery_level_report_limits () +
+gboolean + +qmi_message_dms_set_event_report_input_get_power_state_reporting () +
+gboolean + +qmi_message_dms_set_event_report_input_set_power_state_reporting () +
+QmiMessageDmsSetEventReportOutput * + +qmi_message_dms_set_event_report_output_ref () +
+void + +qmi_message_dms_set_event_report_output_unref () +
+gboolean + +qmi_message_dms_set_event_report_output_get_result () +
+void + +qmi_client_dms_set_event_report () +
+QmiMessageDmsSetEventReportOutput * + +qmi_client_dms_set_event_report_finish () +
+
+
+

Types and Values

+ +
+
+

Object Hierarchy

+
    GBoxed
+    ├── QmiMessageDmsSetEventReportInput
+    ╰── QmiMessageDmsSetEventReportOutput
+
+
+
+

Description

+
+
+

Functions

+
+

qmi_message_dms_set_event_report_input_new ()

+
QmiMessageDmsSetEventReportInput *
+qmi_message_dms_set_event_report_input_new
+                               (void);
+

Allocates a new QmiMessageDmsSetEventReportInput.

+
+

Returns

+

the newly created QmiMessageDmsSetEventReportInput. The returned value should be freed with qmi_message_dms_set_event_report_input_unref().

+
+

Since: 1.0

+
+
+
+

qmi_message_dms_set_event_report_input_ref ()

+
QmiMessageDmsSetEventReportInput *
+qmi_message_dms_set_event_report_input_ref
+                               (QmiMessageDmsSetEventReportInput *self);
+

Atomically increments the reference count of self + by one.

+
+

Parameters

+
+++++ + + + + + +

self

a QmiMessageDmsSetEventReportInput.

 
+
+
+

Returns

+

the new reference to self +.

+
+

Since: 1.0

+
+
+
+

qmi_message_dms_set_event_report_input_unref ()

+
void
+qmi_message_dms_set_event_report_input_unref
+                               (QmiMessageDmsSetEventReportInput *self);
+

Atomically decrements the reference count of self + by one. +If the reference count drops to 0, self + is completely disposed.

+
+

Parameters

+
+++++ + + + + + +

self

a QmiMessageDmsSetEventReportInput.

 
+
+

Since: 1.0

+
+
+
+

qmi_message_dms_set_event_report_input_get_prl_init_reporting ()

+
gboolean
+qmi_message_dms_set_event_report_input_get_prl_init_reporting
+                               (QmiMessageDmsSetEventReportInput *self,
+                                gboolean *value_prl_init_reporting,
+                                GError **error);
+

Get the 'PRL Init Reporting' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageDmsSetEventReportInput.

 

value_prl_init_reporting

a placeholder for the output gboolean, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.0

+
+
+
+

qmi_message_dms_set_event_report_input_set_prl_init_reporting ()

+
gboolean
+qmi_message_dms_set_event_report_input_set_prl_init_reporting
+                               (QmiMessageDmsSetEventReportInput *self,
+                                gboolean value_prl_init_reporting,
+                                GError **error);
+

Set the 'PRL Init Reporting' field in the message.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageDmsSetEventReportInput.

 

value_prl_init_reporting

a gboolean.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if value +was successfully set, FALSE otherwise.

+
+

Since: 1.0

+
+
+
+

qmi_message_dms_set_event_report_input_get_wireless_disable_state_reporting ()

+
gboolean
+qmi_message_dms_set_event_report_input_get_wireless_disable_state_reporting
+                               (QmiMessageDmsSetEventReportInput *self,
+                                gboolean *value_wireless_disable_state_reporting,
+                                GError **error);
+

Get the 'Wireless Disable State Reporting' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageDmsSetEventReportInput.

 

value_wireless_disable_state_reporting

a placeholder for the output gboolean, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.0

+
+
+
+

qmi_message_dms_set_event_report_input_set_wireless_disable_state_reporting ()

+
gboolean
+qmi_message_dms_set_event_report_input_set_wireless_disable_state_reporting
+                               (QmiMessageDmsSetEventReportInput *self,
+                                gboolean value_wireless_disable_state_reporting,
+                                GError **error);
+

Set the 'Wireless Disable State Reporting' field in the message.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageDmsSetEventReportInput.

 

value_wireless_disable_state_reporting

a gboolean.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if value +was successfully set, FALSE otherwise.

+
+

Since: 1.0

+
+
+
+

qmi_message_dms_set_event_report_input_get_uim_state_reporting ()

+
gboolean
+qmi_message_dms_set_event_report_input_get_uim_state_reporting
+                               (QmiMessageDmsSetEventReportInput *self,
+                                gboolean *value_uim_state_reporting,
+                                GError **error);
+

Get the 'UIM State Reporting' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageDmsSetEventReportInput.

 

value_uim_state_reporting

a placeholder for the output gboolean, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.0

+
+
+
+

qmi_message_dms_set_event_report_input_set_uim_state_reporting ()

+
gboolean
+qmi_message_dms_set_event_report_input_set_uim_state_reporting
+                               (QmiMessageDmsSetEventReportInput *self,
+                                gboolean value_uim_state_reporting,
+                                GError **error);
+

Set the 'UIM State Reporting' field in the message.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageDmsSetEventReportInput.

 

value_uim_state_reporting

a gboolean.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if value +was successfully set, FALSE otherwise.

+
+

Since: 1.0

+
+
+
+

qmi_message_dms_set_event_report_input_get_operating_mode_reporting ()

+
gboolean
+qmi_message_dms_set_event_report_input_get_operating_mode_reporting
+                               (QmiMessageDmsSetEventReportInput *self,
+                                gboolean *value_operating_mode_reporting,
+                                GError **error);
+

Get the 'Operating Mode Reporting' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageDmsSetEventReportInput.

 

value_operating_mode_reporting

a placeholder for the output gboolean, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.0

+
+
+
+

qmi_message_dms_set_event_report_input_set_operating_mode_reporting ()

+
gboolean
+qmi_message_dms_set_event_report_input_set_operating_mode_reporting
+                               (QmiMessageDmsSetEventReportInput *self,
+                                gboolean value_operating_mode_reporting,
+                                GError **error);
+

Set the 'Operating Mode Reporting' field in the message.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageDmsSetEventReportInput.

 

value_operating_mode_reporting

a gboolean.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if value +was successfully set, FALSE otherwise.

+
+

Since: 1.0

+
+
+
+

qmi_message_dms_set_event_report_input_get_activation_state_reporting ()

+
gboolean
+qmi_message_dms_set_event_report_input_get_activation_state_reporting
+                               (QmiMessageDmsSetEventReportInput *self,
+                                gboolean *value_activation_state_reporting,
+                                GError **error);
+

Get the 'Activation State Reporting' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageDmsSetEventReportInput.

 

value_activation_state_reporting

a placeholder for the output gboolean, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.0

+
+
+
+

qmi_message_dms_set_event_report_input_set_activation_state_reporting ()

+
gboolean
+qmi_message_dms_set_event_report_input_set_activation_state_reporting
+                               (QmiMessageDmsSetEventReportInput *self,
+                                gboolean value_activation_state_reporting,
+                                GError **error);
+

Set the 'Activation State Reporting' field in the message.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageDmsSetEventReportInput.

 

value_activation_state_reporting

a gboolean.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if value +was successfully set, FALSE otherwise.

+
+

Since: 1.0

+
+
+
+

qmi_message_dms_set_event_report_input_get_pin_state_reporting ()

+
gboolean
+qmi_message_dms_set_event_report_input_get_pin_state_reporting
+                               (QmiMessageDmsSetEventReportInput *self,
+                                gboolean *value_pin_state_reporting,
+                                GError **error);
+

Get the 'PIN State Reporting' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageDmsSetEventReportInput.

 

value_pin_state_reporting

a placeholder for the output gboolean, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.0

+
+
+
+

qmi_message_dms_set_event_report_input_set_pin_state_reporting ()

+
gboolean
+qmi_message_dms_set_event_report_input_set_pin_state_reporting
+                               (QmiMessageDmsSetEventReportInput *self,
+                                gboolean value_pin_state_reporting,
+                                GError **error);
+

Set the 'PIN State Reporting' field in the message.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageDmsSetEventReportInput.

 

value_pin_state_reporting

a gboolean.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if value +was successfully set, FALSE otherwise.

+
+

Since: 1.0

+
+
+
+

qmi_message_dms_set_event_report_input_get_battery_level_report_limits ()

+
gboolean
+qmi_message_dms_set_event_report_input_get_battery_level_report_limits
+                               (QmiMessageDmsSetEventReportInput *self,
+                                guint8 *value_battery_level_report_limits_lower_limit,
+                                guint8 *value_battery_level_report_limits_upper_limit,
+                                GError **error);
+

Get the 'Battery Level Report Limits' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + + + + + + +

self

a QmiMessageDmsSetEventReportInput.

 

value_battery_level_report_limits_lower_limit

a placeholder for the output guint8, or NULL if not required.

 

value_battery_level_report_limits_upper_limit

a placeholder for the output guint8, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.0

+
+
+
+

qmi_message_dms_set_event_report_input_set_battery_level_report_limits ()

+
gboolean
+qmi_message_dms_set_event_report_input_set_battery_level_report_limits
+                               (QmiMessageDmsSetEventReportInput *self,
+                                guint8 value_battery_level_report_limits_lower_limit,
+                                guint8 value_battery_level_report_limits_upper_limit,
+                                GError **error);
+

Set the 'Battery Level Report Limits' field in the message.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + + + + + + +

self

a QmiMessageDmsSetEventReportInput.

 

value_battery_level_report_limits_lower_limit

a guint8.

 

value_battery_level_report_limits_upper_limit

a guint8.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if value +was successfully set, FALSE otherwise.

+
+

Since: 1.0

+
+
+
+

qmi_message_dms_set_event_report_input_get_power_state_reporting ()

+
gboolean
+qmi_message_dms_set_event_report_input_get_power_state_reporting
+                               (QmiMessageDmsSetEventReportInput *self,
+                                gboolean *value_power_state_reporting,
+                                GError **error);
+

Get the 'Power State Reporting' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageDmsSetEventReportInput.

 

value_power_state_reporting

a placeholder for the output gboolean, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.0

+
+
+
+

qmi_message_dms_set_event_report_input_set_power_state_reporting ()

+
gboolean
+qmi_message_dms_set_event_report_input_set_power_state_reporting
+                               (QmiMessageDmsSetEventReportInput *self,
+                                gboolean value_power_state_reporting,
+                                GError **error);
+

Set the 'Power State Reporting' field in the message.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageDmsSetEventReportInput.

 

value_power_state_reporting

a gboolean.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if value +was successfully set, FALSE otherwise.

+
+

Since: 1.0

+
+
+
+

qmi_message_dms_set_event_report_output_ref ()

+
QmiMessageDmsSetEventReportOutput *
+qmi_message_dms_set_event_report_output_ref
+                               (QmiMessageDmsSetEventReportOutput *self);
+

Atomically increments the reference count of self + by one.

+
+

Parameters

+
+++++ + + + + + +

self

a QmiMessageDmsSetEventReportOutput.

 
+
+
+

Returns

+

the new reference to self +.

+
+

Since: 1.0

+
+
+
+

qmi_message_dms_set_event_report_output_unref ()

+
void
+qmi_message_dms_set_event_report_output_unref
+                               (QmiMessageDmsSetEventReportOutput *self);
+

Atomically decrements the reference count of self + by one. +If the reference count drops to 0, self + is completely disposed.

+
+

Parameters

+
+++++ + + + + + +

self

a QmiMessageDmsSetEventReportOutput.

 
+
+

Since: 1.0

+
+
+
+

qmi_message_dms_set_event_report_output_get_result ()

+
gboolean
+qmi_message_dms_set_event_report_output_get_result
+                               (QmiMessageDmsSetEventReportOutput *self,
+                                GError **error);
+

Get the result of the QMI operation.

+
+

Parameters

+
+++++ + + + + + + + + + + + + +

self

a QmiMessageDmsSetEventReportOutput.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the QMI operation succeeded, FALSE if error +is set.

+
+

Since: 1.0

+
+
+
+

qmi_client_dms_set_event_report ()

+
void
+qmi_client_dms_set_event_report (QmiClientDms *self,
+                                 QmiMessageDmsSetEventReportInput *input,
+                                 guint timeout,
+                                 GCancellable *cancellable,
+                                 GAsyncReadyCallback callback,
+                                 gpointer user_data);
+

Asynchronously sends a Set Event Report request to the device.

+

When the operation is finished, callback + will be invoked in the thread-default main loop of the thread you are calling this method from.

+

You can then call qmi_client_dms_set_event_report_finish() to get the result of the operation.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

self

a QmiClientDms.

 

input

a QmiMessageDmsSetEventReportInput.

 

timeout

maximum time to wait for the method to complete, in seconds.

 

cancellable

a GCancellable or NULL.

 

callback

a GAsyncReadyCallback to call when the request is satisfied.

 

user_data

user data to pass to callback +.

 
+
+

Since: 1.0

+
+
+
+

qmi_client_dms_set_event_report_finish ()

+
QmiMessageDmsSetEventReportOutput *
+qmi_client_dms_set_event_report_finish
+                               (QmiClientDms *self,
+                                GAsyncResult *res,
+                                GError **error);
+

Finishes an async operation started with qmi_client_dms_set_event_report().

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiClientDms.

 

res

the GAsyncResult obtained from the GAsyncReadyCallback passed to qmi_client_dms_set_event_report().

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

a QmiMessageDmsSetEventReportOutput, or NULL if error +is set. The returned value should be freed with qmi_message_dms_set_event_report_output_unref().

+
+

Since: 1.0

+
+
+
+

Types and Values

+
+

QmiMessageDmsSetEventReportInput

+
typedef struct _QmiMessageDmsSetEventReportInput QmiMessageDmsSetEventReportInput;
+

The QmiMessageDmsSetEventReportInput structure contains private data and should only be accessed +using the provided API.

+

Since: 1.0

+
+
+
+

QmiMessageDmsSetEventReportOutput

+
typedef struct _QmiMessageDmsSetEventReportOutput QmiMessageDmsSetEventReportOutput;
+

The QmiMessageDmsSetEventReportOutput structure contains private data and should only be accessed +using the provided API.

+

Since: 1.0

+
+
+
+ + + \ No newline at end of file diff -Nru libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-DMS-Set-FCC-Authentication.html libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-DMS-Set-FCC-Authentication.html --- libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-DMS-Set-FCC-Authentication.html 2017-03-22 12:28:28.000000000 +0100 +++ libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-DMS-Set-FCC-Authentication.html 1970-01-01 01:00:00.000000000 +0100 @@ -1,320 +0,0 @@ - - - - -DMS Set FCC Authentication: libqmi-glib Reference Manual - - - - - - - - - - - - - - - - -
-
-
- - -
-

DMS Set FCC Authentication

-

DMS Set FCC Authentication

-
- -
-

Types and Values

- -
-
-

Object Hierarchy

-
    GBoxed
-    ╰── QmiMessageDmsSetFccAuthenticationOutput
-
-
-
-

Description

-
-
-

Functions

-
-

qmi_message_dms_set_fcc_authentication_output_ref ()

-
QmiMessageDmsSetFccAuthenticationOutput *
-qmi_message_dms_set_fcc_authentication_output_ref
-                               (QmiMessageDmsSetFccAuthenticationOutput *self);
-

Atomically increments the reference count of self - by one.

-
-

Parameters

-
----- - - - - - -

self

a QmiMessageDmsSetFccAuthenticationOutput.

 
-
-
-

Returns

-

the new reference to self -.

-
-

Since: 1.14

-
-
-
-

qmi_message_dms_set_fcc_authentication_output_unref ()

-
void
-qmi_message_dms_set_fcc_authentication_output_unref
-                               (QmiMessageDmsSetFccAuthenticationOutput *self);
-

Atomically decrements the reference count of self - by one. -If the reference count drops to 0, self - is completely disposed.

-
-

Parameters

-
----- - - - - - -

self

a QmiMessageDmsSetFccAuthenticationOutput.

 
-
-

Since: 1.14

-
-
-
-

qmi_message_dms_set_fcc_authentication_output_get_result ()

-
gboolean
-qmi_message_dms_set_fcc_authentication_output_get_result
-                               (QmiMessageDmsSetFccAuthenticationOutput *self,
-                                GError **error);
-

Get the result of the QMI operation.

-
-

Parameters

-
----- - - - - - - - - - - - - -

self

a QmiMessageDmsSetFccAuthenticationOutput.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the QMI operation succeeded, FALSE if error -is set.

-
-

Since: 1.14

-
-
-
-

qmi_client_dms_set_fcc_authentication ()

-
void
-qmi_client_dms_set_fcc_authentication (QmiClientDms *self,
-                                       gpointer unused,
-                                       guint timeout,
-                                       GCancellable *cancellable,
-                                       GAsyncReadyCallback callback,
-                                       gpointer user_data);
-

Asynchronously sends a Set FCC Authentication request to the device.

-

When the operation is finished, callback - will be invoked in the thread-default main loop of the thread you are calling this method from.

-

You can then call qmi_client_dms_set_fcc_authentication_finish() to get the result of the operation.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

self

a QmiClientDms.

 

unused

NULL. This message doesn't have any input bundle.

 

timeout

maximum time to wait for the method to complete, in seconds.

 

cancellable

a GCancellable or NULL.

 

callback

a GAsyncReadyCallback to call when the request is satisfied.

 

user_data

user data to pass to callback -.

 
-
-

Since: 1.14

-
-
-
-

qmi_client_dms_set_fcc_authentication_finish ()

-
QmiMessageDmsSetFccAuthenticationOutput *
-qmi_client_dms_set_fcc_authentication_finish
-                               (QmiClientDms *self,
-                                GAsyncResult *res,
-                                GError **error);
-

Finishes an async operation started with qmi_client_dms_set_fcc_authentication().

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiClientDms.

 

res

the GAsyncResult obtained from the GAsyncReadyCallback passed to qmi_client_dms_set_fcc_authentication().

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

a QmiMessageDmsSetFccAuthenticationOutput, or NULL if error -is set. The returned value should be freed with qmi_message_dms_set_fcc_authentication_output_unref().

-
-

Since: 1.14

-
-
-
-

Types and Values

-
-

QmiMessageDmsSetFccAuthenticationOutput

-
typedef struct _QmiMessageDmsSetFccAuthenticationOutput QmiMessageDmsSetFccAuthenticationOutput;
-

The QmiMessageDmsSetFccAuthenticationOutput structure contains private data and should only be accessed -using the provided API.

-

Since: 1.14

-
-
-
- - - \ No newline at end of file diff -Nru libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-DMS-Set-FCC-Authentication-request.html libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-DMS-Set-FCC-Authentication-request.html --- libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-DMS-Set-FCC-Authentication-request.html 1970-01-01 01:00:00.000000000 +0100 +++ libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-DMS-Set-FCC-Authentication-request.html 2019-01-08 15:19:01.000000000 +0100 @@ -0,0 +1,320 @@ + + + + +DMS Set FCC Authentication request: libqmi-glib Reference Manual + + + + + + + + + + + + + + + + +
+
+
+ + +
+

DMS Set FCC Authentication request

+

DMS Set FCC Authentication request

+
+ +
+

Types and Values

+ +
+
+

Object Hierarchy

+
    GBoxed
+    ╰── QmiMessageDmsSetFccAuthenticationOutput
+
+
+
+

Description

+
+
+

Functions

+
+

qmi_message_dms_set_fcc_authentication_output_ref ()

+
QmiMessageDmsSetFccAuthenticationOutput *
+qmi_message_dms_set_fcc_authentication_output_ref
+                               (QmiMessageDmsSetFccAuthenticationOutput *self);
+

Atomically increments the reference count of self + by one.

+
+

Parameters

+
+++++ + + + + + +

self

a QmiMessageDmsSetFccAuthenticationOutput.

 
+
+
+

Returns

+

the new reference to self +.

+
+

Since: 1.14

+
+
+
+

qmi_message_dms_set_fcc_authentication_output_unref ()

+
void
+qmi_message_dms_set_fcc_authentication_output_unref
+                               (QmiMessageDmsSetFccAuthenticationOutput *self);
+

Atomically decrements the reference count of self + by one. +If the reference count drops to 0, self + is completely disposed.

+
+

Parameters

+
+++++ + + + + + +

self

a QmiMessageDmsSetFccAuthenticationOutput.

 
+
+

Since: 1.14

+
+
+
+

qmi_message_dms_set_fcc_authentication_output_get_result ()

+
gboolean
+qmi_message_dms_set_fcc_authentication_output_get_result
+                               (QmiMessageDmsSetFccAuthenticationOutput *self,
+                                GError **error);
+

Get the result of the QMI operation.

+
+

Parameters

+
+++++ + + + + + + + + + + + + +

self

a QmiMessageDmsSetFccAuthenticationOutput.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the QMI operation succeeded, FALSE if error +is set.

+
+

Since: 1.14

+
+
+
+

qmi_client_dms_set_fcc_authentication ()

+
void
+qmi_client_dms_set_fcc_authentication (QmiClientDms *self,
+                                       gpointer unused,
+                                       guint timeout,
+                                       GCancellable *cancellable,
+                                       GAsyncReadyCallback callback,
+                                       gpointer user_data);
+

Asynchronously sends a Set FCC Authentication request to the device.

+

When the operation is finished, callback + will be invoked in the thread-default main loop of the thread you are calling this method from.

+

You can then call qmi_client_dms_set_fcc_authentication_finish() to get the result of the operation.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

self

a QmiClientDms.

 

unused

NULL. This message doesn't have any input bundle.

 

timeout

maximum time to wait for the method to complete, in seconds.

 

cancellable

a GCancellable or NULL.

 

callback

a GAsyncReadyCallback to call when the request is satisfied.

 

user_data

user data to pass to callback +.

 
+
+

Since: 1.14

+
+
+
+

qmi_client_dms_set_fcc_authentication_finish ()

+
QmiMessageDmsSetFccAuthenticationOutput *
+qmi_client_dms_set_fcc_authentication_finish
+                               (QmiClientDms *self,
+                                GAsyncResult *res,
+                                GError **error);
+

Finishes an async operation started with qmi_client_dms_set_fcc_authentication().

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiClientDms.

 

res

the GAsyncResult obtained from the GAsyncReadyCallback passed to qmi_client_dms_set_fcc_authentication().

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

a QmiMessageDmsSetFccAuthenticationOutput, or NULL if error +is set. The returned value should be freed with qmi_message_dms_set_fcc_authentication_output_unref().

+
+

Since: 1.14

+
+
+
+

Types and Values

+
+

QmiMessageDmsSetFccAuthenticationOutput

+
typedef struct _QmiMessageDmsSetFccAuthenticationOutput QmiMessageDmsSetFccAuthenticationOutput;
+

The QmiMessageDmsSetFccAuthenticationOutput structure contains private data and should only be accessed +using the provided API.

+

Since: 1.14

+
+
+
+ + + \ No newline at end of file diff -Nru libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-DMS-Set-Firmware-ID.html libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-DMS-Set-Firmware-ID.html --- libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-DMS-Set-Firmware-ID.html 2017-03-22 12:28:28.000000000 +0100 +++ libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-DMS-Set-Firmware-ID.html 1970-01-01 01:00:00.000000000 +0100 @@ -1,319 +0,0 @@ - - - - -DMS Set Firmware ID: libqmi-glib Reference Manual - - - - - - - - - - - - - - - - -
-
-
- - -
-

DMS Set Firmware ID

-

DMS Set Firmware ID

-
- -
-

Types and Values

- -
-
-

Object Hierarchy

-
    GBoxed
-    ╰── QmiMessageDmsSetFirmwareIdOutput
-
-
-
-

Description

-
-
-

Functions

-
-

qmi_message_dms_set_firmware_id_output_ref ()

-
QmiMessageDmsSetFirmwareIdOutput *
-qmi_message_dms_set_firmware_id_output_ref
-                               (QmiMessageDmsSetFirmwareIdOutput *self);
-

Atomically increments the reference count of self - by one.

-
-

Parameters

-
----- - - - - - -

self

a QmiMessageDmsSetFirmwareIdOutput.

 
-
-
-

Returns

-

the new reference to self -.

-
-

Since: 1.18

-
-
-
-

qmi_message_dms_set_firmware_id_output_unref ()

-
void
-qmi_message_dms_set_firmware_id_output_unref
-                               (QmiMessageDmsSetFirmwareIdOutput *self);
-

Atomically decrements the reference count of self - by one. -If the reference count drops to 0, self - is completely disposed.

-
-

Parameters

-
----- - - - - - -

self

a QmiMessageDmsSetFirmwareIdOutput.

 
-
-

Since: 1.18

-
-
-
-

qmi_message_dms_set_firmware_id_output_get_result ()

-
gboolean
-qmi_message_dms_set_firmware_id_output_get_result
-                               (QmiMessageDmsSetFirmwareIdOutput *self,
-                                GError **error);
-

Get the result of the QMI operation.

-
-

Parameters

-
----- - - - - - - - - - - - - -

self

a QmiMessageDmsSetFirmwareIdOutput.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the QMI operation succeeded, FALSE if error -is set.

-
-

Since: 1.18

-
-
-
-

qmi_client_dms_set_firmware_id ()

-
void
-qmi_client_dms_set_firmware_id (QmiClientDms *self,
-                                gpointer unused,
-                                guint timeout,
-                                GCancellable *cancellable,
-                                GAsyncReadyCallback callback,
-                                gpointer user_data);
-

Asynchronously sends a Set Firmware ID request to the device.

-

When the operation is finished, callback - will be invoked in the thread-default main loop of the thread you are calling this method from.

-

You can then call qmi_client_dms_set_firmware_id_finish() to get the result of the operation.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

self

a QmiClientDms.

 

unused

NULL. This message doesn't have any input bundle.

 

timeout

maximum time to wait for the method to complete, in seconds.

 

cancellable

a GCancellable or NULL.

 

callback

a GAsyncReadyCallback to call when the request is satisfied.

 

user_data

user data to pass to callback -.

 
-
-

Since: 1.18

-
-
-
-

qmi_client_dms_set_firmware_id_finish ()

-
QmiMessageDmsSetFirmwareIdOutput *
-qmi_client_dms_set_firmware_id_finish (QmiClientDms *self,
-                                       GAsyncResult *res,
-                                       GError **error);
-

Finishes an async operation started with qmi_client_dms_set_firmware_id().

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiClientDms.

 

res

the GAsyncResult obtained from the GAsyncReadyCallback passed to qmi_client_dms_set_firmware_id().

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

a QmiMessageDmsSetFirmwareIdOutput, or NULL if error -is set. The returned value should be freed with qmi_message_dms_set_firmware_id_output_unref().

-
-

Since: 1.18

-
-
-
-

Types and Values

-
-

QmiMessageDmsSetFirmwareIdOutput

-
typedef struct _QmiMessageDmsSetFirmwareIdOutput QmiMessageDmsSetFirmwareIdOutput;
-

The QmiMessageDmsSetFirmwareIdOutput structure contains private data and should only be accessed -using the provided API.

-

Since: 1.18

-
-
-
- - - \ No newline at end of file diff -Nru libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-DMS-Set-Firmware-ID-request.html libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-DMS-Set-Firmware-ID-request.html --- libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-DMS-Set-Firmware-ID-request.html 1970-01-01 01:00:00.000000000 +0100 +++ libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-DMS-Set-Firmware-ID-request.html 2019-01-08 15:19:01.000000000 +0100 @@ -0,0 +1,319 @@ + + + + +DMS Set Firmware ID request: libqmi-glib Reference Manual + + + + + + + + + + + + + + + + +
+
+
+ + +
+

DMS Set Firmware ID request

+

DMS Set Firmware ID request

+
+ +
+

Types and Values

+ +
+
+

Object Hierarchy

+
    GBoxed
+    ╰── QmiMessageDmsSetFirmwareIdOutput
+
+
+
+

Description

+
+
+

Functions

+
+

qmi_message_dms_set_firmware_id_output_ref ()

+
QmiMessageDmsSetFirmwareIdOutput *
+qmi_message_dms_set_firmware_id_output_ref
+                               (QmiMessageDmsSetFirmwareIdOutput *self);
+

Atomically increments the reference count of self + by one.

+
+

Parameters

+
+++++ + + + + + +

self

a QmiMessageDmsSetFirmwareIdOutput.

 
+
+
+

Returns

+

the new reference to self +.

+
+

Since: 1.18

+
+
+
+

qmi_message_dms_set_firmware_id_output_unref ()

+
void
+qmi_message_dms_set_firmware_id_output_unref
+                               (QmiMessageDmsSetFirmwareIdOutput *self);
+

Atomically decrements the reference count of self + by one. +If the reference count drops to 0, self + is completely disposed.

+
+

Parameters

+
+++++ + + + + + +

self

a QmiMessageDmsSetFirmwareIdOutput.

 
+
+

Since: 1.18

+
+
+
+

qmi_message_dms_set_firmware_id_output_get_result ()

+
gboolean
+qmi_message_dms_set_firmware_id_output_get_result
+                               (QmiMessageDmsSetFirmwareIdOutput *self,
+                                GError **error);
+

Get the result of the QMI operation.

+
+

Parameters

+
+++++ + + + + + + + + + + + + +

self

a QmiMessageDmsSetFirmwareIdOutput.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the QMI operation succeeded, FALSE if error +is set.

+
+

Since: 1.18

+
+
+
+

qmi_client_dms_set_firmware_id ()

+
void
+qmi_client_dms_set_firmware_id (QmiClientDms *self,
+                                gpointer unused,
+                                guint timeout,
+                                GCancellable *cancellable,
+                                GAsyncReadyCallback callback,
+                                gpointer user_data);
+

Asynchronously sends a Set Firmware ID request to the device.

+

When the operation is finished, callback + will be invoked in the thread-default main loop of the thread you are calling this method from.

+

You can then call qmi_client_dms_set_firmware_id_finish() to get the result of the operation.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

self

a QmiClientDms.

 

unused

NULL. This message doesn't have any input bundle.

 

timeout

maximum time to wait for the method to complete, in seconds.

 

cancellable

a GCancellable or NULL.

 

callback

a GAsyncReadyCallback to call when the request is satisfied.

 

user_data

user data to pass to callback +.

 
+
+

Since: 1.18

+
+
+
+

qmi_client_dms_set_firmware_id_finish ()

+
QmiMessageDmsSetFirmwareIdOutput *
+qmi_client_dms_set_firmware_id_finish (QmiClientDms *self,
+                                       GAsyncResult *res,
+                                       GError **error);
+

Finishes an async operation started with qmi_client_dms_set_firmware_id().

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiClientDms.

 

res

the GAsyncResult obtained from the GAsyncReadyCallback passed to qmi_client_dms_set_firmware_id().

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

a QmiMessageDmsSetFirmwareIdOutput, or NULL if error +is set. The returned value should be freed with qmi_message_dms_set_firmware_id_output_unref().

+
+

Since: 1.18

+
+
+
+

Types and Values

+
+

QmiMessageDmsSetFirmwareIdOutput

+
typedef struct _QmiMessageDmsSetFirmwareIdOutput QmiMessageDmsSetFirmwareIdOutput;
+

The QmiMessageDmsSetFirmwareIdOutput structure contains private data and should only be accessed +using the provided API.

+

Since: 1.18

+
+
+
+ + + \ No newline at end of file diff -Nru libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-DMS-Set-Firmware-Preference.html libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-DMS-Set-Firmware-Preference.html --- libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-DMS-Set-Firmware-Preference.html 2017-03-22 12:28:29.000000000 +0100 +++ libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-DMS-Set-Firmware-Preference.html 1970-01-01 01:00:00.000000000 +0100 @@ -1,833 +0,0 @@ - - - - -DMS Set Firmware Preference: libqmi-glib Reference Manual - - - - - - - - - - - - - - - - -
-
-
- - -
-

DMS Set Firmware Preference

-

DMS Set Firmware Preference

-
- - -
-

Object Hierarchy

-
    GBoxed
-    ├── QmiMessageDmsSetFirmwarePreferenceInput
-    ╰── QmiMessageDmsSetFirmwarePreferenceOutput
-
-
-
-

Description

-
-
-

Functions

-
-

qmi_message_dms_set_firmware_preference_input_new ()

-
QmiMessageDmsSetFirmwarePreferenceInput *
-qmi_message_dms_set_firmware_preference_input_new
-                               (void);
-

Allocates a new QmiMessageDmsSetFirmwarePreferenceInput.

-
-

Returns

-

the newly created QmiMessageDmsSetFirmwarePreferenceInput. The returned value should be freed with qmi_message_dms_set_firmware_preference_input_unref().

-
-

Since: 1.0

-
-
-
-

qmi_message_dms_set_firmware_preference_input_ref ()

-
QmiMessageDmsSetFirmwarePreferenceInput *
-qmi_message_dms_set_firmware_preference_input_ref
-                               (QmiMessageDmsSetFirmwarePreferenceInput *self);
-

Atomically increments the reference count of self - by one.

-
-

Parameters

-
----- - - - - - -

self

a QmiMessageDmsSetFirmwarePreferenceInput.

 
-
-
-

Returns

-

the new reference to self -.

-
-

Since: 1.0

-
-
-
-

qmi_message_dms_set_firmware_preference_input_unref ()

-
void
-qmi_message_dms_set_firmware_preference_input_unref
-                               (QmiMessageDmsSetFirmwarePreferenceInput *self);
-

Atomically decrements the reference count of self - by one. -If the reference count drops to 0, self - is completely disposed.

-
-

Parameters

-
----- - - - - - -

self

a QmiMessageDmsSetFirmwarePreferenceInput.

 
-
-

Since: 1.0

-
-
-
-

qmi_message_dms_set_firmware_preference_input_get_modem_storage_index ()

-
gboolean
-qmi_message_dms_set_firmware_preference_input_get_modem_storage_index
-                               (QmiMessageDmsSetFirmwarePreferenceInput *self,
-                                guint8 *value_modem_storage_index,
-                                GError **error);
-

Get the 'Modem Storage Index' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessageDmsSetFirmwarePreferenceInput.

 

value_modem_storage_index

a placeholder for the output guint8, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.0

-
-
-
-

qmi_message_dms_set_firmware_preference_input_set_modem_storage_index ()

-
gboolean
-qmi_message_dms_set_firmware_preference_input_set_modem_storage_index
-                               (QmiMessageDmsSetFirmwarePreferenceInput *self,
-                                guint8 value_modem_storage_index,
-                                GError **error);
-

Set the 'Modem Storage Index' field in the message.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessageDmsSetFirmwarePreferenceInput.

 

value_modem_storage_index

a guint8.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if value -was successfully set, FALSE otherwise.

-
-

Since: 1.0

-
-
-
-

qmi_message_dms_set_firmware_preference_input_get_download_override ()

-
gboolean
-qmi_message_dms_set_firmware_preference_input_get_download_override
-                               (QmiMessageDmsSetFirmwarePreferenceInput *self,
-                                gboolean *value_download_override,
-                                GError **error);
-

Get the 'Download Override' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessageDmsSetFirmwarePreferenceInput.

 

value_download_override

a placeholder for the output gboolean, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.0

-
-
-
-

qmi_message_dms_set_firmware_preference_input_set_download_override ()

-
gboolean
-qmi_message_dms_set_firmware_preference_input_set_download_override
-                               (QmiMessageDmsSetFirmwarePreferenceInput *self,
-                                gboolean value_download_override,
-                                GError **error);
-

Set the 'Download Override' field in the message.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessageDmsSetFirmwarePreferenceInput.

 

value_download_override

a gboolean.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if value -was successfully set, FALSE otherwise.

-
-

Since: 1.0

-
-
-
-

qmi_message_dms_set_firmware_preference_input_get_list ()

-
gboolean
-qmi_message_dms_set_firmware_preference_input_get_list
-                               (QmiMessageDmsSetFirmwarePreferenceInput *self,
-                                GArray **value_list,
-                                GError **error);
-

Get the 'List' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessageDmsSetFirmwarePreferenceInput.

 

value_list

a placeholder for the output GArray of QmiMessageDmsSetFirmwarePreferenceInputListImage elements, or NULL if not required. Do not free it, it is owned by self -.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.0

-
-
-
-

qmi_message_dms_set_firmware_preference_input_set_list ()

-
gboolean
-qmi_message_dms_set_firmware_preference_input_set_list
-                               (QmiMessageDmsSetFirmwarePreferenceInput *self,
-                                GArray *value_list,
-                                GError **error);
-

Set the 'List' field in the message.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessageDmsSetFirmwarePreferenceInput.

 

value_list

a GArray of QmiMessageDmsSetFirmwarePreferenceInputListImage elements. A new reference to value_list -will be taken.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if value -was successfully set, FALSE otherwise.

-
-

Since: 1.0

-
-
-
-

qmi_message_dms_set_firmware_preference_output_ref ()

-
QmiMessageDmsSetFirmwarePreferenceOutput *
-qmi_message_dms_set_firmware_preference_output_ref
-                               (QmiMessageDmsSetFirmwarePreferenceOutput *self);
-

Atomically increments the reference count of self - by one.

-
-

Parameters

-
----- - - - - - -

self

a QmiMessageDmsSetFirmwarePreferenceOutput.

 
-
-
-

Returns

-

the new reference to self -.

-
-

Since: 1.0

-
-
-
-

qmi_message_dms_set_firmware_preference_output_unref ()

-
void
-qmi_message_dms_set_firmware_preference_output_unref
-                               (QmiMessageDmsSetFirmwarePreferenceOutput *self);
-

Atomically decrements the reference count of self - by one. -If the reference count drops to 0, self - is completely disposed.

-
-

Parameters

-
----- - - - - - -

self

a QmiMessageDmsSetFirmwarePreferenceOutput.

 
-
-

Since: 1.0

-
-
-
-

qmi_message_dms_set_firmware_preference_output_get_result ()

-
gboolean
-qmi_message_dms_set_firmware_preference_output_get_result
-                               (QmiMessageDmsSetFirmwarePreferenceOutput *self,
-                                GError **error);
-

Get the result of the QMI operation.

-
-

Parameters

-
----- - - - - - - - - - - - - -

self

a QmiMessageDmsSetFirmwarePreferenceOutput.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the QMI operation succeeded, FALSE if error -is set.

-
-

Since: 1.0

-
-
-
-

qmi_message_dms_set_firmware_preference_output_get_image_download_list ()

-
gboolean
-qmi_message_dms_set_firmware_preference_output_get_image_download_list
-                               (QmiMessageDmsSetFirmwarePreferenceOutput *self,
-                                GArray **value_image_download_list,
-                                GError **error);
-

Get the 'Image Download List' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessageDmsSetFirmwarePreferenceOutput.

 

value_image_download_list

a placeholder for the output GArray of QmiDmsFirmwareImageType elements, or NULL if not required. Do not free it, it is owned by self -.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.0

-
-
-
-

qmi_client_dms_set_firmware_preference ()

-
void
-qmi_client_dms_set_firmware_preference
-                               (QmiClientDms *self,
-                                QmiMessageDmsSetFirmwarePreferenceInput *input,
-                                guint timeout,
-                                GCancellable *cancellable,
-                                GAsyncReadyCallback callback,
-                                gpointer user_data);
-

Asynchronously sends a Set Firmware Preference request to the device.

-

When the operation is finished, callback - will be invoked in the thread-default main loop of the thread you are calling this method from.

-

You can then call qmi_client_dms_set_firmware_preference_finish() to get the result of the operation.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

self

a QmiClientDms.

 

input

a QmiMessageDmsSetFirmwarePreferenceInput.

 

timeout

maximum time to wait for the method to complete, in seconds.

 

cancellable

a GCancellable or NULL.

 

callback

a GAsyncReadyCallback to call when the request is satisfied.

 

user_data

user data to pass to callback -.

 
-
-

Since: 1.0

-
-
-
-

qmi_client_dms_set_firmware_preference_finish ()

-
QmiMessageDmsSetFirmwarePreferenceOutput *
-qmi_client_dms_set_firmware_preference_finish
-                               (QmiClientDms *self,
-                                GAsyncResult *res,
-                                GError **error);
-

Finishes an async operation started with qmi_client_dms_set_firmware_preference().

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiClientDms.

 

res

the GAsyncResult obtained from the GAsyncReadyCallback passed to qmi_client_dms_set_firmware_preference().

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

a QmiMessageDmsSetFirmwarePreferenceOutput, or NULL if error -is set. The returned value should be freed with qmi_message_dms_set_firmware_preference_output_unref().

-
-

Since: 1.0

-
-
-
-

Types and Values

-
-

QmiMessageDmsSetFirmwarePreferenceInput

-
typedef struct _QmiMessageDmsSetFirmwarePreferenceInput QmiMessageDmsSetFirmwarePreferenceInput;
-

The QmiMessageDmsSetFirmwarePreferenceInput structure contains private data and should only be accessed -using the provided API.

-

Since: 1.0

-
-
-
-

QmiMessageDmsSetFirmwarePreferenceInputListImage

-
typedef struct {
-    QmiDmsFirmwareImageType type;
-    GArray *unique_id;
-    gchar *build_id;
-} QmiMessageDmsSetFirmwarePreferenceInputListImage;
-
-

A QmiMessageDmsSetFirmwarePreferenceInputListImage struct.

-
-

Members

-
----- - - - - - - - - - - - - - - - - - -

QmiDmsFirmwareImageType type;

a QmiDmsFirmwareImageType.

 

GArray *unique_id;

a GArray of guint8 elements.

 

gchar *build_id;

a string.

 
-
-

Since: 1.0

-
-
-
-

QmiMessageDmsSetFirmwarePreferenceOutput

-
typedef struct _QmiMessageDmsSetFirmwarePreferenceOutput QmiMessageDmsSetFirmwarePreferenceOutput;
-

The QmiMessageDmsSetFirmwarePreferenceOutput structure contains private data and should only be accessed -using the provided API.

-

Since: 1.0

-
-
-
- - - \ No newline at end of file diff -Nru libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-DMS-Set-Firmware-Preference-request.html libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-DMS-Set-Firmware-Preference-request.html --- libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-DMS-Set-Firmware-Preference-request.html 1970-01-01 01:00:00.000000000 +0100 +++ libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-DMS-Set-Firmware-Preference-request.html 2019-01-08 15:19:01.000000000 +0100 @@ -0,0 +1,833 @@ + + + + +DMS Set Firmware Preference request: libqmi-glib Reference Manual + + + + + + + + + + + + + + + + +
+
+
+ + +
+

DMS Set Firmware Preference request

+

DMS Set Firmware Preference request

+
+ + +
+

Object Hierarchy

+
    GBoxed
+    ├── QmiMessageDmsSetFirmwarePreferenceInput
+    ╰── QmiMessageDmsSetFirmwarePreferenceOutput
+
+
+
+

Description

+
+
+

Functions

+
+

qmi_message_dms_set_firmware_preference_input_new ()

+
QmiMessageDmsSetFirmwarePreferenceInput *
+qmi_message_dms_set_firmware_preference_input_new
+                               (void);
+

Allocates a new QmiMessageDmsSetFirmwarePreferenceInput.

+
+

Returns

+

the newly created QmiMessageDmsSetFirmwarePreferenceInput. The returned value should be freed with qmi_message_dms_set_firmware_preference_input_unref().

+
+

Since: 1.0

+
+
+
+

qmi_message_dms_set_firmware_preference_input_ref ()

+
QmiMessageDmsSetFirmwarePreferenceInput *
+qmi_message_dms_set_firmware_preference_input_ref
+                               (QmiMessageDmsSetFirmwarePreferenceInput *self);
+

Atomically increments the reference count of self + by one.

+
+

Parameters

+
+++++ + + + + + +

self

a QmiMessageDmsSetFirmwarePreferenceInput.

 
+
+
+

Returns

+

the new reference to self +.

+
+

Since: 1.0

+
+
+
+

qmi_message_dms_set_firmware_preference_input_unref ()

+
void
+qmi_message_dms_set_firmware_preference_input_unref
+                               (QmiMessageDmsSetFirmwarePreferenceInput *self);
+

Atomically decrements the reference count of self + by one. +If the reference count drops to 0, self + is completely disposed.

+
+

Parameters

+
+++++ + + + + + +

self

a QmiMessageDmsSetFirmwarePreferenceInput.

 
+
+

Since: 1.0

+
+
+
+

qmi_message_dms_set_firmware_preference_input_get_modem_storage_index ()

+
gboolean
+qmi_message_dms_set_firmware_preference_input_get_modem_storage_index
+                               (QmiMessageDmsSetFirmwarePreferenceInput *self,
+                                guint8 *value_modem_storage_index,
+                                GError **error);
+

Get the 'Modem Storage Index' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageDmsSetFirmwarePreferenceInput.

 

value_modem_storage_index

a placeholder for the output guint8, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.0

+
+
+
+

qmi_message_dms_set_firmware_preference_input_set_modem_storage_index ()

+
gboolean
+qmi_message_dms_set_firmware_preference_input_set_modem_storage_index
+                               (QmiMessageDmsSetFirmwarePreferenceInput *self,
+                                guint8 value_modem_storage_index,
+                                GError **error);
+

Set the 'Modem Storage Index' field in the message.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageDmsSetFirmwarePreferenceInput.

 

value_modem_storage_index

a guint8.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if value +was successfully set, FALSE otherwise.

+
+

Since: 1.0

+
+
+
+

qmi_message_dms_set_firmware_preference_input_get_download_override ()

+
gboolean
+qmi_message_dms_set_firmware_preference_input_get_download_override
+                               (QmiMessageDmsSetFirmwarePreferenceInput *self,
+                                gboolean *value_download_override,
+                                GError **error);
+

Get the 'Download Override' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageDmsSetFirmwarePreferenceInput.

 

value_download_override

a placeholder for the output gboolean, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.0

+
+
+
+

qmi_message_dms_set_firmware_preference_input_set_download_override ()

+
gboolean
+qmi_message_dms_set_firmware_preference_input_set_download_override
+                               (QmiMessageDmsSetFirmwarePreferenceInput *self,
+                                gboolean value_download_override,
+                                GError **error);
+

Set the 'Download Override' field in the message.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageDmsSetFirmwarePreferenceInput.

 

value_download_override

a gboolean.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if value +was successfully set, FALSE otherwise.

+
+

Since: 1.0

+
+
+
+

qmi_message_dms_set_firmware_preference_input_get_list ()

+
gboolean
+qmi_message_dms_set_firmware_preference_input_get_list
+                               (QmiMessageDmsSetFirmwarePreferenceInput *self,
+                                GArray **value_list,
+                                GError **error);
+

Get the 'List' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageDmsSetFirmwarePreferenceInput.

 

value_list

a placeholder for the output GArray of QmiMessageDmsSetFirmwarePreferenceInputListImage elements, or NULL if not required. Do not free it, it is owned by self +.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.0

+
+
+
+

qmi_message_dms_set_firmware_preference_input_set_list ()

+
gboolean
+qmi_message_dms_set_firmware_preference_input_set_list
+                               (QmiMessageDmsSetFirmwarePreferenceInput *self,
+                                GArray *value_list,
+                                GError **error);
+

Set the 'List' field in the message.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageDmsSetFirmwarePreferenceInput.

 

value_list

a GArray of QmiMessageDmsSetFirmwarePreferenceInputListImage elements. A new reference to value_list +will be taken.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if value +was successfully set, FALSE otherwise.

+
+

Since: 1.0

+
+
+
+

qmi_message_dms_set_firmware_preference_output_ref ()

+
QmiMessageDmsSetFirmwarePreferenceOutput *
+qmi_message_dms_set_firmware_preference_output_ref
+                               (QmiMessageDmsSetFirmwarePreferenceOutput *self);
+

Atomically increments the reference count of self + by one.

+
+

Parameters

+
+++++ + + + + + +

self

a QmiMessageDmsSetFirmwarePreferenceOutput.

 
+
+
+

Returns

+

the new reference to self +.

+
+

Since: 1.0

+
+
+
+

qmi_message_dms_set_firmware_preference_output_unref ()

+
void
+qmi_message_dms_set_firmware_preference_output_unref
+                               (QmiMessageDmsSetFirmwarePreferenceOutput *self);
+

Atomically decrements the reference count of self + by one. +If the reference count drops to 0, self + is completely disposed.

+
+

Parameters

+
+++++ + + + + + +

self

a QmiMessageDmsSetFirmwarePreferenceOutput.

 
+
+

Since: 1.0

+
+
+
+

qmi_message_dms_set_firmware_preference_output_get_result ()

+
gboolean
+qmi_message_dms_set_firmware_preference_output_get_result
+                               (QmiMessageDmsSetFirmwarePreferenceOutput *self,
+                                GError **error);
+

Get the result of the QMI operation.

+
+

Parameters

+
+++++ + + + + + + + + + + + + +

self

a QmiMessageDmsSetFirmwarePreferenceOutput.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the QMI operation succeeded, FALSE if error +is set.

+
+

Since: 1.0

+
+
+
+

qmi_message_dms_set_firmware_preference_output_get_image_download_list ()

+
gboolean
+qmi_message_dms_set_firmware_preference_output_get_image_download_list
+                               (QmiMessageDmsSetFirmwarePreferenceOutput *self,
+                                GArray **value_image_download_list,
+                                GError **error);
+

Get the 'Image Download List' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageDmsSetFirmwarePreferenceOutput.

 

value_image_download_list

a placeholder for the output GArray of QmiDmsFirmwareImageType elements, or NULL if not required. Do not free it, it is owned by self +.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.0

+
+
+
+

qmi_client_dms_set_firmware_preference ()

+
void
+qmi_client_dms_set_firmware_preference
+                               (QmiClientDms *self,
+                                QmiMessageDmsSetFirmwarePreferenceInput *input,
+                                guint timeout,
+                                GCancellable *cancellable,
+                                GAsyncReadyCallback callback,
+                                gpointer user_data);
+

Asynchronously sends a Set Firmware Preference request to the device.

+

When the operation is finished, callback + will be invoked in the thread-default main loop of the thread you are calling this method from.

+

You can then call qmi_client_dms_set_firmware_preference_finish() to get the result of the operation.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

self

a QmiClientDms.

 

input

a QmiMessageDmsSetFirmwarePreferenceInput.

 

timeout

maximum time to wait for the method to complete, in seconds.

 

cancellable

a GCancellable or NULL.

 

callback

a GAsyncReadyCallback to call when the request is satisfied.

 

user_data

user data to pass to callback +.

 
+
+

Since: 1.0

+
+
+
+

qmi_client_dms_set_firmware_preference_finish ()

+
QmiMessageDmsSetFirmwarePreferenceOutput *
+qmi_client_dms_set_firmware_preference_finish
+                               (QmiClientDms *self,
+                                GAsyncResult *res,
+                                GError **error);
+

Finishes an async operation started with qmi_client_dms_set_firmware_preference().

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiClientDms.

 

res

the GAsyncResult obtained from the GAsyncReadyCallback passed to qmi_client_dms_set_firmware_preference().

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

a QmiMessageDmsSetFirmwarePreferenceOutput, or NULL if error +is set. The returned value should be freed with qmi_message_dms_set_firmware_preference_output_unref().

+
+

Since: 1.0

+
+
+
+

Types and Values

+
+

QmiMessageDmsSetFirmwarePreferenceInput

+
typedef struct _QmiMessageDmsSetFirmwarePreferenceInput QmiMessageDmsSetFirmwarePreferenceInput;
+

The QmiMessageDmsSetFirmwarePreferenceInput structure contains private data and should only be accessed +using the provided API.

+

Since: 1.0

+
+
+
+

QmiMessageDmsSetFirmwarePreferenceInputListImage

+
typedef struct {
+    QmiDmsFirmwareImageType type;
+    GArray *unique_id;
+    gchar *build_id;
+} QmiMessageDmsSetFirmwarePreferenceInputListImage;
+
+

A QmiMessageDmsSetFirmwarePreferenceInputListImage struct.

+
+

Members

+
+++++ + + + + + + + + + + + + + + + + + +

QmiDmsFirmwareImageType type;

a QmiDmsFirmwareImageType.

 

GArray *unique_id;

a GArray of guint8 elements.

 

gchar *build_id;

a string.

 
+
+

Since: 1.0

+
+
+
+

QmiMessageDmsSetFirmwarePreferenceOutput

+
typedef struct _QmiMessageDmsSetFirmwarePreferenceOutput QmiMessageDmsSetFirmwarePreferenceOutput;
+

The QmiMessageDmsSetFirmwarePreferenceOutput structure contains private data and should only be accessed +using the provided API.

+

Since: 1.0

+
+
+
+ + + \ No newline at end of file diff -Nru libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-DMS-Set-Operating-Mode.html libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-DMS-Set-Operating-Mode.html --- libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-DMS-Set-Operating-Mode.html 2017-03-22 12:28:28.000000000 +0100 +++ libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-DMS-Set-Operating-Mode.html 1970-01-01 01:00:00.000000000 +0100 @@ -1,531 +0,0 @@ - - - - -DMS Set Operating Mode: libqmi-glib Reference Manual - - - - - - - - - - - - - - - - -
-
-
- - -
-

DMS Set Operating Mode

-

DMS Set Operating Mode

-
- -
-

Types and Values

- -
-
-

Object Hierarchy

-
    GBoxed
-    ├── QmiMessageDmsSetOperatingModeInput
-    ╰── QmiMessageDmsSetOperatingModeOutput
-
-
-
-

Description

-
-
-

Functions

-
-

qmi_message_dms_set_operating_mode_input_new ()

-
QmiMessageDmsSetOperatingModeInput *
-qmi_message_dms_set_operating_mode_input_new
-                               (void);
-

Allocates a new QmiMessageDmsSetOperatingModeInput.

-
-

Returns

-

the newly created QmiMessageDmsSetOperatingModeInput. The returned value should be freed with qmi_message_dms_set_operating_mode_input_unref().

-
-

Since: 1.0

-
-
-
-

qmi_message_dms_set_operating_mode_input_ref ()

-
QmiMessageDmsSetOperatingModeInput *
-qmi_message_dms_set_operating_mode_input_ref
-                               (QmiMessageDmsSetOperatingModeInput *self);
-

Atomically increments the reference count of self - by one.

-
-

Parameters

-
----- - - - - - -

self

a QmiMessageDmsSetOperatingModeInput.

 
-
-
-

Returns

-

the new reference to self -.

-
-

Since: 1.0

-
-
-
-

qmi_message_dms_set_operating_mode_input_unref ()

-
void
-qmi_message_dms_set_operating_mode_input_unref
-                               (QmiMessageDmsSetOperatingModeInput *self);
-

Atomically decrements the reference count of self - by one. -If the reference count drops to 0, self - is completely disposed.

-
-

Parameters

-
----- - - - - - -

self

a QmiMessageDmsSetOperatingModeInput.

 
-
-

Since: 1.0

-
-
-
-

qmi_message_dms_set_operating_mode_input_get_mode ()

-
gboolean
-qmi_message_dms_set_operating_mode_input_get_mode
-                               (QmiMessageDmsSetOperatingModeInput *self,
-                                QmiDmsOperatingMode *value_mode,
-                                GError **error);
-

Get the 'Mode' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessageDmsSetOperatingModeInput.

 

value_mode

a placeholder for the output QmiDmsOperatingMode, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.0

-
-
-
-

qmi_message_dms_set_operating_mode_input_set_mode ()

-
gboolean
-qmi_message_dms_set_operating_mode_input_set_mode
-                               (QmiMessageDmsSetOperatingModeInput *self,
-                                QmiDmsOperatingMode value_mode,
-                                GError **error);
-

Set the 'Mode' field in the message.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessageDmsSetOperatingModeInput.

 

value_mode

a QmiDmsOperatingMode.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if value -was successfully set, FALSE otherwise.

-
-

Since: 1.0

-
-
-
-

qmi_message_dms_set_operating_mode_output_ref ()

-
QmiMessageDmsSetOperatingModeOutput *
-qmi_message_dms_set_operating_mode_output_ref
-                               (QmiMessageDmsSetOperatingModeOutput *self);
-

Atomically increments the reference count of self - by one.

-
-

Parameters

-
----- - - - - - -

self

a QmiMessageDmsSetOperatingModeOutput.

 
-
-
-

Returns

-

the new reference to self -.

-
-

Since: 1.0

-
-
-
-

qmi_message_dms_set_operating_mode_output_unref ()

-
void
-qmi_message_dms_set_operating_mode_output_unref
-                               (QmiMessageDmsSetOperatingModeOutput *self);
-

Atomically decrements the reference count of self - by one. -If the reference count drops to 0, self - is completely disposed.

-
-

Parameters

-
----- - - - - - -

self

a QmiMessageDmsSetOperatingModeOutput.

 
-
-

Since: 1.0

-
-
-
-

qmi_message_dms_set_operating_mode_output_get_result ()

-
gboolean
-qmi_message_dms_set_operating_mode_output_get_result
-                               (QmiMessageDmsSetOperatingModeOutput *self,
-                                GError **error);
-

Get the result of the QMI operation.

-
-

Parameters

-
----- - - - - - - - - - - - - -

self

a QmiMessageDmsSetOperatingModeOutput.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the QMI operation succeeded, FALSE if error -is set.

-
-

Since: 1.0

-
-
-
-

qmi_client_dms_set_operating_mode ()

-
void
-qmi_client_dms_set_operating_mode (QmiClientDms *self,
-                                   QmiMessageDmsSetOperatingModeInput *input,
-                                   guint timeout,
-                                   GCancellable *cancellable,
-                                   GAsyncReadyCallback callback,
-                                   gpointer user_data);
-

Asynchronously sends a Set Operating Mode request to the device.

-

When the operation is finished, callback - will be invoked in the thread-default main loop of the thread you are calling this method from.

-

You can then call qmi_client_dms_set_operating_mode_finish() to get the result of the operation.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

self

a QmiClientDms.

 

input

a QmiMessageDmsSetOperatingModeInput.

 

timeout

maximum time to wait for the method to complete, in seconds.

 

cancellable

a GCancellable or NULL.

 

callback

a GAsyncReadyCallback to call when the request is satisfied.

 

user_data

user data to pass to callback -.

 
-
-

Since: 1.0

-
-
-
-

qmi_client_dms_set_operating_mode_finish ()

-
QmiMessageDmsSetOperatingModeOutput *
-qmi_client_dms_set_operating_mode_finish
-                               (QmiClientDms *self,
-                                GAsyncResult *res,
-                                GError **error);
-

Finishes an async operation started with qmi_client_dms_set_operating_mode().

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiClientDms.

 

res

the GAsyncResult obtained from the GAsyncReadyCallback passed to qmi_client_dms_set_operating_mode().

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

a QmiMessageDmsSetOperatingModeOutput, or NULL if error -is set. The returned value should be freed with qmi_message_dms_set_operating_mode_output_unref().

-
-

Since: 1.0

-
-
-
-

Types and Values

-
-

QmiMessageDmsSetOperatingModeInput

-
typedef struct _QmiMessageDmsSetOperatingModeInput QmiMessageDmsSetOperatingModeInput;
-

The QmiMessageDmsSetOperatingModeInput structure contains private data and should only be accessed -using the provided API.

-

Since: 1.0

-
-
-
-

QmiMessageDmsSetOperatingModeOutput

-
typedef struct _QmiMessageDmsSetOperatingModeOutput QmiMessageDmsSetOperatingModeOutput;
-

The QmiMessageDmsSetOperatingModeOutput structure contains private data and should only be accessed -using the provided API.

-

Since: 1.0

-
-
-
- - - \ No newline at end of file diff -Nru libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-DMS-Set-Operating-Mode-request.html libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-DMS-Set-Operating-Mode-request.html --- libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-DMS-Set-Operating-Mode-request.html 1970-01-01 01:00:00.000000000 +0100 +++ libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-DMS-Set-Operating-Mode-request.html 2019-01-08 15:19:01.000000000 +0100 @@ -0,0 +1,531 @@ + + + + +DMS Set Operating Mode request: libqmi-glib Reference Manual + + + + + + + + + + + + + + + + +
+
+
+ + +
+

DMS Set Operating Mode request

+

DMS Set Operating Mode request

+
+ +
+

Types and Values

+ +
+
+

Object Hierarchy

+
    GBoxed
+    ├── QmiMessageDmsSetOperatingModeInput
+    ╰── QmiMessageDmsSetOperatingModeOutput
+
+
+
+

Description

+
+
+

Functions

+
+

qmi_message_dms_set_operating_mode_input_new ()

+
QmiMessageDmsSetOperatingModeInput *
+qmi_message_dms_set_operating_mode_input_new
+                               (void);
+

Allocates a new QmiMessageDmsSetOperatingModeInput.

+
+

Returns

+

the newly created QmiMessageDmsSetOperatingModeInput. The returned value should be freed with qmi_message_dms_set_operating_mode_input_unref().

+
+

Since: 1.0

+
+
+
+

qmi_message_dms_set_operating_mode_input_ref ()

+
QmiMessageDmsSetOperatingModeInput *
+qmi_message_dms_set_operating_mode_input_ref
+                               (QmiMessageDmsSetOperatingModeInput *self);
+

Atomically increments the reference count of self + by one.

+
+

Parameters

+
+++++ + + + + + +

self

a QmiMessageDmsSetOperatingModeInput.

 
+
+
+

Returns

+

the new reference to self +.

+
+

Since: 1.0

+
+
+
+

qmi_message_dms_set_operating_mode_input_unref ()

+
void
+qmi_message_dms_set_operating_mode_input_unref
+                               (QmiMessageDmsSetOperatingModeInput *self);
+

Atomically decrements the reference count of self + by one. +If the reference count drops to 0, self + is completely disposed.

+
+

Parameters

+
+++++ + + + + + +

self

a QmiMessageDmsSetOperatingModeInput.

 
+
+

Since: 1.0

+
+
+
+

qmi_message_dms_set_operating_mode_input_get_mode ()

+
gboolean
+qmi_message_dms_set_operating_mode_input_get_mode
+                               (QmiMessageDmsSetOperatingModeInput *self,
+                                QmiDmsOperatingMode *value_mode,
+                                GError **error);
+

Get the 'Mode' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageDmsSetOperatingModeInput.

 

value_mode

a placeholder for the output QmiDmsOperatingMode, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.0

+
+
+
+

qmi_message_dms_set_operating_mode_input_set_mode ()

+
gboolean
+qmi_message_dms_set_operating_mode_input_set_mode
+                               (QmiMessageDmsSetOperatingModeInput *self,
+                                QmiDmsOperatingMode value_mode,
+                                GError **error);
+

Set the 'Mode' field in the message.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageDmsSetOperatingModeInput.

 

value_mode

a QmiDmsOperatingMode.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if value +was successfully set, FALSE otherwise.

+
+

Since: 1.0

+
+
+
+

qmi_message_dms_set_operating_mode_output_ref ()

+
QmiMessageDmsSetOperatingModeOutput *
+qmi_message_dms_set_operating_mode_output_ref
+                               (QmiMessageDmsSetOperatingModeOutput *self);
+

Atomically increments the reference count of self + by one.

+
+

Parameters

+
+++++ + + + + + +

self

a QmiMessageDmsSetOperatingModeOutput.

 
+
+
+

Returns

+

the new reference to self +.

+
+

Since: 1.0

+
+
+
+

qmi_message_dms_set_operating_mode_output_unref ()

+
void
+qmi_message_dms_set_operating_mode_output_unref
+                               (QmiMessageDmsSetOperatingModeOutput *self);
+

Atomically decrements the reference count of self + by one. +If the reference count drops to 0, self + is completely disposed.

+
+

Parameters

+
+++++ + + + + + +

self

a QmiMessageDmsSetOperatingModeOutput.

 
+
+

Since: 1.0

+
+
+
+

qmi_message_dms_set_operating_mode_output_get_result ()

+
gboolean
+qmi_message_dms_set_operating_mode_output_get_result
+                               (QmiMessageDmsSetOperatingModeOutput *self,
+                                GError **error);
+

Get the result of the QMI operation.

+
+

Parameters

+
+++++ + + + + + + + + + + + + +

self

a QmiMessageDmsSetOperatingModeOutput.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the QMI operation succeeded, FALSE if error +is set.

+
+

Since: 1.0

+
+
+
+

qmi_client_dms_set_operating_mode ()

+
void
+qmi_client_dms_set_operating_mode (QmiClientDms *self,
+                                   QmiMessageDmsSetOperatingModeInput *input,
+                                   guint timeout,
+                                   GCancellable *cancellable,
+                                   GAsyncReadyCallback callback,
+                                   gpointer user_data);
+

Asynchronously sends a Set Operating Mode request to the device.

+

When the operation is finished, callback + will be invoked in the thread-default main loop of the thread you are calling this method from.

+

You can then call qmi_client_dms_set_operating_mode_finish() to get the result of the operation.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

self

a QmiClientDms.

 

input

a QmiMessageDmsSetOperatingModeInput.

 

timeout

maximum time to wait for the method to complete, in seconds.

 

cancellable

a GCancellable or NULL.

 

callback

a GAsyncReadyCallback to call when the request is satisfied.

 

user_data

user data to pass to callback +.

 
+
+

Since: 1.0

+
+
+
+

qmi_client_dms_set_operating_mode_finish ()

+
QmiMessageDmsSetOperatingModeOutput *
+qmi_client_dms_set_operating_mode_finish
+                               (QmiClientDms *self,
+                                GAsyncResult *res,
+                                GError **error);
+

Finishes an async operation started with qmi_client_dms_set_operating_mode().

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiClientDms.

 

res

the GAsyncResult obtained from the GAsyncReadyCallback passed to qmi_client_dms_set_operating_mode().

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

a QmiMessageDmsSetOperatingModeOutput, or NULL if error +is set. The returned value should be freed with qmi_message_dms_set_operating_mode_output_unref().

+
+

Since: 1.0

+
+
+
+

Types and Values

+
+

QmiMessageDmsSetOperatingModeInput

+
typedef struct _QmiMessageDmsSetOperatingModeInput QmiMessageDmsSetOperatingModeInput;
+

The QmiMessageDmsSetOperatingModeInput structure contains private data and should only be accessed +using the provided API.

+

Since: 1.0

+
+
+
+

QmiMessageDmsSetOperatingModeOutput

+
typedef struct _QmiMessageDmsSetOperatingModeOutput QmiMessageDmsSetOperatingModeOutput;
+

The QmiMessageDmsSetOperatingModeOutput structure contains private data and should only be accessed +using the provided API.

+

Since: 1.0

+
+
+
+ + + \ No newline at end of file diff -Nru libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-DMS-Set-Service-Programming-Code.html libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-DMS-Set-Service-Programming-Code.html --- libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-DMS-Set-Service-Programming-Code.html 2017-03-22 12:28:29.000000000 +0100 +++ libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-DMS-Set-Service-Programming-Code.html 1970-01-01 01:00:00.000000000 +0100 @@ -1,634 +0,0 @@ - - - - -DMS Set Service Programming Code: libqmi-glib Reference Manual - - - - - - - - - - - - - - - - -
-
-
- - -
-

DMS Set Service Programming Code

-

DMS Set Service Programming Code

-
- - -
-

Object Hierarchy

-
    GBoxed
-    ├── QmiMessageDmsSetServiceProgrammingCodeInput
-    ╰── QmiMessageDmsSetServiceProgrammingCodeOutput
-
-
-
-

Description

-
-
-

Functions

-
-

qmi_message_dms_set_service_programming_code_input_new ()

-
QmiMessageDmsSetServiceProgrammingCodeInput *
-qmi_message_dms_set_service_programming_code_input_new
-                               (void);
-

Allocates a new QmiMessageDmsSetServiceProgrammingCodeInput.

-
-

Returns

-

the newly created QmiMessageDmsSetServiceProgrammingCodeInput. The returned value should be freed with qmi_message_dms_set_service_programming_code_input_unref().

-
-

Since: 1.0

-
-
-
-

qmi_message_dms_set_service_programming_code_input_ref ()

-
QmiMessageDmsSetServiceProgrammingCodeInput *
-qmi_message_dms_set_service_programming_code_input_ref
-                               (QmiMessageDmsSetServiceProgrammingCodeInput *self);
-

Atomically increments the reference count of self - by one.

-
-

Parameters

- -
-
-

Returns

-

the new reference to self -.

-
-

Since: 1.0

-
-
-
-

qmi_message_dms_set_service_programming_code_input_unref ()

-
void
-qmi_message_dms_set_service_programming_code_input_unref
-                               (QmiMessageDmsSetServiceProgrammingCodeInput *self);
-

Atomically decrements the reference count of self - by one. -If the reference count drops to 0, self - is completely disposed.

-
-

Parameters

- -
-

Since: 1.0

-
-
-
-

qmi_message_dms_set_service_programming_code_input_get_new_code ()

-
gboolean
-qmi_message_dms_set_service_programming_code_input_get_new_code
-                               (QmiMessageDmsSetServiceProgrammingCodeInput *self,
-                                const gchar **value_new_code,
-                                GError **error);
-

Get the 'New Code' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessageDmsSetServiceProgrammingCodeInput.

 

value_new_code

a placeholder for the output constant string, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.0

-
-
-
-

qmi_message_dms_set_service_programming_code_input_set_new_code ()

-
gboolean
-qmi_message_dms_set_service_programming_code_input_set_new_code
-                               (QmiMessageDmsSetServiceProgrammingCodeInput *self,
-                                const gchar *value_new_code,
-                                GError **error);
-

Set the 'New Code' field in the message.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessageDmsSetServiceProgrammingCodeInput.

 

value_new_code

a constant string of exactly 6 characters.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if value -was successfully set, FALSE otherwise.

-
-

Since: 1.0

-
-
-
-

qmi_message_dms_set_service_programming_code_input_get_current_code ()

-
gboolean
-qmi_message_dms_set_service_programming_code_input_get_current_code
-                               (QmiMessageDmsSetServiceProgrammingCodeInput *self,
-                                const gchar **value_current_code,
-                                GError **error);
-

Get the 'Current Code' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessageDmsSetServiceProgrammingCodeInput.

 

value_current_code

a placeholder for the output constant string, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.0

-
-
-
-

qmi_message_dms_set_service_programming_code_input_set_current_code ()

-
gboolean
-qmi_message_dms_set_service_programming_code_input_set_current_code
-                               (QmiMessageDmsSetServiceProgrammingCodeInput *self,
-                                const gchar *value_current_code,
-                                GError **error);
-

Set the 'Current Code' field in the message.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessageDmsSetServiceProgrammingCodeInput.

 

value_current_code

a constant string of exactly 6 characters.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if value -was successfully set, FALSE otherwise.

-
-

Since: 1.0

-
-
-
-

qmi_message_dms_set_service_programming_code_output_ref ()

-
QmiMessageDmsSetServiceProgrammingCodeOutput *
-qmi_message_dms_set_service_programming_code_output_ref
-                               (QmiMessageDmsSetServiceProgrammingCodeOutput *self);
-

Atomically increments the reference count of self - by one.

-
-

Parameters

- -
-
-

Returns

-

the new reference to self -.

-
-

Since: 1.0

-
-
-
-

qmi_message_dms_set_service_programming_code_output_unref ()

-
void
-qmi_message_dms_set_service_programming_code_output_unref
-                               (QmiMessageDmsSetServiceProgrammingCodeOutput *self);
-

Atomically decrements the reference count of self - by one. -If the reference count drops to 0, self - is completely disposed.

-
-

Parameters

- -
-

Since: 1.0

-
-
-
-

qmi_message_dms_set_service_programming_code_output_get_result ()

-
gboolean
-qmi_message_dms_set_service_programming_code_output_get_result
-                               (QmiMessageDmsSetServiceProgrammingCodeOutput *self,
-                                GError **error);
-

Get the result of the QMI operation.

-
-

Parameters

-
----- - - - - - - - - - - - - -

self

a QmiMessageDmsSetServiceProgrammingCodeOutput.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the QMI operation succeeded, FALSE if error -is set.

-
-

Since: 1.0

-
-
-
-

qmi_client_dms_set_service_programming_code ()

-
void
-qmi_client_dms_set_service_programming_code
-                               (QmiClientDms *self,
-                                QmiMessageDmsSetServiceProgrammingCodeInput *input,
-                                guint timeout,
-                                GCancellable *cancellable,
-                                GAsyncReadyCallback callback,
-                                gpointer user_data);
-

Asynchronously sends a Set Service Programming Code request to the device.

-

When the operation is finished, callback - will be invoked in the thread-default main loop of the thread you are calling this method from.

-

You can then call qmi_client_dms_set_service_programming_code_finish() to get the result of the operation.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

self

a QmiClientDms.

 

input

a QmiMessageDmsSetServiceProgrammingCodeInput.

 

timeout

maximum time to wait for the method to complete, in seconds.

 

cancellable

a GCancellable or NULL.

 

callback

a GAsyncReadyCallback to call when the request is satisfied.

 

user_data

user data to pass to callback -.

 
-
-

Since: 1.0

-
-
-
-

qmi_client_dms_set_service_programming_code_finish ()

-
QmiMessageDmsSetServiceProgrammingCodeOutput *
-qmi_client_dms_set_service_programming_code_finish
-                               (QmiClientDms *self,
-                                GAsyncResult *res,
-                                GError **error);
-

Finishes an async operation started with qmi_client_dms_set_service_programming_code().

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiClientDms.

 

res

the GAsyncResult obtained from the GAsyncReadyCallback passed to qmi_client_dms_set_service_programming_code().

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

a QmiMessageDmsSetServiceProgrammingCodeOutput, or NULL if error -is set. The returned value should be freed with qmi_message_dms_set_service_programming_code_output_unref().

-
-

Since: 1.0

-
-
-
-

Types and Values

-
-

QmiMessageDmsSetServiceProgrammingCodeInput

-
typedef struct _QmiMessageDmsSetServiceProgrammingCodeInput QmiMessageDmsSetServiceProgrammingCodeInput;
-

The QmiMessageDmsSetServiceProgrammingCodeInput structure contains private data and should only be accessed -using the provided API.

-

Since: 1.0

-
-
-
-

QmiMessageDmsSetServiceProgrammingCodeOutput

-
typedef struct _QmiMessageDmsSetServiceProgrammingCodeOutput QmiMessageDmsSetServiceProgrammingCodeOutput;
-

The QmiMessageDmsSetServiceProgrammingCodeOutput structure contains private data and should only be accessed -using the provided API.

-

Since: 1.0

-
-
-
- - - \ No newline at end of file diff -Nru libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-DMS-Set-Service-Programming-Code-request.html libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-DMS-Set-Service-Programming-Code-request.html --- libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-DMS-Set-Service-Programming-Code-request.html 1970-01-01 01:00:00.000000000 +0100 +++ libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-DMS-Set-Service-Programming-Code-request.html 2019-01-08 15:19:01.000000000 +0100 @@ -0,0 +1,634 @@ + + + + +DMS Set Service Programming Code request: libqmi-glib Reference Manual + + + + + + + + + + + + + + + + +
+
+
+ + +
+

DMS Set Service Programming Code request

+

DMS Set Service Programming Code request

+
+ + +
+

Object Hierarchy

+
    GBoxed
+    ├── QmiMessageDmsSetServiceProgrammingCodeInput
+    ╰── QmiMessageDmsSetServiceProgrammingCodeOutput
+
+
+
+

Description

+
+
+

Functions

+
+

qmi_message_dms_set_service_programming_code_input_new ()

+
QmiMessageDmsSetServiceProgrammingCodeInput *
+qmi_message_dms_set_service_programming_code_input_new
+                               (void);
+

Allocates a new QmiMessageDmsSetServiceProgrammingCodeInput.

+
+

Returns

+

the newly created QmiMessageDmsSetServiceProgrammingCodeInput. The returned value should be freed with qmi_message_dms_set_service_programming_code_input_unref().

+
+

Since: 1.0

+
+
+
+

qmi_message_dms_set_service_programming_code_input_ref ()

+
QmiMessageDmsSetServiceProgrammingCodeInput *
+qmi_message_dms_set_service_programming_code_input_ref
+                               (QmiMessageDmsSetServiceProgrammingCodeInput *self);
+

Atomically increments the reference count of self + by one.

+
+

Parameters

+ +
+
+

Returns

+

the new reference to self +.

+
+

Since: 1.0

+
+
+
+

qmi_message_dms_set_service_programming_code_input_unref ()

+
void
+qmi_message_dms_set_service_programming_code_input_unref
+                               (QmiMessageDmsSetServiceProgrammingCodeInput *self);
+

Atomically decrements the reference count of self + by one. +If the reference count drops to 0, self + is completely disposed.

+
+

Parameters

+ +
+

Since: 1.0

+
+
+
+

qmi_message_dms_set_service_programming_code_input_get_new_code ()

+
gboolean
+qmi_message_dms_set_service_programming_code_input_get_new_code
+                               (QmiMessageDmsSetServiceProgrammingCodeInput *self,
+                                const gchar **value_new_code,
+                                GError **error);
+

Get the 'New Code' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageDmsSetServiceProgrammingCodeInput.

 

value_new_code

a placeholder for the output constant string, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.0

+
+
+
+

qmi_message_dms_set_service_programming_code_input_set_new_code ()

+
gboolean
+qmi_message_dms_set_service_programming_code_input_set_new_code
+                               (QmiMessageDmsSetServiceProgrammingCodeInput *self,
+                                const gchar *value_new_code,
+                                GError **error);
+

Set the 'New Code' field in the message.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageDmsSetServiceProgrammingCodeInput.

 

value_new_code

a constant string of exactly 6 characters.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if value +was successfully set, FALSE otherwise.

+
+

Since: 1.0

+
+
+
+

qmi_message_dms_set_service_programming_code_input_get_current_code ()

+
gboolean
+qmi_message_dms_set_service_programming_code_input_get_current_code
+                               (QmiMessageDmsSetServiceProgrammingCodeInput *self,
+                                const gchar **value_current_code,
+                                GError **error);
+

Get the 'Current Code' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageDmsSetServiceProgrammingCodeInput.

 

value_current_code

a placeholder for the output constant string, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.0

+
+
+
+

qmi_message_dms_set_service_programming_code_input_set_current_code ()

+
gboolean
+qmi_message_dms_set_service_programming_code_input_set_current_code
+                               (QmiMessageDmsSetServiceProgrammingCodeInput *self,
+                                const gchar *value_current_code,
+                                GError **error);
+

Set the 'Current Code' field in the message.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageDmsSetServiceProgrammingCodeInput.

 

value_current_code

a constant string of exactly 6 characters.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if value +was successfully set, FALSE otherwise.

+
+

Since: 1.0

+
+
+
+

qmi_message_dms_set_service_programming_code_output_ref ()

+
QmiMessageDmsSetServiceProgrammingCodeOutput *
+qmi_message_dms_set_service_programming_code_output_ref
+                               (QmiMessageDmsSetServiceProgrammingCodeOutput *self);
+

Atomically increments the reference count of self + by one.

+
+

Parameters

+ +
+
+

Returns

+

the new reference to self +.

+
+

Since: 1.0

+
+
+
+

qmi_message_dms_set_service_programming_code_output_unref ()

+
void
+qmi_message_dms_set_service_programming_code_output_unref
+                               (QmiMessageDmsSetServiceProgrammingCodeOutput *self);
+

Atomically decrements the reference count of self + by one. +If the reference count drops to 0, self + is completely disposed.

+
+

Parameters

+ +
+

Since: 1.0

+
+
+
+

qmi_message_dms_set_service_programming_code_output_get_result ()

+
gboolean
+qmi_message_dms_set_service_programming_code_output_get_result
+                               (QmiMessageDmsSetServiceProgrammingCodeOutput *self,
+                                GError **error);
+

Get the result of the QMI operation.

+
+

Parameters

+
+++++ + + + + + + + + + + + + +

self

a QmiMessageDmsSetServiceProgrammingCodeOutput.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the QMI operation succeeded, FALSE if error +is set.

+
+

Since: 1.0

+
+
+
+

qmi_client_dms_set_service_programming_code ()

+
void
+qmi_client_dms_set_service_programming_code
+                               (QmiClientDms *self,
+                                QmiMessageDmsSetServiceProgrammingCodeInput *input,
+                                guint timeout,
+                                GCancellable *cancellable,
+                                GAsyncReadyCallback callback,
+                                gpointer user_data);
+

Asynchronously sends a Set Service Programming Code request to the device.

+

When the operation is finished, callback + will be invoked in the thread-default main loop of the thread you are calling this method from.

+

You can then call qmi_client_dms_set_service_programming_code_finish() to get the result of the operation.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

self

a QmiClientDms.

 

input

a QmiMessageDmsSetServiceProgrammingCodeInput.

 

timeout

maximum time to wait for the method to complete, in seconds.

 

cancellable

a GCancellable or NULL.

 

callback

a GAsyncReadyCallback to call when the request is satisfied.

 

user_data

user data to pass to callback +.

 
+
+

Since: 1.0

+
+
+
+

qmi_client_dms_set_service_programming_code_finish ()

+
QmiMessageDmsSetServiceProgrammingCodeOutput *
+qmi_client_dms_set_service_programming_code_finish
+                               (QmiClientDms *self,
+                                GAsyncResult *res,
+                                GError **error);
+

Finishes an async operation started with qmi_client_dms_set_service_programming_code().

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiClientDms.

 

res

the GAsyncResult obtained from the GAsyncReadyCallback passed to qmi_client_dms_set_service_programming_code().

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

a QmiMessageDmsSetServiceProgrammingCodeOutput, or NULL if error +is set. The returned value should be freed with qmi_message_dms_set_service_programming_code_output_unref().

+
+

Since: 1.0

+
+
+
+

Types and Values

+
+

QmiMessageDmsSetServiceProgrammingCodeInput

+
typedef struct _QmiMessageDmsSetServiceProgrammingCodeInput QmiMessageDmsSetServiceProgrammingCodeInput;
+

The QmiMessageDmsSetServiceProgrammingCodeInput structure contains private data and should only be accessed +using the provided API.

+

Since: 1.0

+
+
+
+

QmiMessageDmsSetServiceProgrammingCodeOutput

+
typedef struct _QmiMessageDmsSetServiceProgrammingCodeOutput QmiMessageDmsSetServiceProgrammingCodeOutput;
+

The QmiMessageDmsSetServiceProgrammingCodeOutput structure contains private data and should only be accessed +using the provided API.

+

Since: 1.0

+
+
+
+ + + \ No newline at end of file diff -Nru libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-DMS-Set-Time.html libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-DMS-Set-Time.html --- libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-DMS-Set-Time.html 2017-03-22 12:28:29.000000000 +0100 +++ libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-DMS-Set-Time.html 1970-01-01 01:00:00.000000000 +0100 @@ -1,627 +0,0 @@ - - - - -DMS Set Time: libqmi-glib Reference Manual - - - - - - - - - - - - - - - - -
-
-
- - -
-

DMS Set Time

-

DMS Set Time

-
- -
-

Types and Values

- -
-
-

Object Hierarchy

-
    GBoxed
-    ├── QmiMessageDmsSetTimeInput
-    ╰── QmiMessageDmsSetTimeOutput
-
-
-
-

Description

-
-
-

Functions

-
-

qmi_message_dms_set_time_input_new ()

-
QmiMessageDmsSetTimeInput *
-qmi_message_dms_set_time_input_new (void);
-

Allocates a new QmiMessageDmsSetTimeInput.

-
-

Returns

-

the newly created QmiMessageDmsSetTimeInput. The returned value should be freed with qmi_message_dms_set_time_input_unref().

-
-

Since: 1.0

-
-
-
-

qmi_message_dms_set_time_input_ref ()

-
QmiMessageDmsSetTimeInput *
-qmi_message_dms_set_time_input_ref (QmiMessageDmsSetTimeInput *self);
-

Atomically increments the reference count of self - by one.

-
-

Parameters

-
----- - - - - - -

self

a QmiMessageDmsSetTimeInput.

 
-
-
-

Returns

-

the new reference to self -.

-
-

Since: 1.0

-
-
-
-

qmi_message_dms_set_time_input_unref ()

-
void
-qmi_message_dms_set_time_input_unref (QmiMessageDmsSetTimeInput *self);
-

Atomically decrements the reference count of self - by one. -If the reference count drops to 0, self - is completely disposed.

-
-

Parameters

-
----- - - - - - -

self

a QmiMessageDmsSetTimeInput.

 
-
-

Since: 1.0

-
-
-
-

qmi_message_dms_set_time_input_get_time_reference_type ()

-
gboolean
-qmi_message_dms_set_time_input_get_time_reference_type
-                               (QmiMessageDmsSetTimeInput *self,
-                                QmiDmsTimeReferenceType *value_time_reference_type,
-                                GError **error);
-

Get the 'Time Reference Type' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessageDmsSetTimeInput.

 

value_time_reference_type

a placeholder for the output QmiDmsTimeReferenceType, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.0

-
-
-
-

qmi_message_dms_set_time_input_set_time_reference_type ()

-
gboolean
-qmi_message_dms_set_time_input_set_time_reference_type
-                               (QmiMessageDmsSetTimeInput *self,
-                                QmiDmsTimeReferenceType value_time_reference_type,
-                                GError **error);
-

Set the 'Time Reference Type' field in the message.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessageDmsSetTimeInput.

 

value_time_reference_type

a QmiDmsTimeReferenceType.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if value -was successfully set, FALSE otherwise.

-
-

Since: 1.0

-
-
-
-

qmi_message_dms_set_time_input_get_time_value ()

-
gboolean
-qmi_message_dms_set_time_input_get_time_value
-                               (QmiMessageDmsSetTimeInput *self,
-                                guint64 *value_time_value,
-                                GError **error);
-

Get the 'Time Value' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessageDmsSetTimeInput.

 

value_time_value

a placeholder for the output guint64, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.0

-
-
-
-

qmi_message_dms_set_time_input_set_time_value ()

-
gboolean
-qmi_message_dms_set_time_input_set_time_value
-                               (QmiMessageDmsSetTimeInput *self,
-                                guint64 value_time_value,
-                                GError **error);
-

Set the 'Time Value' field in the message.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessageDmsSetTimeInput.

 

value_time_value

a guint64.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if value -was successfully set, FALSE otherwise.

-
-

Since: 1.0

-
-
-
-

qmi_message_dms_set_time_output_ref ()

-
QmiMessageDmsSetTimeOutput *
-qmi_message_dms_set_time_output_ref (QmiMessageDmsSetTimeOutput *self);
-

Atomically increments the reference count of self - by one.

-
-

Parameters

-
----- - - - - - -

self

a QmiMessageDmsSetTimeOutput.

 
-
-
-

Returns

-

the new reference to self -.

-
-

Since: 1.0

-
-
-
-

qmi_message_dms_set_time_output_unref ()

-
void
-qmi_message_dms_set_time_output_unref (QmiMessageDmsSetTimeOutput *self);
-

Atomically decrements the reference count of self - by one. -If the reference count drops to 0, self - is completely disposed.

-
-

Parameters

-
----- - - - - - -

self

a QmiMessageDmsSetTimeOutput.

 
-
-

Since: 1.0

-
-
-
-

qmi_message_dms_set_time_output_get_result ()

-
gboolean
-qmi_message_dms_set_time_output_get_result
-                               (QmiMessageDmsSetTimeOutput *self,
-                                GError **error);
-

Get the result of the QMI operation.

-
-

Parameters

-
----- - - - - - - - - - - - - -

self

a QmiMessageDmsSetTimeOutput.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the QMI operation succeeded, FALSE if error -is set.

-
-

Since: 1.0

-
-
-
-

qmi_client_dms_set_time ()

-
void
-qmi_client_dms_set_time (QmiClientDms *self,
-                         QmiMessageDmsSetTimeInput *input,
-                         guint timeout,
-                         GCancellable *cancellable,
-                         GAsyncReadyCallback callback,
-                         gpointer user_data);
-

Asynchronously sends a Set Time request to the device.

-

When the operation is finished, callback - will be invoked in the thread-default main loop of the thread you are calling this method from.

-

You can then call qmi_client_dms_set_time_finish() to get the result of the operation.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

self

a QmiClientDms.

 

input

a QmiMessageDmsSetTimeInput.

 

timeout

maximum time to wait for the method to complete, in seconds.

 

cancellable

a GCancellable or NULL.

 

callback

a GAsyncReadyCallback to call when the request is satisfied.

 

user_data

user data to pass to callback -.

 
-
-

Since: 1.0

-
-
-
-

qmi_client_dms_set_time_finish ()

-
QmiMessageDmsSetTimeOutput *
-qmi_client_dms_set_time_finish (QmiClientDms *self,
-                                GAsyncResult *res,
-                                GError **error);
-

Finishes an async operation started with qmi_client_dms_set_time().

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiClientDms.

 

res

the GAsyncResult obtained from the GAsyncReadyCallback passed to qmi_client_dms_set_time().

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

a QmiMessageDmsSetTimeOutput, or NULL if error -is set. The returned value should be freed with qmi_message_dms_set_time_output_unref().

-
-

Since: 1.0

-
-
-
-

Types and Values

-
-

QmiMessageDmsSetTimeInput

-
typedef struct _QmiMessageDmsSetTimeInput QmiMessageDmsSetTimeInput;
-

The QmiMessageDmsSetTimeInput structure contains private data and should only be accessed -using the provided API.

-

Since: 1.0

-
-
-
-

QmiMessageDmsSetTimeOutput

-
typedef struct _QmiMessageDmsSetTimeOutput QmiMessageDmsSetTimeOutput;
-

The QmiMessageDmsSetTimeOutput structure contains private data and should only be accessed -using the provided API.

-

Since: 1.0

-
-
-
- - - \ No newline at end of file diff -Nru libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-DMS-Set-Time-request.html libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-DMS-Set-Time-request.html --- libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-DMS-Set-Time-request.html 1970-01-01 01:00:00.000000000 +0100 +++ libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-DMS-Set-Time-request.html 2019-01-08 15:19:01.000000000 +0100 @@ -0,0 +1,627 @@ + + + + +DMS Set Time request: libqmi-glib Reference Manual + + + + + + + + + + + + + + + + +
+
+
+ + +
+

DMS Set Time request

+

DMS Set Time request

+
+ +
+

Types and Values

+ +
+
+

Object Hierarchy

+
    GBoxed
+    ├── QmiMessageDmsSetTimeInput
+    ╰── QmiMessageDmsSetTimeOutput
+
+
+
+

Description

+
+
+

Functions

+
+

qmi_message_dms_set_time_input_new ()

+
QmiMessageDmsSetTimeInput *
+qmi_message_dms_set_time_input_new (void);
+

Allocates a new QmiMessageDmsSetTimeInput.

+
+

Returns

+

the newly created QmiMessageDmsSetTimeInput. The returned value should be freed with qmi_message_dms_set_time_input_unref().

+
+

Since: 1.0

+
+
+
+

qmi_message_dms_set_time_input_ref ()

+
QmiMessageDmsSetTimeInput *
+qmi_message_dms_set_time_input_ref (QmiMessageDmsSetTimeInput *self);
+

Atomically increments the reference count of self + by one.

+
+

Parameters

+
+++++ + + + + + +

self

a QmiMessageDmsSetTimeInput.

 
+
+
+

Returns

+

the new reference to self +.

+
+

Since: 1.0

+
+
+
+

qmi_message_dms_set_time_input_unref ()

+
void
+qmi_message_dms_set_time_input_unref (QmiMessageDmsSetTimeInput *self);
+

Atomically decrements the reference count of self + by one. +If the reference count drops to 0, self + is completely disposed.

+
+

Parameters

+
+++++ + + + + + +

self

a QmiMessageDmsSetTimeInput.

 
+
+

Since: 1.0

+
+
+
+

qmi_message_dms_set_time_input_get_time_reference_type ()

+
gboolean
+qmi_message_dms_set_time_input_get_time_reference_type
+                               (QmiMessageDmsSetTimeInput *self,
+                                QmiDmsTimeReferenceType *value_time_reference_type,
+                                GError **error);
+

Get the 'Time Reference Type' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageDmsSetTimeInput.

 

value_time_reference_type

a placeholder for the output QmiDmsTimeReferenceType, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.0

+
+
+
+

qmi_message_dms_set_time_input_set_time_reference_type ()

+
gboolean
+qmi_message_dms_set_time_input_set_time_reference_type
+                               (QmiMessageDmsSetTimeInput *self,
+                                QmiDmsTimeReferenceType value_time_reference_type,
+                                GError **error);
+

Set the 'Time Reference Type' field in the message.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageDmsSetTimeInput.

 

value_time_reference_type

a QmiDmsTimeReferenceType.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if value +was successfully set, FALSE otherwise.

+
+

Since: 1.0

+
+
+
+

qmi_message_dms_set_time_input_get_time_value ()

+
gboolean
+qmi_message_dms_set_time_input_get_time_value
+                               (QmiMessageDmsSetTimeInput *self,
+                                guint64 *value_time_value,
+                                GError **error);
+

Get the 'Time Value' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageDmsSetTimeInput.

 

value_time_value

a placeholder for the output guint64, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.0

+
+
+
+

qmi_message_dms_set_time_input_set_time_value ()

+
gboolean
+qmi_message_dms_set_time_input_set_time_value
+                               (QmiMessageDmsSetTimeInput *self,
+                                guint64 value_time_value,
+                                GError **error);
+

Set the 'Time Value' field in the message.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageDmsSetTimeInput.

 

value_time_value

a guint64.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if value +was successfully set, FALSE otherwise.

+
+

Since: 1.0

+
+
+
+

qmi_message_dms_set_time_output_ref ()

+
QmiMessageDmsSetTimeOutput *
+qmi_message_dms_set_time_output_ref (QmiMessageDmsSetTimeOutput *self);
+

Atomically increments the reference count of self + by one.

+
+

Parameters

+
+++++ + + + + + +

self

a QmiMessageDmsSetTimeOutput.

 
+
+
+

Returns

+

the new reference to self +.

+
+

Since: 1.0

+
+
+
+

qmi_message_dms_set_time_output_unref ()

+
void
+qmi_message_dms_set_time_output_unref (QmiMessageDmsSetTimeOutput *self);
+

Atomically decrements the reference count of self + by one. +If the reference count drops to 0, self + is completely disposed.

+
+

Parameters

+
+++++ + + + + + +

self

a QmiMessageDmsSetTimeOutput.

 
+
+

Since: 1.0

+
+
+
+

qmi_message_dms_set_time_output_get_result ()

+
gboolean
+qmi_message_dms_set_time_output_get_result
+                               (QmiMessageDmsSetTimeOutput *self,
+                                GError **error);
+

Get the result of the QMI operation.

+
+

Parameters

+
+++++ + + + + + + + + + + + + +

self

a QmiMessageDmsSetTimeOutput.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the QMI operation succeeded, FALSE if error +is set.

+
+

Since: 1.0

+
+
+
+

qmi_client_dms_set_time ()

+
void
+qmi_client_dms_set_time (QmiClientDms *self,
+                         QmiMessageDmsSetTimeInput *input,
+                         guint timeout,
+                         GCancellable *cancellable,
+                         GAsyncReadyCallback callback,
+                         gpointer user_data);
+

Asynchronously sends a Set Time request to the device.

+

When the operation is finished, callback + will be invoked in the thread-default main loop of the thread you are calling this method from.

+

You can then call qmi_client_dms_set_time_finish() to get the result of the operation.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

self

a QmiClientDms.

 

input

a QmiMessageDmsSetTimeInput.

 

timeout

maximum time to wait for the method to complete, in seconds.

 

cancellable

a GCancellable or NULL.

 

callback

a GAsyncReadyCallback to call when the request is satisfied.

 

user_data

user data to pass to callback +.

 
+
+

Since: 1.0

+
+
+
+

qmi_client_dms_set_time_finish ()

+
QmiMessageDmsSetTimeOutput *
+qmi_client_dms_set_time_finish (QmiClientDms *self,
+                                GAsyncResult *res,
+                                GError **error);
+

Finishes an async operation started with qmi_client_dms_set_time().

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiClientDms.

 

res

the GAsyncResult obtained from the GAsyncReadyCallback passed to qmi_client_dms_set_time().

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

a QmiMessageDmsSetTimeOutput, or NULL if error +is set. The returned value should be freed with qmi_message_dms_set_time_output_unref().

+
+

Since: 1.0

+
+
+
+

Types and Values

+
+

QmiMessageDmsSetTimeInput

+
typedef struct _QmiMessageDmsSetTimeInput QmiMessageDmsSetTimeInput;
+

The QmiMessageDmsSetTimeInput structure contains private data and should only be accessed +using the provided API.

+

Since: 1.0

+
+
+
+

QmiMessageDmsSetTimeOutput

+
typedef struct _QmiMessageDmsSetTimeOutput QmiMessageDmsSetTimeOutput;
+

The QmiMessageDmsSetTimeOutput structure contains private data and should only be accessed +using the provided API.

+

Since: 1.0

+
+
+
+ + + \ No newline at end of file diff -Nru libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-DMS-Set-User-Lock-Code.html libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-DMS-Set-User-Lock-Code.html --- libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-DMS-Set-User-Lock-Code.html 2017-03-22 12:28:29.000000000 +0100 +++ libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-DMS-Set-User-Lock-Code.html 1970-01-01 01:00:00.000000000 +0100 @@ -1,543 +0,0 @@ - - - - -DMS Set User Lock Code: libqmi-glib Reference Manual - - - - - - - - - - - - - - - - -
-
-
- - -
-

DMS Set User Lock Code

-

DMS Set User Lock Code

-
- -
-

Types and Values

- -
-
-

Object Hierarchy

-
    GBoxed
-    ├── QmiMessageDmsSetUserLockCodeInput
-    ╰── QmiMessageDmsSetUserLockCodeOutput
-
-
-
-

Description

-
-
-

Functions

-
-

qmi_message_dms_set_user_lock_code_input_new ()

-
QmiMessageDmsSetUserLockCodeInput *
-qmi_message_dms_set_user_lock_code_input_new
-                               (void);
-

Allocates a new QmiMessageDmsSetUserLockCodeInput.

-
-

Returns

-

the newly created QmiMessageDmsSetUserLockCodeInput. The returned value should be freed with qmi_message_dms_set_user_lock_code_input_unref().

-
-

Since: 1.0

-
-
-
-

qmi_message_dms_set_user_lock_code_input_ref ()

-
QmiMessageDmsSetUserLockCodeInput *
-qmi_message_dms_set_user_lock_code_input_ref
-                               (QmiMessageDmsSetUserLockCodeInput *self);
-

Atomically increments the reference count of self - by one.

-
-

Parameters

-
----- - - - - - -

self

a QmiMessageDmsSetUserLockCodeInput.

 
-
-
-

Returns

-

the new reference to self -.

-
-

Since: 1.0

-
-
-
-

qmi_message_dms_set_user_lock_code_input_unref ()

-
void
-qmi_message_dms_set_user_lock_code_input_unref
-                               (QmiMessageDmsSetUserLockCodeInput *self);
-

Atomically decrements the reference count of self - by one. -If the reference count drops to 0, self - is completely disposed.

-
-

Parameters

-
----- - - - - - -

self

a QmiMessageDmsSetUserLockCodeInput.

 
-
-

Since: 1.0

-
-
-
-

qmi_message_dms_set_user_lock_code_input_get_info ()

-
gboolean
-qmi_message_dms_set_user_lock_code_input_get_info
-                               (QmiMessageDmsSetUserLockCodeInput *self,
-                                const gchar **value_info_old_code,
-                                const gchar **value_info_new_code,
-                                GError **error);
-

Get the 'Info' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - - - - - - -

self

a QmiMessageDmsSetUserLockCodeInput.

 

value_info_old_code

a placeholder for the output constant string, or NULL if not required.

 

value_info_new_code

a placeholder for the output constant string, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.0

-
-
-
-

qmi_message_dms_set_user_lock_code_input_set_info ()

-
gboolean
-qmi_message_dms_set_user_lock_code_input_set_info
-                               (QmiMessageDmsSetUserLockCodeInput *self,
-                                const gchar *value_info_old_code,
-                                const gchar *value_info_new_code,
-                                GError **error);
-

Set the 'Info' field in the message.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - - - - - - -

self

a QmiMessageDmsSetUserLockCodeInput.

 

value_info_old_code

a constant string of exactly 4 characters.

 

value_info_new_code

a constant string of exactly 4 characters.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if value -was successfully set, FALSE otherwise.

-
-

Since: 1.0

-
-
-
-

qmi_message_dms_set_user_lock_code_output_ref ()

-
QmiMessageDmsSetUserLockCodeOutput *
-qmi_message_dms_set_user_lock_code_output_ref
-                               (QmiMessageDmsSetUserLockCodeOutput *self);
-

Atomically increments the reference count of self - by one.

-
-

Parameters

-
----- - - - - - -

self

a QmiMessageDmsSetUserLockCodeOutput.

 
-
-
-

Returns

-

the new reference to self -.

-
-

Since: 1.0

-
-
-
-

qmi_message_dms_set_user_lock_code_output_unref ()

-
void
-qmi_message_dms_set_user_lock_code_output_unref
-                               (QmiMessageDmsSetUserLockCodeOutput *self);
-

Atomically decrements the reference count of self - by one. -If the reference count drops to 0, self - is completely disposed.

-
-

Parameters

-
----- - - - - - -

self

a QmiMessageDmsSetUserLockCodeOutput.

 
-
-

Since: 1.0

-
-
-
-

qmi_message_dms_set_user_lock_code_output_get_result ()

-
gboolean
-qmi_message_dms_set_user_lock_code_output_get_result
-                               (QmiMessageDmsSetUserLockCodeOutput *self,
-                                GError **error);
-

Get the result of the QMI operation.

-
-

Parameters

-
----- - - - - - - - - - - - - -

self

a QmiMessageDmsSetUserLockCodeOutput.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the QMI operation succeeded, FALSE if error -is set.

-
-

Since: 1.0

-
-
-
-

qmi_client_dms_set_user_lock_code ()

-
void
-qmi_client_dms_set_user_lock_code (QmiClientDms *self,
-                                   QmiMessageDmsSetUserLockCodeInput *input,
-                                   guint timeout,
-                                   GCancellable *cancellable,
-                                   GAsyncReadyCallback callback,
-                                   gpointer user_data);
-

Asynchronously sends a Set User Lock Code request to the device.

-

When the operation is finished, callback - will be invoked in the thread-default main loop of the thread you are calling this method from.

-

You can then call qmi_client_dms_set_user_lock_code_finish() to get the result of the operation.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

self

a QmiClientDms.

 

input

a QmiMessageDmsSetUserLockCodeInput.

 

timeout

maximum time to wait for the method to complete, in seconds.

 

cancellable

a GCancellable or NULL.

 

callback

a GAsyncReadyCallback to call when the request is satisfied.

 

user_data

user data to pass to callback -.

 
-
-

Since: 1.0

-
-
-
-

qmi_client_dms_set_user_lock_code_finish ()

-
QmiMessageDmsSetUserLockCodeOutput *
-qmi_client_dms_set_user_lock_code_finish
-                               (QmiClientDms *self,
-                                GAsyncResult *res,
-                                GError **error);
-

Finishes an async operation started with qmi_client_dms_set_user_lock_code().

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiClientDms.

 

res

the GAsyncResult obtained from the GAsyncReadyCallback passed to qmi_client_dms_set_user_lock_code().

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

a QmiMessageDmsSetUserLockCodeOutput, or NULL if error -is set. The returned value should be freed with qmi_message_dms_set_user_lock_code_output_unref().

-
-

Since: 1.0

-
-
-
-

Types and Values

-
-

QmiMessageDmsSetUserLockCodeInput

-
typedef struct _QmiMessageDmsSetUserLockCodeInput QmiMessageDmsSetUserLockCodeInput;
-

The QmiMessageDmsSetUserLockCodeInput structure contains private data and should only be accessed -using the provided API.

-

Since: 1.0

-
-
-
-

QmiMessageDmsSetUserLockCodeOutput

-
typedef struct _QmiMessageDmsSetUserLockCodeOutput QmiMessageDmsSetUserLockCodeOutput;
-

The QmiMessageDmsSetUserLockCodeOutput structure contains private data and should only be accessed -using the provided API.

-

Since: 1.0

-
-
-
- - - \ No newline at end of file diff -Nru libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-DMS-Set-User-Lock-Code-request.html libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-DMS-Set-User-Lock-Code-request.html --- libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-DMS-Set-User-Lock-Code-request.html 1970-01-01 01:00:00.000000000 +0100 +++ libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-DMS-Set-User-Lock-Code-request.html 2019-01-08 15:19:01.000000000 +0100 @@ -0,0 +1,543 @@ + + + + +DMS Set User Lock Code request: libqmi-glib Reference Manual + + + + + + + + + + + + + + + + +
+
+
+ + +
+

DMS Set User Lock Code request

+

DMS Set User Lock Code request

+
+ +
+

Types and Values

+ +
+
+

Object Hierarchy

+
    GBoxed
+    ├── QmiMessageDmsSetUserLockCodeInput
+    ╰── QmiMessageDmsSetUserLockCodeOutput
+
+
+
+

Description

+
+
+

Functions

+
+

qmi_message_dms_set_user_lock_code_input_new ()

+
QmiMessageDmsSetUserLockCodeInput *
+qmi_message_dms_set_user_lock_code_input_new
+                               (void);
+

Allocates a new QmiMessageDmsSetUserLockCodeInput.

+
+

Returns

+

the newly created QmiMessageDmsSetUserLockCodeInput. The returned value should be freed with qmi_message_dms_set_user_lock_code_input_unref().

+
+

Since: 1.0

+
+
+
+

qmi_message_dms_set_user_lock_code_input_ref ()

+
QmiMessageDmsSetUserLockCodeInput *
+qmi_message_dms_set_user_lock_code_input_ref
+                               (QmiMessageDmsSetUserLockCodeInput *self);
+

Atomically increments the reference count of self + by one.

+
+

Parameters

+
+++++ + + + + + +

self

a QmiMessageDmsSetUserLockCodeInput.

 
+
+
+

Returns

+

the new reference to self +.

+
+

Since: 1.0

+
+
+
+

qmi_message_dms_set_user_lock_code_input_unref ()

+
void
+qmi_message_dms_set_user_lock_code_input_unref
+                               (QmiMessageDmsSetUserLockCodeInput *self);
+

Atomically decrements the reference count of self + by one. +If the reference count drops to 0, self + is completely disposed.

+
+

Parameters

+
+++++ + + + + + +

self

a QmiMessageDmsSetUserLockCodeInput.

 
+
+

Since: 1.0

+
+
+
+

qmi_message_dms_set_user_lock_code_input_get_info ()

+
gboolean
+qmi_message_dms_set_user_lock_code_input_get_info
+                               (QmiMessageDmsSetUserLockCodeInput *self,
+                                const gchar **value_info_old_code,
+                                const gchar **value_info_new_code,
+                                GError **error);
+

Get the 'Info' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + + + + + + +

self

a QmiMessageDmsSetUserLockCodeInput.

 

value_info_old_code

a placeholder for the output constant string, or NULL if not required.

 

value_info_new_code

a placeholder for the output constant string, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.0

+
+
+
+

qmi_message_dms_set_user_lock_code_input_set_info ()

+
gboolean
+qmi_message_dms_set_user_lock_code_input_set_info
+                               (QmiMessageDmsSetUserLockCodeInput *self,
+                                const gchar *value_info_old_code,
+                                const gchar *value_info_new_code,
+                                GError **error);
+

Set the 'Info' field in the message.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + + + + + + +

self

a QmiMessageDmsSetUserLockCodeInput.

 

value_info_old_code

a constant string of exactly 4 characters.

 

value_info_new_code

a constant string of exactly 4 characters.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if value +was successfully set, FALSE otherwise.

+
+

Since: 1.0

+
+
+
+

qmi_message_dms_set_user_lock_code_output_ref ()

+
QmiMessageDmsSetUserLockCodeOutput *
+qmi_message_dms_set_user_lock_code_output_ref
+                               (QmiMessageDmsSetUserLockCodeOutput *self);
+

Atomically increments the reference count of self + by one.

+
+

Parameters

+
+++++ + + + + + +

self

a QmiMessageDmsSetUserLockCodeOutput.

 
+
+
+

Returns

+

the new reference to self +.

+
+

Since: 1.0

+
+
+
+

qmi_message_dms_set_user_lock_code_output_unref ()

+
void
+qmi_message_dms_set_user_lock_code_output_unref
+                               (QmiMessageDmsSetUserLockCodeOutput *self);
+

Atomically decrements the reference count of self + by one. +If the reference count drops to 0, self + is completely disposed.

+
+

Parameters

+
+++++ + + + + + +

self

a QmiMessageDmsSetUserLockCodeOutput.

 
+
+

Since: 1.0

+
+
+
+

qmi_message_dms_set_user_lock_code_output_get_result ()

+
gboolean
+qmi_message_dms_set_user_lock_code_output_get_result
+                               (QmiMessageDmsSetUserLockCodeOutput *self,
+                                GError **error);
+

Get the result of the QMI operation.

+
+

Parameters

+
+++++ + + + + + + + + + + + + +

self

a QmiMessageDmsSetUserLockCodeOutput.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the QMI operation succeeded, FALSE if error +is set.

+
+

Since: 1.0

+
+
+
+

qmi_client_dms_set_user_lock_code ()

+
void
+qmi_client_dms_set_user_lock_code (QmiClientDms *self,
+                                   QmiMessageDmsSetUserLockCodeInput *input,
+                                   guint timeout,
+                                   GCancellable *cancellable,
+                                   GAsyncReadyCallback callback,
+                                   gpointer user_data);
+

Asynchronously sends a Set User Lock Code request to the device.

+

When the operation is finished, callback + will be invoked in the thread-default main loop of the thread you are calling this method from.

+

You can then call qmi_client_dms_set_user_lock_code_finish() to get the result of the operation.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

self

a QmiClientDms.

 

input

a QmiMessageDmsSetUserLockCodeInput.

 

timeout

maximum time to wait for the method to complete, in seconds.

 

cancellable

a GCancellable or NULL.

 

callback

a GAsyncReadyCallback to call when the request is satisfied.

 

user_data

user data to pass to callback +.

 
+
+

Since: 1.0

+
+
+
+

qmi_client_dms_set_user_lock_code_finish ()

+
QmiMessageDmsSetUserLockCodeOutput *
+qmi_client_dms_set_user_lock_code_finish
+                               (QmiClientDms *self,
+                                GAsyncResult *res,
+                                GError **error);
+

Finishes an async operation started with qmi_client_dms_set_user_lock_code().

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiClientDms.

 

res

the GAsyncResult obtained from the GAsyncReadyCallback passed to qmi_client_dms_set_user_lock_code().

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

a QmiMessageDmsSetUserLockCodeOutput, or NULL if error +is set. The returned value should be freed with qmi_message_dms_set_user_lock_code_output_unref().

+
+

Since: 1.0

+
+
+
+

Types and Values

+
+

QmiMessageDmsSetUserLockCodeInput

+
typedef struct _QmiMessageDmsSetUserLockCodeInput QmiMessageDmsSetUserLockCodeInput;
+

The QmiMessageDmsSetUserLockCodeInput structure contains private data and should only be accessed +using the provided API.

+

Since: 1.0

+
+
+
+

QmiMessageDmsSetUserLockCodeOutput

+
typedef struct _QmiMessageDmsSetUserLockCodeOutput QmiMessageDmsSetUserLockCodeOutput;
+

The QmiMessageDmsSetUserLockCodeOutput structure contains private data and should only be accessed +using the provided API.

+

Since: 1.0

+
+
+
+ + + \ No newline at end of file diff -Nru libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-DMS-Set-User-Lock-State.html libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-DMS-Set-User-Lock-State.html --- libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-DMS-Set-User-Lock-State.html 2017-03-22 12:28:29.000000000 +0100 +++ libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-DMS-Set-User-Lock-State.html 1970-01-01 01:00:00.000000000 +0100 @@ -1,543 +0,0 @@ - - - - -DMS Set User Lock State: libqmi-glib Reference Manual - - - - - - - - - - - - - - - - -
-
-
- - -
-

DMS Set User Lock State

-

DMS Set User Lock State

-
- -
-

Types and Values

- -
-
-

Object Hierarchy

-
    GBoxed
-    ├── QmiMessageDmsSetUserLockStateInput
-    ╰── QmiMessageDmsSetUserLockStateOutput
-
-
-
-

Description

-
-
-

Functions

-
-

qmi_message_dms_set_user_lock_state_input_new ()

-
QmiMessageDmsSetUserLockStateInput *
-qmi_message_dms_set_user_lock_state_input_new
-                               (void);
-

Allocates a new QmiMessageDmsSetUserLockStateInput.

-
-

Returns

-

the newly created QmiMessageDmsSetUserLockStateInput. The returned value should be freed with qmi_message_dms_set_user_lock_state_input_unref().

-
-

Since: 1.0

-
-
-
-

qmi_message_dms_set_user_lock_state_input_ref ()

-
QmiMessageDmsSetUserLockStateInput *
-qmi_message_dms_set_user_lock_state_input_ref
-                               (QmiMessageDmsSetUserLockStateInput *self);
-

Atomically increments the reference count of self - by one.

-
-

Parameters

-
----- - - - - - -

self

a QmiMessageDmsSetUserLockStateInput.

 
-
-
-

Returns

-

the new reference to self -.

-
-

Since: 1.0

-
-
-
-

qmi_message_dms_set_user_lock_state_input_unref ()

-
void
-qmi_message_dms_set_user_lock_state_input_unref
-                               (QmiMessageDmsSetUserLockStateInput *self);
-

Atomically decrements the reference count of self - by one. -If the reference count drops to 0, self - is completely disposed.

-
-

Parameters

-
----- - - - - - -

self

a QmiMessageDmsSetUserLockStateInput.

 
-
-

Since: 1.0

-
-
-
-

qmi_message_dms_set_user_lock_state_input_get_info ()

-
gboolean
-qmi_message_dms_set_user_lock_state_input_get_info
-                               (QmiMessageDmsSetUserLockStateInput *self,
-                                gboolean *value_info_enabled,
-                                const gchar **value_info_lock_code,
-                                GError **error);
-

Get the 'Info' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - - - - - - -

self

a QmiMessageDmsSetUserLockStateInput.

 

value_info_enabled

a placeholder for the output gboolean, or NULL if not required.

 

value_info_lock_code

a placeholder for the output constant string, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.0

-
-
-
-

qmi_message_dms_set_user_lock_state_input_set_info ()

-
gboolean
-qmi_message_dms_set_user_lock_state_input_set_info
-                               (QmiMessageDmsSetUserLockStateInput *self,
-                                gboolean value_info_enabled,
-                                const gchar *value_info_lock_code,
-                                GError **error);
-

Set the 'Info' field in the message.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - - - - - - -

self

a QmiMessageDmsSetUserLockStateInput.

 

value_info_enabled

a gboolean.

 

value_info_lock_code

a constant string of exactly 4 characters.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if value -was successfully set, FALSE otherwise.

-
-

Since: 1.0

-
-
-
-

qmi_message_dms_set_user_lock_state_output_ref ()

-
QmiMessageDmsSetUserLockStateOutput *
-qmi_message_dms_set_user_lock_state_output_ref
-                               (QmiMessageDmsSetUserLockStateOutput *self);
-

Atomically increments the reference count of self - by one.

-
-

Parameters

-
----- - - - - - -

self

a QmiMessageDmsSetUserLockStateOutput.

 
-
-
-

Returns

-

the new reference to self -.

-
-

Since: 1.0

-
-
-
-

qmi_message_dms_set_user_lock_state_output_unref ()

-
void
-qmi_message_dms_set_user_lock_state_output_unref
-                               (QmiMessageDmsSetUserLockStateOutput *self);
-

Atomically decrements the reference count of self - by one. -If the reference count drops to 0, self - is completely disposed.

-
-

Parameters

-
----- - - - - - -

self

a QmiMessageDmsSetUserLockStateOutput.

 
-
-

Since: 1.0

-
-
-
-

qmi_message_dms_set_user_lock_state_output_get_result ()

-
gboolean
-qmi_message_dms_set_user_lock_state_output_get_result
-                               (QmiMessageDmsSetUserLockStateOutput *self,
-                                GError **error);
-

Get the result of the QMI operation.

-
-

Parameters

-
----- - - - - - - - - - - - - -

self

a QmiMessageDmsSetUserLockStateOutput.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the QMI operation succeeded, FALSE if error -is set.

-
-

Since: 1.0

-
-
-
-

qmi_client_dms_set_user_lock_state ()

-
void
-qmi_client_dms_set_user_lock_state (QmiClientDms *self,
-                                    QmiMessageDmsSetUserLockStateInput *input,
-                                    guint timeout,
-                                    GCancellable *cancellable,
-                                    GAsyncReadyCallback callback,
-                                    gpointer user_data);
-

Asynchronously sends a Set User Lock State request to the device.

-

When the operation is finished, callback - will be invoked in the thread-default main loop of the thread you are calling this method from.

-

You can then call qmi_client_dms_set_user_lock_state_finish() to get the result of the operation.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

self

a QmiClientDms.

 

input

a QmiMessageDmsSetUserLockStateInput.

 

timeout

maximum time to wait for the method to complete, in seconds.

 

cancellable

a GCancellable or NULL.

 

callback

a GAsyncReadyCallback to call when the request is satisfied.

 

user_data

user data to pass to callback -.

 
-
-

Since: 1.0

-
-
-
-

qmi_client_dms_set_user_lock_state_finish ()

-
QmiMessageDmsSetUserLockStateOutput *
-qmi_client_dms_set_user_lock_state_finish
-                               (QmiClientDms *self,
-                                GAsyncResult *res,
-                                GError **error);
-

Finishes an async operation started with qmi_client_dms_set_user_lock_state().

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiClientDms.

 

res

the GAsyncResult obtained from the GAsyncReadyCallback passed to qmi_client_dms_set_user_lock_state().

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

a QmiMessageDmsSetUserLockStateOutput, or NULL if error -is set. The returned value should be freed with qmi_message_dms_set_user_lock_state_output_unref().

-
-

Since: 1.0

-
-
-
-

Types and Values

-
-

QmiMessageDmsSetUserLockStateInput

-
typedef struct _QmiMessageDmsSetUserLockStateInput QmiMessageDmsSetUserLockStateInput;
-

The QmiMessageDmsSetUserLockStateInput structure contains private data and should only be accessed -using the provided API.

-

Since: 1.0

-
-
-
-

QmiMessageDmsSetUserLockStateOutput

-
typedef struct _QmiMessageDmsSetUserLockStateOutput QmiMessageDmsSetUserLockStateOutput;
-

The QmiMessageDmsSetUserLockStateOutput structure contains private data and should only be accessed -using the provided API.

-

Since: 1.0

-
-
-
- - - \ No newline at end of file diff -Nru libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-DMS-Set-User-Lock-State-request.html libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-DMS-Set-User-Lock-State-request.html --- libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-DMS-Set-User-Lock-State-request.html 1970-01-01 01:00:00.000000000 +0100 +++ libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-DMS-Set-User-Lock-State-request.html 2019-01-08 15:19:01.000000000 +0100 @@ -0,0 +1,543 @@ + + + + +DMS Set User Lock State request: libqmi-glib Reference Manual + + + + + + + + + + + + + + + + +
+
+
+ + +
+

DMS Set User Lock State request

+

DMS Set User Lock State request

+
+ +
+

Types and Values

+ +
+
+

Object Hierarchy

+
    GBoxed
+    ├── QmiMessageDmsSetUserLockStateInput
+    ╰── QmiMessageDmsSetUserLockStateOutput
+
+
+
+

Description

+
+
+

Functions

+
+

qmi_message_dms_set_user_lock_state_input_new ()

+
QmiMessageDmsSetUserLockStateInput *
+qmi_message_dms_set_user_lock_state_input_new
+                               (void);
+

Allocates a new QmiMessageDmsSetUserLockStateInput.

+
+

Returns

+

the newly created QmiMessageDmsSetUserLockStateInput. The returned value should be freed with qmi_message_dms_set_user_lock_state_input_unref().

+
+

Since: 1.0

+
+
+
+

qmi_message_dms_set_user_lock_state_input_ref ()

+
QmiMessageDmsSetUserLockStateInput *
+qmi_message_dms_set_user_lock_state_input_ref
+                               (QmiMessageDmsSetUserLockStateInput *self);
+

Atomically increments the reference count of self + by one.

+
+

Parameters

+
+++++ + + + + + +

self

a QmiMessageDmsSetUserLockStateInput.

 
+
+
+

Returns

+

the new reference to self +.

+
+

Since: 1.0

+
+
+
+

qmi_message_dms_set_user_lock_state_input_unref ()

+
void
+qmi_message_dms_set_user_lock_state_input_unref
+                               (QmiMessageDmsSetUserLockStateInput *self);
+

Atomically decrements the reference count of self + by one. +If the reference count drops to 0, self + is completely disposed.

+
+

Parameters

+
+++++ + + + + + +

self

a QmiMessageDmsSetUserLockStateInput.

 
+
+

Since: 1.0

+
+
+
+

qmi_message_dms_set_user_lock_state_input_get_info ()

+
gboolean
+qmi_message_dms_set_user_lock_state_input_get_info
+                               (QmiMessageDmsSetUserLockStateInput *self,
+                                gboolean *value_info_enabled,
+                                const gchar **value_info_lock_code,
+                                GError **error);
+

Get the 'Info' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + + + + + + +

self

a QmiMessageDmsSetUserLockStateInput.

 

value_info_enabled

a placeholder for the output gboolean, or NULL if not required.

 

value_info_lock_code

a placeholder for the output constant string, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.0

+
+
+
+

qmi_message_dms_set_user_lock_state_input_set_info ()

+
gboolean
+qmi_message_dms_set_user_lock_state_input_set_info
+                               (QmiMessageDmsSetUserLockStateInput *self,
+                                gboolean value_info_enabled,
+                                const gchar *value_info_lock_code,
+                                GError **error);
+

Set the 'Info' field in the message.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + + + + + + +

self

a QmiMessageDmsSetUserLockStateInput.

 

value_info_enabled

a gboolean.

 

value_info_lock_code

a constant string of exactly 4 characters.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if value +was successfully set, FALSE otherwise.

+
+

Since: 1.0

+
+
+
+

qmi_message_dms_set_user_lock_state_output_ref ()

+
QmiMessageDmsSetUserLockStateOutput *
+qmi_message_dms_set_user_lock_state_output_ref
+                               (QmiMessageDmsSetUserLockStateOutput *self);
+

Atomically increments the reference count of self + by one.

+
+

Parameters

+
+++++ + + + + + +

self

a QmiMessageDmsSetUserLockStateOutput.

 
+
+
+

Returns

+

the new reference to self +.

+
+

Since: 1.0

+
+
+
+

qmi_message_dms_set_user_lock_state_output_unref ()

+
void
+qmi_message_dms_set_user_lock_state_output_unref
+                               (QmiMessageDmsSetUserLockStateOutput *self);
+

Atomically decrements the reference count of self + by one. +If the reference count drops to 0, self + is completely disposed.

+
+

Parameters

+
+++++ + + + + + +

self

a QmiMessageDmsSetUserLockStateOutput.

 
+
+

Since: 1.0

+
+
+
+

qmi_message_dms_set_user_lock_state_output_get_result ()

+
gboolean
+qmi_message_dms_set_user_lock_state_output_get_result
+                               (QmiMessageDmsSetUserLockStateOutput *self,
+                                GError **error);
+

Get the result of the QMI operation.

+
+

Parameters

+
+++++ + + + + + + + + + + + + +

self

a QmiMessageDmsSetUserLockStateOutput.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the QMI operation succeeded, FALSE if error +is set.

+
+

Since: 1.0

+
+
+
+

qmi_client_dms_set_user_lock_state ()

+
void
+qmi_client_dms_set_user_lock_state (QmiClientDms *self,
+                                    QmiMessageDmsSetUserLockStateInput *input,
+                                    guint timeout,
+                                    GCancellable *cancellable,
+                                    GAsyncReadyCallback callback,
+                                    gpointer user_data);
+

Asynchronously sends a Set User Lock State request to the device.

+

When the operation is finished, callback + will be invoked in the thread-default main loop of the thread you are calling this method from.

+

You can then call qmi_client_dms_set_user_lock_state_finish() to get the result of the operation.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

self

a QmiClientDms.

 

input

a QmiMessageDmsSetUserLockStateInput.

 

timeout

maximum time to wait for the method to complete, in seconds.

 

cancellable

a GCancellable or NULL.

 

callback

a GAsyncReadyCallback to call when the request is satisfied.

 

user_data

user data to pass to callback +.

 
+
+

Since: 1.0

+
+
+
+

qmi_client_dms_set_user_lock_state_finish ()

+
QmiMessageDmsSetUserLockStateOutput *
+qmi_client_dms_set_user_lock_state_finish
+                               (QmiClientDms *self,
+                                GAsyncResult *res,
+                                GError **error);
+

Finishes an async operation started with qmi_client_dms_set_user_lock_state().

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiClientDms.

 

res

the GAsyncResult obtained from the GAsyncReadyCallback passed to qmi_client_dms_set_user_lock_state().

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

a QmiMessageDmsSetUserLockStateOutput, or NULL if error +is set. The returned value should be freed with qmi_message_dms_set_user_lock_state_output_unref().

+
+

Since: 1.0

+
+
+
+

Types and Values

+
+

QmiMessageDmsSetUserLockStateInput

+
typedef struct _QmiMessageDmsSetUserLockStateInput QmiMessageDmsSetUserLockStateInput;
+

The QmiMessageDmsSetUserLockStateInput structure contains private data and should only be accessed +using the provided API.

+

Since: 1.0

+
+
+
+

QmiMessageDmsSetUserLockStateOutput

+
typedef struct _QmiMessageDmsSetUserLockStateOutput QmiMessageDmsSetUserLockStateOutput;
+

The QmiMessageDmsSetUserLockStateOutput structure contains private data and should only be accessed +using the provided API.

+

Since: 1.0

+
+
+
+ + + \ No newline at end of file diff -Nru libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-DMS-Swi-Get-Current-Firmware.html libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-DMS-Swi-Get-Current-Firmware.html --- libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-DMS-Swi-Get-Current-Firmware.html 2017-03-22 12:28:29.000000000 +0100 +++ libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-DMS-Swi-Get-Current-Firmware.html 1970-01-01 01:00:00.000000000 +0100 @@ -1,780 +0,0 @@ - - - - -DMS Swi Get Current Firmware: libqmi-glib Reference Manual - - - - - - - - - - - - - - - - -
-
-
- - -
-

DMS Swi Get Current Firmware

-

DMS Swi Get Current Firmware

-
- -
-

Types and Values

- -
-
-

Object Hierarchy

-
    GBoxed
-    ╰── QmiMessageDmsSwiGetCurrentFirmwareOutput
-
-
-
-

Description

-
-
-

Functions

-
-

qmi_message_dms_swi_get_current_firmware_output_ref ()

-
QmiMessageDmsSwiGetCurrentFirmwareOutput *
-qmi_message_dms_swi_get_current_firmware_output_ref
-                               (QmiMessageDmsSwiGetCurrentFirmwareOutput *self);
-

Atomically increments the reference count of self - by one.

-
-

Parameters

-
----- - - - - - -

self

a QmiMessageDmsSwiGetCurrentFirmwareOutput.

 
-
-
-

Returns

-

the new reference to self -.

-
-

Since: 1.18

-
-
-
-

qmi_message_dms_swi_get_current_firmware_output_unref ()

-
void
-qmi_message_dms_swi_get_current_firmware_output_unref
-                               (QmiMessageDmsSwiGetCurrentFirmwareOutput *self);
-

Atomically decrements the reference count of self - by one. -If the reference count drops to 0, self - is completely disposed.

-
-

Parameters

-
----- - - - - - -

self

a QmiMessageDmsSwiGetCurrentFirmwareOutput.

 
-
-

Since: 1.18

-
-
-
-

qmi_message_dms_swi_get_current_firmware_output_get_result ()

-
gboolean
-qmi_message_dms_swi_get_current_firmware_output_get_result
-                               (QmiMessageDmsSwiGetCurrentFirmwareOutput *self,
-                                GError **error);
-

Get the result of the QMI operation.

-
-

Parameters

-
----- - - - - - - - - - - - - -

self

a QmiMessageDmsSwiGetCurrentFirmwareOutput.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the QMI operation succeeded, FALSE if error -is set.

-
-

Since: 1.18

-
-
-
-

qmi_message_dms_swi_get_current_firmware_output_get_model ()

-
gboolean
-qmi_message_dms_swi_get_current_firmware_output_get_model
-                               (QmiMessageDmsSwiGetCurrentFirmwareOutput *self,
-                                const gchar **value_model,
-                                GError **error);
-

Get the 'Model' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessageDmsSwiGetCurrentFirmwareOutput.

 

value_model

a placeholder for the output constant string, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.18

-
-
-
-

qmi_message_dms_swi_get_current_firmware_output_get_boot_version ()

-
gboolean
-qmi_message_dms_swi_get_current_firmware_output_get_boot_version
-                               (QmiMessageDmsSwiGetCurrentFirmwareOutput *self,
-                                const gchar **value_boot_version,
-                                GError **error);
-

Get the 'Boot version' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessageDmsSwiGetCurrentFirmwareOutput.

 

value_boot_version

a placeholder for the output constant string, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.18

-
-
-
-

qmi_message_dms_swi_get_current_firmware_output_get_amss_version ()

-
gboolean
-qmi_message_dms_swi_get_current_firmware_output_get_amss_version
-                               (QmiMessageDmsSwiGetCurrentFirmwareOutput *self,
-                                const gchar **value_amss_version,
-                                GError **error);
-

Get the 'AMSS version' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessageDmsSwiGetCurrentFirmwareOutput.

 

value_amss_version

a placeholder for the output constant string, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.18

-
-
-
-

qmi_message_dms_swi_get_current_firmware_output_get_sku_id ()

-
gboolean
-qmi_message_dms_swi_get_current_firmware_output_get_sku_id
-                               (QmiMessageDmsSwiGetCurrentFirmwareOutput *self,
-                                const gchar **value_sku_id,
-                                GError **error);
-

Get the 'SKU ID' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessageDmsSwiGetCurrentFirmwareOutput.

 

value_sku_id

a placeholder for the output constant string, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.18

-
-
-
-

qmi_message_dms_swi_get_current_firmware_output_get_package_id ()

-
gboolean
-qmi_message_dms_swi_get_current_firmware_output_get_package_id
-                               (QmiMessageDmsSwiGetCurrentFirmwareOutput *self,
-                                const gchar **value_package_id,
-                                GError **error);
-

Get the 'Package ID' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessageDmsSwiGetCurrentFirmwareOutput.

 

value_package_id

a placeholder for the output constant string, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.18

-
-
-
-

qmi_message_dms_swi_get_current_firmware_output_get_carrier_id ()

-
gboolean
-qmi_message_dms_swi_get_current_firmware_output_get_carrier_id
-                               (QmiMessageDmsSwiGetCurrentFirmwareOutput *self,
-                                const gchar **value_carrier_id,
-                                GError **error);
-

Get the 'Carrier ID' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessageDmsSwiGetCurrentFirmwareOutput.

 

value_carrier_id

a placeholder for the output constant string, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.18

-
-
-
-

qmi_message_dms_swi_get_current_firmware_output_get_pri_version ()

-
gboolean
-qmi_message_dms_swi_get_current_firmware_output_get_pri_version
-                               (QmiMessageDmsSwiGetCurrentFirmwareOutput *self,
-                                const gchar **value_pri_version,
-                                GError **error);
-

Get the 'PRI version' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessageDmsSwiGetCurrentFirmwareOutput.

 

value_pri_version

a placeholder for the output constant string, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.18

-
-
-
-

qmi_message_dms_swi_get_current_firmware_output_get_carrier ()

-
gboolean
-qmi_message_dms_swi_get_current_firmware_output_get_carrier
-                               (QmiMessageDmsSwiGetCurrentFirmwareOutput *self,
-                                const gchar **value_carrier,
-                                GError **error);
-

Get the 'Carrier' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessageDmsSwiGetCurrentFirmwareOutput.

 

value_carrier

a placeholder for the output constant string, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.18

-
-
-
-

qmi_message_dms_swi_get_current_firmware_output_get_config_version ()

-
gboolean
-qmi_message_dms_swi_get_current_firmware_output_get_config_version
-                               (QmiMessageDmsSwiGetCurrentFirmwareOutput *self,
-                                const gchar **value_config_version,
-                                GError **error);
-

Get the 'Config version' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessageDmsSwiGetCurrentFirmwareOutput.

 

value_config_version

a placeholder for the output constant string, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.18

-
-
-
-

qmi_client_dms_swi_get_current_firmware ()

-
void
-qmi_client_dms_swi_get_current_firmware
-                               (QmiClientDms *self,
-                                gpointer unused,
-                                guint timeout,
-                                GCancellable *cancellable,
-                                GAsyncReadyCallback callback,
-                                gpointer user_data);
-

Asynchronously sends a Swi Get Current Firmware request to the device.

-

When the operation is finished, callback - will be invoked in the thread-default main loop of the thread you are calling this method from.

-

You can then call qmi_client_dms_swi_get_current_firmware_finish() to get the result of the operation.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

self

a QmiClientDms.

 

unused

NULL. This message doesn't have any input bundle.

 

timeout

maximum time to wait for the method to complete, in seconds.

 

cancellable

a GCancellable or NULL.

 

callback

a GAsyncReadyCallback to call when the request is satisfied.

 

user_data

user data to pass to callback -.

 
-
-

Since: 1.18

-
-
-
-

qmi_client_dms_swi_get_current_firmware_finish ()

-
QmiMessageDmsSwiGetCurrentFirmwareOutput *
-qmi_client_dms_swi_get_current_firmware_finish
-                               (QmiClientDms *self,
-                                GAsyncResult *res,
-                                GError **error);
-

Finishes an async operation started with qmi_client_dms_swi_get_current_firmware().

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiClientDms.

 

res

the GAsyncResult obtained from the GAsyncReadyCallback passed to qmi_client_dms_swi_get_current_firmware().

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

a QmiMessageDmsSwiGetCurrentFirmwareOutput, or NULL if error -is set. The returned value should be freed with qmi_message_dms_swi_get_current_firmware_output_unref().

-
-

Since: 1.18

-
-
-
-

Types and Values

-
-

QmiMessageDmsSwiGetCurrentFirmwareOutput

-
typedef struct _QmiMessageDmsSwiGetCurrentFirmwareOutput QmiMessageDmsSwiGetCurrentFirmwareOutput;
-

The QmiMessageDmsSwiGetCurrentFirmwareOutput structure contains private data and should only be accessed -using the provided API.

-

Since: 1.18

-
-
-
- - - \ No newline at end of file diff -Nru libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-DMS-Swi-Get-Current-Firmware-request.html libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-DMS-Swi-Get-Current-Firmware-request.html --- libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-DMS-Swi-Get-Current-Firmware-request.html 1970-01-01 01:00:00.000000000 +0100 +++ libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-DMS-Swi-Get-Current-Firmware-request.html 2019-01-08 15:19:01.000000000 +0100 @@ -0,0 +1,780 @@ + + + + +DMS Swi Get Current Firmware request: libqmi-glib Reference Manual + + + + + + + + + + + + + + + + +
+
+
+ + +
+

DMS Swi Get Current Firmware request

+

DMS Swi Get Current Firmware request

+
+ +
+

Types and Values

+ +
+
+

Object Hierarchy

+
    GBoxed
+    ╰── QmiMessageDmsSwiGetCurrentFirmwareOutput
+
+
+
+

Description

+
+
+

Functions

+
+

qmi_message_dms_swi_get_current_firmware_output_ref ()

+
QmiMessageDmsSwiGetCurrentFirmwareOutput *
+qmi_message_dms_swi_get_current_firmware_output_ref
+                               (QmiMessageDmsSwiGetCurrentFirmwareOutput *self);
+

Atomically increments the reference count of self + by one.

+
+

Parameters

+
+++++ + + + + + +

self

a QmiMessageDmsSwiGetCurrentFirmwareOutput.

 
+
+
+

Returns

+

the new reference to self +.

+
+

Since: 1.18

+
+
+
+

qmi_message_dms_swi_get_current_firmware_output_unref ()

+
void
+qmi_message_dms_swi_get_current_firmware_output_unref
+                               (QmiMessageDmsSwiGetCurrentFirmwareOutput *self);
+

Atomically decrements the reference count of self + by one. +If the reference count drops to 0, self + is completely disposed.

+
+

Parameters

+
+++++ + + + + + +

self

a QmiMessageDmsSwiGetCurrentFirmwareOutput.

 
+
+

Since: 1.18

+
+
+
+

qmi_message_dms_swi_get_current_firmware_output_get_result ()

+
gboolean
+qmi_message_dms_swi_get_current_firmware_output_get_result
+                               (QmiMessageDmsSwiGetCurrentFirmwareOutput *self,
+                                GError **error);
+

Get the result of the QMI operation.

+
+

Parameters

+
+++++ + + + + + + + + + + + + +

self

a QmiMessageDmsSwiGetCurrentFirmwareOutput.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the QMI operation succeeded, FALSE if error +is set.

+
+

Since: 1.18

+
+
+
+

qmi_message_dms_swi_get_current_firmware_output_get_model ()

+
gboolean
+qmi_message_dms_swi_get_current_firmware_output_get_model
+                               (QmiMessageDmsSwiGetCurrentFirmwareOutput *self,
+                                const gchar **value_model,
+                                GError **error);
+

Get the 'Model' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageDmsSwiGetCurrentFirmwareOutput.

 

value_model

a placeholder for the output constant string, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.18

+
+
+
+

qmi_message_dms_swi_get_current_firmware_output_get_boot_version ()

+
gboolean
+qmi_message_dms_swi_get_current_firmware_output_get_boot_version
+                               (QmiMessageDmsSwiGetCurrentFirmwareOutput *self,
+                                const gchar **value_boot_version,
+                                GError **error);
+

Get the 'Boot version' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageDmsSwiGetCurrentFirmwareOutput.

 

value_boot_version

a placeholder for the output constant string, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.18

+
+
+
+

qmi_message_dms_swi_get_current_firmware_output_get_amss_version ()

+
gboolean
+qmi_message_dms_swi_get_current_firmware_output_get_amss_version
+                               (QmiMessageDmsSwiGetCurrentFirmwareOutput *self,
+                                const gchar **value_amss_version,
+                                GError **error);
+

Get the 'AMSS version' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageDmsSwiGetCurrentFirmwareOutput.

 

value_amss_version

a placeholder for the output constant string, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.18

+
+
+
+

qmi_message_dms_swi_get_current_firmware_output_get_sku_id ()

+
gboolean
+qmi_message_dms_swi_get_current_firmware_output_get_sku_id
+                               (QmiMessageDmsSwiGetCurrentFirmwareOutput *self,
+                                const gchar **value_sku_id,
+                                GError **error);
+

Get the 'SKU ID' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageDmsSwiGetCurrentFirmwareOutput.

 

value_sku_id

a placeholder for the output constant string, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.18

+
+
+
+

qmi_message_dms_swi_get_current_firmware_output_get_package_id ()

+
gboolean
+qmi_message_dms_swi_get_current_firmware_output_get_package_id
+                               (QmiMessageDmsSwiGetCurrentFirmwareOutput *self,
+                                const gchar **value_package_id,
+                                GError **error);
+

Get the 'Package ID' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageDmsSwiGetCurrentFirmwareOutput.

 

value_package_id

a placeholder for the output constant string, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.18

+
+
+
+

qmi_message_dms_swi_get_current_firmware_output_get_carrier_id ()

+
gboolean
+qmi_message_dms_swi_get_current_firmware_output_get_carrier_id
+                               (QmiMessageDmsSwiGetCurrentFirmwareOutput *self,
+                                const gchar **value_carrier_id,
+                                GError **error);
+

Get the 'Carrier ID' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageDmsSwiGetCurrentFirmwareOutput.

 

value_carrier_id

a placeholder for the output constant string, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.18

+
+
+
+

qmi_message_dms_swi_get_current_firmware_output_get_pri_version ()

+
gboolean
+qmi_message_dms_swi_get_current_firmware_output_get_pri_version
+                               (QmiMessageDmsSwiGetCurrentFirmwareOutput *self,
+                                const gchar **value_pri_version,
+                                GError **error);
+

Get the 'PRI version' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageDmsSwiGetCurrentFirmwareOutput.

 

value_pri_version

a placeholder for the output constant string, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.18

+
+
+
+

qmi_message_dms_swi_get_current_firmware_output_get_carrier ()

+
gboolean
+qmi_message_dms_swi_get_current_firmware_output_get_carrier
+                               (QmiMessageDmsSwiGetCurrentFirmwareOutput *self,
+                                const gchar **value_carrier,
+                                GError **error);
+

Get the 'Carrier' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageDmsSwiGetCurrentFirmwareOutput.

 

value_carrier

a placeholder for the output constant string, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.18

+
+
+
+

qmi_message_dms_swi_get_current_firmware_output_get_config_version ()

+
gboolean
+qmi_message_dms_swi_get_current_firmware_output_get_config_version
+                               (QmiMessageDmsSwiGetCurrentFirmwareOutput *self,
+                                const gchar **value_config_version,
+                                GError **error);
+

Get the 'Config version' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageDmsSwiGetCurrentFirmwareOutput.

 

value_config_version

a placeholder for the output constant string, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.18

+
+
+
+

qmi_client_dms_swi_get_current_firmware ()

+
void
+qmi_client_dms_swi_get_current_firmware
+                               (QmiClientDms *self,
+                                gpointer unused,
+                                guint timeout,
+                                GCancellable *cancellable,
+                                GAsyncReadyCallback callback,
+                                gpointer user_data);
+

Asynchronously sends a Swi Get Current Firmware request to the device.

+

When the operation is finished, callback + will be invoked in the thread-default main loop of the thread you are calling this method from.

+

You can then call qmi_client_dms_swi_get_current_firmware_finish() to get the result of the operation.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

self

a QmiClientDms.

 

unused

NULL. This message doesn't have any input bundle.

 

timeout

maximum time to wait for the method to complete, in seconds.

 

cancellable

a GCancellable or NULL.

 

callback

a GAsyncReadyCallback to call when the request is satisfied.

 

user_data

user data to pass to callback +.

 
+
+

Since: 1.18

+
+
+
+

qmi_client_dms_swi_get_current_firmware_finish ()

+
QmiMessageDmsSwiGetCurrentFirmwareOutput *
+qmi_client_dms_swi_get_current_firmware_finish
+                               (QmiClientDms *self,
+                                GAsyncResult *res,
+                                GError **error);
+

Finishes an async operation started with qmi_client_dms_swi_get_current_firmware().

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiClientDms.

 

res

the GAsyncResult obtained from the GAsyncReadyCallback passed to qmi_client_dms_swi_get_current_firmware().

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

a QmiMessageDmsSwiGetCurrentFirmwareOutput, or NULL if error +is set. The returned value should be freed with qmi_message_dms_swi_get_current_firmware_output_unref().

+
+

Since: 1.18

+
+
+
+

Types and Values

+
+

QmiMessageDmsSwiGetCurrentFirmwareOutput

+
typedef struct _QmiMessageDmsSwiGetCurrentFirmwareOutput QmiMessageDmsSwiGetCurrentFirmwareOutput;
+

The QmiMessageDmsSwiGetCurrentFirmwareOutput structure contains private data and should only be accessed +using the provided API.

+

Since: 1.18

+
+
+
+ + + \ No newline at end of file diff -Nru libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-DMS-Swi-Get-USB-Composition-request.html libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-DMS-Swi-Get-USB-Composition-request.html --- libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-DMS-Swi-Get-USB-Composition-request.html 1970-01-01 01:00:00.000000000 +0100 +++ libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-DMS-Swi-Get-USB-Composition-request.html 2019-01-08 15:19:01.000000000 +0100 @@ -0,0 +1,424 @@ + + + + +DMS Swi Get USB Composition request: libqmi-glib Reference Manual + + + + + + + + + + + + + + + + +
+
+
+ + +
+

DMS Swi Get USB Composition request

+

DMS Swi Get USB Composition request

+
+ +
+

Types and Values

+ +
+
+

Object Hierarchy

+
    GBoxed
+    ╰── QmiMessageDmsSwiGetUsbCompositionOutput
+
+
+
+

Description

+
+
+

Functions

+
+

qmi_message_dms_swi_get_usb_composition_output_ref ()

+
QmiMessageDmsSwiGetUsbCompositionOutput *
+qmi_message_dms_swi_get_usb_composition_output_ref
+                               (QmiMessageDmsSwiGetUsbCompositionOutput *self);
+

Atomically increments the reference count of self + by one.

+
+

Parameters

+
+++++ + + + + + +

self

a QmiMessageDmsSwiGetUsbCompositionOutput.

 
+
+
+

Returns

+

the new reference to self +.

+
+

Since: 1.20

+
+
+
+

qmi_message_dms_swi_get_usb_composition_output_unref ()

+
void
+qmi_message_dms_swi_get_usb_composition_output_unref
+                               (QmiMessageDmsSwiGetUsbCompositionOutput *self);
+

Atomically decrements the reference count of self + by one. +If the reference count drops to 0, self + is completely disposed.

+
+

Parameters

+
+++++ + + + + + +

self

a QmiMessageDmsSwiGetUsbCompositionOutput.

 
+
+

Since: 1.20

+
+
+
+

qmi_message_dms_swi_get_usb_composition_output_get_result ()

+
gboolean
+qmi_message_dms_swi_get_usb_composition_output_get_result
+                               (QmiMessageDmsSwiGetUsbCompositionOutput *self,
+                                GError **error);
+

Get the result of the QMI operation.

+
+

Parameters

+
+++++ + + + + + + + + + + + + +

self

a QmiMessageDmsSwiGetUsbCompositionOutput.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the QMI operation succeeded, FALSE if error +is set.

+
+

Since: 1.20

+
+
+
+

qmi_message_dms_swi_get_usb_composition_output_get_current ()

+
gboolean
+qmi_message_dms_swi_get_usb_composition_output_get_current
+                               (QmiMessageDmsSwiGetUsbCompositionOutput *self,
+                                QmiDmsSwiUsbComposition *value_current,
+                                GError **error);
+

Get the 'Current' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageDmsSwiGetUsbCompositionOutput.

 

value_current

a placeholder for the output QmiDmsSwiUsbComposition, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.20

+
+
+
+

qmi_message_dms_swi_get_usb_composition_output_get_supported ()

+
gboolean
+qmi_message_dms_swi_get_usb_composition_output_get_supported
+                               (QmiMessageDmsSwiGetUsbCompositionOutput *self,
+                                GArray **value_supported,
+                                GError **error);
+

Get the 'Supported' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageDmsSwiGetUsbCompositionOutput.

 

value_supported

a placeholder for the output GArray of QmiDmsSwiUsbComposition elements, or NULL if not required. Do not free it, it is owned by self +.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.20

+
+
+
+

qmi_client_dms_swi_get_usb_composition ()

+
void
+qmi_client_dms_swi_get_usb_composition
+                               (QmiClientDms *self,
+                                gpointer unused,
+                                guint timeout,
+                                GCancellable *cancellable,
+                                GAsyncReadyCallback callback,
+                                gpointer user_data);
+

Asynchronously sends a Swi Get USB Composition request to the device.

+

When the operation is finished, callback + will be invoked in the thread-default main loop of the thread you are calling this method from.

+

You can then call qmi_client_dms_swi_get_usb_composition_finish() to get the result of the operation.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

self

a QmiClientDms.

 

unused

NULL. This message doesn't have any input bundle.

 

timeout

maximum time to wait for the method to complete, in seconds.

 

cancellable

a GCancellable or NULL.

 

callback

a GAsyncReadyCallback to call when the request is satisfied.

 

user_data

user data to pass to callback +.

 
+
+

Since: 1.20

+
+
+
+

qmi_client_dms_swi_get_usb_composition_finish ()

+
QmiMessageDmsSwiGetUsbCompositionOutput *
+qmi_client_dms_swi_get_usb_composition_finish
+                               (QmiClientDms *self,
+                                GAsyncResult *res,
+                                GError **error);
+

Finishes an async operation started with qmi_client_dms_swi_get_usb_composition().

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiClientDms.

 

res

the GAsyncResult obtained from the GAsyncReadyCallback passed to qmi_client_dms_swi_get_usb_composition().

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

a QmiMessageDmsSwiGetUsbCompositionOutput, or NULL if error +is set. The returned value should be freed with qmi_message_dms_swi_get_usb_composition_output_unref().

+
+

Since: 1.20

+
+
+
+

Types and Values

+
+

QmiMessageDmsSwiGetUsbCompositionOutput

+
typedef struct _QmiMessageDmsSwiGetUsbCompositionOutput QmiMessageDmsSwiGetUsbCompositionOutput;
+

The QmiMessageDmsSwiGetUsbCompositionOutput structure contains private data and should only be accessed +using the provided API.

+

Since: 1.20

+
+
+
+ + + \ No newline at end of file diff -Nru libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-DMS-Swi-Set-USB-Composition-request.html libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-DMS-Swi-Set-USB-Composition-request.html --- libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-DMS-Swi-Set-USB-Composition-request.html 1970-01-01 01:00:00.000000000 +0100 +++ libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-DMS-Swi-Set-USB-Composition-request.html 2019-01-08 15:19:01.000000000 +0100 @@ -0,0 +1,532 @@ + + + + +DMS Swi Set USB Composition request: libqmi-glib Reference Manual + + + + + + + + + + + + + + + + +
+
+
+ + +
+

DMS Swi Set USB Composition request

+

DMS Swi Set USB Composition request

+
+ +
+

Types and Values

+ +
+
+

Object Hierarchy

+
    GBoxed
+    ├── QmiMessageDmsSwiSetUsbCompositionInput
+    ╰── QmiMessageDmsSwiSetUsbCompositionOutput
+
+
+
+

Description

+
+
+

Functions

+
+

qmi_message_dms_swi_set_usb_composition_input_new ()

+
QmiMessageDmsSwiSetUsbCompositionInput *
+qmi_message_dms_swi_set_usb_composition_input_new
+                               (void);
+

Allocates a new QmiMessageDmsSwiSetUsbCompositionInput.

+
+

Returns

+

the newly created QmiMessageDmsSwiSetUsbCompositionInput. The returned value should be freed with qmi_message_dms_swi_set_usb_composition_input_unref().

+
+

Since: 1.20

+
+
+
+

qmi_message_dms_swi_set_usb_composition_input_ref ()

+
QmiMessageDmsSwiSetUsbCompositionInput *
+qmi_message_dms_swi_set_usb_composition_input_ref
+                               (QmiMessageDmsSwiSetUsbCompositionInput *self);
+

Atomically increments the reference count of self + by one.

+
+

Parameters

+
+++++ + + + + + +

self

a QmiMessageDmsSwiSetUsbCompositionInput.

 
+
+
+

Returns

+

the new reference to self +.

+
+

Since: 1.20

+
+
+
+

qmi_message_dms_swi_set_usb_composition_input_unref ()

+
void
+qmi_message_dms_swi_set_usb_composition_input_unref
+                               (QmiMessageDmsSwiSetUsbCompositionInput *self);
+

Atomically decrements the reference count of self + by one. +If the reference count drops to 0, self + is completely disposed.

+
+

Parameters

+
+++++ + + + + + +

self

a QmiMessageDmsSwiSetUsbCompositionInput.

 
+
+

Since: 1.20

+
+
+
+

qmi_message_dms_swi_set_usb_composition_input_get_current ()

+
gboolean
+qmi_message_dms_swi_set_usb_composition_input_get_current
+                               (QmiMessageDmsSwiSetUsbCompositionInput *self,
+                                QmiDmsSwiUsbComposition *value_current,
+                                GError **error);
+

Get the 'Current' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageDmsSwiSetUsbCompositionInput.

 

value_current

a placeholder for the output QmiDmsSwiUsbComposition, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.20

+
+
+
+

qmi_message_dms_swi_set_usb_composition_input_set_current ()

+
gboolean
+qmi_message_dms_swi_set_usb_composition_input_set_current
+                               (QmiMessageDmsSwiSetUsbCompositionInput *self,
+                                QmiDmsSwiUsbComposition value_current,
+                                GError **error);
+

Set the 'Current' field in the message.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageDmsSwiSetUsbCompositionInput.

 

value_current

a QmiDmsSwiUsbComposition.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if value +was successfully set, FALSE otherwise.

+
+

Since: 1.20

+
+
+
+

qmi_message_dms_swi_set_usb_composition_output_ref ()

+
QmiMessageDmsSwiSetUsbCompositionOutput *
+qmi_message_dms_swi_set_usb_composition_output_ref
+                               (QmiMessageDmsSwiSetUsbCompositionOutput *self);
+

Atomically increments the reference count of self + by one.

+
+

Parameters

+
+++++ + + + + + +

self

a QmiMessageDmsSwiSetUsbCompositionOutput.

 
+
+
+

Returns

+

the new reference to self +.

+
+

Since: 1.20

+
+
+
+

qmi_message_dms_swi_set_usb_composition_output_unref ()

+
void
+qmi_message_dms_swi_set_usb_composition_output_unref
+                               (QmiMessageDmsSwiSetUsbCompositionOutput *self);
+

Atomically decrements the reference count of self + by one. +If the reference count drops to 0, self + is completely disposed.

+
+

Parameters

+
+++++ + + + + + +

self

a QmiMessageDmsSwiSetUsbCompositionOutput.

 
+
+

Since: 1.20

+
+
+
+

qmi_message_dms_swi_set_usb_composition_output_get_result ()

+
gboolean
+qmi_message_dms_swi_set_usb_composition_output_get_result
+                               (QmiMessageDmsSwiSetUsbCompositionOutput *self,
+                                GError **error);
+

Get the result of the QMI operation.

+
+

Parameters

+
+++++ + + + + + + + + + + + + +

self

a QmiMessageDmsSwiSetUsbCompositionOutput.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the QMI operation succeeded, FALSE if error +is set.

+
+

Since: 1.20

+
+
+
+

qmi_client_dms_swi_set_usb_composition ()

+
void
+qmi_client_dms_swi_set_usb_composition
+                               (QmiClientDms *self,
+                                QmiMessageDmsSwiSetUsbCompositionInput *input,
+                                guint timeout,
+                                GCancellable *cancellable,
+                                GAsyncReadyCallback callback,
+                                gpointer user_data);
+

Asynchronously sends a Swi Set USB Composition request to the device.

+

When the operation is finished, callback + will be invoked in the thread-default main loop of the thread you are calling this method from.

+

You can then call qmi_client_dms_swi_set_usb_composition_finish() to get the result of the operation.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

self

a QmiClientDms.

 

input

a QmiMessageDmsSwiSetUsbCompositionInput.

 

timeout

maximum time to wait for the method to complete, in seconds.

 

cancellable

a GCancellable or NULL.

 

callback

a GAsyncReadyCallback to call when the request is satisfied.

 

user_data

user data to pass to callback +.

 
+
+

Since: 1.20

+
+
+
+

qmi_client_dms_swi_set_usb_composition_finish ()

+
QmiMessageDmsSwiSetUsbCompositionOutput *
+qmi_client_dms_swi_set_usb_composition_finish
+                               (QmiClientDms *self,
+                                GAsyncResult *res,
+                                GError **error);
+

Finishes an async operation started with qmi_client_dms_swi_set_usb_composition().

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiClientDms.

 

res

the GAsyncResult obtained from the GAsyncReadyCallback passed to qmi_client_dms_swi_set_usb_composition().

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

a QmiMessageDmsSwiSetUsbCompositionOutput, or NULL if error +is set. The returned value should be freed with qmi_message_dms_swi_set_usb_composition_output_unref().

+
+

Since: 1.20

+
+
+
+

Types and Values

+
+

QmiMessageDmsSwiSetUsbCompositionInput

+
typedef struct _QmiMessageDmsSwiSetUsbCompositionInput QmiMessageDmsSwiSetUsbCompositionInput;
+

The QmiMessageDmsSwiSetUsbCompositionInput structure contains private data and should only be accessed +using the provided API.

+

Since: 1.20

+
+
+
+

QmiMessageDmsSwiSetUsbCompositionOutput

+
typedef struct _QmiMessageDmsSwiSetUsbCompositionOutput QmiMessageDmsSwiSetUsbCompositionOutput;
+

The QmiMessageDmsSwiSetUsbCompositionOutput structure contains private data and should only be accessed +using the provided API.

+

Since: 1.20

+
+
+
+ + + \ No newline at end of file diff -Nru libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-DMS-UIM-Change-PIN.html libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-DMS-UIM-Change-PIN.html --- libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-DMS-UIM-Change-PIN.html 2017-03-22 12:28:29.000000000 +0100 +++ libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-DMS-UIM-Change-PIN.html 1970-01-01 01:00:00.000000000 +0100 @@ -1,611 +0,0 @@ - - - - -DMS UIM Change PIN: libqmi-glib Reference Manual - - - - - - - - - - - - - - - - -
-
-
- - -
-

DMS UIM Change PIN

-

DMS UIM Change PIN

-
- -
-

Types and Values

- -
-
-

Object Hierarchy

-
    GBoxed
-    ├── QmiMessageDmsUimChangePinInput
-    ╰── QmiMessageDmsUimChangePinOutput
-
-
-
-

Description

-
-
-

Functions

-
-

qmi_message_dms_uim_change_pin_input_new ()

-
QmiMessageDmsUimChangePinInput *
-qmi_message_dms_uim_change_pin_input_new
-                               (void);
-

Allocates a new QmiMessageDmsUimChangePinInput.

-
-

Returns

-

the newly created QmiMessageDmsUimChangePinInput. The returned value should be freed with qmi_message_dms_uim_change_pin_input_unref().

-
-

Since: 1.0

-
-
-
-

qmi_message_dms_uim_change_pin_input_ref ()

-
QmiMessageDmsUimChangePinInput *
-qmi_message_dms_uim_change_pin_input_ref
-                               (QmiMessageDmsUimChangePinInput *self);
-

Atomically increments the reference count of self - by one.

-
-

Parameters

-
----- - - - - - -

self

a QmiMessageDmsUimChangePinInput.

 
-
-
-

Returns

-

the new reference to self -.

-
-

Since: 1.0

-
-
-
-

qmi_message_dms_uim_change_pin_input_unref ()

-
void
-qmi_message_dms_uim_change_pin_input_unref
-                               (QmiMessageDmsUimChangePinInput *self);
-

Atomically decrements the reference count of self - by one. -If the reference count drops to 0, self - is completely disposed.

-
-

Parameters

-
----- - - - - - -

self

a QmiMessageDmsUimChangePinInput.

 
-
-

Since: 1.0

-
-
-
-

qmi_message_dms_uim_change_pin_input_get_info ()

-
gboolean
-qmi_message_dms_uim_change_pin_input_get_info
-                               (QmiMessageDmsUimChangePinInput *self,
-                                QmiDmsUimPinId *value_info_pin_id,
-                                const gchar **value_info_old_pin,
-                                const gchar **value_info_new_pin,
-                                GError **error);
-

Get the 'Info' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - - - - - - - - - - - -

self

a QmiMessageDmsUimChangePinInput.

 

value_info_pin_id

a placeholder for the output QmiDmsUimPinId, or NULL if not required.

 

value_info_old_pin

a placeholder for the output constant string, or NULL if not required.

 

value_info_new_pin

a placeholder for the output constant string, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.0

-
-
-
-

qmi_message_dms_uim_change_pin_input_set_info ()

-
gboolean
-qmi_message_dms_uim_change_pin_input_set_info
-                               (QmiMessageDmsUimChangePinInput *self,
-                                QmiDmsUimPinId value_info_pin_id,
-                                const gchar *value_info_old_pin,
-                                const gchar *value_info_new_pin,
-                                GError **error);
-

Set the 'Info' field in the message.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - - - - - - - - - - - -

self

a QmiMessageDmsUimChangePinInput.

 

value_info_pin_id

a QmiDmsUimPinId.

 

value_info_old_pin

a constant string.

 

value_info_new_pin

a constant string.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if value -was successfully set, FALSE otherwise.

-
-

Since: 1.0

-
-
-
-

qmi_message_dms_uim_change_pin_output_ref ()

-
QmiMessageDmsUimChangePinOutput *
-qmi_message_dms_uim_change_pin_output_ref
-                               (QmiMessageDmsUimChangePinOutput *self);
-

Atomically increments the reference count of self - by one.

-
-

Parameters

-
----- - - - - - -

self

a QmiMessageDmsUimChangePinOutput.

 
-
-
-

Returns

-

the new reference to self -.

-
-

Since: 1.0

-
-
-
-

qmi_message_dms_uim_change_pin_output_unref ()

-
void
-qmi_message_dms_uim_change_pin_output_unref
-                               (QmiMessageDmsUimChangePinOutput *self);
-

Atomically decrements the reference count of self - by one. -If the reference count drops to 0, self - is completely disposed.

-
-

Parameters

-
----- - - - - - -

self

a QmiMessageDmsUimChangePinOutput.

 
-
-

Since: 1.0

-
-
-
-

qmi_message_dms_uim_change_pin_output_get_result ()

-
gboolean
-qmi_message_dms_uim_change_pin_output_get_result
-                               (QmiMessageDmsUimChangePinOutput *self,
-                                GError **error);
-

Get the result of the QMI operation.

-
-

Parameters

-
----- - - - - - - - - - - - - -

self

a QmiMessageDmsUimChangePinOutput.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the QMI operation succeeded, FALSE if error -is set.

-
-

Since: 1.0

-
-
-
-

qmi_message_dms_uim_change_pin_output_get_pin_retries_status ()

-
gboolean
-qmi_message_dms_uim_change_pin_output_get_pin_retries_status
-                               (QmiMessageDmsUimChangePinOutput *self,
-                                guint8 *value_pin_retries_status_verify_retries_left,
-                                guint8 *value_pin_retries_status_unblock_retries_left,
-                                GError **error);
-

Get the 'Pin Retries Status' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - - - - - - -

self

a QmiMessageDmsUimChangePinOutput.

 

value_pin_retries_status_verify_retries_left

a placeholder for the output guint8, or NULL if not required.

 

value_pin_retries_status_unblock_retries_left

a placeholder for the output guint8, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.0

-
-
-
-

qmi_client_dms_uim_change_pin ()

-
void
-qmi_client_dms_uim_change_pin (QmiClientDms *self,
-                               QmiMessageDmsUimChangePinInput *input,
-                               guint timeout,
-                               GCancellable *cancellable,
-                               GAsyncReadyCallback callback,
-                               gpointer user_data);
-

Asynchronously sends a UIM Change PIN request to the device.

-

When the operation is finished, callback - will be invoked in the thread-default main loop of the thread you are calling this method from.

-

You can then call qmi_client_dms_uim_change_pin_finish() to get the result of the operation.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

self

a QmiClientDms.

 

input

a QmiMessageDmsUimChangePinInput.

 

timeout

maximum time to wait for the method to complete, in seconds.

 

cancellable

a GCancellable or NULL.

 

callback

a GAsyncReadyCallback to call when the request is satisfied.

 

user_data

user data to pass to callback -.

 
-
-

Since: 1.0

-
-
-
-

qmi_client_dms_uim_change_pin_finish ()

-
QmiMessageDmsUimChangePinOutput *
-qmi_client_dms_uim_change_pin_finish (QmiClientDms *self,
-                                      GAsyncResult *res,
-                                      GError **error);
-

Finishes an async operation started with qmi_client_dms_uim_change_pin().

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiClientDms.

 

res

the GAsyncResult obtained from the GAsyncReadyCallback passed to qmi_client_dms_uim_change_pin().

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

a QmiMessageDmsUimChangePinOutput, or NULL if error -is set. The returned value should be freed with qmi_message_dms_uim_change_pin_output_unref().

-
-

Since: 1.0

-
-
-
-

Types and Values

-
-

QmiMessageDmsUimChangePinInput

-
typedef struct _QmiMessageDmsUimChangePinInput QmiMessageDmsUimChangePinInput;
-

The QmiMessageDmsUimChangePinInput structure contains private data and should only be accessed -using the provided API.

-

Since: 1.0

-
-
-
-

QmiMessageDmsUimChangePinOutput

-
typedef struct _QmiMessageDmsUimChangePinOutput QmiMessageDmsUimChangePinOutput;
-

The QmiMessageDmsUimChangePinOutput structure contains private data and should only be accessed -using the provided API.

-

Since: 1.0

-
-
-
- - - \ No newline at end of file diff -Nru libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-DMS-UIM-Change-PIN-request.html libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-DMS-UIM-Change-PIN-request.html --- libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-DMS-UIM-Change-PIN-request.html 1970-01-01 01:00:00.000000000 +0100 +++ libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-DMS-UIM-Change-PIN-request.html 2019-01-08 15:19:01.000000000 +0100 @@ -0,0 +1,611 @@ + + + + +DMS UIM Change PIN request: libqmi-glib Reference Manual + + + + + + + + + + + + + + + + +
+
+
+ + +
+

DMS UIM Change PIN request

+

DMS UIM Change PIN request

+
+ +
+

Types and Values

+ +
+
+

Object Hierarchy

+
    GBoxed
+    ├── QmiMessageDmsUimChangePinInput
+    ╰── QmiMessageDmsUimChangePinOutput
+
+
+
+

Description

+
+
+

Functions

+
+

qmi_message_dms_uim_change_pin_input_new ()

+
QmiMessageDmsUimChangePinInput *
+qmi_message_dms_uim_change_pin_input_new
+                               (void);
+

Allocates a new QmiMessageDmsUimChangePinInput.

+
+

Returns

+

the newly created QmiMessageDmsUimChangePinInput. The returned value should be freed with qmi_message_dms_uim_change_pin_input_unref().

+
+

Since: 1.0

+
+
+
+

qmi_message_dms_uim_change_pin_input_ref ()

+
QmiMessageDmsUimChangePinInput *
+qmi_message_dms_uim_change_pin_input_ref
+                               (QmiMessageDmsUimChangePinInput *self);
+

Atomically increments the reference count of self + by one.

+
+

Parameters

+
+++++ + + + + + +

self

a QmiMessageDmsUimChangePinInput.

 
+
+
+

Returns

+

the new reference to self +.

+
+

Since: 1.0

+
+
+
+

qmi_message_dms_uim_change_pin_input_unref ()

+
void
+qmi_message_dms_uim_change_pin_input_unref
+                               (QmiMessageDmsUimChangePinInput *self);
+

Atomically decrements the reference count of self + by one. +If the reference count drops to 0, self + is completely disposed.

+
+

Parameters

+
+++++ + + + + + +

self

a QmiMessageDmsUimChangePinInput.

 
+
+

Since: 1.0

+
+
+
+

qmi_message_dms_uim_change_pin_input_get_info ()

+
gboolean
+qmi_message_dms_uim_change_pin_input_get_info
+                               (QmiMessageDmsUimChangePinInput *self,
+                                QmiDmsUimPinId *value_info_pin_id,
+                                const gchar **value_info_old_pin,
+                                const gchar **value_info_new_pin,
+                                GError **error);
+

Get the 'Info' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + + + + + + + + + + + +

self

a QmiMessageDmsUimChangePinInput.

 

value_info_pin_id

a placeholder for the output QmiDmsUimPinId, or NULL if not required.

 

value_info_old_pin

a placeholder for the output constant string, or NULL if not required.

 

value_info_new_pin

a placeholder for the output constant string, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.0

+
+
+
+

qmi_message_dms_uim_change_pin_input_set_info ()

+
gboolean
+qmi_message_dms_uim_change_pin_input_set_info
+                               (QmiMessageDmsUimChangePinInput *self,
+                                QmiDmsUimPinId value_info_pin_id,
+                                const gchar *value_info_old_pin,
+                                const gchar *value_info_new_pin,
+                                GError **error);
+

Set the 'Info' field in the message.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + + + + + + + + + + + +

self

a QmiMessageDmsUimChangePinInput.

 

value_info_pin_id

a QmiDmsUimPinId.

 

value_info_old_pin

a constant string.

 

value_info_new_pin

a constant string.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if value +was successfully set, FALSE otherwise.

+
+

Since: 1.0

+
+
+
+

qmi_message_dms_uim_change_pin_output_ref ()

+
QmiMessageDmsUimChangePinOutput *
+qmi_message_dms_uim_change_pin_output_ref
+                               (QmiMessageDmsUimChangePinOutput *self);
+

Atomically increments the reference count of self + by one.

+
+

Parameters

+
+++++ + + + + + +

self

a QmiMessageDmsUimChangePinOutput.

 
+
+
+

Returns

+

the new reference to self +.

+
+

Since: 1.0

+
+
+
+

qmi_message_dms_uim_change_pin_output_unref ()

+
void
+qmi_message_dms_uim_change_pin_output_unref
+                               (QmiMessageDmsUimChangePinOutput *self);
+

Atomically decrements the reference count of self + by one. +If the reference count drops to 0, self + is completely disposed.

+
+

Parameters

+
+++++ + + + + + +

self

a QmiMessageDmsUimChangePinOutput.

 
+
+

Since: 1.0

+
+
+
+

qmi_message_dms_uim_change_pin_output_get_result ()

+
gboolean
+qmi_message_dms_uim_change_pin_output_get_result
+                               (QmiMessageDmsUimChangePinOutput *self,
+                                GError **error);
+

Get the result of the QMI operation.

+
+

Parameters

+
+++++ + + + + + + + + + + + + +

self

a QmiMessageDmsUimChangePinOutput.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the QMI operation succeeded, FALSE if error +is set.

+
+

Since: 1.0

+
+
+
+

qmi_message_dms_uim_change_pin_output_get_pin_retries_status ()

+
gboolean
+qmi_message_dms_uim_change_pin_output_get_pin_retries_status
+                               (QmiMessageDmsUimChangePinOutput *self,
+                                guint8 *value_pin_retries_status_verify_retries_left,
+                                guint8 *value_pin_retries_status_unblock_retries_left,
+                                GError **error);
+

Get the 'Pin Retries Status' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + + + + + + +

self

a QmiMessageDmsUimChangePinOutput.

 

value_pin_retries_status_verify_retries_left

a placeholder for the output guint8, or NULL if not required.

 

value_pin_retries_status_unblock_retries_left

a placeholder for the output guint8, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.0

+
+
+
+

qmi_client_dms_uim_change_pin ()

+
void
+qmi_client_dms_uim_change_pin (QmiClientDms *self,
+                               QmiMessageDmsUimChangePinInput *input,
+                               guint timeout,
+                               GCancellable *cancellable,
+                               GAsyncReadyCallback callback,
+                               gpointer user_data);
+

Asynchronously sends a UIM Change PIN request to the device.

+

When the operation is finished, callback + will be invoked in the thread-default main loop of the thread you are calling this method from.

+

You can then call qmi_client_dms_uim_change_pin_finish() to get the result of the operation.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

self

a QmiClientDms.

 

input

a QmiMessageDmsUimChangePinInput.

 

timeout

maximum time to wait for the method to complete, in seconds.

 

cancellable

a GCancellable or NULL.

 

callback

a GAsyncReadyCallback to call when the request is satisfied.

 

user_data

user data to pass to callback +.

 
+
+

Since: 1.0

+
+
+
+

qmi_client_dms_uim_change_pin_finish ()

+
QmiMessageDmsUimChangePinOutput *
+qmi_client_dms_uim_change_pin_finish (QmiClientDms *self,
+                                      GAsyncResult *res,
+                                      GError **error);
+

Finishes an async operation started with qmi_client_dms_uim_change_pin().

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiClientDms.

 

res

the GAsyncResult obtained from the GAsyncReadyCallback passed to qmi_client_dms_uim_change_pin().

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

a QmiMessageDmsUimChangePinOutput, or NULL if error +is set. The returned value should be freed with qmi_message_dms_uim_change_pin_output_unref().

+
+

Since: 1.0

+
+
+
+

Types and Values

+
+

QmiMessageDmsUimChangePinInput

+
typedef struct _QmiMessageDmsUimChangePinInput QmiMessageDmsUimChangePinInput;
+

The QmiMessageDmsUimChangePinInput structure contains private data and should only be accessed +using the provided API.

+

Since: 1.0

+
+
+
+

QmiMessageDmsUimChangePinOutput

+
typedef struct _QmiMessageDmsUimChangePinOutput QmiMessageDmsUimChangePinOutput;
+

The QmiMessageDmsUimChangePinOutput structure contains private data and should only be accessed +using the provided API.

+

Since: 1.0

+
+
+
+ + + \ No newline at end of file diff -Nru libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-DMS-UIM-Get-CK-Status.html libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-DMS-UIM-Get-CK-Status.html --- libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-DMS-UIM-Get-CK-Status.html 2017-03-22 12:28:28.000000000 +0100 +++ libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-DMS-UIM-Get-CK-Status.html 1970-01-01 01:00:00.000000000 +0100 @@ -1,645 +0,0 @@ - - - - -DMS UIM Get CK Status: libqmi-glib Reference Manual - - - - - - - - - - - - - - - - -
-
-
- - -
-

DMS UIM Get CK Status

-

DMS UIM Get CK Status

-
- -
-

Types and Values

- -
-
-

Object Hierarchy

-
    GBoxed
-    ├── QmiMessageDmsUimGetCkStatusInput
-    ╰── QmiMessageDmsUimGetCkStatusOutput
-
-
-
-

Description

-
-
-

Functions

-
-

qmi_message_dms_uim_get_ck_status_input_new ()

-
QmiMessageDmsUimGetCkStatusInput *
-qmi_message_dms_uim_get_ck_status_input_new
-                               (void);
-

Allocates a new QmiMessageDmsUimGetCkStatusInput.

-
-

Returns

-

the newly created QmiMessageDmsUimGetCkStatusInput. The returned value should be freed with qmi_message_dms_uim_get_ck_status_input_unref().

-
-

Since: 1.0

-
-
-
-

qmi_message_dms_uim_get_ck_status_input_ref ()

-
QmiMessageDmsUimGetCkStatusInput *
-qmi_message_dms_uim_get_ck_status_input_ref
-                               (QmiMessageDmsUimGetCkStatusInput *self);
-

Atomically increments the reference count of self - by one.

-
-

Parameters

-
----- - - - - - -

self

a QmiMessageDmsUimGetCkStatusInput.

 
-
-
-

Returns

-

the new reference to self -.

-
-

Since: 1.0

-
-
-
-

qmi_message_dms_uim_get_ck_status_input_unref ()

-
void
-qmi_message_dms_uim_get_ck_status_input_unref
-                               (QmiMessageDmsUimGetCkStatusInput *self);
-

Atomically decrements the reference count of self - by one. -If the reference count drops to 0, self - is completely disposed.

-
-

Parameters

-
----- - - - - - -

self

a QmiMessageDmsUimGetCkStatusInput.

 
-
-

Since: 1.0

-
-
-
-

qmi_message_dms_uim_get_ck_status_input_get_facility ()

-
gboolean
-qmi_message_dms_uim_get_ck_status_input_get_facility
-                               (QmiMessageDmsUimGetCkStatusInput *self,
-                                QmiDmsUimFacility *value_facility,
-                                GError **error);
-

Get the 'Facility' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessageDmsUimGetCkStatusInput.

 

value_facility

a placeholder for the output QmiDmsUimFacility, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.0

-
-
-
-

qmi_message_dms_uim_get_ck_status_input_set_facility ()

-
gboolean
-qmi_message_dms_uim_get_ck_status_input_set_facility
-                               (QmiMessageDmsUimGetCkStatusInput *self,
-                                QmiDmsUimFacility value_facility,
-                                GError **error);
-

Set the 'Facility' field in the message.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessageDmsUimGetCkStatusInput.

 

value_facility

a QmiDmsUimFacility.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if value -was successfully set, FALSE otherwise.

-
-

Since: 1.0

-
-
-
-

qmi_message_dms_uim_get_ck_status_output_ref ()

-
QmiMessageDmsUimGetCkStatusOutput *
-qmi_message_dms_uim_get_ck_status_output_ref
-                               (QmiMessageDmsUimGetCkStatusOutput *self);
-

Atomically increments the reference count of self - by one.

-
-

Parameters

-
----- - - - - - -

self

a QmiMessageDmsUimGetCkStatusOutput.

 
-
-
-

Returns

-

the new reference to self -.

-
-

Since: 1.0

-
-
-
-

qmi_message_dms_uim_get_ck_status_output_unref ()

-
void
-qmi_message_dms_uim_get_ck_status_output_unref
-                               (QmiMessageDmsUimGetCkStatusOutput *self);
-

Atomically decrements the reference count of self - by one. -If the reference count drops to 0, self - is completely disposed.

-
-

Parameters

-
----- - - - - - -

self

a QmiMessageDmsUimGetCkStatusOutput.

 
-
-

Since: 1.0

-
-
-
-

qmi_message_dms_uim_get_ck_status_output_get_result ()

-
gboolean
-qmi_message_dms_uim_get_ck_status_output_get_result
-                               (QmiMessageDmsUimGetCkStatusOutput *self,
-                                GError **error);
-

Get the result of the QMI operation.

-
-

Parameters

-
----- - - - - - - - - - - - - -

self

a QmiMessageDmsUimGetCkStatusOutput.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the QMI operation succeeded, FALSE if error -is set.

-
-

Since: 1.0

-
-
-
-

qmi_message_dms_uim_get_ck_status_output_get_ck_status ()

-
gboolean
-qmi_message_dms_uim_get_ck_status_output_get_ck_status
-                               (QmiMessageDmsUimGetCkStatusOutput *self,
-                                QmiDmsUimFacilityState *value_ck_status_facility_state,
-                                guint8 *value_ck_status_verify_retries_left,
-                                guint8 *value_ck_status_unblock_retries_left,
-                                GError **error);
-

Get the 'CK Status' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - - - - - - - - - - - -

self

a QmiMessageDmsUimGetCkStatusOutput.

 

value_ck_status_facility_state

a placeholder for the output QmiDmsUimFacilityState, or NULL if not required.

 

value_ck_status_verify_retries_left

a placeholder for the output guint8, or NULL if not required.

 

value_ck_status_unblock_retries_left

a placeholder for the output guint8, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.0

-
-
-
-

qmi_message_dms_uim_get_ck_status_output_get_operation_blocking_facility ()

-
gboolean
-qmi_message_dms_uim_get_ck_status_output_get_operation_blocking_facility
-                               (QmiMessageDmsUimGetCkStatusOutput *self,
-                                gboolean *value_operation_blocking_facility,
-                                GError **error);
-

Get the 'Operation Blocking Facility' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessageDmsUimGetCkStatusOutput.

 

value_operation_blocking_facility

a placeholder for the output gboolean, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.0

-
-
-
-

qmi_client_dms_uim_get_ck_status ()

-
void
-qmi_client_dms_uim_get_ck_status (QmiClientDms *self,
-                                  QmiMessageDmsUimGetCkStatusInput *input,
-                                  guint timeout,
-                                  GCancellable *cancellable,
-                                  GAsyncReadyCallback callback,
-                                  gpointer user_data);
-

Asynchronously sends a UIM Get CK Status request to the device.

-

When the operation is finished, callback - will be invoked in the thread-default main loop of the thread you are calling this method from.

-

You can then call qmi_client_dms_uim_get_ck_status_finish() to get the result of the operation.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

self

a QmiClientDms.

 

input

a QmiMessageDmsUimGetCkStatusInput.

 

timeout

maximum time to wait for the method to complete, in seconds.

 

cancellable

a GCancellable or NULL.

 

callback

a GAsyncReadyCallback to call when the request is satisfied.

 

user_data

user data to pass to callback -.

 
-
-

Since: 1.0

-
-
-
-

qmi_client_dms_uim_get_ck_status_finish ()

-
QmiMessageDmsUimGetCkStatusOutput *
-qmi_client_dms_uim_get_ck_status_finish
-                               (QmiClientDms *self,
-                                GAsyncResult *res,
-                                GError **error);
-

Finishes an async operation started with qmi_client_dms_uim_get_ck_status().

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiClientDms.

 

res

the GAsyncResult obtained from the GAsyncReadyCallback passed to qmi_client_dms_uim_get_ck_status().

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

a QmiMessageDmsUimGetCkStatusOutput, or NULL if error -is set. The returned value should be freed with qmi_message_dms_uim_get_ck_status_output_unref().

-
-

Since: 1.0

-
-
-
-

Types and Values

-
-

QmiMessageDmsUimGetCkStatusInput

-
typedef struct _QmiMessageDmsUimGetCkStatusInput QmiMessageDmsUimGetCkStatusInput;
-

The QmiMessageDmsUimGetCkStatusInput structure contains private data and should only be accessed -using the provided API.

-

Since: 1.0

-
-
-
-

QmiMessageDmsUimGetCkStatusOutput

-
typedef struct _QmiMessageDmsUimGetCkStatusOutput QmiMessageDmsUimGetCkStatusOutput;
-

The QmiMessageDmsUimGetCkStatusOutput structure contains private data and should only be accessed -using the provided API.

-

Since: 1.0

-
-
-
- - - \ No newline at end of file diff -Nru libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-DMS-UIM-Get-CK-Status-request.html libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-DMS-UIM-Get-CK-Status-request.html --- libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-DMS-UIM-Get-CK-Status-request.html 1970-01-01 01:00:00.000000000 +0100 +++ libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-DMS-UIM-Get-CK-Status-request.html 2019-01-08 15:19:01.000000000 +0100 @@ -0,0 +1,645 @@ + + + + +DMS UIM Get CK Status request: libqmi-glib Reference Manual + + + + + + + + + + + + + + + + +
+
+
+ + +
+

DMS UIM Get CK Status request

+

DMS UIM Get CK Status request

+
+ +
+

Types and Values

+ +
+
+

Object Hierarchy

+
    GBoxed
+    ├── QmiMessageDmsUimGetCkStatusInput
+    ╰── QmiMessageDmsUimGetCkStatusOutput
+
+
+
+

Description

+
+
+

Functions

+
+

qmi_message_dms_uim_get_ck_status_input_new ()

+
QmiMessageDmsUimGetCkStatusInput *
+qmi_message_dms_uim_get_ck_status_input_new
+                               (void);
+

Allocates a new QmiMessageDmsUimGetCkStatusInput.

+
+

Returns

+

the newly created QmiMessageDmsUimGetCkStatusInput. The returned value should be freed with qmi_message_dms_uim_get_ck_status_input_unref().

+
+

Since: 1.0

+
+
+
+

qmi_message_dms_uim_get_ck_status_input_ref ()

+
QmiMessageDmsUimGetCkStatusInput *
+qmi_message_dms_uim_get_ck_status_input_ref
+                               (QmiMessageDmsUimGetCkStatusInput *self);
+

Atomically increments the reference count of self + by one.

+
+

Parameters

+
+++++ + + + + + +

self

a QmiMessageDmsUimGetCkStatusInput.

 
+
+
+

Returns

+

the new reference to self +.

+
+

Since: 1.0

+
+
+
+

qmi_message_dms_uim_get_ck_status_input_unref ()

+
void
+qmi_message_dms_uim_get_ck_status_input_unref
+                               (QmiMessageDmsUimGetCkStatusInput *self);
+

Atomically decrements the reference count of self + by one. +If the reference count drops to 0, self + is completely disposed.

+
+

Parameters

+
+++++ + + + + + +

self

a QmiMessageDmsUimGetCkStatusInput.

 
+
+

Since: 1.0

+
+
+
+

qmi_message_dms_uim_get_ck_status_input_get_facility ()

+
gboolean
+qmi_message_dms_uim_get_ck_status_input_get_facility
+                               (QmiMessageDmsUimGetCkStatusInput *self,
+                                QmiDmsUimFacility *value_facility,
+                                GError **error);
+

Get the 'Facility' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageDmsUimGetCkStatusInput.

 

value_facility

a placeholder for the output QmiDmsUimFacility, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.0

+
+
+
+

qmi_message_dms_uim_get_ck_status_input_set_facility ()

+
gboolean
+qmi_message_dms_uim_get_ck_status_input_set_facility
+                               (QmiMessageDmsUimGetCkStatusInput *self,
+                                QmiDmsUimFacility value_facility,
+                                GError **error);
+

Set the 'Facility' field in the message.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageDmsUimGetCkStatusInput.

 

value_facility

a QmiDmsUimFacility.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if value +was successfully set, FALSE otherwise.

+
+

Since: 1.0

+
+
+
+

qmi_message_dms_uim_get_ck_status_output_ref ()

+
QmiMessageDmsUimGetCkStatusOutput *
+qmi_message_dms_uim_get_ck_status_output_ref
+                               (QmiMessageDmsUimGetCkStatusOutput *self);
+

Atomically increments the reference count of self + by one.

+
+

Parameters

+
+++++ + + + + + +

self

a QmiMessageDmsUimGetCkStatusOutput.

 
+
+
+

Returns

+

the new reference to self +.

+
+

Since: 1.0

+
+
+
+

qmi_message_dms_uim_get_ck_status_output_unref ()

+
void
+qmi_message_dms_uim_get_ck_status_output_unref
+                               (QmiMessageDmsUimGetCkStatusOutput *self);
+

Atomically decrements the reference count of self + by one. +If the reference count drops to 0, self + is completely disposed.

+
+

Parameters

+
+++++ + + + + + +

self

a QmiMessageDmsUimGetCkStatusOutput.

 
+
+

Since: 1.0

+
+
+
+

qmi_message_dms_uim_get_ck_status_output_get_result ()

+
gboolean
+qmi_message_dms_uim_get_ck_status_output_get_result
+                               (QmiMessageDmsUimGetCkStatusOutput *self,
+                                GError **error);
+

Get the result of the QMI operation.

+
+

Parameters

+
+++++ + + + + + + + + + + + + +

self

a QmiMessageDmsUimGetCkStatusOutput.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the QMI operation succeeded, FALSE if error +is set.

+
+

Since: 1.0

+
+
+
+

qmi_message_dms_uim_get_ck_status_output_get_ck_status ()

+
gboolean
+qmi_message_dms_uim_get_ck_status_output_get_ck_status
+                               (QmiMessageDmsUimGetCkStatusOutput *self,
+                                QmiDmsUimFacilityState *value_ck_status_facility_state,
+                                guint8 *value_ck_status_verify_retries_left,
+                                guint8 *value_ck_status_unblock_retries_left,
+                                GError **error);
+

Get the 'CK Status' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + + + + + + + + + + + +

self

a QmiMessageDmsUimGetCkStatusOutput.

 

value_ck_status_facility_state

a placeholder for the output QmiDmsUimFacilityState, or NULL if not required.

 

value_ck_status_verify_retries_left

a placeholder for the output guint8, or NULL if not required.

 

value_ck_status_unblock_retries_left

a placeholder for the output guint8, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.0

+
+
+
+

qmi_message_dms_uim_get_ck_status_output_get_operation_blocking_facility ()

+
gboolean
+qmi_message_dms_uim_get_ck_status_output_get_operation_blocking_facility
+                               (QmiMessageDmsUimGetCkStatusOutput *self,
+                                gboolean *value_operation_blocking_facility,
+                                GError **error);
+

Get the 'Operation Blocking Facility' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageDmsUimGetCkStatusOutput.

 

value_operation_blocking_facility

a placeholder for the output gboolean, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.0

+
+
+
+

qmi_client_dms_uim_get_ck_status ()

+
void
+qmi_client_dms_uim_get_ck_status (QmiClientDms *self,
+                                  QmiMessageDmsUimGetCkStatusInput *input,
+                                  guint timeout,
+                                  GCancellable *cancellable,
+                                  GAsyncReadyCallback callback,
+                                  gpointer user_data);
+

Asynchronously sends a UIM Get CK Status request to the device.

+

When the operation is finished, callback + will be invoked in the thread-default main loop of the thread you are calling this method from.

+

You can then call qmi_client_dms_uim_get_ck_status_finish() to get the result of the operation.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

self

a QmiClientDms.

 

input

a QmiMessageDmsUimGetCkStatusInput.

 

timeout

maximum time to wait for the method to complete, in seconds.

 

cancellable

a GCancellable or NULL.

 

callback

a GAsyncReadyCallback to call when the request is satisfied.

 

user_data

user data to pass to callback +.

 
+
+

Since: 1.0

+
+
+
+

qmi_client_dms_uim_get_ck_status_finish ()

+
QmiMessageDmsUimGetCkStatusOutput *
+qmi_client_dms_uim_get_ck_status_finish
+                               (QmiClientDms *self,
+                                GAsyncResult *res,
+                                GError **error);
+

Finishes an async operation started with qmi_client_dms_uim_get_ck_status().

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiClientDms.

 

res

the GAsyncResult obtained from the GAsyncReadyCallback passed to qmi_client_dms_uim_get_ck_status().

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

a QmiMessageDmsUimGetCkStatusOutput, or NULL if error +is set. The returned value should be freed with qmi_message_dms_uim_get_ck_status_output_unref().

+
+

Since: 1.0

+
+
+
+

Types and Values

+
+

QmiMessageDmsUimGetCkStatusInput

+
typedef struct _QmiMessageDmsUimGetCkStatusInput QmiMessageDmsUimGetCkStatusInput;
+

The QmiMessageDmsUimGetCkStatusInput structure contains private data and should only be accessed +using the provided API.

+

Since: 1.0

+
+
+
+

QmiMessageDmsUimGetCkStatusOutput

+
typedef struct _QmiMessageDmsUimGetCkStatusOutput QmiMessageDmsUimGetCkStatusOutput;
+

The QmiMessageDmsUimGetCkStatusOutput structure contains private data and should only be accessed +using the provided API.

+

Since: 1.0

+
+
+
+ + + \ No newline at end of file diff -Nru libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-DMS-UIM-Get-ICCID.html libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-DMS-UIM-Get-ICCID.html --- libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-DMS-UIM-Get-ICCID.html 2017-03-22 12:28:29.000000000 +0100 +++ libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-DMS-UIM-Get-ICCID.html 1970-01-01 01:00:00.000000000 +0100 @@ -1,370 +0,0 @@ - - - - -DMS UIM Get ICCID: libqmi-glib Reference Manual - - - - - - - - - - - - - - - - -
-
-
- - -
-

DMS UIM Get ICCID

-

DMS UIM Get ICCID

-
- -
-

Types and Values

- -
-
-

Object Hierarchy

-
    GBoxed
-    ╰── QmiMessageDmsUimGetIccidOutput
-
-
-
-

Description

-
-
-

Functions

-
-

qmi_message_dms_uim_get_iccid_output_ref ()

-
QmiMessageDmsUimGetIccidOutput *
-qmi_message_dms_uim_get_iccid_output_ref
-                               (QmiMessageDmsUimGetIccidOutput *self);
-

Atomically increments the reference count of self - by one.

-
-

Parameters

-
----- - - - - - -

self

a QmiMessageDmsUimGetIccidOutput.

 
-
-
-

Returns

-

the new reference to self -.

-
-

Since: 1.0

-
-
-
-

qmi_message_dms_uim_get_iccid_output_unref ()

-
void
-qmi_message_dms_uim_get_iccid_output_unref
-                               (QmiMessageDmsUimGetIccidOutput *self);
-

Atomically decrements the reference count of self - by one. -If the reference count drops to 0, self - is completely disposed.

-
-

Parameters

-
----- - - - - - -

self

a QmiMessageDmsUimGetIccidOutput.

 
-
-

Since: 1.0

-
-
-
-

qmi_message_dms_uim_get_iccid_output_get_result ()

-
gboolean
-qmi_message_dms_uim_get_iccid_output_get_result
-                               (QmiMessageDmsUimGetIccidOutput *self,
-                                GError **error);
-

Get the result of the QMI operation.

-
-

Parameters

-
----- - - - - - - - - - - - - -

self

a QmiMessageDmsUimGetIccidOutput.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the QMI operation succeeded, FALSE if error -is set.

-
-

Since: 1.0

-
-
-
-

qmi_message_dms_uim_get_iccid_output_get_iccid ()

-
gboolean
-qmi_message_dms_uim_get_iccid_output_get_iccid
-                               (QmiMessageDmsUimGetIccidOutput *self,
-                                const gchar **value_iccid,
-                                GError **error);
-

Get the 'ICCID' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessageDmsUimGetIccidOutput.

 

value_iccid

a placeholder for the output constant string, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.0

-
-
-
-

qmi_client_dms_uim_get_iccid ()

-
void
-qmi_client_dms_uim_get_iccid (QmiClientDms *self,
-                              gpointer unused,
-                              guint timeout,
-                              GCancellable *cancellable,
-                              GAsyncReadyCallback callback,
-                              gpointer user_data);
-

Asynchronously sends a UIM Get ICCID request to the device.

-

When the operation is finished, callback - will be invoked in the thread-default main loop of the thread you are calling this method from.

-

You can then call qmi_client_dms_uim_get_iccid_finish() to get the result of the operation.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

self

a QmiClientDms.

 

unused

NULL. This message doesn't have any input bundle.

 

timeout

maximum time to wait for the method to complete, in seconds.

 

cancellable

a GCancellable or NULL.

 

callback

a GAsyncReadyCallback to call when the request is satisfied.

 

user_data

user data to pass to callback -.

 
-
-

Since: 1.0

-
-
-
-

qmi_client_dms_uim_get_iccid_finish ()

-
QmiMessageDmsUimGetIccidOutput *
-qmi_client_dms_uim_get_iccid_finish (QmiClientDms *self,
-                                     GAsyncResult *res,
-                                     GError **error);
-

Finishes an async operation started with qmi_client_dms_uim_get_iccid().

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiClientDms.

 

res

the GAsyncResult obtained from the GAsyncReadyCallback passed to qmi_client_dms_uim_get_iccid().

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

a QmiMessageDmsUimGetIccidOutput, or NULL if error -is set. The returned value should be freed with qmi_message_dms_uim_get_iccid_output_unref().

-
-

Since: 1.0

-
-
-
-

Types and Values

-
-

QmiMessageDmsUimGetIccidOutput

-
typedef struct _QmiMessageDmsUimGetIccidOutput QmiMessageDmsUimGetIccidOutput;
-

The QmiMessageDmsUimGetIccidOutput structure contains private data and should only be accessed -using the provided API.

-

Since: 1.0

-
-
-
- - - \ No newline at end of file diff -Nru libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-DMS-UIM-Get-ICCID-request.html libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-DMS-UIM-Get-ICCID-request.html --- libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-DMS-UIM-Get-ICCID-request.html 1970-01-01 01:00:00.000000000 +0100 +++ libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-DMS-UIM-Get-ICCID-request.html 2019-01-08 15:19:01.000000000 +0100 @@ -0,0 +1,370 @@ + + + + +DMS UIM Get ICCID request: libqmi-glib Reference Manual + + + + + + + + + + + + + + + + +
+
+
+ + +
+

DMS UIM Get ICCID request

+

DMS UIM Get ICCID request

+
+ +
+

Types and Values

+ +
+
+

Object Hierarchy

+
    GBoxed
+    ╰── QmiMessageDmsUimGetIccidOutput
+
+
+
+

Description

+
+
+

Functions

+
+

qmi_message_dms_uim_get_iccid_output_ref ()

+
QmiMessageDmsUimGetIccidOutput *
+qmi_message_dms_uim_get_iccid_output_ref
+                               (QmiMessageDmsUimGetIccidOutput *self);
+

Atomically increments the reference count of self + by one.

+
+

Parameters

+
+++++ + + + + + +

self

a QmiMessageDmsUimGetIccidOutput.

 
+
+
+

Returns

+

the new reference to self +.

+
+

Since: 1.0

+
+
+
+

qmi_message_dms_uim_get_iccid_output_unref ()

+
void
+qmi_message_dms_uim_get_iccid_output_unref
+                               (QmiMessageDmsUimGetIccidOutput *self);
+

Atomically decrements the reference count of self + by one. +If the reference count drops to 0, self + is completely disposed.

+
+

Parameters

+
+++++ + + + + + +

self

a QmiMessageDmsUimGetIccidOutput.

 
+
+

Since: 1.0

+
+
+
+

qmi_message_dms_uim_get_iccid_output_get_result ()

+
gboolean
+qmi_message_dms_uim_get_iccid_output_get_result
+                               (QmiMessageDmsUimGetIccidOutput *self,
+                                GError **error);
+

Get the result of the QMI operation.

+
+

Parameters

+
+++++ + + + + + + + + + + + + +

self

a QmiMessageDmsUimGetIccidOutput.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the QMI operation succeeded, FALSE if error +is set.

+
+

Since: 1.0

+
+
+
+

qmi_message_dms_uim_get_iccid_output_get_iccid ()

+
gboolean
+qmi_message_dms_uim_get_iccid_output_get_iccid
+                               (QmiMessageDmsUimGetIccidOutput *self,
+                                const gchar **value_iccid,
+                                GError **error);
+

Get the 'ICCID' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageDmsUimGetIccidOutput.

 

value_iccid

a placeholder for the output constant string, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.0

+
+
+
+

qmi_client_dms_uim_get_iccid ()

+
void
+qmi_client_dms_uim_get_iccid (QmiClientDms *self,
+                              gpointer unused,
+                              guint timeout,
+                              GCancellable *cancellable,
+                              GAsyncReadyCallback callback,
+                              gpointer user_data);
+

Asynchronously sends a UIM Get ICCID request to the device.

+

When the operation is finished, callback + will be invoked in the thread-default main loop of the thread you are calling this method from.

+

You can then call qmi_client_dms_uim_get_iccid_finish() to get the result of the operation.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

self

a QmiClientDms.

 

unused

NULL. This message doesn't have any input bundle.

 

timeout

maximum time to wait for the method to complete, in seconds.

 

cancellable

a GCancellable or NULL.

 

callback

a GAsyncReadyCallback to call when the request is satisfied.

 

user_data

user data to pass to callback +.

 
+
+

Since: 1.0

+
+
+
+

qmi_client_dms_uim_get_iccid_finish ()

+
QmiMessageDmsUimGetIccidOutput *
+qmi_client_dms_uim_get_iccid_finish (QmiClientDms *self,
+                                     GAsyncResult *res,
+                                     GError **error);
+

Finishes an async operation started with qmi_client_dms_uim_get_iccid().

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiClientDms.

 

res

the GAsyncResult obtained from the GAsyncReadyCallback passed to qmi_client_dms_uim_get_iccid().

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

a QmiMessageDmsUimGetIccidOutput, or NULL if error +is set. The returned value should be freed with qmi_message_dms_uim_get_iccid_output_unref().

+
+

Since: 1.0

+
+
+
+

Types and Values

+
+

QmiMessageDmsUimGetIccidOutput

+
typedef struct _QmiMessageDmsUimGetIccidOutput QmiMessageDmsUimGetIccidOutput;
+

The QmiMessageDmsUimGetIccidOutput structure contains private data and should only be accessed +using the provided API.

+

Since: 1.0

+
+
+
+ + + \ No newline at end of file diff -Nru libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-DMS-UIM-Get-IMSI.html libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-DMS-UIM-Get-IMSI.html --- libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-DMS-UIM-Get-IMSI.html 2017-03-22 12:28:29.000000000 +0100 +++ libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-DMS-UIM-Get-IMSI.html 1970-01-01 01:00:00.000000000 +0100 @@ -1,370 +0,0 @@ - - - - -DMS UIM Get IMSI: libqmi-glib Reference Manual - - - - - - - - - - - - - - - - -
-
-
- - -
-

DMS UIM Get IMSI

-

DMS UIM Get IMSI

-
- -
-

Types and Values

- -
-
-

Object Hierarchy

-
    GBoxed
-    ╰── QmiMessageDmsUimGetImsiOutput
-
-
-
-

Description

-
-
-

Functions

-
-

qmi_message_dms_uim_get_imsi_output_ref ()

-
QmiMessageDmsUimGetImsiOutput *
-qmi_message_dms_uim_get_imsi_output_ref
-                               (QmiMessageDmsUimGetImsiOutput *self);
-

Atomically increments the reference count of self - by one.

-
-

Parameters

-
----- - - - - - -

self

a QmiMessageDmsUimGetImsiOutput.

 
-
-
-

Returns

-

the new reference to self -.

-
-

Since: 1.0

-
-
-
-

qmi_message_dms_uim_get_imsi_output_unref ()

-
void
-qmi_message_dms_uim_get_imsi_output_unref
-                               (QmiMessageDmsUimGetImsiOutput *self);
-

Atomically decrements the reference count of self - by one. -If the reference count drops to 0, self - is completely disposed.

-
-

Parameters

-
----- - - - - - -

self

a QmiMessageDmsUimGetImsiOutput.

 
-
-

Since: 1.0

-
-
-
-

qmi_message_dms_uim_get_imsi_output_get_result ()

-
gboolean
-qmi_message_dms_uim_get_imsi_output_get_result
-                               (QmiMessageDmsUimGetImsiOutput *self,
-                                GError **error);
-

Get the result of the QMI operation.

-
-

Parameters

-
----- - - - - - - - - - - - - -

self

a QmiMessageDmsUimGetImsiOutput.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the QMI operation succeeded, FALSE if error -is set.

-
-

Since: 1.0

-
-
-
-

qmi_message_dms_uim_get_imsi_output_get_imsi ()

-
gboolean
-qmi_message_dms_uim_get_imsi_output_get_imsi
-                               (QmiMessageDmsUimGetImsiOutput *self,
-                                const gchar **value_imsi,
-                                GError **error);
-

Get the 'IMSI' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessageDmsUimGetImsiOutput.

 

value_imsi

a placeholder for the output constant string, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.0

-
-
-
-

qmi_client_dms_uim_get_imsi ()

-
void
-qmi_client_dms_uim_get_imsi (QmiClientDms *self,
-                             gpointer unused,
-                             guint timeout,
-                             GCancellable *cancellable,
-                             GAsyncReadyCallback callback,
-                             gpointer user_data);
-

Asynchronously sends a UIM Get IMSI request to the device.

-

When the operation is finished, callback - will be invoked in the thread-default main loop of the thread you are calling this method from.

-

You can then call qmi_client_dms_uim_get_imsi_finish() to get the result of the operation.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

self

a QmiClientDms.

 

unused

NULL. This message doesn't have any input bundle.

 

timeout

maximum time to wait for the method to complete, in seconds.

 

cancellable

a GCancellable or NULL.

 

callback

a GAsyncReadyCallback to call when the request is satisfied.

 

user_data

user data to pass to callback -.

 
-
-

Since: 1.0

-
-
-
-

qmi_client_dms_uim_get_imsi_finish ()

-
QmiMessageDmsUimGetImsiOutput *
-qmi_client_dms_uim_get_imsi_finish (QmiClientDms *self,
-                                    GAsyncResult *res,
-                                    GError **error);
-

Finishes an async operation started with qmi_client_dms_uim_get_imsi().

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiClientDms.

 

res

the GAsyncResult obtained from the GAsyncReadyCallback passed to qmi_client_dms_uim_get_imsi().

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

a QmiMessageDmsUimGetImsiOutput, or NULL if error -is set. The returned value should be freed with qmi_message_dms_uim_get_imsi_output_unref().

-
-

Since: 1.0

-
-
-
-

Types and Values

-
-

QmiMessageDmsUimGetImsiOutput

-
typedef struct _QmiMessageDmsUimGetImsiOutput QmiMessageDmsUimGetImsiOutput;
-

The QmiMessageDmsUimGetImsiOutput structure contains private data and should only be accessed -using the provided API.

-

Since: 1.0

-
-
-
- - - \ No newline at end of file diff -Nru libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-DMS-UIM-Get-IMSI-request.html libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-DMS-UIM-Get-IMSI-request.html --- libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-DMS-UIM-Get-IMSI-request.html 1970-01-01 01:00:00.000000000 +0100 +++ libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-DMS-UIM-Get-IMSI-request.html 2019-01-08 15:19:01.000000000 +0100 @@ -0,0 +1,370 @@ + + + + +DMS UIM Get IMSI request: libqmi-glib Reference Manual + + + + + + + + + + + + + + + + +
+
+
+ + +
+

DMS UIM Get IMSI request

+

DMS UIM Get IMSI request

+
+ +
+

Types and Values

+ +
+
+

Object Hierarchy

+
    GBoxed
+    ╰── QmiMessageDmsUimGetImsiOutput
+
+
+
+

Description

+
+
+

Functions

+
+

qmi_message_dms_uim_get_imsi_output_ref ()

+
QmiMessageDmsUimGetImsiOutput *
+qmi_message_dms_uim_get_imsi_output_ref
+                               (QmiMessageDmsUimGetImsiOutput *self);
+

Atomically increments the reference count of self + by one.

+
+

Parameters

+
+++++ + + + + + +

self

a QmiMessageDmsUimGetImsiOutput.

 
+
+
+

Returns

+

the new reference to self +.

+
+

Since: 1.0

+
+
+
+

qmi_message_dms_uim_get_imsi_output_unref ()

+
void
+qmi_message_dms_uim_get_imsi_output_unref
+                               (QmiMessageDmsUimGetImsiOutput *self);
+

Atomically decrements the reference count of self + by one. +If the reference count drops to 0, self + is completely disposed.

+
+

Parameters

+
+++++ + + + + + +

self

a QmiMessageDmsUimGetImsiOutput.

 
+
+

Since: 1.0

+
+
+
+

qmi_message_dms_uim_get_imsi_output_get_result ()

+
gboolean
+qmi_message_dms_uim_get_imsi_output_get_result
+                               (QmiMessageDmsUimGetImsiOutput *self,
+                                GError **error);
+

Get the result of the QMI operation.

+
+

Parameters

+
+++++ + + + + + + + + + + + + +

self

a QmiMessageDmsUimGetImsiOutput.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the QMI operation succeeded, FALSE if error +is set.

+
+

Since: 1.0

+
+
+
+

qmi_message_dms_uim_get_imsi_output_get_imsi ()

+
gboolean
+qmi_message_dms_uim_get_imsi_output_get_imsi
+                               (QmiMessageDmsUimGetImsiOutput *self,
+                                const gchar **value_imsi,
+                                GError **error);
+

Get the 'IMSI' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageDmsUimGetImsiOutput.

 

value_imsi

a placeholder for the output constant string, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.0

+
+
+
+

qmi_client_dms_uim_get_imsi ()

+
void
+qmi_client_dms_uim_get_imsi (QmiClientDms *self,
+                             gpointer unused,
+                             guint timeout,
+                             GCancellable *cancellable,
+                             GAsyncReadyCallback callback,
+                             gpointer user_data);
+

Asynchronously sends a UIM Get IMSI request to the device.

+

When the operation is finished, callback + will be invoked in the thread-default main loop of the thread you are calling this method from.

+

You can then call qmi_client_dms_uim_get_imsi_finish() to get the result of the operation.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

self

a QmiClientDms.

 

unused

NULL. This message doesn't have any input bundle.

 

timeout

maximum time to wait for the method to complete, in seconds.

 

cancellable

a GCancellable or NULL.

 

callback

a GAsyncReadyCallback to call when the request is satisfied.

 

user_data

user data to pass to callback +.

 
+
+

Since: 1.0

+
+
+
+

qmi_client_dms_uim_get_imsi_finish ()

+
QmiMessageDmsUimGetImsiOutput *
+qmi_client_dms_uim_get_imsi_finish (QmiClientDms *self,
+                                    GAsyncResult *res,
+                                    GError **error);
+

Finishes an async operation started with qmi_client_dms_uim_get_imsi().

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiClientDms.

 

res

the GAsyncResult obtained from the GAsyncReadyCallback passed to qmi_client_dms_uim_get_imsi().

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

a QmiMessageDmsUimGetImsiOutput, or NULL if error +is set. The returned value should be freed with qmi_message_dms_uim_get_imsi_output_unref().

+
+

Since: 1.0

+
+
+
+

Types and Values

+
+

QmiMessageDmsUimGetImsiOutput

+
typedef struct _QmiMessageDmsUimGetImsiOutput QmiMessageDmsUimGetImsiOutput;
+

The QmiMessageDmsUimGetImsiOutput structure contains private data and should only be accessed +using the provided API.

+

Since: 1.0

+
+
+
+ + + \ No newline at end of file diff -Nru libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-DMS-UIM-Get-PIN-Status.html libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-DMS-UIM-Get-PIN-Status.html --- libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-DMS-UIM-Get-PIN-Status.html 2017-03-22 12:28:28.000000000 +0100 +++ libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-DMS-UIM-Get-PIN-Status.html 1970-01-01 01:00:00.000000000 +0100 @@ -1,446 +0,0 @@ - - - - -DMS UIM Get PIN Status: libqmi-glib Reference Manual - - - - - - - - - - - - - - - - -
-
-
- - -
-

DMS UIM Get PIN Status

-

DMS UIM Get PIN Status

-
- -
-

Types and Values

- -
-
-

Object Hierarchy

-
    GBoxed
-    ╰── QmiMessageDmsUimGetPinStatusOutput
-
-
-
-

Description

-
-
-

Functions

-
-

qmi_message_dms_uim_get_pin_status_output_ref ()

-
QmiMessageDmsUimGetPinStatusOutput *
-qmi_message_dms_uim_get_pin_status_output_ref
-                               (QmiMessageDmsUimGetPinStatusOutput *self);
-

Atomically increments the reference count of self - by one.

-
-

Parameters

-
----- - - - - - -

self

a QmiMessageDmsUimGetPinStatusOutput.

 
-
-
-

Returns

-

the new reference to self -.

-
-

Since: 1.0

-
-
-
-

qmi_message_dms_uim_get_pin_status_output_unref ()

-
void
-qmi_message_dms_uim_get_pin_status_output_unref
-                               (QmiMessageDmsUimGetPinStatusOutput *self);
-

Atomically decrements the reference count of self - by one. -If the reference count drops to 0, self - is completely disposed.

-
-

Parameters

-
----- - - - - - -

self

a QmiMessageDmsUimGetPinStatusOutput.

 
-
-

Since: 1.0

-
-
-
-

qmi_message_dms_uim_get_pin_status_output_get_pin2_status ()

-
gboolean
-qmi_message_dms_uim_get_pin_status_output_get_pin2_status
-                               (QmiMessageDmsUimGetPinStatusOutput *self,
-                                QmiDmsUimPinStatus *value_pin2_status_current_status,
-                                guint8 *value_pin2_status_verify_retries_left,
-                                guint8 *value_pin2_status_unblock_retries_left,
-                                GError **error);
-

Get the 'PIN2 Status' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - - - - - - - - - - - -

self

a QmiMessageDmsUimGetPinStatusOutput.

 

value_pin2_status_current_status

a placeholder for the output QmiDmsUimPinStatus, or NULL if not required.

 

value_pin2_status_verify_retries_left

a placeholder for the output guint8, or NULL if not required.

 

value_pin2_status_unblock_retries_left

a placeholder for the output guint8, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.0

-
-
-
-

qmi_message_dms_uim_get_pin_status_output_get_pin1_status ()

-
gboolean
-qmi_message_dms_uim_get_pin_status_output_get_pin1_status
-                               (QmiMessageDmsUimGetPinStatusOutput *self,
-                                QmiDmsUimPinStatus *value_pin1_status_current_status,
-                                guint8 *value_pin1_status_verify_retries_left,
-                                guint8 *value_pin1_status_unblock_retries_left,
-                                GError **error);
-

Get the 'PIN1 Status' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - - - - - - - - - - - -

self

a QmiMessageDmsUimGetPinStatusOutput.

 

value_pin1_status_current_status

a placeholder for the output QmiDmsUimPinStatus, or NULL if not required.

 

value_pin1_status_verify_retries_left

a placeholder for the output guint8, or NULL if not required.

 

value_pin1_status_unblock_retries_left

a placeholder for the output guint8, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.0

-
-
-
-

qmi_message_dms_uim_get_pin_status_output_get_result ()

-
gboolean
-qmi_message_dms_uim_get_pin_status_output_get_result
-                               (QmiMessageDmsUimGetPinStatusOutput *self,
-                                GError **error);
-

Get the result of the QMI operation.

-
-

Parameters

-
----- - - - - - - - - - - - - -

self

a QmiMessageDmsUimGetPinStatusOutput.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the QMI operation succeeded, FALSE if error -is set.

-
-

Since: 1.0

-
-
-
-

qmi_client_dms_uim_get_pin_status ()

-
void
-qmi_client_dms_uim_get_pin_status (QmiClientDms *self,
-                                   gpointer unused,
-                                   guint timeout,
-                                   GCancellable *cancellable,
-                                   GAsyncReadyCallback callback,
-                                   gpointer user_data);
-

Asynchronously sends a UIM Get PIN Status request to the device.

-

When the operation is finished, callback - will be invoked in the thread-default main loop of the thread you are calling this method from.

-

You can then call qmi_client_dms_uim_get_pin_status_finish() to get the result of the operation.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

self

a QmiClientDms.

 

unused

NULL. This message doesn't have any input bundle.

 

timeout

maximum time to wait for the method to complete, in seconds.

 

cancellable

a GCancellable or NULL.

 

callback

a GAsyncReadyCallback to call when the request is satisfied.

 

user_data

user data to pass to callback -.

 
-
-

Since: 1.0

-
-
-
-

qmi_client_dms_uim_get_pin_status_finish ()

-
QmiMessageDmsUimGetPinStatusOutput *
-qmi_client_dms_uim_get_pin_status_finish
-                               (QmiClientDms *self,
-                                GAsyncResult *res,
-                                GError **error);
-

Finishes an async operation started with qmi_client_dms_uim_get_pin_status().

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiClientDms.

 

res

the GAsyncResult obtained from the GAsyncReadyCallback passed to qmi_client_dms_uim_get_pin_status().

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

a QmiMessageDmsUimGetPinStatusOutput, or NULL if error -is set. The returned value should be freed with qmi_message_dms_uim_get_pin_status_output_unref().

-
-

Since: 1.0

-
-
-
-

Types and Values

-
-

QmiMessageDmsUimGetPinStatusOutput

-
typedef struct _QmiMessageDmsUimGetPinStatusOutput QmiMessageDmsUimGetPinStatusOutput;
-

The QmiMessageDmsUimGetPinStatusOutput structure contains private data and should only be accessed -using the provided API.

-

Since: 1.0

-
-
-
- - - \ No newline at end of file diff -Nru libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-DMS-UIM-Get-PIN-Status-request.html libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-DMS-UIM-Get-PIN-Status-request.html --- libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-DMS-UIM-Get-PIN-Status-request.html 1970-01-01 01:00:00.000000000 +0100 +++ libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-DMS-UIM-Get-PIN-Status-request.html 2019-01-08 15:19:01.000000000 +0100 @@ -0,0 +1,446 @@ + + + + +DMS UIM Get PIN Status request: libqmi-glib Reference Manual + + + + + + + + + + + + + + + + +
+
+
+ + +
+

DMS UIM Get PIN Status request

+

DMS UIM Get PIN Status request

+
+ +
+

Types and Values

+ +
+
+

Object Hierarchy

+
    GBoxed
+    ╰── QmiMessageDmsUimGetPinStatusOutput
+
+
+
+

Description

+
+
+

Functions

+
+

qmi_message_dms_uim_get_pin_status_output_ref ()

+
QmiMessageDmsUimGetPinStatusOutput *
+qmi_message_dms_uim_get_pin_status_output_ref
+                               (QmiMessageDmsUimGetPinStatusOutput *self);
+

Atomically increments the reference count of self + by one.

+
+

Parameters

+
+++++ + + + + + +

self

a QmiMessageDmsUimGetPinStatusOutput.

 
+
+
+

Returns

+

the new reference to self +.

+
+

Since: 1.0

+
+
+
+

qmi_message_dms_uim_get_pin_status_output_unref ()

+
void
+qmi_message_dms_uim_get_pin_status_output_unref
+                               (QmiMessageDmsUimGetPinStatusOutput *self);
+

Atomically decrements the reference count of self + by one. +If the reference count drops to 0, self + is completely disposed.

+
+

Parameters

+
+++++ + + + + + +

self

a QmiMessageDmsUimGetPinStatusOutput.

 
+
+

Since: 1.0

+
+
+
+

qmi_message_dms_uim_get_pin_status_output_get_pin2_status ()

+
gboolean
+qmi_message_dms_uim_get_pin_status_output_get_pin2_status
+                               (QmiMessageDmsUimGetPinStatusOutput *self,
+                                QmiDmsUimPinStatus *value_pin2_status_current_status,
+                                guint8 *value_pin2_status_verify_retries_left,
+                                guint8 *value_pin2_status_unblock_retries_left,
+                                GError **error);
+

Get the 'PIN2 Status' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + + + + + + + + + + + +

self

a QmiMessageDmsUimGetPinStatusOutput.

 

value_pin2_status_current_status

a placeholder for the output QmiDmsUimPinStatus, or NULL if not required.

 

value_pin2_status_verify_retries_left

a placeholder for the output guint8, or NULL if not required.

 

value_pin2_status_unblock_retries_left

a placeholder for the output guint8, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.0

+
+
+
+

qmi_message_dms_uim_get_pin_status_output_get_pin1_status ()

+
gboolean
+qmi_message_dms_uim_get_pin_status_output_get_pin1_status
+                               (QmiMessageDmsUimGetPinStatusOutput *self,
+                                QmiDmsUimPinStatus *value_pin1_status_current_status,
+                                guint8 *value_pin1_status_verify_retries_left,
+                                guint8 *value_pin1_status_unblock_retries_left,
+                                GError **error);
+

Get the 'PIN1 Status' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + + + + + + + + + + + +

self

a QmiMessageDmsUimGetPinStatusOutput.

 

value_pin1_status_current_status

a placeholder for the output QmiDmsUimPinStatus, or NULL if not required.

 

value_pin1_status_verify_retries_left

a placeholder for the output guint8, or NULL if not required.

 

value_pin1_status_unblock_retries_left

a placeholder for the output guint8, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.0

+
+
+
+

qmi_message_dms_uim_get_pin_status_output_get_result ()

+
gboolean
+qmi_message_dms_uim_get_pin_status_output_get_result
+                               (QmiMessageDmsUimGetPinStatusOutput *self,
+                                GError **error);
+

Get the result of the QMI operation.

+
+

Parameters

+
+++++ + + + + + + + + + + + + +

self

a QmiMessageDmsUimGetPinStatusOutput.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the QMI operation succeeded, FALSE if error +is set.

+
+

Since: 1.0

+
+
+
+

qmi_client_dms_uim_get_pin_status ()

+
void
+qmi_client_dms_uim_get_pin_status (QmiClientDms *self,
+                                   gpointer unused,
+                                   guint timeout,
+                                   GCancellable *cancellable,
+                                   GAsyncReadyCallback callback,
+                                   gpointer user_data);
+

Asynchronously sends a UIM Get PIN Status request to the device.

+

When the operation is finished, callback + will be invoked in the thread-default main loop of the thread you are calling this method from.

+

You can then call qmi_client_dms_uim_get_pin_status_finish() to get the result of the operation.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

self

a QmiClientDms.

 

unused

NULL. This message doesn't have any input bundle.

 

timeout

maximum time to wait for the method to complete, in seconds.

 

cancellable

a GCancellable or NULL.

 

callback

a GAsyncReadyCallback to call when the request is satisfied.

 

user_data

user data to pass to callback +.

 
+
+

Since: 1.0

+
+
+
+

qmi_client_dms_uim_get_pin_status_finish ()

+
QmiMessageDmsUimGetPinStatusOutput *
+qmi_client_dms_uim_get_pin_status_finish
+                               (QmiClientDms *self,
+                                GAsyncResult *res,
+                                GError **error);
+

Finishes an async operation started with qmi_client_dms_uim_get_pin_status().

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiClientDms.

 

res

the GAsyncResult obtained from the GAsyncReadyCallback passed to qmi_client_dms_uim_get_pin_status().

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

a QmiMessageDmsUimGetPinStatusOutput, or NULL if error +is set. The returned value should be freed with qmi_message_dms_uim_get_pin_status_output_unref().

+
+

Since: 1.0

+
+
+
+

Types and Values

+
+

QmiMessageDmsUimGetPinStatusOutput

+
typedef struct _QmiMessageDmsUimGetPinStatusOutput QmiMessageDmsUimGetPinStatusOutput;
+

The QmiMessageDmsUimGetPinStatusOutput structure contains private data and should only be accessed +using the provided API.

+

Since: 1.0

+
+
+
+ + + \ No newline at end of file diff -Nru libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-DMS-UIM-Get-State.html libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-DMS-UIM-Get-State.html --- libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-DMS-UIM-Get-State.html 2017-03-22 12:28:29.000000000 +0100 +++ libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-DMS-UIM-Get-State.html 1970-01-01 01:00:00.000000000 +0100 @@ -1,370 +0,0 @@ - - - - -DMS UIM Get State: libqmi-glib Reference Manual - - - - - - - - - - - - - - - - -
-
-
- - -
-

DMS UIM Get State

-

DMS UIM Get State

-
- -
-

Types and Values

- -
-
-

Object Hierarchy

-
    GBoxed
-    ╰── QmiMessageDmsUimGetStateOutput
-
-
-
-

Description

-
-
-

Functions

-
-

qmi_message_dms_uim_get_state_output_ref ()

-
QmiMessageDmsUimGetStateOutput *
-qmi_message_dms_uim_get_state_output_ref
-                               (QmiMessageDmsUimGetStateOutput *self);
-

Atomically increments the reference count of self - by one.

-
-

Parameters

-
----- - - - - - -

self

a QmiMessageDmsUimGetStateOutput.

 
-
-
-

Returns

-

the new reference to self -.

-
-

Since: 1.0

-
-
-
-

qmi_message_dms_uim_get_state_output_unref ()

-
void
-qmi_message_dms_uim_get_state_output_unref
-                               (QmiMessageDmsUimGetStateOutput *self);
-

Atomically decrements the reference count of self - by one. -If the reference count drops to 0, self - is completely disposed.

-
-

Parameters

-
----- - - - - - -

self

a QmiMessageDmsUimGetStateOutput.

 
-
-

Since: 1.0

-
-
-
-

qmi_message_dms_uim_get_state_output_get_result ()

-
gboolean
-qmi_message_dms_uim_get_state_output_get_result
-                               (QmiMessageDmsUimGetStateOutput *self,
-                                GError **error);
-

Get the result of the QMI operation.

-
-

Parameters

-
----- - - - - - - - - - - - - -

self

a QmiMessageDmsUimGetStateOutput.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the QMI operation succeeded, FALSE if error -is set.

-
-

Since: 1.0

-
-
-
-

qmi_message_dms_uim_get_state_output_get_state ()

-
gboolean
-qmi_message_dms_uim_get_state_output_get_state
-                               (QmiMessageDmsUimGetStateOutput *self,
-                                QmiDmsUimState *value_state,
-                                GError **error);
-

Get the 'State' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessageDmsUimGetStateOutput.

 

value_state

a placeholder for the output QmiDmsUimState, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.0

-
-
-
-

qmi_client_dms_uim_get_state ()

-
void
-qmi_client_dms_uim_get_state (QmiClientDms *self,
-                              gpointer unused,
-                              guint timeout,
-                              GCancellable *cancellable,
-                              GAsyncReadyCallback callback,
-                              gpointer user_data);
-

Asynchronously sends a UIM Get State request to the device.

-

When the operation is finished, callback - will be invoked in the thread-default main loop of the thread you are calling this method from.

-

You can then call qmi_client_dms_uim_get_state_finish() to get the result of the operation.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

self

a QmiClientDms.

 

unused

NULL. This message doesn't have any input bundle.

 

timeout

maximum time to wait for the method to complete, in seconds.

 

cancellable

a GCancellable or NULL.

 

callback

a GAsyncReadyCallback to call when the request is satisfied.

 

user_data

user data to pass to callback -.

 
-
-

Since: 1.0

-
-
-
-

qmi_client_dms_uim_get_state_finish ()

-
QmiMessageDmsUimGetStateOutput *
-qmi_client_dms_uim_get_state_finish (QmiClientDms *self,
-                                     GAsyncResult *res,
-                                     GError **error);
-

Finishes an async operation started with qmi_client_dms_uim_get_state().

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiClientDms.

 

res

the GAsyncResult obtained from the GAsyncReadyCallback passed to qmi_client_dms_uim_get_state().

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

a QmiMessageDmsUimGetStateOutput, or NULL if error -is set. The returned value should be freed with qmi_message_dms_uim_get_state_output_unref().

-
-

Since: 1.0

-
-
-
-

Types and Values

-
-

QmiMessageDmsUimGetStateOutput

-
typedef struct _QmiMessageDmsUimGetStateOutput QmiMessageDmsUimGetStateOutput;
-

The QmiMessageDmsUimGetStateOutput structure contains private data and should only be accessed -using the provided API.

-

Since: 1.0

-
-
-
- - - \ No newline at end of file diff -Nru libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-DMS-UIM-Get-State-request.html libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-DMS-UIM-Get-State-request.html --- libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-DMS-UIM-Get-State-request.html 1970-01-01 01:00:00.000000000 +0100 +++ libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-DMS-UIM-Get-State-request.html 2019-01-08 15:19:01.000000000 +0100 @@ -0,0 +1,370 @@ + + + + +DMS UIM Get State request: libqmi-glib Reference Manual + + + + + + + + + + + + + + + + +
+
+
+ + +
+

DMS UIM Get State request

+

DMS UIM Get State request

+
+ +
+

Types and Values

+ +
+
+

Object Hierarchy

+
    GBoxed
+    ╰── QmiMessageDmsUimGetStateOutput
+
+
+
+

Description

+
+
+

Functions

+
+

qmi_message_dms_uim_get_state_output_ref ()

+
QmiMessageDmsUimGetStateOutput *
+qmi_message_dms_uim_get_state_output_ref
+                               (QmiMessageDmsUimGetStateOutput *self);
+

Atomically increments the reference count of self + by one.

+
+

Parameters

+
+++++ + + + + + +

self

a QmiMessageDmsUimGetStateOutput.

 
+
+
+

Returns

+

the new reference to self +.

+
+

Since: 1.0

+
+
+
+

qmi_message_dms_uim_get_state_output_unref ()

+
void
+qmi_message_dms_uim_get_state_output_unref
+                               (QmiMessageDmsUimGetStateOutput *self);
+

Atomically decrements the reference count of self + by one. +If the reference count drops to 0, self + is completely disposed.

+
+

Parameters

+
+++++ + + + + + +

self

a QmiMessageDmsUimGetStateOutput.

 
+
+

Since: 1.0

+
+
+
+

qmi_message_dms_uim_get_state_output_get_result ()

+
gboolean
+qmi_message_dms_uim_get_state_output_get_result
+                               (QmiMessageDmsUimGetStateOutput *self,
+                                GError **error);
+

Get the result of the QMI operation.

+
+

Parameters

+
+++++ + + + + + + + + + + + + +

self

a QmiMessageDmsUimGetStateOutput.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the QMI operation succeeded, FALSE if error +is set.

+
+

Since: 1.0

+
+
+
+

qmi_message_dms_uim_get_state_output_get_state ()

+
gboolean
+qmi_message_dms_uim_get_state_output_get_state
+                               (QmiMessageDmsUimGetStateOutput *self,
+                                QmiDmsUimState *value_state,
+                                GError **error);
+

Get the 'State' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageDmsUimGetStateOutput.

 

value_state

a placeholder for the output QmiDmsUimState, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.0

+
+
+
+

qmi_client_dms_uim_get_state ()

+
void
+qmi_client_dms_uim_get_state (QmiClientDms *self,
+                              gpointer unused,
+                              guint timeout,
+                              GCancellable *cancellable,
+                              GAsyncReadyCallback callback,
+                              gpointer user_data);
+

Asynchronously sends a UIM Get State request to the device.

+

When the operation is finished, callback + will be invoked in the thread-default main loop of the thread you are calling this method from.

+

You can then call qmi_client_dms_uim_get_state_finish() to get the result of the operation.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

self

a QmiClientDms.

 

unused

NULL. This message doesn't have any input bundle.

 

timeout

maximum time to wait for the method to complete, in seconds.

 

cancellable

a GCancellable or NULL.

 

callback

a GAsyncReadyCallback to call when the request is satisfied.

 

user_data

user data to pass to callback +.

 
+
+

Since: 1.0

+
+
+
+

qmi_client_dms_uim_get_state_finish ()

+
QmiMessageDmsUimGetStateOutput *
+qmi_client_dms_uim_get_state_finish (QmiClientDms *self,
+                                     GAsyncResult *res,
+                                     GError **error);
+

Finishes an async operation started with qmi_client_dms_uim_get_state().

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiClientDms.

 

res

the GAsyncResult obtained from the GAsyncReadyCallback passed to qmi_client_dms_uim_get_state().

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

a QmiMessageDmsUimGetStateOutput, or NULL if error +is set. The returned value should be freed with qmi_message_dms_uim_get_state_output_unref().

+
+

Since: 1.0

+
+
+
+

Types and Values

+
+

QmiMessageDmsUimGetStateOutput

+
typedef struct _QmiMessageDmsUimGetStateOutput QmiMessageDmsUimGetStateOutput;
+

The QmiMessageDmsUimGetStateOutput structure contains private data and should only be accessed +using the provided API.

+

Since: 1.0

+
+
+
+ + + \ No newline at end of file diff -Nru libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-DMS-UIM-Set-CK-Protection.html libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-DMS-UIM-Set-CK-Protection.html --- libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-DMS-UIM-Set-CK-Protection.html 2017-03-22 12:28:29.000000000 +0100 +++ libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-DMS-UIM-Set-CK-Protection.html 1970-01-01 01:00:00.000000000 +0100 @@ -1,606 +0,0 @@ - - - - -DMS UIM Set CK Protection: libqmi-glib Reference Manual - - - - - - - - - - - - - - - - -
-
-
- - -
-

DMS UIM Set CK Protection

-

DMS UIM Set CK Protection

-
- -
-

Types and Values

- -
-
-

Object Hierarchy

-
    GBoxed
-    ├── QmiMessageDmsUimSetCkProtectionInput
-    ╰── QmiMessageDmsUimSetCkProtectionOutput
-
-
-
-

Description

-
-
-

Functions

-
-

qmi_message_dms_uim_set_ck_protection_input_new ()

-
QmiMessageDmsUimSetCkProtectionInput *
-qmi_message_dms_uim_set_ck_protection_input_new
-                               (void);
-

Allocates a new QmiMessageDmsUimSetCkProtectionInput.

-
-

Returns

-

the newly created QmiMessageDmsUimSetCkProtectionInput. The returned value should be freed with qmi_message_dms_uim_set_ck_protection_input_unref().

-
-

Since: 1.0

-
-
-
-

qmi_message_dms_uim_set_ck_protection_input_ref ()

-
QmiMessageDmsUimSetCkProtectionInput *
-qmi_message_dms_uim_set_ck_protection_input_ref
-                               (QmiMessageDmsUimSetCkProtectionInput *self);
-

Atomically increments the reference count of self - by one.

-
-

Parameters

-
----- - - - - - -

self

a QmiMessageDmsUimSetCkProtectionInput.

 
-
-
-

Returns

-

the new reference to self -.

-
-

Since: 1.0

-
-
-
-

qmi_message_dms_uim_set_ck_protection_input_unref ()

-
void
-qmi_message_dms_uim_set_ck_protection_input_unref
-                               (QmiMessageDmsUimSetCkProtectionInput *self);
-

Atomically decrements the reference count of self - by one. -If the reference count drops to 0, self - is completely disposed.

-
-

Parameters

-
----- - - - - - -

self

a QmiMessageDmsUimSetCkProtectionInput.

 
-
-

Since: 1.0

-
-
-
-

qmi_message_dms_uim_set_ck_protection_input_get_facility ()

-
gboolean
-qmi_message_dms_uim_set_ck_protection_input_get_facility
-                               (QmiMessageDmsUimSetCkProtectionInput *self,
-                                QmiDmsUimFacility *value_facility_facility,
-                                QmiDmsUimFacilityState *value_facility_facility_state,
-                                const gchar **value_facility_facility_depersonalization_control_key,
-                                GError **error);
-

Get the 'Facility' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - - - - - - - - - - - -

self

a QmiMessageDmsUimSetCkProtectionInput.

 

value_facility_facility

a placeholder for the output QmiDmsUimFacility, or NULL if not required.

 

value_facility_facility_state

a placeholder for the output QmiDmsUimFacilityState, or NULL if not required.

 

value_facility_facility_depersonalization_control_key

a placeholder for the output constant string, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.0

-
-
-
-

qmi_message_dms_uim_set_ck_protection_input_set_facility ()

-
gboolean
-qmi_message_dms_uim_set_ck_protection_input_set_facility
-                               (QmiMessageDmsUimSetCkProtectionInput *self,
-                                QmiDmsUimFacility value_facility_facility,
-                                QmiDmsUimFacilityState value_facility_facility_state,
-                                const gchar *value_facility_facility_depersonalization_control_key,
-                                GError **error);
-

Set the 'Facility' field in the message.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - - - - - - - - - - - -

self

a QmiMessageDmsUimSetCkProtectionInput.

 

value_facility_facility

a QmiDmsUimFacility.

 

value_facility_facility_state

a QmiDmsUimFacilityState.

 

value_facility_facility_depersonalization_control_key

a constant string.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if value -was successfully set, FALSE otherwise.

-
-

Since: 1.0

-
-
-
-

qmi_message_dms_uim_set_ck_protection_output_ref ()

-
QmiMessageDmsUimSetCkProtectionOutput *
-qmi_message_dms_uim_set_ck_protection_output_ref
-                               (QmiMessageDmsUimSetCkProtectionOutput *self);
-

Atomically increments the reference count of self - by one.

-
-

Parameters

-
----- - - - - - -

self

a QmiMessageDmsUimSetCkProtectionOutput.

 
-
-
-

Returns

-

the new reference to self -.

-
-

Since: 1.0

-
-
-
-

qmi_message_dms_uim_set_ck_protection_output_unref ()

-
void
-qmi_message_dms_uim_set_ck_protection_output_unref
-                               (QmiMessageDmsUimSetCkProtectionOutput *self);
-

Atomically decrements the reference count of self - by one. -If the reference count drops to 0, self - is completely disposed.

-
-

Parameters

-
----- - - - - - -

self

a QmiMessageDmsUimSetCkProtectionOutput.

 
-
-

Since: 1.0

-
-
-
-

qmi_message_dms_uim_set_ck_protection_output_get_verify_retries_left ()

-
gboolean
-qmi_message_dms_uim_set_ck_protection_output_get_verify_retries_left
-                               (QmiMessageDmsUimSetCkProtectionOutput *self,
-                                guint8 *value_verify_retries_left,
-                                GError **error);
-

Get the 'Verify Retries Left' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessageDmsUimSetCkProtectionOutput.

 

value_verify_retries_left

a placeholder for the output guint8, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.0

-
-
-
-

qmi_message_dms_uim_set_ck_protection_output_get_result ()

-
gboolean
-qmi_message_dms_uim_set_ck_protection_output_get_result
-                               (QmiMessageDmsUimSetCkProtectionOutput *self,
-                                GError **error);
-

Get the result of the QMI operation.

-
-

Parameters

-
----- - - - - - - - - - - - - -

self

a QmiMessageDmsUimSetCkProtectionOutput.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the QMI operation succeeded, FALSE if error -is set.

-
-

Since: 1.0

-
-
-
-

qmi_client_dms_uim_set_ck_protection ()

-
void
-qmi_client_dms_uim_set_ck_protection (QmiClientDms *self,
-                                      QmiMessageDmsUimSetCkProtectionInput *input,
-                                      guint timeout,
-                                      GCancellable *cancellable,
-                                      GAsyncReadyCallback callback,
-                                      gpointer user_data);
-

Asynchronously sends a UIM Set CK Protection request to the device.

-

When the operation is finished, callback - will be invoked in the thread-default main loop of the thread you are calling this method from.

-

You can then call qmi_client_dms_uim_set_ck_protection_finish() to get the result of the operation.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

self

a QmiClientDms.

 

input

a QmiMessageDmsUimSetCkProtectionInput.

 

timeout

maximum time to wait for the method to complete, in seconds.

 

cancellable

a GCancellable or NULL.

 

callback

a GAsyncReadyCallback to call when the request is satisfied.

 

user_data

user data to pass to callback -.

 
-
-

Since: 1.0

-
-
-
-

qmi_client_dms_uim_set_ck_protection_finish ()

-
QmiMessageDmsUimSetCkProtectionOutput *
-qmi_client_dms_uim_set_ck_protection_finish
-                               (QmiClientDms *self,
-                                GAsyncResult *res,
-                                GError **error);
-

Finishes an async operation started with qmi_client_dms_uim_set_ck_protection().

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiClientDms.

 

res

the GAsyncResult obtained from the GAsyncReadyCallback passed to qmi_client_dms_uim_set_ck_protection().

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

a QmiMessageDmsUimSetCkProtectionOutput, or NULL if error -is set. The returned value should be freed with qmi_message_dms_uim_set_ck_protection_output_unref().

-
-

Since: 1.0

-
-
-
-

Types and Values

-
-

QmiMessageDmsUimSetCkProtectionInput

-
typedef struct _QmiMessageDmsUimSetCkProtectionInput QmiMessageDmsUimSetCkProtectionInput;
-

The QmiMessageDmsUimSetCkProtectionInput structure contains private data and should only be accessed -using the provided API.

-

Since: 1.0

-
-
-
-

QmiMessageDmsUimSetCkProtectionOutput

-
typedef struct _QmiMessageDmsUimSetCkProtectionOutput QmiMessageDmsUimSetCkProtectionOutput;
-

The QmiMessageDmsUimSetCkProtectionOutput structure contains private data and should only be accessed -using the provided API.

-

Since: 1.0

-
-
-
- - - \ No newline at end of file diff -Nru libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-DMS-UIM-Set-CK-Protection-request.html libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-DMS-UIM-Set-CK-Protection-request.html --- libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-DMS-UIM-Set-CK-Protection-request.html 1970-01-01 01:00:00.000000000 +0100 +++ libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-DMS-UIM-Set-CK-Protection-request.html 2019-01-08 15:19:01.000000000 +0100 @@ -0,0 +1,606 @@ + + + + +DMS UIM Set CK Protection request: libqmi-glib Reference Manual + + + + + + + + + + + + + + + + +
+
+
+ + +
+

DMS UIM Set CK Protection request

+

DMS UIM Set CK Protection request

+
+ +
+

Types and Values

+ +
+
+

Object Hierarchy

+
    GBoxed
+    ├── QmiMessageDmsUimSetCkProtectionInput
+    ╰── QmiMessageDmsUimSetCkProtectionOutput
+
+
+
+

Description

+
+
+

Functions

+
+

qmi_message_dms_uim_set_ck_protection_input_new ()

+
QmiMessageDmsUimSetCkProtectionInput *
+qmi_message_dms_uim_set_ck_protection_input_new
+                               (void);
+

Allocates a new QmiMessageDmsUimSetCkProtectionInput.

+
+

Returns

+

the newly created QmiMessageDmsUimSetCkProtectionInput. The returned value should be freed with qmi_message_dms_uim_set_ck_protection_input_unref().

+
+

Since: 1.0

+
+
+
+

qmi_message_dms_uim_set_ck_protection_input_ref ()

+
QmiMessageDmsUimSetCkProtectionInput *
+qmi_message_dms_uim_set_ck_protection_input_ref
+                               (QmiMessageDmsUimSetCkProtectionInput *self);
+

Atomically increments the reference count of self + by one.

+
+

Parameters

+
+++++ + + + + + +

self

a QmiMessageDmsUimSetCkProtectionInput.

 
+
+
+

Returns

+

the new reference to self +.

+
+

Since: 1.0

+
+
+
+

qmi_message_dms_uim_set_ck_protection_input_unref ()

+
void
+qmi_message_dms_uim_set_ck_protection_input_unref
+                               (QmiMessageDmsUimSetCkProtectionInput *self);
+

Atomically decrements the reference count of self + by one. +If the reference count drops to 0, self + is completely disposed.

+
+

Parameters

+
+++++ + + + + + +

self

a QmiMessageDmsUimSetCkProtectionInput.

 
+
+

Since: 1.0

+
+
+
+

qmi_message_dms_uim_set_ck_protection_input_get_facility ()

+
gboolean
+qmi_message_dms_uim_set_ck_protection_input_get_facility
+                               (QmiMessageDmsUimSetCkProtectionInput *self,
+                                QmiDmsUimFacility *value_facility_facility,
+                                QmiDmsUimFacilityState *value_facility_facility_state,
+                                const gchar **value_facility_facility_depersonalization_control_key,
+                                GError **error);
+

Get the 'Facility' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + + + + + + + + + + + +

self

a QmiMessageDmsUimSetCkProtectionInput.

 

value_facility_facility

a placeholder for the output QmiDmsUimFacility, or NULL if not required.

 

value_facility_facility_state

a placeholder for the output QmiDmsUimFacilityState, or NULL if not required.

 

value_facility_facility_depersonalization_control_key

a placeholder for the output constant string, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.0

+
+
+
+

qmi_message_dms_uim_set_ck_protection_input_set_facility ()

+
gboolean
+qmi_message_dms_uim_set_ck_protection_input_set_facility
+                               (QmiMessageDmsUimSetCkProtectionInput *self,
+                                QmiDmsUimFacility value_facility_facility,
+                                QmiDmsUimFacilityState value_facility_facility_state,
+                                const gchar *value_facility_facility_depersonalization_control_key,
+                                GError **error);
+

Set the 'Facility' field in the message.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + + + + + + + + + + + +

self

a QmiMessageDmsUimSetCkProtectionInput.

 

value_facility_facility

a QmiDmsUimFacility.

 

value_facility_facility_state

a QmiDmsUimFacilityState.

 

value_facility_facility_depersonalization_control_key

a constant string.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if value +was successfully set, FALSE otherwise.

+
+

Since: 1.0

+
+
+
+

qmi_message_dms_uim_set_ck_protection_output_ref ()

+
QmiMessageDmsUimSetCkProtectionOutput *
+qmi_message_dms_uim_set_ck_protection_output_ref
+                               (QmiMessageDmsUimSetCkProtectionOutput *self);
+

Atomically increments the reference count of self + by one.

+
+

Parameters

+
+++++ + + + + + +

self

a QmiMessageDmsUimSetCkProtectionOutput.

 
+
+
+

Returns

+

the new reference to self +.

+
+

Since: 1.0

+
+
+
+

qmi_message_dms_uim_set_ck_protection_output_unref ()

+
void
+qmi_message_dms_uim_set_ck_protection_output_unref
+                               (QmiMessageDmsUimSetCkProtectionOutput *self);
+

Atomically decrements the reference count of self + by one. +If the reference count drops to 0, self + is completely disposed.

+
+

Parameters

+
+++++ + + + + + +

self

a QmiMessageDmsUimSetCkProtectionOutput.

 
+
+

Since: 1.0

+
+
+
+

qmi_message_dms_uim_set_ck_protection_output_get_verify_retries_left ()

+
gboolean
+qmi_message_dms_uim_set_ck_protection_output_get_verify_retries_left
+                               (QmiMessageDmsUimSetCkProtectionOutput *self,
+                                guint8 *value_verify_retries_left,
+                                GError **error);
+

Get the 'Verify Retries Left' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageDmsUimSetCkProtectionOutput.

 

value_verify_retries_left

a placeholder for the output guint8, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.0

+
+
+
+

qmi_message_dms_uim_set_ck_protection_output_get_result ()

+
gboolean
+qmi_message_dms_uim_set_ck_protection_output_get_result
+                               (QmiMessageDmsUimSetCkProtectionOutput *self,
+                                GError **error);
+

Get the result of the QMI operation.

+
+

Parameters

+
+++++ + + + + + + + + + + + + +

self

a QmiMessageDmsUimSetCkProtectionOutput.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the QMI operation succeeded, FALSE if error +is set.

+
+

Since: 1.0

+
+
+
+

qmi_client_dms_uim_set_ck_protection ()

+
void
+qmi_client_dms_uim_set_ck_protection (QmiClientDms *self,
+                                      QmiMessageDmsUimSetCkProtectionInput *input,
+                                      guint timeout,
+                                      GCancellable *cancellable,
+                                      GAsyncReadyCallback callback,
+                                      gpointer user_data);
+

Asynchronously sends a UIM Set CK Protection request to the device.

+

When the operation is finished, callback + will be invoked in the thread-default main loop of the thread you are calling this method from.

+

You can then call qmi_client_dms_uim_set_ck_protection_finish() to get the result of the operation.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

self

a QmiClientDms.

 

input

a QmiMessageDmsUimSetCkProtectionInput.

 

timeout

maximum time to wait for the method to complete, in seconds.

 

cancellable

a GCancellable or NULL.

 

callback

a GAsyncReadyCallback to call when the request is satisfied.

 

user_data

user data to pass to callback +.

 
+
+

Since: 1.0

+
+
+
+

qmi_client_dms_uim_set_ck_protection_finish ()

+
QmiMessageDmsUimSetCkProtectionOutput *
+qmi_client_dms_uim_set_ck_protection_finish
+                               (QmiClientDms *self,
+                                GAsyncResult *res,
+                                GError **error);
+

Finishes an async operation started with qmi_client_dms_uim_set_ck_protection().

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiClientDms.

 

res

the GAsyncResult obtained from the GAsyncReadyCallback passed to qmi_client_dms_uim_set_ck_protection().

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

a QmiMessageDmsUimSetCkProtectionOutput, or NULL if error +is set. The returned value should be freed with qmi_message_dms_uim_set_ck_protection_output_unref().

+
+

Since: 1.0

+
+
+
+

Types and Values

+
+

QmiMessageDmsUimSetCkProtectionInput

+
typedef struct _QmiMessageDmsUimSetCkProtectionInput QmiMessageDmsUimSetCkProtectionInput;
+

The QmiMessageDmsUimSetCkProtectionInput structure contains private data and should only be accessed +using the provided API.

+

Since: 1.0

+
+
+
+

QmiMessageDmsUimSetCkProtectionOutput

+
typedef struct _QmiMessageDmsUimSetCkProtectionOutput QmiMessageDmsUimSetCkProtectionOutput;
+

The QmiMessageDmsUimSetCkProtectionOutput structure contains private data and should only be accessed +using the provided API.

+

Since: 1.0

+
+
+
+ + + \ No newline at end of file diff -Nru libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-DMS-UIM-Set-PIN-Protection.html libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-DMS-UIM-Set-PIN-Protection.html --- libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-DMS-UIM-Set-PIN-Protection.html 2017-03-22 12:28:29.000000000 +0100 +++ libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-DMS-UIM-Set-PIN-Protection.html 1970-01-01 01:00:00.000000000 +0100 @@ -1,612 +0,0 @@ - - - - -DMS UIM Set PIN Protection: libqmi-glib Reference Manual - - - - - - - - - - - - - - - - -
-
-
- - -
-

DMS UIM Set PIN Protection

-

DMS UIM Set PIN Protection

-
- -
-

Types and Values

- -
-
-

Object Hierarchy

-
    GBoxed
-    ├── QmiMessageDmsUimSetPinProtectionInput
-    ╰── QmiMessageDmsUimSetPinProtectionOutput
-
-
-
-

Description

-
-
-

Functions

-
-

qmi_message_dms_uim_set_pin_protection_input_new ()

-
QmiMessageDmsUimSetPinProtectionInput *
-qmi_message_dms_uim_set_pin_protection_input_new
-                               (void);
-

Allocates a new QmiMessageDmsUimSetPinProtectionInput.

-
-

Returns

-

the newly created QmiMessageDmsUimSetPinProtectionInput. The returned value should be freed with qmi_message_dms_uim_set_pin_protection_input_unref().

-
-

Since: 1.0

-
-
-
-

qmi_message_dms_uim_set_pin_protection_input_ref ()

-
QmiMessageDmsUimSetPinProtectionInput *
-qmi_message_dms_uim_set_pin_protection_input_ref
-                               (QmiMessageDmsUimSetPinProtectionInput *self);
-

Atomically increments the reference count of self - by one.

-
-

Parameters

-
----- - - - - - -

self

a QmiMessageDmsUimSetPinProtectionInput.

 
-
-
-

Returns

-

the new reference to self -.

-
-

Since: 1.0

-
-
-
-

qmi_message_dms_uim_set_pin_protection_input_unref ()

-
void
-qmi_message_dms_uim_set_pin_protection_input_unref
-                               (QmiMessageDmsUimSetPinProtectionInput *self);
-

Atomically decrements the reference count of self - by one. -If the reference count drops to 0, self - is completely disposed.

-
-

Parameters

-
----- - - - - - -

self

a QmiMessageDmsUimSetPinProtectionInput.

 
-
-

Since: 1.0

-
-
-
-

qmi_message_dms_uim_set_pin_protection_input_get_info ()

-
gboolean
-qmi_message_dms_uim_set_pin_protection_input_get_info
-                               (QmiMessageDmsUimSetPinProtectionInput *self,
-                                QmiDmsUimPinId *value_info_pin_id,
-                                gboolean *value_info_protection_enabled,
-                                const gchar **value_info_pin,
-                                GError **error);
-

Get the 'Info' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - - - - - - - - - - - -

self

a QmiMessageDmsUimSetPinProtectionInput.

 

value_info_pin_id

a placeholder for the output QmiDmsUimPinId, or NULL if not required.

 

value_info_protection_enabled

a placeholder for the output gboolean, or NULL if not required.

 

value_info_pin

a placeholder for the output constant string, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.0

-
-
-
-

qmi_message_dms_uim_set_pin_protection_input_set_info ()

-
gboolean
-qmi_message_dms_uim_set_pin_protection_input_set_info
-                               (QmiMessageDmsUimSetPinProtectionInput *self,
-                                QmiDmsUimPinId value_info_pin_id,
-                                gboolean value_info_protection_enabled,
-                                const gchar *value_info_pin,
-                                GError **error);
-

Set the 'Info' field in the message.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - - - - - - - - - - - -

self

a QmiMessageDmsUimSetPinProtectionInput.

 

value_info_pin_id

a QmiDmsUimPinId.

 

value_info_protection_enabled

a gboolean.

 

value_info_pin

a constant string.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if value -was successfully set, FALSE otherwise.

-
-

Since: 1.0

-
-
-
-

qmi_message_dms_uim_set_pin_protection_output_ref ()

-
QmiMessageDmsUimSetPinProtectionOutput *
-qmi_message_dms_uim_set_pin_protection_output_ref
-                               (QmiMessageDmsUimSetPinProtectionOutput *self);
-

Atomically increments the reference count of self - by one.

-
-

Parameters

-
----- - - - - - -

self

a QmiMessageDmsUimSetPinProtectionOutput.

 
-
-
-

Returns

-

the new reference to self -.

-
-

Since: 1.0

-
-
-
-

qmi_message_dms_uim_set_pin_protection_output_unref ()

-
void
-qmi_message_dms_uim_set_pin_protection_output_unref
-                               (QmiMessageDmsUimSetPinProtectionOutput *self);
-

Atomically decrements the reference count of self - by one. -If the reference count drops to 0, self - is completely disposed.

-
-

Parameters

-
----- - - - - - -

self

a QmiMessageDmsUimSetPinProtectionOutput.

 
-
-

Since: 1.0

-
-
-
-

qmi_message_dms_uim_set_pin_protection_output_get_result ()

-
gboolean
-qmi_message_dms_uim_set_pin_protection_output_get_result
-                               (QmiMessageDmsUimSetPinProtectionOutput *self,
-                                GError **error);
-

Get the result of the QMI operation.

-
-

Parameters

-
----- - - - - - - - - - - - - -

self

a QmiMessageDmsUimSetPinProtectionOutput.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the QMI operation succeeded, FALSE if error -is set.

-
-

Since: 1.0

-
-
-
-

qmi_message_dms_uim_set_pin_protection_output_get_pin_retries_status ()

-
gboolean
-qmi_message_dms_uim_set_pin_protection_output_get_pin_retries_status
-                               (QmiMessageDmsUimSetPinProtectionOutput *self,
-                                guint8 *value_pin_retries_status_verify_retries_left,
-                                guint8 *value_pin_retries_status_unblock_retries_left,
-                                GError **error);
-

Get the 'Pin Retries Status' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - - - - - - -

self

a QmiMessageDmsUimSetPinProtectionOutput.

 

value_pin_retries_status_verify_retries_left

a placeholder for the output guint8, or NULL if not required.

 

value_pin_retries_status_unblock_retries_left

a placeholder for the output guint8, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.0

-
-
-
-

qmi_client_dms_uim_set_pin_protection ()

-
void
-qmi_client_dms_uim_set_pin_protection (QmiClientDms *self,
-                                       QmiMessageDmsUimSetPinProtectionInput *input,
-                                       guint timeout,
-                                       GCancellable *cancellable,
-                                       GAsyncReadyCallback callback,
-                                       gpointer user_data);
-

Asynchronously sends a UIM Set PIN Protection request to the device.

-

When the operation is finished, callback - will be invoked in the thread-default main loop of the thread you are calling this method from.

-

You can then call qmi_client_dms_uim_set_pin_protection_finish() to get the result of the operation.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

self

a QmiClientDms.

 

input

a QmiMessageDmsUimSetPinProtectionInput.

 

timeout

maximum time to wait for the method to complete, in seconds.

 

cancellable

a GCancellable or NULL.

 

callback

a GAsyncReadyCallback to call when the request is satisfied.

 

user_data

user data to pass to callback -.

 
-
-

Since: 1.0

-
-
-
-

qmi_client_dms_uim_set_pin_protection_finish ()

-
QmiMessageDmsUimSetPinProtectionOutput *
-qmi_client_dms_uim_set_pin_protection_finish
-                               (QmiClientDms *self,
-                                GAsyncResult *res,
-                                GError **error);
-

Finishes an async operation started with qmi_client_dms_uim_set_pin_protection().

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiClientDms.

 

res

the GAsyncResult obtained from the GAsyncReadyCallback passed to qmi_client_dms_uim_set_pin_protection().

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

a QmiMessageDmsUimSetPinProtectionOutput, or NULL if error -is set. The returned value should be freed with qmi_message_dms_uim_set_pin_protection_output_unref().

-
-

Since: 1.0

-
-
-
-

Types and Values

-
-

QmiMessageDmsUimSetPinProtectionInput

-
typedef struct _QmiMessageDmsUimSetPinProtectionInput QmiMessageDmsUimSetPinProtectionInput;
-

The QmiMessageDmsUimSetPinProtectionInput structure contains private data and should only be accessed -using the provided API.

-

Since: 1.0

-
-
-
-

QmiMessageDmsUimSetPinProtectionOutput

-
typedef struct _QmiMessageDmsUimSetPinProtectionOutput QmiMessageDmsUimSetPinProtectionOutput;
-

The QmiMessageDmsUimSetPinProtectionOutput structure contains private data and should only be accessed -using the provided API.

-

Since: 1.0

-
-
-
- - - \ No newline at end of file diff -Nru libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-DMS-UIM-Set-PIN-Protection-request.html libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-DMS-UIM-Set-PIN-Protection-request.html --- libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-DMS-UIM-Set-PIN-Protection-request.html 1970-01-01 01:00:00.000000000 +0100 +++ libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-DMS-UIM-Set-PIN-Protection-request.html 2019-01-08 15:19:01.000000000 +0100 @@ -0,0 +1,612 @@ + + + + +DMS UIM Set PIN Protection request: libqmi-glib Reference Manual + + + + + + + + + + + + + + + + +
+
+
+ + +
+

DMS UIM Set PIN Protection request

+

DMS UIM Set PIN Protection request

+
+ +
+

Types and Values

+ +
+
+

Object Hierarchy

+
    GBoxed
+    ├── QmiMessageDmsUimSetPinProtectionInput
+    ╰── QmiMessageDmsUimSetPinProtectionOutput
+
+
+
+

Description

+
+
+

Functions

+
+

qmi_message_dms_uim_set_pin_protection_input_new ()

+
QmiMessageDmsUimSetPinProtectionInput *
+qmi_message_dms_uim_set_pin_protection_input_new
+                               (void);
+

Allocates a new QmiMessageDmsUimSetPinProtectionInput.

+
+

Returns

+

the newly created QmiMessageDmsUimSetPinProtectionInput. The returned value should be freed with qmi_message_dms_uim_set_pin_protection_input_unref().

+
+

Since: 1.0

+
+
+
+

qmi_message_dms_uim_set_pin_protection_input_ref ()

+
QmiMessageDmsUimSetPinProtectionInput *
+qmi_message_dms_uim_set_pin_protection_input_ref
+                               (QmiMessageDmsUimSetPinProtectionInput *self);
+

Atomically increments the reference count of self + by one.

+
+

Parameters

+
+++++ + + + + + +

self

a QmiMessageDmsUimSetPinProtectionInput.

 
+
+
+

Returns

+

the new reference to self +.

+
+

Since: 1.0

+
+
+
+

qmi_message_dms_uim_set_pin_protection_input_unref ()

+
void
+qmi_message_dms_uim_set_pin_protection_input_unref
+                               (QmiMessageDmsUimSetPinProtectionInput *self);
+

Atomically decrements the reference count of self + by one. +If the reference count drops to 0, self + is completely disposed.

+
+

Parameters

+
+++++ + + + + + +

self

a QmiMessageDmsUimSetPinProtectionInput.

 
+
+

Since: 1.0

+
+
+
+

qmi_message_dms_uim_set_pin_protection_input_get_info ()

+
gboolean
+qmi_message_dms_uim_set_pin_protection_input_get_info
+                               (QmiMessageDmsUimSetPinProtectionInput *self,
+                                QmiDmsUimPinId *value_info_pin_id,
+                                gboolean *value_info_protection_enabled,
+                                const gchar **value_info_pin,
+                                GError **error);
+

Get the 'Info' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + + + + + + + + + + + +

self

a QmiMessageDmsUimSetPinProtectionInput.

 

value_info_pin_id

a placeholder for the output QmiDmsUimPinId, or NULL if not required.

 

value_info_protection_enabled

a placeholder for the output gboolean, or NULL if not required.

 

value_info_pin

a placeholder for the output constant string, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.0

+
+
+
+

qmi_message_dms_uim_set_pin_protection_input_set_info ()

+
gboolean
+qmi_message_dms_uim_set_pin_protection_input_set_info
+                               (QmiMessageDmsUimSetPinProtectionInput *self,
+                                QmiDmsUimPinId value_info_pin_id,
+                                gboolean value_info_protection_enabled,
+                                const gchar *value_info_pin,
+                                GError **error);
+

Set the 'Info' field in the message.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + + + + + + + + + + + +

self

a QmiMessageDmsUimSetPinProtectionInput.

 

value_info_pin_id

a QmiDmsUimPinId.

 

value_info_protection_enabled

a gboolean.

 

value_info_pin

a constant string.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if value +was successfully set, FALSE otherwise.

+
+

Since: 1.0

+
+
+
+

qmi_message_dms_uim_set_pin_protection_output_ref ()

+
QmiMessageDmsUimSetPinProtectionOutput *
+qmi_message_dms_uim_set_pin_protection_output_ref
+                               (QmiMessageDmsUimSetPinProtectionOutput *self);
+

Atomically increments the reference count of self + by one.

+
+

Parameters

+
+++++ + + + + + +

self

a QmiMessageDmsUimSetPinProtectionOutput.

 
+
+
+

Returns

+

the new reference to self +.

+
+

Since: 1.0

+
+
+
+

qmi_message_dms_uim_set_pin_protection_output_unref ()

+
void
+qmi_message_dms_uim_set_pin_protection_output_unref
+                               (QmiMessageDmsUimSetPinProtectionOutput *self);
+

Atomically decrements the reference count of self + by one. +If the reference count drops to 0, self + is completely disposed.

+
+

Parameters

+
+++++ + + + + + +

self

a QmiMessageDmsUimSetPinProtectionOutput.

 
+
+

Since: 1.0

+
+
+
+

qmi_message_dms_uim_set_pin_protection_output_get_result ()

+
gboolean
+qmi_message_dms_uim_set_pin_protection_output_get_result
+                               (QmiMessageDmsUimSetPinProtectionOutput *self,
+                                GError **error);
+

Get the result of the QMI operation.

+
+

Parameters

+
+++++ + + + + + + + + + + + + +

self

a QmiMessageDmsUimSetPinProtectionOutput.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the QMI operation succeeded, FALSE if error +is set.

+
+

Since: 1.0

+
+
+
+

qmi_message_dms_uim_set_pin_protection_output_get_pin_retries_status ()

+
gboolean
+qmi_message_dms_uim_set_pin_protection_output_get_pin_retries_status
+                               (QmiMessageDmsUimSetPinProtectionOutput *self,
+                                guint8 *value_pin_retries_status_verify_retries_left,
+                                guint8 *value_pin_retries_status_unblock_retries_left,
+                                GError **error);
+

Get the 'Pin Retries Status' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + + + + + + +

self

a QmiMessageDmsUimSetPinProtectionOutput.

 

value_pin_retries_status_verify_retries_left

a placeholder for the output guint8, or NULL if not required.

 

value_pin_retries_status_unblock_retries_left

a placeholder for the output guint8, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.0

+
+
+
+

qmi_client_dms_uim_set_pin_protection ()

+
void
+qmi_client_dms_uim_set_pin_protection (QmiClientDms *self,
+                                       QmiMessageDmsUimSetPinProtectionInput *input,
+                                       guint timeout,
+                                       GCancellable *cancellable,
+                                       GAsyncReadyCallback callback,
+                                       gpointer user_data);
+

Asynchronously sends a UIM Set PIN Protection request to the device.

+

When the operation is finished, callback + will be invoked in the thread-default main loop of the thread you are calling this method from.

+

You can then call qmi_client_dms_uim_set_pin_protection_finish() to get the result of the operation.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

self

a QmiClientDms.

 

input

a QmiMessageDmsUimSetPinProtectionInput.

 

timeout

maximum time to wait for the method to complete, in seconds.

 

cancellable

a GCancellable or NULL.

 

callback

a GAsyncReadyCallback to call when the request is satisfied.

 

user_data

user data to pass to callback +.

 
+
+

Since: 1.0

+
+
+
+

qmi_client_dms_uim_set_pin_protection_finish ()

+
QmiMessageDmsUimSetPinProtectionOutput *
+qmi_client_dms_uim_set_pin_protection_finish
+                               (QmiClientDms *self,
+                                GAsyncResult *res,
+                                GError **error);
+

Finishes an async operation started with qmi_client_dms_uim_set_pin_protection().

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiClientDms.

 

res

the GAsyncResult obtained from the GAsyncReadyCallback passed to qmi_client_dms_uim_set_pin_protection().

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

a QmiMessageDmsUimSetPinProtectionOutput, or NULL if error +is set. The returned value should be freed with qmi_message_dms_uim_set_pin_protection_output_unref().

+
+

Since: 1.0

+
+
+
+

Types and Values

+
+

QmiMessageDmsUimSetPinProtectionInput

+
typedef struct _QmiMessageDmsUimSetPinProtectionInput QmiMessageDmsUimSetPinProtectionInput;
+

The QmiMessageDmsUimSetPinProtectionInput structure contains private data and should only be accessed +using the provided API.

+

Since: 1.0

+
+
+
+

QmiMessageDmsUimSetPinProtectionOutput

+
typedef struct _QmiMessageDmsUimSetPinProtectionOutput QmiMessageDmsUimSetPinProtectionOutput;
+

The QmiMessageDmsUimSetPinProtectionOutput structure contains private data and should only be accessed +using the provided API.

+

Since: 1.0

+
+
+
+ + + \ No newline at end of file diff -Nru libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-DMS-UIM-Unblock-CK.html libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-DMS-UIM-Unblock-CK.html --- libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-DMS-UIM-Unblock-CK.html 2017-03-22 12:28:29.000000000 +0100 +++ libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-DMS-UIM-Unblock-CK.html 1970-01-01 01:00:00.000000000 +0100 @@ -1,593 +0,0 @@ - - - - -DMS UIM Unblock CK: libqmi-glib Reference Manual - - - - - - - - - - - - - - - - -
-
-
- - -
-

DMS UIM Unblock CK

-

DMS UIM Unblock CK

-
- -
-

Types and Values

- -
-
-

Object Hierarchy

-
    GBoxed
-    ├── QmiMessageDmsUimUnblockCkInput
-    ╰── QmiMessageDmsUimUnblockCkOutput
-
-
-
-

Description

-
-
-

Functions

-
-

qmi_message_dms_uim_unblock_ck_input_new ()

-
QmiMessageDmsUimUnblockCkInput *
-qmi_message_dms_uim_unblock_ck_input_new
-                               (void);
-

Allocates a new QmiMessageDmsUimUnblockCkInput.

-
-

Returns

-

the newly created QmiMessageDmsUimUnblockCkInput. The returned value should be freed with qmi_message_dms_uim_unblock_ck_input_unref().

-
-

Since: 1.0

-
-
-
-

qmi_message_dms_uim_unblock_ck_input_ref ()

-
QmiMessageDmsUimUnblockCkInput *
-qmi_message_dms_uim_unblock_ck_input_ref
-                               (QmiMessageDmsUimUnblockCkInput *self);
-

Atomically increments the reference count of self - by one.

-
-

Parameters

-
----- - - - - - -

self

a QmiMessageDmsUimUnblockCkInput.

 
-
-
-

Returns

-

the new reference to self -.

-
-

Since: 1.0

-
-
-
-

qmi_message_dms_uim_unblock_ck_input_unref ()

-
void
-qmi_message_dms_uim_unblock_ck_input_unref
-                               (QmiMessageDmsUimUnblockCkInput *self);
-

Atomically decrements the reference count of self - by one. -If the reference count drops to 0, self - is completely disposed.

-
-

Parameters

-
----- - - - - - -

self

a QmiMessageDmsUimUnblockCkInput.

 
-
-

Since: 1.0

-
-
-
-

qmi_message_dms_uim_unblock_ck_input_get_facility ()

-
gboolean
-qmi_message_dms_uim_unblock_ck_input_get_facility
-                               (QmiMessageDmsUimUnblockCkInput *self,
-                                QmiDmsUimFacility *value_facility_facility,
-                                const gchar **value_facility_facility_control_key,
-                                GError **error);
-

Get the 'Facility' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - - - - - - -

self

a QmiMessageDmsUimUnblockCkInput.

 

value_facility_facility

a placeholder for the output QmiDmsUimFacility, or NULL if not required.

 

value_facility_facility_control_key

a placeholder for the output constant string, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.0

-
-
-
-

qmi_message_dms_uim_unblock_ck_input_set_facility ()

-
gboolean
-qmi_message_dms_uim_unblock_ck_input_set_facility
-                               (QmiMessageDmsUimUnblockCkInput *self,
-                                QmiDmsUimFacility value_facility_facility,
-                                const gchar *value_facility_facility_control_key,
-                                GError **error);
-

Set the 'Facility' field in the message.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - - - - - - -

self

a QmiMessageDmsUimUnblockCkInput.

 

value_facility_facility

a QmiDmsUimFacility.

 

value_facility_facility_control_key

a constant string.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if value -was successfully set, FALSE otherwise.

-
-

Since: 1.0

-
-
-
-

qmi_message_dms_uim_unblock_ck_output_ref ()

-
QmiMessageDmsUimUnblockCkOutput *
-qmi_message_dms_uim_unblock_ck_output_ref
-                               (QmiMessageDmsUimUnblockCkOutput *self);
-

Atomically increments the reference count of self - by one.

-
-

Parameters

-
----- - - - - - -

self

a QmiMessageDmsUimUnblockCkOutput.

 
-
-
-

Returns

-

the new reference to self -.

-
-

Since: 1.0

-
-
-
-

qmi_message_dms_uim_unblock_ck_output_unref ()

-
void
-qmi_message_dms_uim_unblock_ck_output_unref
-                               (QmiMessageDmsUimUnblockCkOutput *self);
-

Atomically decrements the reference count of self - by one. -If the reference count drops to 0, self - is completely disposed.

-
-

Parameters

-
----- - - - - - -

self

a QmiMessageDmsUimUnblockCkOutput.

 
-
-

Since: 1.0

-
-
-
-

qmi_message_dms_uim_unblock_ck_output_get_unblock_retries_left ()

-
gboolean
-qmi_message_dms_uim_unblock_ck_output_get_unblock_retries_left
-                               (QmiMessageDmsUimUnblockCkOutput *self,
-                                guint8 *value_unblock_retries_left,
-                                GError **error);
-

Get the 'Unblock Retries Left' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessageDmsUimUnblockCkOutput.

 

value_unblock_retries_left

a placeholder for the output guint8, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.0

-
-
-
-

qmi_message_dms_uim_unblock_ck_output_get_result ()

-
gboolean
-qmi_message_dms_uim_unblock_ck_output_get_result
-                               (QmiMessageDmsUimUnblockCkOutput *self,
-                                GError **error);
-

Get the result of the QMI operation.

-
-

Parameters

-
----- - - - - - - - - - - - - -

self

a QmiMessageDmsUimUnblockCkOutput.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the QMI operation succeeded, FALSE if error -is set.

-
-

Since: 1.0

-
-
-
-

qmi_client_dms_uim_unblock_ck ()

-
void
-qmi_client_dms_uim_unblock_ck (QmiClientDms *self,
-                               QmiMessageDmsUimUnblockCkInput *input,
-                               guint timeout,
-                               GCancellable *cancellable,
-                               GAsyncReadyCallback callback,
-                               gpointer user_data);
-

Asynchronously sends a UIM Unblock CK request to the device.

-

When the operation is finished, callback - will be invoked in the thread-default main loop of the thread you are calling this method from.

-

You can then call qmi_client_dms_uim_unblock_ck_finish() to get the result of the operation.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

self

a QmiClientDms.

 

input

a QmiMessageDmsUimUnblockCkInput.

 

timeout

maximum time to wait for the method to complete, in seconds.

 

cancellable

a GCancellable or NULL.

 

callback

a GAsyncReadyCallback to call when the request is satisfied.

 

user_data

user data to pass to callback -.

 
-
-

Since: 1.0

-
-
-
-

qmi_client_dms_uim_unblock_ck_finish ()

-
QmiMessageDmsUimUnblockCkOutput *
-qmi_client_dms_uim_unblock_ck_finish (QmiClientDms *self,
-                                      GAsyncResult *res,
-                                      GError **error);
-

Finishes an async operation started with qmi_client_dms_uim_unblock_ck().

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiClientDms.

 

res

the GAsyncResult obtained from the GAsyncReadyCallback passed to qmi_client_dms_uim_unblock_ck().

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

a QmiMessageDmsUimUnblockCkOutput, or NULL if error -is set. The returned value should be freed with qmi_message_dms_uim_unblock_ck_output_unref().

-
-

Since: 1.0

-
-
-
-

Types and Values

-
-

QmiMessageDmsUimUnblockCkInput

-
typedef struct _QmiMessageDmsUimUnblockCkInput QmiMessageDmsUimUnblockCkInput;
-

The QmiMessageDmsUimUnblockCkInput structure contains private data and should only be accessed -using the provided API.

-

Since: 1.0

-
-
-
-

QmiMessageDmsUimUnblockCkOutput

-
typedef struct _QmiMessageDmsUimUnblockCkOutput QmiMessageDmsUimUnblockCkOutput;
-

The QmiMessageDmsUimUnblockCkOutput structure contains private data and should only be accessed -using the provided API.

-

Since: 1.0

-
-
-
- - - \ No newline at end of file diff -Nru libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-DMS-UIM-Unblock-CK-request.html libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-DMS-UIM-Unblock-CK-request.html --- libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-DMS-UIM-Unblock-CK-request.html 1970-01-01 01:00:00.000000000 +0100 +++ libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-DMS-UIM-Unblock-CK-request.html 2019-01-08 15:19:01.000000000 +0100 @@ -0,0 +1,593 @@ + + + + +DMS UIM Unblock CK request: libqmi-glib Reference Manual + + + + + + + + + + + + + + + + +
+
+
+ + +
+

DMS UIM Unblock CK request

+

DMS UIM Unblock CK request

+
+ +
+

Types and Values

+ +
+
+

Object Hierarchy

+
    GBoxed
+    ├── QmiMessageDmsUimUnblockCkInput
+    ╰── QmiMessageDmsUimUnblockCkOutput
+
+
+
+

Description

+
+
+

Functions

+
+

qmi_message_dms_uim_unblock_ck_input_new ()

+
QmiMessageDmsUimUnblockCkInput *
+qmi_message_dms_uim_unblock_ck_input_new
+                               (void);
+

Allocates a new QmiMessageDmsUimUnblockCkInput.

+
+

Returns

+

the newly created QmiMessageDmsUimUnblockCkInput. The returned value should be freed with qmi_message_dms_uim_unblock_ck_input_unref().

+
+

Since: 1.0

+
+
+
+

qmi_message_dms_uim_unblock_ck_input_ref ()

+
QmiMessageDmsUimUnblockCkInput *
+qmi_message_dms_uim_unblock_ck_input_ref
+                               (QmiMessageDmsUimUnblockCkInput *self);
+

Atomically increments the reference count of self + by one.

+
+

Parameters

+
+++++ + + + + + +

self

a QmiMessageDmsUimUnblockCkInput.

 
+
+
+

Returns

+

the new reference to self +.

+
+

Since: 1.0

+
+
+
+

qmi_message_dms_uim_unblock_ck_input_unref ()

+
void
+qmi_message_dms_uim_unblock_ck_input_unref
+                               (QmiMessageDmsUimUnblockCkInput *self);
+

Atomically decrements the reference count of self + by one. +If the reference count drops to 0, self + is completely disposed.

+
+

Parameters

+
+++++ + + + + + +

self

a QmiMessageDmsUimUnblockCkInput.

 
+
+

Since: 1.0

+
+
+
+

qmi_message_dms_uim_unblock_ck_input_get_facility ()

+
gboolean
+qmi_message_dms_uim_unblock_ck_input_get_facility
+                               (QmiMessageDmsUimUnblockCkInput *self,
+                                QmiDmsUimFacility *value_facility_facility,
+                                const gchar **value_facility_facility_control_key,
+                                GError **error);
+

Get the 'Facility' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + + + + + + +

self

a QmiMessageDmsUimUnblockCkInput.

 

value_facility_facility

a placeholder for the output QmiDmsUimFacility, or NULL if not required.

 

value_facility_facility_control_key

a placeholder for the output constant string, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.0

+
+
+
+

qmi_message_dms_uim_unblock_ck_input_set_facility ()

+
gboolean
+qmi_message_dms_uim_unblock_ck_input_set_facility
+                               (QmiMessageDmsUimUnblockCkInput *self,
+                                QmiDmsUimFacility value_facility_facility,
+                                const gchar *value_facility_facility_control_key,
+                                GError **error);
+

Set the 'Facility' field in the message.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + + + + + + +

self

a QmiMessageDmsUimUnblockCkInput.

 

value_facility_facility

a QmiDmsUimFacility.

 

value_facility_facility_control_key

a constant string.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if value +was successfully set, FALSE otherwise.

+
+

Since: 1.0

+
+
+
+

qmi_message_dms_uim_unblock_ck_output_ref ()

+
QmiMessageDmsUimUnblockCkOutput *
+qmi_message_dms_uim_unblock_ck_output_ref
+                               (QmiMessageDmsUimUnblockCkOutput *self);
+

Atomically increments the reference count of self + by one.

+
+

Parameters

+
+++++ + + + + + +

self

a QmiMessageDmsUimUnblockCkOutput.

 
+
+
+

Returns

+

the new reference to self +.

+
+

Since: 1.0

+
+
+
+

qmi_message_dms_uim_unblock_ck_output_unref ()

+
void
+qmi_message_dms_uim_unblock_ck_output_unref
+                               (QmiMessageDmsUimUnblockCkOutput *self);
+

Atomically decrements the reference count of self + by one. +If the reference count drops to 0, self + is completely disposed.

+
+

Parameters

+
+++++ + + + + + +

self

a QmiMessageDmsUimUnblockCkOutput.

 
+
+

Since: 1.0

+
+
+
+

qmi_message_dms_uim_unblock_ck_output_get_unblock_retries_left ()

+
gboolean
+qmi_message_dms_uim_unblock_ck_output_get_unblock_retries_left
+                               (QmiMessageDmsUimUnblockCkOutput *self,
+                                guint8 *value_unblock_retries_left,
+                                GError **error);
+

Get the 'Unblock Retries Left' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageDmsUimUnblockCkOutput.

 

value_unblock_retries_left

a placeholder for the output guint8, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.0

+
+
+
+

qmi_message_dms_uim_unblock_ck_output_get_result ()

+
gboolean
+qmi_message_dms_uim_unblock_ck_output_get_result
+                               (QmiMessageDmsUimUnblockCkOutput *self,
+                                GError **error);
+

Get the result of the QMI operation.

+
+

Parameters

+
+++++ + + + + + + + + + + + + +

self

a QmiMessageDmsUimUnblockCkOutput.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the QMI operation succeeded, FALSE if error +is set.

+
+

Since: 1.0

+
+
+
+

qmi_client_dms_uim_unblock_ck ()

+
void
+qmi_client_dms_uim_unblock_ck (QmiClientDms *self,
+                               QmiMessageDmsUimUnblockCkInput *input,
+                               guint timeout,
+                               GCancellable *cancellable,
+                               GAsyncReadyCallback callback,
+                               gpointer user_data);
+

Asynchronously sends a UIM Unblock CK request to the device.

+

When the operation is finished, callback + will be invoked in the thread-default main loop of the thread you are calling this method from.

+

You can then call qmi_client_dms_uim_unblock_ck_finish() to get the result of the operation.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

self

a QmiClientDms.

 

input

a QmiMessageDmsUimUnblockCkInput.

 

timeout

maximum time to wait for the method to complete, in seconds.

 

cancellable

a GCancellable or NULL.

 

callback

a GAsyncReadyCallback to call when the request is satisfied.

 

user_data

user data to pass to callback +.

 
+
+

Since: 1.0

+
+
+
+

qmi_client_dms_uim_unblock_ck_finish ()

+
QmiMessageDmsUimUnblockCkOutput *
+qmi_client_dms_uim_unblock_ck_finish (QmiClientDms *self,
+                                      GAsyncResult *res,
+                                      GError **error);
+

Finishes an async operation started with qmi_client_dms_uim_unblock_ck().

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiClientDms.

 

res

the GAsyncResult obtained from the GAsyncReadyCallback passed to qmi_client_dms_uim_unblock_ck().

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

a QmiMessageDmsUimUnblockCkOutput, or NULL if error +is set. The returned value should be freed with qmi_message_dms_uim_unblock_ck_output_unref().

+
+

Since: 1.0

+
+
+
+

Types and Values

+
+

QmiMessageDmsUimUnblockCkInput

+
typedef struct _QmiMessageDmsUimUnblockCkInput QmiMessageDmsUimUnblockCkInput;
+

The QmiMessageDmsUimUnblockCkInput structure contains private data and should only be accessed +using the provided API.

+

Since: 1.0

+
+
+
+

QmiMessageDmsUimUnblockCkOutput

+
typedef struct _QmiMessageDmsUimUnblockCkOutput QmiMessageDmsUimUnblockCkOutput;
+

The QmiMessageDmsUimUnblockCkOutput structure contains private data and should only be accessed +using the provided API.

+

Since: 1.0

+
+
+
+ + + \ No newline at end of file diff -Nru libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-DMS-UIM-Unblock-PIN.html libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-DMS-UIM-Unblock-PIN.html --- libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-DMS-UIM-Unblock-PIN.html 2017-03-22 12:28:29.000000000 +0100 +++ libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-DMS-UIM-Unblock-PIN.html 1970-01-01 01:00:00.000000000 +0100 @@ -1,611 +0,0 @@ - - - - -DMS UIM Unblock PIN: libqmi-glib Reference Manual - - - - - - - - - - - - - - - - -
-
-
- - -
-

DMS UIM Unblock PIN

-

DMS UIM Unblock PIN

-
- -
-

Types and Values

- -
-
-

Object Hierarchy

-
    GBoxed
-    ├── QmiMessageDmsUimUnblockPinInput
-    ╰── QmiMessageDmsUimUnblockPinOutput
-
-
-
-

Description

-
-
-

Functions

-
-

qmi_message_dms_uim_unblock_pin_input_new ()

-
QmiMessageDmsUimUnblockPinInput *
-qmi_message_dms_uim_unblock_pin_input_new
-                               (void);
-

Allocates a new QmiMessageDmsUimUnblockPinInput.

-
-

Returns

-

the newly created QmiMessageDmsUimUnblockPinInput. The returned value should be freed with qmi_message_dms_uim_unblock_pin_input_unref().

-
-

Since: 1.0

-
-
-
-

qmi_message_dms_uim_unblock_pin_input_ref ()

-
QmiMessageDmsUimUnblockPinInput *
-qmi_message_dms_uim_unblock_pin_input_ref
-                               (QmiMessageDmsUimUnblockPinInput *self);
-

Atomically increments the reference count of self - by one.

-
-

Parameters

-
----- - - - - - -

self

a QmiMessageDmsUimUnblockPinInput.

 
-
-
-

Returns

-

the new reference to self -.

-
-

Since: 1.0

-
-
-
-

qmi_message_dms_uim_unblock_pin_input_unref ()

-
void
-qmi_message_dms_uim_unblock_pin_input_unref
-                               (QmiMessageDmsUimUnblockPinInput *self);
-

Atomically decrements the reference count of self - by one. -If the reference count drops to 0, self - is completely disposed.

-
-

Parameters

-
----- - - - - - -

self

a QmiMessageDmsUimUnblockPinInput.

 
-
-

Since: 1.0

-
-
-
-

qmi_message_dms_uim_unblock_pin_input_get_info ()

-
gboolean
-qmi_message_dms_uim_unblock_pin_input_get_info
-                               (QmiMessageDmsUimUnblockPinInput *self,
-                                QmiDmsUimPinId *value_info_pin_id,
-                                const gchar **value_info_puk,
-                                const gchar **value_info_new_pin,
-                                GError **error);
-

Get the 'Info' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - - - - - - - - - - - -

self

a QmiMessageDmsUimUnblockPinInput.

 

value_info_pin_id

a placeholder for the output QmiDmsUimPinId, or NULL if not required.

 

value_info_puk

a placeholder for the output constant string, or NULL if not required.

 

value_info_new_pin

a placeholder for the output constant string, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.0

-
-
-
-

qmi_message_dms_uim_unblock_pin_input_set_info ()

-
gboolean
-qmi_message_dms_uim_unblock_pin_input_set_info
-                               (QmiMessageDmsUimUnblockPinInput *self,
-                                QmiDmsUimPinId value_info_pin_id,
-                                const gchar *value_info_puk,
-                                const gchar *value_info_new_pin,
-                                GError **error);
-

Set the 'Info' field in the message.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - - - - - - - - - - - -

self

a QmiMessageDmsUimUnblockPinInput.

 

value_info_pin_id

a QmiDmsUimPinId.

 

value_info_puk

a constant string.

 

value_info_new_pin

a constant string.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if value -was successfully set, FALSE otherwise.

-
-

Since: 1.0

-
-
-
-

qmi_message_dms_uim_unblock_pin_output_ref ()

-
QmiMessageDmsUimUnblockPinOutput *
-qmi_message_dms_uim_unblock_pin_output_ref
-                               (QmiMessageDmsUimUnblockPinOutput *self);
-

Atomically increments the reference count of self - by one.

-
-

Parameters

-
----- - - - - - -

self

a QmiMessageDmsUimUnblockPinOutput.

 
-
-
-

Returns

-

the new reference to self -.

-
-

Since: 1.0

-
-
-
-

qmi_message_dms_uim_unblock_pin_output_unref ()

-
void
-qmi_message_dms_uim_unblock_pin_output_unref
-                               (QmiMessageDmsUimUnblockPinOutput *self);
-

Atomically decrements the reference count of self - by one. -If the reference count drops to 0, self - is completely disposed.

-
-

Parameters

-
----- - - - - - -

self

a QmiMessageDmsUimUnblockPinOutput.

 
-
-

Since: 1.0

-
-
-
-

qmi_message_dms_uim_unblock_pin_output_get_result ()

-
gboolean
-qmi_message_dms_uim_unblock_pin_output_get_result
-                               (QmiMessageDmsUimUnblockPinOutput *self,
-                                GError **error);
-

Get the result of the QMI operation.

-
-

Parameters

-
----- - - - - - - - - - - - - -

self

a QmiMessageDmsUimUnblockPinOutput.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the QMI operation succeeded, FALSE if error -is set.

-
-

Since: 1.0

-
-
-
-

qmi_message_dms_uim_unblock_pin_output_get_pin_retries_status ()

-
gboolean
-qmi_message_dms_uim_unblock_pin_output_get_pin_retries_status
-                               (QmiMessageDmsUimUnblockPinOutput *self,
-                                guint8 *value_pin_retries_status_verify_retries_left,
-                                guint8 *value_pin_retries_status_unblock_retries_left,
-                                GError **error);
-

Get the 'Pin Retries Status' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - - - - - - -

self

a QmiMessageDmsUimUnblockPinOutput.

 

value_pin_retries_status_verify_retries_left

a placeholder for the output guint8, or NULL if not required.

 

value_pin_retries_status_unblock_retries_left

a placeholder for the output guint8, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.0

-
-
-
-

qmi_client_dms_uim_unblock_pin ()

-
void
-qmi_client_dms_uim_unblock_pin (QmiClientDms *self,
-                                QmiMessageDmsUimUnblockPinInput *input,
-                                guint timeout,
-                                GCancellable *cancellable,
-                                GAsyncReadyCallback callback,
-                                gpointer user_data);
-

Asynchronously sends a UIM Unblock PIN request to the device.

-

When the operation is finished, callback - will be invoked in the thread-default main loop of the thread you are calling this method from.

-

You can then call qmi_client_dms_uim_unblock_pin_finish() to get the result of the operation.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

self

a QmiClientDms.

 

input

a QmiMessageDmsUimUnblockPinInput.

 

timeout

maximum time to wait for the method to complete, in seconds.

 

cancellable

a GCancellable or NULL.

 

callback

a GAsyncReadyCallback to call when the request is satisfied.

 

user_data

user data to pass to callback -.

 
-
-

Since: 1.0

-
-
-
-

qmi_client_dms_uim_unblock_pin_finish ()

-
QmiMessageDmsUimUnblockPinOutput *
-qmi_client_dms_uim_unblock_pin_finish (QmiClientDms *self,
-                                       GAsyncResult *res,
-                                       GError **error);
-

Finishes an async operation started with qmi_client_dms_uim_unblock_pin().

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiClientDms.

 

res

the GAsyncResult obtained from the GAsyncReadyCallback passed to qmi_client_dms_uim_unblock_pin().

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

a QmiMessageDmsUimUnblockPinOutput, or NULL if error -is set. The returned value should be freed with qmi_message_dms_uim_unblock_pin_output_unref().

-
-

Since: 1.0

-
-
-
-

Types and Values

-
-

QmiMessageDmsUimUnblockPinInput

-
typedef struct _QmiMessageDmsUimUnblockPinInput QmiMessageDmsUimUnblockPinInput;
-

The QmiMessageDmsUimUnblockPinInput structure contains private data and should only be accessed -using the provided API.

-

Since: 1.0

-
-
-
-

QmiMessageDmsUimUnblockPinOutput

-
typedef struct _QmiMessageDmsUimUnblockPinOutput QmiMessageDmsUimUnblockPinOutput;
-

The QmiMessageDmsUimUnblockPinOutput structure contains private data and should only be accessed -using the provided API.

-

Since: 1.0

-
-
-
- - - \ No newline at end of file diff -Nru libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-DMS-UIM-Unblock-PIN-request.html libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-DMS-UIM-Unblock-PIN-request.html --- libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-DMS-UIM-Unblock-PIN-request.html 1970-01-01 01:00:00.000000000 +0100 +++ libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-DMS-UIM-Unblock-PIN-request.html 2019-01-08 15:19:01.000000000 +0100 @@ -0,0 +1,611 @@ + + + + +DMS UIM Unblock PIN request: libqmi-glib Reference Manual + + + + + + + + + + + + + + + + +
+
+
+ + +
+

DMS UIM Unblock PIN request

+

DMS UIM Unblock PIN request

+
+ +
+

Types and Values

+ +
+
+

Object Hierarchy

+
    GBoxed
+    ├── QmiMessageDmsUimUnblockPinInput
+    ╰── QmiMessageDmsUimUnblockPinOutput
+
+
+
+

Description

+
+
+

Functions

+
+

qmi_message_dms_uim_unblock_pin_input_new ()

+
QmiMessageDmsUimUnblockPinInput *
+qmi_message_dms_uim_unblock_pin_input_new
+                               (void);
+

Allocates a new QmiMessageDmsUimUnblockPinInput.

+
+

Returns

+

the newly created QmiMessageDmsUimUnblockPinInput. The returned value should be freed with qmi_message_dms_uim_unblock_pin_input_unref().

+
+

Since: 1.0

+
+
+
+

qmi_message_dms_uim_unblock_pin_input_ref ()

+
QmiMessageDmsUimUnblockPinInput *
+qmi_message_dms_uim_unblock_pin_input_ref
+                               (QmiMessageDmsUimUnblockPinInput *self);
+

Atomically increments the reference count of self + by one.

+
+

Parameters

+
+++++ + + + + + +

self

a QmiMessageDmsUimUnblockPinInput.

 
+
+
+

Returns

+

the new reference to self +.

+
+

Since: 1.0

+
+
+
+

qmi_message_dms_uim_unblock_pin_input_unref ()

+
void
+qmi_message_dms_uim_unblock_pin_input_unref
+                               (QmiMessageDmsUimUnblockPinInput *self);
+

Atomically decrements the reference count of self + by one. +If the reference count drops to 0, self + is completely disposed.

+
+

Parameters

+
+++++ + + + + + +

self

a QmiMessageDmsUimUnblockPinInput.

 
+
+

Since: 1.0

+
+
+
+

qmi_message_dms_uim_unblock_pin_input_get_info ()

+
gboolean
+qmi_message_dms_uim_unblock_pin_input_get_info
+                               (QmiMessageDmsUimUnblockPinInput *self,
+                                QmiDmsUimPinId *value_info_pin_id,
+                                const gchar **value_info_puk,
+                                const gchar **value_info_new_pin,
+                                GError **error);
+

Get the 'Info' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + + + + + + + + + + + +

self

a QmiMessageDmsUimUnblockPinInput.

 

value_info_pin_id

a placeholder for the output QmiDmsUimPinId, or NULL if not required.

 

value_info_puk

a placeholder for the output constant string, or NULL if not required.

 

value_info_new_pin

a placeholder for the output constant string, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.0

+
+
+
+

qmi_message_dms_uim_unblock_pin_input_set_info ()

+
gboolean
+qmi_message_dms_uim_unblock_pin_input_set_info
+                               (QmiMessageDmsUimUnblockPinInput *self,
+                                QmiDmsUimPinId value_info_pin_id,
+                                const gchar *value_info_puk,
+                                const gchar *value_info_new_pin,
+                                GError **error);
+

Set the 'Info' field in the message.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + + + + + + + + + + + +

self

a QmiMessageDmsUimUnblockPinInput.

 

value_info_pin_id

a QmiDmsUimPinId.

 

value_info_puk

a constant string.

 

value_info_new_pin

a constant string.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if value +was successfully set, FALSE otherwise.

+
+

Since: 1.0

+
+
+
+

qmi_message_dms_uim_unblock_pin_output_ref ()

+
QmiMessageDmsUimUnblockPinOutput *
+qmi_message_dms_uim_unblock_pin_output_ref
+                               (QmiMessageDmsUimUnblockPinOutput *self);
+

Atomically increments the reference count of self + by one.

+
+

Parameters

+
+++++ + + + + + +

self

a QmiMessageDmsUimUnblockPinOutput.

 
+
+
+

Returns

+

the new reference to self +.

+
+

Since: 1.0

+
+
+
+

qmi_message_dms_uim_unblock_pin_output_unref ()

+
void
+qmi_message_dms_uim_unblock_pin_output_unref
+                               (QmiMessageDmsUimUnblockPinOutput *self);
+

Atomically decrements the reference count of self + by one. +If the reference count drops to 0, self + is completely disposed.

+
+

Parameters

+
+++++ + + + + + +

self

a QmiMessageDmsUimUnblockPinOutput.

 
+
+

Since: 1.0

+
+
+
+

qmi_message_dms_uim_unblock_pin_output_get_result ()

+
gboolean
+qmi_message_dms_uim_unblock_pin_output_get_result
+                               (QmiMessageDmsUimUnblockPinOutput *self,
+                                GError **error);
+

Get the result of the QMI operation.

+
+

Parameters

+
+++++ + + + + + + + + + + + + +

self

a QmiMessageDmsUimUnblockPinOutput.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the QMI operation succeeded, FALSE if error +is set.

+
+

Since: 1.0

+
+
+
+

qmi_message_dms_uim_unblock_pin_output_get_pin_retries_status ()

+
gboolean
+qmi_message_dms_uim_unblock_pin_output_get_pin_retries_status
+                               (QmiMessageDmsUimUnblockPinOutput *self,
+                                guint8 *value_pin_retries_status_verify_retries_left,
+                                guint8 *value_pin_retries_status_unblock_retries_left,
+                                GError **error);
+

Get the 'Pin Retries Status' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + + + + + + +

self

a QmiMessageDmsUimUnblockPinOutput.

 

value_pin_retries_status_verify_retries_left

a placeholder for the output guint8, or NULL if not required.

 

value_pin_retries_status_unblock_retries_left

a placeholder for the output guint8, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.0

+
+
+
+

qmi_client_dms_uim_unblock_pin ()

+
void
+qmi_client_dms_uim_unblock_pin (QmiClientDms *self,
+                                QmiMessageDmsUimUnblockPinInput *input,
+                                guint timeout,
+                                GCancellable *cancellable,
+                                GAsyncReadyCallback callback,
+                                gpointer user_data);
+

Asynchronously sends a UIM Unblock PIN request to the device.

+

When the operation is finished, callback + will be invoked in the thread-default main loop of the thread you are calling this method from.

+

You can then call qmi_client_dms_uim_unblock_pin_finish() to get the result of the operation.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

self

a QmiClientDms.

 

input

a QmiMessageDmsUimUnblockPinInput.

 

timeout

maximum time to wait for the method to complete, in seconds.

 

cancellable

a GCancellable or NULL.

 

callback

a GAsyncReadyCallback to call when the request is satisfied.

 

user_data

user data to pass to callback +.

 
+
+

Since: 1.0

+
+
+
+

qmi_client_dms_uim_unblock_pin_finish ()

+
QmiMessageDmsUimUnblockPinOutput *
+qmi_client_dms_uim_unblock_pin_finish (QmiClientDms *self,
+                                       GAsyncResult *res,
+                                       GError **error);
+

Finishes an async operation started with qmi_client_dms_uim_unblock_pin().

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiClientDms.

 

res

the GAsyncResult obtained from the GAsyncReadyCallback passed to qmi_client_dms_uim_unblock_pin().

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

a QmiMessageDmsUimUnblockPinOutput, or NULL if error +is set. The returned value should be freed with qmi_message_dms_uim_unblock_pin_output_unref().

+
+

Since: 1.0

+
+
+
+

Types and Values

+
+

QmiMessageDmsUimUnblockPinInput

+
typedef struct _QmiMessageDmsUimUnblockPinInput QmiMessageDmsUimUnblockPinInput;
+

The QmiMessageDmsUimUnblockPinInput structure contains private data and should only be accessed +using the provided API.

+

Since: 1.0

+
+
+
+

QmiMessageDmsUimUnblockPinOutput

+
typedef struct _QmiMessageDmsUimUnblockPinOutput QmiMessageDmsUimUnblockPinOutput;
+

The QmiMessageDmsUimUnblockPinOutput structure contains private data and should only be accessed +using the provided API.

+

Since: 1.0

+
+
+
+ + + \ No newline at end of file diff -Nru libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-DMS-UIM-Verify-PIN.html libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-DMS-UIM-Verify-PIN.html --- libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-DMS-UIM-Verify-PIN.html 2017-03-22 12:28:29.000000000 +0100 +++ libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-DMS-UIM-Verify-PIN.html 1970-01-01 01:00:00.000000000 +0100 @@ -1,599 +0,0 @@ - - - - -DMS UIM Verify PIN: libqmi-glib Reference Manual - - - - - - - - - - - - - - - - -
-
-
- - -
-

DMS UIM Verify PIN

-

DMS UIM Verify PIN

-
- -
-

Types and Values

- -
-
-

Object Hierarchy

-
    GBoxed
-    ├── QmiMessageDmsUimVerifyPinInput
-    ╰── QmiMessageDmsUimVerifyPinOutput
-
-
-
-

Description

-
-
-

Functions

-
-

qmi_message_dms_uim_verify_pin_input_new ()

-
QmiMessageDmsUimVerifyPinInput *
-qmi_message_dms_uim_verify_pin_input_new
-                               (void);
-

Allocates a new QmiMessageDmsUimVerifyPinInput.

-
-

Returns

-

the newly created QmiMessageDmsUimVerifyPinInput. The returned value should be freed with qmi_message_dms_uim_verify_pin_input_unref().

-
-

Since: 1.0

-
-
-
-

qmi_message_dms_uim_verify_pin_input_ref ()

-
QmiMessageDmsUimVerifyPinInput *
-qmi_message_dms_uim_verify_pin_input_ref
-                               (QmiMessageDmsUimVerifyPinInput *self);
-

Atomically increments the reference count of self - by one.

-
-

Parameters

-
----- - - - - - -

self

a QmiMessageDmsUimVerifyPinInput.

 
-
-
-

Returns

-

the new reference to self -.

-
-

Since: 1.0

-
-
-
-

qmi_message_dms_uim_verify_pin_input_unref ()

-
void
-qmi_message_dms_uim_verify_pin_input_unref
-                               (QmiMessageDmsUimVerifyPinInput *self);
-

Atomically decrements the reference count of self - by one. -If the reference count drops to 0, self - is completely disposed.

-
-

Parameters

-
----- - - - - - -

self

a QmiMessageDmsUimVerifyPinInput.

 
-
-

Since: 1.0

-
-
-
-

qmi_message_dms_uim_verify_pin_input_get_info ()

-
gboolean
-qmi_message_dms_uim_verify_pin_input_get_info
-                               (QmiMessageDmsUimVerifyPinInput *self,
-                                QmiDmsUimPinId *value_info_pin_id,
-                                const gchar **value_info_pin,
-                                GError **error);
-

Get the 'Info' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - - - - - - -

self

a QmiMessageDmsUimVerifyPinInput.

 

value_info_pin_id

a placeholder for the output QmiDmsUimPinId, or NULL if not required.

 

value_info_pin

a placeholder for the output constant string, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.0

-
-
-
-

qmi_message_dms_uim_verify_pin_input_set_info ()

-
gboolean
-qmi_message_dms_uim_verify_pin_input_set_info
-                               (QmiMessageDmsUimVerifyPinInput *self,
-                                QmiDmsUimPinId value_info_pin_id,
-                                const gchar *value_info_pin,
-                                GError **error);
-

Set the 'Info' field in the message.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - - - - - - -

self

a QmiMessageDmsUimVerifyPinInput.

 

value_info_pin_id

a QmiDmsUimPinId.

 

value_info_pin

a constant string.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if value -was successfully set, FALSE otherwise.

-
-

Since: 1.0

-
-
-
-

qmi_message_dms_uim_verify_pin_output_ref ()

-
QmiMessageDmsUimVerifyPinOutput *
-qmi_message_dms_uim_verify_pin_output_ref
-                               (QmiMessageDmsUimVerifyPinOutput *self);
-

Atomically increments the reference count of self - by one.

-
-

Parameters

-
----- - - - - - -

self

a QmiMessageDmsUimVerifyPinOutput.

 
-
-
-

Returns

-

the new reference to self -.

-
-

Since: 1.0

-
-
-
-

qmi_message_dms_uim_verify_pin_output_unref ()

-
void
-qmi_message_dms_uim_verify_pin_output_unref
-                               (QmiMessageDmsUimVerifyPinOutput *self);
-

Atomically decrements the reference count of self - by one. -If the reference count drops to 0, self - is completely disposed.

-
-

Parameters

-
----- - - - - - -

self

a QmiMessageDmsUimVerifyPinOutput.

 
-
-

Since: 1.0

-
-
-
-

qmi_message_dms_uim_verify_pin_output_get_result ()

-
gboolean
-qmi_message_dms_uim_verify_pin_output_get_result
-                               (QmiMessageDmsUimVerifyPinOutput *self,
-                                GError **error);
-

Get the result of the QMI operation.

-
-

Parameters

-
----- - - - - - - - - - - - - -

self

a QmiMessageDmsUimVerifyPinOutput.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the QMI operation succeeded, FALSE if error -is set.

-
-

Since: 1.0

-
-
-
-

qmi_message_dms_uim_verify_pin_output_get_pin_retries_status ()

-
gboolean
-qmi_message_dms_uim_verify_pin_output_get_pin_retries_status
-                               (QmiMessageDmsUimVerifyPinOutput *self,
-                                guint8 *value_pin_retries_status_verify_retries_left,
-                                guint8 *value_pin_retries_status_unblock_retries_left,
-                                GError **error);
-

Get the 'Pin Retries Status' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - - - - - - -

self

a QmiMessageDmsUimVerifyPinOutput.

 

value_pin_retries_status_verify_retries_left

a placeholder for the output guint8, or NULL if not required.

 

value_pin_retries_status_unblock_retries_left

a placeholder for the output guint8, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.0

-
-
-
-

qmi_client_dms_uim_verify_pin ()

-
void
-qmi_client_dms_uim_verify_pin (QmiClientDms *self,
-                               QmiMessageDmsUimVerifyPinInput *input,
-                               guint timeout,
-                               GCancellable *cancellable,
-                               GAsyncReadyCallback callback,
-                               gpointer user_data);
-

Asynchronously sends a UIM Verify PIN request to the device.

-

When the operation is finished, callback - will be invoked in the thread-default main loop of the thread you are calling this method from.

-

You can then call qmi_client_dms_uim_verify_pin_finish() to get the result of the operation.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

self

a QmiClientDms.

 

input

a QmiMessageDmsUimVerifyPinInput.

 

timeout

maximum time to wait for the method to complete, in seconds.

 

cancellable

a GCancellable or NULL.

 

callback

a GAsyncReadyCallback to call when the request is satisfied.

 

user_data

user data to pass to callback -.

 
-
-

Since: 1.0

-
-
-
-

qmi_client_dms_uim_verify_pin_finish ()

-
QmiMessageDmsUimVerifyPinOutput *
-qmi_client_dms_uim_verify_pin_finish (QmiClientDms *self,
-                                      GAsyncResult *res,
-                                      GError **error);
-

Finishes an async operation started with qmi_client_dms_uim_verify_pin().

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiClientDms.

 

res

the GAsyncResult obtained from the GAsyncReadyCallback passed to qmi_client_dms_uim_verify_pin().

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

a QmiMessageDmsUimVerifyPinOutput, or NULL if error -is set. The returned value should be freed with qmi_message_dms_uim_verify_pin_output_unref().

-
-

Since: 1.0

-
-
-
-

Types and Values

-
-

QmiMessageDmsUimVerifyPinInput

-
typedef struct _QmiMessageDmsUimVerifyPinInput QmiMessageDmsUimVerifyPinInput;
-

The QmiMessageDmsUimVerifyPinInput structure contains private data and should only be accessed -using the provided API.

-

Since: 1.0

-
-
-
-

QmiMessageDmsUimVerifyPinOutput

-
typedef struct _QmiMessageDmsUimVerifyPinOutput QmiMessageDmsUimVerifyPinOutput;
-

The QmiMessageDmsUimVerifyPinOutput structure contains private data and should only be accessed -using the provided API.

-

Since: 1.0

-
-
-
- - - \ No newline at end of file diff -Nru libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-DMS-UIM-Verify-PIN-request.html libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-DMS-UIM-Verify-PIN-request.html --- libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-DMS-UIM-Verify-PIN-request.html 1970-01-01 01:00:00.000000000 +0100 +++ libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-DMS-UIM-Verify-PIN-request.html 2019-01-08 15:19:01.000000000 +0100 @@ -0,0 +1,599 @@ + + + + +DMS UIM Verify PIN request: libqmi-glib Reference Manual + + + + + + + + + + + + + + + + +
+
+
+ + +
+

DMS UIM Verify PIN request

+

DMS UIM Verify PIN request

+
+ +
+

Types and Values

+ +
+
+

Object Hierarchy

+
    GBoxed
+    ├── QmiMessageDmsUimVerifyPinInput
+    ╰── QmiMessageDmsUimVerifyPinOutput
+
+
+
+

Description

+
+
+

Functions

+
+

qmi_message_dms_uim_verify_pin_input_new ()

+
QmiMessageDmsUimVerifyPinInput *
+qmi_message_dms_uim_verify_pin_input_new
+                               (void);
+

Allocates a new QmiMessageDmsUimVerifyPinInput.

+
+

Returns

+

the newly created QmiMessageDmsUimVerifyPinInput. The returned value should be freed with qmi_message_dms_uim_verify_pin_input_unref().

+
+

Since: 1.0

+
+
+
+

qmi_message_dms_uim_verify_pin_input_ref ()

+
QmiMessageDmsUimVerifyPinInput *
+qmi_message_dms_uim_verify_pin_input_ref
+                               (QmiMessageDmsUimVerifyPinInput *self);
+

Atomically increments the reference count of self + by one.

+
+

Parameters

+
+++++ + + + + + +

self

a QmiMessageDmsUimVerifyPinInput.

 
+
+
+

Returns

+

the new reference to self +.

+
+

Since: 1.0

+
+
+
+

qmi_message_dms_uim_verify_pin_input_unref ()

+
void
+qmi_message_dms_uim_verify_pin_input_unref
+                               (QmiMessageDmsUimVerifyPinInput *self);
+

Atomically decrements the reference count of self + by one. +If the reference count drops to 0, self + is completely disposed.

+
+

Parameters

+
+++++ + + + + + +

self

a QmiMessageDmsUimVerifyPinInput.

 
+
+

Since: 1.0

+
+
+
+

qmi_message_dms_uim_verify_pin_input_get_info ()

+
gboolean
+qmi_message_dms_uim_verify_pin_input_get_info
+                               (QmiMessageDmsUimVerifyPinInput *self,
+                                QmiDmsUimPinId *value_info_pin_id,
+                                const gchar **value_info_pin,
+                                GError **error);
+

Get the 'Info' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + + + + + + +

self

a QmiMessageDmsUimVerifyPinInput.

 

value_info_pin_id

a placeholder for the output QmiDmsUimPinId, or NULL if not required.

 

value_info_pin

a placeholder for the output constant string, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.0

+
+
+
+

qmi_message_dms_uim_verify_pin_input_set_info ()

+
gboolean
+qmi_message_dms_uim_verify_pin_input_set_info
+                               (QmiMessageDmsUimVerifyPinInput *self,
+                                QmiDmsUimPinId value_info_pin_id,
+                                const gchar *value_info_pin,
+                                GError **error);
+

Set the 'Info' field in the message.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + + + + + + +

self

a QmiMessageDmsUimVerifyPinInput.

 

value_info_pin_id

a QmiDmsUimPinId.

 

value_info_pin

a constant string.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if value +was successfully set, FALSE otherwise.

+
+

Since: 1.0

+
+
+
+

qmi_message_dms_uim_verify_pin_output_ref ()

+
QmiMessageDmsUimVerifyPinOutput *
+qmi_message_dms_uim_verify_pin_output_ref
+                               (QmiMessageDmsUimVerifyPinOutput *self);
+

Atomically increments the reference count of self + by one.

+
+

Parameters

+
+++++ + + + + + +

self

a QmiMessageDmsUimVerifyPinOutput.

 
+
+
+

Returns

+

the new reference to self +.

+
+

Since: 1.0

+
+
+
+

qmi_message_dms_uim_verify_pin_output_unref ()

+
void
+qmi_message_dms_uim_verify_pin_output_unref
+                               (QmiMessageDmsUimVerifyPinOutput *self);
+

Atomically decrements the reference count of self + by one. +If the reference count drops to 0, self + is completely disposed.

+
+

Parameters

+
+++++ + + + + + +

self

a QmiMessageDmsUimVerifyPinOutput.

 
+
+

Since: 1.0

+
+
+
+

qmi_message_dms_uim_verify_pin_output_get_result ()

+
gboolean
+qmi_message_dms_uim_verify_pin_output_get_result
+                               (QmiMessageDmsUimVerifyPinOutput *self,
+                                GError **error);
+

Get the result of the QMI operation.

+
+

Parameters

+
+++++ + + + + + + + + + + + + +

self

a QmiMessageDmsUimVerifyPinOutput.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the QMI operation succeeded, FALSE if error +is set.

+
+

Since: 1.0

+
+
+
+

qmi_message_dms_uim_verify_pin_output_get_pin_retries_status ()

+
gboolean
+qmi_message_dms_uim_verify_pin_output_get_pin_retries_status
+                               (QmiMessageDmsUimVerifyPinOutput *self,
+                                guint8 *value_pin_retries_status_verify_retries_left,
+                                guint8 *value_pin_retries_status_unblock_retries_left,
+                                GError **error);
+

Get the 'Pin Retries Status' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + + + + + + +

self

a QmiMessageDmsUimVerifyPinOutput.

 

value_pin_retries_status_verify_retries_left

a placeholder for the output guint8, or NULL if not required.

 

value_pin_retries_status_unblock_retries_left

a placeholder for the output guint8, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.0

+
+
+
+

qmi_client_dms_uim_verify_pin ()

+
void
+qmi_client_dms_uim_verify_pin (QmiClientDms *self,
+                               QmiMessageDmsUimVerifyPinInput *input,
+                               guint timeout,
+                               GCancellable *cancellable,
+                               GAsyncReadyCallback callback,
+                               gpointer user_data);
+

Asynchronously sends a UIM Verify PIN request to the device.

+

When the operation is finished, callback + will be invoked in the thread-default main loop of the thread you are calling this method from.

+

You can then call qmi_client_dms_uim_verify_pin_finish() to get the result of the operation.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

self

a QmiClientDms.

 

input

a QmiMessageDmsUimVerifyPinInput.

 

timeout

maximum time to wait for the method to complete, in seconds.

 

cancellable

a GCancellable or NULL.

 

callback

a GAsyncReadyCallback to call when the request is satisfied.

 

user_data

user data to pass to callback +.

 
+
+

Since: 1.0

+
+
+
+

qmi_client_dms_uim_verify_pin_finish ()

+
QmiMessageDmsUimVerifyPinOutput *
+qmi_client_dms_uim_verify_pin_finish (QmiClientDms *self,
+                                      GAsyncResult *res,
+                                      GError **error);
+

Finishes an async operation started with qmi_client_dms_uim_verify_pin().

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiClientDms.

 

res

the GAsyncResult obtained from the GAsyncReadyCallback passed to qmi_client_dms_uim_verify_pin().

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

a QmiMessageDmsUimVerifyPinOutput, or NULL if error +is set. The returned value should be freed with qmi_message_dms_uim_verify_pin_output_unref().

+
+

Since: 1.0

+
+
+
+

Types and Values

+
+

QmiMessageDmsUimVerifyPinInput

+
typedef struct _QmiMessageDmsUimVerifyPinInput QmiMessageDmsUimVerifyPinInput;
+

The QmiMessageDmsUimVerifyPinInput structure contains private data and should only be accessed +using the provided API.

+

Since: 1.0

+
+
+
+

QmiMessageDmsUimVerifyPinOutput

+
typedef struct _QmiMessageDmsUimVerifyPinOutput QmiMessageDmsUimVerifyPinOutput;
+

The QmiMessageDmsUimVerifyPinOutput structure contains private data and should only be accessed +using the provided API.

+

Since: 1.0

+
+
+
+ + + \ No newline at end of file diff -Nru libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-DMS-Validate-Service-Programming-Code.html libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-DMS-Validate-Service-Programming-Code.html --- libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-DMS-Validate-Service-Programming-Code.html 2017-03-22 12:28:29.000000000 +0100 +++ libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-DMS-Validate-Service-Programming-Code.html 1970-01-01 01:00:00.000000000 +0100 @@ -1,532 +0,0 @@ - - - - -DMS Validate Service Programming Code: libqmi-glib Reference Manual - - - - - - - - - - - - - - - - -
-
-
- - -
-

DMS Validate Service Programming Code

-

DMS Validate Service Programming Code

-
- - -
-

Object Hierarchy

-
    GBoxed
-    ├── QmiMessageDmsValidateServiceProgrammingCodeInput
-    ╰── QmiMessageDmsValidateServiceProgrammingCodeOutput
-
-
-
-

Description

-
-
-

Functions

-
-

qmi_message_dms_validate_service_programming_code_input_new ()

-
QmiMessageDmsValidateServiceProgrammingCodeInput *
-qmi_message_dms_validate_service_programming_code_input_new
-                               (void);
-

Allocates a new QmiMessageDmsValidateServiceProgrammingCodeInput.

-
-

Returns

-

the newly created QmiMessageDmsValidateServiceProgrammingCodeInput. The returned value should be freed with qmi_message_dms_validate_service_programming_code_input_unref().

-
-

Since: 1.0

-
-
-
-

qmi_message_dms_validate_service_programming_code_input_ref ()

-
QmiMessageDmsValidateServiceProgrammingCodeInput *
-qmi_message_dms_validate_service_programming_code_input_ref
-                               (QmiMessageDmsValidateServiceProgrammingCodeInput *self);
-

Atomically increments the reference count of self - by one.

-
-

Parameters

- -
-
-

Returns

-

the new reference to self -.

-
-

Since: 1.0

-
-
-
-

qmi_message_dms_validate_service_programming_code_input_unref ()

-
void
-qmi_message_dms_validate_service_programming_code_input_unref
-                               (QmiMessageDmsValidateServiceProgrammingCodeInput *self);
-

Atomically decrements the reference count of self - by one. -If the reference count drops to 0, self - is completely disposed.

-
-

Parameters

- -
-

Since: 1.0

-
-
-
-

qmi_message_dms_validate_service_programming_code_input_get_service_programming_code ()

-
gboolean
-qmi_message_dms_validate_service_programming_code_input_get_service_programming_code
-                               (QmiMessageDmsValidateServiceProgrammingCodeInput *self,
-                                const gchar **value_service_programming_code,
-                                GError **error);
-

Get the 'Service Programming Code' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessageDmsValidateServiceProgrammingCodeInput.

 

value_service_programming_code

a placeholder for the output constant string, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.0

-
-
-
-

qmi_message_dms_validate_service_programming_code_input_set_service_programming_code ()

-
gboolean
-qmi_message_dms_validate_service_programming_code_input_set_service_programming_code
-                               (QmiMessageDmsValidateServiceProgrammingCodeInput *self,
-                                const gchar *value_service_programming_code,
-                                GError **error);
-

Set the 'Service Programming Code' field in the message.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessageDmsValidateServiceProgrammingCodeInput.

 

value_service_programming_code

a constant string of exactly 6 characters.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if value -was successfully set, FALSE otherwise.

-
-

Since: 1.0

-
-
-
-

qmi_message_dms_validate_service_programming_code_output_ref ()

-
QmiMessageDmsValidateServiceProgrammingCodeOutput *
-qmi_message_dms_validate_service_programming_code_output_ref
-                               (QmiMessageDmsValidateServiceProgrammingCodeOutput *self);
-

Atomically increments the reference count of self - by one.

-
-

Parameters

- -
-
-

Returns

-

the new reference to self -.

-
-

Since: 1.0

-
-
-
-

qmi_message_dms_validate_service_programming_code_output_unref ()

-
void
-qmi_message_dms_validate_service_programming_code_output_unref
-                               (QmiMessageDmsValidateServiceProgrammingCodeOutput *self);
-

Atomically decrements the reference count of self - by one. -If the reference count drops to 0, self - is completely disposed.

-
-

Parameters

- -
-

Since: 1.0

-
-
-
-

qmi_message_dms_validate_service_programming_code_output_get_result ()

-
gboolean
-qmi_message_dms_validate_service_programming_code_output_get_result
-                               (QmiMessageDmsValidateServiceProgrammingCodeOutput *self,
-                                GError **error);
-

Get the result of the QMI operation.

-
-

Parameters

-
----- - - - - - - - - - - - - -

self

a QmiMessageDmsValidateServiceProgrammingCodeOutput.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the QMI operation succeeded, FALSE if error -is set.

-
-

Since: 1.0

-
-
-
-

qmi_client_dms_validate_service_programming_code ()

-
void
-qmi_client_dms_validate_service_programming_code
-                               (QmiClientDms *self,
-                                QmiMessageDmsValidateServiceProgrammingCodeInput *input,
-                                guint timeout,
-                                GCancellable *cancellable,
-                                GAsyncReadyCallback callback,
-                                gpointer user_data);
-

Asynchronously sends a Validate Service Programming Code request to the device.

-

When the operation is finished, callback - will be invoked in the thread-default main loop of the thread you are calling this method from.

-

You can then call qmi_client_dms_validate_service_programming_code_finish() to get the result of the operation.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

self

a QmiClientDms.

 

input

a QmiMessageDmsValidateServiceProgrammingCodeInput.

 

timeout

maximum time to wait for the method to complete, in seconds.

 

cancellable

a GCancellable or NULL.

 

callback

a GAsyncReadyCallback to call when the request is satisfied.

 

user_data

user data to pass to callback -.

 
-
-

Since: 1.0

-
-
-
-

qmi_client_dms_validate_service_programming_code_finish ()

-
QmiMessageDmsValidateServiceProgrammingCodeOutput *
-qmi_client_dms_validate_service_programming_code_finish
-                               (QmiClientDms *self,
-                                GAsyncResult *res,
-                                GError **error);
-

Finishes an async operation started with qmi_client_dms_validate_service_programming_code().

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiClientDms.

 

res

the GAsyncResult obtained from the GAsyncReadyCallback passed to qmi_client_dms_validate_service_programming_code().

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

a QmiMessageDmsValidateServiceProgrammingCodeOutput, or NULL if error -is set. The returned value should be freed with qmi_message_dms_validate_service_programming_code_output_unref().

-
-

Since: 1.0

-
-
-
-

Types and Values

-
-

QmiMessageDmsValidateServiceProgrammingCodeInput

-
typedef struct _QmiMessageDmsValidateServiceProgrammingCodeInput QmiMessageDmsValidateServiceProgrammingCodeInput;
-

The QmiMessageDmsValidateServiceProgrammingCodeInput structure contains private data and should only be accessed -using the provided API.

-

Since: 1.0

-
-
-
-

QmiMessageDmsValidateServiceProgrammingCodeOutput

-
typedef struct _QmiMessageDmsValidateServiceProgrammingCodeOutput QmiMessageDmsValidateServiceProgrammingCodeOutput;
-

The QmiMessageDmsValidateServiceProgrammingCodeOutput structure contains private data and should only be accessed -using the provided API.

-

Since: 1.0

-
-
-
- - - \ No newline at end of file diff -Nru libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-DMS-Validate-Service-Programming-Code-request.html libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-DMS-Validate-Service-Programming-Code-request.html --- libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-DMS-Validate-Service-Programming-Code-request.html 1970-01-01 01:00:00.000000000 +0100 +++ libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-DMS-Validate-Service-Programming-Code-request.html 2019-01-08 15:19:01.000000000 +0100 @@ -0,0 +1,532 @@ + + + + +DMS Validate Service Programming Code request: libqmi-glib Reference Manual + + + + + + + + + + + + + + + + +
+
+
+ + +
+

DMS Validate Service Programming Code request

+

DMS Validate Service Programming Code request

+
+ + +
+

Object Hierarchy

+
    GBoxed
+    ├── QmiMessageDmsValidateServiceProgrammingCodeInput
+    ╰── QmiMessageDmsValidateServiceProgrammingCodeOutput
+
+
+
+

Description

+
+
+

Functions

+
+

qmi_message_dms_validate_service_programming_code_input_new ()

+
QmiMessageDmsValidateServiceProgrammingCodeInput *
+qmi_message_dms_validate_service_programming_code_input_new
+                               (void);
+

Allocates a new QmiMessageDmsValidateServiceProgrammingCodeInput.

+
+

Returns

+

the newly created QmiMessageDmsValidateServiceProgrammingCodeInput. The returned value should be freed with qmi_message_dms_validate_service_programming_code_input_unref().

+
+

Since: 1.0

+
+
+
+

qmi_message_dms_validate_service_programming_code_input_ref ()

+
QmiMessageDmsValidateServiceProgrammingCodeInput *
+qmi_message_dms_validate_service_programming_code_input_ref
+                               (QmiMessageDmsValidateServiceProgrammingCodeInput *self);
+

Atomically increments the reference count of self + by one.

+
+

Parameters

+ +
+
+

Returns

+

the new reference to self +.

+
+

Since: 1.0

+
+
+
+

qmi_message_dms_validate_service_programming_code_input_unref ()

+
void
+qmi_message_dms_validate_service_programming_code_input_unref
+                               (QmiMessageDmsValidateServiceProgrammingCodeInput *self);
+

Atomically decrements the reference count of self + by one. +If the reference count drops to 0, self + is completely disposed.

+
+

Parameters

+ +
+

Since: 1.0

+
+
+
+

qmi_message_dms_validate_service_programming_code_input_get_service_programming_code ()

+
gboolean
+qmi_message_dms_validate_service_programming_code_input_get_service_programming_code
+                               (QmiMessageDmsValidateServiceProgrammingCodeInput *self,
+                                const gchar **value_service_programming_code,
+                                GError **error);
+

Get the 'Service Programming Code' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageDmsValidateServiceProgrammingCodeInput.

 

value_service_programming_code

a placeholder for the output constant string, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.0

+
+
+
+

qmi_message_dms_validate_service_programming_code_input_set_service_programming_code ()

+
gboolean
+qmi_message_dms_validate_service_programming_code_input_set_service_programming_code
+                               (QmiMessageDmsValidateServiceProgrammingCodeInput *self,
+                                const gchar *value_service_programming_code,
+                                GError **error);
+

Set the 'Service Programming Code' field in the message.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageDmsValidateServiceProgrammingCodeInput.

 

value_service_programming_code

a constant string of exactly 6 characters.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if value +was successfully set, FALSE otherwise.

+
+

Since: 1.0

+
+
+
+

qmi_message_dms_validate_service_programming_code_output_ref ()

+
QmiMessageDmsValidateServiceProgrammingCodeOutput *
+qmi_message_dms_validate_service_programming_code_output_ref
+                               (QmiMessageDmsValidateServiceProgrammingCodeOutput *self);
+

Atomically increments the reference count of self + by one.

+
+

Parameters

+ +
+
+

Returns

+

the new reference to self +.

+
+

Since: 1.0

+
+
+
+

qmi_message_dms_validate_service_programming_code_output_unref ()

+
void
+qmi_message_dms_validate_service_programming_code_output_unref
+                               (QmiMessageDmsValidateServiceProgrammingCodeOutput *self);
+

Atomically decrements the reference count of self + by one. +If the reference count drops to 0, self + is completely disposed.

+
+

Parameters

+ +
+

Since: 1.0

+
+
+
+

qmi_message_dms_validate_service_programming_code_output_get_result ()

+
gboolean
+qmi_message_dms_validate_service_programming_code_output_get_result
+                               (QmiMessageDmsValidateServiceProgrammingCodeOutput *self,
+                                GError **error);
+

Get the result of the QMI operation.

+
+

Parameters

+
+++++ + + + + + + + + + + + + +

self

a QmiMessageDmsValidateServiceProgrammingCodeOutput.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the QMI operation succeeded, FALSE if error +is set.

+
+

Since: 1.0

+
+
+
+

qmi_client_dms_validate_service_programming_code ()

+
void
+qmi_client_dms_validate_service_programming_code
+                               (QmiClientDms *self,
+                                QmiMessageDmsValidateServiceProgrammingCodeInput *input,
+                                guint timeout,
+                                GCancellable *cancellable,
+                                GAsyncReadyCallback callback,
+                                gpointer user_data);
+

Asynchronously sends a Validate Service Programming Code request to the device.

+

When the operation is finished, callback + will be invoked in the thread-default main loop of the thread you are calling this method from.

+

You can then call qmi_client_dms_validate_service_programming_code_finish() to get the result of the operation.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

self

a QmiClientDms.

 

input

a QmiMessageDmsValidateServiceProgrammingCodeInput.

 

timeout

maximum time to wait for the method to complete, in seconds.

 

cancellable

a GCancellable or NULL.

 

callback

a GAsyncReadyCallback to call when the request is satisfied.

 

user_data

user data to pass to callback +.

 
+
+

Since: 1.0

+
+
+
+

qmi_client_dms_validate_service_programming_code_finish ()

+
QmiMessageDmsValidateServiceProgrammingCodeOutput *
+qmi_client_dms_validate_service_programming_code_finish
+                               (QmiClientDms *self,
+                                GAsyncResult *res,
+                                GError **error);
+

Finishes an async operation started with qmi_client_dms_validate_service_programming_code().

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiClientDms.

 

res

the GAsyncResult obtained from the GAsyncReadyCallback passed to qmi_client_dms_validate_service_programming_code().

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

a QmiMessageDmsValidateServiceProgrammingCodeOutput, or NULL if error +is set. The returned value should be freed with qmi_message_dms_validate_service_programming_code_output_unref().

+
+

Since: 1.0

+
+
+
+

Types and Values

+
+

QmiMessageDmsValidateServiceProgrammingCodeInput

+
typedef struct _QmiMessageDmsValidateServiceProgrammingCodeInput QmiMessageDmsValidateServiceProgrammingCodeInput;
+

The QmiMessageDmsValidateServiceProgrammingCodeInput structure contains private data and should only be accessed +using the provided API.

+

Since: 1.0

+
+
+
+

QmiMessageDmsValidateServiceProgrammingCodeOutput

+
typedef struct _QmiMessageDmsValidateServiceProgrammingCodeOutput QmiMessageDmsValidateServiceProgrammingCodeOutput;
+

The QmiMessageDmsValidateServiceProgrammingCodeOutput structure contains private data and should only be accessed +using the provided API.

+

Since: 1.0

+
+
+
+ + + \ No newline at end of file diff -Nru libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-DMS-Write-User-Data.html libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-DMS-Write-User-Data.html --- libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-DMS-Write-User-Data.html 2017-03-22 12:28:29.000000000 +0100 +++ libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-DMS-Write-User-Data.html 1970-01-01 01:00:00.000000000 +0100 @@ -1,532 +0,0 @@ - - - - -DMS Write User Data: libqmi-glib Reference Manual - - - - - - - - - - - - - - - - -
-
-
- - -
-

DMS Write User Data

-

DMS Write User Data

-
- -
-

Types and Values

- -
-
-

Object Hierarchy

-
    GBoxed
-    ├── QmiMessageDmsWriteUserDataInput
-    ╰── QmiMessageDmsWriteUserDataOutput
-
-
-
-

Description

-
-
-

Functions

-
-

qmi_message_dms_write_user_data_input_new ()

-
QmiMessageDmsWriteUserDataInput *
-qmi_message_dms_write_user_data_input_new
-                               (void);
-

Allocates a new QmiMessageDmsWriteUserDataInput.

-
-

Returns

-

the newly created QmiMessageDmsWriteUserDataInput. The returned value should be freed with qmi_message_dms_write_user_data_input_unref().

-
-

Since: 1.0

-
-
-
-

qmi_message_dms_write_user_data_input_ref ()

-
QmiMessageDmsWriteUserDataInput *
-qmi_message_dms_write_user_data_input_ref
-                               (QmiMessageDmsWriteUserDataInput *self);
-

Atomically increments the reference count of self - by one.

-
-

Parameters

-
----- - - - - - -

self

a QmiMessageDmsWriteUserDataInput.

 
-
-
-

Returns

-

the new reference to self -.

-
-

Since: 1.0

-
-
-
-

qmi_message_dms_write_user_data_input_unref ()

-
void
-qmi_message_dms_write_user_data_input_unref
-                               (QmiMessageDmsWriteUserDataInput *self);
-

Atomically decrements the reference count of self - by one. -If the reference count drops to 0, self - is completely disposed.

-
-

Parameters

-
----- - - - - - -

self

a QmiMessageDmsWriteUserDataInput.

 
-
-

Since: 1.0

-
-
-
-

qmi_message_dms_write_user_data_input_get_user_data ()

-
gboolean
-qmi_message_dms_write_user_data_input_get_user_data
-                               (QmiMessageDmsWriteUserDataInput *self,
-                                GArray **value_user_data,
-                                GError **error);
-

Get the 'User Data' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessageDmsWriteUserDataInput.

 

value_user_data

a placeholder for the output GArray of guint8 elements, or NULL if not required. Do not free it, it is owned by self -.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.0

-
-
-
-

qmi_message_dms_write_user_data_input_set_user_data ()

-
gboolean
-qmi_message_dms_write_user_data_input_set_user_data
-                               (QmiMessageDmsWriteUserDataInput *self,
-                                GArray *value_user_data,
-                                GError **error);
-

Set the 'User Data' field in the message.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessageDmsWriteUserDataInput.

 

value_user_data

a GArray of guint8 elements. A new reference to value_user_data -will be taken.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if value -was successfully set, FALSE otherwise.

-
-

Since: 1.0

-
-
-
-

qmi_message_dms_write_user_data_output_ref ()

-
QmiMessageDmsWriteUserDataOutput *
-qmi_message_dms_write_user_data_output_ref
-                               (QmiMessageDmsWriteUserDataOutput *self);
-

Atomically increments the reference count of self - by one.

-
-

Parameters

-
----- - - - - - -

self

a QmiMessageDmsWriteUserDataOutput.

 
-
-
-

Returns

-

the new reference to self -.

-
-

Since: 1.0

-
-
-
-

qmi_message_dms_write_user_data_output_unref ()

-
void
-qmi_message_dms_write_user_data_output_unref
-                               (QmiMessageDmsWriteUserDataOutput *self);
-

Atomically decrements the reference count of self - by one. -If the reference count drops to 0, self - is completely disposed.

-
-

Parameters

-
----- - - - - - -

self

a QmiMessageDmsWriteUserDataOutput.

 
-
-

Since: 1.0

-
-
-
-

qmi_message_dms_write_user_data_output_get_result ()

-
gboolean
-qmi_message_dms_write_user_data_output_get_result
-                               (QmiMessageDmsWriteUserDataOutput *self,
-                                GError **error);
-

Get the result of the QMI operation.

-
-

Parameters

-
----- - - - - - - - - - - - - -

self

a QmiMessageDmsWriteUserDataOutput.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the QMI operation succeeded, FALSE if error -is set.

-
-

Since: 1.0

-
-
-
-

qmi_client_dms_write_user_data ()

-
void
-qmi_client_dms_write_user_data (QmiClientDms *self,
-                                QmiMessageDmsWriteUserDataInput *input,
-                                guint timeout,
-                                GCancellable *cancellable,
-                                GAsyncReadyCallback callback,
-                                gpointer user_data);
-

Asynchronously sends a Write User Data request to the device.

-

When the operation is finished, callback - will be invoked in the thread-default main loop of the thread you are calling this method from.

-

You can then call qmi_client_dms_write_user_data_finish() to get the result of the operation.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

self

a QmiClientDms.

 

input

a QmiMessageDmsWriteUserDataInput.

 

timeout

maximum time to wait for the method to complete, in seconds.

 

cancellable

a GCancellable or NULL.

 

callback

a GAsyncReadyCallback to call when the request is satisfied.

 

user_data

user data to pass to callback -.

 
-
-

Since: 1.0

-
-
-
-

qmi_client_dms_write_user_data_finish ()

-
QmiMessageDmsWriteUserDataOutput *
-qmi_client_dms_write_user_data_finish (QmiClientDms *self,
-                                       GAsyncResult *res,
-                                       GError **error);
-

Finishes an async operation started with qmi_client_dms_write_user_data().

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiClientDms.

 

res

the GAsyncResult obtained from the GAsyncReadyCallback passed to qmi_client_dms_write_user_data().

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

a QmiMessageDmsWriteUserDataOutput, or NULL if error -is set. The returned value should be freed with qmi_message_dms_write_user_data_output_unref().

-
-

Since: 1.0

-
-
-
-

Types and Values

-
-

QmiMessageDmsWriteUserDataInput

-
typedef struct _QmiMessageDmsWriteUserDataInput QmiMessageDmsWriteUserDataInput;
-

The QmiMessageDmsWriteUserDataInput structure contains private data and should only be accessed -using the provided API.

-

Since: 1.0

-
-
-
-

QmiMessageDmsWriteUserDataOutput

-
typedef struct _QmiMessageDmsWriteUserDataOutput QmiMessageDmsWriteUserDataOutput;
-

The QmiMessageDmsWriteUserDataOutput structure contains private data and should only be accessed -using the provided API.

-

Since: 1.0

-
-
-
- - - \ No newline at end of file diff -Nru libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-DMS-Write-User-Data-request.html libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-DMS-Write-User-Data-request.html --- libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-DMS-Write-User-Data-request.html 1970-01-01 01:00:00.000000000 +0100 +++ libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-DMS-Write-User-Data-request.html 2019-01-08 15:19:01.000000000 +0100 @@ -0,0 +1,532 @@ + + + + +DMS Write User Data request: libqmi-glib Reference Manual + + + + + + + + + + + + + + + + +
+
+
+ + +
+

DMS Write User Data request

+

DMS Write User Data request

+
+ +
+

Types and Values

+ +
+
+

Object Hierarchy

+
    GBoxed
+    ├── QmiMessageDmsWriteUserDataInput
+    ╰── QmiMessageDmsWriteUserDataOutput
+
+
+
+

Description

+
+
+

Functions

+
+

qmi_message_dms_write_user_data_input_new ()

+
QmiMessageDmsWriteUserDataInput *
+qmi_message_dms_write_user_data_input_new
+                               (void);
+

Allocates a new QmiMessageDmsWriteUserDataInput.

+
+

Returns

+

the newly created QmiMessageDmsWriteUserDataInput. The returned value should be freed with qmi_message_dms_write_user_data_input_unref().

+
+

Since: 1.0

+
+
+
+

qmi_message_dms_write_user_data_input_ref ()

+
QmiMessageDmsWriteUserDataInput *
+qmi_message_dms_write_user_data_input_ref
+                               (QmiMessageDmsWriteUserDataInput *self);
+

Atomically increments the reference count of self + by one.

+
+

Parameters

+
+++++ + + + + + +

self

a QmiMessageDmsWriteUserDataInput.

 
+
+
+

Returns

+

the new reference to self +.

+
+

Since: 1.0

+
+
+
+

qmi_message_dms_write_user_data_input_unref ()

+
void
+qmi_message_dms_write_user_data_input_unref
+                               (QmiMessageDmsWriteUserDataInput *self);
+

Atomically decrements the reference count of self + by one. +If the reference count drops to 0, self + is completely disposed.

+
+

Parameters

+
+++++ + + + + + +

self

a QmiMessageDmsWriteUserDataInput.

 
+
+

Since: 1.0

+
+
+
+

qmi_message_dms_write_user_data_input_get_user_data ()

+
gboolean
+qmi_message_dms_write_user_data_input_get_user_data
+                               (QmiMessageDmsWriteUserDataInput *self,
+                                GArray **value_user_data,
+                                GError **error);
+

Get the 'User Data' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageDmsWriteUserDataInput.

 

value_user_data

a placeholder for the output GArray of guint8 elements, or NULL if not required. Do not free it, it is owned by self +.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.0

+
+
+
+

qmi_message_dms_write_user_data_input_set_user_data ()

+
gboolean
+qmi_message_dms_write_user_data_input_set_user_data
+                               (QmiMessageDmsWriteUserDataInput *self,
+                                GArray *value_user_data,
+                                GError **error);
+

Set the 'User Data' field in the message.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageDmsWriteUserDataInput.

 

value_user_data

a GArray of guint8 elements. A new reference to value_user_data +will be taken.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if value +was successfully set, FALSE otherwise.

+
+

Since: 1.0

+
+
+
+

qmi_message_dms_write_user_data_output_ref ()

+
QmiMessageDmsWriteUserDataOutput *
+qmi_message_dms_write_user_data_output_ref
+                               (QmiMessageDmsWriteUserDataOutput *self);
+

Atomically increments the reference count of self + by one.

+
+

Parameters

+
+++++ + + + + + +

self

a QmiMessageDmsWriteUserDataOutput.

 
+
+
+

Returns

+

the new reference to self +.

+
+

Since: 1.0

+
+
+
+

qmi_message_dms_write_user_data_output_unref ()

+
void
+qmi_message_dms_write_user_data_output_unref
+                               (QmiMessageDmsWriteUserDataOutput *self);
+

Atomically decrements the reference count of self + by one. +If the reference count drops to 0, self + is completely disposed.

+
+

Parameters

+
+++++ + + + + + +

self

a QmiMessageDmsWriteUserDataOutput.

 
+
+

Since: 1.0

+
+
+
+

qmi_message_dms_write_user_data_output_get_result ()

+
gboolean
+qmi_message_dms_write_user_data_output_get_result
+                               (QmiMessageDmsWriteUserDataOutput *self,
+                                GError **error);
+

Get the result of the QMI operation.

+
+

Parameters

+
+++++ + + + + + + + + + + + + +

self

a QmiMessageDmsWriteUserDataOutput.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the QMI operation succeeded, FALSE if error +is set.

+
+

Since: 1.0

+
+
+
+

qmi_client_dms_write_user_data ()

+
void
+qmi_client_dms_write_user_data (QmiClientDms *self,
+                                QmiMessageDmsWriteUserDataInput *input,
+                                guint timeout,
+                                GCancellable *cancellable,
+                                GAsyncReadyCallback callback,
+                                gpointer user_data);
+

Asynchronously sends a Write User Data request to the device.

+

When the operation is finished, callback + will be invoked in the thread-default main loop of the thread you are calling this method from.

+

You can then call qmi_client_dms_write_user_data_finish() to get the result of the operation.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

self

a QmiClientDms.

 

input

a QmiMessageDmsWriteUserDataInput.

 

timeout

maximum time to wait for the method to complete, in seconds.

 

cancellable

a GCancellable or NULL.

 

callback

a GAsyncReadyCallback to call when the request is satisfied.

 

user_data

user data to pass to callback +.

 
+
+

Since: 1.0

+
+
+
+

qmi_client_dms_write_user_data_finish ()

+
QmiMessageDmsWriteUserDataOutput *
+qmi_client_dms_write_user_data_finish (QmiClientDms *self,
+                                       GAsyncResult *res,
+                                       GError **error);
+

Finishes an async operation started with qmi_client_dms_write_user_data().

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiClientDms.

 

res

the GAsyncResult obtained from the GAsyncReadyCallback passed to qmi_client_dms_write_user_data().

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

a QmiMessageDmsWriteUserDataOutput, or NULL if error +is set. The returned value should be freed with qmi_message_dms_write_user_data_output_unref().

+
+

Since: 1.0

+
+
+
+

Types and Values

+
+

QmiMessageDmsWriteUserDataInput

+
typedef struct _QmiMessageDmsWriteUserDataInput QmiMessageDmsWriteUserDataInput;
+

The QmiMessageDmsWriteUserDataInput structure contains private data and should only be accessed +using the provided API.

+

Since: 1.0

+
+
+
+

QmiMessageDmsWriteUserDataOutput

+
typedef struct _QmiMessageDmsWriteUserDataOutput QmiMessageDmsWriteUserDataOutput;
+

The QmiMessageDmsWriteUserDataOutput structure contains private data and should only be accessed +using the provided API.

+

Since: 1.0

+
+
+
+ + + \ No newline at end of file diff -Nru libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-Errors.html libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-Errors.html --- libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-Errors.html 2017-03-22 12:28:29.000000000 +0100 +++ libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-Errors.html 2019-01-08 15:19:01.000000000 +0100 @@ -3,12 +3,12 @@ Errors: libqmi-glib Reference Manual - + - + @@ -78,7 +78,7 @@

Object Hierarchy

-
    GEnum
+
    GEnum
     ├── QmiCoreError
     ╰── QmiProtocolError
 
@@ -112,7 +112,7 @@

Returns

-

a string with the nickname, or NULL if not found. Do not free the returned value.

+

a string with the nickname, or NULL if not found. Do not free the returned value.

[transfer none]

Since: 1.0

@@ -141,7 +141,7 @@

Returns

-

a string with the nickname, or NULL if not found. Do not free the returned value.

+

a string with the nickname, or NULL if not found. Do not free the returned value.

[transfer none]

Since: 1.0

@@ -220,7 +220,7 @@

QMI_CORE_ERROR_TLV_EMPTY

-

TLV has no value. Since: 1.12.

+

TLV has no value. Empty TLVs are not a real error, so this error type is never generated. Since: 1.12. Deprecated: 1.22.

  @@ -523,9 +523,16 @@   -

QMI_PROTOCOL_ERROR_QOS_UNAVAILABLE

+

QMI_PROTOCOL_ERROR_REQUESTED_NUMBER_UNSUPPORTED

-

QoS unavailable.

+

Requested number unsupported. Since: 1.22.

+ +  + + +

QMI_PROTOCOL_ERROR_INTERFACE_NOT_FOUND

+ +

Interface not found. Since: 1.22.

  @@ -537,6 +544,13 @@   +

QMI_PROTOCOL_ERROR_INVALID_DATA_FORMAT

+ +

Invalid data format. Since: 1.22.

+ +  + +

QMI_PROTOCOL_ERROR_GENERAL_ERROR

General error.

@@ -642,6 +656,34 @@   +

QMI_PROTOCOL_ERROR_NOT_MCAST_INTERFACE

+ +

Not a multicast interface. Since: 1.22.

+ +  + + +

QMI_PROTOCOL_ERROR_MAXIMUM_MCAST_REQUESTS_IN_USE

+ +

Maximum multicast requests in use. Since: 1.22.

+ +  + + +

QMI_PROTOCOL_ERROR_INVALID_MCAST_HANDLE

+ +

Invalid mulitcast handle. Since: 1.22.

+ +  + + +

QMI_PROTOCOL_ERROR_INVALID_IP_FAMILY_PREFERENCE

+ +

Invalid IP family preference. Since: 1.22.

+ +  + +

QMI_PROTOCOL_ERROR_SESSION_INACTIVE

Session inactive.

@@ -733,6 +775,13 @@   +

QMI_PROTOCOL_ERROR_OPERATION_PARTIAL_FAILURE

+ +

Operation partial failure. Since: 1.22.

+ +  + +

QMI_PROTOCOL_ERROR_POLICY_MISMATCH

Policy mismatch. Since: 1.6.

@@ -908,6 +957,13 @@   +

QMI_PROTOCOL_ERROR_PB_DELETE_IN_PROGRESS

+ +

PB delete in progress. Since: 1.22.

+ +  + +

QMI_PROTOCOL_ERROR_PB_TEXT_TOO_LONG

PB text too long. Since: 1.6.

@@ -929,6 +985,111 @@   +

QMI_PROTOCOL_ERROR_PB_NOT_AVAILABLE

+ +

PB not available. Since: 1.22.

+ +  + + +

QMI_PROTOCOL_ERROR_DEVICE_MEMORY_ERROR

+ +

Device memory error. Since: 1.22.

+ +  + + +

QMI_PROTOCOL_ERROR_NO_PERMISSION

+ +

No permission. Since: 1.22.

+ +  + + +

QMI_PROTOCOL_ERROR_TOO_SOON

+ +

Too soon. Since: 1.22.

+ +  + + +

QMI_PROTOCOL_ERROR_TIME_NOT_ACQUIRED

+ +

Time not acquired. Since: 1.22.

+ +  + + +

QMI_PROTOCOL_ERROR_OPERATION_IN_PROGRESS

+ +

Operation in progress. Since: 1.22.

+ +  + + +

QMI_PROTOCOL_ERROR_FW_WRITE_FAILED

+ +

Firmware write failed. Since: 1.22.

+ +  + + +

QMI_PROTOCOL_ERROR_FW_INFO_READ_FAILED

+ +

Firmware info read failed. Since: 1.22.

+ +  + + +

QMI_PROTOCOL_ERROR_FW_FILE_NOT_FOUND

+ +

Firmware file not found. Since: 1.22.

+ +  + + +

QMI_PROTOCOL_ERROR_FW_DIR_NOT_FOUND

+ +

Firmware dir not found. Since: 1.22.

+ +  + + +

QMI_PROTOCOL_ERROR_FW_ALREADY_ACTIVATED

+ +

Firmware already activated. Since: 1.22.

+ +  + + +

QMI_PROTOCOL_ERROR_FW_CANNOT_GENERIC_IMAGE

+ +

Firmware cannot generic image. Since: 1.22.

+ +  + + +

QMI_PROTOCOL_ERROR_FW_FILE_OPEN_FAILED

+ +

Firmware file open failed. Since: 1.22.

+ +  + + +

QMI_PROTOCOL_ERROR_FW_UPDATE_DISCONTINUOUS_FRAME

+ +

Firmware update discontinuous frame. Since: 1.22.

+ +  + + +

QMI_PROTOCOL_ERROR_FW_UPDATE_FAILED

+ +

Firmware update failed. Since: 1.22.

+ +  + +

QMI_PROTOCOL_ERROR_CAT_EVENT_REGISTRATION_FAILED

Event registration failed.

@@ -971,6 +1132,6 @@ +
Generated by GTK-Doc V1.29 \ No newline at end of file diff -Nru libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-LOC-Delete-Assistance-Data-indication.html libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-LOC-Delete-Assistance-Data-indication.html --- libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-LOC-Delete-Assistance-Data-indication.html 1970-01-01 01:00:00.000000000 +0100 +++ libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-LOC-Delete-Assistance-Data-indication.html 2019-01-08 15:19:01.000000000 +0100 @@ -0,0 +1,208 @@ + + + + +LOC Delete Assistance Data indication: libqmi-glib Reference Manual + + + + + + + + + + + + + + + + +
+
+
+ + +
+

LOC Delete Assistance Data indication

+

LOC Delete Assistance Data indication

+
+ +
+

Types and Values

+ +
+
+

Object Hierarchy

+
    GBoxed
+    ╰── QmiIndicationLocDeleteAssistanceDataOutput
+
+
+
+

Description

+
+
+

Functions

+
+

qmi_indication_loc_delete_assistance_data_output_ref ()

+
QmiIndicationLocDeleteAssistanceDataOutput *
+qmi_indication_loc_delete_assistance_data_output_ref
+                               (QmiIndicationLocDeleteAssistanceDataOutput *self);
+

Atomically increments the reference count of self + by one.

+
+

Parameters

+
+++++ + + + + + +

self

a QmiIndicationLocDeleteAssistanceDataOutput.

 
+
+
+

Returns

+

the new reference to self +.

+
+

Since: 1.22

+
+
+
+

qmi_indication_loc_delete_assistance_data_output_unref ()

+
void
+qmi_indication_loc_delete_assistance_data_output_unref
+                               (QmiIndicationLocDeleteAssistanceDataOutput *self);
+

Atomically decrements the reference count of self + by one. +If the reference count drops to 0, self + is completely disposed.

+
+

Parameters

+
+++++ + + + + + +

self

a QmiIndicationLocDeleteAssistanceDataOutput.

 
+
+

Since: 1.22

+
+
+
+

qmi_indication_loc_delete_assistance_data_output_get_indication_status ()

+
gboolean
+qmi_indication_loc_delete_assistance_data_output_get_indication_status
+                               (QmiIndicationLocDeleteAssistanceDataOutput *self,
+                                QmiLocIndicationStatus *value_indication_status,
+                                GError **error);
+

Get the 'Indication Status' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiIndicationLocDeleteAssistanceDataOutput.

 

value_indication_status

a placeholder for the output QmiLocIndicationStatus, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.22

+
+
+
+

Types and Values

+
+

QmiIndicationLocDeleteAssistanceDataOutput

+
typedef struct _QmiIndicationLocDeleteAssistanceDataOutput QmiIndicationLocDeleteAssistanceDataOutput;
+

The QmiIndicationLocDeleteAssistanceDataOutput structure contains private data and should only be accessed +using the provided API.

+

Since: 1.22

+
+
+
+ + + \ No newline at end of file diff -Nru libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-LOC-Delete-Assistance-Data-request.html libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-LOC-Delete-Assistance-Data-request.html --- libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-LOC-Delete-Assistance-Data-request.html 1970-01-01 01:00:00.000000000 +0100 +++ libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-LOC-Delete-Assistance-Data-request.html 2019-01-08 15:19:01.000000000 +0100 @@ -0,0 +1,984 @@ + + + + +LOC Delete Assistance Data request: libqmi-glib Reference Manual + + + + + + + + + + + + + + + + +
+
+
+ + +
+

LOC Delete Assistance Data request

+

LOC Delete Assistance Data request

+
+
+

Functions

+
++++ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+QmiMessageLocDeleteAssistanceDataInput * + +qmi_message_loc_delete_assistance_data_input_new () +
+QmiMessageLocDeleteAssistanceDataInput * + +qmi_message_loc_delete_assistance_data_input_ref () +
+void + +qmi_message_loc_delete_assistance_data_input_unref () +
+gboolean + +qmi_message_loc_delete_assistance_data_input_get_delete_clock_info_mask () +
+gboolean + +qmi_message_loc_delete_assistance_data_input_set_delete_clock_info_mask () +
+gboolean + +qmi_message_loc_delete_assistance_data_input_get_delete_cell_database_mask () +
+gboolean + +qmi_message_loc_delete_assistance_data_input_set_delete_cell_database_mask () +
+gboolean + +qmi_message_loc_delete_assistance_data_input_get_delete_gnss_data_mask () +
+gboolean + +qmi_message_loc_delete_assistance_data_input_set_delete_gnss_data_mask () +
+gboolean + +qmi_message_loc_delete_assistance_data_input_get_delete_sv_info () +
+gboolean + +qmi_message_loc_delete_assistance_data_input_set_delete_sv_info () +
+gboolean + +qmi_message_loc_delete_assistance_data_input_get_delete_all () +
+gboolean + +qmi_message_loc_delete_assistance_data_input_set_delete_all () +
+QmiMessageLocDeleteAssistanceDataOutput * + +qmi_message_loc_delete_assistance_data_output_ref () +
+void + +qmi_message_loc_delete_assistance_data_output_unref () +
+gboolean + +qmi_message_loc_delete_assistance_data_output_get_result () +
+void + +qmi_client_loc_delete_assistance_data () +
+QmiMessageLocDeleteAssistanceDataOutput * + +qmi_client_loc_delete_assistance_data_finish () +
+
+ +
+

Object Hierarchy

+
    GBoxed
+    ├── QmiMessageLocDeleteAssistanceDataInput
+    ╰── QmiMessageLocDeleteAssistanceDataOutput
+
+
+
+

Description

+
+
+

Functions

+
+

qmi_message_loc_delete_assistance_data_input_new ()

+
QmiMessageLocDeleteAssistanceDataInput *
+qmi_message_loc_delete_assistance_data_input_new
+                               (void);
+

Allocates a new QmiMessageLocDeleteAssistanceDataInput.

+
+

Returns

+

the newly created QmiMessageLocDeleteAssistanceDataInput. The returned value should be freed with qmi_message_loc_delete_assistance_data_input_unref().

+
+

Since: 1.22

+
+
+
+

qmi_message_loc_delete_assistance_data_input_ref ()

+
QmiMessageLocDeleteAssistanceDataInput *
+qmi_message_loc_delete_assistance_data_input_ref
+                               (QmiMessageLocDeleteAssistanceDataInput *self);
+

Atomically increments the reference count of self + by one.

+
+

Parameters

+
+++++ + + + + + +

self

a QmiMessageLocDeleteAssistanceDataInput.

 
+
+
+

Returns

+

the new reference to self +.

+
+

Since: 1.22

+
+
+
+

qmi_message_loc_delete_assistance_data_input_unref ()

+
void
+qmi_message_loc_delete_assistance_data_input_unref
+                               (QmiMessageLocDeleteAssistanceDataInput *self);
+

Atomically decrements the reference count of self + by one. +If the reference count drops to 0, self + is completely disposed.

+
+

Parameters

+
+++++ + + + + + +

self

a QmiMessageLocDeleteAssistanceDataInput.

 
+
+

Since: 1.22

+
+
+
+

qmi_message_loc_delete_assistance_data_input_get_delete_clock_info_mask ()

+
gboolean
+qmi_message_loc_delete_assistance_data_input_get_delete_clock_info_mask
+                               (QmiMessageLocDeleteAssistanceDataInput *self,
+                                QmiLocDeleteClockInfo *value_delete_clock_info_mask,
+                                GError **error);
+

Get the 'Delete Clock Info Mask' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageLocDeleteAssistanceDataInput.

 

value_delete_clock_info_mask

a placeholder for the output QmiLocDeleteClockInfo, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.22

+
+
+
+

qmi_message_loc_delete_assistance_data_input_set_delete_clock_info_mask ()

+
gboolean
+qmi_message_loc_delete_assistance_data_input_set_delete_clock_info_mask
+                               (QmiMessageLocDeleteAssistanceDataInput *self,
+                                QmiLocDeleteClockInfo value_delete_clock_info_mask,
+                                GError **error);
+

Set the 'Delete Clock Info Mask' field in the message.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageLocDeleteAssistanceDataInput.

 

value_delete_clock_info_mask

a QmiLocDeleteClockInfo.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if value +was successfully set, FALSE otherwise.

+
+

Since: 1.22

+
+
+
+

qmi_message_loc_delete_assistance_data_input_get_delete_cell_database_mask ()

+
gboolean
+qmi_message_loc_delete_assistance_data_input_get_delete_cell_database_mask
+                               (QmiMessageLocDeleteAssistanceDataInput *self,
+                                QmiLocDeleteCellDatabase *value_delete_cell_database_mask,
+                                GError **error);
+

Get the 'Delete Cell Database Mask' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageLocDeleteAssistanceDataInput.

 

value_delete_cell_database_mask

a placeholder for the output QmiLocDeleteCellDatabase, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.22

+
+
+
+

qmi_message_loc_delete_assistance_data_input_set_delete_cell_database_mask ()

+
gboolean
+qmi_message_loc_delete_assistance_data_input_set_delete_cell_database_mask
+                               (QmiMessageLocDeleteAssistanceDataInput *self,
+                                QmiLocDeleteCellDatabase value_delete_cell_database_mask,
+                                GError **error);
+

Set the 'Delete Cell Database Mask' field in the message.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageLocDeleteAssistanceDataInput.

 

value_delete_cell_database_mask

a QmiLocDeleteCellDatabase.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if value +was successfully set, FALSE otherwise.

+
+

Since: 1.22

+
+
+
+

qmi_message_loc_delete_assistance_data_input_get_delete_gnss_data_mask ()

+
gboolean
+qmi_message_loc_delete_assistance_data_input_get_delete_gnss_data_mask
+                               (QmiMessageLocDeleteAssistanceDataInput *self,
+                                QmiLocDeleteGnssData *value_delete_gnss_data_mask,
+                                GError **error);
+

Get the 'Delete GNSS Data Mask' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageLocDeleteAssistanceDataInput.

 

value_delete_gnss_data_mask

a placeholder for the output QmiLocDeleteGnssData, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.22

+
+
+
+

qmi_message_loc_delete_assistance_data_input_set_delete_gnss_data_mask ()

+
gboolean
+qmi_message_loc_delete_assistance_data_input_set_delete_gnss_data_mask
+                               (QmiMessageLocDeleteAssistanceDataInput *self,
+                                QmiLocDeleteGnssData value_delete_gnss_data_mask,
+                                GError **error);
+

Set the 'Delete GNSS Data Mask' field in the message.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageLocDeleteAssistanceDataInput.

 

value_delete_gnss_data_mask

a QmiLocDeleteGnssData.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if value +was successfully set, FALSE otherwise.

+
+

Since: 1.22

+
+
+
+

qmi_message_loc_delete_assistance_data_input_get_delete_sv_info ()

+
gboolean
+qmi_message_loc_delete_assistance_data_input_get_delete_sv_info
+                               (QmiMessageLocDeleteAssistanceDataInput *self,
+                                GArray **value_delete_sv_info,
+                                GError **error);
+

Get the 'Delete SV Info' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageLocDeleteAssistanceDataInput.

 

value_delete_sv_info

a placeholder for the output GArray of QmiMessageLocDeleteAssistanceDataInputDeleteSvInfoElement elements, or NULL if not required. Do not free it, it is owned by self +.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.22

+
+
+
+

qmi_message_loc_delete_assistance_data_input_set_delete_sv_info ()

+
gboolean
+qmi_message_loc_delete_assistance_data_input_set_delete_sv_info
+                               (QmiMessageLocDeleteAssistanceDataInput *self,
+                                GArray *value_delete_sv_info,
+                                GError **error);
+

Set the 'Delete SV Info' field in the message.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageLocDeleteAssistanceDataInput.

 

value_delete_sv_info

a GArray of QmiMessageLocDeleteAssistanceDataInputDeleteSvInfoElement elements. A new reference to value_delete_sv_info +will be taken.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if value +was successfully set, FALSE otherwise.

+
+

Since: 1.22

+
+
+
+

qmi_message_loc_delete_assistance_data_input_get_delete_all ()

+
gboolean
+qmi_message_loc_delete_assistance_data_input_get_delete_all
+                               (QmiMessageLocDeleteAssistanceDataInput *self,
+                                gboolean *value_delete_all,
+                                GError **error);
+

Get the 'Delete All' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageLocDeleteAssistanceDataInput.

 

value_delete_all

a placeholder for the output gboolean, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.22

+
+
+
+

qmi_message_loc_delete_assistance_data_input_set_delete_all ()

+
gboolean
+qmi_message_loc_delete_assistance_data_input_set_delete_all
+                               (QmiMessageLocDeleteAssistanceDataInput *self,
+                                gboolean value_delete_all,
+                                GError **error);
+

Set the 'Delete All' field in the message.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageLocDeleteAssistanceDataInput.

 

value_delete_all

a gboolean.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if value +was successfully set, FALSE otherwise.

+
+

Since: 1.22

+
+
+
+

qmi_message_loc_delete_assistance_data_output_ref ()

+
QmiMessageLocDeleteAssistanceDataOutput *
+qmi_message_loc_delete_assistance_data_output_ref
+                               (QmiMessageLocDeleteAssistanceDataOutput *self);
+

Atomically increments the reference count of self + by one.

+
+

Parameters

+
+++++ + + + + + +

self

a QmiMessageLocDeleteAssistanceDataOutput.

 
+
+
+

Returns

+

the new reference to self +.

+
+

Since: 1.22

+
+
+
+

qmi_message_loc_delete_assistance_data_output_unref ()

+
void
+qmi_message_loc_delete_assistance_data_output_unref
+                               (QmiMessageLocDeleteAssistanceDataOutput *self);
+

Atomically decrements the reference count of self + by one. +If the reference count drops to 0, self + is completely disposed.

+
+

Parameters

+
+++++ + + + + + +

self

a QmiMessageLocDeleteAssistanceDataOutput.

 
+
+

Since: 1.22

+
+
+
+

qmi_message_loc_delete_assistance_data_output_get_result ()

+
gboolean
+qmi_message_loc_delete_assistance_data_output_get_result
+                               (QmiMessageLocDeleteAssistanceDataOutput *self,
+                                GError **error);
+

Get the result of the QMI operation.

+
+

Parameters

+
+++++ + + + + + + + + + + + + +

self

a QmiMessageLocDeleteAssistanceDataOutput.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the QMI operation succeeded, FALSE if error +is set.

+
+

Since: 1.22

+
+
+
+

qmi_client_loc_delete_assistance_data ()

+
void
+qmi_client_loc_delete_assistance_data (QmiClientLoc *self,
+                                       QmiMessageLocDeleteAssistanceDataInput *input,
+                                       guint timeout,
+                                       GCancellable *cancellable,
+                                       GAsyncReadyCallback callback,
+                                       gpointer user_data);
+

Asynchronously sends a Delete Assistance Data request to the device.

+

When the operation is finished, callback + will be invoked in the thread-default main loop of the thread you are calling this method from.

+

You can then call qmi_client_loc_delete_assistance_data_finish() to get the result of the operation.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

self

a QmiClientLoc.

 

input

a QmiMessageLocDeleteAssistanceDataInput.

 

timeout

maximum time to wait for the method to complete, in seconds.

 

cancellable

a GCancellable or NULL.

 

callback

a GAsyncReadyCallback to call when the request is satisfied.

 

user_data

user data to pass to callback +.

 
+
+

Since: 1.22

+
+
+
+

qmi_client_loc_delete_assistance_data_finish ()

+
QmiMessageLocDeleteAssistanceDataOutput *
+qmi_client_loc_delete_assistance_data_finish
+                               (QmiClientLoc *self,
+                                GAsyncResult *res,
+                                GError **error);
+

Finishes an async operation started with qmi_client_loc_delete_assistance_data().

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiClientLoc.

 

res

the GAsyncResult obtained from the GAsyncReadyCallback passed to qmi_client_loc_delete_assistance_data().

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

a QmiMessageLocDeleteAssistanceDataOutput, or NULL if error +is set. The returned value should be freed with qmi_message_loc_delete_assistance_data_output_unref().

+
+

Since: 1.22

+
+
+
+

Types and Values

+
+

QmiMessageLocDeleteAssistanceDataInput

+
typedef struct _QmiMessageLocDeleteAssistanceDataInput QmiMessageLocDeleteAssistanceDataInput;
+

The QmiMessageLocDeleteAssistanceDataInput structure contains private data and should only be accessed +using the provided API.

+

Since: 1.22

+
+
+
+

QmiMessageLocDeleteAssistanceDataInputDeleteSvInfoElement

+
typedef struct {
+    guint16 gnss_sv_id;
+    QmiLocSystem system;
+    QmiLocDeleteSvInfo delete_sv_info_mask;
+} QmiMessageLocDeleteAssistanceDataInputDeleteSvInfoElement;
+
+

A QmiMessageLocDeleteAssistanceDataInputDeleteSvInfoElement struct.

+
+

Members

+
+++++ + + + + + + + + + + + + + + + + + +

guint16 gnss_sv_id;

a guint16.

 

QmiLocSystem system;

a QmiLocSystem.

 

QmiLocDeleteSvInfo delete_sv_info_mask;

a QmiLocDeleteSvInfo.

 
+
+

Since: 1.22

+
+
+
+

QmiMessageLocDeleteAssistanceDataOutput

+
typedef struct _QmiMessageLocDeleteAssistanceDataOutput QmiMessageLocDeleteAssistanceDataOutput;
+

The QmiMessageLocDeleteAssistanceDataOutput structure contains private data and should only be accessed +using the provided API.

+

Since: 1.22

+
+
+
+ + + \ No newline at end of file diff -Nru libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-LOC-Engine-State-indication.html libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-LOC-Engine-State-indication.html --- libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-LOC-Engine-State-indication.html 1970-01-01 01:00:00.000000000 +0100 +++ libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-LOC-Engine-State-indication.html 2019-01-08 15:19:01.000000000 +0100 @@ -0,0 +1,208 @@ + + + + +LOC Engine State indication: libqmi-glib Reference Manual + + + + + + + + + + + + + + + + +
+
+
+ + +
+

LOC Engine State indication

+

LOC Engine State indication

+
+ +
+

Types and Values

+ +
+
+

Object Hierarchy

+
    GBoxed
+    ╰── QmiIndicationLocEngineStateOutput
+
+
+
+

Description

+
+
+

Functions

+
+

qmi_indication_loc_engine_state_output_ref ()

+
QmiIndicationLocEngineStateOutput *
+qmi_indication_loc_engine_state_output_ref
+                               (QmiIndicationLocEngineStateOutput *self);
+

Atomically increments the reference count of self + by one.

+
+

Parameters

+
+++++ + + + + + +

self

a QmiIndicationLocEngineStateOutput.

 
+
+
+

Returns

+

the new reference to self +.

+
+

Since: 1.22

+
+
+
+

qmi_indication_loc_engine_state_output_unref ()

+
void
+qmi_indication_loc_engine_state_output_unref
+                               (QmiIndicationLocEngineStateOutput *self);
+

Atomically decrements the reference count of self + by one. +If the reference count drops to 0, self + is completely disposed.

+
+

Parameters

+
+++++ + + + + + +

self

a QmiIndicationLocEngineStateOutput.

 
+
+

Since: 1.22

+
+
+
+

qmi_indication_loc_engine_state_output_get_engine_state ()

+
gboolean
+qmi_indication_loc_engine_state_output_get_engine_state
+                               (QmiIndicationLocEngineStateOutput *self,
+                                QmiLocEngineState *value_engine_state,
+                                GError **error);
+

Get the 'Engine State' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiIndicationLocEngineStateOutput.

 

value_engine_state

a placeholder for the output QmiLocEngineState, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.22

+
+
+
+

Types and Values

+
+

QmiIndicationLocEngineStateOutput

+
typedef struct _QmiIndicationLocEngineStateOutput QmiIndicationLocEngineStateOutput;
+

The QmiIndicationLocEngineStateOutput structure contains private data and should only be accessed +using the provided API.

+

Since: 1.22

+
+
+
+ + + \ No newline at end of file diff -Nru libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-LOC-enumerations-and-flags.html libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-LOC-enumerations-and-flags.html --- libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-LOC-enumerations-and-flags.html 1970-01-01 01:00:00.000000000 +0100 +++ libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-LOC-enumerations-and-flags.html 2019-01-08 15:19:01.000000000 +0100 @@ -0,0 +1,2460 @@ + + + + +LOC enumerations and flags: libqmi-glib Reference Manual + + + + + + + + + + + + + + + + +
+
+
+ + +
+

LOC enumerations and flags

+

LOC enumerations and flags

+
+ + +
+

Object Hierarchy

+
    GEnum
+    ├── QmiLocEngineState
+    ├── QmiLocFixRecurrenceType
+    ├── QmiLocHealthStatus
+    ├── QmiLocIndicationStatus
+    ├── QmiLocIntermediateReportState
+    ├── QmiLocNavigationData
+    ├── QmiLocOperationMode
+    ├── QmiLocPredictedOrbitsDataFormat
+    ├── QmiLocReliability
+    ├── QmiLocSatelliteStatus
+    ├── QmiLocServerType
+    ├── QmiLocSessionStatus
+    ├── QmiLocSystem
+    ╰── QmiLocTimeSource
+    GFlags
+    ├── QmiLocDeleteCellDatabase
+    ├── QmiLocDeleteClockInfo
+    ├── QmiLocDeleteSvInfo
+    ├── QmiLocSatelliteValidInformation
+    ├── QmiLocServerAddressType
+    ╰── QmiLocTechnologyUsed
+
+
+
+

Description

+

This section defines enumerations and flags used in the LOC service +interface.

+
+
+

Functions

+
+

qmi_loc_intermediate_report_state_get_string ()

+
const gchar *
+qmi_loc_intermediate_report_state_get_string
+                               (QmiLocIntermediateReportState val);
+

Gets the nickname string for the QmiLocIntermediateReportState specified at val +.

+
+

Parameters

+
+++++ + + + + + +

val

a QmiLocIntermediateReportState.

 
+
+
+

Returns

+

a string with the nickname, or NULL if not found. Do not free the returned value.

+

[transfer none]

+
+

Since: 1.20

+
+
+
+

qmi_loc_fix_recurrence_type_get_string ()

+
const gchar *
+qmi_loc_fix_recurrence_type_get_string
+                               (QmiLocFixRecurrenceType val);
+

Gets the nickname string for the QmiLocFixRecurrenceType specified at val +.

+
+

Parameters

+
+++++ + + + + + +

val

a QmiLocFixRecurrenceType.

 
+
+
+

Returns

+

a string with the nickname, or NULL if not found. Do not free the returned value.

+

[transfer none]

+
+

Since: 1.22

+
+
+
+

qmi_loc_operation_mode_get_string ()

+
const gchar *
+qmi_loc_operation_mode_get_string (QmiLocOperationMode val);
+

Gets the nickname string for the QmiLocOperationMode specified at val +.

+
+

Parameters

+
+++++ + + + + + +

val

a QmiLocOperationMode.

 
+
+
+

Returns

+

a string with the nickname, or NULL if not found. Do not free the returned value.

+

[transfer none]

+
+

Since: 1.22

+
+
+
+

qmi_loc_engine_state_get_string ()

+
const gchar *
+qmi_loc_engine_state_get_string (QmiLocEngineState val);
+

Gets the nickname string for the QmiLocEngineState specified at val +.

+
+

Parameters

+
+++++ + + + + + +

val

a QmiLocEngineState.

 
+
+
+

Returns

+

a string with the nickname, or NULL if not found. Do not free the returned value.

+

[transfer none]

+
+

Since: 1.22

+
+
+
+

qmi_loc_health_status_get_string ()

+
const gchar *
+qmi_loc_health_status_get_string (QmiLocHealthStatus val);
+

Gets the nickname string for the QmiLocHealthStatus specified at val +.

+
+

Parameters

+
+++++ + + + + + +

val

a QmiLocHealthStatus.

 
+
+
+

Returns

+

a string with the nickname, or NULL if not found. Do not free the returned value.

+

[transfer none]

+
+

Since: 1.22

+
+
+
+

qmi_loc_indication_status_get_string ()

+
const gchar *
+qmi_loc_indication_status_get_string (QmiLocIndicationStatus val);
+

Gets the nickname string for the QmiLocIndicationStatus specified at val +.

+
+

Parameters

+
+++++ + + + + + +

val

a QmiLocIndicationStatus.

 
+
+
+

Returns

+

a string with the nickname, or NULL if not found. Do not free the returned value.

+

[transfer none]

+
+

Since: 1.22

+
+
+
+

qmi_loc_navigation_data_get_string ()

+
const gchar *
+qmi_loc_navigation_data_get_string (QmiLocNavigationData val);
+

Gets the nickname string for the QmiLocNavigationData specified at val +.

+
+

Parameters

+
+++++ + + + + + +

val

a QmiLocNavigationData.

 
+
+
+

Returns

+

a string with the nickname, or NULL if not found. Do not free the returned value.

+

[transfer none]

+
+

Since: 1.22

+
+
+
+

qmi_loc_reliability_get_string ()

+
const gchar *
+qmi_loc_reliability_get_string (QmiLocReliability val);
+

Gets the nickname string for the QmiLocReliability specified at val +.

+
+

Parameters

+
+++++ + + + + + +

val

a QmiLocReliability.

 
+
+
+

Returns

+

a string with the nickname, or NULL if not found. Do not free the returned value.

+

[transfer none]

+
+

Since: 1.22

+
+
+
+

qmi_loc_satellite_status_get_string ()

+
const gchar *
+qmi_loc_satellite_status_get_string (QmiLocSatelliteStatus val);
+

Gets the nickname string for the QmiLocSatelliteStatus specified at val +.

+
+

Parameters

+
+++++ + + + + + +

val

a QmiLocSatelliteStatus.

 
+
+
+

Returns

+

a string with the nickname, or NULL if not found. Do not free the returned value.

+

[transfer none]

+
+

Since: 1.22

+
+
+
+

qmi_loc_satellite_valid_information_build_string_from_mask ()

+
gchar *
+qmi_loc_satellite_valid_information_build_string_from_mask
+                               (QmiLocSatelliteValidInformation mask);
+

Builds a string containing a comma-separated list of nicknames for +each QmiLocSatelliteValidInformation in mask +.

+
+

Parameters

+
+++++ + + + + + +

mask

bitmask of QmiLocSatelliteValidInformation values.

 
+
+
+

Returns

+

a string with the list of nicknames, or NULL if none given. The returned value should be freed with g_free().

+

[transfer full]

+
+

Since: 1.22

+
+
+
+

qmi_loc_session_status_get_string ()

+
const gchar *
+qmi_loc_session_status_get_string (QmiLocSessionStatus val);
+

Gets the nickname string for the QmiLocSessionStatus specified at val +.

+
+

Parameters

+
+++++ + + + + + +

val

a QmiLocSessionStatus.

 
+
+
+

Returns

+

a string with the nickname, or NULL if not found. Do not free the returned value.

+

[transfer none]

+
+

Since: 1.22

+
+
+
+

qmi_loc_system_get_string ()

+
const gchar *
+qmi_loc_system_get_string (QmiLocSystem val);
+

Gets the nickname string for the QmiLocSystem specified at val +.

+
+

Parameters

+
+++++ + + + + + +

val

a QmiLocSystem.

 
+
+
+

Returns

+

a string with the nickname, or NULL if not found. Do not free the returned value.

+

[transfer none]

+
+

Since: 1.22

+
+
+
+

qmi_loc_technology_used_build_string_from_mask ()

+
gchar *
+qmi_loc_technology_used_build_string_from_mask
+                               (QmiLocTechnologyUsed mask);
+

Builds a string containing a comma-separated list of nicknames for +each QmiLocTechnologyUsed in mask +.

+
+

Parameters

+
+++++ + + + + + +

mask

bitmask of QmiLocTechnologyUsed values.

 
+
+
+

Returns

+

a string with the list of nicknames, or NULL if none given. The returned value should be freed with g_free().

+

[transfer full]

+
+

Since: 1.22

+
+
+
+

qmi_loc_time_source_get_string ()

+
const gchar *
+qmi_loc_time_source_get_string (QmiLocTimeSource val);
+

Gets the nickname string for the QmiLocTimeSource specified at val +.

+
+

Parameters

+
+++++ + + + + + +

val

a QmiLocTimeSource.

 
+
+
+

Returns

+

a string with the nickname, or NULL if not found. Do not free the returned value.

+

[transfer none]

+
+

Since: 1.22

+
+
+
+

qmi_loc_server_type_get_string ()

+
const gchar *
+qmi_loc_server_type_get_string (QmiLocServerType val);
+

Gets the nickname string for the QmiLocServerType specified at val +.

+
+

Parameters

+
+++++ + + + + + +

val

a QmiLocServerType.

 
+
+
+

Returns

+

a string with the nickname, or NULL if not found. Do not free the returned value.

+

[transfer none]

+
+

Since: 1.22

+
+
+
+

qmi_loc_server_address_type_build_string_from_mask ()

+
gchar *
+qmi_loc_server_address_type_build_string_from_mask
+                               (QmiLocServerAddressType mask);
+

Builds a string containing a comma-separated list of nicknames for +each QmiLocServerAddressType in mask +.

+
+

Parameters

+
+++++ + + + + + +

mask

bitmask of QmiLocServerAddressType values.

 
+
+
+

Returns

+

a string with the list of nicknames, or NULL if none given. The returned value should be freed with g_free().

+

[transfer full]

+
+

Since: 1.22

+
+
+
+

qmi_loc_predicted_orbits_data_format_get_string ()

+
const gchar *
+qmi_loc_predicted_orbits_data_format_get_string
+                               (QmiLocPredictedOrbitsDataFormat val);
+

Gets the nickname string for the QmiLocPredictedOrbitsDataFormat specified at val +.

+
+

Parameters

+
+++++ + + + + + +

val

a QmiLocPredictedOrbitsDataFormat.

 
+
+
+

Returns

+

a string with the nickname, or NULL if not found. Do not free the returned value.

+

[transfer none]

+
+

Since: 1.22

+
+
+
+

qmi_loc_delete_cell_database_build_string_from_mask ()

+
gchar *
+qmi_loc_delete_cell_database_build_string_from_mask
+                               (QmiLocDeleteCellDatabase mask);
+

Builds a string containing a comma-separated list of nicknames for +each QmiLocDeleteCellDatabase in mask +.

+
+

Parameters

+
+++++ + + + + + +

mask

bitmask of QmiLocDeleteCellDatabase values.

 
+
+
+

Returns

+

a string with the list of nicknames, or NULL if none given. The returned value should be freed with g_free().

+

[transfer full]

+
+

Since: 1.22

+
+
+
+

qmi_loc_delete_clock_info_build_string_from_mask ()

+
gchar *
+qmi_loc_delete_clock_info_build_string_from_mask
+                               (QmiLocDeleteClockInfo mask);
+

Builds a string containing a comma-separated list of nicknames for +each QmiLocDeleteClockInfo in mask +.

+
+

Parameters

+
+++++ + + + + + +

mask

bitmask of QmiLocDeleteClockInfo values.

 
+
+
+

Returns

+

a string with the list of nicknames, or NULL if none given. The returned value should be freed with g_free().

+

[transfer full]

+
+

Since: 1.22

+
+
+
+

qmi_loc_delete_gnss_data_build_string_from_mask ()

+
gchar *
+qmi_loc_delete_gnss_data_build_string_from_mask
+                               (QmiLocDeleteGnssData mask);
+

Builds a string containing a comma-separated list of nicknames for +each QmiLocDeleteGnssData in mask +.

+
+

Parameters

+
+++++ + + + + + +

mask

bitmask of QmiLocDeleteGnssData values.

 
+
+
+

Returns

+

a string with the list of nicknames, or NULL if none given. The returned value should be freed with g_free().

+

[transfer full]

+
+

Since: 1.22

+
+
+
+

qmi_loc_delete_sv_info_build_string_from_mask ()

+
gchar *
+qmi_loc_delete_sv_info_build_string_from_mask
+                               (QmiLocDeleteSvInfo mask);
+

Builds a string containing a comma-separated list of nicknames for +each QmiLocDeleteSvInfo in mask +.

+
+

Parameters

+
+++++ + + + + + +

mask

bitmask of QmiLocDeleteSvInfo values.

 
+
+
+

Returns

+

a string with the list of nicknames, or NULL if none given. The returned value should be freed with g_free().

+

[transfer full]

+
+

Since: 1.22

+
+
+
+

Types and Values

+
+

enum QmiLocIntermediateReportState

+

Whether to enable or disable intermediate state reporting.

+
+

Members

+
+++++ + + + + + + + + + + + + + + + + + +

QMI_LOC_INTERMEDIATE_REPORT_STATE_UNKNOWN

+

Unknown.

+
 

QMI_LOC_INTERMEDIATE_REPORT_STATE_ENABLE

+

Enable intermediate state reporting.

+
 

QMI_LOC_INTERMEDIATE_REPORT_STATE_DISABLE

+

Disable intermediate state reporting.

+
 
+
+

Since: 1.20

+
+
+
+

enum QmiLocEventRegistrationFlag

+

For which events to register the subscription.

+

Since 1.22

+
+

Members

+
+++++ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

QMI_LOC_EVENT_REGISTRATION_FLAG_POSITION_REPORT

+

Position report.

+
 

QMI_LOC_EVENT_REGISTRATION_FLAG_GNSS_SATELLITE_INFO

+

GNSS satellite info.

+
 

QMI_LOC_EVENT_REGISTRATION_FLAG_NMEA

+

NMEA.

+
 

QMI_LOC_EVENT_REGISTRATION_FLAG_NI_NOTIFY_VERIFY_REQUEST

+

NI Notify verify request.

+
 

QMI_LOC_EVENT_REGISTRATION_FLAG_INJECT_TIME_REQUEST

+

Inject time request.

+
 

QMI_LOC_EVENT_REGISTRATION_FLAG_INJECT_PREDICTED_ORBITS_REQUEST

+

Inject predicted orbits request.

+
 

QMI_LOC_EVENT_REGISTRATION_FLAG_INJECT_POSITION_REQUEST

+

Inject position request.

+
 

QMI_LOC_EVENT_REGISTRATION_FLAG_ENGINE_STATE

+

Engine state.

+
 

QMI_LOC_EVENT_REGISTRATION_FLAG_FIX_SESSION_STATE

+

Fix session state.

+
 

QMI_LOC_EVENT_REGISTRATION_FLAG_WIFI_REQUEST

+

WIFI request.

+
 

QMI_LOC_EVENT_REGISTRATION_FLAG_SENSOR_STREAMING_READY_STATUS

+

Sensor streaming ready status.

+
 

QMI_LOC_EVENT_REGISTRATION_FLAG_TIME_SYNC_REQUEST

+

Time sync request.

+
 

QMI_LOC_EVENT_REGISTRATION_FLAG_SET_SPI_STREAMING_REPORT

+

Set SPI streaming report.

+
 

QMI_LOC_EVENT_REGISTRATION_FLAG_LOCATION_SERVER_CONNECTION_REQUEST

+

Location server connection request.

+
 

QMI_LOC_EVENT_REGISTRATION_FLAG_NI_GEOFENCE_NOTIFICATION

+

NI geofence notification.

+
 

QMI_LOC_EVENT_REGISTRATION_FLAG_GEOFENCE_GENERAL_ALERT

+

Geofence general alert.

+
 

QMI_LOC_EVENT_REGISTRATION_FLAG_GEOFENCE_BREACH_NOTIFICATION

+

Geofence breach notification.

+
 

QMI_LOC_EVENT_REGISTRATION_FLAG_PEDOMETER_CONTROL

+

Pedometer control.

+
 

QMI_LOC_EVENT_REGISTRATION_FLAG_MOTION_DATA_CONTROL

+

Motion data control.

+
 
+
+
+
+
+

enum QmiLocFixRecurrenceType

+

Whether to request a single or periodic fixes.

+

Since 1.22

+
+

Members

+
+++++ + + + + + + + + + + + + +

QMI_LOC_FIX_RECURRENCE_TYPE_REQUEST_PERIODIC_FIXES

+

Periodic fixes.

+
 

QMI_LOC_FIX_RECURRENCE_TYPE_REQUEST_SINGLE_FIX

+

Single fix.

+
 
+
+
+
+
+

enum QmiLocOperationMode

+

Which operation mode to use.

+

Since 1.22

+
+

Members

+
+++++ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

QMI_LOC_OPERATION_MODE_DEFAULT

+

Default.

+
 

QMI_LOC_OPERATION_MODE_MSB

+

MSB (Mobile Station Based).

+
 

QMI_LOC_OPERATION_MODE_MSA

+

MSA (Mobile Station Assisted).

+
 

QMI_LOC_OPERATION_MODE_STANDALONE

+

Standalone.

+
 

QMI_LOC_OPERATION_MODE_CELLID

+

Cell ID.

+
 

QMI_LOC_OPERATION_MODE_WWAN

+

WWAN.

+
 
+
+
+
+
+

enum QmiLocEngineState

+

State of the engine.

+

Since 1.22

+
+

Members

+
+++++ + + + + + + + + + + + + +

QMI_LOC_ENGINE_STATE_ON

+

On.

+
 

QMI_LOC_ENGINE_STATE_OFF

+

Off.

+
 
+
+
+
+
+

enum QmiLocSatelliteValidInformation

+

Which information about the satellite is valid.

+

Since 1.22

+
+

Members

+
+++++ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

QMI_LOC_SATELLITE_VALID_INFORMATION_SYSTEM

+

System,

+
 

QMI_LOC_SATELLITE_VALID_INFORMATION_GNSS_SATELLITE_ID

+

GNSS Satellite ID.

+
 

QMI_LOC_SATELLITE_VALID_INFORMATION_HEALTH_STATUS

+

Health status.

+
 

QMI_LOC_SATELLITE_VALID_INFORMATION_PROCESS_STATUS

+

Process status.

+
 

QMI_LOC_SATELLITE_VALID_INFORMATION_SATELLITE_INFO_MASK

+

Satellite info mask.

+
 

QMI_LOC_SATELLITE_VALID_INFORMATION_ELEVATION

+

Elevation.

+
 

QMI_LOC_SATELLITE_VALID_INFORMATION_AZIMUTH

+

Azimuth.

+
 

QMI_LOC_SATELLITE_VALID_INFORMATION_SIGNAL_TO_NOISE_RATIO

+

Signal to noise ratio.

+
 
+
+
+
+
+

enum QmiLocSystem

+

Which location system a satellite is part of.

+

Since 1.22

+
+

Members

+
+++++ + + + + + + + + + + + + + + + + + + + + + + + + + + + +

QMI_LOC_SYSTEM_GPS

+

GPS.

+
 

QMI_LOC_SYSTEM_GALILEO

+

Galileo.

+
 

QMI_LOC_SYSTEM_SBAS

+

SBAS.

+
 

QMI_LOC_SYSTEM_COMPASS

+

COMPASS (BeiDou).

+
 

QMI_LOC_SYSTEM_GLONASS

+

GLONASS.

+
 
+
+
+
+
+

enum QmiLocHealthStatus

+

Whether a satellite is healthy or unhealthy.

+

Since 1.22

+
+

Members

+
+++++ + + + + + + + + + + + + +

QMI_LOC_HEALTH_STATUS_UNHEALTHY

+

Unhealthy.

+
 

QMI_LOC_HEALTH_STATUS_HEALTHY

+

Healthy.

+
 
+
+
+
+
+

enum QmiLocSatelliteStatus

+

Whether the engine searches or tracks a satellite.

+

Since 1.22

+
+

Members

+
+++++ + + + + + + + + + + + + + + + + + +

QMI_LOC_SATELLITE_STATUS_IDLE

+

Idle.

+
 

QMI_LOC_SATELLITE_STATUS_SEARCHING

+

Searching.

+
 

QMI_LOC_SATELLITE_STATUS_TRACKING

+

Tracking.

+
 
+
+
+
+
+

enum QmiLocNavigationData

+

Whether the ephemeris or almanac exist for a satellite.

+

Since 1.22

+
+

Members

+
+++++ + + + + + + + + + + + + +

QMI_LOC_NAVIGATION_DATA_HAS_EPHEMERIS

+

Has ephemeris.

+
 

QMI_LOC_NAVIGATION_DATA_HAS_ALMANAC

+

Has almanac.

+
 
+
+
+
+
+

enum QmiLocIndicationStatus

+

General result of a received indication.

+

Since 1.22

+
+

Members

+
+++++ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

QMI_LOC_INDICATION_STATUS_SUCCESS

+

Success.

+
 

QMI_LOC_INDICATION_STATUS_GENERAL_FAILURE

+

General Failure.

+
 

QMI_LOC_INDICATION_STATUS_UNSUPPORTED

+

Unsupported.

+
 

QMI_LOC_INDICATION_STATUS_INVALID_PARAMETER

+

Invalid Parameter.

+
 

QMI_LOC_INDICATION_STATUS_ENGINE_BUSY

+

Engine is busy.

+
 

QMI_LOC_INDICATION_STATUS_PHONE_OFFLINE

+

Phone is offline.

+
 

QMI_LOC_INDICATION_STATUS_TIMEOUT

+

Timeout.

+
 
+
+
+
+
+

enum QmiLocSensorDataUsage

+

Which sensors where used and for which measurements.

+

Since 1.22

+
+

Members

+
+++++ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

QMI_LOC_SENSOR_DATA_USAGE_ACCELEROMETER_USED

+

Accelerometer used.

+
 

QMI_LOC_SENSOR_DATA_USAGE_GYRO_USED

+

Gyro used.

+
 

QMI_LOC_SENSOR_DATA_USAGE_AIDED_HEADING

+

Aided heading.

+
 

QMI_LOC_SENSOR_DATA_USAGE_AIDED_SPEED

+

Aided speed.

+
 

QMI_LOC_SENSOR_DATA_USAGE_AIDED_POSITION

+

Aided position.

+
 

QMI_LOC_SENSOR_DATA_USAGE_AIDED_VELOCITY

+

Aided velocity.

+
 
+
+
+
+
+

enum QmiLocTimeSource

+

Source of the used time.

+

Since 1.22

+
+

Members

+
+++++ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

QMI_LOC_TIME_SOURCE_INVALID

+

Invalid.

+
 

QMI_LOC_TIME_SOURCE_NETWORK_TIME_TRANSFER

+

Time is set by the 1X system.

+
 

QMI_LOC_TIME_SOURCE_NETWORK_TIME_TAGGING

+

Time is set by WCDMA/GSM time tagging.

+
 

QMI_LOC_TIME_SOURCE_EXTERNAL_INPUT

+

Time set by external injection.

+
 

QMI_LOC_TIME_SOURCE_TOW_DECODE

+

Time is set after decoding over-the-air GPS navigation data from one GPS satellite.

+
 

QMI_LOC_TIME_SOURCE_TOW_CONFIRMED

+

Time is set after decoding over-the-air GPS navigation data from multiple satellites.

+
 

QMI_LOC_TIME_SOURCE_TOW_AND_WEEK_CONFIRMED

+

Both time of the week and GPS week number are known.

+
 

QMI_LOC_TIME_SOURCE_NAVIGATION_SOLUTION

+

Time is set by the position engine after the fix is obtained.

+
 

QMI_LOC_TIME_SOURCE_SOLVE_FOR_TIME

+

Time is set by the position engine after performing SFT.

+
 

QMI_LOC_TIME_SOURCE_GLO_TOW_DECODE

+

Time is set after decoding QZSS satellites.

+
 

QMI_LOC_TIME_SOURCE_TIME_TRANSFORM

+

Time is set after transforming the GPS to GLO time.

+
 

QMI_LOC_TIME_SOURCE_WCDMA_SLEEP_TIME_TAG

+

Time is set by the sleep time tag provided by the WCDMA network.

+
 

QMI_LOC_TIME_SOURCE_GSM_SLEEP_TIME_TAG

+

Time is set by the sleep time tag provided by the GSM network.

+
 

QMI_LOC_TIME_SOURCE_UNKNOWN

+

Unknown.

+
 

QMI_LOC_TIME_SOURCE_SYSTEM_TIMETICK

+

Time is derived from the system clock.

+
 

QMI_LOC_TIME_SOURCE_QZSS_TOW_DECODE

+

Time set after decoding QZSS satellites.

+
 

QMI_LOC_TIME_SOURCE_BDS_TOW_DECODE

+

Time set after decoding BDS satellites.

+
 
+
+
+
+
+

enum QmiLocTechnologyUsed

+

Which technology has been used.

+

Since 1.22

+
+

Members

+
+++++ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

QMI_LOC_TECHNOLOGY_USED_SATELLITE

+

Satellite.

+
 

QMI_LOC_TECHNOLOGY_USED_CELLULAR

+

Cellular.

+
 

QMI_LOC_TECHNOLOGY_USED_WIFI

+

Wifi.

+
 

QMI_LOC_TECHNOLOGY_USED_SENSORS

+

Sensors.

+
 

QMI_LOC_TECHNOLOGY_USED_REFERENCE_LOCATION

+

Reference Location.

+
 

QMI_LOC_TECHNOLOGY_USED_INJECTED_POSITION

+

Injected Position.

+
 

QMI_LOC_TECHNOLOGY_USED_AFLT

+

AFLT (Advanced Forward Link Trilateration).

+
 

QMI_LOC_TECHNOLOGY_USED_HYBRID

+

Hybrid.

+
 
+
+
+
+
+

enum QmiLocReliability

+

Reliability of the provided information.

+

Since 1.22

+
+

Members

+
+++++ + + + + + + + + + + + + + + + + + + + + + + + + + + + +

QMI_LOC_RELIABILITY_NOT_SET

+

Not set.

+
 

QMI_LOC_RELIABILITY_VERY_LOW

+

Very low.

+
 

QMI_LOC_RELIABILITY_LOW

+

Low.

+
 

QMI_LOC_RELIABILITY_MEDIUM

+

Medium.

+
 

QMI_LOC_RELIABILITY_HIGH

+

High.

+
 
+
+
+
+
+

enum QmiLocSessionStatus

+

Status of a received session indication.

+

Since 1.22

+
+

Members

+
+++++ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

QMI_LOC_SESSION_STATUS_SUCCESS

+

Success

+
 

QMI_LOC_SESSION_STATUS_IN_PROGRESS

+

Operation in Progress.

+
 

QMI_LOC_SESSION_STATUS_GENERAL_FAILURE

+

General Failure.

+
 

QMI_LOC_SESSION_STATUS_TIMEOUT

+

Timeout.

+
 

QMI_LOC_SESSION_STATUS_USER_ENDED

+

User ended.

+
 

QMI_LOC_SESSION_STATUS_BAD_PARAMETER

+

Bad Parameter.

+
 

QMI_LOC_SESSION_STATUS_PHONE_OFFLINE

+

Phone is offline.

+
 

QMI_LOC_SESSION_STATUS_ENGINE_LOCKED

+

Engine is locked.

+
 
+
+
+
+
+

enum QmiLocServerType

+

Server type for Assisted-GPS.

+
+

Members

+
+++++ + + + + + + + + + + + + + + + + + + + + + + + + + + + +

QMI_LOC_SERVER_TYPE_UNKNOWN

+

Unknown.

+
 

QMI_LOC_SERVER_TYPE_CDMA_PDE

+

CDMA Position Determining System.

+
 

QMI_LOC_SERVER_TYPE_CDMA_MPC

+

CDMA Mobile Positioning Center.

+
 

QMI_LOC_SERVER_TYPE_UMTS_SLP

+

SUPL Location Platform.

+
 

QMI_LOC_SERVER_TYPE_CUSTOM_PDE

+

Custom position determining system.

+
 
+
+

Since: 1.22

+
+
+
+

enum QmiLocServerAddressType

+

Type of server address for Assisted-GPS.

+
+

Members

+
+++++ + + + + + + + + + + + + + + + + + + + + + + +

QMI_LOC_SERVER_ADDRESS_TYPE_NONE

+

None.

+
 

QMI_LOC_SERVER_ADDRESS_TYPE_IPV4

+

IPv4 server address.

+
 

QMI_LOC_SERVER_ADDRESS_TYPE_IPV6

+

IPv6 server address.

+
 

QMI_LOC_SERVER_ADDRESS_TYPE_URL

+

URL server address.

+
 
+
+
+
+
+

enum QmiLocPredictedOrbitsDataFormat

+

Type of predicted orbits data.

+
+

Members

+
+++++ + + + + + +

QMI_LOC_PREDICTED_ORBITS_DATA_FORMAT_XTRA

+

Qualcomm XTRA database.

+
 
+
+
+
+
+

enum QmiLocDeleteCellDatabase

+

Type of data to delete from the cell database.

+
+

Members

+
+++++ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

QMI_LOC_DELETE_CELL_DATABASE_POS

+

Position.

+
 

QMI_LOC_DELETE_CELL_DATABASE_LATEST_GPS_POS

+

Latest GPS position.

+
 

QMI_LOC_DELETE_CELL_DATABASE_OTA_POS

+

OTA position.

+
 

QMI_LOC_DELETE_CELL_DATABASE_EXT_REF_POS

+

External reference position.

+
 

QMI_LOC_DELETE_CELL_DATABASE_TIMETAG

+

Timetag.

+
 

QMI_LOC_DELETE_CELL_DATABASE_CELLID

+

Cell ID.

+
 

QMI_LOC_DELETE_CELL_DATABASE_CACHED_CELLID

+

Cached cell ID.

+
 

QMI_LOC_DELETE_CELL_DATABASE_LAST_SRV_CELL

+

Last serving cell.

+
 

QMI_LOC_DELETE_CELL_DATABASE_CUR_SRV_CELL

+

Current servince cell.

+
 

QMI_LOC_DELETE_CELL_DATABASE_NEIGHBOR_INFO

+

Neighboring cell info.

+
 
+
+
+
+
+

enum QmiLocDeleteClockInfo

+

Type of data to delete from the clock information.

+
+

Members

+
+++++ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

QMI_LOC_DELETE_CLOCK_INFO_TIME_EST

+

Time estimation.

+
 

QMI_LOC_DELETE_CLOCK_INFO_FREQ_EST

+

Frequency estimation.

+
 

QMI_LOC_DELETE_CLOCK_INFO_WEEK_NUMBER

+

Week number.

+
 

QMI_LOC_DELETE_CLOCK_INFO_RTC_TIME

+

RTC time.

+
 

QMI_LOC_DELETE_CLOCK_INFO_TIME_TRANSFER

+

Time transfer.

+
 

QMI_LOC_DELETE_CLOCK_INFO_GPS_TIME_EST

+

GPS time estimation.

+
 

QMI_LOC_DELETE_CLOCK_INFO_GLO_TIME_EST

+

GLONASS time estimation.

+
 

QMI_LOC_DELETE_CLOCK_INFO_GLO_DAY_NUMBER

+

GLONASS day number.

+
 

QMI_LOC_DELETE_CLOCK_INFO_GLO_YEAR_NUMBER

+

GLONASS year number.

+
 

QMI_LOC_DELETE_CLOCK_INFO_GLO_RF_GRP_DELAY

+

GLONASS RF group delay.

+
 

QMI_LOC_DELETE_CLOCK_INFO_DISABLE_TT

+

Disable TT.

+
 
+
+
+
+
+

enum QmiLocDeleteGnssData

+

Flags to use when deleting GNSS assistance data.

+

Since 1.22

+
+

Members

+
+++++ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

QMI_LOC_DELETE_GNSS_DATA_GPS_SVDIR

+

GPS SV dir.

+
 

QMI_LOC_DELETE_GNSS_DATA_GPS_SVSTEER

+

GPS SV steer.

+
 

QMI_LOC_DELETE_GNSS_DATA_GPS_TIME

+

GPS time.

+
 

QMI_LOC_DELETE_GNSS_DATA_GPS_ALM_CORR

+

GPS alm corr.

+
 

QMI_LOC_DELETE_GNSS_DATA_GLO_SVDIR

+

GLONASS SV dir.

+
 

QMI_LOC_DELETE_GNSS_DATA_GLO_SVSTEER

+

GLONASS SV steer.

+
 

QMI_LOC_DELETE_GNSS_DATA_GLO_TIME

+

GLONASS time.

+
 

QMI_LOC_DELETE_GNSS_DATA_GLO_ALM_CORR

+

GLONASS alm corr.

+
 

QMI_LOC_DELETE_GNSS_DATA_SBAS_SVDIR

+

SBAS SV dir.

+
 

QMI_LOC_DELETE_GNSS_DATA_SBAS_SVSTEER

+

SBAS SV steer.

+
 

QMI_LOC_DELETE_GNSS_DATA_POSITION

+

Position.

+
 

QMI_LOC_DELETE_GNSS_DATA_TIME

+

Time.

+
 

QMI_LOC_DELETE_GNSS_DATA_IONO

+

Ionospheric data.

+
 

QMI_LOC_DELETE_GNSS_DATA_UTC

+

UTC time.

+
 

QMI_LOC_DELETE_GNSS_DATA_HEALTH

+

Health information.

+
 

QMI_LOC_DELETE_GNSS_DATA_SADATA

+

SA data.

+
 

QMI_LOC_DELETE_GNSS_DATA_RTI

+

RTI.

+
 

QMI_LOC_DELETE_GNSS_DATA_SV_NO_EXIST

+

SV no exist.

+
 

QMI_LOC_DELETE_GNSS_DATA_FREQ_BIAS_EST

+

Frequency bias estimation.

+
 
+
+
+
+
+

enum QmiLocDeleteSvInfo

+

Type of data to delete for a given satellite.

+
+

Members

+
+++++ + + + + + + + + + + + + +

QMI_LOC_DELETE_SV_INFO_EPHEMERIS

+

Ephemeris.

+
 

QMI_LOC_DELETE_SV_INFO_ALMANAC

+

Almanac.

+
 
+
+
+
+
+ + + \ No newline at end of file diff -Nru libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-LOC-Fix-Recurrence-Type-indication.html libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-LOC-Fix-Recurrence-Type-indication.html --- libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-LOC-Fix-Recurrence-Type-indication.html 1970-01-01 01:00:00.000000000 +0100 +++ libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-LOC-Fix-Recurrence-Type-indication.html 2019-01-08 15:19:01.000000000 +0100 @@ -0,0 +1,208 @@ + + + + +LOC Fix Recurrence Type indication: libqmi-glib Reference Manual + + + + + + + + + + + + + + + + +
+
+
+ + +
+

LOC Fix Recurrence Type indication

+

LOC Fix Recurrence Type indication

+
+ +
+

Types and Values

+ +
+
+

Object Hierarchy

+
    GBoxed
+    ╰── QmiIndicationLocFixRecurrenceTypeOutput
+
+
+
+

Description

+
+
+

Functions

+
+

qmi_indication_loc_fix_recurrence_type_output_ref ()

+
QmiIndicationLocFixRecurrenceTypeOutput *
+qmi_indication_loc_fix_recurrence_type_output_ref
+                               (QmiIndicationLocFixRecurrenceTypeOutput *self);
+

Atomically increments the reference count of self + by one.

+
+

Parameters

+
+++++ + + + + + +

self

a QmiIndicationLocFixRecurrenceTypeOutput.

 
+
+
+

Returns

+

the new reference to self +.

+
+

Since: 1.22

+
+
+
+

qmi_indication_loc_fix_recurrence_type_output_unref ()

+
void
+qmi_indication_loc_fix_recurrence_type_output_unref
+                               (QmiIndicationLocFixRecurrenceTypeOutput *self);
+

Atomically decrements the reference count of self + by one. +If the reference count drops to 0, self + is completely disposed.

+
+

Parameters

+
+++++ + + + + + +

self

a QmiIndicationLocFixRecurrenceTypeOutput.

 
+
+

Since: 1.22

+
+
+
+

qmi_indication_loc_fix_recurrence_type_output_get_fix_recurrence_type ()

+
gboolean
+qmi_indication_loc_fix_recurrence_type_output_get_fix_recurrence_type
+                               (QmiIndicationLocFixRecurrenceTypeOutput *self,
+                                QmiLocFixRecurrenceType *value_fix_recurrence_type,
+                                GError **error);
+

Get the 'Fix Recurrence Type' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiIndicationLocFixRecurrenceTypeOutput.

 

value_fix_recurrence_type

a placeholder for the output QmiLocFixRecurrenceType, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.22

+
+
+
+

Types and Values

+
+

QmiIndicationLocFixRecurrenceTypeOutput

+
typedef struct _QmiIndicationLocFixRecurrenceTypeOutput QmiIndicationLocFixRecurrenceTypeOutput;
+

The QmiIndicationLocFixRecurrenceTypeOutput structure contains private data and should only be accessed +using the provided API.

+

Since: 1.22

+
+
+
+ + + \ No newline at end of file diff -Nru libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-LOC-Get-Operation-Mode-indication.html libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-LOC-Get-Operation-Mode-indication.html --- libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-LOC-Get-Operation-Mode-indication.html 1970-01-01 01:00:00.000000000 +0100 +++ libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-LOC-Get-Operation-Mode-indication.html 2019-01-08 15:19:01.000000000 +0100 @@ -0,0 +1,259 @@ + + + + +LOC Get Operation Mode indication: libqmi-glib Reference Manual + + + + + + + + + + + + + + + + +
+
+
+ + +
+

LOC Get Operation Mode indication

+

LOC Get Operation Mode indication

+
+ +
+

Types and Values

+ +
+
+

Object Hierarchy

+
    GBoxed
+    ╰── QmiIndicationLocGetOperationModeOutput
+
+
+
+

Description

+
+
+

Functions

+
+

qmi_indication_loc_get_operation_mode_output_ref ()

+
QmiIndicationLocGetOperationModeOutput *
+qmi_indication_loc_get_operation_mode_output_ref
+                               (QmiIndicationLocGetOperationModeOutput *self);
+

Atomically increments the reference count of self + by one.

+
+

Parameters

+
+++++ + + + + + +

self

a QmiIndicationLocGetOperationModeOutput.

 
+
+
+

Returns

+

the new reference to self +.

+
+

Since: 1.22

+
+
+
+

qmi_indication_loc_get_operation_mode_output_unref ()

+
void
+qmi_indication_loc_get_operation_mode_output_unref
+                               (QmiIndicationLocGetOperationModeOutput *self);
+

Atomically decrements the reference count of self + by one. +If the reference count drops to 0, self + is completely disposed.

+
+

Parameters

+
+++++ + + + + + +

self

a QmiIndicationLocGetOperationModeOutput.

 
+
+

Since: 1.22

+
+
+
+

qmi_indication_loc_get_operation_mode_output_get_operation_mode ()

+
gboolean
+qmi_indication_loc_get_operation_mode_output_get_operation_mode
+                               (QmiIndicationLocGetOperationModeOutput *self,
+                                QmiLocOperationMode *value_operation_mode,
+                                GError **error);
+

Get the 'Operation Mode' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiIndicationLocGetOperationModeOutput.

 

value_operation_mode

a placeholder for the output QmiLocOperationMode, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.22

+
+
+
+

qmi_indication_loc_get_operation_mode_output_get_indication_status ()

+
gboolean
+qmi_indication_loc_get_operation_mode_output_get_indication_status
+                               (QmiIndicationLocGetOperationModeOutput *self,
+                                QmiLocIndicationStatus *value_indication_status,
+                                GError **error);
+

Get the 'Indication Status' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiIndicationLocGetOperationModeOutput.

 

value_indication_status

a placeholder for the output QmiLocIndicationStatus, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.22

+
+
+
+

Types and Values

+
+

QmiIndicationLocGetOperationModeOutput

+
typedef struct _QmiIndicationLocGetOperationModeOutput QmiIndicationLocGetOperationModeOutput;
+

The QmiIndicationLocGetOperationModeOutput structure contains private data and should only be accessed +using the provided API.

+

Since: 1.22

+
+
+
+ + + \ No newline at end of file diff -Nru libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-LOC-Get-Operation-Mode-request.html libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-LOC-Get-Operation-Mode-request.html --- libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-LOC-Get-Operation-Mode-request.html 1970-01-01 01:00:00.000000000 +0100 +++ libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-LOC-Get-Operation-Mode-request.html 2019-01-08 15:19:01.000000000 +0100 @@ -0,0 +1,320 @@ + + + + +LOC Get Operation Mode request: libqmi-glib Reference Manual + + + + + + + + + + + + + + + + +
+
+
+ + +
+

LOC Get Operation Mode request

+

LOC Get Operation Mode request

+
+ +
+

Types and Values

+ +
+
+

Object Hierarchy

+
    GBoxed
+    ╰── QmiMessageLocGetOperationModeOutput
+
+
+
+

Description

+
+
+

Functions

+
+

qmi_message_loc_get_operation_mode_output_ref ()

+
QmiMessageLocGetOperationModeOutput *
+qmi_message_loc_get_operation_mode_output_ref
+                               (QmiMessageLocGetOperationModeOutput *self);
+

Atomically increments the reference count of self + by one.

+
+

Parameters

+
+++++ + + + + + +

self

a QmiMessageLocGetOperationModeOutput.

 
+
+
+

Returns

+

the new reference to self +.

+
+

Since: 1.22

+
+
+
+

qmi_message_loc_get_operation_mode_output_unref ()

+
void
+qmi_message_loc_get_operation_mode_output_unref
+                               (QmiMessageLocGetOperationModeOutput *self);
+

Atomically decrements the reference count of self + by one. +If the reference count drops to 0, self + is completely disposed.

+
+

Parameters

+
+++++ + + + + + +

self

a QmiMessageLocGetOperationModeOutput.

 
+
+

Since: 1.22

+
+
+
+

qmi_message_loc_get_operation_mode_output_get_result ()

+
gboolean
+qmi_message_loc_get_operation_mode_output_get_result
+                               (QmiMessageLocGetOperationModeOutput *self,
+                                GError **error);
+

Get the result of the QMI operation.

+
+

Parameters

+
+++++ + + + + + + + + + + + + +

self

a QmiMessageLocGetOperationModeOutput.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the QMI operation succeeded, FALSE if error +is set.

+
+

Since: 1.22

+
+
+
+

qmi_client_loc_get_operation_mode ()

+
void
+qmi_client_loc_get_operation_mode (QmiClientLoc *self,
+                                   gpointer unused,
+                                   guint timeout,
+                                   GCancellable *cancellable,
+                                   GAsyncReadyCallback callback,
+                                   gpointer user_data);
+

Asynchronously sends a Get Operation Mode request to the device.

+

When the operation is finished, callback + will be invoked in the thread-default main loop of the thread you are calling this method from.

+

You can then call qmi_client_loc_get_operation_mode_finish() to get the result of the operation.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

self

a QmiClientLoc.

 

unused

NULL. This message doesn't have any input bundle.

 

timeout

maximum time to wait for the method to complete, in seconds.

 

cancellable

a GCancellable or NULL.

 

callback

a GAsyncReadyCallback to call when the request is satisfied.

 

user_data

user data to pass to callback +.

 
+
+

Since: 1.22

+
+
+
+

qmi_client_loc_get_operation_mode_finish ()

+
QmiMessageLocGetOperationModeOutput *
+qmi_client_loc_get_operation_mode_finish
+                               (QmiClientLoc *self,
+                                GAsyncResult *res,
+                                GError **error);
+

Finishes an async operation started with qmi_client_loc_get_operation_mode().

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiClientLoc.

 

res

the GAsyncResult obtained from the GAsyncReadyCallback passed to qmi_client_loc_get_operation_mode().

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

a QmiMessageLocGetOperationModeOutput, or NULL if error +is set. The returned value should be freed with qmi_message_loc_get_operation_mode_output_unref().

+
+

Since: 1.22

+
+
+
+

Types and Values

+
+

QmiMessageLocGetOperationModeOutput

+
typedef struct _QmiMessageLocGetOperationModeOutput QmiMessageLocGetOperationModeOutput;
+

The QmiMessageLocGetOperationModeOutput structure contains private data and should only be accessed +using the provided API.

+

Since: 1.22

+
+
+
+ + + \ No newline at end of file diff -Nru libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-LOC-Get-Predicted-Orbits-Data-Source-indication.html libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-LOC-Get-Predicted-Orbits-Data-Source-indication.html --- libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-LOC-Get-Predicted-Orbits-Data-Source-indication.html 1970-01-01 01:00:00.000000000 +0100 +++ libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-LOC-Get-Predicted-Orbits-Data-Source-indication.html 2019-01-08 15:19:01.000000000 +0100 @@ -0,0 +1,317 @@ + + + + +LOC Get Predicted Orbits Data Source indication: libqmi-glib Reference Manual + + + + + + + + + + + + + + + + +
+
+
+ + +
+

LOC Get Predicted Orbits Data Source indication

+

LOC Get Predicted Orbits Data Source indication

+
+ +
+

Types and Values

+ +
+
+

Object Hierarchy

+
    GBoxed
+    ╰── QmiIndicationLocGetPredictedOrbitsDataSourceOutput
+
+
+
+

Description

+
+
+

Functions

+
+

qmi_indication_loc_get_predicted_orbits_data_source_output_ref ()

+
QmiIndicationLocGetPredictedOrbitsDataSourceOutput *
+qmi_indication_loc_get_predicted_orbits_data_source_output_ref
+                               (QmiIndicationLocGetPredictedOrbitsDataSourceOutput *self);
+

Atomically increments the reference count of self + by one.

+
+

Parameters

+ +
+
+

Returns

+

the new reference to self +.

+
+

Since: 1.22

+
+
+
+

qmi_indication_loc_get_predicted_orbits_data_source_output_unref ()

+
void
+qmi_indication_loc_get_predicted_orbits_data_source_output_unref
+                               (QmiIndicationLocGetPredictedOrbitsDataSourceOutput *self);
+

Atomically decrements the reference count of self + by one. +If the reference count drops to 0, self + is completely disposed.

+
+

Parameters

+ +
+

Since: 1.22

+
+
+
+

qmi_indication_loc_get_predicted_orbits_data_source_output_get_server_list ()

+
gboolean
+qmi_indication_loc_get_predicted_orbits_data_source_output_get_server_list
+                               (QmiIndicationLocGetPredictedOrbitsDataSourceOutput *self,
+                                GArray **value_server_list,
+                                GError **error);
+

Get the 'Server List' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiIndicationLocGetPredictedOrbitsDataSourceOutput.

 

value_server_list

a placeholder for the output GArray of gchar * elements, or NULL if not required. Do not free it, it is owned by self +.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.22

+
+
+
+

qmi_indication_loc_get_predicted_orbits_data_source_output_get_allowed_sizes ()

+
gboolean
+qmi_indication_loc_get_predicted_orbits_data_source_output_get_allowed_sizes
+                               (QmiIndicationLocGetPredictedOrbitsDataSourceOutput *self,
+                                guint32 *value_allowed_sizes_max_file_size,
+                                guint32 *value_allowed_sizes_max_part_size,
+                                GError **error);
+

Get the 'Allowed Sizes' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + + + + + + +

self

a QmiIndicationLocGetPredictedOrbitsDataSourceOutput.

 

value_allowed_sizes_max_file_size

a placeholder for the output guint32, or NULL if not required.

 

value_allowed_sizes_max_part_size

a placeholder for the output guint32, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.22

+
+
+
+

qmi_indication_loc_get_predicted_orbits_data_source_output_get_indication_status ()

+
gboolean
+qmi_indication_loc_get_predicted_orbits_data_source_output_get_indication_status
+                               (QmiIndicationLocGetPredictedOrbitsDataSourceOutput *self,
+                                QmiLocIndicationStatus *value_indication_status,
+                                GError **error);
+

Get the 'Indication Status' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiIndicationLocGetPredictedOrbitsDataSourceOutput.

 

value_indication_status

a placeholder for the output QmiLocIndicationStatus, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.22

+
+
+
+

Types and Values

+
+

QmiIndicationLocGetPredictedOrbitsDataSourceOutput

+
typedef struct _QmiIndicationLocGetPredictedOrbitsDataSourceOutput QmiIndicationLocGetPredictedOrbitsDataSourceOutput;
+

The QmiIndicationLocGetPredictedOrbitsDataSourceOutput structure contains private data and should only be accessed +using the provided API.

+

Since: 1.22

+
+
+
+ + + \ No newline at end of file diff -Nru libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-LOC-Get-Predicted-Orbits-Data-Source-request.html libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-LOC-Get-Predicted-Orbits-Data-Source-request.html --- libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-LOC-Get-Predicted-Orbits-Data-Source-request.html 1970-01-01 01:00:00.000000000 +0100 +++ libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-LOC-Get-Predicted-Orbits-Data-Source-request.html 2019-01-08 15:19:01.000000000 +0100 @@ -0,0 +1,321 @@ + + + + +LOC Get Predicted Orbits Data Source request: libqmi-glib Reference Manual + + + + + + + + + + + + + + + + +
+
+
+ + +
+

LOC Get Predicted Orbits Data Source request

+

LOC Get Predicted Orbits Data Source request

+
+ +
+

Types and Values

+ +
+
+

Object Hierarchy

+
    GBoxed
+    ╰── QmiMessageLocGetPredictedOrbitsDataSourceOutput
+
+
+
+

Description

+
+
+

Functions

+
+

qmi_message_loc_get_predicted_orbits_data_source_output_ref ()

+
QmiMessageLocGetPredictedOrbitsDataSourceOutput *
+qmi_message_loc_get_predicted_orbits_data_source_output_ref
+                               (QmiMessageLocGetPredictedOrbitsDataSourceOutput *self);
+

Atomically increments the reference count of self + by one.

+
+

Parameters

+ +
+
+

Returns

+

the new reference to self +.

+
+

Since: 1.22

+
+
+
+

qmi_message_loc_get_predicted_orbits_data_source_output_unref ()

+
void
+qmi_message_loc_get_predicted_orbits_data_source_output_unref
+                               (QmiMessageLocGetPredictedOrbitsDataSourceOutput *self);
+

Atomically decrements the reference count of self + by one. +If the reference count drops to 0, self + is completely disposed.

+
+

Parameters

+ +
+

Since: 1.22

+
+
+
+

qmi_message_loc_get_predicted_orbits_data_source_output_get_result ()

+
gboolean
+qmi_message_loc_get_predicted_orbits_data_source_output_get_result
+                               (QmiMessageLocGetPredictedOrbitsDataSourceOutput *self,
+                                GError **error);
+

Get the result of the QMI operation.

+
+

Parameters

+
+++++ + + + + + + + + + + + + +

self

a QmiMessageLocGetPredictedOrbitsDataSourceOutput.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the QMI operation succeeded, FALSE if error +is set.

+
+

Since: 1.22

+
+
+
+

qmi_client_loc_get_predicted_orbits_data_source ()

+
void
+qmi_client_loc_get_predicted_orbits_data_source
+                               (QmiClientLoc *self,
+                                gpointer unused,
+                                guint timeout,
+                                GCancellable *cancellable,
+                                GAsyncReadyCallback callback,
+                                gpointer user_data);
+

Asynchronously sends a Get Predicted Orbits Data Source request to the device.

+

When the operation is finished, callback + will be invoked in the thread-default main loop of the thread you are calling this method from.

+

You can then call qmi_client_loc_get_predicted_orbits_data_source_finish() to get the result of the operation.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

self

a QmiClientLoc.

 

unused

NULL. This message doesn't have any input bundle.

 

timeout

maximum time to wait for the method to complete, in seconds.

 

cancellable

a GCancellable or NULL.

 

callback

a GAsyncReadyCallback to call when the request is satisfied.

 

user_data

user data to pass to callback +.

 
+
+

Since: 1.22

+
+
+
+

qmi_client_loc_get_predicted_orbits_data_source_finish ()

+
QmiMessageLocGetPredictedOrbitsDataSourceOutput *
+qmi_client_loc_get_predicted_orbits_data_source_finish
+                               (QmiClientLoc *self,
+                                GAsyncResult *res,
+                                GError **error);
+

Finishes an async operation started with qmi_client_loc_get_predicted_orbits_data_source().

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiClientLoc.

 

res

the GAsyncResult obtained from the GAsyncReadyCallback passed to qmi_client_loc_get_predicted_orbits_data_source().

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

a QmiMessageLocGetPredictedOrbitsDataSourceOutput, or NULL if error +is set. The returned value should be freed with qmi_message_loc_get_predicted_orbits_data_source_output_unref().

+
+

Since: 1.22

+
+
+
+

Types and Values

+
+

QmiMessageLocGetPredictedOrbitsDataSourceOutput

+
typedef struct _QmiMessageLocGetPredictedOrbitsDataSourceOutput QmiMessageLocGetPredictedOrbitsDataSourceOutput;
+

The QmiMessageLocGetPredictedOrbitsDataSourceOutput structure contains private data and should only be accessed +using the provided API.

+

Since: 1.22

+
+
+
+ + + \ No newline at end of file diff -Nru libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-LOC-Get-Server-indication.html libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-LOC-Get-Server-indication.html --- libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-LOC-Get-Server-indication.html 1970-01-01 01:00:00.000000000 +0100 +++ libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-LOC-Get-Server-indication.html 2019-01-08 15:19:01.000000000 +0100 @@ -0,0 +1,425 @@ + + + + +LOC Get Server indication: libqmi-glib Reference Manual + + + + + + + + + + + + + + + + +
+
+
+ + +
+

LOC Get Server indication

+

LOC Get Server indication

+
+ +
+

Types and Values

+ +
+
+

Object Hierarchy

+
    GBoxed
+    ╰── QmiIndicationLocGetServerOutput
+
+
+
+

Description

+
+
+

Functions

+
+

qmi_indication_loc_get_server_output_ref ()

+
QmiIndicationLocGetServerOutput *
+qmi_indication_loc_get_server_output_ref
+                               (QmiIndicationLocGetServerOutput *self);
+

Atomically increments the reference count of self + by one.

+
+

Parameters

+
+++++ + + + + + +

self

a QmiIndicationLocGetServerOutput.

 
+
+
+

Returns

+

the new reference to self +.

+
+

Since: 1.22

+
+
+
+

qmi_indication_loc_get_server_output_unref ()

+
void
+qmi_indication_loc_get_server_output_unref
+                               (QmiIndicationLocGetServerOutput *self);
+

Atomically decrements the reference count of self + by one. +If the reference count drops to 0, self + is completely disposed.

+
+

Parameters

+
+++++ + + + + + +

self

a QmiIndicationLocGetServerOutput.

 
+
+

Since: 1.22

+
+
+
+

qmi_indication_loc_get_server_output_get_url ()

+
gboolean
+qmi_indication_loc_get_server_output_get_url
+                               (QmiIndicationLocGetServerOutput *self,
+                                const gchar **value_url,
+                                GError **error);
+

Get the 'URL' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiIndicationLocGetServerOutput.

 

value_url

a placeholder for the output constant string, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.22

+
+
+
+

qmi_indication_loc_get_server_output_get_ipv6 ()

+
gboolean
+qmi_indication_loc_get_server_output_get_ipv6
+                               (QmiIndicationLocGetServerOutput *self,
+                                GArray **value_ipv6_ipv6_address,
+                                guint32 *value_ipv6_ipv6_port,
+                                GError **error);
+

Get the 'IPv6' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + + + + + + +

self

a QmiIndicationLocGetServerOutput.

 

value_ipv6_ipv6_address

a placeholder for the output GArray of guint16 elements, or NULL if not required. Do not free it, it is owned by self +.

 

value_ipv6_ipv6_port

a placeholder for the output guint32, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.22

+
+
+
+

qmi_indication_loc_get_server_output_get_ipv4 ()

+
gboolean
+qmi_indication_loc_get_server_output_get_ipv4
+                               (QmiIndicationLocGetServerOutput *self,
+                                guint32 *value_ipv4_ipv4_address,
+                                guint16 *value_ipv4_ipv4_port,
+                                GError **error);
+

Get the 'IPv4' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + + + + + + +

self

a QmiIndicationLocGetServerOutput.

 

value_ipv4_ipv4_address

a placeholder for the output guint32, or NULL if not required.

 

value_ipv4_ipv4_port

a placeholder for the output guint16, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.22

+
+
+
+

qmi_indication_loc_get_server_output_get_server_type ()

+
gboolean
+qmi_indication_loc_get_server_output_get_server_type
+                               (QmiIndicationLocGetServerOutput *self,
+                                QmiLocServerType *value_server_type,
+                                GError **error);
+

Get the 'Server Type' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiIndicationLocGetServerOutput.

 

value_server_type

a placeholder for the output QmiLocServerType, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.22

+
+
+
+

qmi_indication_loc_get_server_output_get_indication_status ()

+
gboolean
+qmi_indication_loc_get_server_output_get_indication_status
+                               (QmiIndicationLocGetServerOutput *self,
+                                QmiLocIndicationStatus *value_indication_status,
+                                GError **error);
+

Get the 'Indication Status' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiIndicationLocGetServerOutput.

 

value_indication_status

a placeholder for the output QmiLocIndicationStatus, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.22

+
+
+
+

Types and Values

+
+

QmiIndicationLocGetServerOutput

+
typedef struct _QmiIndicationLocGetServerOutput QmiIndicationLocGetServerOutput;
+

The QmiIndicationLocGetServerOutput structure contains private data and should only be accessed +using the provided API.

+

Since: 1.22

+
+
+
+ + + \ No newline at end of file diff -Nru libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-LOC-Get-Server-request.html libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-LOC-Get-Server-request.html --- libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-LOC-Get-Server-request.html 1970-01-01 01:00:00.000000000 +0100 +++ libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-LOC-Get-Server-request.html 2019-01-08 15:19:01.000000000 +0100 @@ -0,0 +1,629 @@ + + + + +LOC Get Server request: libqmi-glib Reference Manual + + + + + + + + + + + + + + + + +
+
+
+ + +
+

LOC Get Server request

+

LOC Get Server request

+
+ +
+

Types and Values

+ +
+
+

Object Hierarchy

+
    GBoxed
+    ├── QmiMessageLocGetServerInput
+    ╰── QmiMessageLocGetServerOutput
+
+
+
+

Description

+
+
+

Functions

+
+

qmi_message_loc_get_server_input_new ()

+
QmiMessageLocGetServerInput *
+qmi_message_loc_get_server_input_new (void);
+

Allocates a new QmiMessageLocGetServerInput.

+
+

Returns

+

the newly created QmiMessageLocGetServerInput. The returned value should be freed with qmi_message_loc_get_server_input_unref().

+
+

Since: 1.22

+
+
+
+

qmi_message_loc_get_server_input_ref ()

+
QmiMessageLocGetServerInput *
+qmi_message_loc_get_server_input_ref (QmiMessageLocGetServerInput *self);
+

Atomically increments the reference count of self + by one.

+
+

Parameters

+
+++++ + + + + + +

self

a QmiMessageLocGetServerInput.

 
+
+
+

Returns

+

the new reference to self +.

+
+

Since: 1.22

+
+
+
+

qmi_message_loc_get_server_input_unref ()

+
void
+qmi_message_loc_get_server_input_unref
+                               (QmiMessageLocGetServerInput *self);
+

Atomically decrements the reference count of self + by one. +If the reference count drops to 0, self + is completely disposed.

+
+

Parameters

+
+++++ + + + + + +

self

a QmiMessageLocGetServerInput.

 
+
+

Since: 1.22

+
+
+
+

qmi_message_loc_get_server_input_get_server_address_type ()

+
gboolean
+qmi_message_loc_get_server_input_get_server_address_type
+                               (QmiMessageLocGetServerInput *self,
+                                QmiLocServerAddressType *value_server_address_type,
+                                GError **error);
+

Get the 'Server Address Type' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageLocGetServerInput.

 

value_server_address_type

a placeholder for the output QmiLocServerAddressType, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.22

+
+
+
+

qmi_message_loc_get_server_input_set_server_address_type ()

+
gboolean
+qmi_message_loc_get_server_input_set_server_address_type
+                               (QmiMessageLocGetServerInput *self,
+                                QmiLocServerAddressType value_server_address_type,
+                                GError **error);
+

Set the 'Server Address Type' field in the message.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageLocGetServerInput.

 

value_server_address_type

a QmiLocServerAddressType.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if value +was successfully set, FALSE otherwise.

+
+

Since: 1.22

+
+
+
+

qmi_message_loc_get_server_input_get_server_type ()

+
gboolean
+qmi_message_loc_get_server_input_get_server_type
+                               (QmiMessageLocGetServerInput *self,
+                                QmiLocServerType *value_server_type,
+                                GError **error);
+

Get the 'Server Type' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageLocGetServerInput.

 

value_server_type

a placeholder for the output QmiLocServerType, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.22

+
+
+
+

qmi_message_loc_get_server_input_set_server_type ()

+
gboolean
+qmi_message_loc_get_server_input_set_server_type
+                               (QmiMessageLocGetServerInput *self,
+                                QmiLocServerType value_server_type,
+                                GError **error);
+

Set the 'Server Type' field in the message.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageLocGetServerInput.

 

value_server_type

a QmiLocServerType.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if value +was successfully set, FALSE otherwise.

+
+

Since: 1.22

+
+
+
+

qmi_message_loc_get_server_output_ref ()

+
QmiMessageLocGetServerOutput *
+qmi_message_loc_get_server_output_ref (QmiMessageLocGetServerOutput *self);
+

Atomically increments the reference count of self + by one.

+
+

Parameters

+
+++++ + + + + + +

self

a QmiMessageLocGetServerOutput.

 
+
+
+

Returns

+

the new reference to self +.

+
+

Since: 1.22

+
+
+
+

qmi_message_loc_get_server_output_unref ()

+
void
+qmi_message_loc_get_server_output_unref
+                               (QmiMessageLocGetServerOutput *self);
+

Atomically decrements the reference count of self + by one. +If the reference count drops to 0, self + is completely disposed.

+
+

Parameters

+
+++++ + + + + + +

self

a QmiMessageLocGetServerOutput.

 
+
+

Since: 1.22

+
+
+
+

qmi_message_loc_get_server_output_get_result ()

+
gboolean
+qmi_message_loc_get_server_output_get_result
+                               (QmiMessageLocGetServerOutput *self,
+                                GError **error);
+

Get the result of the QMI operation.

+
+

Parameters

+
+++++ + + + + + + + + + + + + +

self

a QmiMessageLocGetServerOutput.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the QMI operation succeeded, FALSE if error +is set.

+
+

Since: 1.22

+
+
+
+

qmi_client_loc_get_server ()

+
void
+qmi_client_loc_get_server (QmiClientLoc *self,
+                           QmiMessageLocGetServerInput *input,
+                           guint timeout,
+                           GCancellable *cancellable,
+                           GAsyncReadyCallback callback,
+                           gpointer user_data);
+

Asynchronously sends a Get Server request to the device.

+

When the operation is finished, callback + will be invoked in the thread-default main loop of the thread you are calling this method from.

+

You can then call qmi_client_loc_get_server_finish() to get the result of the operation.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

self

a QmiClientLoc.

 

input

a QmiMessageLocGetServerInput.

 

timeout

maximum time to wait for the method to complete, in seconds.

 

cancellable

a GCancellable or NULL.

 

callback

a GAsyncReadyCallback to call when the request is satisfied.

 

user_data

user data to pass to callback +.

 
+
+

Since: 1.22

+
+
+
+

qmi_client_loc_get_server_finish ()

+
QmiMessageLocGetServerOutput *
+qmi_client_loc_get_server_finish (QmiClientLoc *self,
+                                  GAsyncResult *res,
+                                  GError **error);
+

Finishes an async operation started with qmi_client_loc_get_server().

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiClientLoc.

 

res

the GAsyncResult obtained from the GAsyncReadyCallback passed to qmi_client_loc_get_server().

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

a QmiMessageLocGetServerOutput, or NULL if error +is set. The returned value should be freed with qmi_message_loc_get_server_output_unref().

+
+

Since: 1.22

+
+
+
+

Types and Values

+
+

QmiMessageLocGetServerInput

+
typedef struct _QmiMessageLocGetServerInput QmiMessageLocGetServerInput;
+

The QmiMessageLocGetServerInput structure contains private data and should only be accessed +using the provided API.

+

Since: 1.22

+
+
+
+

QmiMessageLocGetServerOutput

+
typedef struct _QmiMessageLocGetServerOutput QmiMessageLocGetServerOutput;
+

The QmiMessageLocGetServerOutput structure contains private data and should only be accessed +using the provided API.

+

Since: 1.22

+
+
+
+ + + \ No newline at end of file diff -Nru libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-LOC-GNSS-Sv-Info-indication.html libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-LOC-GNSS-Sv-Info-indication.html --- libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-LOC-GNSS-Sv-Info-indication.html 1970-01-01 01:00:00.000000000 +0100 +++ libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-LOC-GNSS-Sv-Info-indication.html 2019-01-08 15:19:01.000000000 +0100 @@ -0,0 +1,341 @@ + + + + +LOC GNSS Sv Info indication: libqmi-glib Reference Manual + + + + + + + + + + + + + + + + +
+
+
+ + +
+

LOC GNSS Sv Info indication

+

LOC GNSS Sv Info indication

+
+ +
+

Types and Values

+ +
+
+

Object Hierarchy

+
    GBoxed
+    ╰── QmiIndicationLocGnssSvInfoOutput
+
+
+
+

Description

+
+
+

Functions

+
+

qmi_indication_loc_gnss_sv_info_output_ref ()

+
QmiIndicationLocGnssSvInfoOutput *
+qmi_indication_loc_gnss_sv_info_output_ref
+                               (QmiIndicationLocGnssSvInfoOutput *self);
+

Atomically increments the reference count of self + by one.

+
+

Parameters

+
+++++ + + + + + +

self

a QmiIndicationLocGnssSvInfoOutput.

 
+
+
+

Returns

+

the new reference to self +.

+
+

Since: 1.22

+
+
+
+

qmi_indication_loc_gnss_sv_info_output_unref ()

+
void
+qmi_indication_loc_gnss_sv_info_output_unref
+                               (QmiIndicationLocGnssSvInfoOutput *self);
+

Atomically decrements the reference count of self + by one. +If the reference count drops to 0, self + is completely disposed.

+
+

Parameters

+
+++++ + + + + + +

self

a QmiIndicationLocGnssSvInfoOutput.

 
+
+

Since: 1.22

+
+
+
+

qmi_indication_loc_gnss_sv_info_output_get_list ()

+
gboolean
+qmi_indication_loc_gnss_sv_info_output_get_list
+                               (QmiIndicationLocGnssSvInfoOutput *self,
+                                GArray **value_list,
+                                GError **error);
+

Get the 'List' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiIndicationLocGnssSvInfoOutput.

 

value_list

a placeholder for the output GArray of QmiIndicationLocGnssSvInfoOutputListElement elements, or NULL if not required. Do not free it, it is owned by self +.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.22

+
+
+
+

qmi_indication_loc_gnss_sv_info_output_get_altitude_assumed ()

+
gboolean
+qmi_indication_loc_gnss_sv_info_output_get_altitude_assumed
+                               (QmiIndicationLocGnssSvInfoOutput *self,
+                                gboolean *value_altitude_assumed,
+                                GError **error);
+

Get the 'Altitude Assumed' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiIndicationLocGnssSvInfoOutput.

 

value_altitude_assumed

a placeholder for the output gboolean, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.22

+
+
+
+

Types and Values

+
+

QmiIndicationLocGnssSvInfoOutput

+
typedef struct _QmiIndicationLocGnssSvInfoOutput QmiIndicationLocGnssSvInfoOutput;
+

The QmiIndicationLocGnssSvInfoOutput structure contains private data and should only be accessed +using the provided API.

+

Since: 1.22

+
+
+
+

QmiIndicationLocGnssSvInfoOutputListElement

+
typedef struct {
+    QmiLocSatelliteValidInformation valid_information;
+    QmiLocSystem system;
+    guint16 gnss_satellite_id;
+    QmiLocHealthStatus health_status;
+    QmiLocSatelliteStatus satellite_status;
+    QmiLocNavigationData navigation_data;
+    gfloat elevation_degrees;
+    gfloat azimuth_degrees;
+    gfloat signal_to_noise_ratio_bhz;
+} QmiIndicationLocGnssSvInfoOutputListElement;
+
+

A QmiIndicationLocGnssSvInfoOutputListElement struct.

+
+

Members

+
+++++ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

QmiLocSatelliteValidInformation valid_information;

a QmiLocSatelliteValidInformation.

 

QmiLocSystem system;

a QmiLocSystem.

 

guint16 gnss_satellite_id;

a guint16.

 

QmiLocHealthStatus health_status;

a QmiLocHealthStatus.

 

QmiLocSatelliteStatus satellite_status;

a QmiLocSatelliteStatus.

 

QmiLocNavigationData navigation_data;

a QmiLocNavigationData.

 

gfloat elevation_degrees;

a gfloat.

 

gfloat azimuth_degrees;

a gfloat.

 

gfloat signal_to_noise_ratio_bhz;

a gfloat.

 
+
+

Since: 1.22

+
+
+
+ + + \ No newline at end of file diff -Nru libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-LOC-Inject-Predicted-Orbits-Data-indication.html libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-LOC-Inject-Predicted-Orbits-Data-indication.html --- libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-LOC-Inject-Predicted-Orbits-Data-indication.html 1970-01-01 01:00:00.000000000 +0100 +++ libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-LOC-Inject-Predicted-Orbits-Data-indication.html 2019-01-08 15:19:01.000000000 +0100 @@ -0,0 +1,259 @@ + + + + +LOC Inject Predicted Orbits Data indication: libqmi-glib Reference Manual + + + + + + + + + + + + + + + + +
+
+
+ + +
+

LOC Inject Predicted Orbits Data indication

+

LOC Inject Predicted Orbits Data indication

+
+ +
+

Types and Values

+ +
+
+

Object Hierarchy

+
    GBoxed
+    ╰── QmiIndicationLocInjectPredictedOrbitsDataOutput
+
+
+
+

Description

+
+
+

Functions

+
+

qmi_indication_loc_inject_predicted_orbits_data_output_ref ()

+
QmiIndicationLocInjectPredictedOrbitsDataOutput *
+qmi_indication_loc_inject_predicted_orbits_data_output_ref
+                               (QmiIndicationLocInjectPredictedOrbitsDataOutput *self);
+

Atomically increments the reference count of self + by one.

+
+

Parameters

+ +
+
+

Returns

+

the new reference to self +.

+
+

Since: 1.22

+
+
+
+

qmi_indication_loc_inject_predicted_orbits_data_output_unref ()

+
void
+qmi_indication_loc_inject_predicted_orbits_data_output_unref
+                               (QmiIndicationLocInjectPredictedOrbitsDataOutput *self);
+

Atomically decrements the reference count of self + by one. +If the reference count drops to 0, self + is completely disposed.

+
+

Parameters

+ +
+

Since: 1.22

+
+
+
+

qmi_indication_loc_inject_predicted_orbits_data_output_get_part_number ()

+
gboolean
+qmi_indication_loc_inject_predicted_orbits_data_output_get_part_number
+                               (QmiIndicationLocInjectPredictedOrbitsDataOutput *self,
+                                guint16 *value_part_number,
+                                GError **error);
+

Get the 'Part Number' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiIndicationLocInjectPredictedOrbitsDataOutput.

 

value_part_number

a placeholder for the output guint16, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.22

+
+
+
+

qmi_indication_loc_inject_predicted_orbits_data_output_get_indication_status ()

+
gboolean
+qmi_indication_loc_inject_predicted_orbits_data_output_get_indication_status
+                               (QmiIndicationLocInjectPredictedOrbitsDataOutput *self,
+                                QmiLocIndicationStatus *value_indication_status,
+                                GError **error);
+

Get the 'Indication Status' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiIndicationLocInjectPredictedOrbitsDataOutput.

 

value_indication_status

a placeholder for the output QmiLocIndicationStatus, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.22

+
+
+
+

Types and Values

+
+

QmiIndicationLocInjectPredictedOrbitsDataOutput

+
typedef struct _QmiIndicationLocInjectPredictedOrbitsDataOutput QmiIndicationLocInjectPredictedOrbitsDataOutput;
+

The QmiIndicationLocInjectPredictedOrbitsDataOutput structure contains private data and should only be accessed +using the provided API.

+

Since: 1.22

+
+
+
+ + + \ No newline at end of file diff -Nru libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-LOC-Inject-Predicted-Orbits-Data-request.html libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-LOC-Inject-Predicted-Orbits-Data-request.html --- libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-LOC-Inject-Predicted-Orbits-Data-request.html 1970-01-01 01:00:00.000000000 +0100 +++ libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-LOC-Inject-Predicted-Orbits-Data-request.html 2019-01-08 15:19:01.000000000 +0100 @@ -0,0 +1,942 @@ + + + + +LOC Inject Predicted Orbits Data request: libqmi-glib Reference Manual + + + + + + + + + + + + + + + + +
+
+
+ + +
+

LOC Inject Predicted Orbits Data request

+

LOC Inject Predicted Orbits Data request

+
+
+

Functions

+
++++ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+QmiMessageLocInjectPredictedOrbitsDataInput * + +qmi_message_loc_inject_predicted_orbits_data_input_new () +
+QmiMessageLocInjectPredictedOrbitsDataInput * + +qmi_message_loc_inject_predicted_orbits_data_input_ref () +
+void + +qmi_message_loc_inject_predicted_orbits_data_input_unref () +
+gboolean + +qmi_message_loc_inject_predicted_orbits_data_input_get_format_type () +
+gboolean + +qmi_message_loc_inject_predicted_orbits_data_input_set_format_type () +
+gboolean + +qmi_message_loc_inject_predicted_orbits_data_input_get_part_data () +
+gboolean + +qmi_message_loc_inject_predicted_orbits_data_input_set_part_data () +
+gboolean + +qmi_message_loc_inject_predicted_orbits_data_input_get_part_number () +
+gboolean + +qmi_message_loc_inject_predicted_orbits_data_input_set_part_number () +
+gboolean + +qmi_message_loc_inject_predicted_orbits_data_input_get_total_parts () +
+gboolean + +qmi_message_loc_inject_predicted_orbits_data_input_set_total_parts () +
+gboolean + +qmi_message_loc_inject_predicted_orbits_data_input_get_total_size () +
+gboolean + +qmi_message_loc_inject_predicted_orbits_data_input_set_total_size () +
+QmiMessageLocInjectPredictedOrbitsDataOutput * + +qmi_message_loc_inject_predicted_orbits_data_output_ref () +
+void + +qmi_message_loc_inject_predicted_orbits_data_output_unref () +
+gboolean + +qmi_message_loc_inject_predicted_orbits_data_output_get_result () +
+void + +qmi_client_loc_inject_predicted_orbits_data () +
+QmiMessageLocInjectPredictedOrbitsDataOutput * + +qmi_client_loc_inject_predicted_orbits_data_finish () +
+
+ +
+

Object Hierarchy

+
    GBoxed
+    ├── QmiMessageLocInjectPredictedOrbitsDataInput
+    ╰── QmiMessageLocInjectPredictedOrbitsDataOutput
+
+
+
+

Description

+
+
+

Functions

+
+

qmi_message_loc_inject_predicted_orbits_data_input_new ()

+
QmiMessageLocInjectPredictedOrbitsDataInput *
+qmi_message_loc_inject_predicted_orbits_data_input_new
+                               (void);
+

Allocates a new QmiMessageLocInjectPredictedOrbitsDataInput.

+
+

Returns

+

the newly created QmiMessageLocInjectPredictedOrbitsDataInput. The returned value should be freed with qmi_message_loc_inject_predicted_orbits_data_input_unref().

+
+

Since: 1.22

+
+
+
+

qmi_message_loc_inject_predicted_orbits_data_input_ref ()

+
QmiMessageLocInjectPredictedOrbitsDataInput *
+qmi_message_loc_inject_predicted_orbits_data_input_ref
+                               (QmiMessageLocInjectPredictedOrbitsDataInput *self);
+

Atomically increments the reference count of self + by one.

+
+

Parameters

+ +
+
+

Returns

+

the new reference to self +.

+
+

Since: 1.22

+
+
+
+

qmi_message_loc_inject_predicted_orbits_data_input_unref ()

+
void
+qmi_message_loc_inject_predicted_orbits_data_input_unref
+                               (QmiMessageLocInjectPredictedOrbitsDataInput *self);
+

Atomically decrements the reference count of self + by one. +If the reference count drops to 0, self + is completely disposed.

+
+

Parameters

+ +
+

Since: 1.22

+
+
+
+

qmi_message_loc_inject_predicted_orbits_data_input_get_format_type ()

+
gboolean
+qmi_message_loc_inject_predicted_orbits_data_input_get_format_type
+                               (QmiMessageLocInjectPredictedOrbitsDataInput *self,
+                                QmiLocPredictedOrbitsDataFormat *value_format_type,
+                                GError **error);
+

Get the 'Format Type' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageLocInjectPredictedOrbitsDataInput.

 

value_format_type

a placeholder for the output QmiLocPredictedOrbitsDataFormat, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.22

+
+
+
+

qmi_message_loc_inject_predicted_orbits_data_input_set_format_type ()

+
gboolean
+qmi_message_loc_inject_predicted_orbits_data_input_set_format_type
+                               (QmiMessageLocInjectPredictedOrbitsDataInput *self,
+                                QmiLocPredictedOrbitsDataFormat value_format_type,
+                                GError **error);
+

Set the 'Format Type' field in the message.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageLocInjectPredictedOrbitsDataInput.

 

value_format_type

a QmiLocPredictedOrbitsDataFormat.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if value +was successfully set, FALSE otherwise.

+
+

Since: 1.22

+
+
+
+

qmi_message_loc_inject_predicted_orbits_data_input_get_part_data ()

+
gboolean
+qmi_message_loc_inject_predicted_orbits_data_input_get_part_data
+                               (QmiMessageLocInjectPredictedOrbitsDataInput *self,
+                                GArray **value_part_data,
+                                GError **error);
+

Get the 'Part Data' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageLocInjectPredictedOrbitsDataInput.

 

value_part_data

a placeholder for the output GArray of guint8 elements, or NULL if not required. Do not free it, it is owned by self +.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.22

+
+
+
+

qmi_message_loc_inject_predicted_orbits_data_input_set_part_data ()

+
gboolean
+qmi_message_loc_inject_predicted_orbits_data_input_set_part_data
+                               (QmiMessageLocInjectPredictedOrbitsDataInput *self,
+                                GArray *value_part_data,
+                                GError **error);
+

Set the 'Part Data' field in the message.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageLocInjectPredictedOrbitsDataInput.

 

value_part_data

a GArray of guint8 elements. A new reference to value_part_data +will be taken.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if value +was successfully set, FALSE otherwise.

+
+

Since: 1.22

+
+
+
+

qmi_message_loc_inject_predicted_orbits_data_input_get_part_number ()

+
gboolean
+qmi_message_loc_inject_predicted_orbits_data_input_get_part_number
+                               (QmiMessageLocInjectPredictedOrbitsDataInput *self,
+                                guint16 *value_part_number,
+                                GError **error);
+

Get the 'Part Number' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageLocInjectPredictedOrbitsDataInput.

 

value_part_number

a placeholder for the output guint16, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.22

+
+
+
+

qmi_message_loc_inject_predicted_orbits_data_input_set_part_number ()

+
gboolean
+qmi_message_loc_inject_predicted_orbits_data_input_set_part_number
+                               (QmiMessageLocInjectPredictedOrbitsDataInput *self,
+                                guint16 value_part_number,
+                                GError **error);
+

Set the 'Part Number' field in the message.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageLocInjectPredictedOrbitsDataInput.

 

value_part_number

a guint16.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if value +was successfully set, FALSE otherwise.

+
+

Since: 1.22

+
+
+
+

qmi_message_loc_inject_predicted_orbits_data_input_get_total_parts ()

+
gboolean
+qmi_message_loc_inject_predicted_orbits_data_input_get_total_parts
+                               (QmiMessageLocInjectPredictedOrbitsDataInput *self,
+                                guint16 *value_total_parts,
+                                GError **error);
+

Get the 'Total Parts' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageLocInjectPredictedOrbitsDataInput.

 

value_total_parts

a placeholder for the output guint16, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.22

+
+
+
+

qmi_message_loc_inject_predicted_orbits_data_input_set_total_parts ()

+
gboolean
+qmi_message_loc_inject_predicted_orbits_data_input_set_total_parts
+                               (QmiMessageLocInjectPredictedOrbitsDataInput *self,
+                                guint16 value_total_parts,
+                                GError **error);
+

Set the 'Total Parts' field in the message.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageLocInjectPredictedOrbitsDataInput.

 

value_total_parts

a guint16.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if value +was successfully set, FALSE otherwise.

+
+

Since: 1.22

+
+
+
+

qmi_message_loc_inject_predicted_orbits_data_input_get_total_size ()

+
gboolean
+qmi_message_loc_inject_predicted_orbits_data_input_get_total_size
+                               (QmiMessageLocInjectPredictedOrbitsDataInput *self,
+                                guint32 *value_total_size,
+                                GError **error);
+

Get the 'Total Size' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageLocInjectPredictedOrbitsDataInput.

 

value_total_size

a placeholder for the output guint32, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.22

+
+
+
+

qmi_message_loc_inject_predicted_orbits_data_input_set_total_size ()

+
gboolean
+qmi_message_loc_inject_predicted_orbits_data_input_set_total_size
+                               (QmiMessageLocInjectPredictedOrbitsDataInput *self,
+                                guint32 value_total_size,
+                                GError **error);
+

Set the 'Total Size' field in the message.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageLocInjectPredictedOrbitsDataInput.

 

value_total_size

a guint32.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if value +was successfully set, FALSE otherwise.

+
+

Since: 1.22

+
+
+
+

qmi_message_loc_inject_predicted_orbits_data_output_ref ()

+
QmiMessageLocInjectPredictedOrbitsDataOutput *
+qmi_message_loc_inject_predicted_orbits_data_output_ref
+                               (QmiMessageLocInjectPredictedOrbitsDataOutput *self);
+

Atomically increments the reference count of self + by one.

+
+

Parameters

+ +
+
+

Returns

+

the new reference to self +.

+
+

Since: 1.22

+
+
+
+

qmi_message_loc_inject_predicted_orbits_data_output_unref ()

+
void
+qmi_message_loc_inject_predicted_orbits_data_output_unref
+                               (QmiMessageLocInjectPredictedOrbitsDataOutput *self);
+

Atomically decrements the reference count of self + by one. +If the reference count drops to 0, self + is completely disposed.

+
+

Parameters

+ +
+

Since: 1.22

+
+
+
+

qmi_message_loc_inject_predicted_orbits_data_output_get_result ()

+
gboolean
+qmi_message_loc_inject_predicted_orbits_data_output_get_result
+                               (QmiMessageLocInjectPredictedOrbitsDataOutput *self,
+                                GError **error);
+

Get the result of the QMI operation.

+
+

Parameters

+
+++++ + + + + + + + + + + + + +

self

a QmiMessageLocInjectPredictedOrbitsDataOutput.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the QMI operation succeeded, FALSE if error +is set.

+
+

Since: 1.22

+
+
+
+

qmi_client_loc_inject_predicted_orbits_data ()

+
void
+qmi_client_loc_inject_predicted_orbits_data
+                               (QmiClientLoc *self,
+                                QmiMessageLocInjectPredictedOrbitsDataInput *input,
+                                guint timeout,
+                                GCancellable *cancellable,
+                                GAsyncReadyCallback callback,
+                                gpointer user_data);
+

Asynchronously sends a Inject Predicted Orbits Data request to the device.

+

When the operation is finished, callback + will be invoked in the thread-default main loop of the thread you are calling this method from.

+

You can then call qmi_client_loc_inject_predicted_orbits_data_finish() to get the result of the operation.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

self

a QmiClientLoc.

 

input

a QmiMessageLocInjectPredictedOrbitsDataInput.

 

timeout

maximum time to wait for the method to complete, in seconds.

 

cancellable

a GCancellable or NULL.

 

callback

a GAsyncReadyCallback to call when the request is satisfied.

 

user_data

user data to pass to callback +.

 
+
+

Since: 1.22

+
+
+
+

qmi_client_loc_inject_predicted_orbits_data_finish ()

+
QmiMessageLocInjectPredictedOrbitsDataOutput *
+qmi_client_loc_inject_predicted_orbits_data_finish
+                               (QmiClientLoc *self,
+                                GAsyncResult *res,
+                                GError **error);
+

Finishes an async operation started with qmi_client_loc_inject_predicted_orbits_data().

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiClientLoc.

 

res

the GAsyncResult obtained from the GAsyncReadyCallback passed to qmi_client_loc_inject_predicted_orbits_data().

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

a QmiMessageLocInjectPredictedOrbitsDataOutput, or NULL if error +is set. The returned value should be freed with qmi_message_loc_inject_predicted_orbits_data_output_unref().

+
+

Since: 1.22

+
+
+
+

Types and Values

+
+

QmiMessageLocInjectPredictedOrbitsDataInput

+
typedef struct _QmiMessageLocInjectPredictedOrbitsDataInput QmiMessageLocInjectPredictedOrbitsDataInput;
+

The QmiMessageLocInjectPredictedOrbitsDataInput structure contains private data and should only be accessed +using the provided API.

+

Since: 1.22

+
+
+
+

QmiMessageLocInjectPredictedOrbitsDataOutput

+
typedef struct _QmiMessageLocInjectPredictedOrbitsDataOutput QmiMessageLocInjectPredictedOrbitsDataOutput;
+

The QmiMessageLocInjectPredictedOrbitsDataOutput structure contains private data and should only be accessed +using the provided API.

+

Since: 1.22

+
+
+
+ + + \ No newline at end of file diff -Nru libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-LOC-Inject-Xtra-Data-indication.html libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-LOC-Inject-Xtra-Data-indication.html --- libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-LOC-Inject-Xtra-Data-indication.html 1970-01-01 01:00:00.000000000 +0100 +++ libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-LOC-Inject-Xtra-Data-indication.html 2019-01-08 15:19:01.000000000 +0100 @@ -0,0 +1,259 @@ + + + + +LOC Inject Xtra Data indication: libqmi-glib Reference Manual + + + + + + + + + + + + + + + + +
+
+
+ + +
+

LOC Inject Xtra Data indication

+

LOC Inject Xtra Data indication

+
+ +
+

Types and Values

+ +
+
+

Object Hierarchy

+
    GBoxed
+    ╰── QmiIndicationLocInjectXtraDataOutput
+
+
+
+

Description

+
+
+

Functions

+
+

qmi_indication_loc_inject_xtra_data_output_ref ()

+
QmiIndicationLocInjectXtraDataOutput *
+qmi_indication_loc_inject_xtra_data_output_ref
+                               (QmiIndicationLocInjectXtraDataOutput *self);
+

Atomically increments the reference count of self + by one.

+
+

Parameters

+
+++++ + + + + + +

self

a QmiIndicationLocInjectXtraDataOutput.

 
+
+
+

Returns

+

the new reference to self +.

+
+

Since: 1.22

+
+
+
+

qmi_indication_loc_inject_xtra_data_output_unref ()

+
void
+qmi_indication_loc_inject_xtra_data_output_unref
+                               (QmiIndicationLocInjectXtraDataOutput *self);
+

Atomically decrements the reference count of self + by one. +If the reference count drops to 0, self + is completely disposed.

+
+

Parameters

+
+++++ + + + + + +

self

a QmiIndicationLocInjectXtraDataOutput.

 
+
+

Since: 1.22

+
+
+
+

qmi_indication_loc_inject_xtra_data_output_get_part_number ()

+
gboolean
+qmi_indication_loc_inject_xtra_data_output_get_part_number
+                               (QmiIndicationLocInjectXtraDataOutput *self,
+                                guint16 *value_part_number,
+                                GError **error);
+

Get the 'Part Number' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiIndicationLocInjectXtraDataOutput.

 

value_part_number

a placeholder for the output guint16, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.22

+
+
+
+

qmi_indication_loc_inject_xtra_data_output_get_indication_status ()

+
gboolean
+qmi_indication_loc_inject_xtra_data_output_get_indication_status
+                               (QmiIndicationLocInjectXtraDataOutput *self,
+                                QmiLocIndicationStatus *value_indication_status,
+                                GError **error);
+

Get the 'Indication Status' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiIndicationLocInjectXtraDataOutput.

 

value_indication_status

a placeholder for the output QmiLocIndicationStatus, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.22

+
+
+
+

Types and Values

+
+

QmiIndicationLocInjectXtraDataOutput

+
typedef struct _QmiIndicationLocInjectXtraDataOutput QmiIndicationLocInjectXtraDataOutput;
+

The QmiIndicationLocInjectXtraDataOutput structure contains private data and should only be accessed +using the provided API.

+

Since: 1.22

+
+
+
+ + + \ No newline at end of file diff -Nru libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-LOC-Inject-Xtra-Data-request.html libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-LOC-Inject-Xtra-Data-request.html --- libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-LOC-Inject-Xtra-Data-request.html 1970-01-01 01:00:00.000000000 +0100 +++ libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-LOC-Inject-Xtra-Data-request.html 2019-01-08 15:19:01.000000000 +0100 @@ -0,0 +1,839 @@ + + + + +LOC Inject Xtra Data request: libqmi-glib Reference Manual + + + + + + + + + + + + + + + + +
+
+
+ + +
+

LOC Inject Xtra Data request

+

LOC Inject Xtra Data request

+
+ +
+

Types and Values

+ +
+
+

Object Hierarchy

+
    GBoxed
+    ├── QmiMessageLocInjectXtraDataInput
+    ╰── QmiMessageLocInjectXtraDataOutput
+
+
+
+

Description

+
+
+

Functions

+
+

qmi_message_loc_inject_xtra_data_input_new ()

+
QmiMessageLocInjectXtraDataInput *
+qmi_message_loc_inject_xtra_data_input_new
+                               (void);
+

Allocates a new QmiMessageLocInjectXtraDataInput.

+
+

Returns

+

the newly created QmiMessageLocInjectXtraDataInput. The returned value should be freed with qmi_message_loc_inject_xtra_data_input_unref().

+
+

Since: 1.22

+
+
+
+

qmi_message_loc_inject_xtra_data_input_ref ()

+
QmiMessageLocInjectXtraDataInput *
+qmi_message_loc_inject_xtra_data_input_ref
+                               (QmiMessageLocInjectXtraDataInput *self);
+

Atomically increments the reference count of self + by one.

+
+

Parameters

+
+++++ + + + + + +

self

a QmiMessageLocInjectXtraDataInput.

 
+
+
+

Returns

+

the new reference to self +.

+
+

Since: 1.22

+
+
+
+

qmi_message_loc_inject_xtra_data_input_unref ()

+
void
+qmi_message_loc_inject_xtra_data_input_unref
+                               (QmiMessageLocInjectXtraDataInput *self);
+

Atomically decrements the reference count of self + by one. +If the reference count drops to 0, self + is completely disposed.

+
+

Parameters

+
+++++ + + + + + +

self

a QmiMessageLocInjectXtraDataInput.

 
+
+

Since: 1.22

+
+
+
+

qmi_message_loc_inject_xtra_data_input_get_part_data ()

+
gboolean
+qmi_message_loc_inject_xtra_data_input_get_part_data
+                               (QmiMessageLocInjectXtraDataInput *self,
+                                GArray **value_part_data,
+                                GError **error);
+

Get the 'Part Data' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageLocInjectXtraDataInput.

 

value_part_data

a placeholder for the output GArray of guint8 elements, or NULL if not required. Do not free it, it is owned by self +.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.22

+
+
+
+

qmi_message_loc_inject_xtra_data_input_set_part_data ()

+
gboolean
+qmi_message_loc_inject_xtra_data_input_set_part_data
+                               (QmiMessageLocInjectXtraDataInput *self,
+                                GArray *value_part_data,
+                                GError **error);
+

Set the 'Part Data' field in the message.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageLocInjectXtraDataInput.

 

value_part_data

a GArray of guint8 elements. A new reference to value_part_data +will be taken.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if value +was successfully set, FALSE otherwise.

+
+

Since: 1.22

+
+
+
+

qmi_message_loc_inject_xtra_data_input_get_part_number ()

+
gboolean
+qmi_message_loc_inject_xtra_data_input_get_part_number
+                               (QmiMessageLocInjectXtraDataInput *self,
+                                guint16 *value_part_number,
+                                GError **error);
+

Get the 'Part Number' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageLocInjectXtraDataInput.

 

value_part_number

a placeholder for the output guint16, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.22

+
+
+
+

qmi_message_loc_inject_xtra_data_input_set_part_number ()

+
gboolean
+qmi_message_loc_inject_xtra_data_input_set_part_number
+                               (QmiMessageLocInjectXtraDataInput *self,
+                                guint16 value_part_number,
+                                GError **error);
+

Set the 'Part Number' field in the message.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageLocInjectXtraDataInput.

 

value_part_number

a guint16.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if value +was successfully set, FALSE otherwise.

+
+

Since: 1.22

+
+
+
+

qmi_message_loc_inject_xtra_data_input_get_total_parts ()

+
gboolean
+qmi_message_loc_inject_xtra_data_input_get_total_parts
+                               (QmiMessageLocInjectXtraDataInput *self,
+                                guint16 *value_total_parts,
+                                GError **error);
+

Get the 'Total Parts' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageLocInjectXtraDataInput.

 

value_total_parts

a placeholder for the output guint16, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.22

+
+
+
+

qmi_message_loc_inject_xtra_data_input_set_total_parts ()

+
gboolean
+qmi_message_loc_inject_xtra_data_input_set_total_parts
+                               (QmiMessageLocInjectXtraDataInput *self,
+                                guint16 value_total_parts,
+                                GError **error);
+

Set the 'Total Parts' field in the message.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageLocInjectXtraDataInput.

 

value_total_parts

a guint16.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if value +was successfully set, FALSE otherwise.

+
+

Since: 1.22

+
+
+
+

qmi_message_loc_inject_xtra_data_input_get_total_size ()

+
gboolean
+qmi_message_loc_inject_xtra_data_input_get_total_size
+                               (QmiMessageLocInjectXtraDataInput *self,
+                                guint32 *value_total_size,
+                                GError **error);
+

Get the 'Total Size' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageLocInjectXtraDataInput.

 

value_total_size

a placeholder for the output guint32, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.22

+
+
+
+

qmi_message_loc_inject_xtra_data_input_set_total_size ()

+
gboolean
+qmi_message_loc_inject_xtra_data_input_set_total_size
+                               (QmiMessageLocInjectXtraDataInput *self,
+                                guint32 value_total_size,
+                                GError **error);
+

Set the 'Total Size' field in the message.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageLocInjectXtraDataInput.

 

value_total_size

a guint32.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if value +was successfully set, FALSE otherwise.

+
+

Since: 1.22

+
+
+
+

qmi_message_loc_inject_xtra_data_output_ref ()

+
QmiMessageLocInjectXtraDataOutput *
+qmi_message_loc_inject_xtra_data_output_ref
+                               (QmiMessageLocInjectXtraDataOutput *self);
+

Atomically increments the reference count of self + by one.

+
+

Parameters

+
+++++ + + + + + +

self

a QmiMessageLocInjectXtraDataOutput.

 
+
+
+

Returns

+

the new reference to self +.

+
+

Since: 1.22

+
+
+
+

qmi_message_loc_inject_xtra_data_output_unref ()

+
void
+qmi_message_loc_inject_xtra_data_output_unref
+                               (QmiMessageLocInjectXtraDataOutput *self);
+

Atomically decrements the reference count of self + by one. +If the reference count drops to 0, self + is completely disposed.

+
+

Parameters

+
+++++ + + + + + +

self

a QmiMessageLocInjectXtraDataOutput.

 
+
+

Since: 1.22

+
+
+
+

qmi_message_loc_inject_xtra_data_output_get_result ()

+
gboolean
+qmi_message_loc_inject_xtra_data_output_get_result
+                               (QmiMessageLocInjectXtraDataOutput *self,
+                                GError **error);
+

Get the result of the QMI operation.

+
+

Parameters

+
+++++ + + + + + + + + + + + + +

self

a QmiMessageLocInjectXtraDataOutput.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the QMI operation succeeded, FALSE if error +is set.

+
+

Since: 1.22

+
+
+
+

qmi_client_loc_inject_xtra_data ()

+
void
+qmi_client_loc_inject_xtra_data (QmiClientLoc *self,
+                                 QmiMessageLocInjectXtraDataInput *input,
+                                 guint timeout,
+                                 GCancellable *cancellable,
+                                 GAsyncReadyCallback callback,
+                                 gpointer user_data);
+

Asynchronously sends a Inject Xtra Data request to the device.

+

When the operation is finished, callback + will be invoked in the thread-default main loop of the thread you are calling this method from.

+

You can then call qmi_client_loc_inject_xtra_data_finish() to get the result of the operation.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

self

a QmiClientLoc.

 

input

a QmiMessageLocInjectXtraDataInput.

 

timeout

maximum time to wait for the method to complete, in seconds.

 

cancellable

a GCancellable or NULL.

 

callback

a GAsyncReadyCallback to call when the request is satisfied.

 

user_data

user data to pass to callback +.

 
+
+

Since: 1.22

+
+
+
+

qmi_client_loc_inject_xtra_data_finish ()

+
QmiMessageLocInjectXtraDataOutput *
+qmi_client_loc_inject_xtra_data_finish
+                               (QmiClientLoc *self,
+                                GAsyncResult *res,
+                                GError **error);
+

Finishes an async operation started with qmi_client_loc_inject_xtra_data().

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiClientLoc.

 

res

the GAsyncResult obtained from the GAsyncReadyCallback passed to qmi_client_loc_inject_xtra_data().

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

a QmiMessageLocInjectXtraDataOutput, or NULL if error +is set. The returned value should be freed with qmi_message_loc_inject_xtra_data_output_unref().

+
+

Since: 1.22

+
+
+
+

Types and Values

+
+

QmiMessageLocInjectXtraDataInput

+
typedef struct _QmiMessageLocInjectXtraDataInput QmiMessageLocInjectXtraDataInput;
+

The QmiMessageLocInjectXtraDataInput structure contains private data and should only be accessed +using the provided API.

+

Since: 1.22

+
+
+
+

QmiMessageLocInjectXtraDataOutput

+
typedef struct _QmiMessageLocInjectXtraDataOutput QmiMessageLocInjectXtraDataOutput;
+

The QmiMessageLocInjectXtraDataOutput structure contains private data and should only be accessed +using the provided API.

+

Since: 1.22

+
+
+
+ + + \ No newline at end of file diff -Nru libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-LOC-NMEA-indication.html libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-LOC-NMEA-indication.html --- libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-LOC-NMEA-indication.html 1970-01-01 01:00:00.000000000 +0100 +++ libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-LOC-NMEA-indication.html 2019-01-08 15:19:01.000000000 +0100 @@ -0,0 +1,206 @@ + + + + +LOC NMEA indication: libqmi-glib Reference Manual + + + + + + + + + + + + + + + + +
+
+
+ + +
+

LOC NMEA indication

+

LOC NMEA indication

+
+ +
+

Types and Values

+
++++ + + + + +
 QmiIndicationLocNmeaOutput
+
+
+

Object Hierarchy

+
    GBoxed
+    ╰── QmiIndicationLocNmeaOutput
+
+
+
+

Description

+
+
+

Functions

+
+

qmi_indication_loc_nmea_output_ref ()

+
QmiIndicationLocNmeaOutput *
+qmi_indication_loc_nmea_output_ref (QmiIndicationLocNmeaOutput *self);
+

Atomically increments the reference count of self + by one.

+
+

Parameters

+
+++++ + + + + + +

self

a QmiIndicationLocNmeaOutput.

 
+
+
+

Returns

+

the new reference to self +.

+
+

Since: 1.22

+
+
+
+

qmi_indication_loc_nmea_output_unref ()

+
void
+qmi_indication_loc_nmea_output_unref (QmiIndicationLocNmeaOutput *self);
+

Atomically decrements the reference count of self + by one. +If the reference count drops to 0, self + is completely disposed.

+
+

Parameters

+
+++++ + + + + + +

self

a QmiIndicationLocNmeaOutput.

 
+
+

Since: 1.22

+
+
+
+

qmi_indication_loc_nmea_output_get_nmea_string ()

+
gboolean
+qmi_indication_loc_nmea_output_get_nmea_string
+                               (QmiIndicationLocNmeaOutput *self,
+                                const gchar **value_nmea_string,
+                                GError **error);
+

Get the 'NMEA String' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiIndicationLocNmeaOutput.

 

value_nmea_string

a placeholder for the output constant string, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.22

+
+
+
+

Types and Values

+
+

QmiIndicationLocNmeaOutput

+
typedef struct _QmiIndicationLocNmeaOutput QmiIndicationLocNmeaOutput;
+

The QmiIndicationLocNmeaOutput structure contains private data and should only be accessed +using the provided API.

+

Since: 1.22

+
+
+
+ + + \ No newline at end of file diff -Nru libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-LOC-Position-Report-indication.html libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-LOC-Position-Report-indication.html --- libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-LOC-Position-Report-indication.html 1970-01-01 01:00:00.000000000 +0100 +++ libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-LOC-Position-Report-indication.html 2019-01-08 15:19:01.000000000 +0100 @@ -0,0 +1,1872 @@ + + + + +LOC Position Report indication: libqmi-glib Reference Manual + + + + + + + + + + + + + + + + +
+
+
+ + +
+

LOC Position Report indication

+

LOC Position Report indication

+
+
+

Functions

+
++++ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+QmiIndicationLocPositionReportOutput * + +qmi_indication_loc_position_report_output_ref () +
+void + +qmi_indication_loc_position_report_output_unref () +
+gboolean + +qmi_indication_loc_position_report_output_get_altitude_assumed () +
+gboolean + +qmi_indication_loc_position_report_output_get_satellites_used () +
+gboolean + +qmi_indication_loc_position_report_output_get_session_fix_count () +
+gboolean + +qmi_indication_loc_position_report_output_get_sensor_data_usage () +
+gboolean + +qmi_indication_loc_position_report_output_get_time_source () +
+gboolean + +qmi_indication_loc_position_report_output_get_time_uncertainty () +
+gboolean + +qmi_indication_loc_position_report_output_get_gps_time () +
+gboolean + +qmi_indication_loc_position_report_output_get_leap_seconds () +
+gboolean + +qmi_indication_loc_position_report_output_get_utc_timestamp () +
+gboolean + +qmi_indication_loc_position_report_output_get_dilution_of_precision () +
+gboolean + +qmi_indication_loc_position_report_output_get_technology_used () +
+gboolean + +qmi_indication_loc_position_report_output_get_magnetic_deviation () +
+gboolean + +qmi_indication_loc_position_report_output_get_heading_uncertainty () +
+gboolean + +qmi_indication_loc_position_report_output_get_heading () +
+gboolean + +qmi_indication_loc_position_report_output_get_vertical_speed () +
+gboolean + +qmi_indication_loc_position_report_output_get_vertical_reliability () +
+gboolean + +qmi_indication_loc_position_report_output_get_vertical_confidence () +
+gboolean + +qmi_indication_loc_position_report_output_get_vertical_uncertainty () +
+gboolean + +qmi_indication_loc_position_report_output_get_altitude_from_sealevel () +
+gboolean + +qmi_indication_loc_position_report_output_get_altitude_from_ellipsoid () +
+gboolean + +qmi_indication_loc_position_report_output_get_speed_uncertainty () +
+gboolean + +qmi_indication_loc_position_report_output_get_horizontal_speed () +
+gboolean + +qmi_indication_loc_position_report_output_get_horizontal_reliability () +
+gboolean + +qmi_indication_loc_position_report_output_get_horizontal_confidence () +
+gboolean + +qmi_indication_loc_position_report_output_get_horizontal_uncertainty_elliptical_azimuth () +
+gboolean + +qmi_indication_loc_position_report_output_get_horizontal_uncertainty_elliptical_major () +
+gboolean + +qmi_indication_loc_position_report_output_get_horizontal_uncertainty_elliptical_minor () +
+gboolean + +qmi_indication_loc_position_report_output_get_horizontal_uncertainty_circular () +
+gboolean + +qmi_indication_loc_position_report_output_get_longitude () +
+gboolean + +qmi_indication_loc_position_report_output_get_latitude () +
+gboolean + +qmi_indication_loc_position_report_output_get_session_id () +
+gboolean + +qmi_indication_loc_position_report_output_get_session_status () +
+
+ +
+

Object Hierarchy

+
    GBoxed
+    ╰── QmiIndicationLocPositionReportOutput
+
+
+
+

Description

+
+
+

Functions

+
+

qmi_indication_loc_position_report_output_ref ()

+
QmiIndicationLocPositionReportOutput *
+qmi_indication_loc_position_report_output_ref
+                               (QmiIndicationLocPositionReportOutput *self);
+

Atomically increments the reference count of self + by one.

+
+

Parameters

+
+++++ + + + + + +

self

a QmiIndicationLocPositionReportOutput.

 
+
+
+

Returns

+

the new reference to self +.

+
+

Since: 1.22

+
+
+
+

qmi_indication_loc_position_report_output_unref ()

+
void
+qmi_indication_loc_position_report_output_unref
+                               (QmiIndicationLocPositionReportOutput *self);
+

Atomically decrements the reference count of self + by one. +If the reference count drops to 0, self + is completely disposed.

+
+

Parameters

+
+++++ + + + + + +

self

a QmiIndicationLocPositionReportOutput.

 
+
+

Since: 1.22

+
+
+
+

qmi_indication_loc_position_report_output_get_altitude_assumed ()

+
gboolean
+qmi_indication_loc_position_report_output_get_altitude_assumed
+                               (QmiIndicationLocPositionReportOutput *self,
+                                gboolean *value_altitude_assumed,
+                                GError **error);
+

Get the 'Altitude Assumed' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiIndicationLocPositionReportOutput.

 

value_altitude_assumed

a placeholder for the output gboolean, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.22

+
+
+
+

qmi_indication_loc_position_report_output_get_satellites_used ()

+
gboolean
+qmi_indication_loc_position_report_output_get_satellites_used
+                               (QmiIndicationLocPositionReportOutput *self,
+                                GArray **value_satellites_used,
+                                GError **error);
+

Get the 'Satellites Used' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiIndicationLocPositionReportOutput.

 

value_satellites_used

a placeholder for the output GArray of guint16 elements, or NULL if not required. Do not free it, it is owned by self +.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.22

+
+
+
+

qmi_indication_loc_position_report_output_get_session_fix_count ()

+
gboolean
+qmi_indication_loc_position_report_output_get_session_fix_count
+                               (QmiIndicationLocPositionReportOutput *self,
+                                guint32 *value_session_fix_count,
+                                GError **error);
+

Get the 'Session Fix Count' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiIndicationLocPositionReportOutput.

 

value_session_fix_count

a placeholder for the output guint32, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.22

+
+
+
+

qmi_indication_loc_position_report_output_get_sensor_data_usage ()

+
gboolean
+qmi_indication_loc_position_report_output_get_sensor_data_usage
+                               (QmiIndicationLocPositionReportOutput *self,
+                                QmiLocSensorDataUsage *value_sensor_data_usage,
+                                GError **error);
+

Get the 'Sensor Data Usage' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiIndicationLocPositionReportOutput.

 

value_sensor_data_usage

a placeholder for the output QmiLocSensorDataUsage, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.22

+
+
+
+

qmi_indication_loc_position_report_output_get_time_source ()

+
gboolean
+qmi_indication_loc_position_report_output_get_time_source
+                               (QmiIndicationLocPositionReportOutput *self,
+                                QmiLocTimeSource *value_time_source,
+                                GError **error);
+

Get the 'Time Source' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiIndicationLocPositionReportOutput.

 

value_time_source

a placeholder for the output QmiLocTimeSource, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.22

+
+
+
+

qmi_indication_loc_position_report_output_get_time_uncertainty ()

+
gboolean
+qmi_indication_loc_position_report_output_get_time_uncertainty
+                               (QmiIndicationLocPositionReportOutput *self,
+                                gfloat *value_time_uncertainty,
+                                GError **error);
+

Get the 'Time Uncertainty' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiIndicationLocPositionReportOutput.

 

value_time_uncertainty

a placeholder for the output gfloat, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.22

+
+
+
+

qmi_indication_loc_position_report_output_get_gps_time ()

+
gboolean
+qmi_indication_loc_position_report_output_get_gps_time
+                               (QmiIndicationLocPositionReportOutput *self,
+                                QmiIndicationLocPositionReportOutputGpsTime *value_gps_time,
+                                GError **error);
+

Get the 'GPS Time' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiIndicationLocPositionReportOutput.

 

value_gps_time

a placeholder for the output constant QmiIndicationLocPositionReportOutputGpsTime, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.22

+
+
+
+

qmi_indication_loc_position_report_output_get_leap_seconds ()

+
gboolean
+qmi_indication_loc_position_report_output_get_leap_seconds
+                               (QmiIndicationLocPositionReportOutput *self,
+                                guint8 *value_leap_seconds,
+                                GError **error);
+

Get the 'Leap Seconds' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiIndicationLocPositionReportOutput.

 

value_leap_seconds

a placeholder for the output guint8, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.22

+
+
+
+

qmi_indication_loc_position_report_output_get_utc_timestamp ()

+
gboolean
+qmi_indication_loc_position_report_output_get_utc_timestamp
+                               (QmiIndicationLocPositionReportOutput *self,
+                                guint64 *value_utc_timestamp,
+                                GError **error);
+

Get the 'UTC Timestamp' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiIndicationLocPositionReportOutput.

 

value_utc_timestamp

a placeholder for the output guint64, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.22

+
+
+
+

qmi_indication_loc_position_report_output_get_dilution_of_precision ()

+
gboolean
+qmi_indication_loc_position_report_output_get_dilution_of_precision
+                               (QmiIndicationLocPositionReportOutput *self,
+                                QmiIndicationLocPositionReportOutputDilutionOfPrecision *value_dilution_of_precision,
+                                GError **error);
+

Get the 'Dilution of Precision' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiIndicationLocPositionReportOutput.

 

value_dilution_of_precision

a placeholder for the output constant QmiIndicationLocPositionReportOutputDilutionOfPrecision, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.22

+
+
+
+

qmi_indication_loc_position_report_output_get_technology_used ()

+
gboolean
+qmi_indication_loc_position_report_output_get_technology_used
+                               (QmiIndicationLocPositionReportOutput *self,
+                                QmiLocTechnologyUsed *value_technology_used,
+                                GError **error);
+

Get the 'Technology Used' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiIndicationLocPositionReportOutput.

 

value_technology_used

a placeholder for the output QmiLocTechnologyUsed, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.22

+
+
+
+

qmi_indication_loc_position_report_output_get_magnetic_deviation ()

+
gboolean
+qmi_indication_loc_position_report_output_get_magnetic_deviation
+                               (QmiIndicationLocPositionReportOutput *self,
+                                gfloat *value_magnetic_deviation,
+                                GError **error);
+

Get the 'Magnetic Deviation' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiIndicationLocPositionReportOutput.

 

value_magnetic_deviation

a placeholder for the output gfloat, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.22

+
+
+
+

qmi_indication_loc_position_report_output_get_heading_uncertainty ()

+
gboolean
+qmi_indication_loc_position_report_output_get_heading_uncertainty
+                               (QmiIndicationLocPositionReportOutput *self,
+                                gfloat *value_heading_uncertainty,
+                                GError **error);
+

Get the 'Heading Uncertainty' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiIndicationLocPositionReportOutput.

 

value_heading_uncertainty

a placeholder for the output gfloat, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.22

+
+
+
+

qmi_indication_loc_position_report_output_get_heading ()

+
gboolean
+qmi_indication_loc_position_report_output_get_heading
+                               (QmiIndicationLocPositionReportOutput *self,
+                                gfloat *value_heading,
+                                GError **error);
+

Get the 'Heading' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiIndicationLocPositionReportOutput.

 

value_heading

a placeholder for the output gfloat, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.22

+
+
+
+

qmi_indication_loc_position_report_output_get_vertical_speed ()

+
gboolean
+qmi_indication_loc_position_report_output_get_vertical_speed
+                               (QmiIndicationLocPositionReportOutput *self,
+                                gfloat *value_vertical_speed,
+                                GError **error);
+

Get the 'Vertical Speed' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiIndicationLocPositionReportOutput.

 

value_vertical_speed

a placeholder for the output gfloat, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.22

+
+
+
+

qmi_indication_loc_position_report_output_get_vertical_reliability ()

+
gboolean
+qmi_indication_loc_position_report_output_get_vertical_reliability
+                               (QmiIndicationLocPositionReportOutput *self,
+                                guint32 *value_vertical_reliability,
+                                GError **error);
+

Get the 'Vertical Reliability' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiIndicationLocPositionReportOutput.

 

value_vertical_reliability

a placeholder for the output guint32, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.22

+
+
+
+

qmi_indication_loc_position_report_output_get_vertical_confidence ()

+
gboolean
+qmi_indication_loc_position_report_output_get_vertical_confidence
+                               (QmiIndicationLocPositionReportOutput *self,
+                                guint8 *value_vertical_confidence,
+                                GError **error);
+

Get the 'Vertical Confidence' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiIndicationLocPositionReportOutput.

 

value_vertical_confidence

a placeholder for the output guint8, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.22

+
+
+
+

qmi_indication_loc_position_report_output_get_vertical_uncertainty ()

+
gboolean
+qmi_indication_loc_position_report_output_get_vertical_uncertainty
+                               (QmiIndicationLocPositionReportOutput *self,
+                                gfloat *value_vertical_uncertainty,
+                                GError **error);
+

Get the 'Vertical Uncertainty' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiIndicationLocPositionReportOutput.

 

value_vertical_uncertainty

a placeholder for the output gfloat, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.22

+
+
+
+

qmi_indication_loc_position_report_output_get_altitude_from_sealevel ()

+
gboolean
+qmi_indication_loc_position_report_output_get_altitude_from_sealevel
+                               (QmiIndicationLocPositionReportOutput *self,
+                                gfloat *value_altitude_from_sealevel,
+                                GError **error);
+

Get the 'Altitude from Sealevel' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiIndicationLocPositionReportOutput.

 

value_altitude_from_sealevel

a placeholder for the output gfloat, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.22

+
+
+
+

qmi_indication_loc_position_report_output_get_altitude_from_ellipsoid ()

+
gboolean
+qmi_indication_loc_position_report_output_get_altitude_from_ellipsoid
+                               (QmiIndicationLocPositionReportOutput *self,
+                                gfloat *value_altitude_from_ellipsoid,
+                                GError **error);
+

Get the 'Altitude from Ellipsoid' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiIndicationLocPositionReportOutput.

 

value_altitude_from_ellipsoid

a placeholder for the output gfloat, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.22

+
+
+
+

qmi_indication_loc_position_report_output_get_speed_uncertainty ()

+
gboolean
+qmi_indication_loc_position_report_output_get_speed_uncertainty
+                               (QmiIndicationLocPositionReportOutput *self,
+                                gfloat *value_speed_uncertainty,
+                                GError **error);
+

Get the 'Speed Uncertainty' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiIndicationLocPositionReportOutput.

 

value_speed_uncertainty

a placeholder for the output gfloat, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.22

+
+
+
+

qmi_indication_loc_position_report_output_get_horizontal_speed ()

+
gboolean
+qmi_indication_loc_position_report_output_get_horizontal_speed
+                               (QmiIndicationLocPositionReportOutput *self,
+                                gfloat *value_horizontal_speed,
+                                GError **error);
+

Get the 'Horizontal Speed' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiIndicationLocPositionReportOutput.

 

value_horizontal_speed

a placeholder for the output gfloat, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.22

+
+
+
+

qmi_indication_loc_position_report_output_get_horizontal_reliability ()

+
gboolean
+qmi_indication_loc_position_report_output_get_horizontal_reliability
+                               (QmiIndicationLocPositionReportOutput *self,
+                                QmiLocReliability *value_horizontal_reliability,
+                                GError **error);
+

Get the 'Horizontal Reliability' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiIndicationLocPositionReportOutput.

 

value_horizontal_reliability

a placeholder for the output QmiLocReliability, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.22

+
+
+
+

qmi_indication_loc_position_report_output_get_horizontal_confidence ()

+
gboolean
+qmi_indication_loc_position_report_output_get_horizontal_confidence
+                               (QmiIndicationLocPositionReportOutput *self,
+                                guint8 *value_horizontal_confidence,
+                                GError **error);
+

Get the 'Horizontal Confidence' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiIndicationLocPositionReportOutput.

 

value_horizontal_confidence

a placeholder for the output guint8, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.22

+
+
+
+

qmi_indication_loc_position_report_output_get_horizontal_uncertainty_elliptical_azimuth ()

+
gboolean
+qmi_indication_loc_position_report_output_get_horizontal_uncertainty_elliptical_azimuth
+                               (QmiIndicationLocPositionReportOutput *self,
+                                gfloat *value_horizontal_uncertainty_elliptical_azimuth,
+                                GError **error);
+

Get the 'Horizontal Uncertainty Elliptical Azimuth' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiIndicationLocPositionReportOutput.

 

value_horizontal_uncertainty_elliptical_azimuth

a placeholder for the output gfloat, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.22

+
+
+
+

qmi_indication_loc_position_report_output_get_horizontal_uncertainty_elliptical_major ()

+
gboolean
+qmi_indication_loc_position_report_output_get_horizontal_uncertainty_elliptical_major
+                               (QmiIndicationLocPositionReportOutput *self,
+                                gfloat *value_horizontal_uncertainty_elliptical_major,
+                                GError **error);
+

Get the 'Horizontal Uncertainty Elliptical Major' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiIndicationLocPositionReportOutput.

 

value_horizontal_uncertainty_elliptical_major

a placeholder for the output gfloat, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.22

+
+
+
+

qmi_indication_loc_position_report_output_get_horizontal_uncertainty_elliptical_minor ()

+
gboolean
+qmi_indication_loc_position_report_output_get_horizontal_uncertainty_elliptical_minor
+                               (QmiIndicationLocPositionReportOutput *self,
+                                gfloat *value_horizontal_uncertainty_elliptical_minor,
+                                GError **error);
+

Get the 'Horizontal Uncertainty Elliptical Minor' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiIndicationLocPositionReportOutput.

 

value_horizontal_uncertainty_elliptical_minor

a placeholder for the output gfloat, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.22

+
+
+
+

qmi_indication_loc_position_report_output_get_horizontal_uncertainty_circular ()

+
gboolean
+qmi_indication_loc_position_report_output_get_horizontal_uncertainty_circular
+                               (QmiIndicationLocPositionReportOutput *self,
+                                gfloat *value_horizontal_uncertainty_circular,
+                                GError **error);
+

Get the 'Horizontal Uncertainty Circular' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiIndicationLocPositionReportOutput.

 

value_horizontal_uncertainty_circular

a placeholder for the output gfloat, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.22

+
+
+
+

qmi_indication_loc_position_report_output_get_longitude ()

+
gboolean
+qmi_indication_loc_position_report_output_get_longitude
+                               (QmiIndicationLocPositionReportOutput *self,
+                                gdouble *value_longitude,
+                                GError **error);
+

Get the 'Longitude' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiIndicationLocPositionReportOutput.

 

value_longitude

a placeholder for the output gdouble, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.22

+
+
+
+

qmi_indication_loc_position_report_output_get_latitude ()

+
gboolean
+qmi_indication_loc_position_report_output_get_latitude
+                               (QmiIndicationLocPositionReportOutput *self,
+                                gdouble *value_latitude,
+                                GError **error);
+

Get the 'Latitude' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiIndicationLocPositionReportOutput.

 

value_latitude

a placeholder for the output gdouble, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.22

+
+
+
+

qmi_indication_loc_position_report_output_get_session_id ()

+
gboolean
+qmi_indication_loc_position_report_output_get_session_id
+                               (QmiIndicationLocPositionReportOutput *self,
+                                guint8 *value_session_id,
+                                GError **error);
+

Get the 'Session ID' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiIndicationLocPositionReportOutput.

 

value_session_id

a placeholder for the output guint8, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.22

+
+
+
+

qmi_indication_loc_position_report_output_get_session_status ()

+
gboolean
+qmi_indication_loc_position_report_output_get_session_status
+                               (QmiIndicationLocPositionReportOutput *self,
+                                QmiLocSessionStatus *value_session_status,
+                                GError **error);
+

Get the 'Session Status' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiIndicationLocPositionReportOutput.

 

value_session_status

a placeholder for the output QmiLocSessionStatus, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.22

+
+
+
+

Types and Values

+
+

QmiIndicationLocPositionReportOutput

+
typedef struct _QmiIndicationLocPositionReportOutput QmiIndicationLocPositionReportOutput;
+

The QmiIndicationLocPositionReportOutput structure contains private data and should only be accessed +using the provided API.

+

Since: 1.22

+
+
+
+

QmiIndicationLocPositionReportOutputGpsTime

+
typedef struct {
+    guint16 gps_weeks;
+    guint32 gps_time_of_week_milliseconds;
+} QmiIndicationLocPositionReportOutputGpsTime;
+
+

A QmiIndicationLocPositionReportOutputGpsTime struct.

+
+

Members

+
+++++ + + + + + + + + + + + + +

guint16 gps_weeks;

a guint16.

 

guint32 gps_time_of_week_milliseconds;

a guint32.

 
+
+

Since: 1.22

+
+
+
+

QmiIndicationLocPositionReportOutputDilutionOfPrecision

+
typedef struct {
+    gfloat position_dilution_of_precision;
+    gfloat horizontal_dilution_of_precision;
+    gfloat vertical_dilution_of_precision;
+} QmiIndicationLocPositionReportOutputDilutionOfPrecision;
+
+

A QmiIndicationLocPositionReportOutputDilutionOfPrecision struct.

+
+

Members

+
+++++ + + + + + + + + + + + + + + + + + +

gfloat position_dilution_of_precision;

a gfloat.

 

gfloat horizontal_dilution_of_precision;

a gfloat.

 

gfloat vertical_dilution_of_precision;

a gfloat.

 
+
+

Since: 1.22

+
+
+
+ + + \ No newline at end of file diff -Nru libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-LOC-Register-Events-request.html libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-LOC-Register-Events-request.html --- libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-LOC-Register-Events-request.html 1970-01-01 01:00:00.000000000 +0100 +++ libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-LOC-Register-Events-request.html 2019-01-08 15:19:01.000000000 +0100 @@ -0,0 +1,530 @@ + + + + +LOC Register Events request: libqmi-glib Reference Manual + + + + + + + + + + + + + + + + +
+
+
+ + +
+

LOC Register Events request

+

LOC Register Events request

+
+ +
+

Types and Values

+ +
+
+

Object Hierarchy

+
    GBoxed
+    ├── QmiMessageLocRegisterEventsInput
+    ╰── QmiMessageLocRegisterEventsOutput
+
+
+
+

Description

+
+
+

Functions

+
+

qmi_message_loc_register_events_input_new ()

+
QmiMessageLocRegisterEventsInput *
+qmi_message_loc_register_events_input_new
+                               (void);
+

Allocates a new QmiMessageLocRegisterEventsInput.

+
+

Returns

+

the newly created QmiMessageLocRegisterEventsInput. The returned value should be freed with qmi_message_loc_register_events_input_unref().

+
+

Since: 1.22

+
+
+
+

qmi_message_loc_register_events_input_ref ()

+
QmiMessageLocRegisterEventsInput *
+qmi_message_loc_register_events_input_ref
+                               (QmiMessageLocRegisterEventsInput *self);
+

Atomically increments the reference count of self + by one.

+
+

Parameters

+
+++++ + + + + + +

self

a QmiMessageLocRegisterEventsInput.

 
+
+
+

Returns

+

the new reference to self +.

+
+

Since: 1.22

+
+
+
+

qmi_message_loc_register_events_input_unref ()

+
void
+qmi_message_loc_register_events_input_unref
+                               (QmiMessageLocRegisterEventsInput *self);
+

Atomically decrements the reference count of self + by one. +If the reference count drops to 0, self + is completely disposed.

+
+

Parameters

+
+++++ + + + + + +

self

a QmiMessageLocRegisterEventsInput.

 
+
+

Since: 1.22

+
+
+
+

qmi_message_loc_register_events_input_get_event_registration_mask ()

+
gboolean
+qmi_message_loc_register_events_input_get_event_registration_mask
+                               (QmiMessageLocRegisterEventsInput *self,
+                                QmiLocEventRegistrationFlag *value_event_registration_mask,
+                                GError **error);
+

Get the 'Event Registration Mask' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageLocRegisterEventsInput.

 

value_event_registration_mask

a placeholder for the output QmiLocEventRegistrationFlag, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.22

+
+
+
+

qmi_message_loc_register_events_input_set_event_registration_mask ()

+
gboolean
+qmi_message_loc_register_events_input_set_event_registration_mask
+                               (QmiMessageLocRegisterEventsInput *self,
+                                QmiLocEventRegistrationFlag value_event_registration_mask,
+                                GError **error);
+

Set the 'Event Registration Mask' field in the message.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageLocRegisterEventsInput.

 

value_event_registration_mask

a QmiLocEventRegistrationFlag.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if value +was successfully set, FALSE otherwise.

+
+

Since: 1.22

+
+
+
+

qmi_message_loc_register_events_output_ref ()

+
QmiMessageLocRegisterEventsOutput *
+qmi_message_loc_register_events_output_ref
+                               (QmiMessageLocRegisterEventsOutput *self);
+

Atomically increments the reference count of self + by one.

+
+

Parameters

+
+++++ + + + + + +

self

a QmiMessageLocRegisterEventsOutput.

 
+
+
+

Returns

+

the new reference to self +.

+
+

Since: 1.22

+
+
+
+

qmi_message_loc_register_events_output_unref ()

+
void
+qmi_message_loc_register_events_output_unref
+                               (QmiMessageLocRegisterEventsOutput *self);
+

Atomically decrements the reference count of self + by one. +If the reference count drops to 0, self + is completely disposed.

+
+

Parameters

+
+++++ + + + + + +

self

a QmiMessageLocRegisterEventsOutput.

 
+
+

Since: 1.22

+
+
+
+

qmi_message_loc_register_events_output_get_result ()

+
gboolean
+qmi_message_loc_register_events_output_get_result
+                               (QmiMessageLocRegisterEventsOutput *self,
+                                GError **error);
+

Get the result of the QMI operation.

+
+

Parameters

+
+++++ + + + + + + + + + + + + +

self

a QmiMessageLocRegisterEventsOutput.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the QMI operation succeeded, FALSE if error +is set.

+
+

Since: 1.22

+
+
+
+

qmi_client_loc_register_events ()

+
void
+qmi_client_loc_register_events (QmiClientLoc *self,
+                                QmiMessageLocRegisterEventsInput *input,
+                                guint timeout,
+                                GCancellable *cancellable,
+                                GAsyncReadyCallback callback,
+                                gpointer user_data);
+

Asynchronously sends a Register Events request to the device.

+

When the operation is finished, callback + will be invoked in the thread-default main loop of the thread you are calling this method from.

+

You can then call qmi_client_loc_register_events_finish() to get the result of the operation.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

self

a QmiClientLoc.

 

input

a QmiMessageLocRegisterEventsInput.

 

timeout

maximum time to wait for the method to complete, in seconds.

 

cancellable

a GCancellable or NULL.

 

callback

a GAsyncReadyCallback to call when the request is satisfied.

 

user_data

user data to pass to callback +.

 
+
+

Since: 1.22

+
+
+
+

qmi_client_loc_register_events_finish ()

+
QmiMessageLocRegisterEventsOutput *
+qmi_client_loc_register_events_finish (QmiClientLoc *self,
+                                       GAsyncResult *res,
+                                       GError **error);
+

Finishes an async operation started with qmi_client_loc_register_events().

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiClientLoc.

 

res

the GAsyncResult obtained from the GAsyncReadyCallback passed to qmi_client_loc_register_events().

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

a QmiMessageLocRegisterEventsOutput, or NULL if error +is set. The returned value should be freed with qmi_message_loc_register_events_output_unref().

+
+

Since: 1.22

+
+
+
+

Types and Values

+
+

QmiMessageLocRegisterEventsInput

+
typedef struct _QmiMessageLocRegisterEventsInput QmiMessageLocRegisterEventsInput;
+

The QmiMessageLocRegisterEventsInput structure contains private data and should only be accessed +using the provided API.

+

Since: 1.22

+
+
+
+

QmiMessageLocRegisterEventsOutput

+
typedef struct _QmiMessageLocRegisterEventsOutput QmiMessageLocRegisterEventsOutput;
+

The QmiMessageLocRegisterEventsOutput structure contains private data and should only be accessed +using the provided API.

+

Since: 1.22

+
+
+
+ + + \ No newline at end of file diff -Nru libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-LOC-Set-Operation-Mode-indication.html libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-LOC-Set-Operation-Mode-indication.html --- libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-LOC-Set-Operation-Mode-indication.html 1970-01-01 01:00:00.000000000 +0100 +++ libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-LOC-Set-Operation-Mode-indication.html 2019-01-08 15:19:01.000000000 +0100 @@ -0,0 +1,208 @@ + + + + +LOC Set Operation Mode indication: libqmi-glib Reference Manual + + + + + + + + + + + + + + + + +
+
+
+ + +
+

LOC Set Operation Mode indication

+

LOC Set Operation Mode indication

+
+ +
+

Types and Values

+ +
+
+

Object Hierarchy

+
    GBoxed
+    ╰── QmiIndicationLocSetOperationModeOutput
+
+
+
+

Description

+
+
+

Functions

+
+

qmi_indication_loc_set_operation_mode_output_ref ()

+
QmiIndicationLocSetOperationModeOutput *
+qmi_indication_loc_set_operation_mode_output_ref
+                               (QmiIndicationLocSetOperationModeOutput *self);
+

Atomically increments the reference count of self + by one.

+
+

Parameters

+
+++++ + + + + + +

self

a QmiIndicationLocSetOperationModeOutput.

 
+
+
+

Returns

+

the new reference to self +.

+
+

Since: 1.22

+
+
+
+

qmi_indication_loc_set_operation_mode_output_unref ()

+
void
+qmi_indication_loc_set_operation_mode_output_unref
+                               (QmiIndicationLocSetOperationModeOutput *self);
+

Atomically decrements the reference count of self + by one. +If the reference count drops to 0, self + is completely disposed.

+
+

Parameters

+
+++++ + + + + + +

self

a QmiIndicationLocSetOperationModeOutput.

 
+
+

Since: 1.22

+
+
+
+

qmi_indication_loc_set_operation_mode_output_get_indication_status ()

+
gboolean
+qmi_indication_loc_set_operation_mode_output_get_indication_status
+                               (QmiIndicationLocSetOperationModeOutput *self,
+                                QmiLocIndicationStatus *value_indication_status,
+                                GError **error);
+

Get the 'Indication Status' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiIndicationLocSetOperationModeOutput.

 

value_indication_status

a placeholder for the output QmiLocIndicationStatus, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.22

+
+
+
+

Types and Values

+
+

QmiIndicationLocSetOperationModeOutput

+
typedef struct _QmiIndicationLocSetOperationModeOutput QmiIndicationLocSetOperationModeOutput;
+

The QmiIndicationLocSetOperationModeOutput structure contains private data and should only be accessed +using the provided API.

+

Since: 1.22

+
+
+
+ + + \ No newline at end of file diff -Nru libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-LOC-Set-Operation-Mode-request.html libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-LOC-Set-Operation-Mode-request.html --- libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-LOC-Set-Operation-Mode-request.html 1970-01-01 01:00:00.000000000 +0100 +++ libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-LOC-Set-Operation-Mode-request.html 2019-01-08 15:19:01.000000000 +0100 @@ -0,0 +1,531 @@ + + + + +LOC Set Operation Mode request: libqmi-glib Reference Manual + + + + + + + + + + + + + + + + +
+
+
+ + +
+

LOC Set Operation Mode request

+

LOC Set Operation Mode request

+
+ +
+

Types and Values

+ +
+
+

Object Hierarchy

+
    GBoxed
+    ├── QmiMessageLocSetOperationModeInput
+    ╰── QmiMessageLocSetOperationModeOutput
+
+
+
+

Description

+
+
+

Functions

+
+

qmi_message_loc_set_operation_mode_input_new ()

+
QmiMessageLocSetOperationModeInput *
+qmi_message_loc_set_operation_mode_input_new
+                               (void);
+

Allocates a new QmiMessageLocSetOperationModeInput.

+
+

Returns

+

the newly created QmiMessageLocSetOperationModeInput. The returned value should be freed with qmi_message_loc_set_operation_mode_input_unref().

+
+

Since: 1.22

+
+
+
+

qmi_message_loc_set_operation_mode_input_ref ()

+
QmiMessageLocSetOperationModeInput *
+qmi_message_loc_set_operation_mode_input_ref
+                               (QmiMessageLocSetOperationModeInput *self);
+

Atomically increments the reference count of self + by one.

+
+

Parameters

+
+++++ + + + + + +

self

a QmiMessageLocSetOperationModeInput.

 
+
+
+

Returns

+

the new reference to self +.

+
+

Since: 1.22

+
+
+
+

qmi_message_loc_set_operation_mode_input_unref ()

+
void
+qmi_message_loc_set_operation_mode_input_unref
+                               (QmiMessageLocSetOperationModeInput *self);
+

Atomically decrements the reference count of self + by one. +If the reference count drops to 0, self + is completely disposed.

+
+

Parameters

+
+++++ + + + + + +

self

a QmiMessageLocSetOperationModeInput.

 
+
+

Since: 1.22

+
+
+
+

qmi_message_loc_set_operation_mode_input_get_operation_mode ()

+
gboolean
+qmi_message_loc_set_operation_mode_input_get_operation_mode
+                               (QmiMessageLocSetOperationModeInput *self,
+                                QmiLocOperationMode *value_operation_mode,
+                                GError **error);
+

Get the 'Operation Mode' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageLocSetOperationModeInput.

 

value_operation_mode

a placeholder for the output QmiLocOperationMode, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.22

+
+
+
+

qmi_message_loc_set_operation_mode_input_set_operation_mode ()

+
gboolean
+qmi_message_loc_set_operation_mode_input_set_operation_mode
+                               (QmiMessageLocSetOperationModeInput *self,
+                                QmiLocOperationMode value_operation_mode,
+                                GError **error);
+

Set the 'Operation Mode' field in the message.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageLocSetOperationModeInput.

 

value_operation_mode

a QmiLocOperationMode.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if value +was successfully set, FALSE otherwise.

+
+

Since: 1.22

+
+
+
+

qmi_message_loc_set_operation_mode_output_ref ()

+
QmiMessageLocSetOperationModeOutput *
+qmi_message_loc_set_operation_mode_output_ref
+                               (QmiMessageLocSetOperationModeOutput *self);
+

Atomically increments the reference count of self + by one.

+
+

Parameters

+
+++++ + + + + + +

self

a QmiMessageLocSetOperationModeOutput.

 
+
+
+

Returns

+

the new reference to self +.

+
+

Since: 1.22

+
+
+
+

qmi_message_loc_set_operation_mode_output_unref ()

+
void
+qmi_message_loc_set_operation_mode_output_unref
+                               (QmiMessageLocSetOperationModeOutput *self);
+

Atomically decrements the reference count of self + by one. +If the reference count drops to 0, self + is completely disposed.

+
+

Parameters

+
+++++ + + + + + +

self

a QmiMessageLocSetOperationModeOutput.

 
+
+

Since: 1.22

+
+
+
+

qmi_message_loc_set_operation_mode_output_get_result ()

+
gboolean
+qmi_message_loc_set_operation_mode_output_get_result
+                               (QmiMessageLocSetOperationModeOutput *self,
+                                GError **error);
+

Get the result of the QMI operation.

+
+

Parameters

+
+++++ + + + + + + + + + + + + +

self

a QmiMessageLocSetOperationModeOutput.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the QMI operation succeeded, FALSE if error +is set.

+
+

Since: 1.22

+
+
+
+

qmi_client_loc_set_operation_mode ()

+
void
+qmi_client_loc_set_operation_mode (QmiClientLoc *self,
+                                   QmiMessageLocSetOperationModeInput *input,
+                                   guint timeout,
+                                   GCancellable *cancellable,
+                                   GAsyncReadyCallback callback,
+                                   gpointer user_data);
+

Asynchronously sends a Set Operation Mode request to the device.

+

When the operation is finished, callback + will be invoked in the thread-default main loop of the thread you are calling this method from.

+

You can then call qmi_client_loc_set_operation_mode_finish() to get the result of the operation.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

self

a QmiClientLoc.

 

input

a QmiMessageLocSetOperationModeInput.

 

timeout

maximum time to wait for the method to complete, in seconds.

 

cancellable

a GCancellable or NULL.

 

callback

a GAsyncReadyCallback to call when the request is satisfied.

 

user_data

user data to pass to callback +.

 
+
+

Since: 1.22

+
+
+
+

qmi_client_loc_set_operation_mode_finish ()

+
QmiMessageLocSetOperationModeOutput *
+qmi_client_loc_set_operation_mode_finish
+                               (QmiClientLoc *self,
+                                GAsyncResult *res,
+                                GError **error);
+

Finishes an async operation started with qmi_client_loc_set_operation_mode().

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiClientLoc.

 

res

the GAsyncResult obtained from the GAsyncReadyCallback passed to qmi_client_loc_set_operation_mode().

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

a QmiMessageLocSetOperationModeOutput, or NULL if error +is set. The returned value should be freed with qmi_message_loc_set_operation_mode_output_unref().

+
+

Since: 1.22

+
+
+
+

Types and Values

+
+

QmiMessageLocSetOperationModeInput

+
typedef struct _QmiMessageLocSetOperationModeInput QmiMessageLocSetOperationModeInput;
+

The QmiMessageLocSetOperationModeInput structure contains private data and should only be accessed +using the provided API.

+

Since: 1.22

+
+
+
+

QmiMessageLocSetOperationModeOutput

+
typedef struct _QmiMessageLocSetOperationModeOutput QmiMessageLocSetOperationModeOutput;
+

The QmiMessageLocSetOperationModeOutput structure contains private data and should only be accessed +using the provided API.

+

Since: 1.22

+
+
+
+ + + \ No newline at end of file diff -Nru libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-LOC-Set-Server-indication.html libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-LOC-Set-Server-indication.html --- libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-LOC-Set-Server-indication.html 1970-01-01 01:00:00.000000000 +0100 +++ libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-LOC-Set-Server-indication.html 2019-01-08 15:19:01.000000000 +0100 @@ -0,0 +1,208 @@ + + + + +LOC Set Server indication: libqmi-glib Reference Manual + + + + + + + + + + + + + + + + +
+
+
+ + +
+

LOC Set Server indication

+

LOC Set Server indication

+
+ +
+

Types and Values

+ +
+
+

Object Hierarchy

+
    GBoxed
+    ╰── QmiIndicationLocSetServerOutput
+
+
+
+

Description

+
+
+

Functions

+
+

qmi_indication_loc_set_server_output_ref ()

+
QmiIndicationLocSetServerOutput *
+qmi_indication_loc_set_server_output_ref
+                               (QmiIndicationLocSetServerOutput *self);
+

Atomically increments the reference count of self + by one.

+
+

Parameters

+
+++++ + + + + + +

self

a QmiIndicationLocSetServerOutput.

 
+
+
+

Returns

+

the new reference to self +.

+
+

Since: 1.22

+
+
+
+

qmi_indication_loc_set_server_output_unref ()

+
void
+qmi_indication_loc_set_server_output_unref
+                               (QmiIndicationLocSetServerOutput *self);
+

Atomically decrements the reference count of self + by one. +If the reference count drops to 0, self + is completely disposed.

+
+

Parameters

+
+++++ + + + + + +

self

a QmiIndicationLocSetServerOutput.

 
+
+

Since: 1.22

+
+
+
+

qmi_indication_loc_set_server_output_get_indication_status ()

+
gboolean
+qmi_indication_loc_set_server_output_get_indication_status
+                               (QmiIndicationLocSetServerOutput *self,
+                                QmiLocIndicationStatus *value_indication_status,
+                                GError **error);
+

Get the 'Indication Status' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiIndicationLocSetServerOutput.

 

value_indication_status

a placeholder for the output QmiLocIndicationStatus, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.22

+
+
+
+

Types and Values

+
+

QmiIndicationLocSetServerOutput

+
typedef struct _QmiIndicationLocSetServerOutput QmiIndicationLocSetServerOutput;
+

The QmiIndicationLocSetServerOutput structure contains private data and should only be accessed +using the provided API.

+

Since: 1.22

+
+
+
+ + + \ No newline at end of file diff -Nru libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-LOC-Set-Server-request.html libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-LOC-Set-Server-request.html --- libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-LOC-Set-Server-request.html 1970-01-01 01:00:00.000000000 +0100 +++ libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-LOC-Set-Server-request.html 2019-01-08 15:19:01.000000000 +0100 @@ -0,0 +1,859 @@ + + + + +LOC Set Server request: libqmi-glib Reference Manual + + + + + + + + + + + + + + + + +
+
+
+ + +
+

LOC Set Server request

+

LOC Set Server request

+
+ +
+

Types and Values

+ +
+
+

Object Hierarchy

+
    GBoxed
+    ├── QmiMessageLocSetServerInput
+    ╰── QmiMessageLocSetServerOutput
+
+
+
+

Description

+
+
+

Functions

+
+

qmi_message_loc_set_server_input_new ()

+
QmiMessageLocSetServerInput *
+qmi_message_loc_set_server_input_new (void);
+

Allocates a new QmiMessageLocSetServerInput.

+
+

Returns

+

the newly created QmiMessageLocSetServerInput. The returned value should be freed with qmi_message_loc_set_server_input_unref().

+
+

Since: 1.22

+
+
+
+

qmi_message_loc_set_server_input_ref ()

+
QmiMessageLocSetServerInput *
+qmi_message_loc_set_server_input_ref (QmiMessageLocSetServerInput *self);
+

Atomically increments the reference count of self + by one.

+
+

Parameters

+
+++++ + + + + + +

self

a QmiMessageLocSetServerInput.

 
+
+
+

Returns

+

the new reference to self +.

+
+

Since: 1.22

+
+
+
+

qmi_message_loc_set_server_input_unref ()

+
void
+qmi_message_loc_set_server_input_unref
+                               (QmiMessageLocSetServerInput *self);
+

Atomically decrements the reference count of self + by one. +If the reference count drops to 0, self + is completely disposed.

+
+

Parameters

+
+++++ + + + + + +

self

a QmiMessageLocSetServerInput.

 
+
+

Since: 1.22

+
+
+
+

qmi_message_loc_set_server_input_get_url ()

+
gboolean
+qmi_message_loc_set_server_input_get_url
+                               (QmiMessageLocSetServerInput *self,
+                                const gchar **value_url,
+                                GError **error);
+

Get the 'URL' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageLocSetServerInput.

 

value_url

a placeholder for the output constant string, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.22

+
+
+
+

qmi_message_loc_set_server_input_set_url ()

+
gboolean
+qmi_message_loc_set_server_input_set_url
+                               (QmiMessageLocSetServerInput *self,
+                                const gchar *value_url,
+                                GError **error);
+

Set the 'URL' field in the message.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageLocSetServerInput.

 

value_url

a constant string with a maximum length of 256 characters.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if value +was successfully set, FALSE otherwise.

+
+

Since: 1.22

+
+
+
+

qmi_message_loc_set_server_input_get_ipv6 ()

+
gboolean
+qmi_message_loc_set_server_input_get_ipv6
+                               (QmiMessageLocSetServerInput *self,
+                                GArray **value_ipv6_ipv6_address,
+                                guint32 *value_ipv6_ipv6_port,
+                                GError **error);
+

Get the 'IPv6' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + + + + + + +

self

a QmiMessageLocSetServerInput.

 

value_ipv6_ipv6_address

a placeholder for the output GArray of guint16 elements, or NULL if not required. Do not free it, it is owned by self +.

 

value_ipv6_ipv6_port

a placeholder for the output guint32, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.22

+
+
+
+

qmi_message_loc_set_server_input_set_ipv6 ()

+
gboolean
+qmi_message_loc_set_server_input_set_ipv6
+                               (QmiMessageLocSetServerInput *self,
+                                GArray *value_ipv6_ipv6_address,
+                                guint32 value_ipv6_ipv6_port,
+                                GError **error);
+

Set the 'IPv6' field in the message.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + + + + + + +

self

a QmiMessageLocSetServerInput.

 

value_ipv6_ipv6_address

a GArray of guint16 elements. A new reference to value_ipv6_ipv6_address +will be taken.

 

value_ipv6_ipv6_port

a guint32.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if value +was successfully set, FALSE otherwise.

+
+

Since: 1.22

+
+
+
+

qmi_message_loc_set_server_input_get_ipv4 ()

+
gboolean
+qmi_message_loc_set_server_input_get_ipv4
+                               (QmiMessageLocSetServerInput *self,
+                                guint32 *value_ipv4_ipv4_address,
+                                guint16 *value_ipv4_ipv4_port,
+                                GError **error);
+

Get the 'IPv4' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + + + + + + +

self

a QmiMessageLocSetServerInput.

 

value_ipv4_ipv4_address

a placeholder for the output guint32, or NULL if not required.

 

value_ipv4_ipv4_port

a placeholder for the output guint16, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.22

+
+
+
+

qmi_message_loc_set_server_input_set_ipv4 ()

+
gboolean
+qmi_message_loc_set_server_input_set_ipv4
+                               (QmiMessageLocSetServerInput *self,
+                                guint32 value_ipv4_ipv4_address,
+                                guint16 value_ipv4_ipv4_port,
+                                GError **error);
+

Set the 'IPv4' field in the message.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + + + + + + +

self

a QmiMessageLocSetServerInput.

 

value_ipv4_ipv4_address

a guint32.

 

value_ipv4_ipv4_port

a guint16.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if value +was successfully set, FALSE otherwise.

+
+

Since: 1.22

+
+
+
+

qmi_message_loc_set_server_input_get_server_type ()

+
gboolean
+qmi_message_loc_set_server_input_get_server_type
+                               (QmiMessageLocSetServerInput *self,
+                                QmiLocServerType *value_server_type,
+                                GError **error);
+

Get the 'Server Type' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageLocSetServerInput.

 

value_server_type

a placeholder for the output QmiLocServerType, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.22

+
+
+
+

qmi_message_loc_set_server_input_set_server_type ()

+
gboolean
+qmi_message_loc_set_server_input_set_server_type
+                               (QmiMessageLocSetServerInput *self,
+                                QmiLocServerType value_server_type,
+                                GError **error);
+

Set the 'Server Type' field in the message.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageLocSetServerInput.

 

value_server_type

a QmiLocServerType.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if value +was successfully set, FALSE otherwise.

+
+

Since: 1.22

+
+
+
+

qmi_message_loc_set_server_output_ref ()

+
QmiMessageLocSetServerOutput *
+qmi_message_loc_set_server_output_ref (QmiMessageLocSetServerOutput *self);
+

Atomically increments the reference count of self + by one.

+
+

Parameters

+
+++++ + + + + + +

self

a QmiMessageLocSetServerOutput.

 
+
+
+

Returns

+

the new reference to self +.

+
+

Since: 1.22

+
+
+
+

qmi_message_loc_set_server_output_unref ()

+
void
+qmi_message_loc_set_server_output_unref
+                               (QmiMessageLocSetServerOutput *self);
+

Atomically decrements the reference count of self + by one. +If the reference count drops to 0, self + is completely disposed.

+
+

Parameters

+
+++++ + + + + + +

self

a QmiMessageLocSetServerOutput.

 
+
+

Since: 1.22

+
+
+
+

qmi_message_loc_set_server_output_get_result ()

+
gboolean
+qmi_message_loc_set_server_output_get_result
+                               (QmiMessageLocSetServerOutput *self,
+                                GError **error);
+

Get the result of the QMI operation.

+
+

Parameters

+
+++++ + + + + + + + + + + + + +

self

a QmiMessageLocSetServerOutput.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the QMI operation succeeded, FALSE if error +is set.

+
+

Since: 1.22

+
+
+
+

qmi_client_loc_set_server ()

+
void
+qmi_client_loc_set_server (QmiClientLoc *self,
+                           QmiMessageLocSetServerInput *input,
+                           guint timeout,
+                           GCancellable *cancellable,
+                           GAsyncReadyCallback callback,
+                           gpointer user_data);
+

Asynchronously sends a Set Server request to the device.

+

When the operation is finished, callback + will be invoked in the thread-default main loop of the thread you are calling this method from.

+

You can then call qmi_client_loc_set_server_finish() to get the result of the operation.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

self

a QmiClientLoc.

 

input

a QmiMessageLocSetServerInput.

 

timeout

maximum time to wait for the method to complete, in seconds.

 

cancellable

a GCancellable or NULL.

 

callback

a GAsyncReadyCallback to call when the request is satisfied.

 

user_data

user data to pass to callback +.

 
+
+

Since: 1.22

+
+
+
+

qmi_client_loc_set_server_finish ()

+
QmiMessageLocSetServerOutput *
+qmi_client_loc_set_server_finish (QmiClientLoc *self,
+                                  GAsyncResult *res,
+                                  GError **error);
+

Finishes an async operation started with qmi_client_loc_set_server().

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiClientLoc.

 

res

the GAsyncResult obtained from the GAsyncReadyCallback passed to qmi_client_loc_set_server().

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

a QmiMessageLocSetServerOutput, or NULL if error +is set. The returned value should be freed with qmi_message_loc_set_server_output_unref().

+
+

Since: 1.22

+
+
+
+

Types and Values

+
+

QmiMessageLocSetServerInput

+
typedef struct _QmiMessageLocSetServerInput QmiMessageLocSetServerInput;
+

The QmiMessageLocSetServerInput structure contains private data and should only be accessed +using the provided API.

+

Since: 1.22

+
+
+
+

QmiMessageLocSetServerOutput

+
typedef struct _QmiMessageLocSetServerOutput QmiMessageLocSetServerOutput;
+

The QmiMessageLocSetServerOutput structure contains private data and should only be accessed +using the provided API.

+

Since: 1.22

+
+
+
+ + + \ No newline at end of file diff -Nru libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-LOC-Start-request.html libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-LOC-Start-request.html --- libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-LOC-Start-request.html 1970-01-01 01:00:00.000000000 +0100 +++ libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-LOC-Start-request.html 2019-01-08 15:19:01.000000000 +0100 @@ -0,0 +1,831 @@ + + + + +LOC Start request: libqmi-glib Reference Manual + + + + + + + + + + + + + + + + +
+
+
+ + +
+

LOC Start request

+

LOC Start request

+
+ +
+

Types and Values

+
++++ + + + + + + + + + + +
 QmiMessageLocStartInput
 QmiMessageLocStartOutput
+
+
+

Object Hierarchy

+
    GBoxed
+    ├── QmiMessageLocStartInput
+    ╰── QmiMessageLocStartOutput
+
+
+
+

Description

+
+
+

Functions

+
+

qmi_message_loc_start_input_new ()

+
QmiMessageLocStartInput *
+qmi_message_loc_start_input_new (void);
+

Allocates a new QmiMessageLocStartInput.

+
+

Returns

+

the newly created QmiMessageLocStartInput. The returned value should be freed with qmi_message_loc_start_input_unref().

+
+

Since: 1.20

+
+
+
+

qmi_message_loc_start_input_ref ()

+
QmiMessageLocStartInput *
+qmi_message_loc_start_input_ref (QmiMessageLocStartInput *self);
+

Atomically increments the reference count of self + by one.

+
+

Parameters

+
+++++ + + + + + +

self

a QmiMessageLocStartInput.

 
+
+
+

Returns

+

the new reference to self +.

+
+

Since: 1.20

+
+
+
+

qmi_message_loc_start_input_unref ()

+
void
+qmi_message_loc_start_input_unref (QmiMessageLocStartInput *self);
+

Atomically decrements the reference count of self + by one. +If the reference count drops to 0, self + is completely disposed.

+
+

Parameters

+
+++++ + + + + + +

self

a QmiMessageLocStartInput.

 
+
+

Since: 1.20

+
+
+
+

qmi_message_loc_start_input_get_minimum_interval_between_position_reports ()

+
gboolean
+qmi_message_loc_start_input_get_minimum_interval_between_position_reports
+                               (QmiMessageLocStartInput *self,
+                                guint32 *value_minimum_interval_between_position_reports,
+                                GError **error);
+

Get the 'Minimum Interval between Position Reports' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageLocStartInput.

 

value_minimum_interval_between_position_reports

a placeholder for the output guint32, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.22

+
+
+
+

qmi_message_loc_start_input_set_minimum_interval_between_position_reports ()

+
gboolean
+qmi_message_loc_start_input_set_minimum_interval_between_position_reports
+                               (QmiMessageLocStartInput *self,
+                                guint32 value_minimum_interval_between_position_reports,
+                                GError **error);
+

Set the 'Minimum Interval between Position Reports' field in the message.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageLocStartInput.

 

value_minimum_interval_between_position_reports

a guint32.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if value +was successfully set, FALSE otherwise.

+
+

Since: 1.22

+
+
+
+

qmi_message_loc_start_input_get_intermediate_report_state ()

+
gboolean
+qmi_message_loc_start_input_get_intermediate_report_state
+                               (QmiMessageLocStartInput *self,
+                                QmiLocIntermediateReportState *value_intermediate_report_state,
+                                GError **error);
+

Get the 'Intermediate Report State' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageLocStartInput.

 

value_intermediate_report_state

a placeholder for the output QmiLocIntermediateReportState, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.20

+
+
+
+

qmi_message_loc_start_input_set_intermediate_report_state ()

+
gboolean
+qmi_message_loc_start_input_set_intermediate_report_state
+                               (QmiMessageLocStartInput *self,
+                                QmiLocIntermediateReportState value_intermediate_report_state,
+                                GError **error);
+

Set the 'Intermediate Report State' field in the message.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageLocStartInput.

 

value_intermediate_report_state

a QmiLocIntermediateReportState.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if value +was successfully set, FALSE otherwise.

+
+

Since: 1.20

+
+
+
+

qmi_message_loc_start_input_get_fix_recurrence_type ()

+
gboolean
+qmi_message_loc_start_input_get_fix_recurrence_type
+                               (QmiMessageLocStartInput *self,
+                                QmiLocFixRecurrenceType *value_fix_recurrence_type,
+                                GError **error);
+

Get the 'Fix Recurrence Type' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageLocStartInput.

 

value_fix_recurrence_type

a placeholder for the output QmiLocFixRecurrenceType, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.20

+
+
+
+

qmi_message_loc_start_input_set_fix_recurrence_type ()

+
gboolean
+qmi_message_loc_start_input_set_fix_recurrence_type
+                               (QmiMessageLocStartInput *self,
+                                QmiLocFixRecurrenceType value_fix_recurrence_type,
+                                GError **error);
+

Set the 'Fix Recurrence Type' field in the message.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageLocStartInput.

 

value_fix_recurrence_type

a QmiLocFixRecurrenceType.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if value +was successfully set, FALSE otherwise.

+
+

Since: 1.20

+
+
+
+

qmi_message_loc_start_input_get_session_id ()

+
gboolean
+qmi_message_loc_start_input_get_session_id
+                               (QmiMessageLocStartInput *self,
+                                guint8 *value_session_id,
+                                GError **error);
+

Get the 'Session ID' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageLocStartInput.

 

value_session_id

a placeholder for the output guint8, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.20

+
+
+
+

qmi_message_loc_start_input_set_session_id ()

+
gboolean
+qmi_message_loc_start_input_set_session_id
+                               (QmiMessageLocStartInput *self,
+                                guint8 value_session_id,
+                                GError **error);
+

Set the 'Session ID' field in the message.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageLocStartInput.

 

value_session_id

a guint8.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if value +was successfully set, FALSE otherwise.

+
+

Since: 1.20

+
+
+
+

qmi_message_loc_start_output_ref ()

+
QmiMessageLocStartOutput *
+qmi_message_loc_start_output_ref (QmiMessageLocStartOutput *self);
+

Atomically increments the reference count of self + by one.

+
+

Parameters

+
+++++ + + + + + +

self

a QmiMessageLocStartOutput.

 
+
+
+

Returns

+

the new reference to self +.

+
+

Since: 1.20

+
+
+
+

qmi_message_loc_start_output_unref ()

+
void
+qmi_message_loc_start_output_unref (QmiMessageLocStartOutput *self);
+

Atomically decrements the reference count of self + by one. +If the reference count drops to 0, self + is completely disposed.

+
+

Parameters

+
+++++ + + + + + +

self

a QmiMessageLocStartOutput.

 
+
+

Since: 1.20

+
+
+
+

qmi_message_loc_start_output_get_result ()

+
gboolean
+qmi_message_loc_start_output_get_result
+                               (QmiMessageLocStartOutput *self,
+                                GError **error);
+

Get the result of the QMI operation.

+
+

Parameters

+
+++++ + + + + + + + + + + + + +

self

a QmiMessageLocStartOutput.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the QMI operation succeeded, FALSE if error +is set.

+
+

Since: 1.20

+
+
+
+

qmi_client_loc_start ()

+
void
+qmi_client_loc_start (QmiClientLoc *self,
+                      QmiMessageLocStartInput *input,
+                      guint timeout,
+                      GCancellable *cancellable,
+                      GAsyncReadyCallback callback,
+                      gpointer user_data);
+

Asynchronously sends a Start request to the device.

+

When the operation is finished, callback + will be invoked in the thread-default main loop of the thread you are calling this method from.

+

You can then call qmi_client_loc_start_finish() to get the result of the operation.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

self

a QmiClientLoc.

 

input

a QmiMessageLocStartInput.

 

timeout

maximum time to wait for the method to complete, in seconds.

 

cancellable

a GCancellable or NULL.

 

callback

a GAsyncReadyCallback to call when the request is satisfied.

 

user_data

user data to pass to callback +.

 
+
+

Since: 1.20

+
+
+
+

qmi_client_loc_start_finish ()

+
QmiMessageLocStartOutput *
+qmi_client_loc_start_finish (QmiClientLoc *self,
+                             GAsyncResult *res,
+                             GError **error);
+

Finishes an async operation started with qmi_client_loc_start().

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiClientLoc.

 

res

the GAsyncResult obtained from the GAsyncReadyCallback passed to qmi_client_loc_start().

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

a QmiMessageLocStartOutput, or NULL if error +is set. The returned value should be freed with qmi_message_loc_start_output_unref().

+
+

Since: 1.20

+
+
+
+

Types and Values

+
+

QmiMessageLocStartInput

+
typedef struct _QmiMessageLocStartInput QmiMessageLocStartInput;
+

The QmiMessageLocStartInput structure contains private data and should only be accessed +using the provided API.

+

Since: 1.20

+
+
+
+

QmiMessageLocStartOutput

+
typedef struct _QmiMessageLocStartOutput QmiMessageLocStartOutput;
+

The QmiMessageLocStartOutput structure contains private data and should only be accessed +using the provided API.

+

Since: 1.20

+
+
+
+ + + \ No newline at end of file diff -Nru libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-LOC-Stop-request.html libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-LOC-Stop-request.html --- libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-LOC-Stop-request.html 1970-01-01 01:00:00.000000000 +0100 +++ libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-LOC-Stop-request.html 2019-01-08 15:19:01.000000000 +0100 @@ -0,0 +1,525 @@ + + + + +LOC Stop request: libqmi-glib Reference Manual + + + + + + + + + + + + + + + + +
+
+
+ + +
+

LOC Stop request

+

LOC Stop request

+
+ +
+

Types and Values

+
++++ + + + + + + + + + + +
 QmiMessageLocStopInput
 QmiMessageLocStopOutput
+
+
+

Object Hierarchy

+
    GBoxed
+    ├── QmiMessageLocStopInput
+    ╰── QmiMessageLocStopOutput
+
+
+
+

Description

+
+
+

Functions

+
+

qmi_message_loc_stop_input_new ()

+
QmiMessageLocStopInput *
+qmi_message_loc_stop_input_new (void);
+

Allocates a new QmiMessageLocStopInput.

+
+

Returns

+

the newly created QmiMessageLocStopInput. The returned value should be freed with qmi_message_loc_stop_input_unref().

+
+

Since: 1.20

+
+
+
+

qmi_message_loc_stop_input_ref ()

+
QmiMessageLocStopInput *
+qmi_message_loc_stop_input_ref (QmiMessageLocStopInput *self);
+

Atomically increments the reference count of self + by one.

+
+

Parameters

+
+++++ + + + + + +

self

a QmiMessageLocStopInput.

 
+
+
+

Returns

+

the new reference to self +.

+
+

Since: 1.20

+
+
+
+

qmi_message_loc_stop_input_unref ()

+
void
+qmi_message_loc_stop_input_unref (QmiMessageLocStopInput *self);
+

Atomically decrements the reference count of self + by one. +If the reference count drops to 0, self + is completely disposed.

+
+

Parameters

+
+++++ + + + + + +

self

a QmiMessageLocStopInput.

 
+
+

Since: 1.20

+
+
+
+

qmi_message_loc_stop_input_get_session_id ()

+
gboolean
+qmi_message_loc_stop_input_get_session_id
+                               (QmiMessageLocStopInput *self,
+                                guint8 *value_session_id,
+                                GError **error);
+

Get the 'Session ID' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageLocStopInput.

 

value_session_id

a placeholder for the output guint8, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.22

+
+
+
+

qmi_message_loc_stop_input_set_session_id ()

+
gboolean
+qmi_message_loc_stop_input_set_session_id
+                               (QmiMessageLocStopInput *self,
+                                guint8 value_session_id,
+                                GError **error);
+

Set the 'Session ID' field in the message.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageLocStopInput.

 

value_session_id

a guint8.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if value +was successfully set, FALSE otherwise.

+
+

Since: 1.22

+
+
+
+

qmi_message_loc_stop_output_ref ()

+
QmiMessageLocStopOutput *
+qmi_message_loc_stop_output_ref (QmiMessageLocStopOutput *self);
+

Atomically increments the reference count of self + by one.

+
+

Parameters

+
+++++ + + + + + +

self

a QmiMessageLocStopOutput.

 
+
+
+

Returns

+

the new reference to self +.

+
+

Since: 1.20

+
+
+
+

qmi_message_loc_stop_output_unref ()

+
void
+qmi_message_loc_stop_output_unref (QmiMessageLocStopOutput *self);
+

Atomically decrements the reference count of self + by one. +If the reference count drops to 0, self + is completely disposed.

+
+

Parameters

+
+++++ + + + + + +

self

a QmiMessageLocStopOutput.

 
+
+

Since: 1.20

+
+
+
+

qmi_message_loc_stop_output_get_result ()

+
gboolean
+qmi_message_loc_stop_output_get_result
+                               (QmiMessageLocStopOutput *self,
+                                GError **error);
+

Get the result of the QMI operation.

+
+

Parameters

+
+++++ + + + + + + + + + + + + +

self

a QmiMessageLocStopOutput.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the QMI operation succeeded, FALSE if error +is set.

+
+

Since: 1.20

+
+
+
+

qmi_client_loc_stop ()

+
void
+qmi_client_loc_stop (QmiClientLoc *self,
+                     QmiMessageLocStopInput *input,
+                     guint timeout,
+                     GCancellable *cancellable,
+                     GAsyncReadyCallback callback,
+                     gpointer user_data);
+

Asynchronously sends a Stop request to the device.

+

When the operation is finished, callback + will be invoked in the thread-default main loop of the thread you are calling this method from.

+

You can then call qmi_client_loc_stop_finish() to get the result of the operation.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

self

a QmiClientLoc.

 

input

a QmiMessageLocStopInput.

 

timeout

maximum time to wait for the method to complete, in seconds.

 

cancellable

a GCancellable or NULL.

 

callback

a GAsyncReadyCallback to call when the request is satisfied.

 

user_data

user data to pass to callback +.

 
+
+

Since: 1.20

+
+
+
+

qmi_client_loc_stop_finish ()

+
QmiMessageLocStopOutput *
+qmi_client_loc_stop_finish (QmiClientLoc *self,
+                            GAsyncResult *res,
+                            GError **error);
+

Finishes an async operation started with qmi_client_loc_stop().

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiClientLoc.

 

res

the GAsyncResult obtained from the GAsyncReadyCallback passed to qmi_client_loc_stop().

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

a QmiMessageLocStopOutput, or NULL if error +is set. The returned value should be freed with qmi_message_loc_stop_output_unref().

+
+

Since: 1.20

+
+
+
+

Types and Values

+
+

QmiMessageLocStopInput

+
typedef struct _QmiMessageLocStopInput QmiMessageLocStopInput;
+

The QmiMessageLocStopInput structure contains private data and should only be accessed +using the provided API.

+

Since: 1.20

+
+
+
+

QmiMessageLocStopOutput

+
typedef struct _QmiMessageLocStopOutput QmiMessageLocStopOutput;
+

The QmiMessageLocStopOutput structure contains private data and should only be accessed +using the provided API.

+

Since: 1.20

+
+
+
+ + + \ No newline at end of file diff -Nru libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-NAS-Attach-Detach-request.html libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-NAS-Attach-Detach-request.html --- libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-NAS-Attach-Detach-request.html 1970-01-01 01:00:00.000000000 +0100 +++ libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-NAS-Attach-Detach-request.html 2019-01-08 15:19:01.000000000 +0100 @@ -0,0 +1,530 @@ + + + + +NAS Attach Detach request: libqmi-glib Reference Manual + + + + + + + + + + + + + + + + +
+
+
+ + +
+

NAS Attach Detach request

+

NAS Attach Detach request

+
+ +
+

Types and Values

+ +
+
+

Object Hierarchy

+
    GBoxed
+    ├── QmiMessageNasAttachDetachInput
+    ╰── QmiMessageNasAttachDetachOutput
+
+
+
+

Description

+
+
+

Functions

+
+

qmi_message_nas_attach_detach_input_new ()

+
QmiMessageNasAttachDetachInput *
+qmi_message_nas_attach_detach_input_new
+                               (void);
+

Allocates a new QmiMessageNasAttachDetachInput.

+
+

Returns

+

the newly created QmiMessageNasAttachDetachInput. The returned value should be freed with qmi_message_nas_attach_detach_input_unref().

+
+

Since: 1.20

+
+
+
+

qmi_message_nas_attach_detach_input_ref ()

+
QmiMessageNasAttachDetachInput *
+qmi_message_nas_attach_detach_input_ref
+                               (QmiMessageNasAttachDetachInput *self);
+

Atomically increments the reference count of self + by one.

+
+

Parameters

+
+++++ + + + + + +

self

a QmiMessageNasAttachDetachInput.

 
+
+
+

Returns

+

the new reference to self +.

+
+

Since: 1.20

+
+
+
+

qmi_message_nas_attach_detach_input_unref ()

+
void
+qmi_message_nas_attach_detach_input_unref
+                               (QmiMessageNasAttachDetachInput *self);
+

Atomically decrements the reference count of self + by one. +If the reference count drops to 0, self + is completely disposed.

+
+

Parameters

+
+++++ + + + + + +

self

a QmiMessageNasAttachDetachInput.

 
+
+

Since: 1.20

+
+
+
+

qmi_message_nas_attach_detach_input_get_action ()

+
gboolean
+qmi_message_nas_attach_detach_input_get_action
+                               (QmiMessageNasAttachDetachInput *self,
+                                QmiNasPsAttachAction *value_action,
+                                GError **error);
+

Get the 'Action' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageNasAttachDetachInput.

 

value_action

a placeholder for the output QmiNasPsAttachAction, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.20

+
+
+
+

qmi_message_nas_attach_detach_input_set_action ()

+
gboolean
+qmi_message_nas_attach_detach_input_set_action
+                               (QmiMessageNasAttachDetachInput *self,
+                                QmiNasPsAttachAction value_action,
+                                GError **error);
+

Set the 'Action' field in the message.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageNasAttachDetachInput.

 

value_action

a QmiNasPsAttachAction.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if value +was successfully set, FALSE otherwise.

+
+

Since: 1.20

+
+
+
+

qmi_message_nas_attach_detach_output_ref ()

+
QmiMessageNasAttachDetachOutput *
+qmi_message_nas_attach_detach_output_ref
+                               (QmiMessageNasAttachDetachOutput *self);
+

Atomically increments the reference count of self + by one.

+
+

Parameters

+
+++++ + + + + + +

self

a QmiMessageNasAttachDetachOutput.

 
+
+
+

Returns

+

the new reference to self +.

+
+

Since: 1.20

+
+
+
+

qmi_message_nas_attach_detach_output_unref ()

+
void
+qmi_message_nas_attach_detach_output_unref
+                               (QmiMessageNasAttachDetachOutput *self);
+

Atomically decrements the reference count of self + by one. +If the reference count drops to 0, self + is completely disposed.

+
+

Parameters

+
+++++ + + + + + +

self

a QmiMessageNasAttachDetachOutput.

 
+
+

Since: 1.20

+
+
+
+

qmi_message_nas_attach_detach_output_get_result ()

+
gboolean
+qmi_message_nas_attach_detach_output_get_result
+                               (QmiMessageNasAttachDetachOutput *self,
+                                GError **error);
+

Get the result of the QMI operation.

+
+

Parameters

+
+++++ + + + + + + + + + + + + +

self

a QmiMessageNasAttachDetachOutput.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the QMI operation succeeded, FALSE if error +is set.

+
+

Since: 1.20

+
+
+
+

qmi_client_nas_attach_detach ()

+
void
+qmi_client_nas_attach_detach (QmiClientNas *self,
+                              QmiMessageNasAttachDetachInput *input,
+                              guint timeout,
+                              GCancellable *cancellable,
+                              GAsyncReadyCallback callback,
+                              gpointer user_data);
+

Asynchronously sends a Attach Detach request to the device.

+

When the operation is finished, callback + will be invoked in the thread-default main loop of the thread you are calling this method from.

+

You can then call qmi_client_nas_attach_detach_finish() to get the result of the operation.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

self

a QmiClientNas.

 

input

a QmiMessageNasAttachDetachInput.

 

timeout

maximum time to wait for the method to complete, in seconds.

 

cancellable

a GCancellable or NULL.

 

callback

a GAsyncReadyCallback to call when the request is satisfied.

 

user_data

user data to pass to callback +.

 
+
+

Since: 1.20

+
+
+
+

qmi_client_nas_attach_detach_finish ()

+
QmiMessageNasAttachDetachOutput *
+qmi_client_nas_attach_detach_finish (QmiClientNas *self,
+                                     GAsyncResult *res,
+                                     GError **error);
+

Finishes an async operation started with qmi_client_nas_attach_detach().

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiClientNas.

 

res

the GAsyncResult obtained from the GAsyncReadyCallback passed to qmi_client_nas_attach_detach().

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

a QmiMessageNasAttachDetachOutput, or NULL if error +is set. The returned value should be freed with qmi_message_nas_attach_detach_output_unref().

+
+

Since: 1.20

+
+
+
+

Types and Values

+
+

QmiMessageNasAttachDetachInput

+
typedef struct _QmiMessageNasAttachDetachInput QmiMessageNasAttachDetachInput;
+

The QmiMessageNasAttachDetachInput structure contains private data and should only be accessed +using the provided API.

+

Since: 1.20

+
+
+
+

QmiMessageNasAttachDetachOutput

+
typedef struct _QmiMessageNasAttachDetachOutput QmiMessageNasAttachDetachOutput;
+

The QmiMessageNasAttachDetachOutput structure contains private data and should only be accessed +using the provided API.

+

Since: 1.20

+
+
+
+ + + \ No newline at end of file diff -Nru libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-NAS-Config-Signal-Info.html libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-NAS-Config-Signal-Info.html --- libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-NAS-Config-Signal-Info.html 2017-03-22 12:28:29.000000000 +0100 +++ libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-NAS-Config-Signal-Info.html 1970-01-01 01:00:00.000000000 +0100 @@ -1,1375 +0,0 @@ - - - - -NAS Config Signal Info: libqmi-glib Reference Manual - - - - - - - - - - - - - - - - -
-
-
- - -
-

NAS Config Signal Info

-

NAS Config Signal Info

-
-
-

Functions

-
---- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
-QmiMessageNasConfigSignalInfoInput * - -qmi_message_nas_config_signal_info_input_new () -
-QmiMessageNasConfigSignalInfoInput * - -qmi_message_nas_config_signal_info_input_ref () -
-void - -qmi_message_nas_config_signal_info_input_unref () -
-gboolean - -qmi_message_nas_config_signal_info_input_get_rscp_threshold () -
-gboolean - -qmi_message_nas_config_signal_info_input_set_rscp_threshold () -
-gboolean - -qmi_message_nas_config_signal_info_input_get_lte_report () -
-gboolean - -qmi_message_nas_config_signal_info_input_set_lte_report () -
-gboolean - -qmi_message_nas_config_signal_info_input_get_rsrp_threshold () -
-gboolean - -qmi_message_nas_config_signal_info_input_set_rsrp_threshold () -
-gboolean - -qmi_message_nas_config_signal_info_input_get_rsrq_threshold () -
-gboolean - -qmi_message_nas_config_signal_info_input_set_rsrq_threshold () -
-gboolean - -qmi_message_nas_config_signal_info_input_get_io_threshold () -
-gboolean - -qmi_message_nas_config_signal_info_input_set_io_threshold () -
-gboolean - -qmi_message_nas_config_signal_info_input_get_lte_snr_threshold () -
-gboolean - -qmi_message_nas_config_signal_info_input_set_lte_snr_threshold () -
-gboolean - -qmi_message_nas_config_signal_info_input_get_sinr_threshold () -
-gboolean - -qmi_message_nas_config_signal_info_input_set_sinr_threshold () -
-gboolean - -qmi_message_nas_config_signal_info_input_get_ecio_threshold () -
-gboolean - -qmi_message_nas_config_signal_info_input_set_ecio_threshold () -
-gboolean - -qmi_message_nas_config_signal_info_input_get_rssi_threshold () -
-gboolean - -qmi_message_nas_config_signal_info_input_set_rssi_threshold () -
-QmiMessageNasConfigSignalInfoOutput * - -qmi_message_nas_config_signal_info_output_ref () -
-void - -qmi_message_nas_config_signal_info_output_unref () -
-gboolean - -qmi_message_nas_config_signal_info_output_get_result () -
-void - -qmi_client_nas_config_signal_info () -
-QmiMessageNasConfigSignalInfoOutput * - -qmi_client_nas_config_signal_info_finish () -
-
-
-

Types and Values

- -
-
-

Object Hierarchy

-
    GBoxed
-    ├── QmiMessageNasConfigSignalInfoInput
-    ╰── QmiMessageNasConfigSignalInfoOutput
-
-
-
-

Description

-
-
-

Functions

-
-

qmi_message_nas_config_signal_info_input_new ()

-
QmiMessageNasConfigSignalInfoInput *
-qmi_message_nas_config_signal_info_input_new
-                               (void);
-

Allocates a new QmiMessageNasConfigSignalInfoInput.

-
-

Returns

-

the newly created QmiMessageNasConfigSignalInfoInput. The returned value should be freed with qmi_message_nas_config_signal_info_input_unref().

-
-

Since: 1.0

-
-
-
-

qmi_message_nas_config_signal_info_input_ref ()

-
QmiMessageNasConfigSignalInfoInput *
-qmi_message_nas_config_signal_info_input_ref
-                               (QmiMessageNasConfigSignalInfoInput *self);
-

Atomically increments the reference count of self - by one.

-
-

Parameters

-
----- - - - - - -

self

a QmiMessageNasConfigSignalInfoInput.

 
-
-
-

Returns

-

the new reference to self -.

-
-

Since: 1.0

-
-
-
-

qmi_message_nas_config_signal_info_input_unref ()

-
void
-qmi_message_nas_config_signal_info_input_unref
-                               (QmiMessageNasConfigSignalInfoInput *self);
-

Atomically decrements the reference count of self - by one. -If the reference count drops to 0, self - is completely disposed.

-
-

Parameters

-
----- - - - - - -

self

a QmiMessageNasConfigSignalInfoInput.

 
-
-

Since: 1.0

-
-
-
-

qmi_message_nas_config_signal_info_input_get_rscp_threshold ()

-
gboolean
-qmi_message_nas_config_signal_info_input_get_rscp_threshold
-                               (QmiMessageNasConfigSignalInfoInput *self,
-                                GArray **value_rscp_threshold,
-                                GError **error);
-

Get the 'RSCP Threshold' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessageNasConfigSignalInfoInput.

 

value_rscp_threshold

a placeholder for the output GArray of gint8 elements, or NULL if not required. Do not free it, it is owned by self -.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.0

-
-
-
-

qmi_message_nas_config_signal_info_input_set_rscp_threshold ()

-
gboolean
-qmi_message_nas_config_signal_info_input_set_rscp_threshold
-                               (QmiMessageNasConfigSignalInfoInput *self,
-                                GArray *value_rscp_threshold,
-                                GError **error);
-

Set the 'RSCP Threshold' field in the message.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessageNasConfigSignalInfoInput.

 

value_rscp_threshold

a GArray of gint8 elements. A new reference to value_rscp_threshold -will be taken.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if value -was successfully set, FALSE otherwise.

-
-

Since: 1.0

-
-
-
-

qmi_message_nas_config_signal_info_input_get_lte_report ()

-
gboolean
-qmi_message_nas_config_signal_info_input_get_lte_report
-                               (QmiMessageNasConfigSignalInfoInput *self,
-                                guint8 *value_lte_report_rate,
-                                guint8 *value_lte_report_average_period,
-                                GError **error);
-

Get the 'LTE Report' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - - - - - - -

self

a QmiMessageNasConfigSignalInfoInput.

 

value_lte_report_rate

a placeholder for the output guint8, or NULL if not required.

 

value_lte_report_average_period

a placeholder for the output guint8, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.0

-
-
-
-

qmi_message_nas_config_signal_info_input_set_lte_report ()

-
gboolean
-qmi_message_nas_config_signal_info_input_set_lte_report
-                               (QmiMessageNasConfigSignalInfoInput *self,
-                                guint8 value_lte_report_rate,
-                                guint8 value_lte_report_average_period,
-                                GError **error);
-

Set the 'LTE Report' field in the message.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - - - - - - -

self

a QmiMessageNasConfigSignalInfoInput.

 

value_lte_report_rate

a guint8.

 

value_lte_report_average_period

a guint8.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if value -was successfully set, FALSE otherwise.

-
-

Since: 1.0

-
-
-
-

qmi_message_nas_config_signal_info_input_get_rsrp_threshold ()

-
gboolean
-qmi_message_nas_config_signal_info_input_get_rsrp_threshold
-                               (QmiMessageNasConfigSignalInfoInput *self,
-                                GArray **value_rsrp_threshold,
-                                GError **error);
-

Get the 'RSRP Threshold' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessageNasConfigSignalInfoInput.

 

value_rsrp_threshold

a placeholder for the output GArray of gint16 elements, or NULL if not required. Do not free it, it is owned by self -.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.0

-
-
-
-

qmi_message_nas_config_signal_info_input_set_rsrp_threshold ()

-
gboolean
-qmi_message_nas_config_signal_info_input_set_rsrp_threshold
-                               (QmiMessageNasConfigSignalInfoInput *self,
-                                GArray *value_rsrp_threshold,
-                                GError **error);
-

Set the 'RSRP Threshold' field in the message.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessageNasConfigSignalInfoInput.

 

value_rsrp_threshold

a GArray of gint16 elements. A new reference to value_rsrp_threshold -will be taken.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if value -was successfully set, FALSE otherwise.

-
-

Since: 1.0

-
-
-
-

qmi_message_nas_config_signal_info_input_get_rsrq_threshold ()

-
gboolean
-qmi_message_nas_config_signal_info_input_get_rsrq_threshold
-                               (QmiMessageNasConfigSignalInfoInput *self,
-                                GArray **value_rsrq_threshold,
-                                GError **error);
-

Get the 'RSRQ Threshold' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessageNasConfigSignalInfoInput.

 

value_rsrq_threshold

a placeholder for the output GArray of gint8 elements, or NULL if not required. Do not free it, it is owned by self -.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.0

-
-
-
-

qmi_message_nas_config_signal_info_input_set_rsrq_threshold ()

-
gboolean
-qmi_message_nas_config_signal_info_input_set_rsrq_threshold
-                               (QmiMessageNasConfigSignalInfoInput *self,
-                                GArray *value_rsrq_threshold,
-                                GError **error);
-

Set the 'RSRQ Threshold' field in the message.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessageNasConfigSignalInfoInput.

 

value_rsrq_threshold

a GArray of gint8 elements. A new reference to value_rsrq_threshold -will be taken.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if value -was successfully set, FALSE otherwise.

-
-

Since: 1.0

-
-
-
-

qmi_message_nas_config_signal_info_input_get_io_threshold ()

-
gboolean
-qmi_message_nas_config_signal_info_input_get_io_threshold
-                               (QmiMessageNasConfigSignalInfoInput *self,
-                                GArray **value_io_threshold,
-                                GError **error);
-

Get the 'IO Threshold' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessageNasConfigSignalInfoInput.

 

value_io_threshold

a placeholder for the output GArray of gint32 elements, or NULL if not required. Do not free it, it is owned by self -.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.0

-
-
-
-

qmi_message_nas_config_signal_info_input_set_io_threshold ()

-
gboolean
-qmi_message_nas_config_signal_info_input_set_io_threshold
-                               (QmiMessageNasConfigSignalInfoInput *self,
-                                GArray *value_io_threshold,
-                                GError **error);
-

Set the 'IO Threshold' field in the message.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessageNasConfigSignalInfoInput.

 

value_io_threshold

a GArray of gint32 elements. A new reference to value_io_threshold -will be taken.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if value -was successfully set, FALSE otherwise.

-
-

Since: 1.0

-
-
-
-

qmi_message_nas_config_signal_info_input_get_lte_snr_threshold ()

-
gboolean
-qmi_message_nas_config_signal_info_input_get_lte_snr_threshold
-                               (QmiMessageNasConfigSignalInfoInput *self,
-                                GArray **value_lte_snr_threshold,
-                                GError **error);
-

Get the 'LTE SNR Threshold' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessageNasConfigSignalInfoInput.

 

value_lte_snr_threshold

a placeholder for the output GArray of gint16 elements, or NULL if not required. Do not free it, it is owned by self -.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.0

-
-
-
-

qmi_message_nas_config_signal_info_input_set_lte_snr_threshold ()

-
gboolean
-qmi_message_nas_config_signal_info_input_set_lte_snr_threshold
-                               (QmiMessageNasConfigSignalInfoInput *self,
-                                GArray *value_lte_snr_threshold,
-                                GError **error);
-

Set the 'LTE SNR Threshold' field in the message.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessageNasConfigSignalInfoInput.

 

value_lte_snr_threshold

a GArray of gint16 elements. A new reference to value_lte_snr_threshold -will be taken.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if value -was successfully set, FALSE otherwise.

-
-

Since: 1.0

-
-
-
-

qmi_message_nas_config_signal_info_input_get_sinr_threshold ()

-
gboolean
-qmi_message_nas_config_signal_info_input_get_sinr_threshold
-                               (QmiMessageNasConfigSignalInfoInput *self,
-                                GArray **value_sinr_threshold,
-                                GError **error);
-

Get the 'SINR Threshold' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessageNasConfigSignalInfoInput.

 

value_sinr_threshold

a placeholder for the output GArray of guint8 elements, or NULL if not required. Do not free it, it is owned by self -.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.0

-
-
-
-

qmi_message_nas_config_signal_info_input_set_sinr_threshold ()

-
gboolean
-qmi_message_nas_config_signal_info_input_set_sinr_threshold
-                               (QmiMessageNasConfigSignalInfoInput *self,
-                                GArray *value_sinr_threshold,
-                                GError **error);
-

Set the 'SINR Threshold' field in the message.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessageNasConfigSignalInfoInput.

 

value_sinr_threshold

a GArray of guint8 elements. A new reference to value_sinr_threshold -will be taken.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if value -was successfully set, FALSE otherwise.

-
-

Since: 1.0

-
-
-
-

qmi_message_nas_config_signal_info_input_get_ecio_threshold ()

-
gboolean
-qmi_message_nas_config_signal_info_input_get_ecio_threshold
-                               (QmiMessageNasConfigSignalInfoInput *self,
-                                GArray **value_ecio_threshold,
-                                GError **error);
-

Get the 'ECIO Threshold' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessageNasConfigSignalInfoInput.

 

value_ecio_threshold

a placeholder for the output GArray of gint16 elements, or NULL if not required. Do not free it, it is owned by self -.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.0

-
-
-
-

qmi_message_nas_config_signal_info_input_set_ecio_threshold ()

-
gboolean
-qmi_message_nas_config_signal_info_input_set_ecio_threshold
-                               (QmiMessageNasConfigSignalInfoInput *self,
-                                GArray *value_ecio_threshold,
-                                GError **error);
-

Set the 'ECIO Threshold' field in the message.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessageNasConfigSignalInfoInput.

 

value_ecio_threshold

a GArray of gint16 elements. A new reference to value_ecio_threshold -will be taken.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if value -was successfully set, FALSE otherwise.

-
-

Since: 1.0

-
-
-
-

qmi_message_nas_config_signal_info_input_get_rssi_threshold ()

-
gboolean
-qmi_message_nas_config_signal_info_input_get_rssi_threshold
-                               (QmiMessageNasConfigSignalInfoInput *self,
-                                GArray **value_rssi_threshold,
-                                GError **error);
-

Get the 'RSSI Threshold' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessageNasConfigSignalInfoInput.

 

value_rssi_threshold

a placeholder for the output GArray of gint8 elements, or NULL if not required. Do not free it, it is owned by self -.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.0

-
-
-
-

qmi_message_nas_config_signal_info_input_set_rssi_threshold ()

-
gboolean
-qmi_message_nas_config_signal_info_input_set_rssi_threshold
-                               (QmiMessageNasConfigSignalInfoInput *self,
-                                GArray *value_rssi_threshold,
-                                GError **error);
-

Set the 'RSSI Threshold' field in the message.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessageNasConfigSignalInfoInput.

 

value_rssi_threshold

a GArray of gint8 elements. A new reference to value_rssi_threshold -will be taken.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if value -was successfully set, FALSE otherwise.

-
-

Since: 1.0

-
-
-
-

qmi_message_nas_config_signal_info_output_ref ()

-
QmiMessageNasConfigSignalInfoOutput *
-qmi_message_nas_config_signal_info_output_ref
-                               (QmiMessageNasConfigSignalInfoOutput *self);
-

Atomically increments the reference count of self - by one.

-
-

Parameters

-
----- - - - - - -

self

a QmiMessageNasConfigSignalInfoOutput.

 
-
-
-

Returns

-

the new reference to self -.

-
-

Since: 1.0

-
-
-
-

qmi_message_nas_config_signal_info_output_unref ()

-
void
-qmi_message_nas_config_signal_info_output_unref
-                               (QmiMessageNasConfigSignalInfoOutput *self);
-

Atomically decrements the reference count of self - by one. -If the reference count drops to 0, self - is completely disposed.

-
-

Parameters

-
----- - - - - - -

self

a QmiMessageNasConfigSignalInfoOutput.

 
-
-

Since: 1.0

-
-
-
-

qmi_message_nas_config_signal_info_output_get_result ()

-
gboolean
-qmi_message_nas_config_signal_info_output_get_result
-                               (QmiMessageNasConfigSignalInfoOutput *self,
-                                GError **error);
-

Get the result of the QMI operation.

-
-

Parameters

-
----- - - - - - - - - - - - - -

self

a QmiMessageNasConfigSignalInfoOutput.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the QMI operation succeeded, FALSE if error -is set.

-
-

Since: 1.0

-
-
-
-

qmi_client_nas_config_signal_info ()

-
void
-qmi_client_nas_config_signal_info (QmiClientNas *self,
-                                   QmiMessageNasConfigSignalInfoInput *input,
-                                   guint timeout,
-                                   GCancellable *cancellable,
-                                   GAsyncReadyCallback callback,
-                                   gpointer user_data);
-

Asynchronously sends a Config Signal Info request to the device.

-

When the operation is finished, callback - will be invoked in the thread-default main loop of the thread you are calling this method from.

-

You can then call qmi_client_nas_config_signal_info_finish() to get the result of the operation.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

self

a QmiClientNas.

 

input

a QmiMessageNasConfigSignalInfoInput.

 

timeout

maximum time to wait for the method to complete, in seconds.

 

cancellable

a GCancellable or NULL.

 

callback

a GAsyncReadyCallback to call when the request is satisfied.

 

user_data

user data to pass to callback -.

 
-
-

Since: 1.0

-
-
-
-

qmi_client_nas_config_signal_info_finish ()

-
QmiMessageNasConfigSignalInfoOutput *
-qmi_client_nas_config_signal_info_finish
-                               (QmiClientNas *self,
-                                GAsyncResult *res,
-                                GError **error);
-

Finishes an async operation started with qmi_client_nas_config_signal_info().

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiClientNas.

 

res

the GAsyncResult obtained from the GAsyncReadyCallback passed to qmi_client_nas_config_signal_info().

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

a QmiMessageNasConfigSignalInfoOutput, or NULL if error -is set. The returned value should be freed with qmi_message_nas_config_signal_info_output_unref().

-
-

Since: 1.0

-
-
-
-

Types and Values

-
-

QmiMessageNasConfigSignalInfoInput

-
typedef struct _QmiMessageNasConfigSignalInfoInput QmiMessageNasConfigSignalInfoInput;
-

The QmiMessageNasConfigSignalInfoInput structure contains private data and should only be accessed -using the provided API.

-

Since: 1.0

-
-
-
-

QmiMessageNasConfigSignalInfoOutput

-
typedef struct _QmiMessageNasConfigSignalInfoOutput QmiMessageNasConfigSignalInfoOutput;
-

The QmiMessageNasConfigSignalInfoOutput structure contains private data and should only be accessed -using the provided API.

-

Since: 1.0

-
-
-
- - - \ No newline at end of file diff -Nru libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-NAS-Config-Signal-Info-request.html libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-NAS-Config-Signal-Info-request.html --- libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-NAS-Config-Signal-Info-request.html 1970-01-01 01:00:00.000000000 +0100 +++ libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-NAS-Config-Signal-Info-request.html 2019-01-08 15:19:01.000000000 +0100 @@ -0,0 +1,1375 @@ + + + + +NAS Config Signal Info request: libqmi-glib Reference Manual + + + + + + + + + + + + + + + + +
+
+
+ + +
+

NAS Config Signal Info request

+

NAS Config Signal Info request

+
+
+

Functions

+
++++ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+QmiMessageNasConfigSignalInfoInput * + +qmi_message_nas_config_signal_info_input_new () +
+QmiMessageNasConfigSignalInfoInput * + +qmi_message_nas_config_signal_info_input_ref () +
+void + +qmi_message_nas_config_signal_info_input_unref () +
+gboolean + +qmi_message_nas_config_signal_info_input_get_rscp_threshold () +
+gboolean + +qmi_message_nas_config_signal_info_input_set_rscp_threshold () +
+gboolean + +qmi_message_nas_config_signal_info_input_get_lte_report () +
+gboolean + +qmi_message_nas_config_signal_info_input_set_lte_report () +
+gboolean + +qmi_message_nas_config_signal_info_input_get_rsrp_threshold () +
+gboolean + +qmi_message_nas_config_signal_info_input_set_rsrp_threshold () +
+gboolean + +qmi_message_nas_config_signal_info_input_get_rsrq_threshold () +
+gboolean + +qmi_message_nas_config_signal_info_input_set_rsrq_threshold () +
+gboolean + +qmi_message_nas_config_signal_info_input_get_io_threshold () +
+gboolean + +qmi_message_nas_config_signal_info_input_set_io_threshold () +
+gboolean + +qmi_message_nas_config_signal_info_input_get_lte_snr_threshold () +
+gboolean + +qmi_message_nas_config_signal_info_input_set_lte_snr_threshold () +
+gboolean + +qmi_message_nas_config_signal_info_input_get_sinr_threshold () +
+gboolean + +qmi_message_nas_config_signal_info_input_set_sinr_threshold () +
+gboolean + +qmi_message_nas_config_signal_info_input_get_ecio_threshold () +
+gboolean + +qmi_message_nas_config_signal_info_input_set_ecio_threshold () +
+gboolean + +qmi_message_nas_config_signal_info_input_get_rssi_threshold () +
+gboolean + +qmi_message_nas_config_signal_info_input_set_rssi_threshold () +
+QmiMessageNasConfigSignalInfoOutput * + +qmi_message_nas_config_signal_info_output_ref () +
+void + +qmi_message_nas_config_signal_info_output_unref () +
+gboolean + +qmi_message_nas_config_signal_info_output_get_result () +
+void + +qmi_client_nas_config_signal_info () +
+QmiMessageNasConfigSignalInfoOutput * + +qmi_client_nas_config_signal_info_finish () +
+
+
+

Types and Values

+ +
+
+

Object Hierarchy

+
    GBoxed
+    ├── QmiMessageNasConfigSignalInfoInput
+    ╰── QmiMessageNasConfigSignalInfoOutput
+
+
+
+

Description

+
+
+

Functions

+
+

qmi_message_nas_config_signal_info_input_new ()

+
QmiMessageNasConfigSignalInfoInput *
+qmi_message_nas_config_signal_info_input_new
+                               (void);
+

Allocates a new QmiMessageNasConfigSignalInfoInput.

+
+

Returns

+

the newly created QmiMessageNasConfigSignalInfoInput. The returned value should be freed with qmi_message_nas_config_signal_info_input_unref().

+
+

Since: 1.0

+
+
+
+

qmi_message_nas_config_signal_info_input_ref ()

+
QmiMessageNasConfigSignalInfoInput *
+qmi_message_nas_config_signal_info_input_ref
+                               (QmiMessageNasConfigSignalInfoInput *self);
+

Atomically increments the reference count of self + by one.

+
+

Parameters

+
+++++ + + + + + +

self

a QmiMessageNasConfigSignalInfoInput.

 
+
+
+

Returns

+

the new reference to self +.

+
+

Since: 1.0

+
+
+
+

qmi_message_nas_config_signal_info_input_unref ()

+
void
+qmi_message_nas_config_signal_info_input_unref
+                               (QmiMessageNasConfigSignalInfoInput *self);
+

Atomically decrements the reference count of self + by one. +If the reference count drops to 0, self + is completely disposed.

+
+

Parameters

+
+++++ + + + + + +

self

a QmiMessageNasConfigSignalInfoInput.

 
+
+

Since: 1.0

+
+
+
+

qmi_message_nas_config_signal_info_input_get_rscp_threshold ()

+
gboolean
+qmi_message_nas_config_signal_info_input_get_rscp_threshold
+                               (QmiMessageNasConfigSignalInfoInput *self,
+                                GArray **value_rscp_threshold,
+                                GError **error);
+

Get the 'RSCP Threshold' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageNasConfigSignalInfoInput.

 

value_rscp_threshold

a placeholder for the output GArray of gint8 elements, or NULL if not required. Do not free it, it is owned by self +.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.0

+
+
+
+

qmi_message_nas_config_signal_info_input_set_rscp_threshold ()

+
gboolean
+qmi_message_nas_config_signal_info_input_set_rscp_threshold
+                               (QmiMessageNasConfigSignalInfoInput *self,
+                                GArray *value_rscp_threshold,
+                                GError **error);
+

Set the 'RSCP Threshold' field in the message.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageNasConfigSignalInfoInput.

 

value_rscp_threshold

a GArray of gint8 elements. A new reference to value_rscp_threshold +will be taken.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if value +was successfully set, FALSE otherwise.

+
+

Since: 1.0

+
+
+
+

qmi_message_nas_config_signal_info_input_get_lte_report ()

+
gboolean
+qmi_message_nas_config_signal_info_input_get_lte_report
+                               (QmiMessageNasConfigSignalInfoInput *self,
+                                guint8 *value_lte_report_rate,
+                                guint8 *value_lte_report_average_period,
+                                GError **error);
+

Get the 'LTE Report' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + + + + + + +

self

a QmiMessageNasConfigSignalInfoInput.

 

value_lte_report_rate

a placeholder for the output guint8, or NULL if not required.

 

value_lte_report_average_period

a placeholder for the output guint8, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.0

+
+
+
+

qmi_message_nas_config_signal_info_input_set_lte_report ()

+
gboolean
+qmi_message_nas_config_signal_info_input_set_lte_report
+                               (QmiMessageNasConfigSignalInfoInput *self,
+                                guint8 value_lte_report_rate,
+                                guint8 value_lte_report_average_period,
+                                GError **error);
+

Set the 'LTE Report' field in the message.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + + + + + + +

self

a QmiMessageNasConfigSignalInfoInput.

 

value_lte_report_rate

a guint8.

 

value_lte_report_average_period

a guint8.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if value +was successfully set, FALSE otherwise.

+
+

Since: 1.0

+
+
+
+

qmi_message_nas_config_signal_info_input_get_rsrp_threshold ()

+
gboolean
+qmi_message_nas_config_signal_info_input_get_rsrp_threshold
+                               (QmiMessageNasConfigSignalInfoInput *self,
+                                GArray **value_rsrp_threshold,
+                                GError **error);
+

Get the 'RSRP Threshold' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageNasConfigSignalInfoInput.

 

value_rsrp_threshold

a placeholder for the output GArray of gint16 elements, or NULL if not required. Do not free it, it is owned by self +.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.0

+
+
+
+

qmi_message_nas_config_signal_info_input_set_rsrp_threshold ()

+
gboolean
+qmi_message_nas_config_signal_info_input_set_rsrp_threshold
+                               (QmiMessageNasConfigSignalInfoInput *self,
+                                GArray *value_rsrp_threshold,
+                                GError **error);
+

Set the 'RSRP Threshold' field in the message.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageNasConfigSignalInfoInput.

 

value_rsrp_threshold

a GArray of gint16 elements. A new reference to value_rsrp_threshold +will be taken.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if value +was successfully set, FALSE otherwise.

+
+

Since: 1.0

+
+
+
+

qmi_message_nas_config_signal_info_input_get_rsrq_threshold ()

+
gboolean
+qmi_message_nas_config_signal_info_input_get_rsrq_threshold
+                               (QmiMessageNasConfigSignalInfoInput *self,
+                                GArray **value_rsrq_threshold,
+                                GError **error);
+

Get the 'RSRQ Threshold' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageNasConfigSignalInfoInput.

 

value_rsrq_threshold

a placeholder for the output GArray of gint8 elements, or NULL if not required. Do not free it, it is owned by self +.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.0

+
+
+
+

qmi_message_nas_config_signal_info_input_set_rsrq_threshold ()

+
gboolean
+qmi_message_nas_config_signal_info_input_set_rsrq_threshold
+                               (QmiMessageNasConfigSignalInfoInput *self,
+                                GArray *value_rsrq_threshold,
+                                GError **error);
+

Set the 'RSRQ Threshold' field in the message.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageNasConfigSignalInfoInput.

 

value_rsrq_threshold

a GArray of gint8 elements. A new reference to value_rsrq_threshold +will be taken.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if value +was successfully set, FALSE otherwise.

+
+

Since: 1.0

+
+
+
+

qmi_message_nas_config_signal_info_input_get_io_threshold ()

+
gboolean
+qmi_message_nas_config_signal_info_input_get_io_threshold
+                               (QmiMessageNasConfigSignalInfoInput *self,
+                                GArray **value_io_threshold,
+                                GError **error);
+

Get the 'IO Threshold' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageNasConfigSignalInfoInput.

 

value_io_threshold

a placeholder for the output GArray of gint32 elements, or NULL if not required. Do not free it, it is owned by self +.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.0

+
+
+
+

qmi_message_nas_config_signal_info_input_set_io_threshold ()

+
gboolean
+qmi_message_nas_config_signal_info_input_set_io_threshold
+                               (QmiMessageNasConfigSignalInfoInput *self,
+                                GArray *value_io_threshold,
+                                GError **error);
+

Set the 'IO Threshold' field in the message.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageNasConfigSignalInfoInput.

 

value_io_threshold

a GArray of gint32 elements. A new reference to value_io_threshold +will be taken.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if value +was successfully set, FALSE otherwise.

+
+

Since: 1.0

+
+
+
+

qmi_message_nas_config_signal_info_input_get_lte_snr_threshold ()

+
gboolean
+qmi_message_nas_config_signal_info_input_get_lte_snr_threshold
+                               (QmiMessageNasConfigSignalInfoInput *self,
+                                GArray **value_lte_snr_threshold,
+                                GError **error);
+

Get the 'LTE SNR Threshold' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageNasConfigSignalInfoInput.

 

value_lte_snr_threshold

a placeholder for the output GArray of gint16 elements, or NULL if not required. Do not free it, it is owned by self +.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.0

+
+
+
+

qmi_message_nas_config_signal_info_input_set_lte_snr_threshold ()

+
gboolean
+qmi_message_nas_config_signal_info_input_set_lte_snr_threshold
+                               (QmiMessageNasConfigSignalInfoInput *self,
+                                GArray *value_lte_snr_threshold,
+                                GError **error);
+

Set the 'LTE SNR Threshold' field in the message.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageNasConfigSignalInfoInput.

 

value_lte_snr_threshold

a GArray of gint16 elements. A new reference to value_lte_snr_threshold +will be taken.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if value +was successfully set, FALSE otherwise.

+
+

Since: 1.0

+
+
+
+

qmi_message_nas_config_signal_info_input_get_sinr_threshold ()

+
gboolean
+qmi_message_nas_config_signal_info_input_get_sinr_threshold
+                               (QmiMessageNasConfigSignalInfoInput *self,
+                                GArray **value_sinr_threshold,
+                                GError **error);
+

Get the 'SINR Threshold' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageNasConfigSignalInfoInput.

 

value_sinr_threshold

a placeholder for the output GArray of guint8 elements, or NULL if not required. Do not free it, it is owned by self +.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.0

+
+
+
+

qmi_message_nas_config_signal_info_input_set_sinr_threshold ()

+
gboolean
+qmi_message_nas_config_signal_info_input_set_sinr_threshold
+                               (QmiMessageNasConfigSignalInfoInput *self,
+                                GArray *value_sinr_threshold,
+                                GError **error);
+

Set the 'SINR Threshold' field in the message.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageNasConfigSignalInfoInput.

 

value_sinr_threshold

a GArray of guint8 elements. A new reference to value_sinr_threshold +will be taken.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if value +was successfully set, FALSE otherwise.

+
+

Since: 1.0

+
+
+
+

qmi_message_nas_config_signal_info_input_get_ecio_threshold ()

+
gboolean
+qmi_message_nas_config_signal_info_input_get_ecio_threshold
+                               (QmiMessageNasConfigSignalInfoInput *self,
+                                GArray **value_ecio_threshold,
+                                GError **error);
+

Get the 'ECIO Threshold' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageNasConfigSignalInfoInput.

 

value_ecio_threshold

a placeholder for the output GArray of gint16 elements, or NULL if not required. Do not free it, it is owned by self +.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.0

+
+
+
+

qmi_message_nas_config_signal_info_input_set_ecio_threshold ()

+
gboolean
+qmi_message_nas_config_signal_info_input_set_ecio_threshold
+                               (QmiMessageNasConfigSignalInfoInput *self,
+                                GArray *value_ecio_threshold,
+                                GError **error);
+

Set the 'ECIO Threshold' field in the message.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageNasConfigSignalInfoInput.

 

value_ecio_threshold

a GArray of gint16 elements. A new reference to value_ecio_threshold +will be taken.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if value +was successfully set, FALSE otherwise.

+
+

Since: 1.0

+
+
+
+

qmi_message_nas_config_signal_info_input_get_rssi_threshold ()

+
gboolean
+qmi_message_nas_config_signal_info_input_get_rssi_threshold
+                               (QmiMessageNasConfigSignalInfoInput *self,
+                                GArray **value_rssi_threshold,
+                                GError **error);
+

Get the 'RSSI Threshold' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageNasConfigSignalInfoInput.

 

value_rssi_threshold

a placeholder for the output GArray of gint8 elements, or NULL if not required. Do not free it, it is owned by self +.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.0

+
+
+
+

qmi_message_nas_config_signal_info_input_set_rssi_threshold ()

+
gboolean
+qmi_message_nas_config_signal_info_input_set_rssi_threshold
+                               (QmiMessageNasConfigSignalInfoInput *self,
+                                GArray *value_rssi_threshold,
+                                GError **error);
+

Set the 'RSSI Threshold' field in the message.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageNasConfigSignalInfoInput.

 

value_rssi_threshold

a GArray of gint8 elements. A new reference to value_rssi_threshold +will be taken.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if value +was successfully set, FALSE otherwise.

+
+

Since: 1.0

+
+
+
+

qmi_message_nas_config_signal_info_output_ref ()

+
QmiMessageNasConfigSignalInfoOutput *
+qmi_message_nas_config_signal_info_output_ref
+                               (QmiMessageNasConfigSignalInfoOutput *self);
+

Atomically increments the reference count of self + by one.

+
+

Parameters

+
+++++ + + + + + +

self

a QmiMessageNasConfigSignalInfoOutput.

 
+
+
+

Returns

+

the new reference to self +.

+
+

Since: 1.0

+
+
+
+

qmi_message_nas_config_signal_info_output_unref ()

+
void
+qmi_message_nas_config_signal_info_output_unref
+                               (QmiMessageNasConfigSignalInfoOutput *self);
+

Atomically decrements the reference count of self + by one. +If the reference count drops to 0, self + is completely disposed.

+
+

Parameters

+
+++++ + + + + + +

self

a QmiMessageNasConfigSignalInfoOutput.

 
+
+

Since: 1.0

+
+
+
+

qmi_message_nas_config_signal_info_output_get_result ()

+
gboolean
+qmi_message_nas_config_signal_info_output_get_result
+                               (QmiMessageNasConfigSignalInfoOutput *self,
+                                GError **error);
+

Get the result of the QMI operation.

+
+

Parameters

+
+++++ + + + + + + + + + + + + +

self

a QmiMessageNasConfigSignalInfoOutput.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the QMI operation succeeded, FALSE if error +is set.

+
+

Since: 1.0

+
+
+
+

qmi_client_nas_config_signal_info ()

+
void
+qmi_client_nas_config_signal_info (QmiClientNas *self,
+                                   QmiMessageNasConfigSignalInfoInput *input,
+                                   guint timeout,
+                                   GCancellable *cancellable,
+                                   GAsyncReadyCallback callback,
+                                   gpointer user_data);
+

Asynchronously sends a Config Signal Info request to the device.

+

When the operation is finished, callback + will be invoked in the thread-default main loop of the thread you are calling this method from.

+

You can then call qmi_client_nas_config_signal_info_finish() to get the result of the operation.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

self

a QmiClientNas.

 

input

a QmiMessageNasConfigSignalInfoInput.

 

timeout

maximum time to wait for the method to complete, in seconds.

 

cancellable

a GCancellable or NULL.

 

callback

a GAsyncReadyCallback to call when the request is satisfied.

 

user_data

user data to pass to callback +.

 
+
+

Since: 1.0

+
+
+
+

qmi_client_nas_config_signal_info_finish ()

+
QmiMessageNasConfigSignalInfoOutput *
+qmi_client_nas_config_signal_info_finish
+                               (QmiClientNas *self,
+                                GAsyncResult *res,
+                                GError **error);
+

Finishes an async operation started with qmi_client_nas_config_signal_info().

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiClientNas.

 

res

the GAsyncResult obtained from the GAsyncReadyCallback passed to qmi_client_nas_config_signal_info().

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

a QmiMessageNasConfigSignalInfoOutput, or NULL if error +is set. The returned value should be freed with qmi_message_nas_config_signal_info_output_unref().

+
+

Since: 1.0

+
+
+
+

Types and Values

+
+

QmiMessageNasConfigSignalInfoInput

+
typedef struct _QmiMessageNasConfigSignalInfoInput QmiMessageNasConfigSignalInfoInput;
+

The QmiMessageNasConfigSignalInfoInput structure contains private data and should only be accessed +using the provided API.

+

Since: 1.0

+
+
+
+

QmiMessageNasConfigSignalInfoOutput

+
typedef struct _QmiMessageNasConfigSignalInfoOutput QmiMessageNasConfigSignalInfoOutput;
+

The QmiMessageNasConfigSignalInfoOutput structure contains private data and should only be accessed +using the provided API.

+

Since: 1.0

+
+
+
+ + + \ No newline at end of file diff -Nru libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-NAS-enumerations-and-flags.html libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-NAS-enumerations-and-flags.html --- libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-NAS-enumerations-and-flags.html 2017-03-22 12:28:28.000000000 +0100 +++ libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-NAS-enumerations-and-flags.html 2019-01-08 15:19:02.000000000 +0100 @@ -3,12 +3,12 @@ NAS enumerations and flags: libqmi-glib Reference Manual - + - - + + @@ -21,7 +21,7 @@ Home Up Prev -Next +Next
@@ -185,6 +185,13 @@ +const gchar * + + +qmi_nas_ps_attach_action_get_string () + + + gchar * @@ -457,6 +464,10 @@ enum +QmiNasPsAttachAction + + +enum QmiNasRatModePreference @@ -560,7 +571,7 @@

Object Hierarchy

-
    GEnum
+
    GEnum
     ├── QmiNasActiveBand
     ├── QmiNasAttachState
     ├── QmiNasCallBarringStatus
@@ -586,6 +597,7 @@
     ├── QmiNasPlmnNameCountryInitials
     ├── QmiNasPlmnNameSpareBits
     ├── QmiNasPreferenceDuration
+    ├── QmiNasPsAttachAction
     ├── QmiNasRadioInterface
     ├── QmiNasRegistrationState
     ├── QmiNasRoamingIndicatorStatus
@@ -597,7 +609,7 @@
     ├── QmiNasSimRejectState
     ├── QmiNasWcdmaHsService
     ╰── QmiNasWcdmaRrcState
-    GFlags
+    GFlags
     ├── QmiNasNetworkNameDisplayCondition
     ├── QmiNasNetworkScanType
     ├── QmiNasNetworkStatus
@@ -637,7 +649,7 @@
 

Returns

-

a string with the nickname, or NULL if not found. Do not free the returned value.

+

a string with the nickname, or NULL if not found. Do not free the returned value.

[transfer none]

Since: 1.0

@@ -666,7 +678,7 @@

Returns

-

a string with the nickname, or NULL if not found. Do not free the returned value.

+

a string with the nickname, or NULL if not found. Do not free the returned value.

[transfer none]

Since: 1.0

@@ -696,7 +708,7 @@

Returns

-

a string with the nickname, or NULL if not found. Do not free the returned value.

+

a string with the nickname, or NULL if not found. Do not free the returned value.

[transfer none]

Since: 1.0

@@ -725,7 +737,7 @@

Returns

-

a string with the nickname, or NULL if not found. Do not free the returned value.

+

a string with the nickname, or NULL if not found. Do not free the returned value.

[transfer none]

Since: 1.0

@@ -756,7 +768,7 @@

Returns

-

a string with the list of nicknames, or NULL if none given. The returned value should be freed with g_free().

+

a string with the list of nicknames, or NULL if none given. The returned value should be freed with g_free().

[transfer full]

Since: 1.0

@@ -787,7 +799,7 @@

Returns

-

a string with the list of nicknames, or NULL if none given. The returned value should be freed with g_free().

+

a string with the list of nicknames, or NULL if none given. The returned value should be freed with g_free().

[transfer full]

Since: 1.0

@@ -818,7 +830,7 @@

Returns

-

a string with the list of nicknames, or NULL if none given. The returned value should be freed with g_free().

+

a string with the list of nicknames, or NULL if none given. The returned value should be freed with g_free().

[transfer full]

Since: 1.0

@@ -848,7 +860,7 @@

Returns

-

a string with the nickname, or NULL if not found. Do not free the returned value.

+

a string with the nickname, or NULL if not found. Do not free the returned value.

[transfer none]

Since: 1.0

@@ -877,7 +889,7 @@

Returns

-

a string with the nickname, or NULL if not found. Do not free the returned value.

+

a string with the nickname, or NULL if not found. Do not free the returned value.

[transfer none]

Since: 1.0

@@ -906,7 +918,7 @@

Returns

-

a string with the nickname, or NULL if not found. Do not free the returned value.

+

a string with the nickname, or NULL if not found. Do not free the returned value.

[transfer none]

Since: 1.0

@@ -935,7 +947,7 @@

Returns

-

a string with the nickname, or NULL if not found. Do not free the returned value.

+

a string with the nickname, or NULL if not found. Do not free the returned value.

[transfer none]

Since: 1.0

@@ -965,7 +977,7 @@

Returns

-

a string with the nickname, or NULL if not found. Do not free the returned value.

+

a string with the nickname, or NULL if not found. Do not free the returned value.

[transfer none]

Since: 1.0

@@ -994,7 +1006,7 @@

Returns

-

a string with the nickname, or NULL if not found. Do not free the returned value.

+

a string with the nickname, or NULL if not found. Do not free the returned value.

[transfer none]

Since: 1.0

@@ -1023,7 +1035,7 @@

Returns

-

a string with the nickname, or NULL if not found. Do not free the returned value.

+

a string with the nickname, or NULL if not found. Do not free the returned value.

[transfer none]

Since: 1.0

@@ -1052,7 +1064,7 @@

Returns

-

a string with the nickname, or NULL if not found. Do not free the returned value.

+

a string with the nickname, or NULL if not found. Do not free the returned value.

[transfer none]

Since: 1.0

@@ -1082,7 +1094,7 @@

Returns

-

a string with the nickname, or NULL if not found. Do not free the returned value.

+

a string with the nickname, or NULL if not found. Do not free the returned value.

[transfer none]

Since: 1.0

@@ -1112,7 +1124,7 @@

Returns

-

a string with the nickname, or NULL if not found. Do not free the returned value.

+

a string with the nickname, or NULL if not found. Do not free the returned value.

[transfer none]

Since: 1.0

@@ -1142,7 +1154,7 @@

Returns

-

a string with the nickname, or NULL if not found. Do not free the returned value.

+

a string with the nickname, or NULL if not found. Do not free the returned value.

[transfer none]

Since: 1.0

@@ -1173,7 +1185,7 @@

Returns

-

a string with the list of nicknames, or NULL if none given. The returned value should be freed with g_free().

+

a string with the list of nicknames, or NULL if none given. The returned value should be freed with g_free().

[transfer full]

Since: 1.0

@@ -1203,13 +1215,42 @@

Returns

-

a string with the nickname, or NULL if not found. Do not free the returned value.

+

a string with the nickname, or NULL if not found. Do not free the returned value.

[transfer none]

Since: 1.0


+

qmi_nas_ps_attach_action_get_string ()

+
const gchar *
+qmi_nas_ps_attach_action_get_string (QmiNasPsAttachAction val);
+

Gets the nickname string for the QmiNasPsAttachAction specified at val +.

+
+

Parameters

+
+++++ + + + + + +

val

a QmiNasPsAttachAction.

 
+
+
+

Returns

+

a string with the nickname, or NULL if not found. Do not free the returned value.

+

[transfer none]

+
+

Since: 1.20

+
+
+

qmi_nas_rat_mode_preference_build_string_from_mask ()

gchar *
 qmi_nas_rat_mode_preference_build_string_from_mask
@@ -1234,7 +1275,7 @@
 

Returns

-

a string with the list of nicknames, or NULL if none given. The returned value should be freed with g_free().

+

a string with the list of nicknames, or NULL if none given. The returned value should be freed with g_free().

[transfer full]

Since: 1.0

@@ -1264,7 +1305,7 @@

Returns

-

a string with the nickname, or NULL if not found. Do not free the returned value.

+

a string with the nickname, or NULL if not found. Do not free the returned value.

[transfer none]

Since: 1.0

@@ -1293,7 +1334,7 @@

Returns

-

a string with the nickname, or NULL if not found. Do not free the returned value.

+

a string with the nickname, or NULL if not found. Do not free the returned value.

[transfer none]

Since: 1.0

@@ -1323,7 +1364,7 @@

Returns

-

a string with the nickname, or NULL if not found. Do not free the returned value.

+

a string with the nickname, or NULL if not found. Do not free the returned value.

[transfer none]

Since: 1.0

@@ -1352,7 +1393,7 @@

Returns

-

a string with the nickname, or NULL if not found. Do not free the returned value.

+

a string with the nickname, or NULL if not found. Do not free the returned value.

[transfer none]

Since: 1.0

@@ -1382,7 +1423,7 @@

Returns

-

a string with the nickname, or NULL if not found. Do not free the returned value.

+

a string with the nickname, or NULL if not found. Do not free the returned value.

[transfer none]

Since: 1.0

@@ -1412,7 +1453,7 @@

Returns

-

a string with the nickname, or NULL if not found. Do not free the returned value.

+

a string with the nickname, or NULL if not found. Do not free the returned value.

[transfer none]

Since: 1.0

@@ -1443,7 +1484,7 @@

Returns

-

a string with the list of nicknames, or NULL if none given. The returned value should be freed with g_free().

+

a string with the list of nicknames, or NULL if none given. The returned value should be freed with g_free().

[transfer full]

Since: 1.0

@@ -1474,7 +1515,7 @@

Returns

-

a string with the list of nicknames, or NULL if none given. The returned value should be freed with g_free().

+

a string with the list of nicknames, or NULL if none given. The returned value should be freed with g_free().

[transfer full]

Since: 1.0

@@ -1505,7 +1546,7 @@

Returns

-

a string with the list of nicknames, or NULL if none given. The returned value should be freed with g_free().

+

a string with the list of nicknames, or NULL if none given. The returned value should be freed with g_free().

[transfer full]

Since: 1.0

@@ -1534,7 +1575,7 @@

Returns

-

a string with the nickname, or NULL if not found. Do not free the returned value.

+

a string with the nickname, or NULL if not found. Do not free the returned value.

[transfer none]

Since: 1.0

@@ -1564,7 +1605,7 @@

Returns

-

a string with the nickname, or NULL if not found. Do not free the returned value.

+

a string with the nickname, or NULL if not found. Do not free the returned value.

[transfer none]

Since: 1.0

@@ -1593,7 +1634,7 @@

Returns

-

a string with the nickname, or NULL if not found. Do not free the returned value.

+

a string with the nickname, or NULL if not found. Do not free the returned value.

[transfer none]

Since: 1.0

@@ -1623,7 +1664,7 @@

Returns

-

a string with the nickname, or NULL if not found. Do not free the returned value.

+

a string with the nickname, or NULL if not found. Do not free the returned value.

[transfer none]

Since: 1.0

@@ -1652,7 +1693,7 @@

Returns

-

a string with the nickname, or NULL if not found. Do not free the returned value.

+

a string with the nickname, or NULL if not found. Do not free the returned value.

[transfer none]

Since: 1.0

@@ -1681,7 +1722,7 @@

Returns

-

a string with the nickname, or NULL if not found. Do not free the returned value.

+

a string with the nickname, or NULL if not found. Do not free the returned value.

[transfer none]

Since: 1.0

@@ -1710,7 +1751,7 @@

Returns

-

a string with the nickname, or NULL if not found. Do not free the returned value.

+

a string with the nickname, or NULL if not found. Do not free the returned value.

[transfer none]

Since: 1.4

@@ -1740,7 +1781,7 @@

Returns

-

a string with the nickname, or NULL if not found. Do not free the returned value.

+

a string with the nickname, or NULL if not found. Do not free the returned value.

[transfer none]

Since: 1.4

@@ -1769,7 +1810,7 @@

Returns

-

a string with the nickname, or NULL if not found. Do not free the returned value.

+

a string with the nickname, or NULL if not found. Do not free the returned value.

[transfer none]

Since: 1.10

@@ -1798,7 +1839,7 @@

Returns

-

a string with the nickname, or NULL if not found. Do not free the returned value.

+

a string with the nickname, or NULL if not found. Do not free the returned value.

[transfer none]

Since: 1.16

@@ -1827,7 +1868,7 @@

Returns

-

a string with the nickname, or NULL if not found. Do not free the returned value.

+

a string with the nickname, or NULL if not found. Do not free the returned value.

[transfer none]

Since: 1.16

@@ -1858,7 +1899,7 @@

Returns

-

a string with the list of nicknames, or NULL if none given. The returned value should be freed with g_free().

+

a string with the list of nicknames, or NULL if none given. The returned value should be freed with g_free().

[transfer full]

@@ -1887,7 +1928,7 @@

Returns

-

a string with the nickname, or NULL if not found. Do not free the returned value.

+

a string with the nickname, or NULL if not found. Do not free the returned value.

[transfer none]

@@ -1916,7 +1957,7 @@

Returns

-

a string with the nickname, or NULL if not found. Do not free the returned value.

+

a string with the nickname, or NULL if not found. Do not free the returned value.

[transfer none]

@@ -1945,7 +1986,7 @@

Returns

-

a string with the nickname, or NULL if not found. Do not free the returned value.

+

a string with the nickname, or NULL if not found. Do not free the returned value.

[transfer none]

@@ -2459,6 +2500,13 @@   +

QMI_NAS_ACTIVE_BAND_EUTRAN_23

+ +

EUTRAN band 23.

+ +  + +

QMI_NAS_ACTIVE_BAND_EUTRAN_24

EUTRAN band 24.

@@ -2473,6 +2521,41 @@   +

QMI_NAS_ACTIVE_BAND_EUTRAN_26

+ +

EUTRAN band 26.

+ +  + + +

QMI_NAS_ACTIVE_BAND_EUTRAN_28

+ +

EUTRAN band 28.

+ +  + + +

QMI_NAS_ACTIVE_BAND_EUTRAN_29

+ +

EUTRAN band 29.

+ +  + + +

QMI_NAS_ACTIVE_BAND_EUTRAN_30

+ +

EUTRAN band 30.

+ +  + + +

QMI_NAS_ACTIVE_BAND_EUTRAN_32

+ +

EUTRAN band 32.

+ +  + +

QMI_NAS_ACTIVE_BAND_EUTRAN_33

EUTRAN band 33.

@@ -2550,6 +2633,48 @@   +

QMI_NAS_ACTIVE_BAND_EUTRAN_46

+ +

EUTRAN band 46.

+ +  + + +

QMI_NAS_ACTIVE_BAND_EUTRAN_66

+ +

EUTRAN band 66.

+ +  + + +

QMI_NAS_ACTIVE_BAND_EUTRAN_125

+ +

EUTRAN band 125.

+ +  + + +

QMI_NAS_ACTIVE_BAND_EUTRAN_126

+ +

EUTRAN band 126.

+ +  + + +

QMI_NAS_ACTIVE_BAND_EUTRAN_127

+ +

EUTRAN band 127.

+ +  + + +

QMI_NAS_ACTIVE_BAND_EUTRAN_250

+ +

EUTRAN band 250.

+ +  + +

QMI_NAS_ACTIVE_BAND_TDSCDMA_A

TD-SCDMA Band A.

@@ -3608,6 +3733,38 @@
+

enum QmiNasPsAttachAction

+

Packet Switched domain attach/detach action.

+
+

Members

+
+++++ + + + + + + + + + + + + +

QMI_NAS_PS_ATTACH_ACTION_ATTACH

+

Attach the PS domain.

+
 

QMI_NAS_PS_ATTACH_ACTION_DETACH

+

Detach the PS domain.

+
 
+
+

Since: 1.20

+
+
+

enum QmiNasRatModePreference

Flags specifying radio access technology mode preference.

@@ -4186,6 +4343,20 @@   + +

QMI_NAS_BAND_PREFERENCE_WCDMA_850_JAPAN

+ +

WCDMA 850 (Japan). Since: 1.22.

+ +  + + +

QMI_NAS_BAND_PREFERENCE_WCDMA_1500

+ +

WCDMA 1500. Since: 1.22.

+ +  +
@@ -4352,6 +4523,55 @@   +

QMI_NAS_LTE_BAND_PREFERENCE_EUTRAN_26

+ +

LTE EUTRAN Band 26.

+ +  + + +

QMI_NAS_LTE_BAND_PREFERENCE_EUTRAN_27

+ +

LTE EUTRAN Band 27.

+ +  + + +

QMI_NAS_LTE_BAND_PREFERENCE_EUTRAN_28

+ +

LTE EUTRAN Band 28.

+ +  + + +

QMI_NAS_LTE_BAND_PREFERENCE_EUTRAN_29

+ +

LTE EUTRAN Band 29.

+ +  + + +

QMI_NAS_LTE_BAND_PREFERENCE_EUTRAN_30

+ +

LTE EUTRAN Band 30.

+ +  + + +

QMI_NAS_LTE_BAND_PREFERENCE_EUTRAN_31

+ +

LTE EUTRAN Band 31.

+ +  + + +

QMI_NAS_LTE_BAND_PREFERENCE_EUTRAN_32

+ +

LTE EUTRAN Band 32.

+ +  + +

QMI_NAS_LTE_BAND_PREFERENCE_EUTRAN_33

LTE EUTRAN Band 33.

@@ -5308,6 +5528,6 @@ +
Generated by GTK-Doc V1.29 \ No newline at end of file diff -Nru libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-NAS-Event-Report.html libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-NAS-Event-Report.html --- libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-NAS-Event-Report.html 2017-03-22 12:28:29.000000000 +0100 +++ libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-NAS-Event-Report.html 1970-01-01 01:00:00.000000000 +0100 @@ -1,800 +0,0 @@ - - - - -NAS Event Report: libqmi-glib Reference Manual - - - - - - - - - - - - - - - - -
-
-
- - -
-

NAS Event Report

-

NAS Event Report

-
- - -
-

Object Hierarchy

-
    GBoxed
-    ╰── QmiIndicationNasEventReportOutput
-
-
-
-

Description

-
-
-

Functions

-
-

qmi_indication_nas_event_report_output_ref ()

-
QmiIndicationNasEventReportOutput *
-qmi_indication_nas_event_report_output_ref
-                               (QmiIndicationNasEventReportOutput *self);
-

Atomically increments the reference count of self - by one.

-
-

Parameters

-
----- - - - - - -

self

a QmiIndicationNasEventReportOutput.

 
-
-
-

Returns

-

the new reference to self -.

-
-

Since: 1.0

-
-
-
-

qmi_indication_nas_event_report_output_unref ()

-
void
-qmi_indication_nas_event_report_output_unref
-                               (QmiIndicationNasEventReportOutput *self);
-

Atomically decrements the reference count of self - by one. -If the reference count drops to 0, self - is completely disposed.

-
-

Parameters

-
----- - - - - - -

self

a QmiIndicationNasEventReportOutput.

 
-
-

Since: 1.0

-
-
-
-

qmi_indication_nas_event_report_output_get_lte_rsrp ()

-
gboolean
-qmi_indication_nas_event_report_output_get_lte_rsrp
-                               (QmiIndicationNasEventReportOutput *self,
-                                gint16 *value_lte_rsrp,
-                                GError **error);
-

Get the 'LTE RSRP' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiIndicationNasEventReportOutput.

 

value_lte_rsrp

a placeholder for the output gint16, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.0

-
-
-
-

qmi_indication_nas_event_report_output_get_lte_snr ()

-
gboolean
-qmi_indication_nas_event_report_output_get_lte_snr
-                               (QmiIndicationNasEventReportOutput *self,
-                                gint16 *value_lte_snr,
-                                GError **error);
-

Get the 'LTE SNR' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiIndicationNasEventReportOutput.

 

value_lte_snr

a placeholder for the output gint16, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.0

-
-
-
-

qmi_indication_nas_event_report_output_get_rsrq ()

-
gboolean
-qmi_indication_nas_event_report_output_get_rsrq
-                               (QmiIndicationNasEventReportOutput *self,
-                                gint8 *value_rsrq_rsrq,
-                                QmiNasRadioInterface *value_rsrq_radio_interface,
-                                GError **error);
-

Get the 'RSRQ' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - - - - - - -

self

a QmiIndicationNasEventReportOutput.

 

value_rsrq_rsrq

a placeholder for the output gint8, or NULL if not required.

 

value_rsrq_radio_interface

a placeholder for the output QmiNasRadioInterface, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.0

-
-
-
-

qmi_indication_nas_event_report_output_get_error_rate ()

-
gboolean
-qmi_indication_nas_event_report_output_get_error_rate
-                               (QmiIndicationNasEventReportOutput *self,
-                                guint16 *value_error_rate_rate,
-                                QmiNasRadioInterface *value_error_rate_radio_interface,
-                                GError **error);
-

Get the 'Error Rate' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - - - - - - -

self

a QmiIndicationNasEventReportOutput.

 

value_error_rate_rate

a placeholder for the output guint16, or NULL if not required.

 

value_error_rate_radio_interface

a placeholder for the output QmiNasRadioInterface, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.0

-
-
-
-

qmi_indication_nas_event_report_output_get_sinr ()

-
gboolean
-qmi_indication_nas_event_report_output_get_sinr
-                               (QmiIndicationNasEventReportOutput *self,
-                                QmiNasEvdoSinrLevel *value_sinr,
-                                GError **error);
-

Get the 'SINR' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiIndicationNasEventReportOutput.

 

value_sinr

a placeholder for the output QmiNasEvdoSinrLevel, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.0

-
-
-
-

qmi_indication_nas_event_report_output_get_io ()

-
gboolean
-qmi_indication_nas_event_report_output_get_io
-                               (QmiIndicationNasEventReportOutput *self,
-                                gint32 *value_io,
-                                GError **error);
-

Get the 'IO' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiIndicationNasEventReportOutput.

 

value_io

a placeholder for the output gint32, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.0

-
-
-
-

qmi_indication_nas_event_report_output_get_ecio ()

-
gboolean
-qmi_indication_nas_event_report_output_get_ecio
-                               (QmiIndicationNasEventReportOutput *self,
-                                guint8 *value_ecio_ecio,
-                                QmiNasRadioInterface *value_ecio_radio_interface,
-                                GError **error);
-

Get the 'ECIO' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - - - - - - -

self

a QmiIndicationNasEventReportOutput.

 

value_ecio_ecio

a placeholder for the output guint8, or NULL if not required.

 

value_ecio_radio_interface

a placeholder for the output QmiNasRadioInterface, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.14

-
-
-
-

qmi_indication_nas_event_report_output_get_rssi ()

-
gboolean
-qmi_indication_nas_event_report_output_get_rssi
-                               (QmiIndicationNasEventReportOutput *self,
-                                guint8 *value_rssi_rssi,
-                                QmiNasRadioInterface *value_rssi_radio_interface,
-                                GError **error);
-

Get the 'RSSI' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - - - - - - -

self

a QmiIndicationNasEventReportOutput.

 

value_rssi_rssi

a placeholder for the output guint8, or NULL if not required.

 

value_rssi_radio_interface

a placeholder for the output QmiNasRadioInterface, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.0

-
-
-
-

qmi_indication_nas_event_report_output_get_registration_reject_reason ()

-
gboolean
-qmi_indication_nas_event_report_output_get_registration_reject_reason
-                               (QmiIndicationNasEventReportOutput *self,
-                                QmiNasNetworkServiceDomain *value_registration_reject_reason_service_domain,
-                                guint16 *value_registration_reject_reason_reject_cause,
-                                GError **error);
-

Get the 'Registration Reject Reason' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - - - - - - -

self

a QmiIndicationNasEventReportOutput.

 

value_registration_reject_reason_service_domain

a placeholder for the output QmiNasNetworkServiceDomain, or NULL if not required.

 

value_registration_reject_reason_reject_cause

a placeholder for the output guint16, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.0

-
-
-
-

qmi_indication_nas_event_report_output_get_rf_band_information ()

-
gboolean
-qmi_indication_nas_event_report_output_get_rf_band_information
-                               (QmiIndicationNasEventReportOutput *self,
-                                GArray **value_rf_band_information,
-                                GError **error);
-

Get the 'RF Band Information' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiIndicationNasEventReportOutput.

 

value_rf_band_information

a placeholder for the output GArray of QmiIndicationNasEventReportOutputRfBandInformationElement elements, or NULL if not required. Do not free it, it is owned by self -.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.0

-
-
-
-

qmi_indication_nas_event_report_output_get_signal_strength ()

-
gboolean
-qmi_indication_nas_event_report_output_get_signal_strength
-                               (QmiIndicationNasEventReportOutput *self,
-                                gint8 *value_signal_strength_strength,
-                                QmiNasRadioInterface *value_signal_strength_radio_interface,
-                                GError **error);
-

Get the 'Signal Strength' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - - - - - - -

self

a QmiIndicationNasEventReportOutput.

 

value_signal_strength_strength

a placeholder for the output gint8, or NULL if not required.

 

value_signal_strength_radio_interface

a placeholder for the output QmiNasRadioInterface, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.0

-
-
-
-

Types and Values

-
-

QmiIndicationNasEventReportOutput

-
typedef struct _QmiIndicationNasEventReportOutput QmiIndicationNasEventReportOutput;
-

The QmiIndicationNasEventReportOutput structure contains private data and should only be accessed -using the provided API.

-

Since: 1.0

-
-
-
-

QmiIndicationNasEventReportOutputRfBandInformationElement

-
typedef struct {
-    QmiNasRadioInterface radio_interface;
-    QmiNasActiveBand active_band_class;
-    guint16 active_channel;
-} QmiIndicationNasEventReportOutputRfBandInformationElement;
-
-

A QmiIndicationNasEventReportOutputRfBandInformationElement struct.

-
-

Members

-
----- - - - - - - - - - - - - - - - - - -

QmiNasRadioInterface radio_interface;

a QmiNasRadioInterface.

 

QmiNasActiveBand active_band_class;

a QmiNasActiveBand.

 

guint16 active_channel;

a guint16.

 
-
-

Since: 1.0

-
-
-
- - - \ No newline at end of file diff -Nru libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-NAS-Event-Report-indication.html libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-NAS-Event-Report-indication.html --- libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-NAS-Event-Report-indication.html 1970-01-01 01:00:00.000000000 +0100 +++ libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-NAS-Event-Report-indication.html 2019-01-08 15:19:01.000000000 +0100 @@ -0,0 +1,800 @@ + + + + +NAS Event Report indication: libqmi-glib Reference Manual + + + + + + + + + + + + + + + + +
+
+
+ + +
+

NAS Event Report indication

+

NAS Event Report indication

+
+ + +
+

Object Hierarchy

+
    GBoxed
+    ╰── QmiIndicationNasEventReportOutput
+
+
+
+

Description

+
+
+

Functions

+
+

qmi_indication_nas_event_report_output_ref ()

+
QmiIndicationNasEventReportOutput *
+qmi_indication_nas_event_report_output_ref
+                               (QmiIndicationNasEventReportOutput *self);
+

Atomically increments the reference count of self + by one.

+
+

Parameters

+
+++++ + + + + + +

self

a QmiIndicationNasEventReportOutput.

 
+
+
+

Returns

+

the new reference to self +.

+
+

Since: 1.0

+
+
+
+

qmi_indication_nas_event_report_output_unref ()

+
void
+qmi_indication_nas_event_report_output_unref
+                               (QmiIndicationNasEventReportOutput *self);
+

Atomically decrements the reference count of self + by one. +If the reference count drops to 0, self + is completely disposed.

+
+

Parameters

+
+++++ + + + + + +

self

a QmiIndicationNasEventReportOutput.

 
+
+

Since: 1.0

+
+
+
+

qmi_indication_nas_event_report_output_get_lte_rsrp ()

+
gboolean
+qmi_indication_nas_event_report_output_get_lte_rsrp
+                               (QmiIndicationNasEventReportOutput *self,
+                                gint16 *value_lte_rsrp,
+                                GError **error);
+

Get the 'LTE RSRP' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiIndicationNasEventReportOutput.

 

value_lte_rsrp

a placeholder for the output gint16, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.0

+
+
+
+

qmi_indication_nas_event_report_output_get_lte_snr ()

+
gboolean
+qmi_indication_nas_event_report_output_get_lte_snr
+                               (QmiIndicationNasEventReportOutput *self,
+                                gint16 *value_lte_snr,
+                                GError **error);
+

Get the 'LTE SNR' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiIndicationNasEventReportOutput.

 

value_lte_snr

a placeholder for the output gint16, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.0

+
+
+
+

qmi_indication_nas_event_report_output_get_rsrq ()

+
gboolean
+qmi_indication_nas_event_report_output_get_rsrq
+                               (QmiIndicationNasEventReportOutput *self,
+                                gint8 *value_rsrq_rsrq,
+                                QmiNasRadioInterface *value_rsrq_radio_interface,
+                                GError **error);
+

Get the 'RSRQ' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + + + + + + +

self

a QmiIndicationNasEventReportOutput.

 

value_rsrq_rsrq

a placeholder for the output gint8, or NULL if not required.

 

value_rsrq_radio_interface

a placeholder for the output QmiNasRadioInterface, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.0

+
+
+
+

qmi_indication_nas_event_report_output_get_error_rate ()

+
gboolean
+qmi_indication_nas_event_report_output_get_error_rate
+                               (QmiIndicationNasEventReportOutput *self,
+                                guint16 *value_error_rate_rate,
+                                QmiNasRadioInterface *value_error_rate_radio_interface,
+                                GError **error);
+

Get the 'Error Rate' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + + + + + + +

self

a QmiIndicationNasEventReportOutput.

 

value_error_rate_rate

a placeholder for the output guint16, or NULL if not required.

 

value_error_rate_radio_interface

a placeholder for the output QmiNasRadioInterface, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.0

+
+
+
+

qmi_indication_nas_event_report_output_get_sinr ()

+
gboolean
+qmi_indication_nas_event_report_output_get_sinr
+                               (QmiIndicationNasEventReportOutput *self,
+                                QmiNasEvdoSinrLevel *value_sinr,
+                                GError **error);
+

Get the 'SINR' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiIndicationNasEventReportOutput.

 

value_sinr

a placeholder for the output QmiNasEvdoSinrLevel, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.0

+
+
+
+

qmi_indication_nas_event_report_output_get_io ()

+
gboolean
+qmi_indication_nas_event_report_output_get_io
+                               (QmiIndicationNasEventReportOutput *self,
+                                gint32 *value_io,
+                                GError **error);
+

Get the 'IO' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiIndicationNasEventReportOutput.

 

value_io

a placeholder for the output gint32, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.0

+
+
+
+

qmi_indication_nas_event_report_output_get_ecio ()

+
gboolean
+qmi_indication_nas_event_report_output_get_ecio
+                               (QmiIndicationNasEventReportOutput *self,
+                                guint8 *value_ecio_ecio,
+                                QmiNasRadioInterface *value_ecio_radio_interface,
+                                GError **error);
+

Get the 'ECIO' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + + + + + + +

self

a QmiIndicationNasEventReportOutput.

 

value_ecio_ecio

a placeholder for the output guint8, or NULL if not required.

 

value_ecio_radio_interface

a placeholder for the output QmiNasRadioInterface, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.14

+
+
+
+

qmi_indication_nas_event_report_output_get_rssi ()

+
gboolean
+qmi_indication_nas_event_report_output_get_rssi
+                               (QmiIndicationNasEventReportOutput *self,
+                                guint8 *value_rssi_rssi,
+                                QmiNasRadioInterface *value_rssi_radio_interface,
+                                GError **error);
+

Get the 'RSSI' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + + + + + + +

self

a QmiIndicationNasEventReportOutput.

 

value_rssi_rssi

a placeholder for the output guint8, or NULL if not required.

 

value_rssi_radio_interface

a placeholder for the output QmiNasRadioInterface, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.0

+
+
+
+

qmi_indication_nas_event_report_output_get_registration_reject_reason ()

+
gboolean
+qmi_indication_nas_event_report_output_get_registration_reject_reason
+                               (QmiIndicationNasEventReportOutput *self,
+                                QmiNasNetworkServiceDomain *value_registration_reject_reason_service_domain,
+                                guint16 *value_registration_reject_reason_reject_cause,
+                                GError **error);
+

Get the 'Registration Reject Reason' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + + + + + + +

self

a QmiIndicationNasEventReportOutput.

 

value_registration_reject_reason_service_domain

a placeholder for the output QmiNasNetworkServiceDomain, or NULL if not required.

 

value_registration_reject_reason_reject_cause

a placeholder for the output guint16, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.0

+
+
+
+

qmi_indication_nas_event_report_output_get_rf_band_information ()

+
gboolean
+qmi_indication_nas_event_report_output_get_rf_band_information
+                               (QmiIndicationNasEventReportOutput *self,
+                                GArray **value_rf_band_information,
+                                GError **error);
+

Get the 'RF Band Information' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiIndicationNasEventReportOutput.

 

value_rf_band_information

a placeholder for the output GArray of QmiIndicationNasEventReportOutputRfBandInformationElement elements, or NULL if not required. Do not free it, it is owned by self +.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.0

+
+
+
+

qmi_indication_nas_event_report_output_get_signal_strength ()

+
gboolean
+qmi_indication_nas_event_report_output_get_signal_strength
+                               (QmiIndicationNasEventReportOutput *self,
+                                gint8 *value_signal_strength_strength,
+                                QmiNasRadioInterface *value_signal_strength_radio_interface,
+                                GError **error);
+

Get the 'Signal Strength' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + + + + + + +

self

a QmiIndicationNasEventReportOutput.

 

value_signal_strength_strength

a placeholder for the output gint8, or NULL if not required.

 

value_signal_strength_radio_interface

a placeholder for the output QmiNasRadioInterface, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.0

+
+
+
+

Types and Values

+
+

QmiIndicationNasEventReportOutput

+
typedef struct _QmiIndicationNasEventReportOutput QmiIndicationNasEventReportOutput;
+

The QmiIndicationNasEventReportOutput structure contains private data and should only be accessed +using the provided API.

+

Since: 1.0

+
+
+
+

QmiIndicationNasEventReportOutputRfBandInformationElement

+
typedef struct {
+    QmiNasRadioInterface radio_interface;
+    QmiNasActiveBand active_band_class;
+    guint16 active_channel;
+} QmiIndicationNasEventReportOutputRfBandInformationElement;
+
+

A QmiIndicationNasEventReportOutputRfBandInformationElement struct.

+
+

Members

+
+++++ + + + + + + + + + + + + + + + + + +

QmiNasRadioInterface radio_interface;

a QmiNasRadioInterface.

 

QmiNasActiveBand active_band_class;

a QmiNasActiveBand.

 

guint16 active_channel;

a guint16.

 
+
+

Since: 1.0

+
+
+
+ + + \ No newline at end of file diff -Nru libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-NAS-Force-Network-Search.html libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-NAS-Force-Network-Search.html --- libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-NAS-Force-Network-Search.html 2017-03-22 12:28:28.000000000 +0100 +++ libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-NAS-Force-Network-Search.html 1970-01-01 01:00:00.000000000 +0100 @@ -1,320 +0,0 @@ - - - - -NAS Force Network Search: libqmi-glib Reference Manual - - - - - - - - - - - - - - - - -
-
-
- - -
-

NAS Force Network Search

-

NAS Force Network Search

-
- -
-

Types and Values

- -
-
-

Object Hierarchy

-
    GBoxed
-    ╰── QmiMessageNasForceNetworkSearchOutput
-
-
-
-

Description

-
-
-

Functions

-
-

qmi_message_nas_force_network_search_output_ref ()

-
QmiMessageNasForceNetworkSearchOutput *
-qmi_message_nas_force_network_search_output_ref
-                               (QmiMessageNasForceNetworkSearchOutput *self);
-

Atomically increments the reference count of self - by one.

-
-

Parameters

-
----- - - - - - -

self

a QmiMessageNasForceNetworkSearchOutput.

 
-
-
-

Returns

-

the new reference to self -.

-
-

Since: 1.16

-
-
-
-

qmi_message_nas_force_network_search_output_unref ()

-
void
-qmi_message_nas_force_network_search_output_unref
-                               (QmiMessageNasForceNetworkSearchOutput *self);
-

Atomically decrements the reference count of self - by one. -If the reference count drops to 0, self - is completely disposed.

-
-

Parameters

-
----- - - - - - -

self

a QmiMessageNasForceNetworkSearchOutput.

 
-
-

Since: 1.16

-
-
-
-

qmi_message_nas_force_network_search_output_get_result ()

-
gboolean
-qmi_message_nas_force_network_search_output_get_result
-                               (QmiMessageNasForceNetworkSearchOutput *self,
-                                GError **error);
-

Get the result of the QMI operation.

-
-

Parameters

-
----- - - - - - - - - - - - - -

self

a QmiMessageNasForceNetworkSearchOutput.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the QMI operation succeeded, FALSE if error -is set.

-
-

Since: 1.16

-
-
-
-

qmi_client_nas_force_network_search ()

-
void
-qmi_client_nas_force_network_search (QmiClientNas *self,
-                                     gpointer unused,
-                                     guint timeout,
-                                     GCancellable *cancellable,
-                                     GAsyncReadyCallback callback,
-                                     gpointer user_data);
-

Asynchronously sends a Force Network Search request to the device.

-

When the operation is finished, callback - will be invoked in the thread-default main loop of the thread you are calling this method from.

-

You can then call qmi_client_nas_force_network_search_finish() to get the result of the operation.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

self

a QmiClientNas.

 

unused

NULL. This message doesn't have any input bundle.

 

timeout

maximum time to wait for the method to complete, in seconds.

 

cancellable

a GCancellable or NULL.

 

callback

a GAsyncReadyCallback to call when the request is satisfied.

 

user_data

user data to pass to callback -.

 
-
-

Since: 1.16

-
-
-
-

qmi_client_nas_force_network_search_finish ()

-
QmiMessageNasForceNetworkSearchOutput *
-qmi_client_nas_force_network_search_finish
-                               (QmiClientNas *self,
-                                GAsyncResult *res,
-                                GError **error);
-

Finishes an async operation started with qmi_client_nas_force_network_search().

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiClientNas.

 

res

the GAsyncResult obtained from the GAsyncReadyCallback passed to qmi_client_nas_force_network_search().

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

a QmiMessageNasForceNetworkSearchOutput, or NULL if error -is set. The returned value should be freed with qmi_message_nas_force_network_search_output_unref().

-
-

Since: 1.16

-
-
-
-

Types and Values

-
-

QmiMessageNasForceNetworkSearchOutput

-
typedef struct _QmiMessageNasForceNetworkSearchOutput QmiMessageNasForceNetworkSearchOutput;
-

The QmiMessageNasForceNetworkSearchOutput structure contains private data and should only be accessed -using the provided API.

-

Since: 1.16

-
-
-
- - - \ No newline at end of file diff -Nru libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-NAS-Force-Network-Search-request.html libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-NAS-Force-Network-Search-request.html --- libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-NAS-Force-Network-Search-request.html 1970-01-01 01:00:00.000000000 +0100 +++ libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-NAS-Force-Network-Search-request.html 2019-01-08 15:19:01.000000000 +0100 @@ -0,0 +1,320 @@ + + + + +NAS Force Network Search request: libqmi-glib Reference Manual + + + + + + + + + + + + + + + + +
+
+
+ + +
+

NAS Force Network Search request

+

NAS Force Network Search request

+
+ +
+

Types and Values

+ +
+
+

Object Hierarchy

+
    GBoxed
+    ╰── QmiMessageNasForceNetworkSearchOutput
+
+
+
+

Description

+
+
+

Functions

+
+

qmi_message_nas_force_network_search_output_ref ()

+
QmiMessageNasForceNetworkSearchOutput *
+qmi_message_nas_force_network_search_output_ref
+                               (QmiMessageNasForceNetworkSearchOutput *self);
+

Atomically increments the reference count of self + by one.

+
+

Parameters

+
+++++ + + + + + +

self

a QmiMessageNasForceNetworkSearchOutput.

 
+
+
+

Returns

+

the new reference to self +.

+
+

Since: 1.16

+
+
+
+

qmi_message_nas_force_network_search_output_unref ()

+
void
+qmi_message_nas_force_network_search_output_unref
+                               (QmiMessageNasForceNetworkSearchOutput *self);
+

Atomically decrements the reference count of self + by one. +If the reference count drops to 0, self + is completely disposed.

+
+

Parameters

+
+++++ + + + + + +

self

a QmiMessageNasForceNetworkSearchOutput.

 
+
+

Since: 1.16

+
+
+
+

qmi_message_nas_force_network_search_output_get_result ()

+
gboolean
+qmi_message_nas_force_network_search_output_get_result
+                               (QmiMessageNasForceNetworkSearchOutput *self,
+                                GError **error);
+

Get the result of the QMI operation.

+
+

Parameters

+
+++++ + + + + + + + + + + + + +

self

a QmiMessageNasForceNetworkSearchOutput.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the QMI operation succeeded, FALSE if error +is set.

+
+

Since: 1.16

+
+
+
+

qmi_client_nas_force_network_search ()

+
void
+qmi_client_nas_force_network_search (QmiClientNas *self,
+                                     gpointer unused,
+                                     guint timeout,
+                                     GCancellable *cancellable,
+                                     GAsyncReadyCallback callback,
+                                     gpointer user_data);
+

Asynchronously sends a Force Network Search request to the device.

+

When the operation is finished, callback + will be invoked in the thread-default main loop of the thread you are calling this method from.

+

You can then call qmi_client_nas_force_network_search_finish() to get the result of the operation.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

self

a QmiClientNas.

 

unused

NULL. This message doesn't have any input bundle.

 

timeout

maximum time to wait for the method to complete, in seconds.

 

cancellable

a GCancellable or NULL.

 

callback

a GAsyncReadyCallback to call when the request is satisfied.

 

user_data

user data to pass to callback +.

 
+
+

Since: 1.16

+
+
+
+

qmi_client_nas_force_network_search_finish ()

+
QmiMessageNasForceNetworkSearchOutput *
+qmi_client_nas_force_network_search_finish
+                               (QmiClientNas *self,
+                                GAsyncResult *res,
+                                GError **error);
+

Finishes an async operation started with qmi_client_nas_force_network_search().

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiClientNas.

 

res

the GAsyncResult obtained from the GAsyncReadyCallback passed to qmi_client_nas_force_network_search().

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

a QmiMessageNasForceNetworkSearchOutput, or NULL if error +is set. The returned value should be freed with qmi_message_nas_force_network_search_output_unref().

+
+

Since: 1.16

+
+
+
+

Types and Values

+
+

QmiMessageNasForceNetworkSearchOutput

+
typedef struct _QmiMessageNasForceNetworkSearchOutput QmiMessageNasForceNetworkSearchOutput;
+

The QmiMessageNasForceNetworkSearchOutput structure contains private data and should only be accessed +using the provided API.

+

Since: 1.16

+
+
+
+ + + \ No newline at end of file diff -Nru libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-NAS-Get-CDMA-Position-Info.html libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-NAS-Get-CDMA-Position-Info.html --- libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-NAS-Get-CDMA-Position-Info.html 2017-03-22 12:28:29.000000000 +0100 +++ libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-NAS-Get-CDMA-Position-Info.html 1970-01-01 01:00:00.000000000 +0100 @@ -1,459 +0,0 @@ - - - - -NAS Get CDMA Position Info: libqmi-glib Reference Manual - - - - - - - - - - - - - - - - -
-
-
- - -
-

NAS Get CDMA Position Info

-

NAS Get CDMA Position Info

-
- - -
-

Object Hierarchy

-
    GBoxed
-    ╰── QmiMessageNasGetCdmaPositionInfoOutput
-
-
-
-

Description

-
-
-

Functions

-
-

qmi_message_nas_get_cdma_position_info_output_ref ()

-
QmiMessageNasGetCdmaPositionInfoOutput *
-qmi_message_nas_get_cdma_position_info_output_ref
-                               (QmiMessageNasGetCdmaPositionInfoOutput *self);
-

Atomically increments the reference count of self - by one.

-
-

Parameters

-
----- - - - - - -

self

a QmiMessageNasGetCdmaPositionInfoOutput.

 
-
-
-

Returns

-

the new reference to self -.

-
-

Since: 1.0

-
-
-
-

qmi_message_nas_get_cdma_position_info_output_unref ()

-
void
-qmi_message_nas_get_cdma_position_info_output_unref
-                               (QmiMessageNasGetCdmaPositionInfoOutput *self);
-

Atomically decrements the reference count of self - by one. -If the reference count drops to 0, self - is completely disposed.

-
-

Parameters

-
----- - - - - - -

self

a QmiMessageNasGetCdmaPositionInfoOutput.

 
-
-

Since: 1.0

-
-
-
-

qmi_message_nas_get_cdma_position_info_output_get_result ()

-
gboolean
-qmi_message_nas_get_cdma_position_info_output_get_result
-                               (QmiMessageNasGetCdmaPositionInfoOutput *self,
-                                GError **error);
-

Get the result of the QMI operation.

-
-

Parameters

-
----- - - - - - - - - - - - - -

self

a QmiMessageNasGetCdmaPositionInfoOutput.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the QMI operation succeeded, FALSE if error -is set.

-
-

Since: 1.0

-
-
-
-

qmi_message_nas_get_cdma_position_info_output_get_cdma_position_info ()

-
gboolean
-qmi_message_nas_get_cdma_position_info_output_get_cdma_position_info
-                               (QmiMessageNasGetCdmaPositionInfoOutput *self,
-                                gint8 *value_cdma_position_info_ui_in_idle_mode,
-                                GArray **value_cdma_position_info_basestations,
-                                GError **error);
-

Get the 'CDMA Position Info' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - - - - - - -

self

a QmiMessageNasGetCdmaPositionInfoOutput.

 

value_cdma_position_info_ui_in_idle_mode

a placeholder for the output gint8, or NULL if not required.

 

value_cdma_position_info_basestations

a placeholder for the output GArray of QmiMessageNasGetCdmaPositionInfoOutputCdmaPositionInfoBasestationsBasestation elements, or NULL if not required. Do not free it, it is owned by self -.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.0

-
-
-
-

qmi_client_nas_get_cdma_position_info ()

-
void
-qmi_client_nas_get_cdma_position_info (QmiClientNas *self,
-                                       gpointer unused,
-                                       guint timeout,
-                                       GCancellable *cancellable,
-                                       GAsyncReadyCallback callback,
-                                       gpointer user_data);
-

Asynchronously sends a Get CDMA Position Info request to the device.

-

When the operation is finished, callback - will be invoked in the thread-default main loop of the thread you are calling this method from.

-

You can then call qmi_client_nas_get_cdma_position_info_finish() to get the result of the operation.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

self

a QmiClientNas.

 

unused

NULL. This message doesn't have any input bundle.

 

timeout

maximum time to wait for the method to complete, in seconds.

 

cancellable

a GCancellable or NULL.

 

callback

a GAsyncReadyCallback to call when the request is satisfied.

 

user_data

user data to pass to callback -.

 
-
-

Since: 1.0

-
-
-
-

qmi_client_nas_get_cdma_position_info_finish ()

-
QmiMessageNasGetCdmaPositionInfoOutput *
-qmi_client_nas_get_cdma_position_info_finish
-                               (QmiClientNas *self,
-                                GAsyncResult *res,
-                                GError **error);
-

Finishes an async operation started with qmi_client_nas_get_cdma_position_info().

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiClientNas.

 

res

the GAsyncResult obtained from the GAsyncReadyCallback passed to qmi_client_nas_get_cdma_position_info().

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

a QmiMessageNasGetCdmaPositionInfoOutput, or NULL if error -is set. The returned value should be freed with qmi_message_nas_get_cdma_position_info_output_unref().

-
-

Since: 1.0

-
-
-
-

Types and Values

-
-

QmiMessageNasGetCdmaPositionInfoOutput

-
typedef struct _QmiMessageNasGetCdmaPositionInfoOutput QmiMessageNasGetCdmaPositionInfoOutput;
-

The QmiMessageNasGetCdmaPositionInfoOutput structure contains private data and should only be accessed -using the provided API.

-

Since: 1.0

-
-
-
-

QmiMessageNasGetCdmaPositionInfoOutputCdmaPositionInfoBasestationsBasestation

-
typedef struct {
-    QmiNasCdmaPilotType pilot_type;
-    guint16 system_id;
-    guint16 network_id;
-    guint16 base_station_id;
-    guint16 pilot_pn;
-    guint16 pilot_strength;
-    gint32 latitude;
-    gint32 longitude;
-    guint64 gps_time_in_milliseconds;
-} QmiMessageNasGetCdmaPositionInfoOutputCdmaPositionInfoBasestationsBasestation;
-
-

A QmiMessageNasGetCdmaPositionInfoOutputCdmaPositionInfoBasestationsBasestation struct.

-
-

Members

-
----- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

QmiNasCdmaPilotType pilot_type;

a QmiNasCdmaPilotType.

 

guint16 system_id;

a guint16.

 

guint16 network_id;

a guint16.

 

guint16 base_station_id;

a guint16.

 

guint16 pilot_pn;

a guint16.

 

guint16 pilot_strength;

a guint16.

 

gint32 latitude;

a gint32.

 

gint32 longitude;

a gint32.

 

guint64 gps_time_in_milliseconds;

a guint64.

 
-
-

Since: 1.0

-
-
-
- - - \ No newline at end of file diff -Nru libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-NAS-Get-CDMA-Position-Info-request.html libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-NAS-Get-CDMA-Position-Info-request.html --- libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-NAS-Get-CDMA-Position-Info-request.html 1970-01-01 01:00:00.000000000 +0100 +++ libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-NAS-Get-CDMA-Position-Info-request.html 2019-01-08 15:19:01.000000000 +0100 @@ -0,0 +1,459 @@ + + + + +NAS Get CDMA Position Info request: libqmi-glib Reference Manual + + + + + + + + + + + + + + + + +
+
+
+ + +
+

NAS Get CDMA Position Info request

+

NAS Get CDMA Position Info request

+
+ + +
+

Object Hierarchy

+
    GBoxed
+    ╰── QmiMessageNasGetCdmaPositionInfoOutput
+
+
+
+

Description

+
+
+

Functions

+
+

qmi_message_nas_get_cdma_position_info_output_ref ()

+
QmiMessageNasGetCdmaPositionInfoOutput *
+qmi_message_nas_get_cdma_position_info_output_ref
+                               (QmiMessageNasGetCdmaPositionInfoOutput *self);
+

Atomically increments the reference count of self + by one.

+
+

Parameters

+
+++++ + + + + + +

self

a QmiMessageNasGetCdmaPositionInfoOutput.

 
+
+
+

Returns

+

the new reference to self +.

+
+

Since: 1.0

+
+
+
+

qmi_message_nas_get_cdma_position_info_output_unref ()

+
void
+qmi_message_nas_get_cdma_position_info_output_unref
+                               (QmiMessageNasGetCdmaPositionInfoOutput *self);
+

Atomically decrements the reference count of self + by one. +If the reference count drops to 0, self + is completely disposed.

+
+

Parameters

+
+++++ + + + + + +

self

a QmiMessageNasGetCdmaPositionInfoOutput.

 
+
+

Since: 1.0

+
+
+
+

qmi_message_nas_get_cdma_position_info_output_get_result ()

+
gboolean
+qmi_message_nas_get_cdma_position_info_output_get_result
+                               (QmiMessageNasGetCdmaPositionInfoOutput *self,
+                                GError **error);
+

Get the result of the QMI operation.

+
+

Parameters

+
+++++ + + + + + + + + + + + + +

self

a QmiMessageNasGetCdmaPositionInfoOutput.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the QMI operation succeeded, FALSE if error +is set.

+
+

Since: 1.0

+
+
+
+

qmi_message_nas_get_cdma_position_info_output_get_cdma_position_info ()

+
gboolean
+qmi_message_nas_get_cdma_position_info_output_get_cdma_position_info
+                               (QmiMessageNasGetCdmaPositionInfoOutput *self,
+                                gint8 *value_cdma_position_info_ui_in_idle_mode,
+                                GArray **value_cdma_position_info_basestations,
+                                GError **error);
+

Get the 'CDMA Position Info' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + + + + + + +

self

a QmiMessageNasGetCdmaPositionInfoOutput.

 

value_cdma_position_info_ui_in_idle_mode

a placeholder for the output gint8, or NULL if not required.

 

value_cdma_position_info_basestations

a placeholder for the output GArray of QmiMessageNasGetCdmaPositionInfoOutputCdmaPositionInfoBasestationsBasestation elements, or NULL if not required. Do not free it, it is owned by self +.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.0

+
+
+
+

qmi_client_nas_get_cdma_position_info ()

+
void
+qmi_client_nas_get_cdma_position_info (QmiClientNas *self,
+                                       gpointer unused,
+                                       guint timeout,
+                                       GCancellable *cancellable,
+                                       GAsyncReadyCallback callback,
+                                       gpointer user_data);
+

Asynchronously sends a Get CDMA Position Info request to the device.

+

When the operation is finished, callback + will be invoked in the thread-default main loop of the thread you are calling this method from.

+

You can then call qmi_client_nas_get_cdma_position_info_finish() to get the result of the operation.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

self

a QmiClientNas.

 

unused

NULL. This message doesn't have any input bundle.

 

timeout

maximum time to wait for the method to complete, in seconds.

 

cancellable

a GCancellable or NULL.

 

callback

a GAsyncReadyCallback to call when the request is satisfied.

 

user_data

user data to pass to callback +.

 
+
+

Since: 1.0

+
+
+
+

qmi_client_nas_get_cdma_position_info_finish ()

+
QmiMessageNasGetCdmaPositionInfoOutput *
+qmi_client_nas_get_cdma_position_info_finish
+                               (QmiClientNas *self,
+                                GAsyncResult *res,
+                                GError **error);
+

Finishes an async operation started with qmi_client_nas_get_cdma_position_info().

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiClientNas.

 

res

the GAsyncResult obtained from the GAsyncReadyCallback passed to qmi_client_nas_get_cdma_position_info().

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

a QmiMessageNasGetCdmaPositionInfoOutput, or NULL if error +is set. The returned value should be freed with qmi_message_nas_get_cdma_position_info_output_unref().

+
+

Since: 1.0

+
+
+
+

Types and Values

+
+

QmiMessageNasGetCdmaPositionInfoOutput

+
typedef struct _QmiMessageNasGetCdmaPositionInfoOutput QmiMessageNasGetCdmaPositionInfoOutput;
+

The QmiMessageNasGetCdmaPositionInfoOutput structure contains private data and should only be accessed +using the provided API.

+

Since: 1.0

+
+
+
+

QmiMessageNasGetCdmaPositionInfoOutputCdmaPositionInfoBasestationsBasestation

+
typedef struct {
+    QmiNasCdmaPilotType pilot_type;
+    guint16 system_id;
+    guint16 network_id;
+    guint16 base_station_id;
+    guint16 pilot_pn;
+    guint16 pilot_strength;
+    gint32 latitude;
+    gint32 longitude;
+    guint64 gps_time_in_milliseconds;
+} QmiMessageNasGetCdmaPositionInfoOutputCdmaPositionInfoBasestationsBasestation;
+
+

A QmiMessageNasGetCdmaPositionInfoOutputCdmaPositionInfoBasestationsBasestation struct.

+
+

Members

+
+++++ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

QmiNasCdmaPilotType pilot_type;

a QmiNasCdmaPilotType.

 

guint16 system_id;

a guint16.

 

guint16 network_id;

a guint16.

 

guint16 base_station_id;

a guint16.

 

guint16 pilot_pn;

a guint16.

 

guint16 pilot_strength;

a guint16.

 

gint32 latitude;

a gint32.

 

gint32 longitude;

a gint32.

 

guint64 gps_time_in_milliseconds;

a guint64.

 
+
+

Since: 1.0

+
+
+
+ + + \ No newline at end of file diff -Nru libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-NAS-Get-Cell-Location-Info.html libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-NAS-Get-Cell-Location-Info.html --- libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-NAS-Get-Cell-Location-Info.html 2017-03-22 12:28:28.000000000 +0100 +++ libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-NAS-Get-Cell-Location-Info.html 1970-01-01 01:00:00.000000000 +0100 @@ -1,1598 +0,0 @@ - - - - -NAS Get Cell Location Info: libqmi-glib Reference Manual - - - - - - - - - - - - - - - - -
-
-
- - -
-

NAS Get Cell Location Info

-

NAS Get Cell Location Info

-
- - -
-

Object Hierarchy

-
    GBoxed
-    ╰── QmiMessageNasGetCellLocationInfoOutput
-
-
-
-

Description

-
-
-

Functions

-
-

qmi_message_nas_get_cell_location_info_output_ref ()

-
QmiMessageNasGetCellLocationInfoOutput *
-qmi_message_nas_get_cell_location_info_output_ref
-                               (QmiMessageNasGetCellLocationInfoOutput *self);
-

Atomically increments the reference count of self - by one.

-
-

Parameters

-
----- - - - - - -

self

a QmiMessageNasGetCellLocationInfoOutput.

 
-
-
-

Returns

-

the new reference to self -.

-
-

Since: 1.10

-
-
-
-

qmi_message_nas_get_cell_location_info_output_unref ()

-
void
-qmi_message_nas_get_cell_location_info_output_unref
-                               (QmiMessageNasGetCellLocationInfoOutput *self);
-

Atomically decrements the reference count of self - by one. -If the reference count drops to 0, self - is completely disposed.

-
-

Parameters

-
----- - - - - - -

self

a QmiMessageNasGetCellLocationInfoOutput.

 
-
-

Since: 1.10

-
-
-
-

qmi_message_nas_get_cell_location_info_output_get_umts_info_neighboring_lte ()

-
gboolean
-qmi_message_nas_get_cell_location_info_output_get_umts_info_neighboring_lte
-                               (QmiMessageNasGetCellLocationInfoOutput *self,
-                                QmiNasWcdmaRrcState *value_umts_info_neighboring_lte_rrc_state,
-                                GArray **value_umts_info_neighboring_lte_frequency,
-                                GError **error);
-

Get the 'UMTS Info Neighboring LTE' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - - - - - - -

self

a QmiMessageNasGetCellLocationInfoOutput.

 

value_umts_info_neighboring_lte_rrc_state

a placeholder for the output QmiNasWcdmaRrcState, or NULL if not required.

 

value_umts_info_neighboring_lte_frequency

a placeholder for the output GArray of QmiMessageNasGetCellLocationInfoOutputUmtsInfoNeighboringLteFrequencyElement elements, or NULL if not required. Do not free it, it is owned by self -.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.10

-
-
-
-

qmi_message_nas_get_cell_location_info_output_get_umts_cell_id ()

-
gboolean
-qmi_message_nas_get_cell_location_info_output_get_umts_cell_id
-                               (QmiMessageNasGetCellLocationInfoOutput *self,
-                                guint32 *value_umts_cell_id,
-                                GError **error);
-

Get the 'UMTS Cell ID' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessageNasGetCellLocationInfoOutput.

 

value_umts_cell_id

a placeholder for the output guint32, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.10

-
-
-
-

qmi_message_nas_get_cell_location_info_output_get_lte_info_neighboring_wcdma ()

-
gboolean
-qmi_message_nas_get_cell_location_info_output_get_lte_info_neighboring_wcdma
-                               (QmiMessageNasGetCellLocationInfoOutput *self,
-                                gboolean *value_lte_info_neighboring_wcdma_ue_in_idle,
-                                GArray **value_lte_info_neighboring_wcdma_frequency,
-                                GError **error);
-

Get the 'LTE Info Neighboring WCDMA' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - - - - - - -

self

a QmiMessageNasGetCellLocationInfoOutput.

 

value_lte_info_neighboring_wcdma_ue_in_idle

a placeholder for the output gboolean, or NULL if not required.

 

value_lte_info_neighboring_wcdma_frequency

a placeholder for the output GArray of QmiMessageNasGetCellLocationInfoOutputLteInfoNeighboringWcdmaFrequencyElement elements, or NULL if not required. Do not free it, it is owned by self -.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.10

-
-
-
-

qmi_message_nas_get_cell_location_info_output_get_lte_info_neighboring_gsm ()

-
gboolean
-qmi_message_nas_get_cell_location_info_output_get_lte_info_neighboring_gsm
-                               (QmiMessageNasGetCellLocationInfoOutput *self,
-                                gboolean *value_lte_info_neighboring_gsm_ue_in_idle,
-                                GArray **value_lte_info_neighboring_gsm_frequency,
-                                GError **error);
-

Get the 'LTE Info Neighboring GSM' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - - - - - - -

self

a QmiMessageNasGetCellLocationInfoOutput.

 

value_lte_info_neighboring_gsm_ue_in_idle

a placeholder for the output gboolean, or NULL if not required.

 

value_lte_info_neighboring_gsm_frequency

a placeholder for the output GArray of QmiMessageNasGetCellLocationInfoOutputLteInfoNeighboringGsmFrequencyElement elements, or NULL if not required. Do not free it, it is owned by self -.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.10

-
-
-
-

qmi_message_nas_get_cell_location_info_output_get_interfrequency_lte_info ()

-
gboolean
-qmi_message_nas_get_cell_location_info_output_get_interfrequency_lte_info
-                               (QmiMessageNasGetCellLocationInfoOutput *self,
-                                gboolean *value_interfrequency_lte_info_ue_in_idle,
-                                GArray **value_interfrequency_lte_info_frequency,
-                                GError **error);
-

Get the 'Interfrequency LTE Info' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - - - - - - -

self

a QmiMessageNasGetCellLocationInfoOutput.

 

value_interfrequency_lte_info_ue_in_idle

a placeholder for the output gboolean, or NULL if not required.

 

value_interfrequency_lte_info_frequency

a placeholder for the output GArray of QmiMessageNasGetCellLocationInfoOutputInterfrequencyLteInfoFrequencyElement elements, or NULL if not required. Do not free it, it is owned by self -.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.10

-
-
-
-

qmi_message_nas_get_cell_location_info_output_get_intrafrequency_lte_info ()

-
gboolean
-qmi_message_nas_get_cell_location_info_output_get_intrafrequency_lte_info
-                               (QmiMessageNasGetCellLocationInfoOutput *self,
-                                gboolean *value_intrafrequency_lte_info_ue_in_idle,
-                                const gchar **value_intrafrequency_lte_info_plmn,
-                                guint16 *value_intrafrequency_lte_info_tracking_area_code,
-                                guint32 *value_intrafrequency_lte_info_global_cell_id,
-                                guint16 *value_intrafrequency_lte_info_eutra_absolute_rf_channel_number,
-                                guint16 *value_intrafrequency_lte_info_serving_cell_id,
-                                guint8 *value_intrafrequency_lte_info_cell_reselection_priority,
-                                guint8 *value_intrafrequency_lte_info_s_non_intra_search_threshold,
-                                guint8 *value_intrafrequency_lte_info_serving_cell_low_threshold,
-                                guint8 *value_intrafrequency_lte_info_s_intra_search_threshold,
-                                GArray **value_intrafrequency_lte_info_cell,
-                                GError **error);
-

Get the 'Intrafrequency LTE Info' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

self

a QmiMessageNasGetCellLocationInfoOutput.

 

value_intrafrequency_lte_info_ue_in_idle

a placeholder for the output gboolean, or NULL if not required.

 

value_intrafrequency_lte_info_plmn

a placeholder for the output constant string, or NULL if not required.

 

value_intrafrequency_lte_info_tracking_area_code

a placeholder for the output guint16, or NULL if not required.

 

value_intrafrequency_lte_info_global_cell_id

a placeholder for the output guint32, or NULL if not required.

 

value_intrafrequency_lte_info_eutra_absolute_rf_channel_number

a placeholder for the output guint16, or NULL if not required.

 

value_intrafrequency_lte_info_serving_cell_id

a placeholder for the output guint16, or NULL if not required.

 

value_intrafrequency_lte_info_cell_reselection_priority

a placeholder for the output guint8, or NULL if not required.

 

value_intrafrequency_lte_info_s_non_intra_search_threshold

a placeholder for the output guint8, or NULL if not required.

 

value_intrafrequency_lte_info_serving_cell_low_threshold

a placeholder for the output guint8, or NULL if not required.

 

value_intrafrequency_lte_info_s_intra_search_threshold

a placeholder for the output guint8, or NULL if not required.

 

value_intrafrequency_lte_info_cell

a placeholder for the output GArray of QmiMessageNasGetCellLocationInfoOutputIntrafrequencyLteInfoCellElement elements, or NULL if not required. Do not free it, it is owned by self -.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.10

-
-
-
-

qmi_message_nas_get_cell_location_info_output_get_cdma_info ()

-
gboolean
-qmi_message_nas_get_cell_location_info_output_get_cdma_info
-                               (QmiMessageNasGetCellLocationInfoOutput *self,
-                                guint16 *value_cdma_info_system_id,
-                                guint16 *value_cdma_info_network_id,
-                                guint16 *value_cdma_info_base_station_id,
-                                guint16 *value_cdma_info_reference_pn,
-                                guint32 *value_cdma_info_latitude,
-                                guint32 *value_cdma_info_longitude,
-                                GError **error);
-

Get the 'CDMA Info' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

self

a QmiMessageNasGetCellLocationInfoOutput.

 

value_cdma_info_system_id

a placeholder for the output guint16, or NULL if not required.

 

value_cdma_info_network_id

a placeholder for the output guint16, or NULL if not required.

 

value_cdma_info_base_station_id

a placeholder for the output guint16, or NULL if not required.

 

value_cdma_info_reference_pn

a placeholder for the output guint16, or NULL if not required.

 

value_cdma_info_latitude

a placeholder for the output guint32, or NULL if not required.

 

value_cdma_info_longitude

a placeholder for the output guint32, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.10

-
-
-
-

qmi_message_nas_get_cell_location_info_output_get_umts_info ()

-
gboolean
-qmi_message_nas_get_cell_location_info_output_get_umts_info
-                               (QmiMessageNasGetCellLocationInfoOutput *self,
-                                guint16 *value_umts_info_cell_id,
-                                const gchar **value_umts_info_plmn,
-                                guint16 *value_umts_info_lac,
-                                guint16 *value_umts_info_utra_absolute_rf_channel_number,
-                                guint16 *value_umts_info_primary_scrambling_code,
-                                gint16 *value_umts_info_rscp,
-                                gint16 *value_umts_info_ecio,
-                                GArray **value_umts_info_cell,
-                                GArray **value_umts_info_neighboring_geran,
-                                GError **error);
-

Get the 'UMTS Info' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

self

a QmiMessageNasGetCellLocationInfoOutput.

 

value_umts_info_cell_id

a placeholder for the output guint16, or NULL if not required.

 

value_umts_info_plmn

a placeholder for the output constant string, or NULL if not required.

 

value_umts_info_lac

a placeholder for the output guint16, or NULL if not required.

 

value_umts_info_utra_absolute_rf_channel_number

a placeholder for the output guint16, or NULL if not required.

 

value_umts_info_primary_scrambling_code

a placeholder for the output guint16, or NULL if not required.

 

value_umts_info_rscp

a placeholder for the output gint16, or NULL if not required.

 

value_umts_info_ecio

a placeholder for the output gint16, or NULL if not required.

 

value_umts_info_cell

a placeholder for the output GArray of QmiMessageNasGetCellLocationInfoOutputUmtsInfoCellElement elements, or NULL if not required. Do not free it, it is owned by self -.

 

value_umts_info_neighboring_geran

a placeholder for the output GArray of QmiMessageNasGetCellLocationInfoOutputUmtsInfoNeighboringGeranElement elements, or NULL if not required. Do not free it, it is owned by self -.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.10

-
-
-
-

qmi_message_nas_get_cell_location_info_output_get_geran_info ()

-
gboolean
-qmi_message_nas_get_cell_location_info_output_get_geran_info
-                               (QmiMessageNasGetCellLocationInfoOutput *self,
-                                guint32 *value_geran_info_cell_id,
-                                const gchar **value_geran_info_plmn,
-                                guint16 *value_geran_info_lac,
-                                guint16 *value_geran_info_geran_absolute_rf_channel_number,
-                                guint8 *value_geran_info_base_station_identity_code,
-                                guint32 *value_geran_info_timing_advance,
-                                guint16 *value_geran_info_rx_level,
-                                GArray **value_geran_info_cell,
-                                GError **error);
-

Get the 'GERAN Info' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

self

a QmiMessageNasGetCellLocationInfoOutput.

 

value_geran_info_cell_id

a placeholder for the output guint32, or NULL if not required.

 

value_geran_info_plmn

a placeholder for the output constant string, or NULL if not required.

 

value_geran_info_lac

a placeholder for the output guint16, or NULL if not required.

 

value_geran_info_geran_absolute_rf_channel_number

a placeholder for the output guint16, or NULL if not required.

 

value_geran_info_base_station_identity_code

a placeholder for the output guint8, or NULL if not required.

 

value_geran_info_timing_advance

a placeholder for the output guint32, or NULL if not required.

 

value_geran_info_rx_level

a placeholder for the output guint16, or NULL if not required.

 

value_geran_info_cell

a placeholder for the output GArray of QmiMessageNasGetCellLocationInfoOutputGeranInfoCellElement elements, or NULL if not required. Do not free it, it is owned by self -.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.10

-
-
-
-

qmi_message_nas_get_cell_location_info_output_get_result ()

-
gboolean
-qmi_message_nas_get_cell_location_info_output_get_result
-                               (QmiMessageNasGetCellLocationInfoOutput *self,
-                                GError **error);
-

Get the result of the QMI operation.

-
-

Parameters

-
----- - - - - - - - - - - - - -

self

a QmiMessageNasGetCellLocationInfoOutput.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the QMI operation succeeded, FALSE if error -is set.

-
-

Since: 1.10

-
-
-
-

qmi_client_nas_get_cell_location_info ()

-
void
-qmi_client_nas_get_cell_location_info (QmiClientNas *self,
-                                       gpointer unused,
-                                       guint timeout,
-                                       GCancellable *cancellable,
-                                       GAsyncReadyCallback callback,
-                                       gpointer user_data);
-

Asynchronously sends a Get Cell Location Info request to the device.

-

When the operation is finished, callback - will be invoked in the thread-default main loop of the thread you are calling this method from.

-

You can then call qmi_client_nas_get_cell_location_info_finish() to get the result of the operation.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

self

a QmiClientNas.

 

unused

NULL. This message doesn't have any input bundle.

 

timeout

maximum time to wait for the method to complete, in seconds.

 

cancellable

a GCancellable or NULL.

 

callback

a GAsyncReadyCallback to call when the request is satisfied.

 

user_data

user data to pass to callback -.

 
-
-

Since: 1.10

-
-
-
-

qmi_client_nas_get_cell_location_info_finish ()

-
QmiMessageNasGetCellLocationInfoOutput *
-qmi_client_nas_get_cell_location_info_finish
-                               (QmiClientNas *self,
-                                GAsyncResult *res,
-                                GError **error);
-

Finishes an async operation started with qmi_client_nas_get_cell_location_info().

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiClientNas.

 

res

the GAsyncResult obtained from the GAsyncReadyCallback passed to qmi_client_nas_get_cell_location_info().

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

a QmiMessageNasGetCellLocationInfoOutput, or NULL if error -is set. The returned value should be freed with qmi_message_nas_get_cell_location_info_output_unref().

-
-

Since: 1.10

-
-
-
-

Types and Values

-
-

QmiMessageNasGetCellLocationInfoOutput

-
typedef struct _QmiMessageNasGetCellLocationInfoOutput QmiMessageNasGetCellLocationInfoOutput;
-

The QmiMessageNasGetCellLocationInfoOutput structure contains private data and should only be accessed -using the provided API.

-

Since: 1.10

-
-
-
-

QmiMessageNasGetCellLocationInfoOutputUmtsInfoNeighboringLteFrequencyElement

-
typedef struct {
-    guint16 eutra_absolute_rf_channel_number;
-    guint16 physical_cell_id;
-    gfloat rsrp;
-    gfloat rsrq;
-    gint16 cell_selection_rx_level;
-    gboolean is_tdd;
-} QmiMessageNasGetCellLocationInfoOutputUmtsInfoNeighboringLteFrequencyElement;
-
-

A QmiMessageNasGetCellLocationInfoOutputUmtsInfoNeighboringLteFrequencyElement struct.

-
-

Members

-
----- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

guint16 eutra_absolute_rf_channel_number;

a guint16.

 

guint16 physical_cell_id;

a guint16.

 

gfloat rsrp;

a gfloat.

 

gfloat rsrq;

a gfloat.

 

gint16 cell_selection_rx_level;

a gint16.

 

gboolean is_tdd;

a gboolean.

 
-
-

Since: 1.10

-
-
-
-

QmiMessageNasGetCellLocationInfoOutputLteInfoNeighboringWcdmaFrequencyElementCellElement

-
typedef struct {
-    guint16 primary_scrambling_code;
-    gint16 cpich_rscp;
-    gint16 cpich_ecno;
-    gint16 cell_selection_rx_level;
-} QmiMessageNasGetCellLocationInfoOutputLteInfoNeighboringWcdmaFrequencyElementCellElement;
-
-

A QmiMessageNasGetCellLocationInfoOutputLteInfoNeighboringWcdmaFrequencyElementCellElement struct.

-
-

Members

-
----- - - - - - - - - - - - - - - - - - - - - - - -

guint16 primary_scrambling_code;

a guint16.

 

gint16 cpich_rscp;

a gint16.

 

gint16 cpich_ecno;

a gint16.

 

gint16 cell_selection_rx_level;

a gint16.

 
-
-

Since: 1.10

-
-
-
-

QmiMessageNasGetCellLocationInfoOutputLteInfoNeighboringWcdmaFrequencyElement

-
typedef struct {
-    guint16 utra_absolute_rf_channel_number;
-    guint8 cell_reselection_priority;
-    guint16 cell_reselection_high_threshold;
-    guint16 cell_reselection_low_threshold;
-    GArray *cell;
-} QmiMessageNasGetCellLocationInfoOutputLteInfoNeighboringWcdmaFrequencyElement;
-
-

A QmiMessageNasGetCellLocationInfoOutputLteInfoNeighboringWcdmaFrequencyElement struct.

-
-

Members

-
----- - - - - - - - - - - - - - - - - - - - - - - - - - - - -

guint16 utra_absolute_rf_channel_number;

a guint16.

 

guint8 cell_reselection_priority;

a guint8.

 

guint16 cell_reselection_high_threshold;

a guint16.

 

guint16 cell_reselection_low_threshold;

a guint16.

 

GArray *cell;

a GArray of QmiMessageNasGetCellLocationInfoOutputLteInfoNeighboringWcdmaFrequencyElementCellElement elements.

 
-
-

Since: 1.10

-
-
-
-

QmiMessageNasGetCellLocationInfoOutputLteInfoNeighboringGsmFrequencyElementCellElement

-
typedef struct {
-    guint16 geran_absolute_rf_channel_number;
-    gboolean band_is_1900;
-    gboolean cell_id_valid;
-    guint8 base_station_identity_code;
-    gint16 rssi;
-    gint16 cell_selection_rx_level;
-} QmiMessageNasGetCellLocationInfoOutputLteInfoNeighboringGsmFrequencyElementCellElement;
-
-

A QmiMessageNasGetCellLocationInfoOutputLteInfoNeighboringGsmFrequencyElementCellElement struct.

-
-

Members

-
----- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

guint16 geran_absolute_rf_channel_number;

a guint16.

 

gboolean band_is_1900;

a gboolean.

 

gboolean cell_id_valid;

a gboolean.

 

guint8 base_station_identity_code;

a guint8.

 

gint16 rssi;

a gint16.

 

gint16 cell_selection_rx_level;

a gint16.

 
-
-

Since: 1.10

-
-
-
-

QmiMessageNasGetCellLocationInfoOutputLteInfoNeighboringGsmFrequencyElement

-
typedef struct {
-    guint8 cell_reselection_priority;
-    guint8 cell_reselection_high_threshold;
-    guint8 cell_reselection_low_threshold;
-    guint8 ncc_permitted;
-    GArray *cell;
-} QmiMessageNasGetCellLocationInfoOutputLteInfoNeighboringGsmFrequencyElement;
-
-

A QmiMessageNasGetCellLocationInfoOutputLteInfoNeighboringGsmFrequencyElement struct.

-
-

Members

-
----- - - - - - - - - - - - - - - - - - - - - - - - - - - - -

guint8 cell_reselection_priority;

a guint8.

 

guint8 cell_reselection_high_threshold;

a guint8.

 

guint8 cell_reselection_low_threshold;

a guint8.

 

guint8 ncc_permitted;

a guint8.

 

GArray *cell;

a GArray of QmiMessageNasGetCellLocationInfoOutputLteInfoNeighboringGsmFrequencyElementCellElement elements.

 
-
-

Since: 1.10

-
-
-
-

QmiMessageNasGetCellLocationInfoOutputInterfrequencyLteInfoFrequencyElementCellElement

-
typedef struct {
-    guint16 physical_cell_id;
-    gint16 rsrq;
-    gint16 rsrp;
-    gint16 rssi;
-    gint16 cell_selection_rx_level;
-} QmiMessageNasGetCellLocationInfoOutputInterfrequencyLteInfoFrequencyElementCellElement;
-
-

A QmiMessageNasGetCellLocationInfoOutputInterfrequencyLteInfoFrequencyElementCellElement struct.

-
-

Members

-
----- - - - - - - - - - - - - - - - - - - - - - - - - - - - -

guint16 physical_cell_id;

a guint16.

 

gint16 rsrq;

a gint16.

 

gint16 rsrp;

a gint16.

 

gint16 rssi;

a gint16.

 

gint16 cell_selection_rx_level;

a gint16.

 
-
-

Since: 1.10

-
-
-
-

QmiMessageNasGetCellLocationInfoOutputInterfrequencyLteInfoFrequencyElement

-
typedef struct {
-    guint16 eutra_absolute_rf_channel_number;
-    guint8 cell_selection_rx_level_low_threshold;
-    guint8 cell_selection_rx_level_high_threshold;
-    guint8 cell_reselection_priority;
-    GArray *cell;
-} QmiMessageNasGetCellLocationInfoOutputInterfrequencyLteInfoFrequencyElement;
-
-

A QmiMessageNasGetCellLocationInfoOutputInterfrequencyLteInfoFrequencyElement struct.

-
-

Members

-
----- - - - - - - - - - - - - - - - - - - - - - - - - - - - -

guint16 eutra_absolute_rf_channel_number;

a guint16.

 

guint8 cell_selection_rx_level_low_threshold;

a guint8.

 

guint8 cell_selection_rx_level_high_threshold;

a guint8.

 

guint8 cell_reselection_priority;

a guint8.

 

GArray *cell;

a GArray of QmiMessageNasGetCellLocationInfoOutputInterfrequencyLteInfoFrequencyElementCellElement elements.

 
-
-

Since: 1.10

-
-
-
-

QmiMessageNasGetCellLocationInfoOutputIntrafrequencyLteInfoCellElement

-
typedef struct {
-    guint16 physical_cell_id;
-    gint16 rsrq;
-    gint16 rsrp;
-    gint16 rssi;
-    gint16 cell_selection_rx_level;
-} QmiMessageNasGetCellLocationInfoOutputIntrafrequencyLteInfoCellElement;
-
-

A QmiMessageNasGetCellLocationInfoOutputIntrafrequencyLteInfoCellElement struct.

-
-

Members

-
----- - - - - - - - - - - - - - - - - - - - - - - - - - - - -

guint16 physical_cell_id;

a guint16.

 

gint16 rsrq;

a gint16.

 

gint16 rsrp;

a gint16.

 

gint16 rssi;

a gint16.

 

gint16 cell_selection_rx_level;

a gint16.

 
-
-

Since: 1.10

-
-
-
-

QmiMessageNasGetCellLocationInfoOutputUmtsInfoCellElement

-
typedef struct {
-    guint16 utra_absolute_rf_channel_number;
-    guint16 primary_scrambling_code;
-    gint16 rscp;
-    gint16 ecio;
-} QmiMessageNasGetCellLocationInfoOutputUmtsInfoCellElement;
-
-

A QmiMessageNasGetCellLocationInfoOutputUmtsInfoCellElement struct.

-
-

Members

-
----- - - - - - - - - - - - - - - - - - - - - - - -

guint16 utra_absolute_rf_channel_number;

a guint16.

 

guint16 primary_scrambling_code;

a guint16.

 

gint16 rscp;

a gint16.

 

gint16 ecio;

a gint16.

 
-
-

Since: 1.10

-
-
-
-

QmiMessageNasGetCellLocationInfoOutputUmtsInfoNeighboringGeranElement

-
typedef struct {
-    guint16 geran_absolute_rf_channel_number;
-    guint8 network_color_code;
-    guint8 base_station_color_code;
-    gint16 rssi;
-} QmiMessageNasGetCellLocationInfoOutputUmtsInfoNeighboringGeranElement;
-
-

A QmiMessageNasGetCellLocationInfoOutputUmtsInfoNeighboringGeranElement struct.

-
-

Members

-
----- - - - - - - - - - - - - - - - - - - - - - - -

guint16 geran_absolute_rf_channel_number;

a guint16.

 

guint8 network_color_code;

a guint8.

 

guint8 base_station_color_code;

a guint8.

 

gint16 rssi;

a gint16.

 
-
-

Since: 1.10

-
-
-
-

QmiMessageNasGetCellLocationInfoOutputGeranInfoCellElement

-
typedef struct {
-    guint32 cell_id;
-    gchar *plmn;
-    guint16 lac;
-    guint16 geran_absolute_rf_channel_number;
-    guint8 base_station_identity_code;
-    guint16 rx_level;
-} QmiMessageNasGetCellLocationInfoOutputGeranInfoCellElement;
-
-

A QmiMessageNasGetCellLocationInfoOutputGeranInfoCellElement struct.

-
-

Members

-
----- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

guint32 cell_id;

a guint32.

 

gchar *plmn;

a string of exactly 3 characters.

 

guint16 lac;

a guint16.

 

guint16 geran_absolute_rf_channel_number;

a guint16.

 

guint8 base_station_identity_code;

a guint8.

 

guint16 rx_level;

a guint16.

 
-
-

Since: 1.10

-
-
-
- - - \ No newline at end of file diff -Nru libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-NAS-Get-Cell-Location-Info-request.html libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-NAS-Get-Cell-Location-Info-request.html --- libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-NAS-Get-Cell-Location-Info-request.html 1970-01-01 01:00:00.000000000 +0100 +++ libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-NAS-Get-Cell-Location-Info-request.html 2019-01-08 15:19:01.000000000 +0100 @@ -0,0 +1,1598 @@ + + + + +NAS Get Cell Location Info request: libqmi-glib Reference Manual + + + + + + + + + + + + + + + + +
+
+
+ + +
+

NAS Get Cell Location Info request

+

NAS Get Cell Location Info request

+
+ + +
+

Object Hierarchy

+
    GBoxed
+    ╰── QmiMessageNasGetCellLocationInfoOutput
+
+
+
+

Description

+
+
+

Functions

+
+

qmi_message_nas_get_cell_location_info_output_ref ()

+
QmiMessageNasGetCellLocationInfoOutput *
+qmi_message_nas_get_cell_location_info_output_ref
+                               (QmiMessageNasGetCellLocationInfoOutput *self);
+

Atomically increments the reference count of self + by one.

+
+

Parameters

+
+++++ + + + + + +

self

a QmiMessageNasGetCellLocationInfoOutput.

 
+
+
+

Returns

+

the new reference to self +.

+
+

Since: 1.10

+
+
+
+

qmi_message_nas_get_cell_location_info_output_unref ()

+
void
+qmi_message_nas_get_cell_location_info_output_unref
+                               (QmiMessageNasGetCellLocationInfoOutput *self);
+

Atomically decrements the reference count of self + by one. +If the reference count drops to 0, self + is completely disposed.

+
+

Parameters

+
+++++ + + + + + +

self

a QmiMessageNasGetCellLocationInfoOutput.

 
+
+

Since: 1.10

+
+
+
+

qmi_message_nas_get_cell_location_info_output_get_umts_info_neighboring_lte ()

+
gboolean
+qmi_message_nas_get_cell_location_info_output_get_umts_info_neighboring_lte
+                               (QmiMessageNasGetCellLocationInfoOutput *self,
+                                QmiNasWcdmaRrcState *value_umts_info_neighboring_lte_rrc_state,
+                                GArray **value_umts_info_neighboring_lte_frequency,
+                                GError **error);
+

Get the 'UMTS Info Neighboring LTE' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + + + + + + +

self

a QmiMessageNasGetCellLocationInfoOutput.

 

value_umts_info_neighboring_lte_rrc_state

a placeholder for the output QmiNasWcdmaRrcState, or NULL if not required.

 

value_umts_info_neighboring_lte_frequency

a placeholder for the output GArray of QmiMessageNasGetCellLocationInfoOutputUmtsInfoNeighboringLteFrequencyElement elements, or NULL if not required. Do not free it, it is owned by self +.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.10

+
+
+
+

qmi_message_nas_get_cell_location_info_output_get_umts_cell_id ()

+
gboolean
+qmi_message_nas_get_cell_location_info_output_get_umts_cell_id
+                               (QmiMessageNasGetCellLocationInfoOutput *self,
+                                guint32 *value_umts_cell_id,
+                                GError **error);
+

Get the 'UMTS Cell ID' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageNasGetCellLocationInfoOutput.

 

value_umts_cell_id

a placeholder for the output guint32, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.10

+
+
+
+

qmi_message_nas_get_cell_location_info_output_get_lte_info_neighboring_wcdma ()

+
gboolean
+qmi_message_nas_get_cell_location_info_output_get_lte_info_neighboring_wcdma
+                               (QmiMessageNasGetCellLocationInfoOutput *self,
+                                gboolean *value_lte_info_neighboring_wcdma_ue_in_idle,
+                                GArray **value_lte_info_neighboring_wcdma_frequency,
+                                GError **error);
+

Get the 'LTE Info Neighboring WCDMA' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + + + + + + +

self

a QmiMessageNasGetCellLocationInfoOutput.

 

value_lte_info_neighboring_wcdma_ue_in_idle

a placeholder for the output gboolean, or NULL if not required.

 

value_lte_info_neighboring_wcdma_frequency

a placeholder for the output GArray of QmiMessageNasGetCellLocationInfoOutputLteInfoNeighboringWcdmaFrequencyElement elements, or NULL if not required. Do not free it, it is owned by self +.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.10

+
+
+
+

qmi_message_nas_get_cell_location_info_output_get_lte_info_neighboring_gsm ()

+
gboolean
+qmi_message_nas_get_cell_location_info_output_get_lte_info_neighboring_gsm
+                               (QmiMessageNasGetCellLocationInfoOutput *self,
+                                gboolean *value_lte_info_neighboring_gsm_ue_in_idle,
+                                GArray **value_lte_info_neighboring_gsm_frequency,
+                                GError **error);
+

Get the 'LTE Info Neighboring GSM' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + + + + + + +

self

a QmiMessageNasGetCellLocationInfoOutput.

 

value_lte_info_neighboring_gsm_ue_in_idle

a placeholder for the output gboolean, or NULL if not required.

 

value_lte_info_neighboring_gsm_frequency

a placeholder for the output GArray of QmiMessageNasGetCellLocationInfoOutputLteInfoNeighboringGsmFrequencyElement elements, or NULL if not required. Do not free it, it is owned by self +.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.10

+
+
+
+

qmi_message_nas_get_cell_location_info_output_get_interfrequency_lte_info ()

+
gboolean
+qmi_message_nas_get_cell_location_info_output_get_interfrequency_lte_info
+                               (QmiMessageNasGetCellLocationInfoOutput *self,
+                                gboolean *value_interfrequency_lte_info_ue_in_idle,
+                                GArray **value_interfrequency_lte_info_frequency,
+                                GError **error);
+

Get the 'Interfrequency LTE Info' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + + + + + + +

self

a QmiMessageNasGetCellLocationInfoOutput.

 

value_interfrequency_lte_info_ue_in_idle

a placeholder for the output gboolean, or NULL if not required.

 

value_interfrequency_lte_info_frequency

a placeholder for the output GArray of QmiMessageNasGetCellLocationInfoOutputInterfrequencyLteInfoFrequencyElement elements, or NULL if not required. Do not free it, it is owned by self +.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.10

+
+
+
+

qmi_message_nas_get_cell_location_info_output_get_intrafrequency_lte_info ()

+
gboolean
+qmi_message_nas_get_cell_location_info_output_get_intrafrequency_lte_info
+                               (QmiMessageNasGetCellLocationInfoOutput *self,
+                                gboolean *value_intrafrequency_lte_info_ue_in_idle,
+                                const gchar **value_intrafrequency_lte_info_plmn,
+                                guint16 *value_intrafrequency_lte_info_tracking_area_code,
+                                guint32 *value_intrafrequency_lte_info_global_cell_id,
+                                guint16 *value_intrafrequency_lte_info_eutra_absolute_rf_channel_number,
+                                guint16 *value_intrafrequency_lte_info_serving_cell_id,
+                                guint8 *value_intrafrequency_lte_info_cell_reselection_priority,
+                                guint8 *value_intrafrequency_lte_info_s_non_intra_search_threshold,
+                                guint8 *value_intrafrequency_lte_info_serving_cell_low_threshold,
+                                guint8 *value_intrafrequency_lte_info_s_intra_search_threshold,
+                                GArray **value_intrafrequency_lte_info_cell,
+                                GError **error);
+

Get the 'Intrafrequency LTE Info' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

self

a QmiMessageNasGetCellLocationInfoOutput.

 

value_intrafrequency_lte_info_ue_in_idle

a placeholder for the output gboolean, or NULL if not required.

 

value_intrafrequency_lte_info_plmn

a placeholder for the output constant string, or NULL if not required.

 

value_intrafrequency_lte_info_tracking_area_code

a placeholder for the output guint16, or NULL if not required.

 

value_intrafrequency_lte_info_global_cell_id

a placeholder for the output guint32, or NULL if not required.

 

value_intrafrequency_lte_info_eutra_absolute_rf_channel_number

a placeholder for the output guint16, or NULL if not required.

 

value_intrafrequency_lte_info_serving_cell_id

a placeholder for the output guint16, or NULL if not required.

 

value_intrafrequency_lte_info_cell_reselection_priority

a placeholder for the output guint8, or NULL if not required.

 

value_intrafrequency_lte_info_s_non_intra_search_threshold

a placeholder for the output guint8, or NULL if not required.

 

value_intrafrequency_lte_info_serving_cell_low_threshold

a placeholder for the output guint8, or NULL if not required.

 

value_intrafrequency_lte_info_s_intra_search_threshold

a placeholder for the output guint8, or NULL if not required.

 

value_intrafrequency_lte_info_cell

a placeholder for the output GArray of QmiMessageNasGetCellLocationInfoOutputIntrafrequencyLteInfoCellElement elements, or NULL if not required. Do not free it, it is owned by self +.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.10

+
+
+
+

qmi_message_nas_get_cell_location_info_output_get_cdma_info ()

+
gboolean
+qmi_message_nas_get_cell_location_info_output_get_cdma_info
+                               (QmiMessageNasGetCellLocationInfoOutput *self,
+                                guint16 *value_cdma_info_system_id,
+                                guint16 *value_cdma_info_network_id,
+                                guint16 *value_cdma_info_base_station_id,
+                                guint16 *value_cdma_info_reference_pn,
+                                guint32 *value_cdma_info_latitude,
+                                guint32 *value_cdma_info_longitude,
+                                GError **error);
+

Get the 'CDMA Info' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

self

a QmiMessageNasGetCellLocationInfoOutput.

 

value_cdma_info_system_id

a placeholder for the output guint16, or NULL if not required.

 

value_cdma_info_network_id

a placeholder for the output guint16, or NULL if not required.

 

value_cdma_info_base_station_id

a placeholder for the output guint16, or NULL if not required.

 

value_cdma_info_reference_pn

a placeholder for the output guint16, or NULL if not required.

 

value_cdma_info_latitude

a placeholder for the output guint32, or NULL if not required.

 

value_cdma_info_longitude

a placeholder for the output guint32, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.10

+
+
+
+

qmi_message_nas_get_cell_location_info_output_get_umts_info ()

+
gboolean
+qmi_message_nas_get_cell_location_info_output_get_umts_info
+                               (QmiMessageNasGetCellLocationInfoOutput *self,
+                                guint16 *value_umts_info_cell_id,
+                                const gchar **value_umts_info_plmn,
+                                guint16 *value_umts_info_lac,
+                                guint16 *value_umts_info_utra_absolute_rf_channel_number,
+                                guint16 *value_umts_info_primary_scrambling_code,
+                                gint16 *value_umts_info_rscp,
+                                gint16 *value_umts_info_ecio,
+                                GArray **value_umts_info_cell,
+                                GArray **value_umts_info_neighboring_geran,
+                                GError **error);
+

Get the 'UMTS Info' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

self

a QmiMessageNasGetCellLocationInfoOutput.

 

value_umts_info_cell_id

a placeholder for the output guint16, or NULL if not required.

 

value_umts_info_plmn

a placeholder for the output constant string, or NULL if not required.

 

value_umts_info_lac

a placeholder for the output guint16, or NULL if not required.

 

value_umts_info_utra_absolute_rf_channel_number

a placeholder for the output guint16, or NULL if not required.

 

value_umts_info_primary_scrambling_code

a placeholder for the output guint16, or NULL if not required.

 

value_umts_info_rscp

a placeholder for the output gint16, or NULL if not required.

 

value_umts_info_ecio

a placeholder for the output gint16, or NULL if not required.

 

value_umts_info_cell

a placeholder for the output GArray of QmiMessageNasGetCellLocationInfoOutputUmtsInfoCellElement elements, or NULL if not required. Do not free it, it is owned by self +.

 

value_umts_info_neighboring_geran

a placeholder for the output GArray of QmiMessageNasGetCellLocationInfoOutputUmtsInfoNeighboringGeranElement elements, or NULL if not required. Do not free it, it is owned by self +.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.10

+
+
+
+

qmi_message_nas_get_cell_location_info_output_get_geran_info ()

+
gboolean
+qmi_message_nas_get_cell_location_info_output_get_geran_info
+                               (QmiMessageNasGetCellLocationInfoOutput *self,
+                                guint32 *value_geran_info_cell_id,
+                                const gchar **value_geran_info_plmn,
+                                guint16 *value_geran_info_lac,
+                                guint16 *value_geran_info_geran_absolute_rf_channel_number,
+                                guint8 *value_geran_info_base_station_identity_code,
+                                guint32 *value_geran_info_timing_advance,
+                                guint16 *value_geran_info_rx_level,
+                                GArray **value_geran_info_cell,
+                                GError **error);
+

Get the 'GERAN Info' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

self

a QmiMessageNasGetCellLocationInfoOutput.

 

value_geran_info_cell_id

a placeholder for the output guint32, or NULL if not required.

 

value_geran_info_plmn

a placeholder for the output constant string, or NULL if not required.

 

value_geran_info_lac

a placeholder for the output guint16, or NULL if not required.

 

value_geran_info_geran_absolute_rf_channel_number

a placeholder for the output guint16, or NULL if not required.

 

value_geran_info_base_station_identity_code

a placeholder for the output guint8, or NULL if not required.

 

value_geran_info_timing_advance

a placeholder for the output guint32, or NULL if not required.

 

value_geran_info_rx_level

a placeholder for the output guint16, or NULL if not required.

 

value_geran_info_cell

a placeholder for the output GArray of QmiMessageNasGetCellLocationInfoOutputGeranInfoCellElement elements, or NULL if not required. Do not free it, it is owned by self +.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.10

+
+
+
+

qmi_message_nas_get_cell_location_info_output_get_result ()

+
gboolean
+qmi_message_nas_get_cell_location_info_output_get_result
+                               (QmiMessageNasGetCellLocationInfoOutput *self,
+                                GError **error);
+

Get the result of the QMI operation.

+
+

Parameters

+
+++++ + + + + + + + + + + + + +

self

a QmiMessageNasGetCellLocationInfoOutput.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the QMI operation succeeded, FALSE if error +is set.

+
+

Since: 1.10

+
+
+
+

qmi_client_nas_get_cell_location_info ()

+
void
+qmi_client_nas_get_cell_location_info (QmiClientNas *self,
+                                       gpointer unused,
+                                       guint timeout,
+                                       GCancellable *cancellable,
+                                       GAsyncReadyCallback callback,
+                                       gpointer user_data);
+

Asynchronously sends a Get Cell Location Info request to the device.

+

When the operation is finished, callback + will be invoked in the thread-default main loop of the thread you are calling this method from.

+

You can then call qmi_client_nas_get_cell_location_info_finish() to get the result of the operation.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

self

a QmiClientNas.

 

unused

NULL. This message doesn't have any input bundle.

 

timeout

maximum time to wait for the method to complete, in seconds.

 

cancellable

a GCancellable or NULL.

 

callback

a GAsyncReadyCallback to call when the request is satisfied.

 

user_data

user data to pass to callback +.

 
+
+

Since: 1.10

+
+
+
+

qmi_client_nas_get_cell_location_info_finish ()

+
QmiMessageNasGetCellLocationInfoOutput *
+qmi_client_nas_get_cell_location_info_finish
+                               (QmiClientNas *self,
+                                GAsyncResult *res,
+                                GError **error);
+

Finishes an async operation started with qmi_client_nas_get_cell_location_info().

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiClientNas.

 

res

the GAsyncResult obtained from the GAsyncReadyCallback passed to qmi_client_nas_get_cell_location_info().

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

a QmiMessageNasGetCellLocationInfoOutput, or NULL if error +is set. The returned value should be freed with qmi_message_nas_get_cell_location_info_output_unref().

+
+

Since: 1.10

+
+
+
+

Types and Values

+
+

QmiMessageNasGetCellLocationInfoOutput

+
typedef struct _QmiMessageNasGetCellLocationInfoOutput QmiMessageNasGetCellLocationInfoOutput;
+

The QmiMessageNasGetCellLocationInfoOutput structure contains private data and should only be accessed +using the provided API.

+

Since: 1.10

+
+
+
+

QmiMessageNasGetCellLocationInfoOutputUmtsInfoNeighboringLteFrequencyElement

+
typedef struct {
+    guint16 eutra_absolute_rf_channel_number;
+    guint16 physical_cell_id;
+    gfloat rsrp;
+    gfloat rsrq;
+    gint16 cell_selection_rx_level;
+    gboolean is_tdd;
+} QmiMessageNasGetCellLocationInfoOutputUmtsInfoNeighboringLteFrequencyElement;
+
+

A QmiMessageNasGetCellLocationInfoOutputUmtsInfoNeighboringLteFrequencyElement struct.

+
+

Members

+
+++++ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

guint16 eutra_absolute_rf_channel_number;

a guint16.

 

guint16 physical_cell_id;

a guint16.

 

gfloat rsrp;

a gfloat.

 

gfloat rsrq;

a gfloat.

 

gint16 cell_selection_rx_level;

a gint16.

 

gboolean is_tdd;

a gboolean.

 
+
+

Since: 1.10

+
+
+
+

QmiMessageNasGetCellLocationInfoOutputLteInfoNeighboringWcdmaFrequencyElementCellElement

+
typedef struct {
+    guint16 primary_scrambling_code;
+    gint16 cpich_rscp;
+    gint16 cpich_ecno;
+    gint16 cell_selection_rx_level;
+} QmiMessageNasGetCellLocationInfoOutputLteInfoNeighboringWcdmaFrequencyElementCellElement;
+
+

A QmiMessageNasGetCellLocationInfoOutputLteInfoNeighboringWcdmaFrequencyElementCellElement struct.

+
+

Members

+
+++++ + + + + + + + + + + + + + + + + + + + + + + +

guint16 primary_scrambling_code;

a guint16.

 

gint16 cpich_rscp;

a gint16.

 

gint16 cpich_ecno;

a gint16.

 

gint16 cell_selection_rx_level;

a gint16.

 
+
+

Since: 1.10

+
+
+
+

QmiMessageNasGetCellLocationInfoOutputLteInfoNeighboringWcdmaFrequencyElement

+
typedef struct {
+    guint16 utra_absolute_rf_channel_number;
+    guint8 cell_reselection_priority;
+    guint16 cell_reselection_high_threshold;
+    guint16 cell_reselection_low_threshold;
+    GArray *cell;
+} QmiMessageNasGetCellLocationInfoOutputLteInfoNeighboringWcdmaFrequencyElement;
+
+

A QmiMessageNasGetCellLocationInfoOutputLteInfoNeighboringWcdmaFrequencyElement struct.

+
+

Members

+
+++++ + + + + + + + + + + + + + + + + + + + + + + + + + + + +

guint16 utra_absolute_rf_channel_number;

a guint16.

 

guint8 cell_reselection_priority;

a guint8.

 

guint16 cell_reselection_high_threshold;

a guint16.

 

guint16 cell_reselection_low_threshold;

a guint16.

 

GArray *cell;

a GArray of QmiMessageNasGetCellLocationInfoOutputLteInfoNeighboringWcdmaFrequencyElementCellElement elements.

 
+
+

Since: 1.10

+
+
+
+

QmiMessageNasGetCellLocationInfoOutputLteInfoNeighboringGsmFrequencyElementCellElement

+
typedef struct {
+    guint16 geran_absolute_rf_channel_number;
+    gboolean band_is_1900;
+    gboolean cell_id_valid;
+    guint8 base_station_identity_code;
+    gint16 rssi;
+    gint16 cell_selection_rx_level;
+} QmiMessageNasGetCellLocationInfoOutputLteInfoNeighboringGsmFrequencyElementCellElement;
+
+

A QmiMessageNasGetCellLocationInfoOutputLteInfoNeighboringGsmFrequencyElementCellElement struct.

+
+

Members

+
+++++ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

guint16 geran_absolute_rf_channel_number;

a guint16.

 

gboolean band_is_1900;

a gboolean.

 

gboolean cell_id_valid;

a gboolean.

 

guint8 base_station_identity_code;

a guint8.

 

gint16 rssi;

a gint16.

 

gint16 cell_selection_rx_level;

a gint16.

 
+
+

Since: 1.10

+
+
+
+

QmiMessageNasGetCellLocationInfoOutputLteInfoNeighboringGsmFrequencyElement

+
typedef struct {
+    guint8 cell_reselection_priority;
+    guint8 cell_reselection_high_threshold;
+    guint8 cell_reselection_low_threshold;
+    guint8 ncc_permitted;
+    GArray *cell;
+} QmiMessageNasGetCellLocationInfoOutputLteInfoNeighboringGsmFrequencyElement;
+
+

A QmiMessageNasGetCellLocationInfoOutputLteInfoNeighboringGsmFrequencyElement struct.

+
+

Members

+
+++++ + + + + + + + + + + + + + + + + + + + + + + + + + + + +

guint8 cell_reselection_priority;

a guint8.

 

guint8 cell_reselection_high_threshold;

a guint8.

 

guint8 cell_reselection_low_threshold;

a guint8.

 

guint8 ncc_permitted;

a guint8.

 

GArray *cell;

a GArray of QmiMessageNasGetCellLocationInfoOutputLteInfoNeighboringGsmFrequencyElementCellElement elements.

 
+
+

Since: 1.10

+
+
+
+

QmiMessageNasGetCellLocationInfoOutputInterfrequencyLteInfoFrequencyElementCellElement

+
typedef struct {
+    guint16 physical_cell_id;
+    gint16 rsrq;
+    gint16 rsrp;
+    gint16 rssi;
+    gint16 cell_selection_rx_level;
+} QmiMessageNasGetCellLocationInfoOutputInterfrequencyLteInfoFrequencyElementCellElement;
+
+

A QmiMessageNasGetCellLocationInfoOutputInterfrequencyLteInfoFrequencyElementCellElement struct.

+
+

Members

+
+++++ + + + + + + + + + + + + + + + + + + + + + + + + + + + +

guint16 physical_cell_id;

a guint16.

 

gint16 rsrq;

a gint16.

 

gint16 rsrp;

a gint16.

 

gint16 rssi;

a gint16.

 

gint16 cell_selection_rx_level;

a gint16.

 
+
+

Since: 1.10

+
+
+
+

QmiMessageNasGetCellLocationInfoOutputInterfrequencyLteInfoFrequencyElement

+
typedef struct {
+    guint16 eutra_absolute_rf_channel_number;
+    guint8 cell_selection_rx_level_low_threshold;
+    guint8 cell_selection_rx_level_high_threshold;
+    guint8 cell_reselection_priority;
+    GArray *cell;
+} QmiMessageNasGetCellLocationInfoOutputInterfrequencyLteInfoFrequencyElement;
+
+

A QmiMessageNasGetCellLocationInfoOutputInterfrequencyLteInfoFrequencyElement struct.

+
+

Members

+
+++++ + + + + + + + + + + + + + + + + + + + + + + + + + + + +

guint16 eutra_absolute_rf_channel_number;

a guint16.

 

guint8 cell_selection_rx_level_low_threshold;

a guint8.

 

guint8 cell_selection_rx_level_high_threshold;

a guint8.

 

guint8 cell_reselection_priority;

a guint8.

 

GArray *cell;

a GArray of QmiMessageNasGetCellLocationInfoOutputInterfrequencyLteInfoFrequencyElementCellElement elements.

 
+
+

Since: 1.10

+
+
+
+

QmiMessageNasGetCellLocationInfoOutputIntrafrequencyLteInfoCellElement

+
typedef struct {
+    guint16 physical_cell_id;
+    gint16 rsrq;
+    gint16 rsrp;
+    gint16 rssi;
+    gint16 cell_selection_rx_level;
+} QmiMessageNasGetCellLocationInfoOutputIntrafrequencyLteInfoCellElement;
+
+

A QmiMessageNasGetCellLocationInfoOutputIntrafrequencyLteInfoCellElement struct.

+
+

Members

+
+++++ + + + + + + + + + + + + + + + + + + + + + + + + + + + +

guint16 physical_cell_id;

a guint16.

 

gint16 rsrq;

a gint16.

 

gint16 rsrp;

a gint16.

 

gint16 rssi;

a gint16.

 

gint16 cell_selection_rx_level;

a gint16.

 
+
+

Since: 1.10

+
+
+
+

QmiMessageNasGetCellLocationInfoOutputUmtsInfoCellElement

+
typedef struct {
+    guint16 utra_absolute_rf_channel_number;
+    guint16 primary_scrambling_code;
+    gint16 rscp;
+    gint16 ecio;
+} QmiMessageNasGetCellLocationInfoOutputUmtsInfoCellElement;
+
+

A QmiMessageNasGetCellLocationInfoOutputUmtsInfoCellElement struct.

+
+

Members

+
+++++ + + + + + + + + + + + + + + + + + + + + + + +

guint16 utra_absolute_rf_channel_number;

a guint16.

 

guint16 primary_scrambling_code;

a guint16.

 

gint16 rscp;

a gint16.

 

gint16 ecio;

a gint16.

 
+
+

Since: 1.10

+
+
+
+

QmiMessageNasGetCellLocationInfoOutputUmtsInfoNeighboringGeranElement

+
typedef struct {
+    guint16 geran_absolute_rf_channel_number;
+    guint8 network_color_code;
+    guint8 base_station_color_code;
+    gint16 rssi;
+} QmiMessageNasGetCellLocationInfoOutputUmtsInfoNeighboringGeranElement;
+
+

A QmiMessageNasGetCellLocationInfoOutputUmtsInfoNeighboringGeranElement struct.

+
+

Members

+
+++++ + + + + + + + + + + + + + + + + + + + + + + +

guint16 geran_absolute_rf_channel_number;

a guint16.

 

guint8 network_color_code;

a guint8.

 

guint8 base_station_color_code;

a guint8.

 

gint16 rssi;

a gint16.

 
+
+

Since: 1.10

+
+
+
+

QmiMessageNasGetCellLocationInfoOutputGeranInfoCellElement

+
typedef struct {
+    guint32 cell_id;
+    gchar *plmn;
+    guint16 lac;
+    guint16 geran_absolute_rf_channel_number;
+    guint8 base_station_identity_code;
+    guint16 rx_level;
+} QmiMessageNasGetCellLocationInfoOutputGeranInfoCellElement;
+
+

A QmiMessageNasGetCellLocationInfoOutputGeranInfoCellElement struct.

+
+

Members

+
+++++ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

guint32 cell_id;

a guint32.

 

gchar *plmn;

a string of exactly 3 characters.

 

guint16 lac;

a guint16.

 

guint16 geran_absolute_rf_channel_number;

a guint16.

 

guint8 base_station_identity_code;

a guint8.

 

guint16 rx_level;

a guint16.

 
+
+

Since: 1.10

+
+
+
+ + + \ No newline at end of file diff -Nru libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-NAS-Get-Home-Network.html libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-NAS-Get-Home-Network.html --- libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-NAS-Get-Home-Network.html 2017-03-22 12:28:29.000000000 +0100 +++ libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-NAS-Get-Home-Network.html 1970-01-01 01:00:00.000000000 +0100 @@ -1,572 +0,0 @@ - - - - -NAS Get Home Network: libqmi-glib Reference Manual - - - - - - - - - - - - - - - - -
-
-
- - -
-

NAS Get Home Network

-

NAS Get Home Network

-
- -
-

Types and Values

- -
-
-

Object Hierarchy

-
    GBoxed
-    ╰── QmiMessageNasGetHomeNetworkOutput
-
-
-
-

Description

-
-
-

Functions

-
-

qmi_message_nas_get_home_network_output_ref ()

-
QmiMessageNasGetHomeNetworkOutput *
-qmi_message_nas_get_home_network_output_ref
-                               (QmiMessageNasGetHomeNetworkOutput *self);
-

Atomically increments the reference count of self - by one.

-
-

Parameters

-
----- - - - - - -

self

a QmiMessageNasGetHomeNetworkOutput.

 
-
-
-

Returns

-

the new reference to self -.

-
-

Since: 1.0

-
-
-
-

qmi_message_nas_get_home_network_output_unref ()

-
void
-qmi_message_nas_get_home_network_output_unref
-                               (QmiMessageNasGetHomeNetworkOutput *self);
-

Atomically decrements the reference count of self - by one. -If the reference count drops to 0, self - is completely disposed.

-
-

Parameters

-
----- - - - - - -

self

a QmiMessageNasGetHomeNetworkOutput.

 
-
-

Since: 1.0

-
-
-
-

qmi_message_nas_get_home_network_output_get_home_network_3gpp_mnc ()

-
gboolean
-qmi_message_nas_get_home_network_output_get_home_network_3gpp_mnc
-                               (QmiMessageNasGetHomeNetworkOutput *self,
-                                gboolean *value_home_network_3gpp_mnc_is_3gpp,
-                                gboolean *value_home_network_3gpp_mnc_includes_pcs_digit,
-                                GError **error);
-

Get the 'Home Network 3GPP MNC' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - - - - - - -

self

a QmiMessageNasGetHomeNetworkOutput.

 

value_home_network_3gpp_mnc_is_3gpp

a placeholder for the output gboolean, or NULL if not required.

 

value_home_network_3gpp_mnc_includes_pcs_digit

a placeholder for the output gboolean, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.0

-
-
-
-

qmi_message_nas_get_home_network_output_get_home_network_3gpp2 ()

-
gboolean
-qmi_message_nas_get_home_network_output_get_home_network_3gpp2
-                               (QmiMessageNasGetHomeNetworkOutput *self,
-                                guint16 *value_home_network_3gpp2_mcc,
-                                guint16 *value_home_network_3gpp2_mnc,
-                                QmiNasNetworkDescriptionDisplay *value_home_network_3gpp2_display_description,
-                                QmiNasNetworkDescriptionEncoding *value_home_network_3gpp2_description_encoding,
-                                const gchar **value_home_network_3gpp2_description,
-                                GError **error);
-

Get the 'Home Network 3GPP2' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

self

a QmiMessageNasGetHomeNetworkOutput.

 

value_home_network_3gpp2_mcc

a placeholder for the output guint16, or NULL if not required.

 

value_home_network_3gpp2_mnc

a placeholder for the output guint16, or NULL if not required.

 

value_home_network_3gpp2_display_description

a placeholder for the output QmiNasNetworkDescriptionDisplay, or NULL if not required.

 

value_home_network_3gpp2_description_encoding

a placeholder for the output QmiNasNetworkDescriptionEncoding, or NULL if not required.

 

value_home_network_3gpp2_description

a placeholder for the output constant string, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.0

-
-
-
-

qmi_message_nas_get_home_network_output_get_home_system_id ()

-
gboolean
-qmi_message_nas_get_home_network_output_get_home_system_id
-                               (QmiMessageNasGetHomeNetworkOutput *self,
-                                guint16 *value_home_system_id_sid,
-                                guint16 *value_home_system_id_nid,
-                                GError **error);
-

Get the 'Home System ID' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - - - - - - -

self

a QmiMessageNasGetHomeNetworkOutput.

 

value_home_system_id_sid

a placeholder for the output guint16, or NULL if not required.

 

value_home_system_id_nid

a placeholder for the output guint16, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.0

-
-
-
-

qmi_message_nas_get_home_network_output_get_result ()

-
gboolean
-qmi_message_nas_get_home_network_output_get_result
-                               (QmiMessageNasGetHomeNetworkOutput *self,
-                                GError **error);
-

Get the result of the QMI operation.

-
-

Parameters

-
----- - - - - - - - - - - - - -

self

a QmiMessageNasGetHomeNetworkOutput.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the QMI operation succeeded, FALSE if error -is set.

-
-

Since: 1.0

-
-
-
-

qmi_message_nas_get_home_network_output_get_home_network ()

-
gboolean
-qmi_message_nas_get_home_network_output_get_home_network
-                               (QmiMessageNasGetHomeNetworkOutput *self,
-                                guint16 *value_home_network_mcc,
-                                guint16 *value_home_network_mnc,
-                                const gchar **value_home_network_description,
-                                GError **error);
-

Get the 'Home Network' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - - - - - - - - - - - -

self

a QmiMessageNasGetHomeNetworkOutput.

 

value_home_network_mcc

a placeholder for the output guint16, or NULL if not required.

 

value_home_network_mnc

a placeholder for the output guint16, or NULL if not required.

 

value_home_network_description

a placeholder for the output constant string, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.0

-
-
-
-

qmi_client_nas_get_home_network ()

-
void
-qmi_client_nas_get_home_network (QmiClientNas *self,
-                                 gpointer unused,
-                                 guint timeout,
-                                 GCancellable *cancellable,
-                                 GAsyncReadyCallback callback,
-                                 gpointer user_data);
-

Asynchronously sends a Get Home Network request to the device.

-

When the operation is finished, callback - will be invoked in the thread-default main loop of the thread you are calling this method from.

-

You can then call qmi_client_nas_get_home_network_finish() to get the result of the operation.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

self

a QmiClientNas.

 

unused

NULL. This message doesn't have any input bundle.

 

timeout

maximum time to wait for the method to complete, in seconds.

 

cancellable

a GCancellable or NULL.

 

callback

a GAsyncReadyCallback to call when the request is satisfied.

 

user_data

user data to pass to callback -.

 
-
-

Since: 1.0

-
-
-
-

qmi_client_nas_get_home_network_finish ()

-
QmiMessageNasGetHomeNetworkOutput *
-qmi_client_nas_get_home_network_finish
-                               (QmiClientNas *self,
-                                GAsyncResult *res,
-                                GError **error);
-

Finishes an async operation started with qmi_client_nas_get_home_network().

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiClientNas.

 

res

the GAsyncResult obtained from the GAsyncReadyCallback passed to qmi_client_nas_get_home_network().

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

a QmiMessageNasGetHomeNetworkOutput, or NULL if error -is set. The returned value should be freed with qmi_message_nas_get_home_network_output_unref().

-
-

Since: 1.0

-
-
-
-

Types and Values

-
-

QmiMessageNasGetHomeNetworkOutput

-
typedef struct _QmiMessageNasGetHomeNetworkOutput QmiMessageNasGetHomeNetworkOutput;
-

The QmiMessageNasGetHomeNetworkOutput structure contains private data and should only be accessed -using the provided API.

-

Since: 1.0

-
-
-
- - - \ No newline at end of file diff -Nru libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-NAS-Get-Home-Network-request.html libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-NAS-Get-Home-Network-request.html --- libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-NAS-Get-Home-Network-request.html 1970-01-01 01:00:00.000000000 +0100 +++ libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-NAS-Get-Home-Network-request.html 2019-01-08 15:19:01.000000000 +0100 @@ -0,0 +1,572 @@ + + + + +NAS Get Home Network request: libqmi-glib Reference Manual + + + + + + + + + + + + + + + + +
+
+
+ + +
+

NAS Get Home Network request

+

NAS Get Home Network request

+
+ +
+

Types and Values

+ +
+
+

Object Hierarchy

+
    GBoxed
+    ╰── QmiMessageNasGetHomeNetworkOutput
+
+
+
+

Description

+
+
+

Functions

+
+

qmi_message_nas_get_home_network_output_ref ()

+
QmiMessageNasGetHomeNetworkOutput *
+qmi_message_nas_get_home_network_output_ref
+                               (QmiMessageNasGetHomeNetworkOutput *self);
+

Atomically increments the reference count of self + by one.

+
+

Parameters

+
+++++ + + + + + +

self

a QmiMessageNasGetHomeNetworkOutput.

 
+
+
+

Returns

+

the new reference to self +.

+
+

Since: 1.0

+
+
+
+

qmi_message_nas_get_home_network_output_unref ()

+
void
+qmi_message_nas_get_home_network_output_unref
+                               (QmiMessageNasGetHomeNetworkOutput *self);
+

Atomically decrements the reference count of self + by one. +If the reference count drops to 0, self + is completely disposed.

+
+

Parameters

+
+++++ + + + + + +

self

a QmiMessageNasGetHomeNetworkOutput.

 
+
+

Since: 1.0

+
+
+
+

qmi_message_nas_get_home_network_output_get_home_network_3gpp_mnc ()

+
gboolean
+qmi_message_nas_get_home_network_output_get_home_network_3gpp_mnc
+                               (QmiMessageNasGetHomeNetworkOutput *self,
+                                gboolean *value_home_network_3gpp_mnc_is_3gpp,
+                                gboolean *value_home_network_3gpp_mnc_includes_pcs_digit,
+                                GError **error);
+

Get the 'Home Network 3GPP MNC' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + + + + + + +

self

a QmiMessageNasGetHomeNetworkOutput.

 

value_home_network_3gpp_mnc_is_3gpp

a placeholder for the output gboolean, or NULL if not required.

 

value_home_network_3gpp_mnc_includes_pcs_digit

a placeholder for the output gboolean, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.0

+
+
+
+

qmi_message_nas_get_home_network_output_get_home_network_3gpp2 ()

+
gboolean
+qmi_message_nas_get_home_network_output_get_home_network_3gpp2
+                               (QmiMessageNasGetHomeNetworkOutput *self,
+                                guint16 *value_home_network_3gpp2_mcc,
+                                guint16 *value_home_network_3gpp2_mnc,
+                                QmiNasNetworkDescriptionDisplay *value_home_network_3gpp2_display_description,
+                                QmiNasNetworkDescriptionEncoding *value_home_network_3gpp2_description_encoding,
+                                const gchar **value_home_network_3gpp2_description,
+                                GError **error);
+

Get the 'Home Network 3GPP2' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

self

a QmiMessageNasGetHomeNetworkOutput.

 

value_home_network_3gpp2_mcc

a placeholder for the output guint16, or NULL if not required.

 

value_home_network_3gpp2_mnc

a placeholder for the output guint16, or NULL if not required.

 

value_home_network_3gpp2_display_description

a placeholder for the output QmiNasNetworkDescriptionDisplay, or NULL if not required.

 

value_home_network_3gpp2_description_encoding

a placeholder for the output QmiNasNetworkDescriptionEncoding, or NULL if not required.

 

value_home_network_3gpp2_description

a placeholder for the output constant string, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.0

+
+
+
+

qmi_message_nas_get_home_network_output_get_home_system_id ()

+
gboolean
+qmi_message_nas_get_home_network_output_get_home_system_id
+                               (QmiMessageNasGetHomeNetworkOutput *self,
+                                guint16 *value_home_system_id_sid,
+                                guint16 *value_home_system_id_nid,
+                                GError **error);
+

Get the 'Home System ID' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + + + + + + +

self

a QmiMessageNasGetHomeNetworkOutput.

 

value_home_system_id_sid

a placeholder for the output guint16, or NULL if not required.

 

value_home_system_id_nid

a placeholder for the output guint16, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.0

+
+
+
+

qmi_message_nas_get_home_network_output_get_result ()

+
gboolean
+qmi_message_nas_get_home_network_output_get_result
+                               (QmiMessageNasGetHomeNetworkOutput *self,
+                                GError **error);
+

Get the result of the QMI operation.

+
+

Parameters

+
+++++ + + + + + + + + + + + + +

self

a QmiMessageNasGetHomeNetworkOutput.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the QMI operation succeeded, FALSE if error +is set.

+
+

Since: 1.0

+
+
+
+

qmi_message_nas_get_home_network_output_get_home_network ()

+
gboolean
+qmi_message_nas_get_home_network_output_get_home_network
+                               (QmiMessageNasGetHomeNetworkOutput *self,
+                                guint16 *value_home_network_mcc,
+                                guint16 *value_home_network_mnc,
+                                const gchar **value_home_network_description,
+                                GError **error);
+

Get the 'Home Network' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + + + + + + + + + + + +

self

a QmiMessageNasGetHomeNetworkOutput.

 

value_home_network_mcc

a placeholder for the output guint16, or NULL if not required.

 

value_home_network_mnc

a placeholder for the output guint16, or NULL if not required.

 

value_home_network_description

a placeholder for the output constant string, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.0

+
+
+
+

qmi_client_nas_get_home_network ()

+
void
+qmi_client_nas_get_home_network (QmiClientNas *self,
+                                 gpointer unused,
+                                 guint timeout,
+                                 GCancellable *cancellable,
+                                 GAsyncReadyCallback callback,
+                                 gpointer user_data);
+

Asynchronously sends a Get Home Network request to the device.

+

When the operation is finished, callback + will be invoked in the thread-default main loop of the thread you are calling this method from.

+

You can then call qmi_client_nas_get_home_network_finish() to get the result of the operation.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

self

a QmiClientNas.

 

unused

NULL. This message doesn't have any input bundle.

 

timeout

maximum time to wait for the method to complete, in seconds.

 

cancellable

a GCancellable or NULL.

 

callback

a GAsyncReadyCallback to call when the request is satisfied.

 

user_data

user data to pass to callback +.

 
+
+

Since: 1.0

+
+
+
+

qmi_client_nas_get_home_network_finish ()

+
QmiMessageNasGetHomeNetworkOutput *
+qmi_client_nas_get_home_network_finish
+                               (QmiClientNas *self,
+                                GAsyncResult *res,
+                                GError **error);
+

Finishes an async operation started with qmi_client_nas_get_home_network().

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiClientNas.

 

res

the GAsyncResult obtained from the GAsyncReadyCallback passed to qmi_client_nas_get_home_network().

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

a QmiMessageNasGetHomeNetworkOutput, or NULL if error +is set. The returned value should be freed with qmi_message_nas_get_home_network_output_unref().

+
+

Since: 1.0

+
+
+
+

Types and Values

+
+

QmiMessageNasGetHomeNetworkOutput

+
typedef struct _QmiMessageNasGetHomeNetworkOutput QmiMessageNasGetHomeNetworkOutput;
+

The QmiMessageNasGetHomeNetworkOutput structure contains private data and should only be accessed +using the provided API.

+

Since: 1.0

+
+
+
+ + + \ No newline at end of file diff -Nru libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-NAS-Get-LTE-Cphy-CA-Info.html libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-NAS-Get-LTE-Cphy-CA-Info.html --- libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-NAS-Get-LTE-Cphy-CA-Info.html 2017-03-22 12:28:29.000000000 +0100 +++ libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-NAS-Get-LTE-Cphy-CA-Info.html 1970-01-01 01:00:00.000000000 +0100 @@ -1,566 +0,0 @@ - - - - -NAS Get LTE Cphy CA Info: libqmi-glib Reference Manual - - - - - - - - - - - - - - - - -
-
-
- - -
-

NAS Get LTE Cphy CA Info

-

NAS Get LTE Cphy CA Info

-
- -
-

Types and Values

- -
-
-

Object Hierarchy

-
    GBoxed
-    ╰── QmiMessageNasGetLteCphyCaInfoOutput
-
-
-
-

Description

-
-
-

Functions

-
-

qmi_message_nas_get_lte_cphy_ca_info_output_ref ()

-
QmiMessageNasGetLteCphyCaInfoOutput *
-qmi_message_nas_get_lte_cphy_ca_info_output_ref
-                               (QmiMessageNasGetLteCphyCaInfoOutput *self);
-

Atomically increments the reference count of self - by one.

-
-

Parameters

-
----- - - - - - -

self

a QmiMessageNasGetLteCphyCaInfoOutput.

 
-
-
-

Returns

-

the new reference to self -.

-
-

Since: 1.16

-
-
-
-

qmi_message_nas_get_lte_cphy_ca_info_output_unref ()

-
void
-qmi_message_nas_get_lte_cphy_ca_info_output_unref
-                               (QmiMessageNasGetLteCphyCaInfoOutput *self);
-

Atomically decrements the reference count of self - by one. -If the reference count drops to 0, self - is completely disposed.

-
-

Parameters

-
----- - - - - - -

self

a QmiMessageNasGetLteCphyCaInfoOutput.

 
-
-

Since: 1.16

-
-
-
-

qmi_message_nas_get_lte_cphy_ca_info_output_get_result ()

-
gboolean
-qmi_message_nas_get_lte_cphy_ca_info_output_get_result
-                               (QmiMessageNasGetLteCphyCaInfoOutput *self,
-                                GError **error);
-

Get the result of the QMI operation.

-
-

Parameters

-
----- - - - - - - - - - - - - -

self

a QmiMessageNasGetLteCphyCaInfoOutput.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the QMI operation succeeded, FALSE if error -is set.

-
-

Since: 1.16

-
-
-
-

qmi_message_nas_get_lte_cphy_ca_info_output_get_dl_bandwidth ()

-
gboolean
-qmi_message_nas_get_lte_cphy_ca_info_output_get_dl_bandwidth
-                               (QmiMessageNasGetLteCphyCaInfoOutput *self,
-                                QmiNasDLBandwidth *value_dl_bandwidth,
-                                GError **error);
-

Get the 'DL Bandwidth' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessageNasGetLteCphyCaInfoOutput.

 

value_dl_bandwidth

a placeholder for the output QmiNasDLBandwidth, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.16

-
-
-
-

qmi_message_nas_get_lte_cphy_ca_info_output_get_phy_ca_agg_scell_info ()

-
gboolean
-qmi_message_nas_get_lte_cphy_ca_info_output_get_phy_ca_agg_scell_info
-                               (QmiMessageNasGetLteCphyCaInfoOutput *self,
-                                guint16 *value_phy_ca_agg_scell_info_physical_cell_id,
-                                guint16 *value_phy_ca_agg_scell_info_rx_channel,
-                                QmiNasDLBandwidth *value_phy_ca_agg_scell_info_dl_bandwidth,
-                                QmiNasActiveBand *value_phy_ca_agg_scell_info_lte_band,
-                                QmiNasScellState *value_phy_ca_agg_scell_info_state,
-                                GError **error);
-

Get the 'Phy CA Agg SCell Info' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

self

a QmiMessageNasGetLteCphyCaInfoOutput.

 

value_phy_ca_agg_scell_info_physical_cell_id

a placeholder for the output guint16, or NULL if not required.

 

value_phy_ca_agg_scell_info_rx_channel

a placeholder for the output guint16, or NULL if not required.

 

value_phy_ca_agg_scell_info_dl_bandwidth

a placeholder for the output QmiNasDLBandwidth, or NULL if not required.

 

value_phy_ca_agg_scell_info_lte_band

a placeholder for the output QmiNasActiveBand, or NULL if not required.

 

value_phy_ca_agg_scell_info_state

a placeholder for the output QmiNasScellState, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.16

-
-
-
-

qmi_message_nas_get_lte_cphy_ca_info_output_get_phy_ca_agg_pcell_info ()

-
gboolean
-qmi_message_nas_get_lte_cphy_ca_info_output_get_phy_ca_agg_pcell_info
-                               (QmiMessageNasGetLteCphyCaInfoOutput *self,
-                                guint16 *value_phy_ca_agg_pcell_info_physical_cell_id,
-                                guint16 *value_phy_ca_agg_pcell_info_rx_channel,
-                                QmiNasDLBandwidth *value_phy_ca_agg_pcell_info_dl_bandwidth,
-                                QmiNasActiveBand *value_phy_ca_agg_pcell_info_lte_band,
-                                GError **error);
-

Get the 'Phy CA Agg PCell Info' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

self

a QmiMessageNasGetLteCphyCaInfoOutput.

 

value_phy_ca_agg_pcell_info_physical_cell_id

a placeholder for the output guint16, or NULL if not required.

 

value_phy_ca_agg_pcell_info_rx_channel

a placeholder for the output guint16, or NULL if not required.

 

value_phy_ca_agg_pcell_info_dl_bandwidth

a placeholder for the output QmiNasDLBandwidth, or NULL if not required.

 

value_phy_ca_agg_pcell_info_lte_band

a placeholder for the output QmiNasActiveBand, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.16

-
-
-
-

qmi_message_nas_get_lte_cphy_ca_info_output_get_scell_index ()

-
gboolean
-qmi_message_nas_get_lte_cphy_ca_info_output_get_scell_index
-                               (QmiMessageNasGetLteCphyCaInfoOutput *self,
-                                guint8 *value_scell_index,
-                                GError **error);
-

Get the 'SCell index' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessageNasGetLteCphyCaInfoOutput.

 

value_scell_index

a placeholder for the output guint8, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.16

-
-
-
-

qmi_client_nas_get_lte_cphy_ca_info ()

-
void
-qmi_client_nas_get_lte_cphy_ca_info (QmiClientNas *self,
-                                     gpointer unused,
-                                     guint timeout,
-                                     GCancellable *cancellable,
-                                     GAsyncReadyCallback callback,
-                                     gpointer user_data);
-

Asynchronously sends a Get LTE Cphy CA Info request to the device.

-

When the operation is finished, callback - will be invoked in the thread-default main loop of the thread you are calling this method from.

-

You can then call qmi_client_nas_get_lte_cphy_ca_info_finish() to get the result of the operation.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

self

a QmiClientNas.

 

unused

NULL. This message doesn't have any input bundle.

 

timeout

maximum time to wait for the method to complete, in seconds.

 

cancellable

a GCancellable or NULL.

 

callback

a GAsyncReadyCallback to call when the request is satisfied.

 

user_data

user data to pass to callback -.

 
-
-

Since: 1.16

-
-
-
-

qmi_client_nas_get_lte_cphy_ca_info_finish ()

-
QmiMessageNasGetLteCphyCaInfoOutput *
-qmi_client_nas_get_lte_cphy_ca_info_finish
-                               (QmiClientNas *self,
-                                GAsyncResult *res,
-                                GError **error);
-

Finishes an async operation started with qmi_client_nas_get_lte_cphy_ca_info().

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiClientNas.

 

res

the GAsyncResult obtained from the GAsyncReadyCallback passed to qmi_client_nas_get_lte_cphy_ca_info().

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

a QmiMessageNasGetLteCphyCaInfoOutput, or NULL if error -is set. The returned value should be freed with qmi_message_nas_get_lte_cphy_ca_info_output_unref().

-
-

Since: 1.16

-
-
-
-

Types and Values

-
-

QmiMessageNasGetLteCphyCaInfoOutput

-
typedef struct _QmiMessageNasGetLteCphyCaInfoOutput QmiMessageNasGetLteCphyCaInfoOutput;
-

The QmiMessageNasGetLteCphyCaInfoOutput structure contains private data and should only be accessed -using the provided API.

-

Since: 1.16

-
-
-
- - - \ No newline at end of file diff -Nru libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-NAS-Get-LTE-Cphy-CA-Info-request.html libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-NAS-Get-LTE-Cphy-CA-Info-request.html --- libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-NAS-Get-LTE-Cphy-CA-Info-request.html 1970-01-01 01:00:00.000000000 +0100 +++ libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-NAS-Get-LTE-Cphy-CA-Info-request.html 2019-01-08 15:19:01.000000000 +0100 @@ -0,0 +1,681 @@ + + + + +NAS Get LTE Cphy CA Info request: libqmi-glib Reference Manual + + + + + + + + + + + + + + + + +
+
+
+ + +
+

NAS Get LTE Cphy CA Info request

+

NAS Get LTE Cphy CA Info request

+
+ + +
+

Object Hierarchy

+
    GBoxed
+    ╰── QmiMessageNasGetLteCphyCaInfoOutput
+
+
+
+

Description

+
+
+

Functions

+
+

qmi_message_nas_get_lte_cphy_ca_info_output_ref ()

+
QmiMessageNasGetLteCphyCaInfoOutput *
+qmi_message_nas_get_lte_cphy_ca_info_output_ref
+                               (QmiMessageNasGetLteCphyCaInfoOutput *self);
+

Atomically increments the reference count of self + by one.

+
+

Parameters

+
+++++ + + + + + +

self

a QmiMessageNasGetLteCphyCaInfoOutput.

 
+
+
+

Returns

+

the new reference to self +.

+
+

Since: 1.16

+
+
+
+

qmi_message_nas_get_lte_cphy_ca_info_output_unref ()

+
void
+qmi_message_nas_get_lte_cphy_ca_info_output_unref
+                               (QmiMessageNasGetLteCphyCaInfoOutput *self);
+

Atomically decrements the reference count of self + by one. +If the reference count drops to 0, self + is completely disposed.

+
+

Parameters

+
+++++ + + + + + +

self

a QmiMessageNasGetLteCphyCaInfoOutput.

 
+
+

Since: 1.16

+
+
+
+

qmi_message_nas_get_lte_cphy_ca_info_output_get_result ()

+
gboolean
+qmi_message_nas_get_lte_cphy_ca_info_output_get_result
+                               (QmiMessageNasGetLteCphyCaInfoOutput *self,
+                                GError **error);
+

Get the result of the QMI operation.

+
+

Parameters

+
+++++ + + + + + + + + + + + + +

self

a QmiMessageNasGetLteCphyCaInfoOutput.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the QMI operation succeeded, FALSE if error +is set.

+
+

Since: 1.16

+
+
+
+

qmi_message_nas_get_lte_cphy_ca_info_output_get_dl_bandwidth ()

+
gboolean
+qmi_message_nas_get_lte_cphy_ca_info_output_get_dl_bandwidth
+                               (QmiMessageNasGetLteCphyCaInfoOutput *self,
+                                QmiNasDLBandwidth *value_dl_bandwidth,
+                                GError **error);
+

Get the 'DL Bandwidth' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageNasGetLteCphyCaInfoOutput.

 

value_dl_bandwidth

a placeholder for the output QmiNasDLBandwidth, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.16

+
+
+
+

qmi_message_nas_get_lte_cphy_ca_info_output_get_phy_ca_agg_scell_info ()

+
gboolean
+qmi_message_nas_get_lte_cphy_ca_info_output_get_phy_ca_agg_scell_info
+                               (QmiMessageNasGetLteCphyCaInfoOutput *self,
+                                guint16 *value_phy_ca_agg_scell_info_physical_cell_id,
+                                guint16 *value_phy_ca_agg_scell_info_rx_channel,
+                                QmiNasDLBandwidth *value_phy_ca_agg_scell_info_dl_bandwidth,
+                                QmiNasActiveBand *value_phy_ca_agg_scell_info_lte_band,
+                                QmiNasScellState *value_phy_ca_agg_scell_info_state,
+                                GError **error);
+

Get the 'Phy CA Agg SCell Info' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

self

a QmiMessageNasGetLteCphyCaInfoOutput.

 

value_phy_ca_agg_scell_info_physical_cell_id

a placeholder for the output guint16, or NULL if not required.

 

value_phy_ca_agg_scell_info_rx_channel

a placeholder for the output guint16, or NULL if not required.

 

value_phy_ca_agg_scell_info_dl_bandwidth

a placeholder for the output QmiNasDLBandwidth, or NULL if not required.

 

value_phy_ca_agg_scell_info_lte_band

a placeholder for the output QmiNasActiveBand, or NULL if not required.

 

value_phy_ca_agg_scell_info_state

a placeholder for the output QmiNasScellState, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.16

+
+
+
+

qmi_message_nas_get_lte_cphy_ca_info_output_get_phy_ca_agg_pcell_info ()

+
gboolean
+qmi_message_nas_get_lte_cphy_ca_info_output_get_phy_ca_agg_pcell_info
+                               (QmiMessageNasGetLteCphyCaInfoOutput *self,
+                                guint16 *value_phy_ca_agg_pcell_info_physical_cell_id,
+                                guint16 *value_phy_ca_agg_pcell_info_rx_channel,
+                                QmiNasDLBandwidth *value_phy_ca_agg_pcell_info_dl_bandwidth,
+                                QmiNasActiveBand *value_phy_ca_agg_pcell_info_lte_band,
+                                GError **error);
+

Get the 'Phy CA Agg PCell Info' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

self

a QmiMessageNasGetLteCphyCaInfoOutput.

 

value_phy_ca_agg_pcell_info_physical_cell_id

a placeholder for the output guint16, or NULL if not required.

 

value_phy_ca_agg_pcell_info_rx_channel

a placeholder for the output guint16, or NULL if not required.

 

value_phy_ca_agg_pcell_info_dl_bandwidth

a placeholder for the output QmiNasDLBandwidth, or NULL if not required.

 

value_phy_ca_agg_pcell_info_lte_band

a placeholder for the output QmiNasActiveBand, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.16

+
+
+
+

qmi_message_nas_get_lte_cphy_ca_info_output_get_scell_index ()

+
gboolean
+qmi_message_nas_get_lte_cphy_ca_info_output_get_scell_index
+                               (QmiMessageNasGetLteCphyCaInfoOutput *self,
+                                guint8 *value_scell_index,
+                                GError **error);
+

Get the 'SCell index' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageNasGetLteCphyCaInfoOutput.

 

value_scell_index

a placeholder for the output guint8, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.16

+
+
+
+

qmi_message_nas_get_lte_cphy_ca_info_output_get_phy_ca_agg_secondary_cells ()

+
gboolean
+qmi_message_nas_get_lte_cphy_ca_info_output_get_phy_ca_agg_secondary_cells
+                               (QmiMessageNasGetLteCphyCaInfoOutput *self,
+                                GArray **value_phy_ca_agg_secondary_cells,
+                                GError **error);
+

Get the 'Phy CA Agg Secondary Cells' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageNasGetLteCphyCaInfoOutput.

 

value_phy_ca_agg_secondary_cells

a placeholder for the output GArray of QmiMessageNasGetLteCphyCaInfoOutputPhyCaAggSecondaryCellsSsc elements, or NULL if not required. Do not free it, it is owned by self +.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.22

+
+
+
+

qmi_client_nas_get_lte_cphy_ca_info ()

+
void
+qmi_client_nas_get_lte_cphy_ca_info (QmiClientNas *self,
+                                     gpointer unused,
+                                     guint timeout,
+                                     GCancellable *cancellable,
+                                     GAsyncReadyCallback callback,
+                                     gpointer user_data);
+

Asynchronously sends a Get LTE Cphy CA Info request to the device.

+

When the operation is finished, callback + will be invoked in the thread-default main loop of the thread you are calling this method from.

+

You can then call qmi_client_nas_get_lte_cphy_ca_info_finish() to get the result of the operation.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

self

a QmiClientNas.

 

unused

NULL. This message doesn't have any input bundle.

 

timeout

maximum time to wait for the method to complete, in seconds.

 

cancellable

a GCancellable or NULL.

 

callback

a GAsyncReadyCallback to call when the request is satisfied.

 

user_data

user data to pass to callback +.

 
+
+

Since: 1.16

+
+
+
+

qmi_client_nas_get_lte_cphy_ca_info_finish ()

+
QmiMessageNasGetLteCphyCaInfoOutput *
+qmi_client_nas_get_lte_cphy_ca_info_finish
+                               (QmiClientNas *self,
+                                GAsyncResult *res,
+                                GError **error);
+

Finishes an async operation started with qmi_client_nas_get_lte_cphy_ca_info().

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiClientNas.

 

res

the GAsyncResult obtained from the GAsyncReadyCallback passed to qmi_client_nas_get_lte_cphy_ca_info().

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

a QmiMessageNasGetLteCphyCaInfoOutput, or NULL if error +is set. The returned value should be freed with qmi_message_nas_get_lte_cphy_ca_info_output_unref().

+
+

Since: 1.16

+
+
+
+

Types and Values

+
+

QmiMessageNasGetLteCphyCaInfoOutput

+
typedef struct _QmiMessageNasGetLteCphyCaInfoOutput QmiMessageNasGetLteCphyCaInfoOutput;
+

The QmiMessageNasGetLteCphyCaInfoOutput structure contains private data and should only be accessed +using the provided API.

+

Since: 1.16

+
+
+
+

QmiMessageNasGetLteCphyCaInfoOutputPhyCaAggSecondaryCellsSsc

+
typedef struct {
+    guint16 physical_cell_id;
+    guint16 rx_channel;
+    QmiNasDLBandwidth dl_bandwidth;
+    QmiNasActiveBand lte_band;
+    QmiNasScellState state;
+    guint8 cell_index;
+} QmiMessageNasGetLteCphyCaInfoOutputPhyCaAggSecondaryCellsSsc;
+
+

A QmiMessageNasGetLteCphyCaInfoOutputPhyCaAggSecondaryCellsSsc struct.

+
+

Members

+
+++++ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

guint16 physical_cell_id;

a guint16.

 

guint16 rx_channel;

a guint16.

 

QmiNasDLBandwidth dl_bandwidth;

a QmiNasDLBandwidth.

 

QmiNasActiveBand lte_band;

a QmiNasActiveBand.

 

QmiNasScellState state;

a QmiNasScellState.

 

guint8 cell_index;

a guint8.

 
+
+

Since: 1.22

+
+
+
+ + + \ No newline at end of file diff -Nru libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-NAS-Get-Operator-Name.html libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-NAS-Get-Operator-Name.html --- libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-NAS-Get-Operator-Name.html 2017-03-22 12:28:29.000000000 +0100 +++ libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-NAS-Get-Operator-Name.html 1970-01-01 01:00:00.000000000 +0100 @@ -1,731 +0,0 @@ - - - - -NAS Get Operator Name: libqmi-glib Reference Manual - - - - - - - - - - - - - - - - -
-
-
- - -
-

NAS Get Operator Name

-

NAS Get Operator Name

-
- - -
-

Object Hierarchy

-
    GBoxed
-    ╰── QmiMessageNasGetOperatorNameOutput
-
-
-
-

Description

-
-
-

Functions

-
-

qmi_message_nas_get_operator_name_output_ref ()

-
QmiMessageNasGetOperatorNameOutput *
-qmi_message_nas_get_operator_name_output_ref
-                               (QmiMessageNasGetOperatorNameOutput *self);
-

Atomically increments the reference count of self - by one.

-
-

Parameters

-
----- - - - - - -

self

a QmiMessageNasGetOperatorNameOutput.

 
-
-
-

Returns

-

the new reference to self -.

-
-

Since: 1.18

-
-
-
-

qmi_message_nas_get_operator_name_output_unref ()

-
void
-qmi_message_nas_get_operator_name_output_unref
-                               (QmiMessageNasGetOperatorNameOutput *self);
-

Atomically decrements the reference count of self - by one. -If the reference count drops to 0, self - is completely disposed.

-
-

Parameters

-
----- - - - - - -

self

a QmiMessageNasGetOperatorNameOutput.

 
-
-

Since: 1.18

-
-
-
-

qmi_message_nas_get_operator_name_output_get_result ()

-
gboolean
-qmi_message_nas_get_operator_name_output_get_result
-                               (QmiMessageNasGetOperatorNameOutput *self,
-                                GError **error);
-

Get the result of the QMI operation.

-
-

Parameters

-
----- - - - - - - - - - - - - -

self

a QmiMessageNasGetOperatorNameOutput.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the QMI operation succeeded, FALSE if error -is set.

-
-

Since: 1.18

-
-
-
-

qmi_message_nas_get_operator_name_output_get_service_provider_name ()

-
gboolean
-qmi_message_nas_get_operator_name_output_get_service_provider_name
-                               (QmiMessageNasGetOperatorNameOutput *self,
-                                QmiNasNetworkNameDisplayCondition *value_service_provider_name_name_display_condition,
-                                const gchar **value_service_provider_name_name,
-                                GError **error);
-

Get the 'Service Provider Name' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - - - - - - -

self

a QmiMessageNasGetOperatorNameOutput.

 

value_service_provider_name_name_display_condition

a placeholder for the output QmiNasNetworkNameDisplayCondition, or NULL if not required.

 

value_service_provider_name_name

a placeholder for the output constant string, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.18

-
-
-
-

qmi_message_nas_get_operator_name_output_get_operator_plmn_list ()

-
gboolean
-qmi_message_nas_get_operator_name_output_get_operator_plmn_list
-                               (QmiMessageNasGetOperatorNameOutput *self,
-                                GArray **value_operator_plmn_list,
-                                GError **error);
-

Get the 'Operator PLMN List' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessageNasGetOperatorNameOutput.

 

value_operator_plmn_list

a placeholder for the output GArray of QmiMessageNasGetOperatorNameOutputOperatorPlmnListElement elements, or NULL if not required. Do not free it, it is owned by self -.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.18

-
-
-
-

qmi_message_nas_get_operator_name_output_get_operator_plmn_name ()

-
gboolean
-qmi_message_nas_get_operator_name_output_get_operator_plmn_name
-                               (QmiMessageNasGetOperatorNameOutput *self,
-                                GArray **value_operator_plmn_name,
-                                GError **error);
-

Get the 'Operator PLMN Name' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessageNasGetOperatorNameOutput.

 

value_operator_plmn_name

a placeholder for the output GArray of QmiMessageNasGetOperatorNameOutputOperatorPlmnNameElement elements, or NULL if not required. Do not free it, it is owned by self -.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.18

-
-
-
-

qmi_message_nas_get_operator_name_output_get_operator_string_name ()

-
gboolean
-qmi_message_nas_get_operator_name_output_get_operator_string_name
-                               (QmiMessageNasGetOperatorNameOutput *self,
-                                const gchar **value_operator_string_name,
-                                GError **error);
-

Get the 'Operator String Name' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessageNasGetOperatorNameOutput.

 

value_operator_string_name

a placeholder for the output constant string, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.18

-
-
-
-

qmi_message_nas_get_operator_name_output_get_operator_nitz_information ()

-
gboolean
-qmi_message_nas_get_operator_name_output_get_operator_nitz_information
-                               (QmiMessageNasGetOperatorNameOutput *self,
-                                QmiNasPlmnEncodingScheme *value_operator_nitz_information_name_encoding,
-                                QmiNasPlmnNameCountryInitials *value_operator_nitz_information_short_country_initials,
-                                QmiNasPlmnNameSpareBits *value_operator_nitz_information_long_name_spare_bits,
-                                QmiNasPlmnNameSpareBits *value_operator_nitz_information_short_name_spare_bits,
-                                const gchar **value_operator_nitz_information_long_name,
-                                const gchar **value_operator_nitz_information_short_name,
-                                GError **error);
-

Get the 'Operator NITZ Information' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

self

a QmiMessageNasGetOperatorNameOutput.

 

value_operator_nitz_information_name_encoding

a placeholder for the output QmiNasPlmnEncodingScheme, or NULL if not required.

 

value_operator_nitz_information_short_country_initials

a placeholder for the output QmiNasPlmnNameCountryInitials, or NULL if not required.

 

value_operator_nitz_information_long_name_spare_bits

a placeholder for the output QmiNasPlmnNameSpareBits, or NULL if not required.

 

value_operator_nitz_information_short_name_spare_bits

a placeholder for the output QmiNasPlmnNameSpareBits, or NULL if not required.

 

value_operator_nitz_information_long_name

a placeholder for the output constant string, or NULL if not required.

 

value_operator_nitz_information_short_name

a placeholder for the output constant string, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.18

-
-
-
-

qmi_client_nas_get_operator_name ()

-
void
-qmi_client_nas_get_operator_name (QmiClientNas *self,
-                                  gpointer unused,
-                                  guint timeout,
-                                  GCancellable *cancellable,
-                                  GAsyncReadyCallback callback,
-                                  gpointer user_data);
-

Asynchronously sends a Get Operator Name request to the device.

-

When the operation is finished, callback - will be invoked in the thread-default main loop of the thread you are calling this method from.

-

You can then call qmi_client_nas_get_operator_name_finish() to get the result of the operation.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

self

a QmiClientNas.

 

unused

NULL. This message doesn't have any input bundle.

 

timeout

maximum time to wait for the method to complete, in seconds.

 

cancellable

a GCancellable or NULL.

 

callback

a GAsyncReadyCallback to call when the request is satisfied.

 

user_data

user data to pass to callback -.

 
-
-

Since: 1.18

-
-
-
-

qmi_client_nas_get_operator_name_finish ()

-
QmiMessageNasGetOperatorNameOutput *
-qmi_client_nas_get_operator_name_finish
-                               (QmiClientNas *self,
-                                GAsyncResult *res,
-                                GError **error);
-

Finishes an async operation started with qmi_client_nas_get_operator_name().

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiClientNas.

 

res

the GAsyncResult obtained from the GAsyncReadyCallback passed to qmi_client_nas_get_operator_name().

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

a QmiMessageNasGetOperatorNameOutput, or NULL if error -is set. The returned value should be freed with qmi_message_nas_get_operator_name_output_unref().

-
-

Since: 1.18

-
-
-
-

Types and Values

-
-

QmiMessageNasGetOperatorNameOutput

-
typedef struct _QmiMessageNasGetOperatorNameOutput QmiMessageNasGetOperatorNameOutput;
-

The QmiMessageNasGetOperatorNameOutput structure contains private data and should only be accessed -using the provided API.

-

Since: 1.18

-
-
-
-

QmiMessageNasGetOperatorNameOutputOperatorPlmnListElement

-
typedef struct {
-    gchar *mcc;
-    gchar *mnc;
-    guint16 lac1;
-    guint16 lac2;
-    guint8 plmn_name_record_identifier;
-} QmiMessageNasGetOperatorNameOutputOperatorPlmnListElement;
-
-

A QmiMessageNasGetOperatorNameOutputOperatorPlmnListElement struct.

-
-

Members

-
----- - - - - - - - - - - - - - - - - - - - - - - - - - - - -

gchar *mcc;

a string of exactly 3 characters.

 

gchar *mnc;

a string of exactly 3 characters.

 

guint16 lac1;

a guint16.

 

guint16 lac2;

a guint16.

 

guint8 plmn_name_record_identifier;

a guint8.

 
-
-

Since: 1.18

-
-
-
-

QmiMessageNasGetOperatorNameOutputOperatorPlmnNameElement

-
typedef struct {
-    QmiNasPlmnEncodingScheme name_encoding;
-    QmiNasPlmnNameCountryInitials short_country_initials;
-    QmiNasPlmnNameSpareBits long_name_spare_bits;
-    QmiNasPlmnNameSpareBits short_name_spare_bits;
-    GArray *long_name;
-    GArray *short_name;
-} QmiMessageNasGetOperatorNameOutputOperatorPlmnNameElement;
-
-

A QmiMessageNasGetOperatorNameOutputOperatorPlmnNameElement struct.

-
-

Members

-
----- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

QmiNasPlmnEncodingScheme name_encoding;

a QmiNasPlmnEncodingScheme.

 

QmiNasPlmnNameCountryInitials short_country_initials;

a QmiNasPlmnNameCountryInitials.

 

QmiNasPlmnNameSpareBits long_name_spare_bits;

a QmiNasPlmnNameSpareBits.

 

QmiNasPlmnNameSpareBits short_name_spare_bits;

a QmiNasPlmnNameSpareBits.

 

GArray *long_name;

a GArray of guint8 elements.

 

GArray *short_name;

a GArray of guint8 elements.

 
-
-

Since: 1.18

-
-
-
- - - \ No newline at end of file diff -Nru libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-NAS-Get-Operator-Name-request.html libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-NAS-Get-Operator-Name-request.html --- libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-NAS-Get-Operator-Name-request.html 1970-01-01 01:00:00.000000000 +0100 +++ libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-NAS-Get-Operator-Name-request.html 2019-01-08 15:19:01.000000000 +0100 @@ -0,0 +1,731 @@ + + + + +NAS Get Operator Name request: libqmi-glib Reference Manual + + + + + + + + + + + + + + + + +
+
+
+ + +
+

NAS Get Operator Name request

+

NAS Get Operator Name request

+
+ + +
+

Object Hierarchy

+
    GBoxed
+    ╰── QmiMessageNasGetOperatorNameOutput
+
+
+
+

Description

+
+
+

Functions

+
+

qmi_message_nas_get_operator_name_output_ref ()

+
QmiMessageNasGetOperatorNameOutput *
+qmi_message_nas_get_operator_name_output_ref
+                               (QmiMessageNasGetOperatorNameOutput *self);
+

Atomically increments the reference count of self + by one.

+
+

Parameters

+
+++++ + + + + + +

self

a QmiMessageNasGetOperatorNameOutput.

 
+
+
+

Returns

+

the new reference to self +.

+
+

Since: 1.18

+
+
+
+

qmi_message_nas_get_operator_name_output_unref ()

+
void
+qmi_message_nas_get_operator_name_output_unref
+                               (QmiMessageNasGetOperatorNameOutput *self);
+

Atomically decrements the reference count of self + by one. +If the reference count drops to 0, self + is completely disposed.

+
+

Parameters

+
+++++ + + + + + +

self

a QmiMessageNasGetOperatorNameOutput.

 
+
+

Since: 1.18

+
+
+
+

qmi_message_nas_get_operator_name_output_get_result ()

+
gboolean
+qmi_message_nas_get_operator_name_output_get_result
+                               (QmiMessageNasGetOperatorNameOutput *self,
+                                GError **error);
+

Get the result of the QMI operation.

+
+

Parameters

+
+++++ + + + + + + + + + + + + +

self

a QmiMessageNasGetOperatorNameOutput.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the QMI operation succeeded, FALSE if error +is set.

+
+

Since: 1.18

+
+
+
+

qmi_message_nas_get_operator_name_output_get_service_provider_name ()

+
gboolean
+qmi_message_nas_get_operator_name_output_get_service_provider_name
+                               (QmiMessageNasGetOperatorNameOutput *self,
+                                QmiNasNetworkNameDisplayCondition *value_service_provider_name_name_display_condition,
+                                const gchar **value_service_provider_name_name,
+                                GError **error);
+

Get the 'Service Provider Name' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + + + + + + +

self

a QmiMessageNasGetOperatorNameOutput.

 

value_service_provider_name_name_display_condition

a placeholder for the output QmiNasNetworkNameDisplayCondition, or NULL if not required.

 

value_service_provider_name_name

a placeholder for the output constant string, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.18

+
+
+
+

qmi_message_nas_get_operator_name_output_get_operator_plmn_list ()

+
gboolean
+qmi_message_nas_get_operator_name_output_get_operator_plmn_list
+                               (QmiMessageNasGetOperatorNameOutput *self,
+                                GArray **value_operator_plmn_list,
+                                GError **error);
+

Get the 'Operator PLMN List' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageNasGetOperatorNameOutput.

 

value_operator_plmn_list

a placeholder for the output GArray of QmiMessageNasGetOperatorNameOutputOperatorPlmnListElement elements, or NULL if not required. Do not free it, it is owned by self +.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.18

+
+
+
+

qmi_message_nas_get_operator_name_output_get_operator_plmn_name ()

+
gboolean
+qmi_message_nas_get_operator_name_output_get_operator_plmn_name
+                               (QmiMessageNasGetOperatorNameOutput *self,
+                                GArray **value_operator_plmn_name,
+                                GError **error);
+

Get the 'Operator PLMN Name' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageNasGetOperatorNameOutput.

 

value_operator_plmn_name

a placeholder for the output GArray of QmiMessageNasGetOperatorNameOutputOperatorPlmnNameElement elements, or NULL if not required. Do not free it, it is owned by self +.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.18

+
+
+
+

qmi_message_nas_get_operator_name_output_get_operator_string_name ()

+
gboolean
+qmi_message_nas_get_operator_name_output_get_operator_string_name
+                               (QmiMessageNasGetOperatorNameOutput *self,
+                                const gchar **value_operator_string_name,
+                                GError **error);
+

Get the 'Operator String Name' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageNasGetOperatorNameOutput.

 

value_operator_string_name

a placeholder for the output constant string, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.18

+
+
+
+

qmi_message_nas_get_operator_name_output_get_operator_nitz_information ()

+
gboolean
+qmi_message_nas_get_operator_name_output_get_operator_nitz_information
+                               (QmiMessageNasGetOperatorNameOutput *self,
+                                QmiNasPlmnEncodingScheme *value_operator_nitz_information_name_encoding,
+                                QmiNasPlmnNameCountryInitials *value_operator_nitz_information_short_country_initials,
+                                QmiNasPlmnNameSpareBits *value_operator_nitz_information_long_name_spare_bits,
+                                QmiNasPlmnNameSpareBits *value_operator_nitz_information_short_name_spare_bits,
+                                const gchar **value_operator_nitz_information_long_name,
+                                const gchar **value_operator_nitz_information_short_name,
+                                GError **error);
+

Get the 'Operator NITZ Information' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

self

a QmiMessageNasGetOperatorNameOutput.

 

value_operator_nitz_information_name_encoding

a placeholder for the output QmiNasPlmnEncodingScheme, or NULL if not required.

 

value_operator_nitz_information_short_country_initials

a placeholder for the output QmiNasPlmnNameCountryInitials, or NULL if not required.

 

value_operator_nitz_information_long_name_spare_bits

a placeholder for the output QmiNasPlmnNameSpareBits, or NULL if not required.

 

value_operator_nitz_information_short_name_spare_bits

a placeholder for the output QmiNasPlmnNameSpareBits, or NULL if not required.

 

value_operator_nitz_information_long_name

a placeholder for the output constant string, or NULL if not required.

 

value_operator_nitz_information_short_name

a placeholder for the output constant string, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.18

+
+
+
+

qmi_client_nas_get_operator_name ()

+
void
+qmi_client_nas_get_operator_name (QmiClientNas *self,
+                                  gpointer unused,
+                                  guint timeout,
+                                  GCancellable *cancellable,
+                                  GAsyncReadyCallback callback,
+                                  gpointer user_data);
+

Asynchronously sends a Get Operator Name request to the device.

+

When the operation is finished, callback + will be invoked in the thread-default main loop of the thread you are calling this method from.

+

You can then call qmi_client_nas_get_operator_name_finish() to get the result of the operation.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

self

a QmiClientNas.

 

unused

NULL. This message doesn't have any input bundle.

 

timeout

maximum time to wait for the method to complete, in seconds.

 

cancellable

a GCancellable or NULL.

 

callback

a GAsyncReadyCallback to call when the request is satisfied.

 

user_data

user data to pass to callback +.

 
+
+

Since: 1.18

+
+
+
+

qmi_client_nas_get_operator_name_finish ()

+
QmiMessageNasGetOperatorNameOutput *
+qmi_client_nas_get_operator_name_finish
+                               (QmiClientNas *self,
+                                GAsyncResult *res,
+                                GError **error);
+

Finishes an async operation started with qmi_client_nas_get_operator_name().

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiClientNas.

 

res

the GAsyncResult obtained from the GAsyncReadyCallback passed to qmi_client_nas_get_operator_name().

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

a QmiMessageNasGetOperatorNameOutput, or NULL if error +is set. The returned value should be freed with qmi_message_nas_get_operator_name_output_unref().

+
+

Since: 1.18

+
+
+
+

Types and Values

+
+

QmiMessageNasGetOperatorNameOutput

+
typedef struct _QmiMessageNasGetOperatorNameOutput QmiMessageNasGetOperatorNameOutput;
+

The QmiMessageNasGetOperatorNameOutput structure contains private data and should only be accessed +using the provided API.

+

Since: 1.18

+
+
+
+

QmiMessageNasGetOperatorNameOutputOperatorPlmnListElement

+
typedef struct {
+    gchar *mcc;
+    gchar *mnc;
+    guint16 lac1;
+    guint16 lac2;
+    guint8 plmn_name_record_identifier;
+} QmiMessageNasGetOperatorNameOutputOperatorPlmnListElement;
+
+

A QmiMessageNasGetOperatorNameOutputOperatorPlmnListElement struct.

+
+

Members

+
+++++ + + + + + + + + + + + + + + + + + + + + + + + + + + + +

gchar *mcc;

a string of exactly 3 characters.

 

gchar *mnc;

a string of exactly 3 characters.

 

guint16 lac1;

a guint16.

 

guint16 lac2;

a guint16.

 

guint8 plmn_name_record_identifier;

a guint8.

 
+
+

Since: 1.18

+
+
+
+

QmiMessageNasGetOperatorNameOutputOperatorPlmnNameElement

+
typedef struct {
+    QmiNasPlmnEncodingScheme name_encoding;
+    QmiNasPlmnNameCountryInitials short_country_initials;
+    QmiNasPlmnNameSpareBits long_name_spare_bits;
+    QmiNasPlmnNameSpareBits short_name_spare_bits;
+    GArray *long_name;
+    GArray *short_name;
+} QmiMessageNasGetOperatorNameOutputOperatorPlmnNameElement;
+
+

A QmiMessageNasGetOperatorNameOutputOperatorPlmnNameElement struct.

+
+

Members

+
+++++ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

QmiNasPlmnEncodingScheme name_encoding;

a QmiNasPlmnEncodingScheme.

 

QmiNasPlmnNameCountryInitials short_country_initials;

a QmiNasPlmnNameCountryInitials.

 

QmiNasPlmnNameSpareBits long_name_spare_bits;

a QmiNasPlmnNameSpareBits.

 

QmiNasPlmnNameSpareBits short_name_spare_bits;

a QmiNasPlmnNameSpareBits.

 

GArray *long_name;

a GArray of guint8 elements.

 

GArray *short_name;

a GArray of guint8 elements.

 
+
+

Since: 1.18

+
+
+
+ + + \ No newline at end of file diff -Nru libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-NAS-Get-RF-Band-Information.html libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-NAS-Get-RF-Band-Information.html --- libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-NAS-Get-RF-Band-Information.html 2017-03-22 12:28:29.000000000 +0100 +++ libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-NAS-Get-RF-Band-Information.html 1970-01-01 01:00:00.000000000 +0100 @@ -1,418 +0,0 @@ - - - - -NAS Get RF Band Information: libqmi-glib Reference Manual - - - - - - - - - - - - - - - - -
-
-
- - -
-

NAS Get RF Band Information

-

NAS Get RF Band Information

-
- - -
-

Object Hierarchy

-
    GBoxed
-    ╰── QmiMessageNasGetRfBandInformationOutput
-
-
-
-

Description

-
-
-

Functions

-
-

qmi_message_nas_get_rf_band_information_output_ref ()

-
QmiMessageNasGetRfBandInformationOutput *
-qmi_message_nas_get_rf_band_information_output_ref
-                               (QmiMessageNasGetRfBandInformationOutput *self);
-

Atomically increments the reference count of self - by one.

-
-

Parameters

-
----- - - - - - -

self

a QmiMessageNasGetRfBandInformationOutput.

 
-
-
-

Returns

-

the new reference to self -.

-
-

Since: 1.0

-
-
-
-

qmi_message_nas_get_rf_band_information_output_unref ()

-
void
-qmi_message_nas_get_rf_band_information_output_unref
-                               (QmiMessageNasGetRfBandInformationOutput *self);
-

Atomically decrements the reference count of self - by one. -If the reference count drops to 0, self - is completely disposed.

-
-

Parameters

-
----- - - - - - -

self

a QmiMessageNasGetRfBandInformationOutput.

 
-
-

Since: 1.0

-
-
-
-

qmi_message_nas_get_rf_band_information_output_get_list ()

-
gboolean
-qmi_message_nas_get_rf_band_information_output_get_list
-                               (QmiMessageNasGetRfBandInformationOutput *self,
-                                GArray **value_list,
-                                GError **error);
-

Get the 'List' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessageNasGetRfBandInformationOutput.

 

value_list

a placeholder for the output GArray of QmiMessageNasGetRfBandInformationOutputListElement elements, or NULL if not required. Do not free it, it is owned by self -.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.0

-
-
-
-

qmi_message_nas_get_rf_band_information_output_get_result ()

-
gboolean
-qmi_message_nas_get_rf_band_information_output_get_result
-                               (QmiMessageNasGetRfBandInformationOutput *self,
-                                GError **error);
-

Get the result of the QMI operation.

-
-

Parameters

-
----- - - - - - - - - - - - - -

self

a QmiMessageNasGetRfBandInformationOutput.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the QMI operation succeeded, FALSE if error -is set.

-
-

Since: 1.0

-
-
-
-

qmi_client_nas_get_rf_band_information ()

-
void
-qmi_client_nas_get_rf_band_information
-                               (QmiClientNas *self,
-                                gpointer unused,
-                                guint timeout,
-                                GCancellable *cancellable,
-                                GAsyncReadyCallback callback,
-                                gpointer user_data);
-

Asynchronously sends a Get RF Band Information request to the device.

-

When the operation is finished, callback - will be invoked in the thread-default main loop of the thread you are calling this method from.

-

You can then call qmi_client_nas_get_rf_band_information_finish() to get the result of the operation.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

self

a QmiClientNas.

 

unused

NULL. This message doesn't have any input bundle.

 

timeout

maximum time to wait for the method to complete, in seconds.

 

cancellable

a GCancellable or NULL.

 

callback

a GAsyncReadyCallback to call when the request is satisfied.

 

user_data

user data to pass to callback -.

 
-
-

Since: 1.0

-
-
-
-

qmi_client_nas_get_rf_band_information_finish ()

-
QmiMessageNasGetRfBandInformationOutput *
-qmi_client_nas_get_rf_band_information_finish
-                               (QmiClientNas *self,
-                                GAsyncResult *res,
-                                GError **error);
-

Finishes an async operation started with qmi_client_nas_get_rf_band_information().

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiClientNas.

 

res

the GAsyncResult obtained from the GAsyncReadyCallback passed to qmi_client_nas_get_rf_band_information().

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

a QmiMessageNasGetRfBandInformationOutput, or NULL if error -is set. The returned value should be freed with qmi_message_nas_get_rf_band_information_output_unref().

-
-

Since: 1.0

-
-
-
-

Types and Values

-
-

QmiMessageNasGetRfBandInformationOutput

-
typedef struct _QmiMessageNasGetRfBandInformationOutput QmiMessageNasGetRfBandInformationOutput;
-

The QmiMessageNasGetRfBandInformationOutput structure contains private data and should only be accessed -using the provided API.

-

Since: 1.0

-
-
-
-

QmiMessageNasGetRfBandInformationOutputListElement

-
typedef struct {
-    QmiNasRadioInterface radio_interface;
-    QmiNasActiveBand active_band_class;
-    guint16 active_channel;
-} QmiMessageNasGetRfBandInformationOutputListElement;
-
-

A QmiMessageNasGetRfBandInformationOutputListElement struct.

-
-

Members

-
----- - - - - - - - - - - - - - - - - - -

QmiNasRadioInterface radio_interface;

a QmiNasRadioInterface.

 

QmiNasActiveBand active_band_class;

a QmiNasActiveBand.

 

guint16 active_channel;

a guint16.

 
-
-

Since: 1.0

-
-
-
- - - \ No newline at end of file diff -Nru libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-NAS-Get-RF-Band-Information-request.html libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-NAS-Get-RF-Band-Information-request.html --- libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-NAS-Get-RF-Band-Information-request.html 1970-01-01 01:00:00.000000000 +0100 +++ libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-NAS-Get-RF-Band-Information-request.html 2019-01-08 15:19:01.000000000 +0100 @@ -0,0 +1,418 @@ + + + + +NAS Get RF Band Information request: libqmi-glib Reference Manual + + + + + + + + + + + + + + + + +
+
+
+ + +
+

NAS Get RF Band Information request

+

NAS Get RF Band Information request

+
+ + +
+

Object Hierarchy

+
    GBoxed
+    ╰── QmiMessageNasGetRfBandInformationOutput
+
+
+
+

Description

+
+
+

Functions

+
+

qmi_message_nas_get_rf_band_information_output_ref ()

+
QmiMessageNasGetRfBandInformationOutput *
+qmi_message_nas_get_rf_band_information_output_ref
+                               (QmiMessageNasGetRfBandInformationOutput *self);
+

Atomically increments the reference count of self + by one.

+
+

Parameters

+
+++++ + + + + + +

self

a QmiMessageNasGetRfBandInformationOutput.

 
+
+
+

Returns

+

the new reference to self +.

+
+

Since: 1.0

+
+
+
+

qmi_message_nas_get_rf_band_information_output_unref ()

+
void
+qmi_message_nas_get_rf_band_information_output_unref
+                               (QmiMessageNasGetRfBandInformationOutput *self);
+

Atomically decrements the reference count of self + by one. +If the reference count drops to 0, self + is completely disposed.

+
+

Parameters

+
+++++ + + + + + +

self

a QmiMessageNasGetRfBandInformationOutput.

 
+
+

Since: 1.0

+
+
+
+

qmi_message_nas_get_rf_band_information_output_get_list ()

+
gboolean
+qmi_message_nas_get_rf_band_information_output_get_list
+                               (QmiMessageNasGetRfBandInformationOutput *self,
+                                GArray **value_list,
+                                GError **error);
+

Get the 'List' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageNasGetRfBandInformationOutput.

 

value_list

a placeholder for the output GArray of QmiMessageNasGetRfBandInformationOutputListElement elements, or NULL if not required. Do not free it, it is owned by self +.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.0

+
+
+
+

qmi_message_nas_get_rf_band_information_output_get_result ()

+
gboolean
+qmi_message_nas_get_rf_band_information_output_get_result
+                               (QmiMessageNasGetRfBandInformationOutput *self,
+                                GError **error);
+

Get the result of the QMI operation.

+
+

Parameters

+
+++++ + + + + + + + + + + + + +

self

a QmiMessageNasGetRfBandInformationOutput.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the QMI operation succeeded, FALSE if error +is set.

+
+

Since: 1.0

+
+
+
+

qmi_client_nas_get_rf_band_information ()

+
void
+qmi_client_nas_get_rf_band_information
+                               (QmiClientNas *self,
+                                gpointer unused,
+                                guint timeout,
+                                GCancellable *cancellable,
+                                GAsyncReadyCallback callback,
+                                gpointer user_data);
+

Asynchronously sends a Get RF Band Information request to the device.

+

When the operation is finished, callback + will be invoked in the thread-default main loop of the thread you are calling this method from.

+

You can then call qmi_client_nas_get_rf_band_information_finish() to get the result of the operation.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

self

a QmiClientNas.

 

unused

NULL. This message doesn't have any input bundle.

 

timeout

maximum time to wait for the method to complete, in seconds.

 

cancellable

a GCancellable or NULL.

 

callback

a GAsyncReadyCallback to call when the request is satisfied.

 

user_data

user data to pass to callback +.

 
+
+

Since: 1.0

+
+
+
+

qmi_client_nas_get_rf_band_information_finish ()

+
QmiMessageNasGetRfBandInformationOutput *
+qmi_client_nas_get_rf_band_information_finish
+                               (QmiClientNas *self,
+                                GAsyncResult *res,
+                                GError **error);
+

Finishes an async operation started with qmi_client_nas_get_rf_band_information().

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiClientNas.

 

res

the GAsyncResult obtained from the GAsyncReadyCallback passed to qmi_client_nas_get_rf_band_information().

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

a QmiMessageNasGetRfBandInformationOutput, or NULL if error +is set. The returned value should be freed with qmi_message_nas_get_rf_band_information_output_unref().

+
+

Since: 1.0

+
+
+
+

Types and Values

+
+

QmiMessageNasGetRfBandInformationOutput

+
typedef struct _QmiMessageNasGetRfBandInformationOutput QmiMessageNasGetRfBandInformationOutput;
+

The QmiMessageNasGetRfBandInformationOutput structure contains private data and should only be accessed +using the provided API.

+

Since: 1.0

+
+
+
+

QmiMessageNasGetRfBandInformationOutputListElement

+
typedef struct {
+    QmiNasRadioInterface radio_interface;
+    QmiNasActiveBand active_band_class;
+    guint16 active_channel;
+} QmiMessageNasGetRfBandInformationOutputListElement;
+
+

A QmiMessageNasGetRfBandInformationOutputListElement struct.

+
+

Members

+
+++++ + + + + + + + + + + + + + + + + + +

QmiNasRadioInterface radio_interface;

a QmiNasRadioInterface.

 

QmiNasActiveBand active_band_class;

a QmiNasActiveBand.

 

guint16 active_channel;

a guint16.

 
+
+

Since: 1.0

+
+
+
+ + + \ No newline at end of file diff -Nru libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-NAS-Get-Serving-System.html libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-NAS-Get-Serving-System.html --- libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-NAS-Get-Serving-System.html 2017-03-22 12:28:29.000000000 +0100 +++ libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-NAS-Get-Serving-System.html 1970-01-01 01:00:00.000000000 +0100 @@ -1,1700 +0,0 @@ - - - - -NAS Get Serving System: libqmi-glib Reference Manual - - - - - - - - - - - - - - - - -
-
-
- - -
-

NAS Get Serving System

-

NAS Get Serving System

-
-
-

Functions

-
---- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
-QmiMessageNasGetServingSystemOutput * - -qmi_message_nas_get_serving_system_output_ref () -
-void - -qmi_message_nas_get_serving_system_output_unref () -
-gboolean - -qmi_message_nas_get_serving_system_output_get_mnc_pcs_digit_include_status () -
-gboolean - -qmi_message_nas_get_serving_system_output_get_umts_primary_scrambling_code () -
-gboolean - -qmi_message_nas_get_serving_system_output_get_call_barring_status () -
-gboolean - -qmi_message_nas_get_serving_system_output_get_lte_tac () -
-gboolean - -qmi_message_nas_get_serving_system_output_get_hdr_personality () -
-gboolean - -qmi_message_nas_get_serving_system_output_get_cdma_system_info () -
-gboolean - -qmi_message_nas_get_serving_system_output_get_detailed_service_status () -
-gboolean - -qmi_message_nas_get_serving_system_output_get_dtm_support () -
-gboolean - -qmi_message_nas_get_serving_system_output_get_prl_indicator_3gpp2 () -
-gboolean - -qmi_message_nas_get_serving_system_output_get_concurrent_service_info_3gpp2 () -
-gboolean - -qmi_message_nas_get_serving_system_output_get_cid_3gpp () -
-gboolean - -qmi_message_nas_get_serving_system_output_get_lac_3gpp () -
-gboolean - -qmi_message_nas_get_serving_system_output_get_daylight_saving_time_adjustment_3gpp () -
-gboolean - -qmi_message_nas_get_serving_system_output_get_time_zone_3gpp () -
-gboolean - -qmi_message_nas_get_serving_system_output_get_cdma_p_rev () -
-gboolean - -qmi_message_nas_get_serving_system_output_get_time_zone_3gpp2 () -
-gboolean - -qmi_message_nas_get_serving_system_output_get_default_roaming_indicator () -
-gboolean - -qmi_message_nas_get_serving_system_output_get_roaming_indicator_list () -
-gboolean - -qmi_message_nas_get_serving_system_output_get_cdma_base_station_info () -
-gboolean - -qmi_message_nas_get_serving_system_output_get_cdma_system_id () -
-gboolean - -qmi_message_nas_get_serving_system_output_get_current_plmn () -
-gboolean - -qmi_message_nas_get_serving_system_output_get_data_service_capability () -
-gboolean - -qmi_message_nas_get_serving_system_output_get_roaming_indicator () -
-gboolean - -qmi_message_nas_get_serving_system_output_get_result () -
-gboolean - -qmi_message_nas_get_serving_system_output_get_serving_system () -
-void - -qmi_client_nas_get_serving_system () -
-QmiMessageNasGetServingSystemOutput * - -qmi_client_nas_get_serving_system_finish () -
-
- -
-

Object Hierarchy

-
    GBoxed
-    ╰── QmiMessageNasGetServingSystemOutput
-
-
-
-

Description

-
-
-

Functions

-
-

qmi_message_nas_get_serving_system_output_ref ()

-
QmiMessageNasGetServingSystemOutput *
-qmi_message_nas_get_serving_system_output_ref
-                               (QmiMessageNasGetServingSystemOutput *self);
-

Atomically increments the reference count of self - by one.

-
-

Parameters

-
----- - - - - - -

self

a QmiMessageNasGetServingSystemOutput.

 
-
-
-

Returns

-

the new reference to self -.

-
-

Since: 1.0

-
-
-
-

qmi_message_nas_get_serving_system_output_unref ()

-
void
-qmi_message_nas_get_serving_system_output_unref
-                               (QmiMessageNasGetServingSystemOutput *self);
-

Atomically decrements the reference count of self - by one. -If the reference count drops to 0, self - is completely disposed.

-
-

Parameters

-
----- - - - - - -

self

a QmiMessageNasGetServingSystemOutput.

 
-
-

Since: 1.0

-
-
-
-

qmi_message_nas_get_serving_system_output_get_mnc_pcs_digit_include_status ()

-
gboolean
-qmi_message_nas_get_serving_system_output_get_mnc_pcs_digit_include_status
-                               (QmiMessageNasGetServingSystemOutput *self,
-                                guint16 *value_mnc_pcs_digit_include_status_mcc,
-                                guint16 *value_mnc_pcs_digit_include_status_mnc,
-                                gboolean *value_mnc_pcs_digit_include_status_includes_pcs_digit,
-                                GError **error);
-

Get the 'MNC PCS Digit Include Status' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - - - - - - - - - - - -

self

a QmiMessageNasGetServingSystemOutput.

 

value_mnc_pcs_digit_include_status_mcc

a placeholder for the output guint16, or NULL if not required.

 

value_mnc_pcs_digit_include_status_mnc

a placeholder for the output guint16, or NULL if not required.

 

value_mnc_pcs_digit_include_status_includes_pcs_digit

a placeholder for the output gboolean, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.0

-
-
-
-

qmi_message_nas_get_serving_system_output_get_umts_primary_scrambling_code ()

-
gboolean
-qmi_message_nas_get_serving_system_output_get_umts_primary_scrambling_code
-                               (QmiMessageNasGetServingSystemOutput *self,
-                                guint16 *value_umts_primary_scrambling_code,
-                                GError **error);
-

Get the 'UMTS Primary Scrambling Code' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessageNasGetServingSystemOutput.

 

value_umts_primary_scrambling_code

a placeholder for the output guint16, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.0

-
-
-
-

qmi_message_nas_get_serving_system_output_get_call_barring_status ()

-
gboolean
-qmi_message_nas_get_serving_system_output_get_call_barring_status
-                               (QmiMessageNasGetServingSystemOutput *self,
-                                QmiNasCallBarringStatus *value_call_barring_status_cs_status,
-                                QmiNasCallBarringStatus *value_call_barring_status_ps_status,
-                                GError **error);
-

Get the 'Call Barring Status' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - - - - - - -

self

a QmiMessageNasGetServingSystemOutput.

 

value_call_barring_status_cs_status

a placeholder for the output QmiNasCallBarringStatus, or NULL if not required.

 

value_call_barring_status_ps_status

a placeholder for the output QmiNasCallBarringStatus, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.0

-
-
-
-

qmi_message_nas_get_serving_system_output_get_lte_tac ()

-
gboolean
-qmi_message_nas_get_serving_system_output_get_lte_tac
-                               (QmiMessageNasGetServingSystemOutput *self,
-                                guint16 *value_lte_tac,
-                                GError **error);
-

Get the 'LTE TAC' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessageNasGetServingSystemOutput.

 

value_lte_tac

a placeholder for the output guint16, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.0

-
-
-
-

qmi_message_nas_get_serving_system_output_get_hdr_personality ()

-
gboolean
-qmi_message_nas_get_serving_system_output_get_hdr_personality
-                               (QmiMessageNasGetServingSystemOutput *self,
-                                QmiNasHdrPersonality *value_hdr_personality,
-                                GError **error);
-

Get the 'HDR Personality' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessageNasGetServingSystemOutput.

 

value_hdr_personality

a placeholder for the output QmiNasHdrPersonality, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.0

-
-
-
-

qmi_message_nas_get_serving_system_output_get_cdma_system_info ()

-
gboolean
-qmi_message_nas_get_serving_system_output_get_cdma_system_info
-                               (QmiMessageNasGetServingSystemOutput *self,
-                                guint16 *value_cdma_system_info_mcc,
-                                guint8 *value_cdma_system_info_imsi_11_12,
-                                GError **error);
-

Get the 'CDMA System Info' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - - - - - - -

self

a QmiMessageNasGetServingSystemOutput.

 

value_cdma_system_info_mcc

a placeholder for the output guint16, or NULL if not required.

 

value_cdma_system_info_imsi_11_12

a placeholder for the output guint8, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.0

-
-
-
-

qmi_message_nas_get_serving_system_output_get_detailed_service_status ()

-
gboolean
-qmi_message_nas_get_serving_system_output_get_detailed_service_status
-                               (QmiMessageNasGetServingSystemOutput *self,
-                                QmiNasServiceStatus *value_detailed_service_status_status,
-                                QmiNasNetworkServiceDomain *value_detailed_service_status_capability,
-                                QmiNasServiceStatus *value_detailed_service_status_hdr_status,
-                                gboolean *value_detailed_service_status_hdr_hybrid,
-                                gboolean *value_detailed_service_status_forbidden,
-                                GError **error);
-

Get the 'Detailed Service Status' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

self

a QmiMessageNasGetServingSystemOutput.

 

value_detailed_service_status_status

a placeholder for the output QmiNasServiceStatus, or NULL if not required.

 

value_detailed_service_status_capability

a placeholder for the output QmiNasNetworkServiceDomain, or NULL if not required.

 

value_detailed_service_status_hdr_status

a placeholder for the output QmiNasServiceStatus, or NULL if not required.

 

value_detailed_service_status_hdr_hybrid

a placeholder for the output gboolean, or NULL if not required.

 

value_detailed_service_status_forbidden

a placeholder for the output gboolean, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.0

-
-
-
-

qmi_message_nas_get_serving_system_output_get_dtm_support ()

-
gboolean
-qmi_message_nas_get_serving_system_output_get_dtm_support
-                               (QmiMessageNasGetServingSystemOutput *self,
-                                gboolean *value_dtm_support,
-                                GError **error);
-

Get the 'DTM Support' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessageNasGetServingSystemOutput.

 

value_dtm_support

a placeholder for the output gboolean, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.0

-
-
-
-

qmi_message_nas_get_serving_system_output_get_prl_indicator_3gpp2 ()

-
gboolean
-qmi_message_nas_get_serving_system_output_get_prl_indicator_3gpp2
-                               (QmiMessageNasGetServingSystemOutput *self,
-                                gboolean *value_prl_indicator_3gpp2,
-                                GError **error);
-

Get the 'PRL Indicator 3GPP2' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessageNasGetServingSystemOutput.

 

value_prl_indicator_3gpp2

a placeholder for the output gboolean, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.0

-
-
-
-

qmi_message_nas_get_serving_system_output_get_concurrent_service_info_3gpp2 ()

-
gboolean
-qmi_message_nas_get_serving_system_output_get_concurrent_service_info_3gpp2
-                               (QmiMessageNasGetServingSystemOutput *self,
-                                gboolean *value_concurrent_service_info_3gpp2,
-                                GError **error);
-

Get the 'Concurrent Service Info 3GPP2' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessageNasGetServingSystemOutput.

 

value_concurrent_service_info_3gpp2

a placeholder for the output gboolean, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.0

-
-
-
-

qmi_message_nas_get_serving_system_output_get_cid_3gpp ()

-
gboolean
-qmi_message_nas_get_serving_system_output_get_cid_3gpp
-                               (QmiMessageNasGetServingSystemOutput *self,
-                                guint32 *value_cid_3gpp,
-                                GError **error);
-

Get the 'CID 3GPP' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessageNasGetServingSystemOutput.

 

value_cid_3gpp

a placeholder for the output guint32, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.0

-
-
-
-

qmi_message_nas_get_serving_system_output_get_lac_3gpp ()

-
gboolean
-qmi_message_nas_get_serving_system_output_get_lac_3gpp
-                               (QmiMessageNasGetServingSystemOutput *self,
-                                guint16 *value_lac_3gpp,
-                                GError **error);
-

Get the 'LAC 3GPP' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessageNasGetServingSystemOutput.

 

value_lac_3gpp

a placeholder for the output guint16, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.0

-
-
-
-

qmi_message_nas_get_serving_system_output_get_daylight_saving_time_adjustment_3gpp ()

-
gboolean
-qmi_message_nas_get_serving_system_output_get_daylight_saving_time_adjustment_3gpp
-                               (QmiMessageNasGetServingSystemOutput *self,
-                                guint8 *value_daylight_saving_time_adjustment_3gpp,
-                                GError **error);
-

Get the 'Daylight Saving Time Adjustment 3GPP' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessageNasGetServingSystemOutput.

 

value_daylight_saving_time_adjustment_3gpp

a placeholder for the output guint8, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.0

-
-
-
-

qmi_message_nas_get_serving_system_output_get_time_zone_3gpp ()

-
gboolean
-qmi_message_nas_get_serving_system_output_get_time_zone_3gpp
-                               (QmiMessageNasGetServingSystemOutput *self,
-                                gint8 *value_time_zone_3gpp,
-                                GError **error);
-

Get the 'Time Zone 3GPP' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessageNasGetServingSystemOutput.

 

value_time_zone_3gpp

a placeholder for the output gint8, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.0

-
-
-
-

qmi_message_nas_get_serving_system_output_get_cdma_p_rev ()

-
gboolean
-qmi_message_nas_get_serving_system_output_get_cdma_p_rev
-                               (QmiMessageNasGetServingSystemOutput *self,
-                                guint8 *value_cdma_p_rev,
-                                GError **error);
-

Get the 'CDMA P Rev' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessageNasGetServingSystemOutput.

 

value_cdma_p_rev

a placeholder for the output guint8, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.0

-
-
-
-

qmi_message_nas_get_serving_system_output_get_time_zone_3gpp2 ()

-
gboolean
-qmi_message_nas_get_serving_system_output_get_time_zone_3gpp2
-                               (QmiMessageNasGetServingSystemOutput *self,
-                                guint8 *value_time_zone_3gpp2_leap_seconds,
-                                gint8 *value_time_zone_3gpp2_local_time_offset,
-                                gboolean *value_time_zone_3gpp2_daylight_saving_time,
-                                GError **error);
-

Get the 'Time Zone 3GPP2' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - - - - - - - - - - - -

self

a QmiMessageNasGetServingSystemOutput.

 

value_time_zone_3gpp2_leap_seconds

a placeholder for the output guint8, or NULL if not required.

 

value_time_zone_3gpp2_local_time_offset

a placeholder for the output gint8, or NULL if not required.

 

value_time_zone_3gpp2_daylight_saving_time

a placeholder for the output gboolean, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.0

-
-
-
-

qmi_message_nas_get_serving_system_output_get_default_roaming_indicator ()

-
gboolean
-qmi_message_nas_get_serving_system_output_get_default_roaming_indicator
-                               (QmiMessageNasGetServingSystemOutput *self,
-                                QmiNasRoamingIndicatorStatus *value_default_roaming_indicator,
-                                GError **error);
-

Get the 'Default Roaming Indicator' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessageNasGetServingSystemOutput.

 

value_default_roaming_indicator

a placeholder for the output QmiNasRoamingIndicatorStatus, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.0

-
-
-
-

qmi_message_nas_get_serving_system_output_get_roaming_indicator_list ()

-
gboolean
-qmi_message_nas_get_serving_system_output_get_roaming_indicator_list
-                               (QmiMessageNasGetServingSystemOutput *self,
-                                GArray **value_roaming_indicator_list,
-                                GError **error);
-

Get the 'Roaming Indicator List' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessageNasGetServingSystemOutput.

 

value_roaming_indicator_list

a placeholder for the output GArray of QmiMessageNasGetServingSystemOutputRoamingIndicatorListElement elements, or NULL if not required. Do not free it, it is owned by self -.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.0

-
-
-
-

qmi_message_nas_get_serving_system_output_get_cdma_base_station_info ()

-
gboolean
-qmi_message_nas_get_serving_system_output_get_cdma_base_station_info
-                               (QmiMessageNasGetServingSystemOutput *self,
-                                guint16 *value_cdma_base_station_info_base_station_id,
-                                gint32 *value_cdma_base_station_info_base_station_latitude,
-                                gint32 *value_cdma_base_station_info_base_station_longitude,
-                                GError **error);
-

Get the 'CDMA Base Station Info' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - - - - - - - - - - - -

self

a QmiMessageNasGetServingSystemOutput.

 

value_cdma_base_station_info_base_station_id

a placeholder for the output guint16, or NULL if not required.

 

value_cdma_base_station_info_base_station_latitude

a placeholder for the output gint32, or NULL if not required.

 

value_cdma_base_station_info_base_station_longitude

a placeholder for the output gint32, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.0

-
-
-
-

qmi_message_nas_get_serving_system_output_get_cdma_system_id ()

-
gboolean
-qmi_message_nas_get_serving_system_output_get_cdma_system_id
-                               (QmiMessageNasGetServingSystemOutput *self,
-                                guint16 *value_cdma_system_id_sid,
-                                guint16 *value_cdma_system_id_nid,
-                                GError **error);
-

Get the 'CDMA System ID' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - - - - - - -

self

a QmiMessageNasGetServingSystemOutput.

 

value_cdma_system_id_sid

a placeholder for the output guint16, or NULL if not required.

 

value_cdma_system_id_nid

a placeholder for the output guint16, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.0

-
-
-
-

qmi_message_nas_get_serving_system_output_get_current_plmn ()

-
gboolean
-qmi_message_nas_get_serving_system_output_get_current_plmn
-                               (QmiMessageNasGetServingSystemOutput *self,
-                                guint16 *value_current_plmn_mcc,
-                                guint16 *value_current_plmn_mnc,
-                                const gchar **value_current_plmn_description,
-                                GError **error);
-

Get the 'Current PLMN' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - - - - - - - - - - - -

self

a QmiMessageNasGetServingSystemOutput.

 

value_current_plmn_mcc

a placeholder for the output guint16, or NULL if not required.

 

value_current_plmn_mnc

a placeholder for the output guint16, or NULL if not required.

 

value_current_plmn_description

a placeholder for the output constant string, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.0

-
-
-
-

qmi_message_nas_get_serving_system_output_get_data_service_capability ()

-
gboolean
-qmi_message_nas_get_serving_system_output_get_data_service_capability
-                               (QmiMessageNasGetServingSystemOutput *self,
-                                GArray **value_data_service_capability,
-                                GError **error);
-

Get the 'Data Service Capability' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessageNasGetServingSystemOutput.

 

value_data_service_capability

a placeholder for the output GArray of QmiNasDataCapability elements, or NULL if not required. Do not free it, it is owned by self -.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.0

-
-
-
-

qmi_message_nas_get_serving_system_output_get_roaming_indicator ()

-
gboolean
-qmi_message_nas_get_serving_system_output_get_roaming_indicator
-                               (QmiMessageNasGetServingSystemOutput *self,
-                                QmiNasRoamingIndicatorStatus *value_roaming_indicator,
-                                GError **error);
-

Get the 'Roaming Indicator' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessageNasGetServingSystemOutput.

 

value_roaming_indicator

a placeholder for the output QmiNasRoamingIndicatorStatus, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.0

-
-
-
-

qmi_message_nas_get_serving_system_output_get_result ()

-
gboolean
-qmi_message_nas_get_serving_system_output_get_result
-                               (QmiMessageNasGetServingSystemOutput *self,
-                                GError **error);
-

Get the result of the QMI operation.

-
-

Parameters

-
----- - - - - - - - - - - - - -

self

a QmiMessageNasGetServingSystemOutput.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the QMI operation succeeded, FALSE if error -is set.

-
-

Since: 1.0

-
-
-
-

qmi_message_nas_get_serving_system_output_get_serving_system ()

-
gboolean
-qmi_message_nas_get_serving_system_output_get_serving_system
-                               (QmiMessageNasGetServingSystemOutput *self,
-                                QmiNasRegistrationState *value_serving_system_registration_state,
-                                QmiNasAttachState *value_serving_system_cs_attach_state,
-                                QmiNasAttachState *value_serving_system_ps_attach_state,
-                                QmiNasNetworkType *value_serving_system_selected_network,
-                                GArray **value_serving_system_radio_interfaces,
-                                GError **error);
-

Get the 'Serving System' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

self

a QmiMessageNasGetServingSystemOutput.

 

value_serving_system_registration_state

a placeholder for the output QmiNasRegistrationState, or NULL if not required.

 

value_serving_system_cs_attach_state

a placeholder for the output QmiNasAttachState, or NULL if not required.

 

value_serving_system_ps_attach_state

a placeholder for the output QmiNasAttachState, or NULL if not required.

 

value_serving_system_selected_network

a placeholder for the output QmiNasNetworkType, or NULL if not required.

 

value_serving_system_radio_interfaces

a placeholder for the output GArray of QmiNasRadioInterface elements, or NULL if not required. Do not free it, it is owned by self -.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.0

-
-
-
-

qmi_client_nas_get_serving_system ()

-
void
-qmi_client_nas_get_serving_system (QmiClientNas *self,
-                                   gpointer unused,
-                                   guint timeout,
-                                   GCancellable *cancellable,
-                                   GAsyncReadyCallback callback,
-                                   gpointer user_data);
-

Asynchronously sends a Get Serving System request to the device.

-

When the operation is finished, callback - will be invoked in the thread-default main loop of the thread you are calling this method from.

-

You can then call qmi_client_nas_get_serving_system_finish() to get the result of the operation.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

self

a QmiClientNas.

 

unused

NULL. This message doesn't have any input bundle.

 

timeout

maximum time to wait for the method to complete, in seconds.

 

cancellable

a GCancellable or NULL.

 

callback

a GAsyncReadyCallback to call when the request is satisfied.

 

user_data

user data to pass to callback -.

 
-
-

Since: 1.0

-
-
-
-

qmi_client_nas_get_serving_system_finish ()

-
QmiMessageNasGetServingSystemOutput *
-qmi_client_nas_get_serving_system_finish
-                               (QmiClientNas *self,
-                                GAsyncResult *res,
-                                GError **error);
-

Finishes an async operation started with qmi_client_nas_get_serving_system().

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiClientNas.

 

res

the GAsyncResult obtained from the GAsyncReadyCallback passed to qmi_client_nas_get_serving_system().

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

a QmiMessageNasGetServingSystemOutput, or NULL if error -is set. The returned value should be freed with qmi_message_nas_get_serving_system_output_unref().

-
-

Since: 1.0

-
-
-
-

Types and Values

-
-

QmiMessageNasGetServingSystemOutput

-
typedef struct _QmiMessageNasGetServingSystemOutput QmiMessageNasGetServingSystemOutput;
-

The QmiMessageNasGetServingSystemOutput structure contains private data and should only be accessed -using the provided API.

-

Since: 1.0

-
-
-
-

QmiMessageNasGetServingSystemOutputRoamingIndicatorListElement

-
typedef struct {
-    QmiNasRadioInterface radio_interface;
-    QmiNasRoamingIndicatorStatus roaming_indicator;
-} QmiMessageNasGetServingSystemOutputRoamingIndicatorListElement;
-
-

A QmiMessageNasGetServingSystemOutputRoamingIndicatorListElement struct.

-
-

Members

-
----- - - - - - - - - - - - - -

QmiNasRadioInterface radio_interface;

a QmiNasRadioInterface.

 

QmiNasRoamingIndicatorStatus roaming_indicator;

a QmiNasRoamingIndicatorStatus.

 
-
-

Since: 1.0

-
-
-
- - - \ No newline at end of file diff -Nru libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-NAS-Get-Serving-System-request.html libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-NAS-Get-Serving-System-request.html --- libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-NAS-Get-Serving-System-request.html 1970-01-01 01:00:00.000000000 +0100 +++ libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-NAS-Get-Serving-System-request.html 2019-01-08 15:19:01.000000000 +0100 @@ -0,0 +1,1700 @@ + + + + +NAS Get Serving System request: libqmi-glib Reference Manual + + + + + + + + + + + + + + + + +
+
+
+ + +
+

NAS Get Serving System request

+

NAS Get Serving System request

+
+
+

Functions

+
++++ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+QmiMessageNasGetServingSystemOutput * + +qmi_message_nas_get_serving_system_output_ref () +
+void + +qmi_message_nas_get_serving_system_output_unref () +
+gboolean + +qmi_message_nas_get_serving_system_output_get_mnc_pcs_digit_include_status () +
+gboolean + +qmi_message_nas_get_serving_system_output_get_umts_primary_scrambling_code () +
+gboolean + +qmi_message_nas_get_serving_system_output_get_call_barring_status () +
+gboolean + +qmi_message_nas_get_serving_system_output_get_lte_tac () +
+gboolean + +qmi_message_nas_get_serving_system_output_get_hdr_personality () +
+gboolean + +qmi_message_nas_get_serving_system_output_get_cdma_system_info () +
+gboolean + +qmi_message_nas_get_serving_system_output_get_detailed_service_status () +
+gboolean + +qmi_message_nas_get_serving_system_output_get_dtm_support () +
+gboolean + +qmi_message_nas_get_serving_system_output_get_prl_indicator_3gpp2 () +
+gboolean + +qmi_message_nas_get_serving_system_output_get_concurrent_service_info_3gpp2 () +
+gboolean + +qmi_message_nas_get_serving_system_output_get_cid_3gpp () +
+gboolean + +qmi_message_nas_get_serving_system_output_get_lac_3gpp () +
+gboolean + +qmi_message_nas_get_serving_system_output_get_daylight_saving_time_adjustment_3gpp () +
+gboolean + +qmi_message_nas_get_serving_system_output_get_time_zone_3gpp () +
+gboolean + +qmi_message_nas_get_serving_system_output_get_cdma_p_rev () +
+gboolean + +qmi_message_nas_get_serving_system_output_get_time_zone_3gpp2 () +
+gboolean + +qmi_message_nas_get_serving_system_output_get_default_roaming_indicator () +
+gboolean + +qmi_message_nas_get_serving_system_output_get_roaming_indicator_list () +
+gboolean + +qmi_message_nas_get_serving_system_output_get_cdma_base_station_info () +
+gboolean + +qmi_message_nas_get_serving_system_output_get_cdma_system_id () +
+gboolean + +qmi_message_nas_get_serving_system_output_get_current_plmn () +
+gboolean + +qmi_message_nas_get_serving_system_output_get_data_service_capability () +
+gboolean + +qmi_message_nas_get_serving_system_output_get_roaming_indicator () +
+gboolean + +qmi_message_nas_get_serving_system_output_get_result () +
+gboolean + +qmi_message_nas_get_serving_system_output_get_serving_system () +
+void + +qmi_client_nas_get_serving_system () +
+QmiMessageNasGetServingSystemOutput * + +qmi_client_nas_get_serving_system_finish () +
+
+ +
+

Object Hierarchy

+
    GBoxed
+    ╰── QmiMessageNasGetServingSystemOutput
+
+
+
+

Description

+
+
+

Functions

+
+

qmi_message_nas_get_serving_system_output_ref ()

+
QmiMessageNasGetServingSystemOutput *
+qmi_message_nas_get_serving_system_output_ref
+                               (QmiMessageNasGetServingSystemOutput *self);
+

Atomically increments the reference count of self + by one.

+
+

Parameters

+
+++++ + + + + + +

self

a QmiMessageNasGetServingSystemOutput.

 
+
+
+

Returns

+

the new reference to self +.

+
+

Since: 1.0

+
+
+
+

qmi_message_nas_get_serving_system_output_unref ()

+
void
+qmi_message_nas_get_serving_system_output_unref
+                               (QmiMessageNasGetServingSystemOutput *self);
+

Atomically decrements the reference count of self + by one. +If the reference count drops to 0, self + is completely disposed.

+
+

Parameters

+
+++++ + + + + + +

self

a QmiMessageNasGetServingSystemOutput.

 
+
+

Since: 1.0

+
+
+
+

qmi_message_nas_get_serving_system_output_get_mnc_pcs_digit_include_status ()

+
gboolean
+qmi_message_nas_get_serving_system_output_get_mnc_pcs_digit_include_status
+                               (QmiMessageNasGetServingSystemOutput *self,
+                                guint16 *value_mnc_pcs_digit_include_status_mcc,
+                                guint16 *value_mnc_pcs_digit_include_status_mnc,
+                                gboolean *value_mnc_pcs_digit_include_status_includes_pcs_digit,
+                                GError **error);
+

Get the 'MNC PCS Digit Include Status' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + + + + + + + + + + + +

self

a QmiMessageNasGetServingSystemOutput.

 

value_mnc_pcs_digit_include_status_mcc

a placeholder for the output guint16, or NULL if not required.

 

value_mnc_pcs_digit_include_status_mnc

a placeholder for the output guint16, or NULL if not required.

 

value_mnc_pcs_digit_include_status_includes_pcs_digit

a placeholder for the output gboolean, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.0

+
+
+
+

qmi_message_nas_get_serving_system_output_get_umts_primary_scrambling_code ()

+
gboolean
+qmi_message_nas_get_serving_system_output_get_umts_primary_scrambling_code
+                               (QmiMessageNasGetServingSystemOutput *self,
+                                guint16 *value_umts_primary_scrambling_code,
+                                GError **error);
+

Get the 'UMTS Primary Scrambling Code' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageNasGetServingSystemOutput.

 

value_umts_primary_scrambling_code

a placeholder for the output guint16, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.0

+
+
+
+

qmi_message_nas_get_serving_system_output_get_call_barring_status ()

+
gboolean
+qmi_message_nas_get_serving_system_output_get_call_barring_status
+                               (QmiMessageNasGetServingSystemOutput *self,
+                                QmiNasCallBarringStatus *value_call_barring_status_cs_status,
+                                QmiNasCallBarringStatus *value_call_barring_status_ps_status,
+                                GError **error);
+

Get the 'Call Barring Status' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + + + + + + +

self

a QmiMessageNasGetServingSystemOutput.

 

value_call_barring_status_cs_status

a placeholder for the output QmiNasCallBarringStatus, or NULL if not required.

 

value_call_barring_status_ps_status

a placeholder for the output QmiNasCallBarringStatus, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.0

+
+
+
+

qmi_message_nas_get_serving_system_output_get_lte_tac ()

+
gboolean
+qmi_message_nas_get_serving_system_output_get_lte_tac
+                               (QmiMessageNasGetServingSystemOutput *self,
+                                guint16 *value_lte_tac,
+                                GError **error);
+

Get the 'LTE TAC' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageNasGetServingSystemOutput.

 

value_lte_tac

a placeholder for the output guint16, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.0

+
+
+
+

qmi_message_nas_get_serving_system_output_get_hdr_personality ()

+
gboolean
+qmi_message_nas_get_serving_system_output_get_hdr_personality
+                               (QmiMessageNasGetServingSystemOutput *self,
+                                QmiNasHdrPersonality *value_hdr_personality,
+                                GError **error);
+

Get the 'HDR Personality' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageNasGetServingSystemOutput.

 

value_hdr_personality

a placeholder for the output QmiNasHdrPersonality, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.0

+
+
+
+

qmi_message_nas_get_serving_system_output_get_cdma_system_info ()

+
gboolean
+qmi_message_nas_get_serving_system_output_get_cdma_system_info
+                               (QmiMessageNasGetServingSystemOutput *self,
+                                guint16 *value_cdma_system_info_mcc,
+                                guint8 *value_cdma_system_info_imsi_11_12,
+                                GError **error);
+

Get the 'CDMA System Info' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + + + + + + +

self

a QmiMessageNasGetServingSystemOutput.

 

value_cdma_system_info_mcc

a placeholder for the output guint16, or NULL if not required.

 

value_cdma_system_info_imsi_11_12

a placeholder for the output guint8, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.0

+
+
+
+

qmi_message_nas_get_serving_system_output_get_detailed_service_status ()

+
gboolean
+qmi_message_nas_get_serving_system_output_get_detailed_service_status
+                               (QmiMessageNasGetServingSystemOutput *self,
+                                QmiNasServiceStatus *value_detailed_service_status_status,
+                                QmiNasNetworkServiceDomain *value_detailed_service_status_capability,
+                                QmiNasServiceStatus *value_detailed_service_status_hdr_status,
+                                gboolean *value_detailed_service_status_hdr_hybrid,
+                                gboolean *value_detailed_service_status_forbidden,
+                                GError **error);
+

Get the 'Detailed Service Status' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

self

a QmiMessageNasGetServingSystemOutput.

 

value_detailed_service_status_status

a placeholder for the output QmiNasServiceStatus, or NULL if not required.

 

value_detailed_service_status_capability

a placeholder for the output QmiNasNetworkServiceDomain, or NULL if not required.

 

value_detailed_service_status_hdr_status

a placeholder for the output QmiNasServiceStatus, or NULL if not required.

 

value_detailed_service_status_hdr_hybrid

a placeholder for the output gboolean, or NULL if not required.

 

value_detailed_service_status_forbidden

a placeholder for the output gboolean, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.0

+
+
+
+

qmi_message_nas_get_serving_system_output_get_dtm_support ()

+
gboolean
+qmi_message_nas_get_serving_system_output_get_dtm_support
+                               (QmiMessageNasGetServingSystemOutput *self,
+                                gboolean *value_dtm_support,
+                                GError **error);
+

Get the 'DTM Support' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageNasGetServingSystemOutput.

 

value_dtm_support

a placeholder for the output gboolean, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.0

+
+
+
+

qmi_message_nas_get_serving_system_output_get_prl_indicator_3gpp2 ()

+
gboolean
+qmi_message_nas_get_serving_system_output_get_prl_indicator_3gpp2
+                               (QmiMessageNasGetServingSystemOutput *self,
+                                gboolean *value_prl_indicator_3gpp2,
+                                GError **error);
+

Get the 'PRL Indicator 3GPP2' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageNasGetServingSystemOutput.

 

value_prl_indicator_3gpp2

a placeholder for the output gboolean, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.0

+
+
+
+

qmi_message_nas_get_serving_system_output_get_concurrent_service_info_3gpp2 ()

+
gboolean
+qmi_message_nas_get_serving_system_output_get_concurrent_service_info_3gpp2
+                               (QmiMessageNasGetServingSystemOutput *self,
+                                gboolean *value_concurrent_service_info_3gpp2,
+                                GError **error);
+

Get the 'Concurrent Service Info 3GPP2' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageNasGetServingSystemOutput.

 

value_concurrent_service_info_3gpp2

a placeholder for the output gboolean, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.0

+
+
+
+

qmi_message_nas_get_serving_system_output_get_cid_3gpp ()

+
gboolean
+qmi_message_nas_get_serving_system_output_get_cid_3gpp
+                               (QmiMessageNasGetServingSystemOutput *self,
+                                guint32 *value_cid_3gpp,
+                                GError **error);
+

Get the 'CID 3GPP' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageNasGetServingSystemOutput.

 

value_cid_3gpp

a placeholder for the output guint32, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.0

+
+
+
+

qmi_message_nas_get_serving_system_output_get_lac_3gpp ()

+
gboolean
+qmi_message_nas_get_serving_system_output_get_lac_3gpp
+                               (QmiMessageNasGetServingSystemOutput *self,
+                                guint16 *value_lac_3gpp,
+                                GError **error);
+

Get the 'LAC 3GPP' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageNasGetServingSystemOutput.

 

value_lac_3gpp

a placeholder for the output guint16, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.0

+
+
+
+

qmi_message_nas_get_serving_system_output_get_daylight_saving_time_adjustment_3gpp ()

+
gboolean
+qmi_message_nas_get_serving_system_output_get_daylight_saving_time_adjustment_3gpp
+                               (QmiMessageNasGetServingSystemOutput *self,
+                                guint8 *value_daylight_saving_time_adjustment_3gpp,
+                                GError **error);
+

Get the 'Daylight Saving Time Adjustment 3GPP' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageNasGetServingSystemOutput.

 

value_daylight_saving_time_adjustment_3gpp

a placeholder for the output guint8, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.0

+
+
+
+

qmi_message_nas_get_serving_system_output_get_time_zone_3gpp ()

+
gboolean
+qmi_message_nas_get_serving_system_output_get_time_zone_3gpp
+                               (QmiMessageNasGetServingSystemOutput *self,
+                                gint8 *value_time_zone_3gpp,
+                                GError **error);
+

Get the 'Time Zone 3GPP' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageNasGetServingSystemOutput.

 

value_time_zone_3gpp

a placeholder for the output gint8, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.0

+
+
+
+

qmi_message_nas_get_serving_system_output_get_cdma_p_rev ()

+
gboolean
+qmi_message_nas_get_serving_system_output_get_cdma_p_rev
+                               (QmiMessageNasGetServingSystemOutput *self,
+                                guint8 *value_cdma_p_rev,
+                                GError **error);
+

Get the 'CDMA P Rev' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageNasGetServingSystemOutput.

 

value_cdma_p_rev

a placeholder for the output guint8, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.0

+
+
+
+

qmi_message_nas_get_serving_system_output_get_time_zone_3gpp2 ()

+
gboolean
+qmi_message_nas_get_serving_system_output_get_time_zone_3gpp2
+                               (QmiMessageNasGetServingSystemOutput *self,
+                                guint8 *value_time_zone_3gpp2_leap_seconds,
+                                gint8 *value_time_zone_3gpp2_local_time_offset,
+                                gboolean *value_time_zone_3gpp2_daylight_saving_time,
+                                GError **error);
+

Get the 'Time Zone 3GPP2' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + + + + + + + + + + + +

self

a QmiMessageNasGetServingSystemOutput.

 

value_time_zone_3gpp2_leap_seconds

a placeholder for the output guint8, or NULL if not required.

 

value_time_zone_3gpp2_local_time_offset

a placeholder for the output gint8, or NULL if not required.

 

value_time_zone_3gpp2_daylight_saving_time

a placeholder for the output gboolean, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.0

+
+
+
+

qmi_message_nas_get_serving_system_output_get_default_roaming_indicator ()

+
gboolean
+qmi_message_nas_get_serving_system_output_get_default_roaming_indicator
+                               (QmiMessageNasGetServingSystemOutput *self,
+                                QmiNasRoamingIndicatorStatus *value_default_roaming_indicator,
+                                GError **error);
+

Get the 'Default Roaming Indicator' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageNasGetServingSystemOutput.

 

value_default_roaming_indicator

a placeholder for the output QmiNasRoamingIndicatorStatus, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.0

+
+
+
+

qmi_message_nas_get_serving_system_output_get_roaming_indicator_list ()

+
gboolean
+qmi_message_nas_get_serving_system_output_get_roaming_indicator_list
+                               (QmiMessageNasGetServingSystemOutput *self,
+                                GArray **value_roaming_indicator_list,
+                                GError **error);
+

Get the 'Roaming Indicator List' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageNasGetServingSystemOutput.

 

value_roaming_indicator_list

a placeholder for the output GArray of QmiMessageNasGetServingSystemOutputRoamingIndicatorListElement elements, or NULL if not required. Do not free it, it is owned by self +.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.0

+
+
+
+

qmi_message_nas_get_serving_system_output_get_cdma_base_station_info ()

+
gboolean
+qmi_message_nas_get_serving_system_output_get_cdma_base_station_info
+                               (QmiMessageNasGetServingSystemOutput *self,
+                                guint16 *value_cdma_base_station_info_base_station_id,
+                                gint32 *value_cdma_base_station_info_base_station_latitude,
+                                gint32 *value_cdma_base_station_info_base_station_longitude,
+                                GError **error);
+

Get the 'CDMA Base Station Info' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + + + + + + + + + + + +

self

a QmiMessageNasGetServingSystemOutput.

 

value_cdma_base_station_info_base_station_id

a placeholder for the output guint16, or NULL if not required.

 

value_cdma_base_station_info_base_station_latitude

a placeholder for the output gint32, or NULL if not required.

 

value_cdma_base_station_info_base_station_longitude

a placeholder for the output gint32, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.0

+
+
+
+

qmi_message_nas_get_serving_system_output_get_cdma_system_id ()

+
gboolean
+qmi_message_nas_get_serving_system_output_get_cdma_system_id
+                               (QmiMessageNasGetServingSystemOutput *self,
+                                guint16 *value_cdma_system_id_sid,
+                                guint16 *value_cdma_system_id_nid,
+                                GError **error);
+

Get the 'CDMA System ID' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + + + + + + +

self

a QmiMessageNasGetServingSystemOutput.

 

value_cdma_system_id_sid

a placeholder for the output guint16, or NULL if not required.

 

value_cdma_system_id_nid

a placeholder for the output guint16, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.0

+
+
+
+

qmi_message_nas_get_serving_system_output_get_current_plmn ()

+
gboolean
+qmi_message_nas_get_serving_system_output_get_current_plmn
+                               (QmiMessageNasGetServingSystemOutput *self,
+                                guint16 *value_current_plmn_mcc,
+                                guint16 *value_current_plmn_mnc,
+                                const gchar **value_current_plmn_description,
+                                GError **error);
+

Get the 'Current PLMN' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + + + + + + + + + + + +

self

a QmiMessageNasGetServingSystemOutput.

 

value_current_plmn_mcc

a placeholder for the output guint16, or NULL if not required.

 

value_current_plmn_mnc

a placeholder for the output guint16, or NULL if not required.

 

value_current_plmn_description

a placeholder for the output constant string, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.0

+
+
+
+

qmi_message_nas_get_serving_system_output_get_data_service_capability ()

+
gboolean
+qmi_message_nas_get_serving_system_output_get_data_service_capability
+                               (QmiMessageNasGetServingSystemOutput *self,
+                                GArray **value_data_service_capability,
+                                GError **error);
+

Get the 'Data Service Capability' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageNasGetServingSystemOutput.

 

value_data_service_capability

a placeholder for the output GArray of QmiNasDataCapability elements, or NULL if not required. Do not free it, it is owned by self +.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.0

+
+
+
+

qmi_message_nas_get_serving_system_output_get_roaming_indicator ()

+
gboolean
+qmi_message_nas_get_serving_system_output_get_roaming_indicator
+                               (QmiMessageNasGetServingSystemOutput *self,
+                                QmiNasRoamingIndicatorStatus *value_roaming_indicator,
+                                GError **error);
+

Get the 'Roaming Indicator' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageNasGetServingSystemOutput.

 

value_roaming_indicator

a placeholder for the output QmiNasRoamingIndicatorStatus, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.0

+
+
+
+

qmi_message_nas_get_serving_system_output_get_result ()

+
gboolean
+qmi_message_nas_get_serving_system_output_get_result
+                               (QmiMessageNasGetServingSystemOutput *self,
+                                GError **error);
+

Get the result of the QMI operation.

+
+

Parameters

+
+++++ + + + + + + + + + + + + +

self

a QmiMessageNasGetServingSystemOutput.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the QMI operation succeeded, FALSE if error +is set.

+
+

Since: 1.0

+
+
+
+

qmi_message_nas_get_serving_system_output_get_serving_system ()

+
gboolean
+qmi_message_nas_get_serving_system_output_get_serving_system
+                               (QmiMessageNasGetServingSystemOutput *self,
+                                QmiNasRegistrationState *value_serving_system_registration_state,
+                                QmiNasAttachState *value_serving_system_cs_attach_state,
+                                QmiNasAttachState *value_serving_system_ps_attach_state,
+                                QmiNasNetworkType *value_serving_system_selected_network,
+                                GArray **value_serving_system_radio_interfaces,
+                                GError **error);
+

Get the 'Serving System' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

self

a QmiMessageNasGetServingSystemOutput.

 

value_serving_system_registration_state

a placeholder for the output QmiNasRegistrationState, or NULL if not required.

 

value_serving_system_cs_attach_state

a placeholder for the output QmiNasAttachState, or NULL if not required.

 

value_serving_system_ps_attach_state

a placeholder for the output QmiNasAttachState, or NULL if not required.

 

value_serving_system_selected_network

a placeholder for the output QmiNasNetworkType, or NULL if not required.

 

value_serving_system_radio_interfaces

a placeholder for the output GArray of QmiNasRadioInterface elements, or NULL if not required. Do not free it, it is owned by self +.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.0

+
+
+
+

qmi_client_nas_get_serving_system ()

+
void
+qmi_client_nas_get_serving_system (QmiClientNas *self,
+                                   gpointer unused,
+                                   guint timeout,
+                                   GCancellable *cancellable,
+                                   GAsyncReadyCallback callback,
+                                   gpointer user_data);
+

Asynchronously sends a Get Serving System request to the device.

+

When the operation is finished, callback + will be invoked in the thread-default main loop of the thread you are calling this method from.

+

You can then call qmi_client_nas_get_serving_system_finish() to get the result of the operation.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

self

a QmiClientNas.

 

unused

NULL. This message doesn't have any input bundle.

 

timeout

maximum time to wait for the method to complete, in seconds.

 

cancellable

a GCancellable or NULL.

 

callback

a GAsyncReadyCallback to call when the request is satisfied.

 

user_data

user data to pass to callback +.

 
+
+

Since: 1.0

+
+
+
+

qmi_client_nas_get_serving_system_finish ()

+
QmiMessageNasGetServingSystemOutput *
+qmi_client_nas_get_serving_system_finish
+                               (QmiClientNas *self,
+                                GAsyncResult *res,
+                                GError **error);
+

Finishes an async operation started with qmi_client_nas_get_serving_system().

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiClientNas.

 

res

the GAsyncResult obtained from the GAsyncReadyCallback passed to qmi_client_nas_get_serving_system().

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

a QmiMessageNasGetServingSystemOutput, or NULL if error +is set. The returned value should be freed with qmi_message_nas_get_serving_system_output_unref().

+
+

Since: 1.0

+
+
+
+

Types and Values

+
+

QmiMessageNasGetServingSystemOutput

+
typedef struct _QmiMessageNasGetServingSystemOutput QmiMessageNasGetServingSystemOutput;
+

The QmiMessageNasGetServingSystemOutput structure contains private data and should only be accessed +using the provided API.

+

Since: 1.0

+
+
+
+

QmiMessageNasGetServingSystemOutputRoamingIndicatorListElement

+
typedef struct {
+    QmiNasRadioInterface radio_interface;
+    QmiNasRoamingIndicatorStatus roaming_indicator;
+} QmiMessageNasGetServingSystemOutputRoamingIndicatorListElement;
+
+

A QmiMessageNasGetServingSystemOutputRoamingIndicatorListElement struct.

+
+

Members

+
+++++ + + + + + + + + + + + + +

QmiNasRadioInterface radio_interface;

a QmiNasRadioInterface.

 

QmiNasRoamingIndicatorStatus roaming_indicator;

a QmiNasRoamingIndicatorStatus.

 
+
+

Since: 1.0

+
+
+
+ + + \ No newline at end of file diff -Nru libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-NAS-Get-Signal-Info.html libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-NAS-Get-Signal-Info.html --- libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-NAS-Get-Signal-Info.html 2017-03-22 12:28:28.000000000 +0100 +++ libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-NAS-Get-Signal-Info.html 1970-01-01 01:00:00.000000000 +0100 @@ -1,673 +0,0 @@ - - - - -NAS Get Signal Info: libqmi-glib Reference Manual - - - - - - - - - - - - - - - - -
-
-
- - -
-

NAS Get Signal Info

-

NAS Get Signal Info

-
- -
-

Types and Values

- -
-
-

Object Hierarchy

-
    GBoxed
-    ╰── QmiMessageNasGetSignalInfoOutput
-
-
-
-

Description

-
-
-

Functions

-
-

qmi_message_nas_get_signal_info_output_ref ()

-
QmiMessageNasGetSignalInfoOutput *
-qmi_message_nas_get_signal_info_output_ref
-                               (QmiMessageNasGetSignalInfoOutput *self);
-

Atomically increments the reference count of self - by one.

-
-

Parameters

-
----- - - - - - -

self

a QmiMessageNasGetSignalInfoOutput.

 
-
-
-

Returns

-

the new reference to self -.

-
-

Since: 1.0

-
-
-
-

qmi_message_nas_get_signal_info_output_unref ()

-
void
-qmi_message_nas_get_signal_info_output_unref
-                               (QmiMessageNasGetSignalInfoOutput *self);
-

Atomically decrements the reference count of self - by one. -If the reference count drops to 0, self - is completely disposed.

-
-

Parameters

-
----- - - - - - -

self

a QmiMessageNasGetSignalInfoOutput.

 
-
-

Since: 1.0

-
-
-
-

qmi_message_nas_get_signal_info_output_get_tdma_signal_strength ()

-
gboolean
-qmi_message_nas_get_signal_info_output_get_tdma_signal_strength
-                               (QmiMessageNasGetSignalInfoOutput *self,
-                                gint8 *value_tdma_signal_strength,
-                                GError **error);
-

Get the 'TDMA Signal Strength' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessageNasGetSignalInfoOutput.

 

value_tdma_signal_strength

a placeholder for the output gint8, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.0

-
-
-
-

qmi_message_nas_get_signal_info_output_get_lte_signal_strength ()

-
gboolean
-qmi_message_nas_get_signal_info_output_get_lte_signal_strength
-                               (QmiMessageNasGetSignalInfoOutput *self,
-                                gint8 *value_lte_signal_strength_rssi,
-                                gint8 *value_lte_signal_strength_rsrq,
-                                gint16 *value_lte_signal_strength_rsrp,
-                                gint16 *value_lte_signal_strength_snr,
-                                GError **error);
-

Get the 'LTE Signal Strength' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

self

a QmiMessageNasGetSignalInfoOutput.

 

value_lte_signal_strength_rssi

a placeholder for the output gint8, or NULL if not required.

 

value_lte_signal_strength_rsrq

a placeholder for the output gint8, or NULL if not required.

 

value_lte_signal_strength_rsrp

a placeholder for the output gint16, or NULL if not required.

 

value_lte_signal_strength_snr

a placeholder for the output gint16, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.0

-
-
-
-

qmi_message_nas_get_signal_info_output_get_wcdma_signal_strength ()

-
gboolean
-qmi_message_nas_get_signal_info_output_get_wcdma_signal_strength
-                               (QmiMessageNasGetSignalInfoOutput *self,
-                                gint8 *value_wcdma_signal_strength_rssi,
-                                gint16 *value_wcdma_signal_strength_ecio,
-                                GError **error);
-

Get the 'WCDMA Signal Strength' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - - - - - - -

self

a QmiMessageNasGetSignalInfoOutput.

 

value_wcdma_signal_strength_rssi

a placeholder for the output gint8, or NULL if not required.

 

value_wcdma_signal_strength_ecio

a placeholder for the output gint16, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.0

-
-
-
-

qmi_message_nas_get_signal_info_output_get_gsm_signal_strength ()

-
gboolean
-qmi_message_nas_get_signal_info_output_get_gsm_signal_strength
-                               (QmiMessageNasGetSignalInfoOutput *self,
-                                gint8 *value_gsm_signal_strength,
-                                GError **error);
-

Get the 'GSM Signal Strength' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessageNasGetSignalInfoOutput.

 

value_gsm_signal_strength

a placeholder for the output gint8, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.0

-
-
-
-

qmi_message_nas_get_signal_info_output_get_hdr_signal_strength ()

-
gboolean
-qmi_message_nas_get_signal_info_output_get_hdr_signal_strength
-                               (QmiMessageNasGetSignalInfoOutput *self,
-                                gint8 *value_hdr_signal_strength_rssi,
-                                gint16 *value_hdr_signal_strength_ecio,
-                                QmiNasEvdoSinrLevel *value_hdr_signal_strength_sinr,
-                                gint32 *value_hdr_signal_strength_io,
-                                GError **error);
-

Get the 'HDR Signal Strength' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

self

a QmiMessageNasGetSignalInfoOutput.

 

value_hdr_signal_strength_rssi

a placeholder for the output gint8, or NULL if not required.

 

value_hdr_signal_strength_ecio

a placeholder for the output gint16, or NULL if not required.

 

value_hdr_signal_strength_sinr

a placeholder for the output QmiNasEvdoSinrLevel, or NULL if not required.

 

value_hdr_signal_strength_io

a placeholder for the output gint32, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.0

-
-
-
-

qmi_message_nas_get_signal_info_output_get_cdma_signal_strength ()

-
gboolean
-qmi_message_nas_get_signal_info_output_get_cdma_signal_strength
-                               (QmiMessageNasGetSignalInfoOutput *self,
-                                gint8 *value_cdma_signal_strength_rssi,
-                                gint16 *value_cdma_signal_strength_ecio,
-                                GError **error);
-

Get the 'CDMA Signal Strength' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - - - - - - -

self

a QmiMessageNasGetSignalInfoOutput.

 

value_cdma_signal_strength_rssi

a placeholder for the output gint8, or NULL if not required.

 

value_cdma_signal_strength_ecio

a placeholder for the output gint16, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.0

-
-
-
-

qmi_message_nas_get_signal_info_output_get_result ()

-
gboolean
-qmi_message_nas_get_signal_info_output_get_result
-                               (QmiMessageNasGetSignalInfoOutput *self,
-                                GError **error);
-

Get the result of the QMI operation.

-
-

Parameters

-
----- - - - - - - - - - - - - -

self

a QmiMessageNasGetSignalInfoOutput.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the QMI operation succeeded, FALSE if error -is set.

-
-

Since: 1.0

-
-
-
-

qmi_client_nas_get_signal_info ()

-
void
-qmi_client_nas_get_signal_info (QmiClientNas *self,
-                                gpointer unused,
-                                guint timeout,
-                                GCancellable *cancellable,
-                                GAsyncReadyCallback callback,
-                                gpointer user_data);
-

Asynchronously sends a Get Signal Info request to the device.

-

When the operation is finished, callback - will be invoked in the thread-default main loop of the thread you are calling this method from.

-

You can then call qmi_client_nas_get_signal_info_finish() to get the result of the operation.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

self

a QmiClientNas.

 

unused

NULL. This message doesn't have any input bundle.

 

timeout

maximum time to wait for the method to complete, in seconds.

 

cancellable

a GCancellable or NULL.

 

callback

a GAsyncReadyCallback to call when the request is satisfied.

 

user_data

user data to pass to callback -.

 
-
-

Since: 1.0

-
-
-
-

qmi_client_nas_get_signal_info_finish ()

-
QmiMessageNasGetSignalInfoOutput *
-qmi_client_nas_get_signal_info_finish (QmiClientNas *self,
-                                       GAsyncResult *res,
-                                       GError **error);
-

Finishes an async operation started with qmi_client_nas_get_signal_info().

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiClientNas.

 

res

the GAsyncResult obtained from the GAsyncReadyCallback passed to qmi_client_nas_get_signal_info().

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

a QmiMessageNasGetSignalInfoOutput, or NULL if error -is set. The returned value should be freed with qmi_message_nas_get_signal_info_output_unref().

-
-

Since: 1.0

-
-
-
-

Types and Values

-
-

QmiMessageNasGetSignalInfoOutput

-
typedef struct _QmiMessageNasGetSignalInfoOutput QmiMessageNasGetSignalInfoOutput;
-

The QmiMessageNasGetSignalInfoOutput structure contains private data and should only be accessed -using the provided API.

-

Since: 1.0

-
-
-
- - - \ No newline at end of file diff -Nru libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-NAS-Get-Signal-Info-request.html libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-NAS-Get-Signal-Info-request.html --- libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-NAS-Get-Signal-Info-request.html 1970-01-01 01:00:00.000000000 +0100 +++ libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-NAS-Get-Signal-Info-request.html 2019-01-08 15:19:01.000000000 +0100 @@ -0,0 +1,673 @@ + + + + +NAS Get Signal Info request: libqmi-glib Reference Manual + + + + + + + + + + + + + + + + +
+
+
+ + +
+

NAS Get Signal Info request

+

NAS Get Signal Info request

+
+ +
+

Types and Values

+ +
+
+

Object Hierarchy

+
    GBoxed
+    ╰── QmiMessageNasGetSignalInfoOutput
+
+
+
+

Description

+
+
+

Functions

+
+

qmi_message_nas_get_signal_info_output_ref ()

+
QmiMessageNasGetSignalInfoOutput *
+qmi_message_nas_get_signal_info_output_ref
+                               (QmiMessageNasGetSignalInfoOutput *self);
+

Atomically increments the reference count of self + by one.

+
+

Parameters

+
+++++ + + + + + +

self

a QmiMessageNasGetSignalInfoOutput.

 
+
+
+

Returns

+

the new reference to self +.

+
+

Since: 1.0

+
+
+
+

qmi_message_nas_get_signal_info_output_unref ()

+
void
+qmi_message_nas_get_signal_info_output_unref
+                               (QmiMessageNasGetSignalInfoOutput *self);
+

Atomically decrements the reference count of self + by one. +If the reference count drops to 0, self + is completely disposed.

+
+

Parameters

+
+++++ + + + + + +

self

a QmiMessageNasGetSignalInfoOutput.

 
+
+

Since: 1.0

+
+
+
+

qmi_message_nas_get_signal_info_output_get_tdma_signal_strength ()

+
gboolean
+qmi_message_nas_get_signal_info_output_get_tdma_signal_strength
+                               (QmiMessageNasGetSignalInfoOutput *self,
+                                gint8 *value_tdma_signal_strength,
+                                GError **error);
+

Get the 'TDMA Signal Strength' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageNasGetSignalInfoOutput.

 

value_tdma_signal_strength

a placeholder for the output gint8, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.0

+
+
+
+

qmi_message_nas_get_signal_info_output_get_lte_signal_strength ()

+
gboolean
+qmi_message_nas_get_signal_info_output_get_lte_signal_strength
+                               (QmiMessageNasGetSignalInfoOutput *self,
+                                gint8 *value_lte_signal_strength_rssi,
+                                gint8 *value_lte_signal_strength_rsrq,
+                                gint16 *value_lte_signal_strength_rsrp,
+                                gint16 *value_lte_signal_strength_snr,
+                                GError **error);
+

Get the 'LTE Signal Strength' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

self

a QmiMessageNasGetSignalInfoOutput.

 

value_lte_signal_strength_rssi

a placeholder for the output gint8, or NULL if not required.

 

value_lte_signal_strength_rsrq

a placeholder for the output gint8, or NULL if not required.

 

value_lte_signal_strength_rsrp

a placeholder for the output gint16, or NULL if not required.

 

value_lte_signal_strength_snr

a placeholder for the output gint16, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.0

+
+
+
+

qmi_message_nas_get_signal_info_output_get_wcdma_signal_strength ()

+
gboolean
+qmi_message_nas_get_signal_info_output_get_wcdma_signal_strength
+                               (QmiMessageNasGetSignalInfoOutput *self,
+                                gint8 *value_wcdma_signal_strength_rssi,
+                                gint16 *value_wcdma_signal_strength_ecio,
+                                GError **error);
+

Get the 'WCDMA Signal Strength' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + + + + + + +

self

a QmiMessageNasGetSignalInfoOutput.

 

value_wcdma_signal_strength_rssi

a placeholder for the output gint8, or NULL if not required.

 

value_wcdma_signal_strength_ecio

a placeholder for the output gint16, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.0

+
+
+
+

qmi_message_nas_get_signal_info_output_get_gsm_signal_strength ()

+
gboolean
+qmi_message_nas_get_signal_info_output_get_gsm_signal_strength
+                               (QmiMessageNasGetSignalInfoOutput *self,
+                                gint8 *value_gsm_signal_strength,
+                                GError **error);
+

Get the 'GSM Signal Strength' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageNasGetSignalInfoOutput.

 

value_gsm_signal_strength

a placeholder for the output gint8, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.0

+
+
+
+

qmi_message_nas_get_signal_info_output_get_hdr_signal_strength ()

+
gboolean
+qmi_message_nas_get_signal_info_output_get_hdr_signal_strength
+                               (QmiMessageNasGetSignalInfoOutput *self,
+                                gint8 *value_hdr_signal_strength_rssi,
+                                gint16 *value_hdr_signal_strength_ecio,
+                                QmiNasEvdoSinrLevel *value_hdr_signal_strength_sinr,
+                                gint32 *value_hdr_signal_strength_io,
+                                GError **error);
+

Get the 'HDR Signal Strength' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

self

a QmiMessageNasGetSignalInfoOutput.

 

value_hdr_signal_strength_rssi

a placeholder for the output gint8, or NULL if not required.

 

value_hdr_signal_strength_ecio

a placeholder for the output gint16, or NULL if not required.

 

value_hdr_signal_strength_sinr

a placeholder for the output QmiNasEvdoSinrLevel, or NULL if not required.

 

value_hdr_signal_strength_io

a placeholder for the output gint32, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.0

+
+
+
+

qmi_message_nas_get_signal_info_output_get_cdma_signal_strength ()

+
gboolean
+qmi_message_nas_get_signal_info_output_get_cdma_signal_strength
+                               (QmiMessageNasGetSignalInfoOutput *self,
+                                gint8 *value_cdma_signal_strength_rssi,
+                                gint16 *value_cdma_signal_strength_ecio,
+                                GError **error);
+

Get the 'CDMA Signal Strength' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + + + + + + +

self

a QmiMessageNasGetSignalInfoOutput.

 

value_cdma_signal_strength_rssi

a placeholder for the output gint8, or NULL if not required.

 

value_cdma_signal_strength_ecio

a placeholder for the output gint16, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.0

+
+
+
+

qmi_message_nas_get_signal_info_output_get_result ()

+
gboolean
+qmi_message_nas_get_signal_info_output_get_result
+                               (QmiMessageNasGetSignalInfoOutput *self,
+                                GError **error);
+

Get the result of the QMI operation.

+
+

Parameters

+
+++++ + + + + + + + + + + + + +

self

a QmiMessageNasGetSignalInfoOutput.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the QMI operation succeeded, FALSE if error +is set.

+
+

Since: 1.0

+
+
+
+

qmi_client_nas_get_signal_info ()

+
void
+qmi_client_nas_get_signal_info (QmiClientNas *self,
+                                gpointer unused,
+                                guint timeout,
+                                GCancellable *cancellable,
+                                GAsyncReadyCallback callback,
+                                gpointer user_data);
+

Asynchronously sends a Get Signal Info request to the device.

+

When the operation is finished, callback + will be invoked in the thread-default main loop of the thread you are calling this method from.

+

You can then call qmi_client_nas_get_signal_info_finish() to get the result of the operation.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

self

a QmiClientNas.

 

unused

NULL. This message doesn't have any input bundle.

 

timeout

maximum time to wait for the method to complete, in seconds.

 

cancellable

a GCancellable or NULL.

 

callback

a GAsyncReadyCallback to call when the request is satisfied.

 

user_data

user data to pass to callback +.

 
+
+

Since: 1.0

+
+
+
+

qmi_client_nas_get_signal_info_finish ()

+
QmiMessageNasGetSignalInfoOutput *
+qmi_client_nas_get_signal_info_finish (QmiClientNas *self,
+                                       GAsyncResult *res,
+                                       GError **error);
+

Finishes an async operation started with qmi_client_nas_get_signal_info().

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiClientNas.

 

res

the GAsyncResult obtained from the GAsyncReadyCallback passed to qmi_client_nas_get_signal_info().

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

a QmiMessageNasGetSignalInfoOutput, or NULL if error +is set. The returned value should be freed with qmi_message_nas_get_signal_info_output_unref().

+
+

Since: 1.0

+
+
+
+

Types and Values

+
+

QmiMessageNasGetSignalInfoOutput

+
typedef struct _QmiMessageNasGetSignalInfoOutput QmiMessageNasGetSignalInfoOutput;
+

The QmiMessageNasGetSignalInfoOutput structure contains private data and should only be accessed +using the provided API.

+

Since: 1.0

+
+
+
+ + + \ No newline at end of file diff -Nru libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-NAS-Get-Signal-Strength.html libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-NAS-Get-Signal-Strength.html --- libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-NAS-Get-Signal-Strength.html 2017-03-22 12:28:28.000000000 +0100 +++ libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-NAS-Get-Signal-Strength.html 1970-01-01 01:00:00.000000000 +0100 @@ -1,1205 +0,0 @@ - - - - -NAS Get Signal Strength: libqmi-glib Reference Manual - - - - - - - - - - - - - - - - -
-
-
- - -
-

NAS Get Signal Strength

-

NAS Get Signal Strength

-
-
-

Functions

-
---- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
-QmiMessageNasGetSignalStrengthInput * - -qmi_message_nas_get_signal_strength_input_new () -
-QmiMessageNasGetSignalStrengthInput * - -qmi_message_nas_get_signal_strength_input_ref () -
-void - -qmi_message_nas_get_signal_strength_input_unref () -
-gboolean - -qmi_message_nas_get_signal_strength_input_get_request_mask () -
-gboolean - -qmi_message_nas_get_signal_strength_input_set_request_mask () -
-QmiMessageNasGetSignalStrengthOutput * - -qmi_message_nas_get_signal_strength_output_ref () -
-void - -qmi_message_nas_get_signal_strength_output_unref () -
-gboolean - -qmi_message_nas_get_signal_strength_output_get_lte_rsrp () -
-gboolean - -qmi_message_nas_get_signal_strength_output_get_lte_snr () -
-gboolean - -qmi_message_nas_get_signal_strength_output_get_rsrq () -
-gboolean - -qmi_message_nas_get_signal_strength_output_get_error_rate_list () -
-gboolean - -qmi_message_nas_get_signal_strength_output_get_sinr () -
-gboolean - -qmi_message_nas_get_signal_strength_output_get_io () -
-gboolean - -qmi_message_nas_get_signal_strength_output_get_ecio_list () -
-gboolean - -qmi_message_nas_get_signal_strength_output_get_rssi_list () -
-gboolean - -qmi_message_nas_get_signal_strength_output_get_strength_list () -
-gboolean - -qmi_message_nas_get_signal_strength_output_get_result () -
-gboolean - -qmi_message_nas_get_signal_strength_output_get_signal_strength () -
-void - -qmi_client_nas_get_signal_strength () -
-QmiMessageNasGetSignalStrengthOutput * - -qmi_client_nas_get_signal_strength_finish () -
-
- -
-

Object Hierarchy

-
    GBoxed
-    ├── QmiMessageNasGetSignalStrengthInput
-    ╰── QmiMessageNasGetSignalStrengthOutput
-
-
-
-

Description

-
-
-

Functions

-
-

qmi_message_nas_get_signal_strength_input_new ()

-
QmiMessageNasGetSignalStrengthInput *
-qmi_message_nas_get_signal_strength_input_new
-                               (void);
-

Allocates a new QmiMessageNasGetSignalStrengthInput.

-
-

Returns

-

the newly created QmiMessageNasGetSignalStrengthInput. The returned value should be freed with qmi_message_nas_get_signal_strength_input_unref().

-
-

Since: 1.0

-
-
-
-

qmi_message_nas_get_signal_strength_input_ref ()

-
QmiMessageNasGetSignalStrengthInput *
-qmi_message_nas_get_signal_strength_input_ref
-                               (QmiMessageNasGetSignalStrengthInput *self);
-

Atomically increments the reference count of self - by one.

-
-

Parameters

-
----- - - - - - -

self

a QmiMessageNasGetSignalStrengthInput.

 
-
-
-

Returns

-

the new reference to self -.

-
-

Since: 1.0

-
-
-
-

qmi_message_nas_get_signal_strength_input_unref ()

-
void
-qmi_message_nas_get_signal_strength_input_unref
-                               (QmiMessageNasGetSignalStrengthInput *self);
-

Atomically decrements the reference count of self - by one. -If the reference count drops to 0, self - is completely disposed.

-
-

Parameters

-
----- - - - - - -

self

a QmiMessageNasGetSignalStrengthInput.

 
-
-

Since: 1.0

-
-
-
-

qmi_message_nas_get_signal_strength_input_get_request_mask ()

-
gboolean
-qmi_message_nas_get_signal_strength_input_get_request_mask
-                               (QmiMessageNasGetSignalStrengthInput *self,
-                                QmiNasSignalStrengthRequest *value_request_mask,
-                                GError **error);
-

Get the 'Request Mask' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessageNasGetSignalStrengthInput.

 

value_request_mask

a placeholder for the output QmiNasSignalStrengthRequest, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.0

-
-
-
-

qmi_message_nas_get_signal_strength_input_set_request_mask ()

-
gboolean
-qmi_message_nas_get_signal_strength_input_set_request_mask
-                               (QmiMessageNasGetSignalStrengthInput *self,
-                                QmiNasSignalStrengthRequest value_request_mask,
-                                GError **error);
-

Set the 'Request Mask' field in the message.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessageNasGetSignalStrengthInput.

 

value_request_mask

a QmiNasSignalStrengthRequest.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if value -was successfully set, FALSE otherwise.

-
-

Since: 1.0

-
-
-
-

qmi_message_nas_get_signal_strength_output_ref ()

-
QmiMessageNasGetSignalStrengthOutput *
-qmi_message_nas_get_signal_strength_output_ref
-                               (QmiMessageNasGetSignalStrengthOutput *self);
-

Atomically increments the reference count of self - by one.

-
-

Parameters

-
----- - - - - - -

self

a QmiMessageNasGetSignalStrengthOutput.

 
-
-
-

Returns

-

the new reference to self -.

-
-

Since: 1.0

-
-
-
-

qmi_message_nas_get_signal_strength_output_unref ()

-
void
-qmi_message_nas_get_signal_strength_output_unref
-                               (QmiMessageNasGetSignalStrengthOutput *self);
-

Atomically decrements the reference count of self - by one. -If the reference count drops to 0, self - is completely disposed.

-
-

Parameters

-
----- - - - - - -

self

a QmiMessageNasGetSignalStrengthOutput.

 
-
-

Since: 1.0

-
-
-
-

qmi_message_nas_get_signal_strength_output_get_lte_rsrp ()

-
gboolean
-qmi_message_nas_get_signal_strength_output_get_lte_rsrp
-                               (QmiMessageNasGetSignalStrengthOutput *self,
-                                gint16 *value_lte_rsrp,
-                                GError **error);
-

Get the 'LTE RSRP' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessageNasGetSignalStrengthOutput.

 

value_lte_rsrp

a placeholder for the output gint16, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.0

-
-
-
-

qmi_message_nas_get_signal_strength_output_get_lte_snr ()

-
gboolean
-qmi_message_nas_get_signal_strength_output_get_lte_snr
-                               (QmiMessageNasGetSignalStrengthOutput *self,
-                                gint16 *value_lte_snr,
-                                GError **error);
-

Get the 'LTE SNR' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessageNasGetSignalStrengthOutput.

 

value_lte_snr

a placeholder for the output gint16, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.0

-
-
-
-

qmi_message_nas_get_signal_strength_output_get_rsrq ()

-
gboolean
-qmi_message_nas_get_signal_strength_output_get_rsrq
-                               (QmiMessageNasGetSignalStrengthOutput *self,
-                                gint8 *value_rsrq_rsrq,
-                                QmiNasRadioInterface *value_rsrq_radio_interface,
-                                GError **error);
-

Get the 'RSRQ' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - - - - - - -

self

a QmiMessageNasGetSignalStrengthOutput.

 

value_rsrq_rsrq

a placeholder for the output gint8, or NULL if not required.

 

value_rsrq_radio_interface

a placeholder for the output QmiNasRadioInterface, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.0

-
-
-
-

qmi_message_nas_get_signal_strength_output_get_error_rate_list ()

-
gboolean
-qmi_message_nas_get_signal_strength_output_get_error_rate_list
-                               (QmiMessageNasGetSignalStrengthOutput *self,
-                                GArray **value_error_rate_list,
-                                GError **error);
-

Get the 'Error Rate List' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessageNasGetSignalStrengthOutput.

 

value_error_rate_list

a placeholder for the output GArray of QmiMessageNasGetSignalStrengthOutputErrorRateListElement elements, or NULL if not required. Do not free it, it is owned by self -.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.0

-
-
-
-

qmi_message_nas_get_signal_strength_output_get_sinr ()

-
gboolean
-qmi_message_nas_get_signal_strength_output_get_sinr
-                               (QmiMessageNasGetSignalStrengthOutput *self,
-                                QmiNasEvdoSinrLevel *value_sinr,
-                                GError **error);
-

Get the 'SINR' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessageNasGetSignalStrengthOutput.

 

value_sinr

a placeholder for the output QmiNasEvdoSinrLevel, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.0

-
-
-
-

qmi_message_nas_get_signal_strength_output_get_io ()

-
gboolean
-qmi_message_nas_get_signal_strength_output_get_io
-                               (QmiMessageNasGetSignalStrengthOutput *self,
-                                gint32 *value_io,
-                                GError **error);
-

Get the 'IO' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessageNasGetSignalStrengthOutput.

 

value_io

a placeholder for the output gint32, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.0

-
-
-
-

qmi_message_nas_get_signal_strength_output_get_ecio_list ()

-
gboolean
-qmi_message_nas_get_signal_strength_output_get_ecio_list
-                               (QmiMessageNasGetSignalStrengthOutput *self,
-                                GArray **value_ecio_list,
-                                GError **error);
-

Get the 'ECIO List' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessageNasGetSignalStrengthOutput.

 

value_ecio_list

a placeholder for the output GArray of QmiMessageNasGetSignalStrengthOutputEcioListElement elements, or NULL if not required. Do not free it, it is owned by self -.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.0

-
-
-
-

qmi_message_nas_get_signal_strength_output_get_rssi_list ()

-
gboolean
-qmi_message_nas_get_signal_strength_output_get_rssi_list
-                               (QmiMessageNasGetSignalStrengthOutput *self,
-                                GArray **value_rssi_list,
-                                GError **error);
-

Get the 'RSSI List' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessageNasGetSignalStrengthOutput.

 

value_rssi_list

a placeholder for the output GArray of QmiMessageNasGetSignalStrengthOutputRssiListElement elements, or NULL if not required. Do not free it, it is owned by self -.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.0

-
-
-
-

qmi_message_nas_get_signal_strength_output_get_strength_list ()

-
gboolean
-qmi_message_nas_get_signal_strength_output_get_strength_list
-                               (QmiMessageNasGetSignalStrengthOutput *self,
-                                GArray **value_strength_list,
-                                GError **error);
-

Get the 'Strength List' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessageNasGetSignalStrengthOutput.

 

value_strength_list

a placeholder for the output GArray of QmiMessageNasGetSignalStrengthOutputStrengthListElement elements, or NULL if not required. Do not free it, it is owned by self -.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.0

-
-
-
-

qmi_message_nas_get_signal_strength_output_get_result ()

-
gboolean
-qmi_message_nas_get_signal_strength_output_get_result
-                               (QmiMessageNasGetSignalStrengthOutput *self,
-                                GError **error);
-

Get the result of the QMI operation.

-
-

Parameters

-
----- - - - - - - - - - - - - -

self

a QmiMessageNasGetSignalStrengthOutput.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the QMI operation succeeded, FALSE if error -is set.

-
-

Since: 1.0

-
-
-
-

qmi_message_nas_get_signal_strength_output_get_signal_strength ()

-
gboolean
-qmi_message_nas_get_signal_strength_output_get_signal_strength
-                               (QmiMessageNasGetSignalStrengthOutput *self,
-                                gint8 *value_signal_strength_strength,
-                                QmiNasRadioInterface *value_signal_strength_radio_interface,
-                                GError **error);
-

Get the 'Signal Strength' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - - - - - - -

self

a QmiMessageNasGetSignalStrengthOutput.

 

value_signal_strength_strength

a placeholder for the output gint8, or NULL if not required.

 

value_signal_strength_radio_interface

a placeholder for the output QmiNasRadioInterface, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.0

-
-
-
-

qmi_client_nas_get_signal_strength ()

-
void
-qmi_client_nas_get_signal_strength (QmiClientNas *self,
-                                    QmiMessageNasGetSignalStrengthInput *input,
-                                    guint timeout,
-                                    GCancellable *cancellable,
-                                    GAsyncReadyCallback callback,
-                                    gpointer user_data);
-

Asynchronously sends a Get Signal Strength request to the device.

-

When the operation is finished, callback - will be invoked in the thread-default main loop of the thread you are calling this method from.

-

You can then call qmi_client_nas_get_signal_strength_finish() to get the result of the operation.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

self

a QmiClientNas.

 

input

a QmiMessageNasGetSignalStrengthInput.

 

timeout

maximum time to wait for the method to complete, in seconds.

 

cancellable

a GCancellable or NULL.

 

callback

a GAsyncReadyCallback to call when the request is satisfied.

 

user_data

user data to pass to callback -.

 
-
-

Since: 1.0

-
-
-
-

qmi_client_nas_get_signal_strength_finish ()

-
QmiMessageNasGetSignalStrengthOutput *
-qmi_client_nas_get_signal_strength_finish
-                               (QmiClientNas *self,
-                                GAsyncResult *res,
-                                GError **error);
-

Finishes an async operation started with qmi_client_nas_get_signal_strength().

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiClientNas.

 

res

the GAsyncResult obtained from the GAsyncReadyCallback passed to qmi_client_nas_get_signal_strength().

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

a QmiMessageNasGetSignalStrengthOutput, or NULL if error -is set. The returned value should be freed with qmi_message_nas_get_signal_strength_output_unref().

-
-

Since: 1.0

-
-
-
-

Types and Values

-
-

QmiMessageNasGetSignalStrengthInput

-
typedef struct _QmiMessageNasGetSignalStrengthInput QmiMessageNasGetSignalStrengthInput;
-

The QmiMessageNasGetSignalStrengthInput structure contains private data and should only be accessed -using the provided API.

-

Since: 1.0

-
-
-
-

QmiMessageNasGetSignalStrengthOutput

-
typedef struct _QmiMessageNasGetSignalStrengthOutput QmiMessageNasGetSignalStrengthOutput;
-

The QmiMessageNasGetSignalStrengthOutput structure contains private data and should only be accessed -using the provided API.

-

Since: 1.0

-
-
-
-

QmiMessageNasGetSignalStrengthOutputErrorRateListElement

-
typedef struct {
-    guint16 rate;
-    QmiNasRadioInterface radio_interface;
-} QmiMessageNasGetSignalStrengthOutputErrorRateListElement;
-
-

A QmiMessageNasGetSignalStrengthOutputErrorRateListElement struct.

-
-

Members

-
----- - - - - - - - - - - - - -

guint16 rate;

a guint16.

 

QmiNasRadioInterface radio_interface;

a QmiNasRadioInterface.

 
-
-

Since: 1.0

-
-
-
-

QmiMessageNasGetSignalStrengthOutputEcioListElement

-
typedef struct {
-    guint8 ecio;
-    QmiNasRadioInterface radio_interface;
-} QmiMessageNasGetSignalStrengthOutputEcioListElement;
-
-

A QmiMessageNasGetSignalStrengthOutputEcioListElement struct.

-
-

Members

-
----- - - - - - - - - - - - - -

guint8 ecio;

a guint8.

 

QmiNasRadioInterface radio_interface;

a QmiNasRadioInterface.

 
-
-

Since: 1.0

-
-
-
-

QmiMessageNasGetSignalStrengthOutputRssiListElement

-
typedef struct {
-    guint8 rssi;
-    QmiNasRadioInterface radio_interface;
-} QmiMessageNasGetSignalStrengthOutputRssiListElement;
-
-

A QmiMessageNasGetSignalStrengthOutputRssiListElement struct.

-
-

Members

-
----- - - - - - - - - - - - - -

guint8 rssi;

a guint8.

 

QmiNasRadioInterface radio_interface;

a QmiNasRadioInterface.

 
-
-

Since: 1.0

-
-
-
-

QmiMessageNasGetSignalStrengthOutputStrengthListElement

-
typedef struct {
-    gint8 strength;
-    QmiNasRadioInterface radio_interface;
-} QmiMessageNasGetSignalStrengthOutputStrengthListElement;
-
-

A QmiMessageNasGetSignalStrengthOutputStrengthListElement struct.

-
-

Members

-
----- - - - - - - - - - - - - -

gint8 strength;

a gint8.

 

QmiNasRadioInterface radio_interface;

a QmiNasRadioInterface.

 
-
-

Since: 1.0

-
-
-
- - - \ No newline at end of file diff -Nru libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-NAS-Get-Signal-Strength-request.html libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-NAS-Get-Signal-Strength-request.html --- libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-NAS-Get-Signal-Strength-request.html 1970-01-01 01:00:00.000000000 +0100 +++ libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-NAS-Get-Signal-Strength-request.html 2019-01-08 15:19:01.000000000 +0100 @@ -0,0 +1,1205 @@ + + + + +NAS Get Signal Strength request: libqmi-glib Reference Manual + + + + + + + + + + + + + + + + +
+
+
+ + +
+

NAS Get Signal Strength request

+

NAS Get Signal Strength request

+
+
+

Functions

+
++++ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+QmiMessageNasGetSignalStrengthInput * + +qmi_message_nas_get_signal_strength_input_new () +
+QmiMessageNasGetSignalStrengthInput * + +qmi_message_nas_get_signal_strength_input_ref () +
+void + +qmi_message_nas_get_signal_strength_input_unref () +
+gboolean + +qmi_message_nas_get_signal_strength_input_get_request_mask () +
+gboolean + +qmi_message_nas_get_signal_strength_input_set_request_mask () +
+QmiMessageNasGetSignalStrengthOutput * + +qmi_message_nas_get_signal_strength_output_ref () +
+void + +qmi_message_nas_get_signal_strength_output_unref () +
+gboolean + +qmi_message_nas_get_signal_strength_output_get_lte_rsrp () +
+gboolean + +qmi_message_nas_get_signal_strength_output_get_lte_snr () +
+gboolean + +qmi_message_nas_get_signal_strength_output_get_rsrq () +
+gboolean + +qmi_message_nas_get_signal_strength_output_get_error_rate_list () +
+gboolean + +qmi_message_nas_get_signal_strength_output_get_sinr () +
+gboolean + +qmi_message_nas_get_signal_strength_output_get_io () +
+gboolean + +qmi_message_nas_get_signal_strength_output_get_ecio_list () +
+gboolean + +qmi_message_nas_get_signal_strength_output_get_rssi_list () +
+gboolean + +qmi_message_nas_get_signal_strength_output_get_strength_list () +
+gboolean + +qmi_message_nas_get_signal_strength_output_get_result () +
+gboolean + +qmi_message_nas_get_signal_strength_output_get_signal_strength () +
+void + +qmi_client_nas_get_signal_strength () +
+QmiMessageNasGetSignalStrengthOutput * + +qmi_client_nas_get_signal_strength_finish () +
+
+ +
+

Object Hierarchy

+
    GBoxed
+    ├── QmiMessageNasGetSignalStrengthInput
+    ╰── QmiMessageNasGetSignalStrengthOutput
+
+
+
+

Description

+
+
+

Functions

+
+

qmi_message_nas_get_signal_strength_input_new ()

+
QmiMessageNasGetSignalStrengthInput *
+qmi_message_nas_get_signal_strength_input_new
+                               (void);
+

Allocates a new QmiMessageNasGetSignalStrengthInput.

+
+

Returns

+

the newly created QmiMessageNasGetSignalStrengthInput. The returned value should be freed with qmi_message_nas_get_signal_strength_input_unref().

+
+

Since: 1.0

+
+
+
+

qmi_message_nas_get_signal_strength_input_ref ()

+
QmiMessageNasGetSignalStrengthInput *
+qmi_message_nas_get_signal_strength_input_ref
+                               (QmiMessageNasGetSignalStrengthInput *self);
+

Atomically increments the reference count of self + by one.

+
+

Parameters

+
+++++ + + + + + +

self

a QmiMessageNasGetSignalStrengthInput.

 
+
+
+

Returns

+

the new reference to self +.

+
+

Since: 1.0

+
+
+
+

qmi_message_nas_get_signal_strength_input_unref ()

+
void
+qmi_message_nas_get_signal_strength_input_unref
+                               (QmiMessageNasGetSignalStrengthInput *self);
+

Atomically decrements the reference count of self + by one. +If the reference count drops to 0, self + is completely disposed.

+
+

Parameters

+
+++++ + + + + + +

self

a QmiMessageNasGetSignalStrengthInput.

 
+
+

Since: 1.0

+
+
+
+

qmi_message_nas_get_signal_strength_input_get_request_mask ()

+
gboolean
+qmi_message_nas_get_signal_strength_input_get_request_mask
+                               (QmiMessageNasGetSignalStrengthInput *self,
+                                QmiNasSignalStrengthRequest *value_request_mask,
+                                GError **error);
+

Get the 'Request Mask' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageNasGetSignalStrengthInput.

 

value_request_mask

a placeholder for the output QmiNasSignalStrengthRequest, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.0

+
+
+
+

qmi_message_nas_get_signal_strength_input_set_request_mask ()

+
gboolean
+qmi_message_nas_get_signal_strength_input_set_request_mask
+                               (QmiMessageNasGetSignalStrengthInput *self,
+                                QmiNasSignalStrengthRequest value_request_mask,
+                                GError **error);
+

Set the 'Request Mask' field in the message.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageNasGetSignalStrengthInput.

 

value_request_mask

a QmiNasSignalStrengthRequest.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if value +was successfully set, FALSE otherwise.

+
+

Since: 1.0

+
+
+
+

qmi_message_nas_get_signal_strength_output_ref ()

+
QmiMessageNasGetSignalStrengthOutput *
+qmi_message_nas_get_signal_strength_output_ref
+                               (QmiMessageNasGetSignalStrengthOutput *self);
+

Atomically increments the reference count of self + by one.

+
+

Parameters

+
+++++ + + + + + +

self

a QmiMessageNasGetSignalStrengthOutput.

 
+
+
+

Returns

+

the new reference to self +.

+
+

Since: 1.0

+
+
+
+

qmi_message_nas_get_signal_strength_output_unref ()

+
void
+qmi_message_nas_get_signal_strength_output_unref
+                               (QmiMessageNasGetSignalStrengthOutput *self);
+

Atomically decrements the reference count of self + by one. +If the reference count drops to 0, self + is completely disposed.

+
+

Parameters

+
+++++ + + + + + +

self

a QmiMessageNasGetSignalStrengthOutput.

 
+
+

Since: 1.0

+
+
+
+

qmi_message_nas_get_signal_strength_output_get_lte_rsrp ()

+
gboolean
+qmi_message_nas_get_signal_strength_output_get_lte_rsrp
+                               (QmiMessageNasGetSignalStrengthOutput *self,
+                                gint16 *value_lte_rsrp,
+                                GError **error);
+

Get the 'LTE RSRP' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageNasGetSignalStrengthOutput.

 

value_lte_rsrp

a placeholder for the output gint16, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.0

+
+
+
+

qmi_message_nas_get_signal_strength_output_get_lte_snr ()

+
gboolean
+qmi_message_nas_get_signal_strength_output_get_lte_snr
+                               (QmiMessageNasGetSignalStrengthOutput *self,
+                                gint16 *value_lte_snr,
+                                GError **error);
+

Get the 'LTE SNR' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageNasGetSignalStrengthOutput.

 

value_lte_snr

a placeholder for the output gint16, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.0

+
+
+
+

qmi_message_nas_get_signal_strength_output_get_rsrq ()

+
gboolean
+qmi_message_nas_get_signal_strength_output_get_rsrq
+                               (QmiMessageNasGetSignalStrengthOutput *self,
+                                gint8 *value_rsrq_rsrq,
+                                QmiNasRadioInterface *value_rsrq_radio_interface,
+                                GError **error);
+

Get the 'RSRQ' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + + + + + + +

self

a QmiMessageNasGetSignalStrengthOutput.

 

value_rsrq_rsrq

a placeholder for the output gint8, or NULL if not required.

 

value_rsrq_radio_interface

a placeholder for the output QmiNasRadioInterface, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.0

+
+
+
+

qmi_message_nas_get_signal_strength_output_get_error_rate_list ()

+
gboolean
+qmi_message_nas_get_signal_strength_output_get_error_rate_list
+                               (QmiMessageNasGetSignalStrengthOutput *self,
+                                GArray **value_error_rate_list,
+                                GError **error);
+

Get the 'Error Rate List' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageNasGetSignalStrengthOutput.

 

value_error_rate_list

a placeholder for the output GArray of QmiMessageNasGetSignalStrengthOutputErrorRateListElement elements, or NULL if not required. Do not free it, it is owned by self +.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.0

+
+
+
+

qmi_message_nas_get_signal_strength_output_get_sinr ()

+
gboolean
+qmi_message_nas_get_signal_strength_output_get_sinr
+                               (QmiMessageNasGetSignalStrengthOutput *self,
+                                QmiNasEvdoSinrLevel *value_sinr,
+                                GError **error);
+

Get the 'SINR' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageNasGetSignalStrengthOutput.

 

value_sinr

a placeholder for the output QmiNasEvdoSinrLevel, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.0

+
+
+
+

qmi_message_nas_get_signal_strength_output_get_io ()

+
gboolean
+qmi_message_nas_get_signal_strength_output_get_io
+                               (QmiMessageNasGetSignalStrengthOutput *self,
+                                gint32 *value_io,
+                                GError **error);
+

Get the 'IO' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageNasGetSignalStrengthOutput.

 

value_io

a placeholder for the output gint32, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.0

+
+
+
+

qmi_message_nas_get_signal_strength_output_get_ecio_list ()

+
gboolean
+qmi_message_nas_get_signal_strength_output_get_ecio_list
+                               (QmiMessageNasGetSignalStrengthOutput *self,
+                                GArray **value_ecio_list,
+                                GError **error);
+

Get the 'ECIO List' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageNasGetSignalStrengthOutput.

 

value_ecio_list

a placeholder for the output GArray of QmiMessageNasGetSignalStrengthOutputEcioListElement elements, or NULL if not required. Do not free it, it is owned by self +.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.0

+
+
+
+

qmi_message_nas_get_signal_strength_output_get_rssi_list ()

+
gboolean
+qmi_message_nas_get_signal_strength_output_get_rssi_list
+                               (QmiMessageNasGetSignalStrengthOutput *self,
+                                GArray **value_rssi_list,
+                                GError **error);
+

Get the 'RSSI List' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageNasGetSignalStrengthOutput.

 

value_rssi_list

a placeholder for the output GArray of QmiMessageNasGetSignalStrengthOutputRssiListElement elements, or NULL if not required. Do not free it, it is owned by self +.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.0

+
+
+
+

qmi_message_nas_get_signal_strength_output_get_strength_list ()

+
gboolean
+qmi_message_nas_get_signal_strength_output_get_strength_list
+                               (QmiMessageNasGetSignalStrengthOutput *self,
+                                GArray **value_strength_list,
+                                GError **error);
+

Get the 'Strength List' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageNasGetSignalStrengthOutput.

 

value_strength_list

a placeholder for the output GArray of QmiMessageNasGetSignalStrengthOutputStrengthListElement elements, or NULL if not required. Do not free it, it is owned by self +.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.0

+
+
+
+

qmi_message_nas_get_signal_strength_output_get_result ()

+
gboolean
+qmi_message_nas_get_signal_strength_output_get_result
+                               (QmiMessageNasGetSignalStrengthOutput *self,
+                                GError **error);
+

Get the result of the QMI operation.

+
+

Parameters

+
+++++ + + + + + + + + + + + + +

self

a QmiMessageNasGetSignalStrengthOutput.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the QMI operation succeeded, FALSE if error +is set.

+
+

Since: 1.0

+
+
+
+

qmi_message_nas_get_signal_strength_output_get_signal_strength ()

+
gboolean
+qmi_message_nas_get_signal_strength_output_get_signal_strength
+                               (QmiMessageNasGetSignalStrengthOutput *self,
+                                gint8 *value_signal_strength_strength,
+                                QmiNasRadioInterface *value_signal_strength_radio_interface,
+                                GError **error);
+

Get the 'Signal Strength' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + + + + + + +

self

a QmiMessageNasGetSignalStrengthOutput.

 

value_signal_strength_strength

a placeholder for the output gint8, or NULL if not required.

 

value_signal_strength_radio_interface

a placeholder for the output QmiNasRadioInterface, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.0

+
+
+
+

qmi_client_nas_get_signal_strength ()

+
void
+qmi_client_nas_get_signal_strength (QmiClientNas *self,
+                                    QmiMessageNasGetSignalStrengthInput *input,
+                                    guint timeout,
+                                    GCancellable *cancellable,
+                                    GAsyncReadyCallback callback,
+                                    gpointer user_data);
+

Asynchronously sends a Get Signal Strength request to the device.

+

When the operation is finished, callback + will be invoked in the thread-default main loop of the thread you are calling this method from.

+

You can then call qmi_client_nas_get_signal_strength_finish() to get the result of the operation.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

self

a QmiClientNas.

 

input

a QmiMessageNasGetSignalStrengthInput.

 

timeout

maximum time to wait for the method to complete, in seconds.

 

cancellable

a GCancellable or NULL.

 

callback

a GAsyncReadyCallback to call when the request is satisfied.

 

user_data

user data to pass to callback +.

 
+
+

Since: 1.0

+
+
+
+

qmi_client_nas_get_signal_strength_finish ()

+
QmiMessageNasGetSignalStrengthOutput *
+qmi_client_nas_get_signal_strength_finish
+                               (QmiClientNas *self,
+                                GAsyncResult *res,
+                                GError **error);
+

Finishes an async operation started with qmi_client_nas_get_signal_strength().

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiClientNas.

 

res

the GAsyncResult obtained from the GAsyncReadyCallback passed to qmi_client_nas_get_signal_strength().

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

a QmiMessageNasGetSignalStrengthOutput, or NULL if error +is set. The returned value should be freed with qmi_message_nas_get_signal_strength_output_unref().

+
+

Since: 1.0

+
+
+
+

Types and Values

+
+

QmiMessageNasGetSignalStrengthInput

+
typedef struct _QmiMessageNasGetSignalStrengthInput QmiMessageNasGetSignalStrengthInput;
+

The QmiMessageNasGetSignalStrengthInput structure contains private data and should only be accessed +using the provided API.

+

Since: 1.0

+
+
+
+

QmiMessageNasGetSignalStrengthOutput

+
typedef struct _QmiMessageNasGetSignalStrengthOutput QmiMessageNasGetSignalStrengthOutput;
+

The QmiMessageNasGetSignalStrengthOutput structure contains private data and should only be accessed +using the provided API.

+

Since: 1.0

+
+
+
+

QmiMessageNasGetSignalStrengthOutputErrorRateListElement

+
typedef struct {
+    guint16 rate;
+    QmiNasRadioInterface radio_interface;
+} QmiMessageNasGetSignalStrengthOutputErrorRateListElement;
+
+

A QmiMessageNasGetSignalStrengthOutputErrorRateListElement struct.

+
+

Members

+
+++++ + + + + + + + + + + + + +

guint16 rate;

a guint16.

 

QmiNasRadioInterface radio_interface;

a QmiNasRadioInterface.

 
+
+

Since: 1.0

+
+
+
+

QmiMessageNasGetSignalStrengthOutputEcioListElement

+
typedef struct {
+    guint8 ecio;
+    QmiNasRadioInterface radio_interface;
+} QmiMessageNasGetSignalStrengthOutputEcioListElement;
+
+

A QmiMessageNasGetSignalStrengthOutputEcioListElement struct.

+
+

Members

+
+++++ + + + + + + + + + + + + +

guint8 ecio;

a guint8.

 

QmiNasRadioInterface radio_interface;

a QmiNasRadioInterface.

 
+
+

Since: 1.0

+
+
+
+

QmiMessageNasGetSignalStrengthOutputRssiListElement

+
typedef struct {
+    guint8 rssi;
+    QmiNasRadioInterface radio_interface;
+} QmiMessageNasGetSignalStrengthOutputRssiListElement;
+
+

A QmiMessageNasGetSignalStrengthOutputRssiListElement struct.

+
+

Members

+
+++++ + + + + + + + + + + + + +

guint8 rssi;

a guint8.

 

QmiNasRadioInterface radio_interface;

a QmiNasRadioInterface.

 
+
+

Since: 1.0

+
+
+
+

QmiMessageNasGetSignalStrengthOutputStrengthListElement

+
typedef struct {
+    gint8 strength;
+    QmiNasRadioInterface radio_interface;
+} QmiMessageNasGetSignalStrengthOutputStrengthListElement;
+
+

A QmiMessageNasGetSignalStrengthOutputStrengthListElement struct.

+
+

Members

+
+++++ + + + + + + + + + + + + +

gint8 strength;

a gint8.

 

QmiNasRadioInterface radio_interface;

a QmiNasRadioInterface.

 
+
+

Since: 1.0

+
+
+
+ + + \ No newline at end of file diff -Nru libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-NAS-Get-Supported-Messages.html libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-NAS-Get-Supported-Messages.html --- libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-NAS-Get-Supported-Messages.html 2017-03-22 12:28:29.000000000 +0100 +++ libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-NAS-Get-Supported-Messages.html 1970-01-01 01:00:00.000000000 +0100 @@ -1,372 +0,0 @@ - - - - -NAS Get Supported Messages: libqmi-glib Reference Manual - - - - - - - - - - - - - - - - -
-
-
- - -
-

NAS Get Supported Messages

-

NAS Get Supported Messages

-
- -
-

Types and Values

- -
-
-

Object Hierarchy

-
    GBoxed
-    ╰── QmiMessageNasGetSupportedMessagesOutput
-
-
-
-

Description

-
-
-

Functions

-
-

qmi_message_nas_get_supported_messages_output_ref ()

-
QmiMessageNasGetSupportedMessagesOutput *
-qmi_message_nas_get_supported_messages_output_ref
-                               (QmiMessageNasGetSupportedMessagesOutput *self);
-

Atomically increments the reference count of self - by one.

-
-

Parameters

-
----- - - - - - -

self

a QmiMessageNasGetSupportedMessagesOutput.

 
-
-
-

Returns

-

the new reference to self -.

-
-

Since: 1.14

-
-
-
-

qmi_message_nas_get_supported_messages_output_unref ()

-
void
-qmi_message_nas_get_supported_messages_output_unref
-                               (QmiMessageNasGetSupportedMessagesOutput *self);
-

Atomically decrements the reference count of self - by one. -If the reference count drops to 0, self - is completely disposed.

-
-

Parameters

-
----- - - - - - -

self

a QmiMessageNasGetSupportedMessagesOutput.

 
-
-

Since: 1.14

-
-
-
-

qmi_message_nas_get_supported_messages_output_get_result ()

-
gboolean
-qmi_message_nas_get_supported_messages_output_get_result
-                               (QmiMessageNasGetSupportedMessagesOutput *self,
-                                GError **error);
-

Get the result of the QMI operation.

-
-

Parameters

-
----- - - - - - - - - - - - - -

self

a QmiMessageNasGetSupportedMessagesOutput.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the QMI operation succeeded, FALSE if error -is set.

-
-

Since: 1.14

-
-
-
-

qmi_message_nas_get_supported_messages_output_get_list ()

-
gboolean
-qmi_message_nas_get_supported_messages_output_get_list
-                               (QmiMessageNasGetSupportedMessagesOutput *self,
-                                GArray **value_list,
-                                GError **error);
-

Get the 'List' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessageNasGetSupportedMessagesOutput.

 

value_list

a placeholder for the output GArray of guint8 elements, or NULL if not required. Do not free it, it is owned by self -.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.0

-
-
-
-

qmi_client_nas_get_supported_messages ()

-
void
-qmi_client_nas_get_supported_messages (QmiClientNas *self,
-                                       gpointer unused,
-                                       guint timeout,
-                                       GCancellable *cancellable,
-                                       GAsyncReadyCallback callback,
-                                       gpointer user_data);
-

Asynchronously sends a Get Supported Messages request to the device.

-

When the operation is finished, callback - will be invoked in the thread-default main loop of the thread you are calling this method from.

-

You can then call qmi_client_nas_get_supported_messages_finish() to get the result of the operation.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

self

a QmiClientNas.

 

unused

NULL. This message doesn't have any input bundle.

 

timeout

maximum time to wait for the method to complete, in seconds.

 

cancellable

a GCancellable or NULL.

 

callback

a GAsyncReadyCallback to call when the request is satisfied.

 

user_data

user data to pass to callback -.

 
-
-

Since: 1.14

-
-
-
-

qmi_client_nas_get_supported_messages_finish ()

-
QmiMessageNasGetSupportedMessagesOutput *
-qmi_client_nas_get_supported_messages_finish
-                               (QmiClientNas *self,
-                                GAsyncResult *res,
-                                GError **error);
-

Finishes an async operation started with qmi_client_nas_get_supported_messages().

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiClientNas.

 

res

the GAsyncResult obtained from the GAsyncReadyCallback passed to qmi_client_nas_get_supported_messages().

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

a QmiMessageNasGetSupportedMessagesOutput, or NULL if error -is set. The returned value should be freed with qmi_message_nas_get_supported_messages_output_unref().

-
-

Since: 1.14

-
-
-
-

Types and Values

-
-

QmiMessageNasGetSupportedMessagesOutput

-
typedef struct _QmiMessageNasGetSupportedMessagesOutput QmiMessageNasGetSupportedMessagesOutput;
-

The QmiMessageNasGetSupportedMessagesOutput structure contains private data and should only be accessed -using the provided API.

-

Since: 1.14

-
-
-
- - - \ No newline at end of file diff -Nru libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-NAS-Get-Supported-Messages-request.html libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-NAS-Get-Supported-Messages-request.html --- libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-NAS-Get-Supported-Messages-request.html 1970-01-01 01:00:00.000000000 +0100 +++ libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-NAS-Get-Supported-Messages-request.html 2019-01-08 15:19:01.000000000 +0100 @@ -0,0 +1,372 @@ + + + + +NAS Get Supported Messages request: libqmi-glib Reference Manual + + + + + + + + + + + + + + + + +
+
+
+ + +
+

NAS Get Supported Messages request

+

NAS Get Supported Messages request

+
+ +
+

Types and Values

+ +
+
+

Object Hierarchy

+
    GBoxed
+    ╰── QmiMessageNasGetSupportedMessagesOutput
+
+
+
+

Description

+
+
+

Functions

+
+

qmi_message_nas_get_supported_messages_output_ref ()

+
QmiMessageNasGetSupportedMessagesOutput *
+qmi_message_nas_get_supported_messages_output_ref
+                               (QmiMessageNasGetSupportedMessagesOutput *self);
+

Atomically increments the reference count of self + by one.

+
+

Parameters

+
+++++ + + + + + +

self

a QmiMessageNasGetSupportedMessagesOutput.

 
+
+
+

Returns

+

the new reference to self +.

+
+

Since: 1.14

+
+
+
+

qmi_message_nas_get_supported_messages_output_unref ()

+
void
+qmi_message_nas_get_supported_messages_output_unref
+                               (QmiMessageNasGetSupportedMessagesOutput *self);
+

Atomically decrements the reference count of self + by one. +If the reference count drops to 0, self + is completely disposed.

+
+

Parameters

+
+++++ + + + + + +

self

a QmiMessageNasGetSupportedMessagesOutput.

 
+
+

Since: 1.14

+
+
+
+

qmi_message_nas_get_supported_messages_output_get_result ()

+
gboolean
+qmi_message_nas_get_supported_messages_output_get_result
+                               (QmiMessageNasGetSupportedMessagesOutput *self,
+                                GError **error);
+

Get the result of the QMI operation.

+
+

Parameters

+
+++++ + + + + + + + + + + + + +

self

a QmiMessageNasGetSupportedMessagesOutput.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the QMI operation succeeded, FALSE if error +is set.

+
+

Since: 1.14

+
+
+
+

qmi_message_nas_get_supported_messages_output_get_list ()

+
gboolean
+qmi_message_nas_get_supported_messages_output_get_list
+                               (QmiMessageNasGetSupportedMessagesOutput *self,
+                                GArray **value_list,
+                                GError **error);
+

Get the 'List' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageNasGetSupportedMessagesOutput.

 

value_list

a placeholder for the output GArray of guint8 elements, or NULL if not required. Do not free it, it is owned by self +.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.0

+
+
+
+

qmi_client_nas_get_supported_messages ()

+
void
+qmi_client_nas_get_supported_messages (QmiClientNas *self,
+                                       gpointer unused,
+                                       guint timeout,
+                                       GCancellable *cancellable,
+                                       GAsyncReadyCallback callback,
+                                       gpointer user_data);
+

Asynchronously sends a Get Supported Messages request to the device.

+

When the operation is finished, callback + will be invoked in the thread-default main loop of the thread you are calling this method from.

+

You can then call qmi_client_nas_get_supported_messages_finish() to get the result of the operation.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

self

a QmiClientNas.

 

unused

NULL. This message doesn't have any input bundle.

 

timeout

maximum time to wait for the method to complete, in seconds.

 

cancellable

a GCancellable or NULL.

 

callback

a GAsyncReadyCallback to call when the request is satisfied.

 

user_data

user data to pass to callback +.

 
+
+

Since: 1.14

+
+
+
+

qmi_client_nas_get_supported_messages_finish ()

+
QmiMessageNasGetSupportedMessagesOutput *
+qmi_client_nas_get_supported_messages_finish
+                               (QmiClientNas *self,
+                                GAsyncResult *res,
+                                GError **error);
+

Finishes an async operation started with qmi_client_nas_get_supported_messages().

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiClientNas.

 

res

the GAsyncResult obtained from the GAsyncReadyCallback passed to qmi_client_nas_get_supported_messages().

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

a QmiMessageNasGetSupportedMessagesOutput, or NULL if error +is set. The returned value should be freed with qmi_message_nas_get_supported_messages_output_unref().

+
+

Since: 1.14

+
+
+
+

Types and Values

+
+

QmiMessageNasGetSupportedMessagesOutput

+
typedef struct _QmiMessageNasGetSupportedMessagesOutput QmiMessageNasGetSupportedMessagesOutput;
+

The QmiMessageNasGetSupportedMessagesOutput structure contains private data and should only be accessed +using the provided API.

+

Since: 1.14

+
+
+
+ + + \ No newline at end of file diff -Nru libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-NAS-Get-System-Info.html libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-NAS-Get-System-Info.html --- libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-NAS-Get-System-Info.html 2017-03-22 12:28:29.000000000 +0100 +++ libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-NAS-Get-System-Info.html 1970-01-01 01:00:00.000000000 +0100 @@ -1,2449 +0,0 @@ - - - - -NAS Get System Info: libqmi-glib Reference Manual - - - - - - - - - - - - - - - - -
-
-
- - -
-

NAS Get System Info

-

NAS Get System Info

-
-
-

Functions

-
---- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
-QmiMessageNasGetSystemInfoOutput * - -qmi_message_nas_get_system_info_output_ref () -
-void - -qmi_message_nas_get_system_info_output_unref () -
-gboolean - -qmi_message_nas_get_system_info_output_get_sim_reject_info () -
-gboolean - -qmi_message_nas_get_system_info_output_get_lte_embms_coverage_info_support () -
-gboolean - -qmi_message_nas_get_system_info_output_get_td_scdma_system_info () -
-gboolean - -qmi_message_nas_get_system_info_output_get_td_scdma_service_status () -
-gboolean - -qmi_message_nas_get_system_info_output_get_wcdma_cipher_domain () -
-gboolean - -qmi_message_nas_get_system_info_output_get_gsm_cipher_domain () -
-gboolean - -qmi_message_nas_get_system_info_output_get_lte_voice_support () -
-gboolean - -qmi_message_nas_get_system_info_output_get_wcdma_call_barring_status () -
-gboolean - -qmi_message_nas_get_system_info_output_get_gsm_call_barring_status () -
-gboolean - -qmi_message_nas_get_system_info_output_get_additional_lte_system_info () -
-gboolean - -qmi_message_nas_get_system_info_output_get_additional_wcdma_system_info () -
-gboolean - -qmi_message_nas_get_system_info_output_get_additional_gsm_system_info () -
-gboolean - -qmi_message_nas_get_system_info_output_get_additional_hdr_system_info () -
-gboolean - -qmi_message_nas_get_system_info_output_get_additional_cdma_system_info () -
-gboolean - -qmi_message_nas_get_system_info_output_get_lte_system_info () -
-gboolean - -qmi_message_nas_get_system_info_output_get_wcdma_system_info () -
-gboolean - -qmi_message_nas_get_system_info_output_get_gsm_system_info () -
-gboolean - -qmi_message_nas_get_system_info_output_get_hdr_system_info () -
-gboolean - -qmi_message_nas_get_system_info_output_get_cdma_system_info () -
-gboolean - -qmi_message_nas_get_system_info_output_get_lte_service_status () -
-gboolean - -qmi_message_nas_get_system_info_output_get_wcdma_service_status () -
-gboolean - -qmi_message_nas_get_system_info_output_get_gsm_service_status () -
-gboolean - -qmi_message_nas_get_system_info_output_get_hdr_service_status () -
-gboolean - -qmi_message_nas_get_system_info_output_get_cdma_service_status () -
-gboolean - -qmi_message_nas_get_system_info_output_get_result () -
-void - -qmi_client_nas_get_system_info () -
-QmiMessageNasGetSystemInfoOutput * - -qmi_client_nas_get_system_info_finish () -
-
-
-

Types and Values

- -
-
-

Object Hierarchy

-
    GBoxed
-    ╰── QmiMessageNasGetSystemInfoOutput
-
-
-
-

Description

-
-
-

Functions

-
-

qmi_message_nas_get_system_info_output_ref ()

-
QmiMessageNasGetSystemInfoOutput *
-qmi_message_nas_get_system_info_output_ref
-                               (QmiMessageNasGetSystemInfoOutput *self);
-

Atomically increments the reference count of self - by one.

-
-

Parameters

-
----- - - - - - -

self

a QmiMessageNasGetSystemInfoOutput.

 
-
-
-

Returns

-

the new reference to self -.

-
-

Since: 1.0

-
-
-
-

qmi_message_nas_get_system_info_output_unref ()

-
void
-qmi_message_nas_get_system_info_output_unref
-                               (QmiMessageNasGetSystemInfoOutput *self);
-

Atomically decrements the reference count of self - by one. -If the reference count drops to 0, self - is completely disposed.

-
-

Parameters

-
----- - - - - - -

self

a QmiMessageNasGetSystemInfoOutput.

 
-
-

Since: 1.0

-
-
-
-

qmi_message_nas_get_system_info_output_get_sim_reject_info ()

-
gboolean
-qmi_message_nas_get_system_info_output_get_sim_reject_info
-                               (QmiMessageNasGetSystemInfoOutput *self,
-                                QmiNasSimRejectState *value_sim_reject_info,
-                                GError **error);
-

Get the 'SIM Reject Info' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessageNasGetSystemInfoOutput.

 

value_sim_reject_info

a placeholder for the output QmiNasSimRejectState, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.0

-
-
-
-

qmi_message_nas_get_system_info_output_get_lte_embms_coverage_info_support ()

-
gboolean
-qmi_message_nas_get_system_info_output_get_lte_embms_coverage_info_support
-                               (QmiMessageNasGetSystemInfoOutput *self,
-                                gboolean *value_lte_embms_coverage_info_support,
-                                GError **error);
-

Get the 'LTE eMBMS Coverage Info Support' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessageNasGetSystemInfoOutput.

 

value_lte_embms_coverage_info_support

a placeholder for the output gboolean, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.0

-
-
-
-

qmi_message_nas_get_system_info_output_get_td_scdma_system_info ()

-
gboolean
-qmi_message_nas_get_system_info_output_get_td_scdma_system_info
-                               (QmiMessageNasGetSystemInfoOutput *self,
-                                gboolean *value_td_scdma_system_info_domain_valid,
-                                QmiNasNetworkServiceDomain *value_td_scdma_system_info_domain,
-                                gboolean *value_td_scdma_system_info_service_capability_valid,
-                                QmiNasNetworkServiceDomain *value_td_scdma_system_info_service_capability,
-                                gboolean *value_td_scdma_system_info_roaming_status_valid,
-                                QmiNasRoamingStatus *value_td_scdma_system_info_roaming_status,
-                                gboolean *value_td_scdma_system_info_forbidden_valid,
-                                gboolean *value_td_scdma_system_info_forbidden,
-                                gboolean *value_td_scdma_system_info_lac_valid,
-                                guint16 *value_td_scdma_system_info_lac,
-                                gboolean *value_td_scdma_system_info_cid_valid,
-                                guint32 *value_td_scdma_system_info_cid,
-                                gboolean *value_td_scdma_system_info_registration_reject_info_valid,
-                                QmiNasNetworkServiceDomain *value_td_scdma_system_info_registration_reject_domain,
-                                guint8 *value_td_scdma_system_info_registration_reject_cause,
-                                gboolean *value_td_scdma_system_info_network_id_valid,
-                                const gchar **value_td_scdma_system_info_mcc,
-                                const gchar **value_td_scdma_system_info_mnc,
-                                gboolean *value_td_scdma_system_info_hs_call_status_valid,
-                                QmiNasWcdmaHsService *value_td_scdma_system_info_hs_call_status,
-                                gboolean *value_td_scdma_system_info_hs_service_valid,
-                                QmiNasWcdmaHsService *value_td_scdma_system_info_hs_service,
-                                gboolean *value_td_scdma_system_info_cell_parameter_id_valid,
-                                guint16 *value_td_scdma_system_info_cell_parameter_id,
-                                gboolean *value_td_scdma_system_info_cell_broadcast_support_valid,
-                                QmiNasCellBroadcastCapability *value_td_scdma_system_info_cell_broadcast_support,
-                                gboolean *value_td_scdma_system_info_cs_call_barring_status_valid,
-                                QmiNasCallBarringStatus *value_td_scdma_system_info_cs_call_barring_status,
-                                gboolean *value_td_scdma_system_info_ps_call_barring_status_valid,
-                                QmiNasCallBarringStatus *value_td_scdma_system_info_ps_call_barring_status,
-                                gboolean *value_td_scdma_system_info_cipher_domain_valid,
-                                QmiNasNetworkServiceDomain *value_td_scdma_system_info_cipher_domain,
-                                GError **error);
-

Get the 'TD SCDMA System Info' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

self

a QmiMessageNasGetSystemInfoOutput.

 

value_td_scdma_system_info_domain_valid

a placeholder for the output gboolean, or NULL if not required.

 

value_td_scdma_system_info_domain

a placeholder for the output QmiNasNetworkServiceDomain, or NULL if not required.

 

value_td_scdma_system_info_service_capability_valid

a placeholder for the output gboolean, or NULL if not required.

 

value_td_scdma_system_info_service_capability

a placeholder for the output QmiNasNetworkServiceDomain, or NULL if not required.

 

value_td_scdma_system_info_roaming_status_valid

a placeholder for the output gboolean, or NULL if not required.

 

value_td_scdma_system_info_roaming_status

a placeholder for the output QmiNasRoamingStatus, or NULL if not required.

 

value_td_scdma_system_info_forbidden_valid

a placeholder for the output gboolean, or NULL if not required.

 

value_td_scdma_system_info_forbidden

a placeholder for the output gboolean, or NULL if not required.

 

value_td_scdma_system_info_lac_valid

a placeholder for the output gboolean, or NULL if not required.

 

value_td_scdma_system_info_lac

a placeholder for the output guint16, or NULL if not required.

 

value_td_scdma_system_info_cid_valid

a placeholder for the output gboolean, or NULL if not required.

 

value_td_scdma_system_info_cid

a placeholder for the output guint32, or NULL if not required.

 

value_td_scdma_system_info_registration_reject_info_valid

a placeholder for the output gboolean, or NULL if not required.

 

value_td_scdma_system_info_registration_reject_domain

a placeholder for the output QmiNasNetworkServiceDomain, or NULL if not required.

 

value_td_scdma_system_info_registration_reject_cause

a placeholder for the output guint8, or NULL if not required.

 

value_td_scdma_system_info_network_id_valid

a placeholder for the output gboolean, or NULL if not required.

 

value_td_scdma_system_info_mcc

a placeholder for the output constant string, or NULL if not required.

 

value_td_scdma_system_info_mnc

a placeholder for the output constant string, or NULL if not required.

 

value_td_scdma_system_info_hs_call_status_valid

a placeholder for the output gboolean, or NULL if not required.

 

value_td_scdma_system_info_hs_call_status

a placeholder for the output QmiNasWcdmaHsService, or NULL if not required.

 

value_td_scdma_system_info_hs_service_valid

a placeholder for the output gboolean, or NULL if not required.

 

value_td_scdma_system_info_hs_service

a placeholder for the output QmiNasWcdmaHsService, or NULL if not required.

 

value_td_scdma_system_info_cell_parameter_id_valid

a placeholder for the output gboolean, or NULL if not required.

 

value_td_scdma_system_info_cell_parameter_id

a placeholder for the output guint16, or NULL if not required.

 

value_td_scdma_system_info_cell_broadcast_support_valid

a placeholder for the output gboolean, or NULL if not required.

 

value_td_scdma_system_info_cell_broadcast_support

a placeholder for the output QmiNasCellBroadcastCapability, or NULL if not required.

 

value_td_scdma_system_info_cs_call_barring_status_valid

a placeholder for the output gboolean, or NULL if not required.

 

value_td_scdma_system_info_cs_call_barring_status

a placeholder for the output QmiNasCallBarringStatus, or NULL if not required.

 

value_td_scdma_system_info_ps_call_barring_status_valid

a placeholder for the output gboolean, or NULL if not required.

 

value_td_scdma_system_info_ps_call_barring_status

a placeholder for the output QmiNasCallBarringStatus, or NULL if not required.

 

value_td_scdma_system_info_cipher_domain_valid

a placeholder for the output gboolean, or NULL if not required.

 

value_td_scdma_system_info_cipher_domain

a placeholder for the output QmiNasNetworkServiceDomain, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.0

-
-
-
-

qmi_message_nas_get_system_info_output_get_td_scdma_service_status ()

-
gboolean
-qmi_message_nas_get_system_info_output_get_td_scdma_service_status
-                               (QmiMessageNasGetSystemInfoOutput *self,
-                                QmiNasServiceStatus *value_td_scdma_service_status_service_status,
-                                QmiNasServiceStatus *value_td_scdma_service_status_true_service_status,
-                                gboolean *value_td_scdma_service_status_preferred_data_path,
-                                GError **error);
-

Get the 'TD SCDMA Service Status' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - - - - - - - - - - - -

self

a QmiMessageNasGetSystemInfoOutput.

 

value_td_scdma_service_status_service_status

a placeholder for the output QmiNasServiceStatus, or NULL if not required.

 

value_td_scdma_service_status_true_service_status

a placeholder for the output QmiNasServiceStatus, or NULL if not required.

 

value_td_scdma_service_status_preferred_data_path

a placeholder for the output gboolean, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.0

-
-
-
-

qmi_message_nas_get_system_info_output_get_wcdma_cipher_domain ()

-
gboolean
-qmi_message_nas_get_system_info_output_get_wcdma_cipher_domain
-                               (QmiMessageNasGetSystemInfoOutput *self,
-                                QmiNasNetworkServiceDomain *value_wcdma_cipher_domain,
-                                GError **error);
-

Get the 'WCDMA Cipher Domain' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessageNasGetSystemInfoOutput.

 

value_wcdma_cipher_domain

a placeholder for the output QmiNasNetworkServiceDomain, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.0

-
-
-
-

qmi_message_nas_get_system_info_output_get_gsm_cipher_domain ()

-
gboolean
-qmi_message_nas_get_system_info_output_get_gsm_cipher_domain
-                               (QmiMessageNasGetSystemInfoOutput *self,
-                                QmiNasNetworkServiceDomain *value_gsm_cipher_domain,
-                                GError **error);
-

Get the 'GSM Cipher Domain' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessageNasGetSystemInfoOutput.

 

value_gsm_cipher_domain

a placeholder for the output QmiNasNetworkServiceDomain, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.0

-
-
-
-

qmi_message_nas_get_system_info_output_get_lte_voice_support ()

-
gboolean
-qmi_message_nas_get_system_info_output_get_lte_voice_support
-                               (QmiMessageNasGetSystemInfoOutput *self,
-                                gboolean *value_lte_voice_support,
-                                GError **error);
-

Get the 'LTE Voice Support' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessageNasGetSystemInfoOutput.

 

value_lte_voice_support

a placeholder for the output gboolean, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.0

-
-
-
-

qmi_message_nas_get_system_info_output_get_wcdma_call_barring_status ()

-
gboolean
-qmi_message_nas_get_system_info_output_get_wcdma_call_barring_status
-                               (QmiMessageNasGetSystemInfoOutput *self,
-                                QmiNasCallBarringStatus *value_wcdma_call_barring_status_cs_status,
-                                QmiNasCallBarringStatus *value_wcdma_call_barring_status_ps_status,
-                                GError **error);
-

Get the 'WCDMA Call Barring Status' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - - - - - - -

self

a QmiMessageNasGetSystemInfoOutput.

 

value_wcdma_call_barring_status_cs_status

a placeholder for the output QmiNasCallBarringStatus, or NULL if not required.

 

value_wcdma_call_barring_status_ps_status

a placeholder for the output QmiNasCallBarringStatus, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.0

-
-
-
-

qmi_message_nas_get_system_info_output_get_gsm_call_barring_status ()

-
gboolean
-qmi_message_nas_get_system_info_output_get_gsm_call_barring_status
-                               (QmiMessageNasGetSystemInfoOutput *self,
-                                QmiNasCallBarringStatus *value_gsm_call_barring_status_cs_status,
-                                QmiNasCallBarringStatus *value_gsm_call_barring_status_ps_status,
-                                GError **error);
-

Get the 'GSM Call Barring Status' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - - - - - - -

self

a QmiMessageNasGetSystemInfoOutput.

 

value_gsm_call_barring_status_cs_status

a placeholder for the output QmiNasCallBarringStatus, or NULL if not required.

 

value_gsm_call_barring_status_ps_status

a placeholder for the output QmiNasCallBarringStatus, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.0

-
-
-
-

qmi_message_nas_get_system_info_output_get_additional_lte_system_info ()

-
gboolean
-qmi_message_nas_get_system_info_output_get_additional_lte_system_info
-                               (QmiMessageNasGetSystemInfoOutput *self,
-                                guint16 *value_additional_lte_system_info_geo_system_index,
-                                GError **error);
-

Get the 'Additional LTE System Info' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessageNasGetSystemInfoOutput.

 

value_additional_lte_system_info_geo_system_index

a placeholder for the output guint16, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.0

-
-
-
-

qmi_message_nas_get_system_info_output_get_additional_wcdma_system_info ()

-
gboolean
-qmi_message_nas_get_system_info_output_get_additional_wcdma_system_info
-                               (QmiMessageNasGetSystemInfoOutput *self,
-                                guint16 *value_additional_wcdma_system_info_geo_system_index,
-                                QmiNasCellBroadcastCapability *value_additional_wcdma_system_info_cell_broadcast_support,
-                                GError **error);
-

Get the 'Additional WCDMA System Info' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - - - - - - -

self

a QmiMessageNasGetSystemInfoOutput.

 

value_additional_wcdma_system_info_geo_system_index

a placeholder for the output guint16, or NULL if not required.

 

value_additional_wcdma_system_info_cell_broadcast_support

a placeholder for the output QmiNasCellBroadcastCapability, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.0

-
-
-
-

qmi_message_nas_get_system_info_output_get_additional_gsm_system_info ()

-
gboolean
-qmi_message_nas_get_system_info_output_get_additional_gsm_system_info
-                               (QmiMessageNasGetSystemInfoOutput *self,
-                                guint16 *value_additional_gsm_system_info_geo_system_index,
-                                QmiNasCellBroadcastCapability *value_additional_gsm_system_info_cell_broadcast_support,
-                                GError **error);
-

Get the 'Additional GSM System Info' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - - - - - - -

self

a QmiMessageNasGetSystemInfoOutput.

 

value_additional_gsm_system_info_geo_system_index

a placeholder for the output guint16, or NULL if not required.

 

value_additional_gsm_system_info_cell_broadcast_support

a placeholder for the output QmiNasCellBroadcastCapability, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.0

-
-
-
-

qmi_message_nas_get_system_info_output_get_additional_hdr_system_info ()

-
gboolean
-qmi_message_nas_get_system_info_output_get_additional_hdr_system_info
-                               (QmiMessageNasGetSystemInfoOutput *self,
-                                guint16 *value_additional_hdr_system_info_geo_system_index,
-                                GError **error);
-

Get the 'Additional HDR System Info' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessageNasGetSystemInfoOutput.

 

value_additional_hdr_system_info_geo_system_index

a placeholder for the output guint16, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.0

-
-
-
-

qmi_message_nas_get_system_info_output_get_additional_cdma_system_info ()

-
gboolean
-qmi_message_nas_get_system_info_output_get_additional_cdma_system_info
-                               (QmiMessageNasGetSystemInfoOutput *self,
-                                guint16 *value_additional_cdma_system_info_geo_system_index,
-                                guint16 *value_additional_cdma_system_info_registration_period,
-                                GError **error);
-

Get the 'Additional CDMA System Info' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - - - - - - -

self

a QmiMessageNasGetSystemInfoOutput.

 

value_additional_cdma_system_info_geo_system_index

a placeholder for the output guint16, or NULL if not required.

 

value_additional_cdma_system_info_registration_period

a placeholder for the output guint16, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.0

-
-
-
-

qmi_message_nas_get_system_info_output_get_lte_system_info ()

-
gboolean
-qmi_message_nas_get_system_info_output_get_lte_system_info
-                               (QmiMessageNasGetSystemInfoOutput *self,
-                                gboolean *value_lte_system_info_domain_valid,
-                                QmiNasNetworkServiceDomain *value_lte_system_info_domain,
-                                gboolean *value_lte_system_info_service_capability_valid,
-                                QmiNasNetworkServiceDomain *value_lte_system_info_service_capability,
-                                gboolean *value_lte_system_info_roaming_status_valid,
-                                QmiNasRoamingStatus *value_lte_system_info_roaming_status,
-                                gboolean *value_lte_system_info_forbidden_valid,
-                                gboolean *value_lte_system_info_forbidden,
-                                gboolean *value_lte_system_info_lac_valid,
-                                guint16 *value_lte_system_info_lac,
-                                gboolean *value_lte_system_info_cid_valid,
-                                guint32 *value_lte_system_info_cid,
-                                gboolean *value_lte_system_info_registration_reject_info_valid,
-                                QmiNasNetworkServiceDomain *value_lte_system_info_registration_reject_domain,
-                                guint8 *value_lte_system_info_registration_reject_cause,
-                                gboolean *value_lte_system_info_network_id_valid,
-                                const gchar **value_lte_system_info_mcc,
-                                const gchar **value_lte_system_info_mnc,
-                                gboolean *value_lte_system_info_tac_valid,
-                                guint16 *value_lte_system_info_tac,
-                                GError **error);
-

Get the 'LTE System Info' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

self

a QmiMessageNasGetSystemInfoOutput.

 

value_lte_system_info_domain_valid

a placeholder for the output gboolean, or NULL if not required.

 

value_lte_system_info_domain

a placeholder for the output QmiNasNetworkServiceDomain, or NULL if not required.

 

value_lte_system_info_service_capability_valid

a placeholder for the output gboolean, or NULL if not required.

 

value_lte_system_info_service_capability

a placeholder for the output QmiNasNetworkServiceDomain, or NULL if not required.

 

value_lte_system_info_roaming_status_valid

a placeholder for the output gboolean, or NULL if not required.

 

value_lte_system_info_roaming_status

a placeholder for the output QmiNasRoamingStatus, or NULL if not required.

 

value_lte_system_info_forbidden_valid

a placeholder for the output gboolean, or NULL if not required.

 

value_lte_system_info_forbidden

a placeholder for the output gboolean, or NULL if not required.

 

value_lte_system_info_lac_valid

a placeholder for the output gboolean, or NULL if not required.

 

value_lte_system_info_lac

a placeholder for the output guint16, or NULL if not required.

 

value_lte_system_info_cid_valid

a placeholder for the output gboolean, or NULL if not required.

 

value_lte_system_info_cid

a placeholder for the output guint32, or NULL if not required.

 

value_lte_system_info_registration_reject_info_valid

a placeholder for the output gboolean, or NULL if not required.

 

value_lte_system_info_registration_reject_domain

a placeholder for the output QmiNasNetworkServiceDomain, or NULL if not required.

 

value_lte_system_info_registration_reject_cause

a placeholder for the output guint8, or NULL if not required.

 

value_lte_system_info_network_id_valid

a placeholder for the output gboolean, or NULL if not required.

 

value_lte_system_info_mcc

a placeholder for the output constant string, or NULL if not required.

 

value_lte_system_info_mnc

a placeholder for the output constant string, or NULL if not required.

 

value_lte_system_info_tac_valid

a placeholder for the output gboolean, or NULL if not required.

 

value_lte_system_info_tac

a placeholder for the output guint16, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.0

-
-
-
-

qmi_message_nas_get_system_info_output_get_wcdma_system_info ()

-
gboolean
-qmi_message_nas_get_system_info_output_get_wcdma_system_info
-                               (QmiMessageNasGetSystemInfoOutput *self,
-                                gboolean *value_wcdma_system_info_domain_valid,
-                                QmiNasNetworkServiceDomain *value_wcdma_system_info_domain,
-                                gboolean *value_wcdma_system_info_service_capability_valid,
-                                QmiNasNetworkServiceDomain *value_wcdma_system_info_service_capability,
-                                gboolean *value_wcdma_system_info_roaming_status_valid,
-                                QmiNasRoamingStatus *value_wcdma_system_info_roaming_status,
-                                gboolean *value_wcdma_system_info_forbidden_valid,
-                                gboolean *value_wcdma_system_info_forbidden,
-                                gboolean *value_wcdma_system_info_lac_valid,
-                                guint16 *value_wcdma_system_info_lac,
-                                gboolean *value_wcdma_system_info_cid_valid,
-                                guint32 *value_wcdma_system_info_cid,
-                                gboolean *value_wcdma_system_info_registration_reject_info_valid,
-                                QmiNasNetworkServiceDomain *value_wcdma_system_info_registration_reject_domain,
-                                guint8 *value_wcdma_system_info_registration_reject_cause,
-                                gboolean *value_wcdma_system_info_network_id_valid,
-                                const gchar **value_wcdma_system_info_mcc,
-                                const gchar **value_wcdma_system_info_mnc,
-                                gboolean *value_wcdma_system_info_hs_call_status_valid,
-                                QmiNasWcdmaHsService *value_wcdma_system_info_hs_call_status,
-                                gboolean *value_wcdma_system_info_hs_service_valid,
-                                QmiNasWcdmaHsService *value_wcdma_system_info_hs_service,
-                                gboolean *value_wcdma_system_info_primary_scrambling_code_valid,
-                                guint16 *value_wcdma_system_info_primary_scrambling_code,
-                                GError **error);
-

Get the 'WCDMA System Info' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

self

a QmiMessageNasGetSystemInfoOutput.

 

value_wcdma_system_info_domain_valid

a placeholder for the output gboolean, or NULL if not required.

 

value_wcdma_system_info_domain

a placeholder for the output QmiNasNetworkServiceDomain, or NULL if not required.

 

value_wcdma_system_info_service_capability_valid

a placeholder for the output gboolean, or NULL if not required.

 

value_wcdma_system_info_service_capability

a placeholder for the output QmiNasNetworkServiceDomain, or NULL if not required.

 

value_wcdma_system_info_roaming_status_valid

a placeholder for the output gboolean, or NULL if not required.

 

value_wcdma_system_info_roaming_status

a placeholder for the output QmiNasRoamingStatus, or NULL if not required.

 

value_wcdma_system_info_forbidden_valid

a placeholder for the output gboolean, or NULL if not required.

 

value_wcdma_system_info_forbidden

a placeholder for the output gboolean, or NULL if not required.

 

value_wcdma_system_info_lac_valid

a placeholder for the output gboolean, or NULL if not required.

 

value_wcdma_system_info_lac

a placeholder for the output guint16, or NULL if not required.

 

value_wcdma_system_info_cid_valid

a placeholder for the output gboolean, or NULL if not required.

 

value_wcdma_system_info_cid

a placeholder for the output guint32, or NULL if not required.

 

value_wcdma_system_info_registration_reject_info_valid

a placeholder for the output gboolean, or NULL if not required.

 

value_wcdma_system_info_registration_reject_domain

a placeholder for the output QmiNasNetworkServiceDomain, or NULL if not required.

 

value_wcdma_system_info_registration_reject_cause

a placeholder for the output guint8, or NULL if not required.

 

value_wcdma_system_info_network_id_valid

a placeholder for the output gboolean, or NULL if not required.

 

value_wcdma_system_info_mcc

a placeholder for the output constant string, or NULL if not required.

 

value_wcdma_system_info_mnc

a placeholder for the output constant string, or NULL if not required.

 

value_wcdma_system_info_hs_call_status_valid

a placeholder for the output gboolean, or NULL if not required.

 

value_wcdma_system_info_hs_call_status

a placeholder for the output QmiNasWcdmaHsService, or NULL if not required.

 

value_wcdma_system_info_hs_service_valid

a placeholder for the output gboolean, or NULL if not required.

 

value_wcdma_system_info_hs_service

a placeholder for the output QmiNasWcdmaHsService, or NULL if not required.

 

value_wcdma_system_info_primary_scrambling_code_valid

a placeholder for the output gboolean, or NULL if not required.

 

value_wcdma_system_info_primary_scrambling_code

a placeholder for the output guint16, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.0

-
-
-
-

qmi_message_nas_get_system_info_output_get_gsm_system_info ()

-
gboolean
-qmi_message_nas_get_system_info_output_get_gsm_system_info
-                               (QmiMessageNasGetSystemInfoOutput *self,
-                                gboolean *value_gsm_system_info_domain_valid,
-                                QmiNasNetworkServiceDomain *value_gsm_system_info_domain,
-                                gboolean *value_gsm_system_info_service_capability_valid,
-                                QmiNasNetworkServiceDomain *value_gsm_system_info_service_capability,
-                                gboolean *value_gsm_system_info_roaming_status_valid,
-                                QmiNasRoamingStatus *value_gsm_system_info_roaming_status,
-                                gboolean *value_gsm_system_info_forbidden_valid,
-                                gboolean *value_gsm_system_info_forbidden,
-                                gboolean *value_gsm_system_info_lac_valid,
-                                guint16 *value_gsm_system_info_lac,
-                                gboolean *value_gsm_system_info_cid_valid,
-                                guint32 *value_gsm_system_info_cid,
-                                gboolean *value_gsm_system_info_registration_reject_info_valid,
-                                QmiNasNetworkServiceDomain *value_gsm_system_info_registration_reject_domain,
-                                guint8 *value_gsm_system_info_registration_reject_cause,
-                                gboolean *value_gsm_system_info_network_id_valid,
-                                const gchar **value_gsm_system_info_mcc,
-                                const gchar **value_gsm_system_info_mnc,
-                                gboolean *value_gsm_system_info_egprs_support_valid,
-                                gboolean *value_gsm_system_info_egprs_support,
-                                gboolean *value_gsm_system_info_dtm_support_valid,
-                                gboolean *value_gsm_system_info_dtm_support,
-                                GError **error);
-

Get the 'GSM System Info' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

self

a QmiMessageNasGetSystemInfoOutput.

 

value_gsm_system_info_domain_valid

a placeholder for the output gboolean, or NULL if not required.

 

value_gsm_system_info_domain

a placeholder for the output QmiNasNetworkServiceDomain, or NULL if not required.

 

value_gsm_system_info_service_capability_valid

a placeholder for the output gboolean, or NULL if not required.

 

value_gsm_system_info_service_capability

a placeholder for the output QmiNasNetworkServiceDomain, or NULL if not required.

 

value_gsm_system_info_roaming_status_valid

a placeholder for the output gboolean, or NULL if not required.

 

value_gsm_system_info_roaming_status

a placeholder for the output QmiNasRoamingStatus, or NULL if not required.

 

value_gsm_system_info_forbidden_valid

a placeholder for the output gboolean, or NULL if not required.

 

value_gsm_system_info_forbidden

a placeholder for the output gboolean, or NULL if not required.

 

value_gsm_system_info_lac_valid

a placeholder for the output gboolean, or NULL if not required.

 

value_gsm_system_info_lac

a placeholder for the output guint16, or NULL if not required.

 

value_gsm_system_info_cid_valid

a placeholder for the output gboolean, or NULL if not required.

 

value_gsm_system_info_cid

a placeholder for the output guint32, or NULL if not required.

 

value_gsm_system_info_registration_reject_info_valid

a placeholder for the output gboolean, or NULL if not required.

 

value_gsm_system_info_registration_reject_domain

a placeholder for the output QmiNasNetworkServiceDomain, or NULL if not required.

 

value_gsm_system_info_registration_reject_cause

a placeholder for the output guint8, or NULL if not required.

 

value_gsm_system_info_network_id_valid

a placeholder for the output gboolean, or NULL if not required.

 

value_gsm_system_info_mcc

a placeholder for the output constant string, or NULL if not required.

 

value_gsm_system_info_mnc

a placeholder for the output constant string, or NULL if not required.

 

value_gsm_system_info_egprs_support_valid

a placeholder for the output gboolean, or NULL if not required.

 

value_gsm_system_info_egprs_support

a placeholder for the output gboolean, or NULL if not required.

 

value_gsm_system_info_dtm_support_valid

a placeholder for the output gboolean, or NULL if not required.

 

value_gsm_system_info_dtm_support

a placeholder for the output gboolean, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.0

-
-
-
-

qmi_message_nas_get_system_info_output_get_hdr_system_info ()

-
gboolean
-qmi_message_nas_get_system_info_output_get_hdr_system_info
-                               (QmiMessageNasGetSystemInfoOutput *self,
-                                gboolean *value_hdr_system_info_domain_valid,
-                                QmiNasNetworkServiceDomain *value_hdr_system_info_domain,
-                                gboolean *value_hdr_system_info_service_capability_valid,
-                                QmiNasNetworkServiceDomain *value_hdr_system_info_service_capability,
-                                gboolean *value_hdr_system_info_roaming_status_valid,
-                                QmiNasRoamingStatus *value_hdr_system_info_roaming_status,
-                                gboolean *value_hdr_system_info_forbidden_valid,
-                                gboolean *value_hdr_system_info_forbidden,
-                                gboolean *value_hdr_system_info_prl_match_valid,
-                                gboolean *value_hdr_system_info_prl_match,
-                                gboolean *value_hdr_system_info_personality_valid,
-                                QmiNasHdrPersonality *value_hdr_system_info_personality,
-                                gboolean *value_hdr_system_info_protocol_revision_valid,
-                                QmiNasHdrProtocolRevision *value_hdr_system_info_protocol_revision,
-                                gboolean *value_hdr_system_info_is_856_system_id_valid,
-                                const gchar **value_hdr_system_info_is_856_system_id,
-                                GError **error);
-

Get the 'HDR System Info' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

self

a QmiMessageNasGetSystemInfoOutput.

 

value_hdr_system_info_domain_valid

a placeholder for the output gboolean, or NULL if not required.

 

value_hdr_system_info_domain

a placeholder for the output QmiNasNetworkServiceDomain, or NULL if not required.

 

value_hdr_system_info_service_capability_valid

a placeholder for the output gboolean, or NULL if not required.

 

value_hdr_system_info_service_capability

a placeholder for the output QmiNasNetworkServiceDomain, or NULL if not required.

 

value_hdr_system_info_roaming_status_valid

a placeholder for the output gboolean, or NULL if not required.

 

value_hdr_system_info_roaming_status

a placeholder for the output QmiNasRoamingStatus, or NULL if not required.

 

value_hdr_system_info_forbidden_valid

a placeholder for the output gboolean, or NULL if not required.

 

value_hdr_system_info_forbidden

a placeholder for the output gboolean, or NULL if not required.

 

value_hdr_system_info_prl_match_valid

a placeholder for the output gboolean, or NULL if not required.

 

value_hdr_system_info_prl_match

a placeholder for the output gboolean, or NULL if not required.

 

value_hdr_system_info_personality_valid

a placeholder for the output gboolean, or NULL if not required.

 

value_hdr_system_info_personality

a placeholder for the output QmiNasHdrPersonality, or NULL if not required.

 

value_hdr_system_info_protocol_revision_valid

a placeholder for the output gboolean, or NULL if not required.

 

value_hdr_system_info_protocol_revision

a placeholder for the output QmiNasHdrProtocolRevision, or NULL if not required.

 

value_hdr_system_info_is_856_system_id_valid

a placeholder for the output gboolean, or NULL if not required.

 

value_hdr_system_info_is_856_system_id

a placeholder for the output constant string, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.0

-
-
-
-

qmi_message_nas_get_system_info_output_get_cdma_system_info ()

-
gboolean
-qmi_message_nas_get_system_info_output_get_cdma_system_info
-                               (QmiMessageNasGetSystemInfoOutput *self,
-                                gboolean *value_cdma_system_info_domain_valid,
-                                QmiNasNetworkServiceDomain *value_cdma_system_info_domain,
-                                gboolean *value_cdma_system_info_service_capability_valid,
-                                QmiNasNetworkServiceDomain *value_cdma_system_info_service_capability,
-                                gboolean *value_cdma_system_info_roaming_status_valid,
-                                QmiNasRoamingStatus *value_cdma_system_info_roaming_status,
-                                gboolean *value_cdma_system_info_forbidden_valid,
-                                gboolean *value_cdma_system_info_forbidden,
-                                gboolean *value_cdma_system_info_prl_match_valid,
-                                gboolean *value_cdma_system_info_prl_match,
-                                gboolean *value_cdma_system_info_p_rev_valid,
-                                guint8 *value_cdma_system_info_p_rev,
-                                gboolean *value_cdma_system_info_base_station_p_rev_valid,
-                                guint8 *value_cdma_system_info_base_station_p_rev,
-                                gboolean *value_cdma_system_info_concurrent_service_support_valid,
-                                gboolean *value_cdma_system_info_concurrent_service_support,
-                                gboolean *value_cdma_system_info_cdma_system_id_valid,
-                                guint16 *value_cdma_system_info_sid,
-                                guint16 *value_cdma_system_info_nid,
-                                gboolean *value_cdma_system_info_base_station_info_valid,
-                                guint16 *value_cdma_system_info_base_station_id,
-                                gint32 *value_cdma_system_info_base_station_latitude,
-                                gint32 *value_cdma_system_info_base_station_longitude,
-                                gboolean *value_cdma_system_info_packet_zone_valid,
-                                guint16 *value_cdma_system_info_packet_zone,
-                                gboolean *value_cdma_system_info_network_id_valid,
-                                const gchar **value_cdma_system_info_mcc,
-                                const gchar **value_cdma_system_info_mnc,
-                                GError **error);
-

Get the 'CDMA System Info' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

self

a QmiMessageNasGetSystemInfoOutput.

 

value_cdma_system_info_domain_valid

a placeholder for the output gboolean, or NULL if not required.

 

value_cdma_system_info_domain

a placeholder for the output QmiNasNetworkServiceDomain, or NULL if not required.

 

value_cdma_system_info_service_capability_valid

a placeholder for the output gboolean, or NULL if not required.

 

value_cdma_system_info_service_capability

a placeholder for the output QmiNasNetworkServiceDomain, or NULL if not required.

 

value_cdma_system_info_roaming_status_valid

a placeholder for the output gboolean, or NULL if not required.

 

value_cdma_system_info_roaming_status

a placeholder for the output QmiNasRoamingStatus, or NULL if not required.

 

value_cdma_system_info_forbidden_valid

a placeholder for the output gboolean, or NULL if not required.

 

value_cdma_system_info_forbidden

a placeholder for the output gboolean, or NULL if not required.

 

value_cdma_system_info_prl_match_valid

a placeholder for the output gboolean, or NULL if not required.

 

value_cdma_system_info_prl_match

a placeholder for the output gboolean, or NULL if not required.

 

value_cdma_system_info_p_rev_valid

a placeholder for the output gboolean, or NULL if not required.

 

value_cdma_system_info_p_rev

a placeholder for the output guint8, or NULL if not required.

 

value_cdma_system_info_base_station_p_rev_valid

a placeholder for the output gboolean, or NULL if not required.

 

value_cdma_system_info_base_station_p_rev

a placeholder for the output guint8, or NULL if not required.

 

value_cdma_system_info_concurrent_service_support_valid

a placeholder for the output gboolean, or NULL if not required.

 

value_cdma_system_info_concurrent_service_support

a placeholder for the output gboolean, or NULL if not required.

 

value_cdma_system_info_cdma_system_id_valid

a placeholder for the output gboolean, or NULL if not required.

 

value_cdma_system_info_sid

a placeholder for the output guint16, or NULL if not required.

 

value_cdma_system_info_nid

a placeholder for the output guint16, or NULL if not required.

 

value_cdma_system_info_base_station_info_valid

a placeholder for the output gboolean, or NULL if not required.

 

value_cdma_system_info_base_station_id

a placeholder for the output guint16, or NULL if not required.

 

value_cdma_system_info_base_station_latitude

a placeholder for the output gint32, or NULL if not required.

 

value_cdma_system_info_base_station_longitude

a placeholder for the output gint32, or NULL if not required.

 

value_cdma_system_info_packet_zone_valid

a placeholder for the output gboolean, or NULL if not required.

 

value_cdma_system_info_packet_zone

a placeholder for the output guint16, or NULL if not required.

 

value_cdma_system_info_network_id_valid

a placeholder for the output gboolean, or NULL if not required.

 

value_cdma_system_info_mcc

a placeholder for the output constant string, or NULL if not required.

 

value_cdma_system_info_mnc

a placeholder for the output constant string, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.0

-
-
-
-

qmi_message_nas_get_system_info_output_get_lte_service_status ()

-
gboolean
-qmi_message_nas_get_system_info_output_get_lte_service_status
-                               (QmiMessageNasGetSystemInfoOutput *self,
-                                QmiNasServiceStatus *value_lte_service_status_service_status,
-                                QmiNasServiceStatus *value_lte_service_status_true_service_status,
-                                gboolean *value_lte_service_status_preferred_data_path,
-                                GError **error);
-

Get the 'LTE Service Status' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - - - - - - - - - - - -

self

a QmiMessageNasGetSystemInfoOutput.

 

value_lte_service_status_service_status

a placeholder for the output QmiNasServiceStatus, or NULL if not required.

 

value_lte_service_status_true_service_status

a placeholder for the output QmiNasServiceStatus, or NULL if not required.

 

value_lte_service_status_preferred_data_path

a placeholder for the output gboolean, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.0

-
-
-
-

qmi_message_nas_get_system_info_output_get_wcdma_service_status ()

-
gboolean
-qmi_message_nas_get_system_info_output_get_wcdma_service_status
-                               (QmiMessageNasGetSystemInfoOutput *self,
-                                QmiNasServiceStatus *value_wcdma_service_status_service_status,
-                                QmiNasServiceStatus *value_wcdma_service_status_true_service_status,
-                                gboolean *value_wcdma_service_status_preferred_data_path,
-                                GError **error);
-

Get the 'WCDMA Service Status' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - - - - - - - - - - - -

self

a QmiMessageNasGetSystemInfoOutput.

 

value_wcdma_service_status_service_status

a placeholder for the output QmiNasServiceStatus, or NULL if not required.

 

value_wcdma_service_status_true_service_status

a placeholder for the output QmiNasServiceStatus, or NULL if not required.

 

value_wcdma_service_status_preferred_data_path

a placeholder for the output gboolean, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.0

-
-
-
-

qmi_message_nas_get_system_info_output_get_gsm_service_status ()

-
gboolean
-qmi_message_nas_get_system_info_output_get_gsm_service_status
-                               (QmiMessageNasGetSystemInfoOutput *self,
-                                QmiNasServiceStatus *value_gsm_service_status_service_status,
-                                QmiNasServiceStatus *value_gsm_service_status_true_service_status,
-                                gboolean *value_gsm_service_status_preferred_data_path,
-                                GError **error);
-

Get the 'GSM Service Status' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - - - - - - - - - - - -

self

a QmiMessageNasGetSystemInfoOutput.

 

value_gsm_service_status_service_status

a placeholder for the output QmiNasServiceStatus, or NULL if not required.

 

value_gsm_service_status_true_service_status

a placeholder for the output QmiNasServiceStatus, or NULL if not required.

 

value_gsm_service_status_preferred_data_path

a placeholder for the output gboolean, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.0

-
-
-
-

qmi_message_nas_get_system_info_output_get_hdr_service_status ()

-
gboolean
-qmi_message_nas_get_system_info_output_get_hdr_service_status
-                               (QmiMessageNasGetSystemInfoOutput *self,
-                                QmiNasServiceStatus *value_hdr_service_status_service_status,
-                                gboolean *value_hdr_service_status_preferred_data_path,
-                                GError **error);
-

Get the 'HDR Service Status' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - - - - - - -

self

a QmiMessageNasGetSystemInfoOutput.

 

value_hdr_service_status_service_status

a placeholder for the output QmiNasServiceStatus, or NULL if not required.

 

value_hdr_service_status_preferred_data_path

a placeholder for the output gboolean, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.0

-
-
-
-

qmi_message_nas_get_system_info_output_get_cdma_service_status ()

-
gboolean
-qmi_message_nas_get_system_info_output_get_cdma_service_status
-                               (QmiMessageNasGetSystemInfoOutput *self,
-                                QmiNasServiceStatus *value_cdma_service_status_service_status,
-                                gboolean *value_cdma_service_status_preferred_data_path,
-                                GError **error);
-

Get the 'CDMA Service Status' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - - - - - - -

self

a QmiMessageNasGetSystemInfoOutput.

 

value_cdma_service_status_service_status

a placeholder for the output QmiNasServiceStatus, or NULL if not required.

 

value_cdma_service_status_preferred_data_path

a placeholder for the output gboolean, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.0

-
-
-
-

qmi_message_nas_get_system_info_output_get_result ()

-
gboolean
-qmi_message_nas_get_system_info_output_get_result
-                               (QmiMessageNasGetSystemInfoOutput *self,
-                                GError **error);
-

Get the result of the QMI operation.

-
-

Parameters

-
----- - - - - - - - - - - - - -

self

a QmiMessageNasGetSystemInfoOutput.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the QMI operation succeeded, FALSE if error -is set.

-
-

Since: 1.0

-
-
-
-

qmi_client_nas_get_system_info ()

-
void
-qmi_client_nas_get_system_info (QmiClientNas *self,
-                                gpointer unused,
-                                guint timeout,
-                                GCancellable *cancellable,
-                                GAsyncReadyCallback callback,
-                                gpointer user_data);
-

Asynchronously sends a Get System Info request to the device.

-

When the operation is finished, callback - will be invoked in the thread-default main loop of the thread you are calling this method from.

-

You can then call qmi_client_nas_get_system_info_finish() to get the result of the operation.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

self

a QmiClientNas.

 

unused

NULL. This message doesn't have any input bundle.

 

timeout

maximum time to wait for the method to complete, in seconds.

 

cancellable

a GCancellable or NULL.

 

callback

a GAsyncReadyCallback to call when the request is satisfied.

 

user_data

user data to pass to callback -.

 
-
-

Since: 1.0

-
-
-
-

qmi_client_nas_get_system_info_finish ()

-
QmiMessageNasGetSystemInfoOutput *
-qmi_client_nas_get_system_info_finish (QmiClientNas *self,
-                                       GAsyncResult *res,
-                                       GError **error);
-

Finishes an async operation started with qmi_client_nas_get_system_info().

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiClientNas.

 

res

the GAsyncResult obtained from the GAsyncReadyCallback passed to qmi_client_nas_get_system_info().

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

a QmiMessageNasGetSystemInfoOutput, or NULL if error -is set. The returned value should be freed with qmi_message_nas_get_system_info_output_unref().

-
-

Since: 1.0

-
-
-
-

Types and Values

-
-

QmiMessageNasGetSystemInfoOutput

-
typedef struct _QmiMessageNasGetSystemInfoOutput QmiMessageNasGetSystemInfoOutput;
-

The QmiMessageNasGetSystemInfoOutput structure contains private data and should only be accessed -using the provided API.

-

Since: 1.0

-
-
-
- - - \ No newline at end of file diff -Nru libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-NAS-Get-System-Info-request.html libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-NAS-Get-System-Info-request.html --- libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-NAS-Get-System-Info-request.html 1970-01-01 01:00:00.000000000 +0100 +++ libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-NAS-Get-System-Info-request.html 2019-01-08 15:19:01.000000000 +0100 @@ -0,0 +1,2449 @@ + + + + +NAS Get System Info request: libqmi-glib Reference Manual + + + + + + + + + + + + + + + + +
+
+
+ + +
+

NAS Get System Info request

+

NAS Get System Info request

+
+
+

Functions

+
++++ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+QmiMessageNasGetSystemInfoOutput * + +qmi_message_nas_get_system_info_output_ref () +
+void + +qmi_message_nas_get_system_info_output_unref () +
+gboolean + +qmi_message_nas_get_system_info_output_get_sim_reject_info () +
+gboolean + +qmi_message_nas_get_system_info_output_get_lte_embms_coverage_info_support () +
+gboolean + +qmi_message_nas_get_system_info_output_get_td_scdma_system_info () +
+gboolean + +qmi_message_nas_get_system_info_output_get_td_scdma_service_status () +
+gboolean + +qmi_message_nas_get_system_info_output_get_wcdma_cipher_domain () +
+gboolean + +qmi_message_nas_get_system_info_output_get_gsm_cipher_domain () +
+gboolean + +qmi_message_nas_get_system_info_output_get_lte_voice_support () +
+gboolean + +qmi_message_nas_get_system_info_output_get_wcdma_call_barring_status () +
+gboolean + +qmi_message_nas_get_system_info_output_get_gsm_call_barring_status () +
+gboolean + +qmi_message_nas_get_system_info_output_get_additional_lte_system_info () +
+gboolean + +qmi_message_nas_get_system_info_output_get_additional_wcdma_system_info () +
+gboolean + +qmi_message_nas_get_system_info_output_get_additional_gsm_system_info () +
+gboolean + +qmi_message_nas_get_system_info_output_get_additional_hdr_system_info () +
+gboolean + +qmi_message_nas_get_system_info_output_get_additional_cdma_system_info () +
+gboolean + +qmi_message_nas_get_system_info_output_get_lte_system_info () +
+gboolean + +qmi_message_nas_get_system_info_output_get_wcdma_system_info () +
+gboolean + +qmi_message_nas_get_system_info_output_get_gsm_system_info () +
+gboolean + +qmi_message_nas_get_system_info_output_get_hdr_system_info () +
+gboolean + +qmi_message_nas_get_system_info_output_get_cdma_system_info () +
+gboolean + +qmi_message_nas_get_system_info_output_get_lte_service_status () +
+gboolean + +qmi_message_nas_get_system_info_output_get_wcdma_service_status () +
+gboolean + +qmi_message_nas_get_system_info_output_get_gsm_service_status () +
+gboolean + +qmi_message_nas_get_system_info_output_get_hdr_service_status () +
+gboolean + +qmi_message_nas_get_system_info_output_get_cdma_service_status () +
+gboolean + +qmi_message_nas_get_system_info_output_get_result () +
+void + +qmi_client_nas_get_system_info () +
+QmiMessageNasGetSystemInfoOutput * + +qmi_client_nas_get_system_info_finish () +
+
+
+

Types and Values

+ +
+
+

Object Hierarchy

+
    GBoxed
+    ╰── QmiMessageNasGetSystemInfoOutput
+
+
+
+

Description

+
+
+

Functions

+
+

qmi_message_nas_get_system_info_output_ref ()

+
QmiMessageNasGetSystemInfoOutput *
+qmi_message_nas_get_system_info_output_ref
+                               (QmiMessageNasGetSystemInfoOutput *self);
+

Atomically increments the reference count of self + by one.

+
+

Parameters

+
+++++ + + + + + +

self

a QmiMessageNasGetSystemInfoOutput.

 
+
+
+

Returns

+

the new reference to self +.

+
+

Since: 1.0

+
+
+
+

qmi_message_nas_get_system_info_output_unref ()

+
void
+qmi_message_nas_get_system_info_output_unref
+                               (QmiMessageNasGetSystemInfoOutput *self);
+

Atomically decrements the reference count of self + by one. +If the reference count drops to 0, self + is completely disposed.

+
+

Parameters

+
+++++ + + + + + +

self

a QmiMessageNasGetSystemInfoOutput.

 
+
+

Since: 1.0

+
+
+
+

qmi_message_nas_get_system_info_output_get_sim_reject_info ()

+
gboolean
+qmi_message_nas_get_system_info_output_get_sim_reject_info
+                               (QmiMessageNasGetSystemInfoOutput *self,
+                                QmiNasSimRejectState *value_sim_reject_info,
+                                GError **error);
+

Get the 'SIM Reject Info' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageNasGetSystemInfoOutput.

 

value_sim_reject_info

a placeholder for the output QmiNasSimRejectState, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.0

+
+
+
+

qmi_message_nas_get_system_info_output_get_lte_embms_coverage_info_support ()

+
gboolean
+qmi_message_nas_get_system_info_output_get_lte_embms_coverage_info_support
+                               (QmiMessageNasGetSystemInfoOutput *self,
+                                gboolean *value_lte_embms_coverage_info_support,
+                                GError **error);
+

Get the 'LTE eMBMS Coverage Info Support' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageNasGetSystemInfoOutput.

 

value_lte_embms_coverage_info_support

a placeholder for the output gboolean, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.0

+
+
+
+

qmi_message_nas_get_system_info_output_get_td_scdma_system_info ()

+
gboolean
+qmi_message_nas_get_system_info_output_get_td_scdma_system_info
+                               (QmiMessageNasGetSystemInfoOutput *self,
+                                gboolean *value_td_scdma_system_info_domain_valid,
+                                QmiNasNetworkServiceDomain *value_td_scdma_system_info_domain,
+                                gboolean *value_td_scdma_system_info_service_capability_valid,
+                                QmiNasNetworkServiceDomain *value_td_scdma_system_info_service_capability,
+                                gboolean *value_td_scdma_system_info_roaming_status_valid,
+                                QmiNasRoamingStatus *value_td_scdma_system_info_roaming_status,
+                                gboolean *value_td_scdma_system_info_forbidden_valid,
+                                gboolean *value_td_scdma_system_info_forbidden,
+                                gboolean *value_td_scdma_system_info_lac_valid,
+                                guint16 *value_td_scdma_system_info_lac,
+                                gboolean *value_td_scdma_system_info_cid_valid,
+                                guint32 *value_td_scdma_system_info_cid,
+                                gboolean *value_td_scdma_system_info_registration_reject_info_valid,
+                                QmiNasNetworkServiceDomain *value_td_scdma_system_info_registration_reject_domain,
+                                guint8 *value_td_scdma_system_info_registration_reject_cause,
+                                gboolean *value_td_scdma_system_info_network_id_valid,
+                                const gchar **value_td_scdma_system_info_mcc,
+                                const gchar **value_td_scdma_system_info_mnc,
+                                gboolean *value_td_scdma_system_info_hs_call_status_valid,
+                                QmiNasWcdmaHsService *value_td_scdma_system_info_hs_call_status,
+                                gboolean *value_td_scdma_system_info_hs_service_valid,
+                                QmiNasWcdmaHsService *value_td_scdma_system_info_hs_service,
+                                gboolean *value_td_scdma_system_info_cell_parameter_id_valid,
+                                guint16 *value_td_scdma_system_info_cell_parameter_id,
+                                gboolean *value_td_scdma_system_info_cell_broadcast_support_valid,
+                                QmiNasCellBroadcastCapability *value_td_scdma_system_info_cell_broadcast_support,
+                                gboolean *value_td_scdma_system_info_cs_call_barring_status_valid,
+                                QmiNasCallBarringStatus *value_td_scdma_system_info_cs_call_barring_status,
+                                gboolean *value_td_scdma_system_info_ps_call_barring_status_valid,
+                                QmiNasCallBarringStatus *value_td_scdma_system_info_ps_call_barring_status,
+                                gboolean *value_td_scdma_system_info_cipher_domain_valid,
+                                QmiNasNetworkServiceDomain *value_td_scdma_system_info_cipher_domain,
+                                GError **error);
+

Get the 'TD SCDMA System Info' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

self

a QmiMessageNasGetSystemInfoOutput.

 

value_td_scdma_system_info_domain_valid

a placeholder for the output gboolean, or NULL if not required.

 

value_td_scdma_system_info_domain

a placeholder for the output QmiNasNetworkServiceDomain, or NULL if not required.

 

value_td_scdma_system_info_service_capability_valid

a placeholder for the output gboolean, or NULL if not required.

 

value_td_scdma_system_info_service_capability

a placeholder for the output QmiNasNetworkServiceDomain, or NULL if not required.

 

value_td_scdma_system_info_roaming_status_valid

a placeholder for the output gboolean, or NULL if not required.

 

value_td_scdma_system_info_roaming_status

a placeholder for the output QmiNasRoamingStatus, or NULL if not required.

 

value_td_scdma_system_info_forbidden_valid

a placeholder for the output gboolean, or NULL if not required.

 

value_td_scdma_system_info_forbidden

a placeholder for the output gboolean, or NULL if not required.

 

value_td_scdma_system_info_lac_valid

a placeholder for the output gboolean, or NULL if not required.

 

value_td_scdma_system_info_lac

a placeholder for the output guint16, or NULL if not required.

 

value_td_scdma_system_info_cid_valid

a placeholder for the output gboolean, or NULL if not required.

 

value_td_scdma_system_info_cid

a placeholder for the output guint32, or NULL if not required.

 

value_td_scdma_system_info_registration_reject_info_valid

a placeholder for the output gboolean, or NULL if not required.

 

value_td_scdma_system_info_registration_reject_domain

a placeholder for the output QmiNasNetworkServiceDomain, or NULL if not required.

 

value_td_scdma_system_info_registration_reject_cause

a placeholder for the output guint8, or NULL if not required.

 

value_td_scdma_system_info_network_id_valid

a placeholder for the output gboolean, or NULL if not required.

 

value_td_scdma_system_info_mcc

a placeholder for the output constant string, or NULL if not required.

 

value_td_scdma_system_info_mnc

a placeholder for the output constant string, or NULL if not required.

 

value_td_scdma_system_info_hs_call_status_valid

a placeholder for the output gboolean, or NULL if not required.

 

value_td_scdma_system_info_hs_call_status

a placeholder for the output QmiNasWcdmaHsService, or NULL if not required.

 

value_td_scdma_system_info_hs_service_valid

a placeholder for the output gboolean, or NULL if not required.

 

value_td_scdma_system_info_hs_service

a placeholder for the output QmiNasWcdmaHsService, or NULL if not required.

 

value_td_scdma_system_info_cell_parameter_id_valid

a placeholder for the output gboolean, or NULL if not required.

 

value_td_scdma_system_info_cell_parameter_id

a placeholder for the output guint16, or NULL if not required.

 

value_td_scdma_system_info_cell_broadcast_support_valid

a placeholder for the output gboolean, or NULL if not required.

 

value_td_scdma_system_info_cell_broadcast_support

a placeholder for the output QmiNasCellBroadcastCapability, or NULL if not required.

 

value_td_scdma_system_info_cs_call_barring_status_valid

a placeholder for the output gboolean, or NULL if not required.

 

value_td_scdma_system_info_cs_call_barring_status

a placeholder for the output QmiNasCallBarringStatus, or NULL if not required.

 

value_td_scdma_system_info_ps_call_barring_status_valid

a placeholder for the output gboolean, or NULL if not required.

 

value_td_scdma_system_info_ps_call_barring_status

a placeholder for the output QmiNasCallBarringStatus, or NULL if not required.

 

value_td_scdma_system_info_cipher_domain_valid

a placeholder for the output gboolean, or NULL if not required.

 

value_td_scdma_system_info_cipher_domain

a placeholder for the output QmiNasNetworkServiceDomain, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.0

+
+
+
+

qmi_message_nas_get_system_info_output_get_td_scdma_service_status ()

+
gboolean
+qmi_message_nas_get_system_info_output_get_td_scdma_service_status
+                               (QmiMessageNasGetSystemInfoOutput *self,
+                                QmiNasServiceStatus *value_td_scdma_service_status_service_status,
+                                QmiNasServiceStatus *value_td_scdma_service_status_true_service_status,
+                                gboolean *value_td_scdma_service_status_preferred_data_path,
+                                GError **error);
+

Get the 'TD SCDMA Service Status' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + + + + + + + + + + + +

self

a QmiMessageNasGetSystemInfoOutput.

 

value_td_scdma_service_status_service_status

a placeholder for the output QmiNasServiceStatus, or NULL if not required.

 

value_td_scdma_service_status_true_service_status

a placeholder for the output QmiNasServiceStatus, or NULL if not required.

 

value_td_scdma_service_status_preferred_data_path

a placeholder for the output gboolean, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.0

+
+
+
+

qmi_message_nas_get_system_info_output_get_wcdma_cipher_domain ()

+
gboolean
+qmi_message_nas_get_system_info_output_get_wcdma_cipher_domain
+                               (QmiMessageNasGetSystemInfoOutput *self,
+                                QmiNasNetworkServiceDomain *value_wcdma_cipher_domain,
+                                GError **error);
+

Get the 'WCDMA Cipher Domain' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageNasGetSystemInfoOutput.

 

value_wcdma_cipher_domain

a placeholder for the output QmiNasNetworkServiceDomain, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.0

+
+
+
+

qmi_message_nas_get_system_info_output_get_gsm_cipher_domain ()

+
gboolean
+qmi_message_nas_get_system_info_output_get_gsm_cipher_domain
+                               (QmiMessageNasGetSystemInfoOutput *self,
+                                QmiNasNetworkServiceDomain *value_gsm_cipher_domain,
+                                GError **error);
+

Get the 'GSM Cipher Domain' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageNasGetSystemInfoOutput.

 

value_gsm_cipher_domain

a placeholder for the output QmiNasNetworkServiceDomain, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.0

+
+
+
+

qmi_message_nas_get_system_info_output_get_lte_voice_support ()

+
gboolean
+qmi_message_nas_get_system_info_output_get_lte_voice_support
+                               (QmiMessageNasGetSystemInfoOutput *self,
+                                gboolean *value_lte_voice_support,
+                                GError **error);
+

Get the 'LTE Voice Support' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageNasGetSystemInfoOutput.

 

value_lte_voice_support

a placeholder for the output gboolean, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.0

+
+
+
+

qmi_message_nas_get_system_info_output_get_wcdma_call_barring_status ()

+
gboolean
+qmi_message_nas_get_system_info_output_get_wcdma_call_barring_status
+                               (QmiMessageNasGetSystemInfoOutput *self,
+                                QmiNasCallBarringStatus *value_wcdma_call_barring_status_cs_status,
+                                QmiNasCallBarringStatus *value_wcdma_call_barring_status_ps_status,
+                                GError **error);
+

Get the 'WCDMA Call Barring Status' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + + + + + + +

self

a QmiMessageNasGetSystemInfoOutput.

 

value_wcdma_call_barring_status_cs_status

a placeholder for the output QmiNasCallBarringStatus, or NULL if not required.

 

value_wcdma_call_barring_status_ps_status

a placeholder for the output QmiNasCallBarringStatus, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.0

+
+
+
+

qmi_message_nas_get_system_info_output_get_gsm_call_barring_status ()

+
gboolean
+qmi_message_nas_get_system_info_output_get_gsm_call_barring_status
+                               (QmiMessageNasGetSystemInfoOutput *self,
+                                QmiNasCallBarringStatus *value_gsm_call_barring_status_cs_status,
+                                QmiNasCallBarringStatus *value_gsm_call_barring_status_ps_status,
+                                GError **error);
+

Get the 'GSM Call Barring Status' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + + + + + + +

self

a QmiMessageNasGetSystemInfoOutput.

 

value_gsm_call_barring_status_cs_status

a placeholder for the output QmiNasCallBarringStatus, or NULL if not required.

 

value_gsm_call_barring_status_ps_status

a placeholder for the output QmiNasCallBarringStatus, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.0

+
+
+
+

qmi_message_nas_get_system_info_output_get_additional_lte_system_info ()

+
gboolean
+qmi_message_nas_get_system_info_output_get_additional_lte_system_info
+                               (QmiMessageNasGetSystemInfoOutput *self,
+                                guint16 *value_additional_lte_system_info_geo_system_index,
+                                GError **error);
+

Get the 'Additional LTE System Info' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageNasGetSystemInfoOutput.

 

value_additional_lte_system_info_geo_system_index

a placeholder for the output guint16, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.0

+
+
+
+

qmi_message_nas_get_system_info_output_get_additional_wcdma_system_info ()

+
gboolean
+qmi_message_nas_get_system_info_output_get_additional_wcdma_system_info
+                               (QmiMessageNasGetSystemInfoOutput *self,
+                                guint16 *value_additional_wcdma_system_info_geo_system_index,
+                                QmiNasCellBroadcastCapability *value_additional_wcdma_system_info_cell_broadcast_support,
+                                GError **error);
+

Get the 'Additional WCDMA System Info' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + + + + + + +

self

a QmiMessageNasGetSystemInfoOutput.

 

value_additional_wcdma_system_info_geo_system_index

a placeholder for the output guint16, or NULL if not required.

 

value_additional_wcdma_system_info_cell_broadcast_support

a placeholder for the output QmiNasCellBroadcastCapability, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.0

+
+
+
+

qmi_message_nas_get_system_info_output_get_additional_gsm_system_info ()

+
gboolean
+qmi_message_nas_get_system_info_output_get_additional_gsm_system_info
+                               (QmiMessageNasGetSystemInfoOutput *self,
+                                guint16 *value_additional_gsm_system_info_geo_system_index,
+                                QmiNasCellBroadcastCapability *value_additional_gsm_system_info_cell_broadcast_support,
+                                GError **error);
+

Get the 'Additional GSM System Info' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + + + + + + +

self

a QmiMessageNasGetSystemInfoOutput.

 

value_additional_gsm_system_info_geo_system_index

a placeholder for the output guint16, or NULL if not required.

 

value_additional_gsm_system_info_cell_broadcast_support

a placeholder for the output QmiNasCellBroadcastCapability, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.0

+
+
+
+

qmi_message_nas_get_system_info_output_get_additional_hdr_system_info ()

+
gboolean
+qmi_message_nas_get_system_info_output_get_additional_hdr_system_info
+                               (QmiMessageNasGetSystemInfoOutput *self,
+                                guint16 *value_additional_hdr_system_info_geo_system_index,
+                                GError **error);
+

Get the 'Additional HDR System Info' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageNasGetSystemInfoOutput.

 

value_additional_hdr_system_info_geo_system_index

a placeholder for the output guint16, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.0

+
+
+
+

qmi_message_nas_get_system_info_output_get_additional_cdma_system_info ()

+
gboolean
+qmi_message_nas_get_system_info_output_get_additional_cdma_system_info
+                               (QmiMessageNasGetSystemInfoOutput *self,
+                                guint16 *value_additional_cdma_system_info_geo_system_index,
+                                guint16 *value_additional_cdma_system_info_registration_period,
+                                GError **error);
+

Get the 'Additional CDMA System Info' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + + + + + + +

self

a QmiMessageNasGetSystemInfoOutput.

 

value_additional_cdma_system_info_geo_system_index

a placeholder for the output guint16, or NULL if not required.

 

value_additional_cdma_system_info_registration_period

a placeholder for the output guint16, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.0

+
+
+
+

qmi_message_nas_get_system_info_output_get_lte_system_info ()

+
gboolean
+qmi_message_nas_get_system_info_output_get_lte_system_info
+                               (QmiMessageNasGetSystemInfoOutput *self,
+                                gboolean *value_lte_system_info_domain_valid,
+                                QmiNasNetworkServiceDomain *value_lte_system_info_domain,
+                                gboolean *value_lte_system_info_service_capability_valid,
+                                QmiNasNetworkServiceDomain *value_lte_system_info_service_capability,
+                                gboolean *value_lte_system_info_roaming_status_valid,
+                                QmiNasRoamingStatus *value_lte_system_info_roaming_status,
+                                gboolean *value_lte_system_info_forbidden_valid,
+                                gboolean *value_lte_system_info_forbidden,
+                                gboolean *value_lte_system_info_lac_valid,
+                                guint16 *value_lte_system_info_lac,
+                                gboolean *value_lte_system_info_cid_valid,
+                                guint32 *value_lte_system_info_cid,
+                                gboolean *value_lte_system_info_registration_reject_info_valid,
+                                QmiNasNetworkServiceDomain *value_lte_system_info_registration_reject_domain,
+                                guint8 *value_lte_system_info_registration_reject_cause,
+                                gboolean *value_lte_system_info_network_id_valid,
+                                const gchar **value_lte_system_info_mcc,
+                                const gchar **value_lte_system_info_mnc,
+                                gboolean *value_lte_system_info_tac_valid,
+                                guint16 *value_lte_system_info_tac,
+                                GError **error);
+

Get the 'LTE System Info' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

self

a QmiMessageNasGetSystemInfoOutput.

 

value_lte_system_info_domain_valid

a placeholder for the output gboolean, or NULL if not required.

 

value_lte_system_info_domain

a placeholder for the output QmiNasNetworkServiceDomain, or NULL if not required.

 

value_lte_system_info_service_capability_valid

a placeholder for the output gboolean, or NULL if not required.

 

value_lte_system_info_service_capability

a placeholder for the output QmiNasNetworkServiceDomain, or NULL if not required.

 

value_lte_system_info_roaming_status_valid

a placeholder for the output gboolean, or NULL if not required.

 

value_lte_system_info_roaming_status

a placeholder for the output QmiNasRoamingStatus, or NULL if not required.

 

value_lte_system_info_forbidden_valid

a placeholder for the output gboolean, or NULL if not required.

 

value_lte_system_info_forbidden

a placeholder for the output gboolean, or NULL if not required.

 

value_lte_system_info_lac_valid

a placeholder for the output gboolean, or NULL if not required.

 

value_lte_system_info_lac

a placeholder for the output guint16, or NULL if not required.

 

value_lte_system_info_cid_valid

a placeholder for the output gboolean, or NULL if not required.

 

value_lte_system_info_cid

a placeholder for the output guint32, or NULL if not required.

 

value_lte_system_info_registration_reject_info_valid

a placeholder for the output gboolean, or NULL if not required.

 

value_lte_system_info_registration_reject_domain

a placeholder for the output QmiNasNetworkServiceDomain, or NULL if not required.

 

value_lte_system_info_registration_reject_cause

a placeholder for the output guint8, or NULL if not required.

 

value_lte_system_info_network_id_valid

a placeholder for the output gboolean, or NULL if not required.

 

value_lte_system_info_mcc

a placeholder for the output constant string, or NULL if not required.

 

value_lte_system_info_mnc

a placeholder for the output constant string, or NULL if not required.

 

value_lte_system_info_tac_valid

a placeholder for the output gboolean, or NULL if not required.

 

value_lte_system_info_tac

a placeholder for the output guint16, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.0

+
+
+
+

qmi_message_nas_get_system_info_output_get_wcdma_system_info ()

+
gboolean
+qmi_message_nas_get_system_info_output_get_wcdma_system_info
+                               (QmiMessageNasGetSystemInfoOutput *self,
+                                gboolean *value_wcdma_system_info_domain_valid,
+                                QmiNasNetworkServiceDomain *value_wcdma_system_info_domain,
+                                gboolean *value_wcdma_system_info_service_capability_valid,
+                                QmiNasNetworkServiceDomain *value_wcdma_system_info_service_capability,
+                                gboolean *value_wcdma_system_info_roaming_status_valid,
+                                QmiNasRoamingStatus *value_wcdma_system_info_roaming_status,
+                                gboolean *value_wcdma_system_info_forbidden_valid,
+                                gboolean *value_wcdma_system_info_forbidden,
+                                gboolean *value_wcdma_system_info_lac_valid,
+                                guint16 *value_wcdma_system_info_lac,
+                                gboolean *value_wcdma_system_info_cid_valid,
+                                guint32 *value_wcdma_system_info_cid,
+                                gboolean *value_wcdma_system_info_registration_reject_info_valid,
+                                QmiNasNetworkServiceDomain *value_wcdma_system_info_registration_reject_domain,
+                                guint8 *value_wcdma_system_info_registration_reject_cause,
+                                gboolean *value_wcdma_system_info_network_id_valid,
+                                const gchar **value_wcdma_system_info_mcc,
+                                const gchar **value_wcdma_system_info_mnc,
+                                gboolean *value_wcdma_system_info_hs_call_status_valid,
+                                QmiNasWcdmaHsService *value_wcdma_system_info_hs_call_status,
+                                gboolean *value_wcdma_system_info_hs_service_valid,
+                                QmiNasWcdmaHsService *value_wcdma_system_info_hs_service,
+                                gboolean *value_wcdma_system_info_primary_scrambling_code_valid,
+                                guint16 *value_wcdma_system_info_primary_scrambling_code,
+                                GError **error);
+

Get the 'WCDMA System Info' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

self

a QmiMessageNasGetSystemInfoOutput.

 

value_wcdma_system_info_domain_valid

a placeholder for the output gboolean, or NULL if not required.

 

value_wcdma_system_info_domain

a placeholder for the output QmiNasNetworkServiceDomain, or NULL if not required.

 

value_wcdma_system_info_service_capability_valid

a placeholder for the output gboolean, or NULL if not required.

 

value_wcdma_system_info_service_capability

a placeholder for the output QmiNasNetworkServiceDomain, or NULL if not required.

 

value_wcdma_system_info_roaming_status_valid

a placeholder for the output gboolean, or NULL if not required.

 

value_wcdma_system_info_roaming_status

a placeholder for the output QmiNasRoamingStatus, or NULL if not required.

 

value_wcdma_system_info_forbidden_valid

a placeholder for the output gboolean, or NULL if not required.

 

value_wcdma_system_info_forbidden

a placeholder for the output gboolean, or NULL if not required.

 

value_wcdma_system_info_lac_valid

a placeholder for the output gboolean, or NULL if not required.

 

value_wcdma_system_info_lac

a placeholder for the output guint16, or NULL if not required.

 

value_wcdma_system_info_cid_valid

a placeholder for the output gboolean, or NULL if not required.

 

value_wcdma_system_info_cid

a placeholder for the output guint32, or NULL if not required.

 

value_wcdma_system_info_registration_reject_info_valid

a placeholder for the output gboolean, or NULL if not required.

 

value_wcdma_system_info_registration_reject_domain

a placeholder for the output QmiNasNetworkServiceDomain, or NULL if not required.

 

value_wcdma_system_info_registration_reject_cause

a placeholder for the output guint8, or NULL if not required.

 

value_wcdma_system_info_network_id_valid

a placeholder for the output gboolean, or NULL if not required.

 

value_wcdma_system_info_mcc

a placeholder for the output constant string, or NULL if not required.

 

value_wcdma_system_info_mnc

a placeholder for the output constant string, or NULL if not required.

 

value_wcdma_system_info_hs_call_status_valid

a placeholder for the output gboolean, or NULL if not required.

 

value_wcdma_system_info_hs_call_status

a placeholder for the output QmiNasWcdmaHsService, or NULL if not required.

 

value_wcdma_system_info_hs_service_valid

a placeholder for the output gboolean, or NULL if not required.

 

value_wcdma_system_info_hs_service

a placeholder for the output QmiNasWcdmaHsService, or NULL if not required.

 

value_wcdma_system_info_primary_scrambling_code_valid

a placeholder for the output gboolean, or NULL if not required.

 

value_wcdma_system_info_primary_scrambling_code

a placeholder for the output guint16, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.0

+
+
+
+

qmi_message_nas_get_system_info_output_get_gsm_system_info ()

+
gboolean
+qmi_message_nas_get_system_info_output_get_gsm_system_info
+                               (QmiMessageNasGetSystemInfoOutput *self,
+                                gboolean *value_gsm_system_info_domain_valid,
+                                QmiNasNetworkServiceDomain *value_gsm_system_info_domain,
+                                gboolean *value_gsm_system_info_service_capability_valid,
+                                QmiNasNetworkServiceDomain *value_gsm_system_info_service_capability,
+                                gboolean *value_gsm_system_info_roaming_status_valid,
+                                QmiNasRoamingStatus *value_gsm_system_info_roaming_status,
+                                gboolean *value_gsm_system_info_forbidden_valid,
+                                gboolean *value_gsm_system_info_forbidden,
+                                gboolean *value_gsm_system_info_lac_valid,
+                                guint16 *value_gsm_system_info_lac,
+                                gboolean *value_gsm_system_info_cid_valid,
+                                guint32 *value_gsm_system_info_cid,
+                                gboolean *value_gsm_system_info_registration_reject_info_valid,
+                                QmiNasNetworkServiceDomain *value_gsm_system_info_registration_reject_domain,
+                                guint8 *value_gsm_system_info_registration_reject_cause,
+                                gboolean *value_gsm_system_info_network_id_valid,
+                                const gchar **value_gsm_system_info_mcc,
+                                const gchar **value_gsm_system_info_mnc,
+                                gboolean *value_gsm_system_info_egprs_support_valid,
+                                gboolean *value_gsm_system_info_egprs_support,
+                                gboolean *value_gsm_system_info_dtm_support_valid,
+                                gboolean *value_gsm_system_info_dtm_support,
+                                GError **error);
+

Get the 'GSM System Info' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

self

a QmiMessageNasGetSystemInfoOutput.

 

value_gsm_system_info_domain_valid

a placeholder for the output gboolean, or NULL if not required.

 

value_gsm_system_info_domain

a placeholder for the output QmiNasNetworkServiceDomain, or NULL if not required.

 

value_gsm_system_info_service_capability_valid

a placeholder for the output gboolean, or NULL if not required.

 

value_gsm_system_info_service_capability

a placeholder for the output QmiNasNetworkServiceDomain, or NULL if not required.

 

value_gsm_system_info_roaming_status_valid

a placeholder for the output gboolean, or NULL if not required.

 

value_gsm_system_info_roaming_status

a placeholder for the output QmiNasRoamingStatus, or NULL if not required.

 

value_gsm_system_info_forbidden_valid

a placeholder for the output gboolean, or NULL if not required.

 

value_gsm_system_info_forbidden

a placeholder for the output gboolean, or NULL if not required.

 

value_gsm_system_info_lac_valid

a placeholder for the output gboolean, or NULL if not required.

 

value_gsm_system_info_lac

a placeholder for the output guint16, or NULL if not required.

 

value_gsm_system_info_cid_valid

a placeholder for the output gboolean, or NULL if not required.

 

value_gsm_system_info_cid

a placeholder for the output guint32, or NULL if not required.

 

value_gsm_system_info_registration_reject_info_valid

a placeholder for the output gboolean, or NULL if not required.

 

value_gsm_system_info_registration_reject_domain

a placeholder for the output QmiNasNetworkServiceDomain, or NULL if not required.

 

value_gsm_system_info_registration_reject_cause

a placeholder for the output guint8, or NULL if not required.

 

value_gsm_system_info_network_id_valid

a placeholder for the output gboolean, or NULL if not required.

 

value_gsm_system_info_mcc

a placeholder for the output constant string, or NULL if not required.

 

value_gsm_system_info_mnc

a placeholder for the output constant string, or NULL if not required.

 

value_gsm_system_info_egprs_support_valid

a placeholder for the output gboolean, or NULL if not required.

 

value_gsm_system_info_egprs_support

a placeholder for the output gboolean, or NULL if not required.

 

value_gsm_system_info_dtm_support_valid

a placeholder for the output gboolean, or NULL if not required.

 

value_gsm_system_info_dtm_support

a placeholder for the output gboolean, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.0

+
+
+
+

qmi_message_nas_get_system_info_output_get_hdr_system_info ()

+
gboolean
+qmi_message_nas_get_system_info_output_get_hdr_system_info
+                               (QmiMessageNasGetSystemInfoOutput *self,
+                                gboolean *value_hdr_system_info_domain_valid,
+                                QmiNasNetworkServiceDomain *value_hdr_system_info_domain,
+                                gboolean *value_hdr_system_info_service_capability_valid,
+                                QmiNasNetworkServiceDomain *value_hdr_system_info_service_capability,
+                                gboolean *value_hdr_system_info_roaming_status_valid,
+                                QmiNasRoamingStatus *value_hdr_system_info_roaming_status,
+                                gboolean *value_hdr_system_info_forbidden_valid,
+                                gboolean *value_hdr_system_info_forbidden,
+                                gboolean *value_hdr_system_info_prl_match_valid,
+                                gboolean *value_hdr_system_info_prl_match,
+                                gboolean *value_hdr_system_info_personality_valid,
+                                QmiNasHdrPersonality *value_hdr_system_info_personality,
+                                gboolean *value_hdr_system_info_protocol_revision_valid,
+                                QmiNasHdrProtocolRevision *value_hdr_system_info_protocol_revision,
+                                gboolean *value_hdr_system_info_is_856_system_id_valid,
+                                const gchar **value_hdr_system_info_is_856_system_id,
+                                GError **error);
+

Get the 'HDR System Info' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

self

a QmiMessageNasGetSystemInfoOutput.

 

value_hdr_system_info_domain_valid

a placeholder for the output gboolean, or NULL if not required.

 

value_hdr_system_info_domain

a placeholder for the output QmiNasNetworkServiceDomain, or NULL if not required.

 

value_hdr_system_info_service_capability_valid

a placeholder for the output gboolean, or NULL if not required.

 

value_hdr_system_info_service_capability

a placeholder for the output QmiNasNetworkServiceDomain, or NULL if not required.

 

value_hdr_system_info_roaming_status_valid

a placeholder for the output gboolean, or NULL if not required.

 

value_hdr_system_info_roaming_status

a placeholder for the output QmiNasRoamingStatus, or NULL if not required.

 

value_hdr_system_info_forbidden_valid

a placeholder for the output gboolean, or NULL if not required.

 

value_hdr_system_info_forbidden

a placeholder for the output gboolean, or NULL if not required.

 

value_hdr_system_info_prl_match_valid

a placeholder for the output gboolean, or NULL if not required.

 

value_hdr_system_info_prl_match

a placeholder for the output gboolean, or NULL if not required.

 

value_hdr_system_info_personality_valid

a placeholder for the output gboolean, or NULL if not required.

 

value_hdr_system_info_personality

a placeholder for the output QmiNasHdrPersonality, or NULL if not required.

 

value_hdr_system_info_protocol_revision_valid

a placeholder for the output gboolean, or NULL if not required.

 

value_hdr_system_info_protocol_revision

a placeholder for the output QmiNasHdrProtocolRevision, or NULL if not required.

 

value_hdr_system_info_is_856_system_id_valid

a placeholder for the output gboolean, or NULL if not required.

 

value_hdr_system_info_is_856_system_id

a placeholder for the output constant string, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.0

+
+
+
+

qmi_message_nas_get_system_info_output_get_cdma_system_info ()

+
gboolean
+qmi_message_nas_get_system_info_output_get_cdma_system_info
+                               (QmiMessageNasGetSystemInfoOutput *self,
+                                gboolean *value_cdma_system_info_domain_valid,
+                                QmiNasNetworkServiceDomain *value_cdma_system_info_domain,
+                                gboolean *value_cdma_system_info_service_capability_valid,
+                                QmiNasNetworkServiceDomain *value_cdma_system_info_service_capability,
+                                gboolean *value_cdma_system_info_roaming_status_valid,
+                                QmiNasRoamingStatus *value_cdma_system_info_roaming_status,
+                                gboolean *value_cdma_system_info_forbidden_valid,
+                                gboolean *value_cdma_system_info_forbidden,
+                                gboolean *value_cdma_system_info_prl_match_valid,
+                                gboolean *value_cdma_system_info_prl_match,
+                                gboolean *value_cdma_system_info_p_rev_valid,
+                                guint8 *value_cdma_system_info_p_rev,
+                                gboolean *value_cdma_system_info_base_station_p_rev_valid,
+                                guint8 *value_cdma_system_info_base_station_p_rev,
+                                gboolean *value_cdma_system_info_concurrent_service_support_valid,
+                                gboolean *value_cdma_system_info_concurrent_service_support,
+                                gboolean *value_cdma_system_info_cdma_system_id_valid,
+                                guint16 *value_cdma_system_info_sid,
+                                guint16 *value_cdma_system_info_nid,
+                                gboolean *value_cdma_system_info_base_station_info_valid,
+                                guint16 *value_cdma_system_info_base_station_id,
+                                gint32 *value_cdma_system_info_base_station_latitude,
+                                gint32 *value_cdma_system_info_base_station_longitude,
+                                gboolean *value_cdma_system_info_packet_zone_valid,
+                                guint16 *value_cdma_system_info_packet_zone,
+                                gboolean *value_cdma_system_info_network_id_valid,
+                                const gchar **value_cdma_system_info_mcc,
+                                const gchar **value_cdma_system_info_mnc,
+                                GError **error);
+

Get the 'CDMA System Info' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

self

a QmiMessageNasGetSystemInfoOutput.

 

value_cdma_system_info_domain_valid

a placeholder for the output gboolean, or NULL if not required.

 

value_cdma_system_info_domain

a placeholder for the output QmiNasNetworkServiceDomain, or NULL if not required.

 

value_cdma_system_info_service_capability_valid

a placeholder for the output gboolean, or NULL if not required.

 

value_cdma_system_info_service_capability

a placeholder for the output QmiNasNetworkServiceDomain, or NULL if not required.

 

value_cdma_system_info_roaming_status_valid

a placeholder for the output gboolean, or NULL if not required.

 

value_cdma_system_info_roaming_status

a placeholder for the output QmiNasRoamingStatus, or NULL if not required.

 

value_cdma_system_info_forbidden_valid

a placeholder for the output gboolean, or NULL if not required.

 

value_cdma_system_info_forbidden

a placeholder for the output gboolean, or NULL if not required.

 

value_cdma_system_info_prl_match_valid

a placeholder for the output gboolean, or NULL if not required.

 

value_cdma_system_info_prl_match

a placeholder for the output gboolean, or NULL if not required.

 

value_cdma_system_info_p_rev_valid

a placeholder for the output gboolean, or NULL if not required.

 

value_cdma_system_info_p_rev

a placeholder for the output guint8, or NULL if not required.

 

value_cdma_system_info_base_station_p_rev_valid

a placeholder for the output gboolean, or NULL if not required.

 

value_cdma_system_info_base_station_p_rev

a placeholder for the output guint8, or NULL if not required.

 

value_cdma_system_info_concurrent_service_support_valid

a placeholder for the output gboolean, or NULL if not required.

 

value_cdma_system_info_concurrent_service_support

a placeholder for the output gboolean, or NULL if not required.

 

value_cdma_system_info_cdma_system_id_valid

a placeholder for the output gboolean, or NULL if not required.

 

value_cdma_system_info_sid

a placeholder for the output guint16, or NULL if not required.

 

value_cdma_system_info_nid

a placeholder for the output guint16, or NULL if not required.

 

value_cdma_system_info_base_station_info_valid

a placeholder for the output gboolean, or NULL if not required.

 

value_cdma_system_info_base_station_id

a placeholder for the output guint16, or NULL if not required.

 

value_cdma_system_info_base_station_latitude

a placeholder for the output gint32, or NULL if not required.

 

value_cdma_system_info_base_station_longitude

a placeholder for the output gint32, or NULL if not required.

 

value_cdma_system_info_packet_zone_valid

a placeholder for the output gboolean, or NULL if not required.

 

value_cdma_system_info_packet_zone

a placeholder for the output guint16, or NULL if not required.

 

value_cdma_system_info_network_id_valid

a placeholder for the output gboolean, or NULL if not required.

 

value_cdma_system_info_mcc

a placeholder for the output constant string, or NULL if not required.

 

value_cdma_system_info_mnc

a placeholder for the output constant string, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.0

+
+
+
+

qmi_message_nas_get_system_info_output_get_lte_service_status ()

+
gboolean
+qmi_message_nas_get_system_info_output_get_lte_service_status
+                               (QmiMessageNasGetSystemInfoOutput *self,
+                                QmiNasServiceStatus *value_lte_service_status_service_status,
+                                QmiNasServiceStatus *value_lte_service_status_true_service_status,
+                                gboolean *value_lte_service_status_preferred_data_path,
+                                GError **error);
+

Get the 'LTE Service Status' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + + + + + + + + + + + +

self

a QmiMessageNasGetSystemInfoOutput.

 

value_lte_service_status_service_status

a placeholder for the output QmiNasServiceStatus, or NULL if not required.

 

value_lte_service_status_true_service_status

a placeholder for the output QmiNasServiceStatus, or NULL if not required.

 

value_lte_service_status_preferred_data_path

a placeholder for the output gboolean, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.0

+
+
+
+

qmi_message_nas_get_system_info_output_get_wcdma_service_status ()

+
gboolean
+qmi_message_nas_get_system_info_output_get_wcdma_service_status
+                               (QmiMessageNasGetSystemInfoOutput *self,
+                                QmiNasServiceStatus *value_wcdma_service_status_service_status,
+                                QmiNasServiceStatus *value_wcdma_service_status_true_service_status,
+                                gboolean *value_wcdma_service_status_preferred_data_path,
+                                GError **error);
+

Get the 'WCDMA Service Status' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + + + + + + + + + + + +

self

a QmiMessageNasGetSystemInfoOutput.

 

value_wcdma_service_status_service_status

a placeholder for the output QmiNasServiceStatus, or NULL if not required.

 

value_wcdma_service_status_true_service_status

a placeholder for the output QmiNasServiceStatus, or NULL if not required.

 

value_wcdma_service_status_preferred_data_path

a placeholder for the output gboolean, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.0

+
+
+
+

qmi_message_nas_get_system_info_output_get_gsm_service_status ()

+
gboolean
+qmi_message_nas_get_system_info_output_get_gsm_service_status
+                               (QmiMessageNasGetSystemInfoOutput *self,
+                                QmiNasServiceStatus *value_gsm_service_status_service_status,
+                                QmiNasServiceStatus *value_gsm_service_status_true_service_status,
+                                gboolean *value_gsm_service_status_preferred_data_path,
+                                GError **error);
+

Get the 'GSM Service Status' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + + + + + + + + + + + +

self

a QmiMessageNasGetSystemInfoOutput.

 

value_gsm_service_status_service_status

a placeholder for the output QmiNasServiceStatus, or NULL if not required.

 

value_gsm_service_status_true_service_status

a placeholder for the output QmiNasServiceStatus, or NULL if not required.

 

value_gsm_service_status_preferred_data_path

a placeholder for the output gboolean, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.0

+
+
+
+

qmi_message_nas_get_system_info_output_get_hdr_service_status ()

+
gboolean
+qmi_message_nas_get_system_info_output_get_hdr_service_status
+                               (QmiMessageNasGetSystemInfoOutput *self,
+                                QmiNasServiceStatus *value_hdr_service_status_service_status,
+                                gboolean *value_hdr_service_status_preferred_data_path,
+                                GError **error);
+

Get the 'HDR Service Status' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + + + + + + +

self

a QmiMessageNasGetSystemInfoOutput.

 

value_hdr_service_status_service_status

a placeholder for the output QmiNasServiceStatus, or NULL if not required.

 

value_hdr_service_status_preferred_data_path

a placeholder for the output gboolean, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.0

+
+
+
+

qmi_message_nas_get_system_info_output_get_cdma_service_status ()

+
gboolean
+qmi_message_nas_get_system_info_output_get_cdma_service_status
+                               (QmiMessageNasGetSystemInfoOutput *self,
+                                QmiNasServiceStatus *value_cdma_service_status_service_status,
+                                gboolean *value_cdma_service_status_preferred_data_path,
+                                GError **error);
+

Get the 'CDMA Service Status' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + + + + + + +

self

a QmiMessageNasGetSystemInfoOutput.

 

value_cdma_service_status_service_status

a placeholder for the output QmiNasServiceStatus, or NULL if not required.

 

value_cdma_service_status_preferred_data_path

a placeholder for the output gboolean, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.0

+
+
+
+

qmi_message_nas_get_system_info_output_get_result ()

+
gboolean
+qmi_message_nas_get_system_info_output_get_result
+                               (QmiMessageNasGetSystemInfoOutput *self,
+                                GError **error);
+

Get the result of the QMI operation.

+
+

Parameters

+
+++++ + + + + + + + + + + + + +

self

a QmiMessageNasGetSystemInfoOutput.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the QMI operation succeeded, FALSE if error +is set.

+
+

Since: 1.0

+
+
+
+

qmi_client_nas_get_system_info ()

+
void
+qmi_client_nas_get_system_info (QmiClientNas *self,
+                                gpointer unused,
+                                guint timeout,
+                                GCancellable *cancellable,
+                                GAsyncReadyCallback callback,
+                                gpointer user_data);
+

Asynchronously sends a Get System Info request to the device.

+

When the operation is finished, callback + will be invoked in the thread-default main loop of the thread you are calling this method from.

+

You can then call qmi_client_nas_get_system_info_finish() to get the result of the operation.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

self

a QmiClientNas.

 

unused

NULL. This message doesn't have any input bundle.

 

timeout

maximum time to wait for the method to complete, in seconds.

 

cancellable

a GCancellable or NULL.

 

callback

a GAsyncReadyCallback to call when the request is satisfied.

 

user_data

user data to pass to callback +.

 
+
+

Since: 1.0

+
+
+
+

qmi_client_nas_get_system_info_finish ()

+
QmiMessageNasGetSystemInfoOutput *
+qmi_client_nas_get_system_info_finish (QmiClientNas *self,
+                                       GAsyncResult *res,
+                                       GError **error);
+

Finishes an async operation started with qmi_client_nas_get_system_info().

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiClientNas.

 

res

the GAsyncResult obtained from the GAsyncReadyCallback passed to qmi_client_nas_get_system_info().

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

a QmiMessageNasGetSystemInfoOutput, or NULL if error +is set. The returned value should be freed with qmi_message_nas_get_system_info_output_unref().

+
+

Since: 1.0

+
+
+
+

Types and Values

+
+

QmiMessageNasGetSystemInfoOutput

+
typedef struct _QmiMessageNasGetSystemInfoOutput QmiMessageNasGetSystemInfoOutput;
+

The QmiMessageNasGetSystemInfoOutput structure contains private data and should only be accessed +using the provided API.

+

Since: 1.0

+
+
+
+ + + \ No newline at end of file diff -Nru libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-NAS-Get-System-Selection-Preference.html libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-NAS-Get-System-Selection-Preference.html --- libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-NAS-Get-System-Selection-Preference.html 2017-03-22 12:28:28.000000000 +0100 +++ libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-NAS-Get-System-Selection-Preference.html 1970-01-01 01:00:00.000000000 +0100 @@ -1,894 +0,0 @@ - - - - -NAS Get System Selection Preference: libqmi-glib Reference Manual - - - - - - - - - - - - - - - - -
-
-
- - -
-

NAS Get System Selection Preference

-

NAS Get System Selection Preference

-
-
-

Functions

-
---- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
-QmiMessageNasGetSystemSelectionPreferenceOutput * - -qmi_message_nas_get_system_selection_preference_output_ref () -
-void - -qmi_message_nas_get_system_selection_preference_output_unref () -
-gboolean - -qmi_message_nas_get_system_selection_preference_output_get_manual_network_selection () -
-gboolean - -qmi_message_nas_get_system_selection_preference_output_get_td_scdma_band_preference () -
-gboolean - -qmi_message_nas_get_system_selection_preference_output_get_gsm_wcdma_acquisition_order_preference () -
-gboolean - -qmi_message_nas_get_system_selection_preference_output_get_service_domain_preference () -
-gboolean - -qmi_message_nas_get_system_selection_preference_output_get_network_selection_preference () -
-gboolean - -qmi_message_nas_get_system_selection_preference_output_get_lte_band_preference () -
-gboolean - -qmi_message_nas_get_system_selection_preference_output_get_roaming_preference () -
-gboolean - -qmi_message_nas_get_system_selection_preference_output_get_cdma_prl_preference () -
-gboolean - -qmi_message_nas_get_system_selection_preference_output_get_band_preference () -
-gboolean - -qmi_message_nas_get_system_selection_preference_output_get_mode_preference () -
-gboolean - -qmi_message_nas_get_system_selection_preference_output_get_emergency_mode () -
-gboolean - -qmi_message_nas_get_system_selection_preference_output_get_result () -
-void - -qmi_client_nas_get_system_selection_preference () -
-QmiMessageNasGetSystemSelectionPreferenceOutput * - -qmi_client_nas_get_system_selection_preference_finish () -
-
-
-

Types and Values

- -
-
-

Object Hierarchy

-
    GBoxed
-    ╰── QmiMessageNasGetSystemSelectionPreferenceOutput
-
-
-
-

Description

-
-
-

Functions

-
-

qmi_message_nas_get_system_selection_preference_output_ref ()

-
QmiMessageNasGetSystemSelectionPreferenceOutput *
-qmi_message_nas_get_system_selection_preference_output_ref
-                               (QmiMessageNasGetSystemSelectionPreferenceOutput *self);
-

Atomically increments the reference count of self - by one.

-
-

Parameters

- -
-
-

Returns

-

the new reference to self -.

-
-

Since: 1.0

-
-
-
-

qmi_message_nas_get_system_selection_preference_output_unref ()

-
void
-qmi_message_nas_get_system_selection_preference_output_unref
-                               (QmiMessageNasGetSystemSelectionPreferenceOutput *self);
-

Atomically decrements the reference count of self - by one. -If the reference count drops to 0, self - is completely disposed.

-
-

Parameters

- -
-

Since: 1.0

-
-
-
-

qmi_message_nas_get_system_selection_preference_output_get_manual_network_selection ()

-
gboolean
-qmi_message_nas_get_system_selection_preference_output_get_manual_network_selection
-                               (QmiMessageNasGetSystemSelectionPreferenceOutput *self,
-                                guint16 *value_manual_network_selection_mcc,
-                                guint16 *value_manual_network_selection_mnc,
-                                gboolean *value_manual_network_selection_includes_pcs_digit,
-                                GError **error);
-

Get the 'Manual Network Selection' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - - - - - - - - - - - -

self

a QmiMessageNasGetSystemSelectionPreferenceOutput.

 

value_manual_network_selection_mcc

a placeholder for the output guint16, or NULL if not required.

 

value_manual_network_selection_mnc

a placeholder for the output guint16, or NULL if not required.

 

value_manual_network_selection_includes_pcs_digit

a placeholder for the output gboolean, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.0

-
-
-
-

qmi_message_nas_get_system_selection_preference_output_get_td_scdma_band_preference ()

-
gboolean
-qmi_message_nas_get_system_selection_preference_output_get_td_scdma_band_preference
-                               (QmiMessageNasGetSystemSelectionPreferenceOutput *self,
-                                QmiNasTdScdmaBandPreference *value_td_scdma_band_preference,
-                                GError **error);
-

Get the 'TD SCDMA Band Preference' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessageNasGetSystemSelectionPreferenceOutput.

 

value_td_scdma_band_preference

a placeholder for the output QmiNasTdScdmaBandPreference, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.0

-
-
-
-

qmi_message_nas_get_system_selection_preference_output_get_gsm_wcdma_acquisition_order_preference ()

-
gboolean
-qmi_message_nas_get_system_selection_preference_output_get_gsm_wcdma_acquisition_order_preference
-                               (QmiMessageNasGetSystemSelectionPreferenceOutput *self,
-                                QmiNasGsmWcdmaAcquisitionOrderPreference *value_gsm_wcdma_acquisition_order_preference,
-                                GError **error);
-

Get the 'GSM WCDMA Acquisition Order Preference' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessageNasGetSystemSelectionPreferenceOutput.

 

value_gsm_wcdma_acquisition_order_preference

a placeholder for the output QmiNasGsmWcdmaAcquisitionOrderPreference, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.0

-
-
-
-

qmi_message_nas_get_system_selection_preference_output_get_service_domain_preference ()

-
gboolean
-qmi_message_nas_get_system_selection_preference_output_get_service_domain_preference
-                               (QmiMessageNasGetSystemSelectionPreferenceOutput *self,
-                                QmiNasServiceDomainPreference *value_service_domain_preference,
-                                GError **error);
-

Get the 'Service Domain Preference' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessageNasGetSystemSelectionPreferenceOutput.

 

value_service_domain_preference

a placeholder for the output QmiNasServiceDomainPreference, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.0

-
-
-
-

qmi_message_nas_get_system_selection_preference_output_get_network_selection_preference ()

-
gboolean
-qmi_message_nas_get_system_selection_preference_output_get_network_selection_preference
-                               (QmiMessageNasGetSystemSelectionPreferenceOutput *self,
-                                QmiNasNetworkSelectionPreference *value_network_selection_preference,
-                                GError **error);
-

Get the 'Network Selection Preference' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessageNasGetSystemSelectionPreferenceOutput.

 

value_network_selection_preference

a placeholder for the output QmiNasNetworkSelectionPreference, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.0

-
-
-
-

qmi_message_nas_get_system_selection_preference_output_get_lte_band_preference ()

-
gboolean
-qmi_message_nas_get_system_selection_preference_output_get_lte_band_preference
-                               (QmiMessageNasGetSystemSelectionPreferenceOutput *self,
-                                QmiNasLteBandPreference *value_lte_band_preference,
-                                GError **error);
-

Get the 'LTE Band Preference' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessageNasGetSystemSelectionPreferenceOutput.

 

value_lte_band_preference

a placeholder for the output QmiNasLteBandPreference, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.0

-
-
-
-

qmi_message_nas_get_system_selection_preference_output_get_roaming_preference ()

-
gboolean
-qmi_message_nas_get_system_selection_preference_output_get_roaming_preference
-                               (QmiMessageNasGetSystemSelectionPreferenceOutput *self,
-                                QmiNasRoamingPreference *value_roaming_preference,
-                                GError **error);
-

Get the 'Roaming Preference' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessageNasGetSystemSelectionPreferenceOutput.

 

value_roaming_preference

a placeholder for the output QmiNasRoamingPreference, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.0

-
-
-
-

qmi_message_nas_get_system_selection_preference_output_get_cdma_prl_preference ()

-
gboolean
-qmi_message_nas_get_system_selection_preference_output_get_cdma_prl_preference
-                               (QmiMessageNasGetSystemSelectionPreferenceOutput *self,
-                                QmiNasCdmaPrlPreference *value_cdma_prl_preference,
-                                GError **error);
-

Get the 'CDMA PRL Preference' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessageNasGetSystemSelectionPreferenceOutput.

 

value_cdma_prl_preference

a placeholder for the output QmiNasCdmaPrlPreference, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.0

-
-
-
-

qmi_message_nas_get_system_selection_preference_output_get_band_preference ()

-
gboolean
-qmi_message_nas_get_system_selection_preference_output_get_band_preference
-                               (QmiMessageNasGetSystemSelectionPreferenceOutput *self,
-                                QmiNasBandPreference *value_band_preference,
-                                GError **error);
-

Get the 'Band Preference' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessageNasGetSystemSelectionPreferenceOutput.

 

value_band_preference

a placeholder for the output QmiNasBandPreference, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.0

-
-
-
-

qmi_message_nas_get_system_selection_preference_output_get_mode_preference ()

-
gboolean
-qmi_message_nas_get_system_selection_preference_output_get_mode_preference
-                               (QmiMessageNasGetSystemSelectionPreferenceOutput *self,
-                                QmiNasRatModePreference *value_mode_preference,
-                                GError **error);
-

Get the 'Mode Preference' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessageNasGetSystemSelectionPreferenceOutput.

 

value_mode_preference

a placeholder for the output QmiNasRatModePreference, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.0

-
-
-
-

qmi_message_nas_get_system_selection_preference_output_get_emergency_mode ()

-
gboolean
-qmi_message_nas_get_system_selection_preference_output_get_emergency_mode
-                               (QmiMessageNasGetSystemSelectionPreferenceOutput *self,
-                                gboolean *value_emergency_mode,
-                                GError **error);
-

Get the 'Emergency mode' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessageNasGetSystemSelectionPreferenceOutput.

 

value_emergency_mode

a placeholder for the output gboolean, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.0

-
-
-
-

qmi_message_nas_get_system_selection_preference_output_get_result ()

-
gboolean
-qmi_message_nas_get_system_selection_preference_output_get_result
-                               (QmiMessageNasGetSystemSelectionPreferenceOutput *self,
-                                GError **error);
-

Get the result of the QMI operation.

-
-

Parameters

-
----- - - - - - - - - - - - - -

self

a QmiMessageNasGetSystemSelectionPreferenceOutput.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the QMI operation succeeded, FALSE if error -is set.

-
-

Since: 1.0

-
-
-
-

qmi_client_nas_get_system_selection_preference ()

-
void
-qmi_client_nas_get_system_selection_preference
-                               (QmiClientNas *self,
-                                gpointer unused,
-                                guint timeout,
-                                GCancellable *cancellable,
-                                GAsyncReadyCallback callback,
-                                gpointer user_data);
-

Asynchronously sends a Get System Selection Preference request to the device.

-

When the operation is finished, callback - will be invoked in the thread-default main loop of the thread you are calling this method from.

-

You can then call qmi_client_nas_get_system_selection_preference_finish() to get the result of the operation.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

self

a QmiClientNas.

 

unused

NULL. This message doesn't have any input bundle.

 

timeout

maximum time to wait for the method to complete, in seconds.

 

cancellable

a GCancellable or NULL.

 

callback

a GAsyncReadyCallback to call when the request is satisfied.

 

user_data

user data to pass to callback -.

 
-
-

Since: 1.0

-
-
-
-

qmi_client_nas_get_system_selection_preference_finish ()

-
QmiMessageNasGetSystemSelectionPreferenceOutput *
-qmi_client_nas_get_system_selection_preference_finish
-                               (QmiClientNas *self,
-                                GAsyncResult *res,
-                                GError **error);
-

Finishes an async operation started with qmi_client_nas_get_system_selection_preference().

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiClientNas.

 

res

the GAsyncResult obtained from the GAsyncReadyCallback passed to qmi_client_nas_get_system_selection_preference().

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

a QmiMessageNasGetSystemSelectionPreferenceOutput, or NULL if error -is set. The returned value should be freed with qmi_message_nas_get_system_selection_preference_output_unref().

-
-

Since: 1.0

-
-
-
-

Types and Values

-
-

QmiMessageNasGetSystemSelectionPreferenceOutput

-
typedef struct _QmiMessageNasGetSystemSelectionPreferenceOutput QmiMessageNasGetSystemSelectionPreferenceOutput;
-

The QmiMessageNasGetSystemSelectionPreferenceOutput structure contains private data and should only be accessed -using the provided API.

-

Since: 1.0

-
-
-
- - - \ No newline at end of file diff -Nru libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-NAS-Get-System-Selection-Preference-request.html libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-NAS-Get-System-Selection-Preference-request.html --- libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-NAS-Get-System-Selection-Preference-request.html 1970-01-01 01:00:00.000000000 +0100 +++ libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-NAS-Get-System-Selection-Preference-request.html 2019-01-08 15:19:01.000000000 +0100 @@ -0,0 +1,1015 @@ + + + + +NAS Get System Selection Preference request: libqmi-glib Reference Manual + + + + + + + + + + + + + + + + +
+
+
+ + +
+

NAS Get System Selection Preference request

+

NAS Get System Selection Preference request

+
+
+

Functions

+
++++ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+QmiMessageNasGetSystemSelectionPreferenceOutput * + +qmi_message_nas_get_system_selection_preference_output_ref () +
+void + +qmi_message_nas_get_system_selection_preference_output_unref () +
+gboolean + +qmi_message_nas_get_system_selection_preference_output_get_extended_lte_band_preference () +
+gboolean + +qmi_message_nas_get_system_selection_preference_output_get_manual_network_selection () +
+gboolean + +qmi_message_nas_get_system_selection_preference_output_get_acquisition_order_preference () +
+gboolean + +qmi_message_nas_get_system_selection_preference_output_get_td_scdma_band_preference () +
+gboolean + +qmi_message_nas_get_system_selection_preference_output_get_gsm_wcdma_acquisition_order_preference () +
+gboolean + +qmi_message_nas_get_system_selection_preference_output_get_service_domain_preference () +
+gboolean + +qmi_message_nas_get_system_selection_preference_output_get_network_selection_preference () +
+gboolean + +qmi_message_nas_get_system_selection_preference_output_get_lte_band_preference () +
+gboolean + +qmi_message_nas_get_system_selection_preference_output_get_roaming_preference () +
+gboolean + +qmi_message_nas_get_system_selection_preference_output_get_cdma_prl_preference () +
+gboolean + +qmi_message_nas_get_system_selection_preference_output_get_band_preference () +
+gboolean + +qmi_message_nas_get_system_selection_preference_output_get_mode_preference () +
+gboolean + +qmi_message_nas_get_system_selection_preference_output_get_emergency_mode () +
+gboolean + +qmi_message_nas_get_system_selection_preference_output_get_result () +
+void + +qmi_client_nas_get_system_selection_preference () +
+QmiMessageNasGetSystemSelectionPreferenceOutput * + +qmi_client_nas_get_system_selection_preference_finish () +
+
+
+

Types and Values

+ +
+
+

Object Hierarchy

+
    GBoxed
+    ╰── QmiMessageNasGetSystemSelectionPreferenceOutput
+
+
+
+

Description

+
+
+

Functions

+
+

qmi_message_nas_get_system_selection_preference_output_ref ()

+
QmiMessageNasGetSystemSelectionPreferenceOutput *
+qmi_message_nas_get_system_selection_preference_output_ref
+                               (QmiMessageNasGetSystemSelectionPreferenceOutput *self);
+

Atomically increments the reference count of self + by one.

+
+

Parameters

+ +
+
+

Returns

+

the new reference to self +.

+
+

Since: 1.0

+
+
+
+

qmi_message_nas_get_system_selection_preference_output_unref ()

+
void
+qmi_message_nas_get_system_selection_preference_output_unref
+                               (QmiMessageNasGetSystemSelectionPreferenceOutput *self);
+

Atomically decrements the reference count of self + by one. +If the reference count drops to 0, self + is completely disposed.

+
+

Parameters

+ +
+

Since: 1.0

+
+
+
+

qmi_message_nas_get_system_selection_preference_output_get_extended_lte_band_preference ()

+
gboolean
+qmi_message_nas_get_system_selection_preference_output_get_extended_lte_band_preference
+                               (QmiMessageNasGetSystemSelectionPreferenceOutput *self,
+                                guint64 *value_extended_lte_band_preference_mask_low,
+                                guint64 *value_extended_lte_band_preference_mask_mid_low,
+                                guint64 *value_extended_lte_band_preference_mask_mid_high,
+                                guint64 *value_extended_lte_band_preference_mask_high,
+                                GError **error);
+

Get the 'Extended LTE Band Preference' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

self

a QmiMessageNasGetSystemSelectionPreferenceOutput.

 

value_extended_lte_band_preference_mask_low

a placeholder for the output guint64, or NULL if not required.

 

value_extended_lte_band_preference_mask_mid_low

a placeholder for the output guint64, or NULL if not required.

 

value_extended_lte_band_preference_mask_mid_high

a placeholder for the output guint64, or NULL if not required.

 

value_extended_lte_band_preference_mask_high

a placeholder for the output guint64, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.20

+
+
+
+

qmi_message_nas_get_system_selection_preference_output_get_manual_network_selection ()

+
gboolean
+qmi_message_nas_get_system_selection_preference_output_get_manual_network_selection
+                               (QmiMessageNasGetSystemSelectionPreferenceOutput *self,
+                                guint16 *value_manual_network_selection_mcc,
+                                guint16 *value_manual_network_selection_mnc,
+                                gboolean *value_manual_network_selection_includes_pcs_digit,
+                                GError **error);
+

Get the 'Manual Network Selection' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + + + + + + + + + + + +

self

a QmiMessageNasGetSystemSelectionPreferenceOutput.

 

value_manual_network_selection_mcc

a placeholder for the output guint16, or NULL if not required.

 

value_manual_network_selection_mnc

a placeholder for the output guint16, or NULL if not required.

 

value_manual_network_selection_includes_pcs_digit

a placeholder for the output gboolean, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.0

+
+
+
+

qmi_message_nas_get_system_selection_preference_output_get_acquisition_order_preference ()

+
gboolean
+qmi_message_nas_get_system_selection_preference_output_get_acquisition_order_preference
+                               (QmiMessageNasGetSystemSelectionPreferenceOutput *self,
+                                GArray **value_acquisition_order_preference,
+                                GError **error);
+

Get the 'Acquisition Order Preference' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageNasGetSystemSelectionPreferenceOutput.

 

value_acquisition_order_preference

a placeholder for the output GArray of QmiNasRadioInterface elements, or NULL if not required. Do not free it, it is owned by self +.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.22

+
+
+
+

qmi_message_nas_get_system_selection_preference_output_get_td_scdma_band_preference ()

+
gboolean
+qmi_message_nas_get_system_selection_preference_output_get_td_scdma_band_preference
+                               (QmiMessageNasGetSystemSelectionPreferenceOutput *self,
+                                QmiNasTdScdmaBandPreference *value_td_scdma_band_preference,
+                                GError **error);
+

Get the 'TD SCDMA Band Preference' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageNasGetSystemSelectionPreferenceOutput.

 

value_td_scdma_band_preference

a placeholder for the output QmiNasTdScdmaBandPreference, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.0

+
+
+
+

qmi_message_nas_get_system_selection_preference_output_get_gsm_wcdma_acquisition_order_preference ()

+
gboolean
+qmi_message_nas_get_system_selection_preference_output_get_gsm_wcdma_acquisition_order_preference
+                               (QmiMessageNasGetSystemSelectionPreferenceOutput *self,
+                                QmiNasGsmWcdmaAcquisitionOrderPreference *value_gsm_wcdma_acquisition_order_preference,
+                                GError **error);
+

Get the 'GSM WCDMA Acquisition Order Preference' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageNasGetSystemSelectionPreferenceOutput.

 

value_gsm_wcdma_acquisition_order_preference

a placeholder for the output QmiNasGsmWcdmaAcquisitionOrderPreference, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.0

+
+
+
+

qmi_message_nas_get_system_selection_preference_output_get_service_domain_preference ()

+
gboolean
+qmi_message_nas_get_system_selection_preference_output_get_service_domain_preference
+                               (QmiMessageNasGetSystemSelectionPreferenceOutput *self,
+                                QmiNasServiceDomainPreference *value_service_domain_preference,
+                                GError **error);
+

Get the 'Service Domain Preference' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageNasGetSystemSelectionPreferenceOutput.

 

value_service_domain_preference

a placeholder for the output QmiNasServiceDomainPreference, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.0

+
+
+
+

qmi_message_nas_get_system_selection_preference_output_get_network_selection_preference ()

+
gboolean
+qmi_message_nas_get_system_selection_preference_output_get_network_selection_preference
+                               (QmiMessageNasGetSystemSelectionPreferenceOutput *self,
+                                QmiNasNetworkSelectionPreference *value_network_selection_preference,
+                                GError **error);
+

Get the 'Network Selection Preference' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageNasGetSystemSelectionPreferenceOutput.

 

value_network_selection_preference

a placeholder for the output QmiNasNetworkSelectionPreference, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.0

+
+
+
+

qmi_message_nas_get_system_selection_preference_output_get_lte_band_preference ()

+
gboolean
+qmi_message_nas_get_system_selection_preference_output_get_lte_band_preference
+                               (QmiMessageNasGetSystemSelectionPreferenceOutput *self,
+                                QmiNasLteBandPreference *value_lte_band_preference,
+                                GError **error);
+

Get the 'LTE Band Preference' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageNasGetSystemSelectionPreferenceOutput.

 

value_lte_band_preference

a placeholder for the output QmiNasLteBandPreference, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.0

+
+
+
+

qmi_message_nas_get_system_selection_preference_output_get_roaming_preference ()

+
gboolean
+qmi_message_nas_get_system_selection_preference_output_get_roaming_preference
+                               (QmiMessageNasGetSystemSelectionPreferenceOutput *self,
+                                QmiNasRoamingPreference *value_roaming_preference,
+                                GError **error);
+

Get the 'Roaming Preference' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageNasGetSystemSelectionPreferenceOutput.

 

value_roaming_preference

a placeholder for the output QmiNasRoamingPreference, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.0

+
+
+
+

qmi_message_nas_get_system_selection_preference_output_get_cdma_prl_preference ()

+
gboolean
+qmi_message_nas_get_system_selection_preference_output_get_cdma_prl_preference
+                               (QmiMessageNasGetSystemSelectionPreferenceOutput *self,
+                                QmiNasCdmaPrlPreference *value_cdma_prl_preference,
+                                GError **error);
+

Get the 'CDMA PRL Preference' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageNasGetSystemSelectionPreferenceOutput.

 

value_cdma_prl_preference

a placeholder for the output QmiNasCdmaPrlPreference, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.0

+
+
+
+

qmi_message_nas_get_system_selection_preference_output_get_band_preference ()

+
gboolean
+qmi_message_nas_get_system_selection_preference_output_get_band_preference
+                               (QmiMessageNasGetSystemSelectionPreferenceOutput *self,
+                                QmiNasBandPreference *value_band_preference,
+                                GError **error);
+

Get the 'Band Preference' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageNasGetSystemSelectionPreferenceOutput.

 

value_band_preference

a placeholder for the output QmiNasBandPreference, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.0

+
+
+
+

qmi_message_nas_get_system_selection_preference_output_get_mode_preference ()

+
gboolean
+qmi_message_nas_get_system_selection_preference_output_get_mode_preference
+                               (QmiMessageNasGetSystemSelectionPreferenceOutput *self,
+                                QmiNasRatModePreference *value_mode_preference,
+                                GError **error);
+

Get the 'Mode Preference' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageNasGetSystemSelectionPreferenceOutput.

 

value_mode_preference

a placeholder for the output QmiNasRatModePreference, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.0

+
+
+
+

qmi_message_nas_get_system_selection_preference_output_get_emergency_mode ()

+
gboolean
+qmi_message_nas_get_system_selection_preference_output_get_emergency_mode
+                               (QmiMessageNasGetSystemSelectionPreferenceOutput *self,
+                                gboolean *value_emergency_mode,
+                                GError **error);
+

Get the 'Emergency mode' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageNasGetSystemSelectionPreferenceOutput.

 

value_emergency_mode

a placeholder for the output gboolean, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.0

+
+
+
+

qmi_message_nas_get_system_selection_preference_output_get_result ()

+
gboolean
+qmi_message_nas_get_system_selection_preference_output_get_result
+                               (QmiMessageNasGetSystemSelectionPreferenceOutput *self,
+                                GError **error);
+

Get the result of the QMI operation.

+
+

Parameters

+
+++++ + + + + + + + + + + + + +

self

a QmiMessageNasGetSystemSelectionPreferenceOutput.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the QMI operation succeeded, FALSE if error +is set.

+
+

Since: 1.0

+
+
+
+

qmi_client_nas_get_system_selection_preference ()

+
void
+qmi_client_nas_get_system_selection_preference
+                               (QmiClientNas *self,
+                                gpointer unused,
+                                guint timeout,
+                                GCancellable *cancellable,
+                                GAsyncReadyCallback callback,
+                                gpointer user_data);
+

Asynchronously sends a Get System Selection Preference request to the device.

+

When the operation is finished, callback + will be invoked in the thread-default main loop of the thread you are calling this method from.

+

You can then call qmi_client_nas_get_system_selection_preference_finish() to get the result of the operation.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

self

a QmiClientNas.

 

unused

NULL. This message doesn't have any input bundle.

 

timeout

maximum time to wait for the method to complete, in seconds.

 

cancellable

a GCancellable or NULL.

 

callback

a GAsyncReadyCallback to call when the request is satisfied.

 

user_data

user data to pass to callback +.

 
+
+

Since: 1.0

+
+
+
+

qmi_client_nas_get_system_selection_preference_finish ()

+
QmiMessageNasGetSystemSelectionPreferenceOutput *
+qmi_client_nas_get_system_selection_preference_finish
+                               (QmiClientNas *self,
+                                GAsyncResult *res,
+                                GError **error);
+

Finishes an async operation started with qmi_client_nas_get_system_selection_preference().

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiClientNas.

 

res

the GAsyncResult obtained from the GAsyncReadyCallback passed to qmi_client_nas_get_system_selection_preference().

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

a QmiMessageNasGetSystemSelectionPreferenceOutput, or NULL if error +is set. The returned value should be freed with qmi_message_nas_get_system_selection_preference_output_unref().

+
+

Since: 1.0

+
+
+
+

Types and Values

+
+

QmiMessageNasGetSystemSelectionPreferenceOutput

+
typedef struct _QmiMessageNasGetSystemSelectionPreferenceOutput QmiMessageNasGetSystemSelectionPreferenceOutput;
+

The QmiMessageNasGetSystemSelectionPreferenceOutput structure contains private data and should only be accessed +using the provided API.

+

Since: 1.0

+
+
+
+ + + \ No newline at end of file diff -Nru libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-NAS-Get-Technology-Preference.html libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-NAS-Get-Technology-Preference.html --- libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-NAS-Get-Technology-Preference.html 2017-03-22 12:28:29.000000000 +0100 +++ libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-NAS-Get-Technology-Preference.html 1970-01-01 01:00:00.000000000 +0100 @@ -1,429 +0,0 @@ - - - - -NAS Get Technology Preference: libqmi-glib Reference Manual - - - - - - - - - - - - - - - - -
-
-
- - -
-

NAS Get Technology Preference

-

NAS Get Technology Preference

-
- -
-

Types and Values

- -
-
-

Object Hierarchy

-
    GBoxed
-    ╰── QmiMessageNasGetTechnologyPreferenceOutput
-
-
-
-

Description

-
-
-

Functions

-
-

qmi_message_nas_get_technology_preference_output_ref ()

-
QmiMessageNasGetTechnologyPreferenceOutput *
-qmi_message_nas_get_technology_preference_output_ref
-                               (QmiMessageNasGetTechnologyPreferenceOutput *self);
-

Atomically increments the reference count of self - by one.

-
-

Parameters

-
----- - - - - - -

self

a QmiMessageNasGetTechnologyPreferenceOutput.

 
-
-
-

Returns

-

the new reference to self -.

-
-

Since: 1.0

-
-
-
-

qmi_message_nas_get_technology_preference_output_unref ()

-
void
-qmi_message_nas_get_technology_preference_output_unref
-                               (QmiMessageNasGetTechnologyPreferenceOutput *self);
-

Atomically decrements the reference count of self - by one. -If the reference count drops to 0, self - is completely disposed.

-
-

Parameters

-
----- - - - - - -

self

a QmiMessageNasGetTechnologyPreferenceOutput.

 
-
-

Since: 1.0

-
-
-
-

qmi_message_nas_get_technology_preference_output_get_persistent ()

-
gboolean
-qmi_message_nas_get_technology_preference_output_get_persistent
-                               (QmiMessageNasGetTechnologyPreferenceOutput *self,
-                                QmiNasRadioTechnologyPreference *value_persistent,
-                                GError **error);
-

Get the 'Persistent' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessageNasGetTechnologyPreferenceOutput.

 

value_persistent

a placeholder for the output QmiNasRadioTechnologyPreference, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.0

-
-
-
-

qmi_message_nas_get_technology_preference_output_get_result ()

-
gboolean
-qmi_message_nas_get_technology_preference_output_get_result
-                               (QmiMessageNasGetTechnologyPreferenceOutput *self,
-                                GError **error);
-

Get the result of the QMI operation.

-
-

Parameters

-
----- - - - - - - - - - - - - -

self

a QmiMessageNasGetTechnologyPreferenceOutput.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the QMI operation succeeded, FALSE if error -is set.

-
-

Since: 1.0

-
-
-
-

qmi_message_nas_get_technology_preference_output_get_active ()

-
gboolean
-qmi_message_nas_get_technology_preference_output_get_active
-                               (QmiMessageNasGetTechnologyPreferenceOutput *self,
-                                QmiNasRadioTechnologyPreference *value_active_technology_preference,
-                                QmiNasPreferenceDuration *value_active_technology_preference_duration,
-                                GError **error);
-

Get the 'Active' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - - - - - - -

self

a QmiMessageNasGetTechnologyPreferenceOutput.

 

value_active_technology_preference

a placeholder for the output QmiNasRadioTechnologyPreference, or NULL if not required.

 

value_active_technology_preference_duration

a placeholder for the output QmiNasPreferenceDuration, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.0

-
-
-
-

qmi_client_nas_get_technology_preference ()

-
void
-qmi_client_nas_get_technology_preference
-                               (QmiClientNas *self,
-                                gpointer unused,
-                                guint timeout,
-                                GCancellable *cancellable,
-                                GAsyncReadyCallback callback,
-                                gpointer user_data);
-

Asynchronously sends a Get Technology Preference request to the device.

-

When the operation is finished, callback - will be invoked in the thread-default main loop of the thread you are calling this method from.

-

You can then call qmi_client_nas_get_technology_preference_finish() to get the result of the operation.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

self

a QmiClientNas.

 

unused

NULL. This message doesn't have any input bundle.

 

timeout

maximum time to wait for the method to complete, in seconds.

 

cancellable

a GCancellable or NULL.

 

callback

a GAsyncReadyCallback to call when the request is satisfied.

 

user_data

user data to pass to callback -.

 
-
-

Since: 1.0

-
-
-
-

qmi_client_nas_get_technology_preference_finish ()

-
QmiMessageNasGetTechnologyPreferenceOutput *
-qmi_client_nas_get_technology_preference_finish
-                               (QmiClientNas *self,
-                                GAsyncResult *res,
-                                GError **error);
-

Finishes an async operation started with qmi_client_nas_get_technology_preference().

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiClientNas.

 

res

the GAsyncResult obtained from the GAsyncReadyCallback passed to qmi_client_nas_get_technology_preference().

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

a QmiMessageNasGetTechnologyPreferenceOutput, or NULL if error -is set. The returned value should be freed with qmi_message_nas_get_technology_preference_output_unref().

-
-

Since: 1.0

-
-
-
-

Types and Values

-
-

QmiMessageNasGetTechnologyPreferenceOutput

-
typedef struct _QmiMessageNasGetTechnologyPreferenceOutput QmiMessageNasGetTechnologyPreferenceOutput;
-

The QmiMessageNasGetTechnologyPreferenceOutput structure contains private data and should only be accessed -using the provided API.

-

Since: 1.0

-
-
-
- - - \ No newline at end of file diff -Nru libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-NAS-Get-Technology-Preference-request.html libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-NAS-Get-Technology-Preference-request.html --- libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-NAS-Get-Technology-Preference-request.html 1970-01-01 01:00:00.000000000 +0100 +++ libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-NAS-Get-Technology-Preference-request.html 2019-01-08 15:19:01.000000000 +0100 @@ -0,0 +1,429 @@ + + + + +NAS Get Technology Preference request: libqmi-glib Reference Manual + + + + + + + + + + + + + + + + +
+
+
+ + +
+

NAS Get Technology Preference request

+

NAS Get Technology Preference request

+
+ +
+

Types and Values

+ +
+
+

Object Hierarchy

+
    GBoxed
+    ╰── QmiMessageNasGetTechnologyPreferenceOutput
+
+
+
+

Description

+
+
+

Functions

+
+

qmi_message_nas_get_technology_preference_output_ref ()

+
QmiMessageNasGetTechnologyPreferenceOutput *
+qmi_message_nas_get_technology_preference_output_ref
+                               (QmiMessageNasGetTechnologyPreferenceOutput *self);
+

Atomically increments the reference count of self + by one.

+
+

Parameters

+
+++++ + + + + + +

self

a QmiMessageNasGetTechnologyPreferenceOutput.

 
+
+
+

Returns

+

the new reference to self +.

+
+

Since: 1.0

+
+
+
+

qmi_message_nas_get_technology_preference_output_unref ()

+
void
+qmi_message_nas_get_technology_preference_output_unref
+                               (QmiMessageNasGetTechnologyPreferenceOutput *self);
+

Atomically decrements the reference count of self + by one. +If the reference count drops to 0, self + is completely disposed.

+
+

Parameters

+
+++++ + + + + + +

self

a QmiMessageNasGetTechnologyPreferenceOutput.

 
+
+

Since: 1.0

+
+
+
+

qmi_message_nas_get_technology_preference_output_get_persistent ()

+
gboolean
+qmi_message_nas_get_technology_preference_output_get_persistent
+                               (QmiMessageNasGetTechnologyPreferenceOutput *self,
+                                QmiNasRadioTechnologyPreference *value_persistent,
+                                GError **error);
+

Get the 'Persistent' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageNasGetTechnologyPreferenceOutput.

 

value_persistent

a placeholder for the output QmiNasRadioTechnologyPreference, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.0

+
+
+
+

qmi_message_nas_get_technology_preference_output_get_result ()

+
gboolean
+qmi_message_nas_get_technology_preference_output_get_result
+                               (QmiMessageNasGetTechnologyPreferenceOutput *self,
+                                GError **error);
+

Get the result of the QMI operation.

+
+

Parameters

+
+++++ + + + + + + + + + + + + +

self

a QmiMessageNasGetTechnologyPreferenceOutput.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the QMI operation succeeded, FALSE if error +is set.

+
+

Since: 1.0

+
+
+
+

qmi_message_nas_get_technology_preference_output_get_active ()

+
gboolean
+qmi_message_nas_get_technology_preference_output_get_active
+                               (QmiMessageNasGetTechnologyPreferenceOutput *self,
+                                QmiNasRadioTechnologyPreference *value_active_technology_preference,
+                                QmiNasPreferenceDuration *value_active_technology_preference_duration,
+                                GError **error);
+

Get the 'Active' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + + + + + + +

self

a QmiMessageNasGetTechnologyPreferenceOutput.

 

value_active_technology_preference

a placeholder for the output QmiNasRadioTechnologyPreference, or NULL if not required.

 

value_active_technology_preference_duration

a placeholder for the output QmiNasPreferenceDuration, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.0

+
+
+
+

qmi_client_nas_get_technology_preference ()

+
void
+qmi_client_nas_get_technology_preference
+                               (QmiClientNas *self,
+                                gpointer unused,
+                                guint timeout,
+                                GCancellable *cancellable,
+                                GAsyncReadyCallback callback,
+                                gpointer user_data);
+

Asynchronously sends a Get Technology Preference request to the device.

+

When the operation is finished, callback + will be invoked in the thread-default main loop of the thread you are calling this method from.

+

You can then call qmi_client_nas_get_technology_preference_finish() to get the result of the operation.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

self

a QmiClientNas.

 

unused

NULL. This message doesn't have any input bundle.

 

timeout

maximum time to wait for the method to complete, in seconds.

 

cancellable

a GCancellable or NULL.

 

callback

a GAsyncReadyCallback to call when the request is satisfied.

 

user_data

user data to pass to callback +.

 
+
+

Since: 1.0

+
+
+
+

qmi_client_nas_get_technology_preference_finish ()

+
QmiMessageNasGetTechnologyPreferenceOutput *
+qmi_client_nas_get_technology_preference_finish
+                               (QmiClientNas *self,
+                                GAsyncResult *res,
+                                GError **error);
+

Finishes an async operation started with qmi_client_nas_get_technology_preference().

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiClientNas.

 

res

the GAsyncResult obtained from the GAsyncReadyCallback passed to qmi_client_nas_get_technology_preference().

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

a QmiMessageNasGetTechnologyPreferenceOutput, or NULL if error +is set. The returned value should be freed with qmi_message_nas_get_technology_preference_output_unref().

+
+

Since: 1.0

+
+
+
+

Types and Values

+
+

QmiMessageNasGetTechnologyPreferenceOutput

+
typedef struct _QmiMessageNasGetTechnologyPreferenceOutput QmiMessageNasGetTechnologyPreferenceOutput;
+

The QmiMessageNasGetTechnologyPreferenceOutput structure contains private data and should only be accessed +using the provided API.

+

Since: 1.0

+
+
+
+ + + \ No newline at end of file diff -Nru libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-NAS-Get-Tx-Rx-Info.html libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-NAS-Get-Tx-Rx-Info.html --- libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-NAS-Get-Tx-Rx-Info.html 2017-03-22 12:28:29.000000000 +0100 +++ libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-NAS-Get-Tx-Rx-Info.html 1970-01-01 01:00:00.000000000 +0100 @@ -1,749 +0,0 @@ - - - - -NAS Get Tx Rx Info: libqmi-glib Reference Manual - - - - - - - - - - - - - - - - -
-
-
- - -
-

NAS Get Tx Rx Info

-

NAS Get Tx Rx Info

-
- -
-

Types and Values

- -
-
-

Object Hierarchy

-
    GBoxed
-    ├── QmiMessageNasGetTxRxInfoInput
-    ╰── QmiMessageNasGetTxRxInfoOutput
-
-
-
-

Description

-
-
-

Functions

-
-

qmi_message_nas_get_tx_rx_info_input_new ()

-
QmiMessageNasGetTxRxInfoInput *
-qmi_message_nas_get_tx_rx_info_input_new
-                               (void);
-

Allocates a new QmiMessageNasGetTxRxInfoInput.

-
-

Returns

-

the newly created QmiMessageNasGetTxRxInfoInput. The returned value should be freed with qmi_message_nas_get_tx_rx_info_input_unref().

-
-

Since: 1.6

-
-
-
-

qmi_message_nas_get_tx_rx_info_input_ref ()

-
QmiMessageNasGetTxRxInfoInput *
-qmi_message_nas_get_tx_rx_info_input_ref
-                               (QmiMessageNasGetTxRxInfoInput *self);
-

Atomically increments the reference count of self - by one.

-
-

Parameters

-
----- - - - - - -

self

a QmiMessageNasGetTxRxInfoInput.

 
-
-
-

Returns

-

the new reference to self -.

-
-

Since: 1.6

-
-
-
-

qmi_message_nas_get_tx_rx_info_input_unref ()

-
void
-qmi_message_nas_get_tx_rx_info_input_unref
-                               (QmiMessageNasGetTxRxInfoInput *self);
-

Atomically decrements the reference count of self - by one. -If the reference count drops to 0, self - is completely disposed.

-
-

Parameters

-
----- - - - - - -

self

a QmiMessageNasGetTxRxInfoInput.

 
-
-

Since: 1.6

-
-
-
-

qmi_message_nas_get_tx_rx_info_input_get_radio_interface ()

-
gboolean
-qmi_message_nas_get_tx_rx_info_input_get_radio_interface
-                               (QmiMessageNasGetTxRxInfoInput *self,
-                                QmiNasRadioInterface *value_radio_interface,
-                                GError **error);
-

Get the 'Radio Interface' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessageNasGetTxRxInfoInput.

 

value_radio_interface

a placeholder for the output QmiNasRadioInterface, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.6

-
-
-
-

qmi_message_nas_get_tx_rx_info_input_set_radio_interface ()

-
gboolean
-qmi_message_nas_get_tx_rx_info_input_set_radio_interface
-                               (QmiMessageNasGetTxRxInfoInput *self,
-                                QmiNasRadioInterface value_radio_interface,
-                                GError **error);
-

Set the 'Radio Interface' field in the message.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessageNasGetTxRxInfoInput.

 

value_radio_interface

a QmiNasRadioInterface.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if value -was successfully set, FALSE otherwise.

-
-

Since: 1.6

-
-
-
-

qmi_message_nas_get_tx_rx_info_output_ref ()

-
QmiMessageNasGetTxRxInfoOutput *
-qmi_message_nas_get_tx_rx_info_output_ref
-                               (QmiMessageNasGetTxRxInfoOutput *self);
-

Atomically increments the reference count of self - by one.

-
-

Parameters

-
----- - - - - - -

self

a QmiMessageNasGetTxRxInfoOutput.

 
-
-
-

Returns

-

the new reference to self -.

-
-

Since: 1.6

-
-
-
-

qmi_message_nas_get_tx_rx_info_output_unref ()

-
void
-qmi_message_nas_get_tx_rx_info_output_unref
-                               (QmiMessageNasGetTxRxInfoOutput *self);
-

Atomically decrements the reference count of self - by one. -If the reference count drops to 0, self - is completely disposed.

-
-

Parameters

-
----- - - - - - -

self

a QmiMessageNasGetTxRxInfoOutput.

 
-
-

Since: 1.6

-
-
-
-

qmi_message_nas_get_tx_rx_info_output_get_result ()

-
gboolean
-qmi_message_nas_get_tx_rx_info_output_get_result
-                               (QmiMessageNasGetTxRxInfoOutput *self,
-                                GError **error);
-

Get the result of the QMI operation.

-
-

Parameters

-
----- - - - - - - - - - - - - -

self

a QmiMessageNasGetTxRxInfoOutput.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the QMI operation succeeded, FALSE if error -is set.

-
-

Since: 1.6

-
-
-
-

qmi_message_nas_get_tx_rx_info_output_get_rx_chain_0_info ()

-
gboolean
-qmi_message_nas_get_tx_rx_info_output_get_rx_chain_0_info
-                               (QmiMessageNasGetTxRxInfoOutput *self,
-                                gboolean *value_rx_chain_0_info_is_radio_tuned,
-                                gint32 *value_rx_chain_0_info_rx_power,
-                                gint32 *value_rx_chain_0_info_ecio,
-                                gint32 *value_rx_chain_0_info_rscp,
-                                gint32 *value_rx_chain_0_info_rsrp,
-                                guint32 *value_rx_chain_0_info_phase,
-                                GError **error);
-

Get the 'Rx Chain 0 Info' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

self

a QmiMessageNasGetTxRxInfoOutput.

 

value_rx_chain_0_info_is_radio_tuned

a placeholder for the output gboolean, or NULL if not required.

 

value_rx_chain_0_info_rx_power

a placeholder for the output gint32, or NULL if not required.

 

value_rx_chain_0_info_ecio

a placeholder for the output gint32, or NULL if not required.

 

value_rx_chain_0_info_rscp

a placeholder for the output gint32, or NULL if not required.

 

value_rx_chain_0_info_rsrp

a placeholder for the output gint32, or NULL if not required.

 

value_rx_chain_0_info_phase

a placeholder for the output guint32, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.6

-
-
-
-

qmi_message_nas_get_tx_rx_info_output_get_rx_chain_1_info ()

-
gboolean
-qmi_message_nas_get_tx_rx_info_output_get_rx_chain_1_info
-                               (QmiMessageNasGetTxRxInfoOutput *self,
-                                gboolean *value_rx_chain_1_info_is_radio_tuned,
-                                gint32 *value_rx_chain_1_info_rx_power,
-                                gint32 *value_rx_chain_1_info_ecio,
-                                gint32 *value_rx_chain_1_info_rscp,
-                                gint32 *value_rx_chain_1_info_rsrp,
-                                guint32 *value_rx_chain_1_info_phase,
-                                GError **error);
-

Get the 'Rx Chain 1 Info' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

self

a QmiMessageNasGetTxRxInfoOutput.

 

value_rx_chain_1_info_is_radio_tuned

a placeholder for the output gboolean, or NULL if not required.

 

value_rx_chain_1_info_rx_power

a placeholder for the output gint32, or NULL if not required.

 

value_rx_chain_1_info_ecio

a placeholder for the output gint32, or NULL if not required.

 

value_rx_chain_1_info_rscp

a placeholder for the output gint32, or NULL if not required.

 

value_rx_chain_1_info_rsrp

a placeholder for the output gint32, or NULL if not required.

 

value_rx_chain_1_info_phase

a placeholder for the output guint32, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.6

-
-
-
-

qmi_message_nas_get_tx_rx_info_output_get_tx_info ()

-
gboolean
-qmi_message_nas_get_tx_rx_info_output_get_tx_info
-                               (QmiMessageNasGetTxRxInfoOutput *self,
-                                gboolean *value_tx_info_is_in_traffic,
-                                gint32 *value_tx_info_tx_power,
-                                GError **error);
-

Get the 'Tx Info' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - - - - - - -

self

a QmiMessageNasGetTxRxInfoOutput.

 

value_tx_info_is_in_traffic

a placeholder for the output gboolean, or NULL if not required.

 

value_tx_info_tx_power

a placeholder for the output gint32, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.6

-
-
-
-

qmi_client_nas_get_tx_rx_info ()

-
void
-qmi_client_nas_get_tx_rx_info (QmiClientNas *self,
-                               QmiMessageNasGetTxRxInfoInput *input,
-                               guint timeout,
-                               GCancellable *cancellable,
-                               GAsyncReadyCallback callback,
-                               gpointer user_data);
-

Asynchronously sends a Get Tx Rx Info request to the device.

-

When the operation is finished, callback - will be invoked in the thread-default main loop of the thread you are calling this method from.

-

You can then call qmi_client_nas_get_tx_rx_info_finish() to get the result of the operation.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

self

a QmiClientNas.

 

input

a QmiMessageNasGetTxRxInfoInput.

 

timeout

maximum time to wait for the method to complete, in seconds.

 

cancellable

a GCancellable or NULL.

 

callback

a GAsyncReadyCallback to call when the request is satisfied.

 

user_data

user data to pass to callback -.

 
-
-

Since: 1.6

-
-
-
-

qmi_client_nas_get_tx_rx_info_finish ()

-
QmiMessageNasGetTxRxInfoOutput *
-qmi_client_nas_get_tx_rx_info_finish (QmiClientNas *self,
-                                      GAsyncResult *res,
-                                      GError **error);
-

Finishes an async operation started with qmi_client_nas_get_tx_rx_info().

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiClientNas.

 

res

the GAsyncResult obtained from the GAsyncReadyCallback passed to qmi_client_nas_get_tx_rx_info().

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

a QmiMessageNasGetTxRxInfoOutput, or NULL if error -is set. The returned value should be freed with qmi_message_nas_get_tx_rx_info_output_unref().

-
-

Since: 1.6

-
-
-
-

Types and Values

-
-

QmiMessageNasGetTxRxInfoInput

-
typedef struct _QmiMessageNasGetTxRxInfoInput QmiMessageNasGetTxRxInfoInput;
-

The QmiMessageNasGetTxRxInfoInput structure contains private data and should only be accessed -using the provided API.

-

Since: 1.6

-
-
-
-

QmiMessageNasGetTxRxInfoOutput

-
typedef struct _QmiMessageNasGetTxRxInfoOutput QmiMessageNasGetTxRxInfoOutput;
-

The QmiMessageNasGetTxRxInfoOutput structure contains private data and should only be accessed -using the provided API.

-

Since: 1.6

-
-
-
- - - \ No newline at end of file diff -Nru libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-NAS-Get-Tx-Rx-Info-request.html libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-NAS-Get-Tx-Rx-Info-request.html --- libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-NAS-Get-Tx-Rx-Info-request.html 1970-01-01 01:00:00.000000000 +0100 +++ libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-NAS-Get-Tx-Rx-Info-request.html 2019-01-08 15:19:01.000000000 +0100 @@ -0,0 +1,749 @@ + + + + +NAS Get Tx Rx Info request: libqmi-glib Reference Manual + + + + + + + + + + + + + + + + +
+
+
+ + +
+

NAS Get Tx Rx Info request

+

NAS Get Tx Rx Info request

+
+ +
+

Types and Values

+ +
+
+

Object Hierarchy

+
    GBoxed
+    ├── QmiMessageNasGetTxRxInfoInput
+    ╰── QmiMessageNasGetTxRxInfoOutput
+
+
+
+

Description

+
+
+

Functions

+
+

qmi_message_nas_get_tx_rx_info_input_new ()

+
QmiMessageNasGetTxRxInfoInput *
+qmi_message_nas_get_tx_rx_info_input_new
+                               (void);
+

Allocates a new QmiMessageNasGetTxRxInfoInput.

+
+

Returns

+

the newly created QmiMessageNasGetTxRxInfoInput. The returned value should be freed with qmi_message_nas_get_tx_rx_info_input_unref().

+
+

Since: 1.6

+
+
+
+

qmi_message_nas_get_tx_rx_info_input_ref ()

+
QmiMessageNasGetTxRxInfoInput *
+qmi_message_nas_get_tx_rx_info_input_ref
+                               (QmiMessageNasGetTxRxInfoInput *self);
+

Atomically increments the reference count of self + by one.

+
+

Parameters

+
+++++ + + + + + +

self

a QmiMessageNasGetTxRxInfoInput.

 
+
+
+

Returns

+

the new reference to self +.

+
+

Since: 1.6

+
+
+
+

qmi_message_nas_get_tx_rx_info_input_unref ()

+
void
+qmi_message_nas_get_tx_rx_info_input_unref
+                               (QmiMessageNasGetTxRxInfoInput *self);
+

Atomically decrements the reference count of self + by one. +If the reference count drops to 0, self + is completely disposed.

+
+

Parameters

+
+++++ + + + + + +

self

a QmiMessageNasGetTxRxInfoInput.

 
+
+

Since: 1.6

+
+
+
+

qmi_message_nas_get_tx_rx_info_input_get_radio_interface ()

+
gboolean
+qmi_message_nas_get_tx_rx_info_input_get_radio_interface
+                               (QmiMessageNasGetTxRxInfoInput *self,
+                                QmiNasRadioInterface *value_radio_interface,
+                                GError **error);
+

Get the 'Radio Interface' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageNasGetTxRxInfoInput.

 

value_radio_interface

a placeholder for the output QmiNasRadioInterface, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.6

+
+
+
+

qmi_message_nas_get_tx_rx_info_input_set_radio_interface ()

+
gboolean
+qmi_message_nas_get_tx_rx_info_input_set_radio_interface
+                               (QmiMessageNasGetTxRxInfoInput *self,
+                                QmiNasRadioInterface value_radio_interface,
+                                GError **error);
+

Set the 'Radio Interface' field in the message.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageNasGetTxRxInfoInput.

 

value_radio_interface

a QmiNasRadioInterface.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if value +was successfully set, FALSE otherwise.

+
+

Since: 1.6

+
+
+
+

qmi_message_nas_get_tx_rx_info_output_ref ()

+
QmiMessageNasGetTxRxInfoOutput *
+qmi_message_nas_get_tx_rx_info_output_ref
+                               (QmiMessageNasGetTxRxInfoOutput *self);
+

Atomically increments the reference count of self + by one.

+
+

Parameters

+
+++++ + + + + + +

self

a QmiMessageNasGetTxRxInfoOutput.

 
+
+
+

Returns

+

the new reference to self +.

+
+

Since: 1.6

+
+
+
+

qmi_message_nas_get_tx_rx_info_output_unref ()

+
void
+qmi_message_nas_get_tx_rx_info_output_unref
+                               (QmiMessageNasGetTxRxInfoOutput *self);
+

Atomically decrements the reference count of self + by one. +If the reference count drops to 0, self + is completely disposed.

+
+

Parameters

+
+++++ + + + + + +

self

a QmiMessageNasGetTxRxInfoOutput.

 
+
+

Since: 1.6

+
+
+
+

qmi_message_nas_get_tx_rx_info_output_get_result ()

+
gboolean
+qmi_message_nas_get_tx_rx_info_output_get_result
+                               (QmiMessageNasGetTxRxInfoOutput *self,
+                                GError **error);
+

Get the result of the QMI operation.

+
+

Parameters

+
+++++ + + + + + + + + + + + + +

self

a QmiMessageNasGetTxRxInfoOutput.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the QMI operation succeeded, FALSE if error +is set.

+
+

Since: 1.6

+
+
+
+

qmi_message_nas_get_tx_rx_info_output_get_rx_chain_0_info ()

+
gboolean
+qmi_message_nas_get_tx_rx_info_output_get_rx_chain_0_info
+                               (QmiMessageNasGetTxRxInfoOutput *self,
+                                gboolean *value_rx_chain_0_info_is_radio_tuned,
+                                gint32 *value_rx_chain_0_info_rx_power,
+                                gint32 *value_rx_chain_0_info_ecio,
+                                gint32 *value_rx_chain_0_info_rscp,
+                                gint32 *value_rx_chain_0_info_rsrp,
+                                guint32 *value_rx_chain_0_info_phase,
+                                GError **error);
+

Get the 'Rx Chain 0 Info' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

self

a QmiMessageNasGetTxRxInfoOutput.

 

value_rx_chain_0_info_is_radio_tuned

a placeholder for the output gboolean, or NULL if not required.

 

value_rx_chain_0_info_rx_power

a placeholder for the output gint32, or NULL if not required.

 

value_rx_chain_0_info_ecio

a placeholder for the output gint32, or NULL if not required.

 

value_rx_chain_0_info_rscp

a placeholder for the output gint32, or NULL if not required.

 

value_rx_chain_0_info_rsrp

a placeholder for the output gint32, or NULL if not required.

 

value_rx_chain_0_info_phase

a placeholder for the output guint32, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.6

+
+
+
+

qmi_message_nas_get_tx_rx_info_output_get_rx_chain_1_info ()

+
gboolean
+qmi_message_nas_get_tx_rx_info_output_get_rx_chain_1_info
+                               (QmiMessageNasGetTxRxInfoOutput *self,
+                                gboolean *value_rx_chain_1_info_is_radio_tuned,
+                                gint32 *value_rx_chain_1_info_rx_power,
+                                gint32 *value_rx_chain_1_info_ecio,
+                                gint32 *value_rx_chain_1_info_rscp,
+                                gint32 *value_rx_chain_1_info_rsrp,
+                                guint32 *value_rx_chain_1_info_phase,
+                                GError **error);
+

Get the 'Rx Chain 1 Info' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

self

a QmiMessageNasGetTxRxInfoOutput.

 

value_rx_chain_1_info_is_radio_tuned

a placeholder for the output gboolean, or NULL if not required.

 

value_rx_chain_1_info_rx_power

a placeholder for the output gint32, or NULL if not required.

 

value_rx_chain_1_info_ecio

a placeholder for the output gint32, or NULL if not required.

 

value_rx_chain_1_info_rscp

a placeholder for the output gint32, or NULL if not required.

 

value_rx_chain_1_info_rsrp

a placeholder for the output gint32, or NULL if not required.

 

value_rx_chain_1_info_phase

a placeholder for the output guint32, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.6

+
+
+
+

qmi_message_nas_get_tx_rx_info_output_get_tx_info ()

+
gboolean
+qmi_message_nas_get_tx_rx_info_output_get_tx_info
+                               (QmiMessageNasGetTxRxInfoOutput *self,
+                                gboolean *value_tx_info_is_in_traffic,
+                                gint32 *value_tx_info_tx_power,
+                                GError **error);
+

Get the 'Tx Info' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + + + + + + +

self

a QmiMessageNasGetTxRxInfoOutput.

 

value_tx_info_is_in_traffic

a placeholder for the output gboolean, or NULL if not required.

 

value_tx_info_tx_power

a placeholder for the output gint32, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.6

+
+
+
+

qmi_client_nas_get_tx_rx_info ()

+
void
+qmi_client_nas_get_tx_rx_info (QmiClientNas *self,
+                               QmiMessageNasGetTxRxInfoInput *input,
+                               guint timeout,
+                               GCancellable *cancellable,
+                               GAsyncReadyCallback callback,
+                               gpointer user_data);
+

Asynchronously sends a Get Tx Rx Info request to the device.

+

When the operation is finished, callback + will be invoked in the thread-default main loop of the thread you are calling this method from.

+

You can then call qmi_client_nas_get_tx_rx_info_finish() to get the result of the operation.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

self

a QmiClientNas.

 

input

a QmiMessageNasGetTxRxInfoInput.

 

timeout

maximum time to wait for the method to complete, in seconds.

 

cancellable

a GCancellable or NULL.

 

callback

a GAsyncReadyCallback to call when the request is satisfied.

 

user_data

user data to pass to callback +.

 
+
+

Since: 1.6

+
+
+
+

qmi_client_nas_get_tx_rx_info_finish ()

+
QmiMessageNasGetTxRxInfoOutput *
+qmi_client_nas_get_tx_rx_info_finish (QmiClientNas *self,
+                                      GAsyncResult *res,
+                                      GError **error);
+

Finishes an async operation started with qmi_client_nas_get_tx_rx_info().

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiClientNas.

 

res

the GAsyncResult obtained from the GAsyncReadyCallback passed to qmi_client_nas_get_tx_rx_info().

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

a QmiMessageNasGetTxRxInfoOutput, or NULL if error +is set. The returned value should be freed with qmi_message_nas_get_tx_rx_info_output_unref().

+
+

Since: 1.6

+
+
+
+

Types and Values

+
+

QmiMessageNasGetTxRxInfoInput

+
typedef struct _QmiMessageNasGetTxRxInfoInput QmiMessageNasGetTxRxInfoInput;
+

The QmiMessageNasGetTxRxInfoInput structure contains private data and should only be accessed +using the provided API.

+

Since: 1.6

+
+
+
+

QmiMessageNasGetTxRxInfoOutput

+
typedef struct _QmiMessageNasGetTxRxInfoOutput QmiMessageNasGetTxRxInfoOutput;
+

The QmiMessageNasGetTxRxInfoOutput structure contains private data and should only be accessed +using the provided API.

+

Since: 1.6

+
+
+
+ + + \ No newline at end of file diff -Nru libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-NAS-Initiate-Network-Register.html libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-NAS-Initiate-Network-Register.html --- libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-NAS-Initiate-Network-Register.html 2017-03-22 12:28:29.000000000 +0100 +++ libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-NAS-Initiate-Network-Register.html 1970-01-01 01:00:00.000000000 +0100 @@ -1,862 +0,0 @@ - - - - -NAS Initiate Network Register: libqmi-glib Reference Manual - - - - - - - - - - - - - - - - -
-
-
- - -
-

NAS Initiate Network Register

-

NAS Initiate Network Register

-
-
-

Functions

-
---- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
-QmiMessageNasInitiateNetworkRegisterInput * - -qmi_message_nas_initiate_network_register_input_new () -
-QmiMessageNasInitiateNetworkRegisterInput * - -qmi_message_nas_initiate_network_register_input_ref () -
-void - -qmi_message_nas_initiate_network_register_input_unref () -
-gboolean - -qmi_message_nas_initiate_network_register_input_get_mnc_pcs_digit_include_status () -
-gboolean - -qmi_message_nas_initiate_network_register_input_set_mnc_pcs_digit_include_status () -
-gboolean - -qmi_message_nas_initiate_network_register_input_get_change_duration () -
-gboolean - -qmi_message_nas_initiate_network_register_input_set_change_duration () -
-gboolean - -qmi_message_nas_initiate_network_register_input_get_manual_registration_info_3gpp () -
-gboolean - -qmi_message_nas_initiate_network_register_input_set_manual_registration_info_3gpp () -
-gboolean - -qmi_message_nas_initiate_network_register_input_get_action () -
-gboolean - -qmi_message_nas_initiate_network_register_input_set_action () -
-QmiMessageNasInitiateNetworkRegisterOutput * - -qmi_message_nas_initiate_network_register_output_ref () -
-void - -qmi_message_nas_initiate_network_register_output_unref () -
-gboolean - -qmi_message_nas_initiate_network_register_output_get_result () -
-void - -qmi_client_nas_initiate_network_register () -
-QmiMessageNasInitiateNetworkRegisterOutput * - -qmi_client_nas_initiate_network_register_finish () -
-
- -
-

Object Hierarchy

-
    GBoxed
-    ├── QmiMessageNasInitiateNetworkRegisterInput
-    ╰── QmiMessageNasInitiateNetworkRegisterOutput
-
-
-
-

Description

-
-
-

Functions

-
-

qmi_message_nas_initiate_network_register_input_new ()

-
QmiMessageNasInitiateNetworkRegisterInput *
-qmi_message_nas_initiate_network_register_input_new
-                               (void);
-

Allocates a new QmiMessageNasInitiateNetworkRegisterInput.

-
-

Returns

-

the newly created QmiMessageNasInitiateNetworkRegisterInput. The returned value should be freed with qmi_message_nas_initiate_network_register_input_unref().

-
-

Since: 1.0

-
-
-
-

qmi_message_nas_initiate_network_register_input_ref ()

-
QmiMessageNasInitiateNetworkRegisterInput *
-qmi_message_nas_initiate_network_register_input_ref
-                               (QmiMessageNasInitiateNetworkRegisterInput *self);
-

Atomically increments the reference count of self - by one.

-
-

Parameters

-
----- - - - - - -

self

a QmiMessageNasInitiateNetworkRegisterInput.

 
-
-
-

Returns

-

the new reference to self -.

-
-

Since: 1.0

-
-
-
-

qmi_message_nas_initiate_network_register_input_unref ()

-
void
-qmi_message_nas_initiate_network_register_input_unref
-                               (QmiMessageNasInitiateNetworkRegisterInput *self);
-

Atomically decrements the reference count of self - by one. -If the reference count drops to 0, self - is completely disposed.

-
-

Parameters

-
----- - - - - - -

self

a QmiMessageNasInitiateNetworkRegisterInput.

 
-
-

Since: 1.0

-
-
-
-

qmi_message_nas_initiate_network_register_input_get_mnc_pcs_digit_include_status ()

-
gboolean
-qmi_message_nas_initiate_network_register_input_get_mnc_pcs_digit_include_status
-                               (QmiMessageNasInitiateNetworkRegisterInput *self,
-                                gboolean *value_mnc_pcs_digit_include_status,
-                                GError **error);
-

Get the 'MNC PCS Digit Include Status' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessageNasInitiateNetworkRegisterInput.

 

value_mnc_pcs_digit_include_status

a placeholder for the output gboolean, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.0

-
-
-
-

qmi_message_nas_initiate_network_register_input_set_mnc_pcs_digit_include_status ()

-
gboolean
-qmi_message_nas_initiate_network_register_input_set_mnc_pcs_digit_include_status
-                               (QmiMessageNasInitiateNetworkRegisterInput *self,
-                                gboolean value_mnc_pcs_digit_include_status,
-                                GError **error);
-

Set the 'MNC PCS Digit Include Status' field in the message.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessageNasInitiateNetworkRegisterInput.

 

value_mnc_pcs_digit_include_status

a gboolean.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if value -was successfully set, FALSE otherwise.

-
-

Since: 1.0

-
-
-
-

qmi_message_nas_initiate_network_register_input_get_change_duration ()

-
gboolean
-qmi_message_nas_initiate_network_register_input_get_change_duration
-                               (QmiMessageNasInitiateNetworkRegisterInput *self,
-                                QmiNasChangeDuration *value_change_duration,
-                                GError **error);
-

Get the 'Change Duration' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessageNasInitiateNetworkRegisterInput.

 

value_change_duration

a placeholder for the output QmiNasChangeDuration, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.0

-
-
-
-

qmi_message_nas_initiate_network_register_input_set_change_duration ()

-
gboolean
-qmi_message_nas_initiate_network_register_input_set_change_duration
-                               (QmiMessageNasInitiateNetworkRegisterInput *self,
-                                QmiNasChangeDuration value_change_duration,
-                                GError **error);
-

Set the 'Change Duration' field in the message.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessageNasInitiateNetworkRegisterInput.

 

value_change_duration

a QmiNasChangeDuration.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if value -was successfully set, FALSE otherwise.

-
-

Since: 1.0

-
-
-
-

qmi_message_nas_initiate_network_register_input_get_manual_registration_info_3gpp ()

-
gboolean
-qmi_message_nas_initiate_network_register_input_get_manual_registration_info_3gpp
-                               (QmiMessageNasInitiateNetworkRegisterInput *self,
-                                guint16 *value_manual_registration_info_3gpp_mcc,
-                                guint16 *value_manual_registration_info_3gpp_mnc,
-                                QmiNasRadioInterface *value_manual_registration_info_3gpp_radio_interface,
-                                GError **error);
-

Get the 'Manual Registration Info 3GPP' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - - - - - - - - - - - -

self

a QmiMessageNasInitiateNetworkRegisterInput.

 

value_manual_registration_info_3gpp_mcc

a placeholder for the output guint16, or NULL if not required.

 

value_manual_registration_info_3gpp_mnc

a placeholder for the output guint16, or NULL if not required.

 

value_manual_registration_info_3gpp_radio_interface

a placeholder for the output QmiNasRadioInterface, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.0

-
-
-
-

qmi_message_nas_initiate_network_register_input_set_manual_registration_info_3gpp ()

-
gboolean
-qmi_message_nas_initiate_network_register_input_set_manual_registration_info_3gpp
-                               (QmiMessageNasInitiateNetworkRegisterInput *self,
-                                guint16 value_manual_registration_info_3gpp_mcc,
-                                guint16 value_manual_registration_info_3gpp_mnc,
-                                QmiNasRadioInterface value_manual_registration_info_3gpp_radio_interface,
-                                GError **error);
-

Set the 'Manual Registration Info 3GPP' field in the message.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - - - - - - - - - - - -

self

a QmiMessageNasInitiateNetworkRegisterInput.

 

value_manual_registration_info_3gpp_mcc

a guint16.

 

value_manual_registration_info_3gpp_mnc

a guint16.

 

value_manual_registration_info_3gpp_radio_interface

a QmiNasRadioInterface.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if value -was successfully set, FALSE otherwise.

-
-

Since: 1.0

-
-
-
-

qmi_message_nas_initiate_network_register_input_get_action ()

-
gboolean
-qmi_message_nas_initiate_network_register_input_get_action
-                               (QmiMessageNasInitiateNetworkRegisterInput *self,
-                                QmiNasNetworkRegisterType *value_action,
-                                GError **error);
-

Get the 'Action' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessageNasInitiateNetworkRegisterInput.

 

value_action

a placeholder for the output QmiNasNetworkRegisterType, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.0

-
-
-
-

qmi_message_nas_initiate_network_register_input_set_action ()

-
gboolean
-qmi_message_nas_initiate_network_register_input_set_action
-                               (QmiMessageNasInitiateNetworkRegisterInput *self,
-                                QmiNasNetworkRegisterType value_action,
-                                GError **error);
-

Set the 'Action' field in the message.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessageNasInitiateNetworkRegisterInput.

 

value_action

a QmiNasNetworkRegisterType.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if value -was successfully set, FALSE otherwise.

-
-

Since: 1.0

-
-
-
-

qmi_message_nas_initiate_network_register_output_ref ()

-
QmiMessageNasInitiateNetworkRegisterOutput *
-qmi_message_nas_initiate_network_register_output_ref
-                               (QmiMessageNasInitiateNetworkRegisterOutput *self);
-

Atomically increments the reference count of self - by one.

-
-

Parameters

-
----- - - - - - -

self

a QmiMessageNasInitiateNetworkRegisterOutput.

 
-
-
-

Returns

-

the new reference to self -.

-
-

Since: 1.0

-
-
-
-

qmi_message_nas_initiate_network_register_output_unref ()

-
void
-qmi_message_nas_initiate_network_register_output_unref
-                               (QmiMessageNasInitiateNetworkRegisterOutput *self);
-

Atomically decrements the reference count of self - by one. -If the reference count drops to 0, self - is completely disposed.

-
-

Parameters

-
----- - - - - - -

self

a QmiMessageNasInitiateNetworkRegisterOutput.

 
-
-

Since: 1.0

-
-
-
-

qmi_message_nas_initiate_network_register_output_get_result ()

-
gboolean
-qmi_message_nas_initiate_network_register_output_get_result
-                               (QmiMessageNasInitiateNetworkRegisterOutput *self,
-                                GError **error);
-

Get the result of the QMI operation.

-
-

Parameters

-
----- - - - - - - - - - - - - -

self

a QmiMessageNasInitiateNetworkRegisterOutput.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the QMI operation succeeded, FALSE if error -is set.

-
-

Since: 1.0

-
-
-
-

qmi_client_nas_initiate_network_register ()

-
void
-qmi_client_nas_initiate_network_register
-                               (QmiClientNas *self,
-                                QmiMessageNasInitiateNetworkRegisterInput *input,
-                                guint timeout,
-                                GCancellable *cancellable,
-                                GAsyncReadyCallback callback,
-                                gpointer user_data);
-

Asynchronously sends a Initiate Network Register request to the device.

-

When the operation is finished, callback - will be invoked in the thread-default main loop of the thread you are calling this method from.

-

You can then call qmi_client_nas_initiate_network_register_finish() to get the result of the operation.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

self

a QmiClientNas.

 

input

a QmiMessageNasInitiateNetworkRegisterInput.

 

timeout

maximum time to wait for the method to complete, in seconds.

 

cancellable

a GCancellable or NULL.

 

callback

a GAsyncReadyCallback to call when the request is satisfied.

 

user_data

user data to pass to callback -.

 
-
-

Since: 1.0

-
-
-
-

qmi_client_nas_initiate_network_register_finish ()

-
QmiMessageNasInitiateNetworkRegisterOutput *
-qmi_client_nas_initiate_network_register_finish
-                               (QmiClientNas *self,
-                                GAsyncResult *res,
-                                GError **error);
-

Finishes an async operation started with qmi_client_nas_initiate_network_register().

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiClientNas.

 

res

the GAsyncResult obtained from the GAsyncReadyCallback passed to qmi_client_nas_initiate_network_register().

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

a QmiMessageNasInitiateNetworkRegisterOutput, or NULL if error -is set. The returned value should be freed with qmi_message_nas_initiate_network_register_output_unref().

-
-

Since: 1.0

-
-
-
-

Types and Values

-
-

QmiMessageNasInitiateNetworkRegisterInput

-
typedef struct _QmiMessageNasInitiateNetworkRegisterInput QmiMessageNasInitiateNetworkRegisterInput;
-

The QmiMessageNasInitiateNetworkRegisterInput structure contains private data and should only be accessed -using the provided API.

-

Since: 1.0

-
-
-
-

QmiMessageNasInitiateNetworkRegisterOutput

-
typedef struct _QmiMessageNasInitiateNetworkRegisterOutput QmiMessageNasInitiateNetworkRegisterOutput;
-

The QmiMessageNasInitiateNetworkRegisterOutput structure contains private data and should only be accessed -using the provided API.

-

Since: 1.0

-
-
-
- - - \ No newline at end of file diff -Nru libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-NAS-Initiate-Network-Register-request.html libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-NAS-Initiate-Network-Register-request.html --- libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-NAS-Initiate-Network-Register-request.html 1970-01-01 01:00:00.000000000 +0100 +++ libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-NAS-Initiate-Network-Register-request.html 2019-01-08 15:19:01.000000000 +0100 @@ -0,0 +1,862 @@ + + + + +NAS Initiate Network Register request: libqmi-glib Reference Manual + + + + + + + + + + + + + + + + +
+
+
+ + +
+

NAS Initiate Network Register request

+

NAS Initiate Network Register request

+
+
+

Functions

+
++++ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+QmiMessageNasInitiateNetworkRegisterInput * + +qmi_message_nas_initiate_network_register_input_new () +
+QmiMessageNasInitiateNetworkRegisterInput * + +qmi_message_nas_initiate_network_register_input_ref () +
+void + +qmi_message_nas_initiate_network_register_input_unref () +
+gboolean + +qmi_message_nas_initiate_network_register_input_get_mnc_pcs_digit_include_status () +
+gboolean + +qmi_message_nas_initiate_network_register_input_set_mnc_pcs_digit_include_status () +
+gboolean + +qmi_message_nas_initiate_network_register_input_get_change_duration () +
+gboolean + +qmi_message_nas_initiate_network_register_input_set_change_duration () +
+gboolean + +qmi_message_nas_initiate_network_register_input_get_manual_registration_info_3gpp () +
+gboolean + +qmi_message_nas_initiate_network_register_input_set_manual_registration_info_3gpp () +
+gboolean + +qmi_message_nas_initiate_network_register_input_get_action () +
+gboolean + +qmi_message_nas_initiate_network_register_input_set_action () +
+QmiMessageNasInitiateNetworkRegisterOutput * + +qmi_message_nas_initiate_network_register_output_ref () +
+void + +qmi_message_nas_initiate_network_register_output_unref () +
+gboolean + +qmi_message_nas_initiate_network_register_output_get_result () +
+void + +qmi_client_nas_initiate_network_register () +
+QmiMessageNasInitiateNetworkRegisterOutput * + +qmi_client_nas_initiate_network_register_finish () +
+
+ +
+

Object Hierarchy

+
    GBoxed
+    ├── QmiMessageNasInitiateNetworkRegisterInput
+    ╰── QmiMessageNasInitiateNetworkRegisterOutput
+
+
+
+

Description

+
+
+

Functions

+
+

qmi_message_nas_initiate_network_register_input_new ()

+
QmiMessageNasInitiateNetworkRegisterInput *
+qmi_message_nas_initiate_network_register_input_new
+                               (void);
+

Allocates a new QmiMessageNasInitiateNetworkRegisterInput.

+
+

Returns

+

the newly created QmiMessageNasInitiateNetworkRegisterInput. The returned value should be freed with qmi_message_nas_initiate_network_register_input_unref().

+
+

Since: 1.0

+
+
+
+

qmi_message_nas_initiate_network_register_input_ref ()

+
QmiMessageNasInitiateNetworkRegisterInput *
+qmi_message_nas_initiate_network_register_input_ref
+                               (QmiMessageNasInitiateNetworkRegisterInput *self);
+

Atomically increments the reference count of self + by one.

+
+

Parameters

+
+++++ + + + + + +

self

a QmiMessageNasInitiateNetworkRegisterInput.

 
+
+
+

Returns

+

the new reference to self +.

+
+

Since: 1.0

+
+
+
+

qmi_message_nas_initiate_network_register_input_unref ()

+
void
+qmi_message_nas_initiate_network_register_input_unref
+                               (QmiMessageNasInitiateNetworkRegisterInput *self);
+

Atomically decrements the reference count of self + by one. +If the reference count drops to 0, self + is completely disposed.

+
+

Parameters

+
+++++ + + + + + +

self

a QmiMessageNasInitiateNetworkRegisterInput.

 
+
+

Since: 1.0

+
+
+
+

qmi_message_nas_initiate_network_register_input_get_mnc_pcs_digit_include_status ()

+
gboolean
+qmi_message_nas_initiate_network_register_input_get_mnc_pcs_digit_include_status
+                               (QmiMessageNasInitiateNetworkRegisterInput *self,
+                                gboolean *value_mnc_pcs_digit_include_status,
+                                GError **error);
+

Get the 'MNC PCS Digit Include Status' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageNasInitiateNetworkRegisterInput.

 

value_mnc_pcs_digit_include_status

a placeholder for the output gboolean, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.0

+
+
+
+

qmi_message_nas_initiate_network_register_input_set_mnc_pcs_digit_include_status ()

+
gboolean
+qmi_message_nas_initiate_network_register_input_set_mnc_pcs_digit_include_status
+                               (QmiMessageNasInitiateNetworkRegisterInput *self,
+                                gboolean value_mnc_pcs_digit_include_status,
+                                GError **error);
+

Set the 'MNC PCS Digit Include Status' field in the message.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageNasInitiateNetworkRegisterInput.

 

value_mnc_pcs_digit_include_status

a gboolean.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if value +was successfully set, FALSE otherwise.

+
+

Since: 1.0

+
+
+
+

qmi_message_nas_initiate_network_register_input_get_change_duration ()

+
gboolean
+qmi_message_nas_initiate_network_register_input_get_change_duration
+                               (QmiMessageNasInitiateNetworkRegisterInput *self,
+                                QmiNasChangeDuration *value_change_duration,
+                                GError **error);
+

Get the 'Change Duration' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageNasInitiateNetworkRegisterInput.

 

value_change_duration

a placeholder for the output QmiNasChangeDuration, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.0

+
+
+
+

qmi_message_nas_initiate_network_register_input_set_change_duration ()

+
gboolean
+qmi_message_nas_initiate_network_register_input_set_change_duration
+                               (QmiMessageNasInitiateNetworkRegisterInput *self,
+                                QmiNasChangeDuration value_change_duration,
+                                GError **error);
+

Set the 'Change Duration' field in the message.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageNasInitiateNetworkRegisterInput.

 

value_change_duration

a QmiNasChangeDuration.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if value +was successfully set, FALSE otherwise.

+
+

Since: 1.0

+
+
+
+

qmi_message_nas_initiate_network_register_input_get_manual_registration_info_3gpp ()

+
gboolean
+qmi_message_nas_initiate_network_register_input_get_manual_registration_info_3gpp
+                               (QmiMessageNasInitiateNetworkRegisterInput *self,
+                                guint16 *value_manual_registration_info_3gpp_mcc,
+                                guint16 *value_manual_registration_info_3gpp_mnc,
+                                QmiNasRadioInterface *value_manual_registration_info_3gpp_radio_interface,
+                                GError **error);
+

Get the 'Manual Registration Info 3GPP' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + + + + + + + + + + + +

self

a QmiMessageNasInitiateNetworkRegisterInput.

 

value_manual_registration_info_3gpp_mcc

a placeholder for the output guint16, or NULL if not required.

 

value_manual_registration_info_3gpp_mnc

a placeholder for the output guint16, or NULL if not required.

 

value_manual_registration_info_3gpp_radio_interface

a placeholder for the output QmiNasRadioInterface, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.0

+
+
+
+

qmi_message_nas_initiate_network_register_input_set_manual_registration_info_3gpp ()

+
gboolean
+qmi_message_nas_initiate_network_register_input_set_manual_registration_info_3gpp
+                               (QmiMessageNasInitiateNetworkRegisterInput *self,
+                                guint16 value_manual_registration_info_3gpp_mcc,
+                                guint16 value_manual_registration_info_3gpp_mnc,
+                                QmiNasRadioInterface value_manual_registration_info_3gpp_radio_interface,
+                                GError **error);
+

Set the 'Manual Registration Info 3GPP' field in the message.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + + + + + + + + + + + +

self

a QmiMessageNasInitiateNetworkRegisterInput.

 

value_manual_registration_info_3gpp_mcc

a guint16.

 

value_manual_registration_info_3gpp_mnc

a guint16.

 

value_manual_registration_info_3gpp_radio_interface

a QmiNasRadioInterface.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if value +was successfully set, FALSE otherwise.

+
+

Since: 1.0

+
+
+
+

qmi_message_nas_initiate_network_register_input_get_action ()

+
gboolean
+qmi_message_nas_initiate_network_register_input_get_action
+                               (QmiMessageNasInitiateNetworkRegisterInput *self,
+                                QmiNasNetworkRegisterType *value_action,
+                                GError **error);
+

Get the 'Action' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageNasInitiateNetworkRegisterInput.

 

value_action

a placeholder for the output QmiNasNetworkRegisterType, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.0

+
+
+
+

qmi_message_nas_initiate_network_register_input_set_action ()

+
gboolean
+qmi_message_nas_initiate_network_register_input_set_action
+                               (QmiMessageNasInitiateNetworkRegisterInput *self,
+                                QmiNasNetworkRegisterType value_action,
+                                GError **error);
+

Set the 'Action' field in the message.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageNasInitiateNetworkRegisterInput.

 

value_action

a QmiNasNetworkRegisterType.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if value +was successfully set, FALSE otherwise.

+
+

Since: 1.0

+
+
+
+

qmi_message_nas_initiate_network_register_output_ref ()

+
QmiMessageNasInitiateNetworkRegisterOutput *
+qmi_message_nas_initiate_network_register_output_ref
+                               (QmiMessageNasInitiateNetworkRegisterOutput *self);
+

Atomically increments the reference count of self + by one.

+
+

Parameters

+
+++++ + + + + + +

self

a QmiMessageNasInitiateNetworkRegisterOutput.

 
+
+
+

Returns

+

the new reference to self +.

+
+

Since: 1.0

+
+
+
+

qmi_message_nas_initiate_network_register_output_unref ()

+
void
+qmi_message_nas_initiate_network_register_output_unref
+                               (QmiMessageNasInitiateNetworkRegisterOutput *self);
+

Atomically decrements the reference count of self + by one. +If the reference count drops to 0, self + is completely disposed.

+
+

Parameters

+
+++++ + + + + + +

self

a QmiMessageNasInitiateNetworkRegisterOutput.

 
+
+

Since: 1.0

+
+
+
+

qmi_message_nas_initiate_network_register_output_get_result ()

+
gboolean
+qmi_message_nas_initiate_network_register_output_get_result
+                               (QmiMessageNasInitiateNetworkRegisterOutput *self,
+                                GError **error);
+

Get the result of the QMI operation.

+
+

Parameters

+
+++++ + + + + + + + + + + + + +

self

a QmiMessageNasInitiateNetworkRegisterOutput.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the QMI operation succeeded, FALSE if error +is set.

+
+

Since: 1.0

+
+
+
+

qmi_client_nas_initiate_network_register ()

+
void
+qmi_client_nas_initiate_network_register
+                               (QmiClientNas *self,
+                                QmiMessageNasInitiateNetworkRegisterInput *input,
+                                guint timeout,
+                                GCancellable *cancellable,
+                                GAsyncReadyCallback callback,
+                                gpointer user_data);
+

Asynchronously sends a Initiate Network Register request to the device.

+

When the operation is finished, callback + will be invoked in the thread-default main loop of the thread you are calling this method from.

+

You can then call qmi_client_nas_initiate_network_register_finish() to get the result of the operation.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

self

a QmiClientNas.

 

input

a QmiMessageNasInitiateNetworkRegisterInput.

 

timeout

maximum time to wait for the method to complete, in seconds.

 

cancellable

a GCancellable or NULL.

 

callback

a GAsyncReadyCallback to call when the request is satisfied.

 

user_data

user data to pass to callback +.

 
+
+

Since: 1.0

+
+
+
+

qmi_client_nas_initiate_network_register_finish ()

+
QmiMessageNasInitiateNetworkRegisterOutput *
+qmi_client_nas_initiate_network_register_finish
+                               (QmiClientNas *self,
+                                GAsyncResult *res,
+                                GError **error);
+

Finishes an async operation started with qmi_client_nas_initiate_network_register().

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiClientNas.

 

res

the GAsyncResult obtained from the GAsyncReadyCallback passed to qmi_client_nas_initiate_network_register().

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

a QmiMessageNasInitiateNetworkRegisterOutput, or NULL if error +is set. The returned value should be freed with qmi_message_nas_initiate_network_register_output_unref().

+
+

Since: 1.0

+
+
+
+

Types and Values

+
+

QmiMessageNasInitiateNetworkRegisterInput

+
typedef struct _QmiMessageNasInitiateNetworkRegisterInput QmiMessageNasInitiateNetworkRegisterInput;
+

The QmiMessageNasInitiateNetworkRegisterInput structure contains private data and should only be accessed +using the provided API.

+

Since: 1.0

+
+
+
+

QmiMessageNasInitiateNetworkRegisterOutput

+
typedef struct _QmiMessageNasInitiateNetworkRegisterOutput QmiMessageNasInitiateNetworkRegisterOutput;
+

The QmiMessageNasInitiateNetworkRegisterOutput structure contains private data and should only be accessed +using the provided API.

+

Since: 1.0

+
+
+
+ + + \ No newline at end of file diff -Nru libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-NAS-Network-Scan.html libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-NAS-Network-Scan.html --- libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-NAS-Network-Scan.html 2017-03-22 12:28:29.000000000 +0100 +++ libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-NAS-Network-Scan.html 1970-01-01 01:00:00.000000000 +0100 @@ -1,821 +0,0 @@ - - - - -NAS Network Scan: libqmi-glib Reference Manual - - - - - - - - - - - - - - - - -
-
-
- - -
-

NAS Network Scan

-

NAS Network Scan

-
- - -
-

Object Hierarchy

-
    GBoxed
-    ├── QmiMessageNasNetworkScanInput
-    ╰── QmiMessageNasNetworkScanOutput
-
-
-
-

Description

-
-
-

Functions

-
-

qmi_message_nas_network_scan_input_new ()

-
QmiMessageNasNetworkScanInput *
-qmi_message_nas_network_scan_input_new
-                               (void);
-

Allocates a new QmiMessageNasNetworkScanInput.

-
-

Returns

-

the newly created QmiMessageNasNetworkScanInput. The returned value should be freed with qmi_message_nas_network_scan_input_unref().

-
-

Since: 1.0

-
-
-
-

qmi_message_nas_network_scan_input_ref ()

-
QmiMessageNasNetworkScanInput *
-qmi_message_nas_network_scan_input_ref
-                               (QmiMessageNasNetworkScanInput *self);
-

Atomically increments the reference count of self - by one.

-
-

Parameters

-
----- - - - - - -

self

a QmiMessageNasNetworkScanInput.

 
-
-
-

Returns

-

the new reference to self -.

-
-

Since: 1.0

-
-
-
-

qmi_message_nas_network_scan_input_unref ()

-
void
-qmi_message_nas_network_scan_input_unref
-                               (QmiMessageNasNetworkScanInput *self);
-

Atomically decrements the reference count of self - by one. -If the reference count drops to 0, self - is completely disposed.

-
-

Parameters

-
----- - - - - - -

self

a QmiMessageNasNetworkScanInput.

 
-
-

Since: 1.0

-
-
-
-

qmi_message_nas_network_scan_input_get_network_type ()

-
gboolean
-qmi_message_nas_network_scan_input_get_network_type
-                               (QmiMessageNasNetworkScanInput *self,
-                                QmiNasNetworkScanType *value_network_type,
-                                GError **error);
-

Get the 'Network Type' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessageNasNetworkScanInput.

 

value_network_type

a placeholder for the output QmiNasNetworkScanType, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.0

-
-
-
-

qmi_message_nas_network_scan_input_set_network_type ()

-
gboolean
-qmi_message_nas_network_scan_input_set_network_type
-                               (QmiMessageNasNetworkScanInput *self,
-                                QmiNasNetworkScanType value_network_type,
-                                GError **error);
-

Set the 'Network Type' field in the message.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessageNasNetworkScanInput.

 

value_network_type

a QmiNasNetworkScanType.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if value -was successfully set, FALSE otherwise.

-
-

Since: 1.0

-
-
-
-

qmi_message_nas_network_scan_output_ref ()

-
QmiMessageNasNetworkScanOutput *
-qmi_message_nas_network_scan_output_ref
-                               (QmiMessageNasNetworkScanOutput *self);
-

Atomically increments the reference count of self - by one.

-
-

Parameters

-
----- - - - - - -

self

a QmiMessageNasNetworkScanOutput.

 
-
-
-

Returns

-

the new reference to self -.

-
-

Since: 1.0

-
-
-
-

qmi_message_nas_network_scan_output_unref ()

-
void
-qmi_message_nas_network_scan_output_unref
-                               (QmiMessageNasNetworkScanOutput *self);
-

Atomically decrements the reference count of self - by one. -If the reference count drops to 0, self - is completely disposed.

-
-

Parameters

-
----- - - - - - -

self

a QmiMessageNasNetworkScanOutput.

 
-
-

Since: 1.0

-
-
-
-

qmi_message_nas_network_scan_output_get_mnc_pcs_digit_include_status ()

-
gboolean
-qmi_message_nas_network_scan_output_get_mnc_pcs_digit_include_status
-                               (QmiMessageNasNetworkScanOutput *self,
-                                GArray **value_mnc_pcs_digit_include_status,
-                                GError **error);
-

Get the 'MNC PCS Digit Include Status' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessageNasNetworkScanOutput.

 

value_mnc_pcs_digit_include_status

a placeholder for the output GArray of QmiMessageNasNetworkScanOutputMncPcsDigitIncludeStatusElement elements, or NULL if not required. Do not free it, it is owned by self -.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.0

-
-
-
-

qmi_message_nas_network_scan_output_get_radio_access_technology ()

-
gboolean
-qmi_message_nas_network_scan_output_get_radio_access_technology
-                               (QmiMessageNasNetworkScanOutput *self,
-                                GArray **value_radio_access_technology,
-                                GError **error);
-

Get the 'Radio Access Technology' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessageNasNetworkScanOutput.

 

value_radio_access_technology

a placeholder for the output GArray of QmiMessageNasNetworkScanOutputRadioAccessTechnologyElement elements, or NULL if not required. Do not free it, it is owned by self -.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.0

-
-
-
-

qmi_message_nas_network_scan_output_get_network_information ()

-
gboolean
-qmi_message_nas_network_scan_output_get_network_information
-                               (QmiMessageNasNetworkScanOutput *self,
-                                GArray **value_network_information,
-                                GError **error);
-

Get the 'Network Information' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessageNasNetworkScanOutput.

 

value_network_information

a placeholder for the output GArray of QmiMessageNasNetworkScanOutputNetworkInformationElement elements, or NULL if not required. Do not free it, it is owned by self -.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.0

-
-
-
-

qmi_message_nas_network_scan_output_get_result ()

-
gboolean
-qmi_message_nas_network_scan_output_get_result
-                               (QmiMessageNasNetworkScanOutput *self,
-                                GError **error);
-

Get the result of the QMI operation.

-
-

Parameters

-
----- - - - - - - - - - - - - -

self

a QmiMessageNasNetworkScanOutput.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the QMI operation succeeded, FALSE if error -is set.

-
-

Since: 1.0

-
-
-
-

qmi_client_nas_network_scan ()

-
void
-qmi_client_nas_network_scan (QmiClientNas *self,
-                             QmiMessageNasNetworkScanInput *input,
-                             guint timeout,
-                             GCancellable *cancellable,
-                             GAsyncReadyCallback callback,
-                             gpointer user_data);
-

Asynchronously sends a Network Scan request to the device.

-

When the operation is finished, callback - will be invoked in the thread-default main loop of the thread you are calling this method from.

-

You can then call qmi_client_nas_network_scan_finish() to get the result of the operation.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

self

a QmiClientNas.

 

input

a QmiMessageNasNetworkScanInput.

 

timeout

maximum time to wait for the method to complete, in seconds.

 

cancellable

a GCancellable or NULL.

 

callback

a GAsyncReadyCallback to call when the request is satisfied.

 

user_data

user data to pass to callback -.

 
-
-

Since: 1.0

-
-
-
-

qmi_client_nas_network_scan_finish ()

-
QmiMessageNasNetworkScanOutput *
-qmi_client_nas_network_scan_finish (QmiClientNas *self,
-                                    GAsyncResult *res,
-                                    GError **error);
-

Finishes an async operation started with qmi_client_nas_network_scan().

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiClientNas.

 

res

the GAsyncResult obtained from the GAsyncReadyCallback passed to qmi_client_nas_network_scan().

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

a QmiMessageNasNetworkScanOutput, or NULL if error -is set. The returned value should be freed with qmi_message_nas_network_scan_output_unref().

-
-

Since: 1.0

-
-
-
-

Types and Values

-
-

QmiMessageNasNetworkScanInput

-
typedef struct _QmiMessageNasNetworkScanInput QmiMessageNasNetworkScanInput;
-

The QmiMessageNasNetworkScanInput structure contains private data and should only be accessed -using the provided API.

-

Since: 1.0

-
-
-
-

QmiMessageNasNetworkScanOutput

-
typedef struct _QmiMessageNasNetworkScanOutput QmiMessageNasNetworkScanOutput;
-

The QmiMessageNasNetworkScanOutput structure contains private data and should only be accessed -using the provided API.

-

Since: 1.0

-
-
-
-

QmiMessageNasNetworkScanOutputMncPcsDigitIncludeStatusElement

-
typedef struct {
-    guint16 mcc;
-    guint16 mnc;
-    gboolean includes_pcs_digit;
-} QmiMessageNasNetworkScanOutputMncPcsDigitIncludeStatusElement;
-
-

A QmiMessageNasNetworkScanOutputMncPcsDigitIncludeStatusElement struct.

-
-

Members

-
----- - - - - - - - - - - - - - - - - - -

guint16 mcc;

a guint16.

 

guint16 mnc;

a guint16.

 

gboolean includes_pcs_digit;

a gboolean.

 
-
-

Since: 1.0

-
-
-
-

QmiMessageNasNetworkScanOutputRadioAccessTechnologyElement

-
typedef struct {
-    guint16 mcc;
-    guint16 mnc;
-    QmiNasRadioInterface radio_interface;
-} QmiMessageNasNetworkScanOutputRadioAccessTechnologyElement;
-
-

A QmiMessageNasNetworkScanOutputRadioAccessTechnologyElement struct.

-
-

Members

-
----- - - - - - - - - - - - - - - - - - -

guint16 mcc;

a guint16.

 

guint16 mnc;

a guint16.

 

QmiNasRadioInterface radio_interface;

a QmiNasRadioInterface.

 
-
-

Since: 1.0

-
-
-
-

QmiMessageNasNetworkScanOutputNetworkInformationElement

-
typedef struct {
-    guint16 mcc;
-    guint16 mnc;
-    QmiNasNetworkStatus network_status;
-    gchar *description;
-} QmiMessageNasNetworkScanOutputNetworkInformationElement;
-
-

A QmiMessageNasNetworkScanOutputNetworkInformationElement struct.

-
-

Members

-
----- - - - - - - - - - - - - - - - - - - - - - - -

guint16 mcc;

a guint16.

 

guint16 mnc;

a guint16.

 

QmiNasNetworkStatus network_status;

a QmiNasNetworkStatus.

 

gchar *description;

a string.

 
-
-

Since: 1.0

-
-
-
- - - \ No newline at end of file diff -Nru libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-NAS-Network-Scan-request.html libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-NAS-Network-Scan-request.html --- libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-NAS-Network-Scan-request.html 1970-01-01 01:00:00.000000000 +0100 +++ libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-NAS-Network-Scan-request.html 2019-01-08 15:19:01.000000000 +0100 @@ -0,0 +1,821 @@ + + + + +NAS Network Scan request: libqmi-glib Reference Manual + + + + + + + + + + + + + + + + +
+
+
+ + +
+

NAS Network Scan request

+

NAS Network Scan request

+
+ + +
+

Object Hierarchy

+
    GBoxed
+    ├── QmiMessageNasNetworkScanInput
+    ╰── QmiMessageNasNetworkScanOutput
+
+
+
+

Description

+
+
+

Functions

+
+

qmi_message_nas_network_scan_input_new ()

+
QmiMessageNasNetworkScanInput *
+qmi_message_nas_network_scan_input_new
+                               (void);
+

Allocates a new QmiMessageNasNetworkScanInput.

+
+

Returns

+

the newly created QmiMessageNasNetworkScanInput. The returned value should be freed with qmi_message_nas_network_scan_input_unref().

+
+

Since: 1.0

+
+
+
+

qmi_message_nas_network_scan_input_ref ()

+
QmiMessageNasNetworkScanInput *
+qmi_message_nas_network_scan_input_ref
+                               (QmiMessageNasNetworkScanInput *self);
+

Atomically increments the reference count of self + by one.

+
+

Parameters

+
+++++ + + + + + +

self

a QmiMessageNasNetworkScanInput.

 
+
+
+

Returns

+

the new reference to self +.

+
+

Since: 1.0

+
+
+
+

qmi_message_nas_network_scan_input_unref ()

+
void
+qmi_message_nas_network_scan_input_unref
+                               (QmiMessageNasNetworkScanInput *self);
+

Atomically decrements the reference count of self + by one. +If the reference count drops to 0, self + is completely disposed.

+
+

Parameters

+
+++++ + + + + + +

self

a QmiMessageNasNetworkScanInput.

 
+
+

Since: 1.0

+
+
+
+

qmi_message_nas_network_scan_input_get_network_type ()

+
gboolean
+qmi_message_nas_network_scan_input_get_network_type
+                               (QmiMessageNasNetworkScanInput *self,
+                                QmiNasNetworkScanType *value_network_type,
+                                GError **error);
+

Get the 'Network Type' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageNasNetworkScanInput.

 

value_network_type

a placeholder for the output QmiNasNetworkScanType, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.0

+
+
+
+

qmi_message_nas_network_scan_input_set_network_type ()

+
gboolean
+qmi_message_nas_network_scan_input_set_network_type
+                               (QmiMessageNasNetworkScanInput *self,
+                                QmiNasNetworkScanType value_network_type,
+                                GError **error);
+

Set the 'Network Type' field in the message.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageNasNetworkScanInput.

 

value_network_type

a QmiNasNetworkScanType.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if value +was successfully set, FALSE otherwise.

+
+

Since: 1.0

+
+
+
+

qmi_message_nas_network_scan_output_ref ()

+
QmiMessageNasNetworkScanOutput *
+qmi_message_nas_network_scan_output_ref
+                               (QmiMessageNasNetworkScanOutput *self);
+

Atomically increments the reference count of self + by one.

+
+

Parameters

+
+++++ + + + + + +

self

a QmiMessageNasNetworkScanOutput.

 
+
+
+

Returns

+

the new reference to self +.

+
+

Since: 1.0

+
+
+
+

qmi_message_nas_network_scan_output_unref ()

+
void
+qmi_message_nas_network_scan_output_unref
+                               (QmiMessageNasNetworkScanOutput *self);
+

Atomically decrements the reference count of self + by one. +If the reference count drops to 0, self + is completely disposed.

+
+

Parameters

+
+++++ + + + + + +

self

a QmiMessageNasNetworkScanOutput.

 
+
+

Since: 1.0

+
+
+
+

qmi_message_nas_network_scan_output_get_mnc_pcs_digit_include_status ()

+
gboolean
+qmi_message_nas_network_scan_output_get_mnc_pcs_digit_include_status
+                               (QmiMessageNasNetworkScanOutput *self,
+                                GArray **value_mnc_pcs_digit_include_status,
+                                GError **error);
+

Get the 'MNC PCS Digit Include Status' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageNasNetworkScanOutput.

 

value_mnc_pcs_digit_include_status

a placeholder for the output GArray of QmiMessageNasNetworkScanOutputMncPcsDigitIncludeStatusElement elements, or NULL if not required. Do not free it, it is owned by self +.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.0

+
+
+
+

qmi_message_nas_network_scan_output_get_radio_access_technology ()

+
gboolean
+qmi_message_nas_network_scan_output_get_radio_access_technology
+                               (QmiMessageNasNetworkScanOutput *self,
+                                GArray **value_radio_access_technology,
+                                GError **error);
+

Get the 'Radio Access Technology' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageNasNetworkScanOutput.

 

value_radio_access_technology

a placeholder for the output GArray of QmiMessageNasNetworkScanOutputRadioAccessTechnologyElement elements, or NULL if not required. Do not free it, it is owned by self +.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.0

+
+
+
+

qmi_message_nas_network_scan_output_get_network_information ()

+
gboolean
+qmi_message_nas_network_scan_output_get_network_information
+                               (QmiMessageNasNetworkScanOutput *self,
+                                GArray **value_network_information,
+                                GError **error);
+

Get the 'Network Information' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageNasNetworkScanOutput.

 

value_network_information

a placeholder for the output GArray of QmiMessageNasNetworkScanOutputNetworkInformationElement elements, or NULL if not required. Do not free it, it is owned by self +.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.0

+
+
+
+

qmi_message_nas_network_scan_output_get_result ()

+
gboolean
+qmi_message_nas_network_scan_output_get_result
+                               (QmiMessageNasNetworkScanOutput *self,
+                                GError **error);
+

Get the result of the QMI operation.

+
+

Parameters

+
+++++ + + + + + + + + + + + + +

self

a QmiMessageNasNetworkScanOutput.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the QMI operation succeeded, FALSE if error +is set.

+
+

Since: 1.0

+
+
+
+

qmi_client_nas_network_scan ()

+
void
+qmi_client_nas_network_scan (QmiClientNas *self,
+                             QmiMessageNasNetworkScanInput *input,
+                             guint timeout,
+                             GCancellable *cancellable,
+                             GAsyncReadyCallback callback,
+                             gpointer user_data);
+

Asynchronously sends a Network Scan request to the device.

+

When the operation is finished, callback + will be invoked in the thread-default main loop of the thread you are calling this method from.

+

You can then call qmi_client_nas_network_scan_finish() to get the result of the operation.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

self

a QmiClientNas.

 

input

a QmiMessageNasNetworkScanInput.

 

timeout

maximum time to wait for the method to complete, in seconds.

 

cancellable

a GCancellable or NULL.

 

callback

a GAsyncReadyCallback to call when the request is satisfied.

 

user_data

user data to pass to callback +.

 
+
+

Since: 1.0

+
+
+
+

qmi_client_nas_network_scan_finish ()

+
QmiMessageNasNetworkScanOutput *
+qmi_client_nas_network_scan_finish (QmiClientNas *self,
+                                    GAsyncResult *res,
+                                    GError **error);
+

Finishes an async operation started with qmi_client_nas_network_scan().

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiClientNas.

 

res

the GAsyncResult obtained from the GAsyncReadyCallback passed to qmi_client_nas_network_scan().

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

a QmiMessageNasNetworkScanOutput, or NULL if error +is set. The returned value should be freed with qmi_message_nas_network_scan_output_unref().

+
+

Since: 1.0

+
+
+
+

Types and Values

+
+

QmiMessageNasNetworkScanInput

+
typedef struct _QmiMessageNasNetworkScanInput QmiMessageNasNetworkScanInput;
+

The QmiMessageNasNetworkScanInput structure contains private data and should only be accessed +using the provided API.

+

Since: 1.0

+
+
+
+

QmiMessageNasNetworkScanOutput

+
typedef struct _QmiMessageNasNetworkScanOutput QmiMessageNasNetworkScanOutput;
+

The QmiMessageNasNetworkScanOutput structure contains private data and should only be accessed +using the provided API.

+

Since: 1.0

+
+
+
+

QmiMessageNasNetworkScanOutputMncPcsDigitIncludeStatusElement

+
typedef struct {
+    guint16 mcc;
+    guint16 mnc;
+    gboolean includes_pcs_digit;
+} QmiMessageNasNetworkScanOutputMncPcsDigitIncludeStatusElement;
+
+

A QmiMessageNasNetworkScanOutputMncPcsDigitIncludeStatusElement struct.

+
+

Members

+
+++++ + + + + + + + + + + + + + + + + + +

guint16 mcc;

a guint16.

 

guint16 mnc;

a guint16.

 

gboolean includes_pcs_digit;

a gboolean.

 
+
+

Since: 1.0

+
+
+
+

QmiMessageNasNetworkScanOutputRadioAccessTechnologyElement

+
typedef struct {
+    guint16 mcc;
+    guint16 mnc;
+    QmiNasRadioInterface radio_interface;
+} QmiMessageNasNetworkScanOutputRadioAccessTechnologyElement;
+
+

A QmiMessageNasNetworkScanOutputRadioAccessTechnologyElement struct.

+
+

Members

+
+++++ + + + + + + + + + + + + + + + + + +

guint16 mcc;

a guint16.

 

guint16 mnc;

a guint16.

 

QmiNasRadioInterface radio_interface;

a QmiNasRadioInterface.

 
+
+

Since: 1.0

+
+
+
+

QmiMessageNasNetworkScanOutputNetworkInformationElement

+
typedef struct {
+    guint16 mcc;
+    guint16 mnc;
+    QmiNasNetworkStatus network_status;
+    gchar *description;
+} QmiMessageNasNetworkScanOutputNetworkInformationElement;
+
+

A QmiMessageNasNetworkScanOutputNetworkInformationElement struct.

+
+

Members

+
+++++ + + + + + + + + + + + + + + + + + + + + + + +

guint16 mcc;

a guint16.

 

guint16 mnc;

a guint16.

 

QmiNasNetworkStatus network_status;

a QmiNasNetworkStatus.

 

gchar *description;

a string.

 
+
+

Since: 1.0

+
+
+
+ + + \ No newline at end of file diff -Nru libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-NAS-Network-Time.html libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-NAS-Network-Time.html --- libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-NAS-Network-Time.html 2017-03-22 12:28:29.000000000 +0100 +++ libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-NAS-Network-Time.html 1970-01-01 01:00:00.000000000 +0100 @@ -1,397 +0,0 @@ - - - - -NAS Network Time: libqmi-glib Reference Manual - - - - - - - - - - - - - - - - -
-
-
- - -
-

NAS Network Time

-

NAS Network Time

-
- -
-

Types and Values

- -
-
-

Object Hierarchy

-
    GBoxed
-    ╰── QmiIndicationNasNetworkTimeOutput
-
-
-
-

Description

-
-
-

Functions

-
-

qmi_indication_nas_network_time_output_ref ()

-
QmiIndicationNasNetworkTimeOutput *
-qmi_indication_nas_network_time_output_ref
-                               (QmiIndicationNasNetworkTimeOutput *self);
-

Atomically increments the reference count of self - by one.

-
-

Parameters

-
----- - - - - - -

self

a QmiIndicationNasNetworkTimeOutput.

 
-
-
-

Returns

-

the new reference to self -.

-
-

Since: 1.0

-
-
-
-

qmi_indication_nas_network_time_output_unref ()

-
void
-qmi_indication_nas_network_time_output_unref
-                               (QmiIndicationNasNetworkTimeOutput *self);
-

Atomically decrements the reference count of self - by one. -If the reference count drops to 0, self - is completely disposed.

-
-

Parameters

-
----- - - - - - -

self

a QmiIndicationNasNetworkTimeOutput.

 
-
-

Since: 1.0

-
-
-
-

qmi_indication_nas_network_time_output_get_radio_interface ()

-
gboolean
-qmi_indication_nas_network_time_output_get_radio_interface
-                               (QmiIndicationNasNetworkTimeOutput *self,
-                                QmiNasRadioInterface *value_radio_interface,
-                                GError **error);
-

Get the 'Radio Interface' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiIndicationNasNetworkTimeOutput.

 

value_radio_interface

a placeholder for the output QmiNasRadioInterface, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.4

-
-
-
-

qmi_indication_nas_network_time_output_get_daylight_savings_adjustment ()

-
gboolean
-qmi_indication_nas_network_time_output_get_daylight_savings_adjustment
-                               (QmiIndicationNasNetworkTimeOutput *self,
-                                QmiNasDaylightSavingsAdjustment *value_daylight_savings_adjustment,
-                                GError **error);
-

Get the 'Daylight Savings Adjustment' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiIndicationNasNetworkTimeOutput.

 

value_daylight_savings_adjustment

a placeholder for the output QmiNasDaylightSavingsAdjustment, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.4

-
-
-
-

qmi_indication_nas_network_time_output_get_timezone_offset ()

-
gboolean
-qmi_indication_nas_network_time_output_get_timezone_offset
-                               (QmiIndicationNasNetworkTimeOutput *self,
-                                gint8 *value_timezone_offset,
-                                GError **error);
-

Get the 'Timezone Offset' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiIndicationNasNetworkTimeOutput.

 

value_timezone_offset

a placeholder for the output gint8, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.4

-
-
-
-

qmi_indication_nas_network_time_output_get_universal_time ()

-
gboolean
-qmi_indication_nas_network_time_output_get_universal_time
-                               (QmiIndicationNasNetworkTimeOutput *self,
-                                guint16 *value_universal_time_year,
-                                guint8 *value_universal_time_month,
-                                guint8 *value_universal_time_day,
-                                guint8 *value_universal_time_hour,
-                                guint8 *value_universal_time_minute,
-                                guint8 *value_universal_time_second,
-                                QmiNasDayOfWeek *value_universal_time_day_of_week,
-                                GError **error);
-

Get the 'Universal Time' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

self

a QmiIndicationNasNetworkTimeOutput.

 

value_universal_time_year

a placeholder for the output guint16, or NULL if not required.

 

value_universal_time_month

a placeholder for the output guint8, or NULL if not required.

 

value_universal_time_day

a placeholder for the output guint8, or NULL if not required.

 

value_universal_time_hour

a placeholder for the output guint8, or NULL if not required.

 

value_universal_time_minute

a placeholder for the output guint8, or NULL if not required.

 

value_universal_time_second

a placeholder for the output guint8, or NULL if not required.

 

value_universal_time_day_of_week

a placeholder for the output QmiNasDayOfWeek, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.4

-
-
-
-

Types and Values

-
-

QmiIndicationNasNetworkTimeOutput

-
typedef struct _QmiIndicationNasNetworkTimeOutput QmiIndicationNasNetworkTimeOutput;
-

The QmiIndicationNasNetworkTimeOutput structure contains private data and should only be accessed -using the provided API.

-

Since: 1.0

-
-
-
- - - \ No newline at end of file diff -Nru libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-NAS-Network-Time-indication.html libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-NAS-Network-Time-indication.html --- libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-NAS-Network-Time-indication.html 1970-01-01 01:00:00.000000000 +0100 +++ libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-NAS-Network-Time-indication.html 2019-01-08 15:19:01.000000000 +0100 @@ -0,0 +1,397 @@ + + + + +NAS Network Time indication: libqmi-glib Reference Manual + + + + + + + + + + + + + + + + +
+
+
+ + +
+

NAS Network Time indication

+

NAS Network Time indication

+
+ +
+

Types and Values

+ +
+
+

Object Hierarchy

+
    GBoxed
+    ╰── QmiIndicationNasNetworkTimeOutput
+
+
+
+

Description

+
+
+

Functions

+
+

qmi_indication_nas_network_time_output_ref ()

+
QmiIndicationNasNetworkTimeOutput *
+qmi_indication_nas_network_time_output_ref
+                               (QmiIndicationNasNetworkTimeOutput *self);
+

Atomically increments the reference count of self + by one.

+
+

Parameters

+
+++++ + + + + + +

self

a QmiIndicationNasNetworkTimeOutput.

 
+
+
+

Returns

+

the new reference to self +.

+
+

Since: 1.0

+
+
+
+

qmi_indication_nas_network_time_output_unref ()

+
void
+qmi_indication_nas_network_time_output_unref
+                               (QmiIndicationNasNetworkTimeOutput *self);
+

Atomically decrements the reference count of self + by one. +If the reference count drops to 0, self + is completely disposed.

+
+

Parameters

+
+++++ + + + + + +

self

a QmiIndicationNasNetworkTimeOutput.

 
+
+

Since: 1.0

+
+
+
+

qmi_indication_nas_network_time_output_get_radio_interface ()

+
gboolean
+qmi_indication_nas_network_time_output_get_radio_interface
+                               (QmiIndicationNasNetworkTimeOutput *self,
+                                QmiNasRadioInterface *value_radio_interface,
+                                GError **error);
+

Get the 'Radio Interface' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiIndicationNasNetworkTimeOutput.

 

value_radio_interface

a placeholder for the output QmiNasRadioInterface, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.4

+
+
+
+

qmi_indication_nas_network_time_output_get_daylight_savings_adjustment ()

+
gboolean
+qmi_indication_nas_network_time_output_get_daylight_savings_adjustment
+                               (QmiIndicationNasNetworkTimeOutput *self,
+                                QmiNasDaylightSavingsAdjustment *value_daylight_savings_adjustment,
+                                GError **error);
+

Get the 'Daylight Savings Adjustment' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiIndicationNasNetworkTimeOutput.

 

value_daylight_savings_adjustment

a placeholder for the output QmiNasDaylightSavingsAdjustment, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.4

+
+
+
+

qmi_indication_nas_network_time_output_get_timezone_offset ()

+
gboolean
+qmi_indication_nas_network_time_output_get_timezone_offset
+                               (QmiIndicationNasNetworkTimeOutput *self,
+                                gint8 *value_timezone_offset,
+                                GError **error);
+

Get the 'Timezone Offset' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiIndicationNasNetworkTimeOutput.

 

value_timezone_offset

a placeholder for the output gint8, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.4

+
+
+
+

qmi_indication_nas_network_time_output_get_universal_time ()

+
gboolean
+qmi_indication_nas_network_time_output_get_universal_time
+                               (QmiIndicationNasNetworkTimeOutput *self,
+                                guint16 *value_universal_time_year,
+                                guint8 *value_universal_time_month,
+                                guint8 *value_universal_time_day,
+                                guint8 *value_universal_time_hour,
+                                guint8 *value_universal_time_minute,
+                                guint8 *value_universal_time_second,
+                                QmiNasDayOfWeek *value_universal_time_day_of_week,
+                                GError **error);
+

Get the 'Universal Time' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

self

a QmiIndicationNasNetworkTimeOutput.

 

value_universal_time_year

a placeholder for the output guint16, or NULL if not required.

 

value_universal_time_month

a placeholder for the output guint8, or NULL if not required.

 

value_universal_time_day

a placeholder for the output guint8, or NULL if not required.

 

value_universal_time_hour

a placeholder for the output guint8, or NULL if not required.

 

value_universal_time_minute

a placeholder for the output guint8, or NULL if not required.

 

value_universal_time_second

a placeholder for the output guint8, or NULL if not required.

 

value_universal_time_day_of_week

a placeholder for the output QmiNasDayOfWeek, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.4

+
+
+
+

Types and Values

+
+

QmiIndicationNasNetworkTimeOutput

+
typedef struct _QmiIndicationNasNetworkTimeOutput QmiIndicationNasNetworkTimeOutput;
+

The QmiIndicationNasNetworkTimeOutput structure contains private data and should only be accessed +using the provided API.

+

Since: 1.0

+
+
+
+ + + \ No newline at end of file diff -Nru libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-NAS-Operator-Name.html libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-NAS-Operator-Name.html --- libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-NAS-Operator-Name.html 2017-03-22 12:28:28.000000000 +0100 +++ libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-NAS-Operator-Name.html 1970-01-01 01:00:00.000000000 +0100 @@ -1,568 +0,0 @@ - - - - -NAS Operator Name: libqmi-glib Reference Manual - - - - - - - - - - - - - - - - -
-
-
- - -
-

NAS Operator Name

-

NAS Operator Name

-
- - -
-

Object Hierarchy

-
    GBoxed
-    ╰── QmiIndicationNasOperatorNameOutput
-
-
-
-

Description

-
-
-

Functions

-
-

qmi_indication_nas_operator_name_output_ref ()

-
QmiIndicationNasOperatorNameOutput *
-qmi_indication_nas_operator_name_output_ref
-                               (QmiIndicationNasOperatorNameOutput *self);
-

Atomically increments the reference count of self - by one.

-
-

Parameters

-
----- - - - - - -

self

a QmiIndicationNasOperatorNameOutput.

 
-
-
-

Returns

-

the new reference to self -.

-
-

Since: 1.18

-
-
-
-

qmi_indication_nas_operator_name_output_unref ()

-
void
-qmi_indication_nas_operator_name_output_unref
-                               (QmiIndicationNasOperatorNameOutput *self);
-

Atomically decrements the reference count of self - by one. -If the reference count drops to 0, self - is completely disposed.

-
-

Parameters

-
----- - - - - - -

self

a QmiIndicationNasOperatorNameOutput.

 
-
-

Since: 1.18

-
-
-
-

qmi_indication_nas_operator_name_output_get_operator_nitz_information ()

-
gboolean
-qmi_indication_nas_operator_name_output_get_operator_nitz_information
-                               (QmiIndicationNasOperatorNameOutput *self,
-                                QmiNasPlmnEncodingScheme *value_operator_nitz_information_name_encoding,
-                                QmiNasPlmnNameCountryInitials *value_operator_nitz_information_short_country_initials,
-                                QmiNasPlmnNameSpareBits *value_operator_nitz_information_long_name_spare_bits,
-                                QmiNasPlmnNameSpareBits *value_operator_nitz_information_short_name_spare_bits,
-                                const gchar **value_operator_nitz_information_long_name,
-                                const gchar **value_operator_nitz_information_short_name,
-                                GError **error);
-

Get the 'Operator NITZ Information' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

self

a QmiIndicationNasOperatorNameOutput.

 

value_operator_nitz_information_name_encoding

a placeholder for the output QmiNasPlmnEncodingScheme, or NULL if not required.

 

value_operator_nitz_information_short_country_initials

a placeholder for the output QmiNasPlmnNameCountryInitials, or NULL if not required.

 

value_operator_nitz_information_long_name_spare_bits

a placeholder for the output QmiNasPlmnNameSpareBits, or NULL if not required.

 

value_operator_nitz_information_short_name_spare_bits

a placeholder for the output QmiNasPlmnNameSpareBits, or NULL if not required.

 

value_operator_nitz_information_long_name

a placeholder for the output constant string, or NULL if not required.

 

value_operator_nitz_information_short_name

a placeholder for the output constant string, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.18

-
-
-
-

qmi_indication_nas_operator_name_output_get_operator_string_name ()

-
gboolean
-qmi_indication_nas_operator_name_output_get_operator_string_name
-                               (QmiIndicationNasOperatorNameOutput *self,
-                                const gchar **value_operator_string_name,
-                                GError **error);
-

Get the 'Operator String Name' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiIndicationNasOperatorNameOutput.

 

value_operator_string_name

a placeholder for the output constant string, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.18

-
-
-
-

qmi_indication_nas_operator_name_output_get_operator_plmn_name ()

-
gboolean
-qmi_indication_nas_operator_name_output_get_operator_plmn_name
-                               (QmiIndicationNasOperatorNameOutput *self,
-                                GArray **value_operator_plmn_name,
-                                GError **error);
-

Get the 'Operator PLMN Name' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiIndicationNasOperatorNameOutput.

 

value_operator_plmn_name

a placeholder for the output GArray of QmiIndicationNasOperatorNameOutputOperatorPlmnNameElement elements, or NULL if not required. Do not free it, it is owned by self -.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.18

-
-
-
-

qmi_indication_nas_operator_name_output_get_operator_plmn_list ()

-
gboolean
-qmi_indication_nas_operator_name_output_get_operator_plmn_list
-                               (QmiIndicationNasOperatorNameOutput *self,
-                                GArray **value_operator_plmn_list,
-                                GError **error);
-

Get the 'Operator PLMN List' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiIndicationNasOperatorNameOutput.

 

value_operator_plmn_list

a placeholder for the output GArray of QmiIndicationNasOperatorNameOutputOperatorPlmnListElement elements, or NULL if not required. Do not free it, it is owned by self -.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.18

-
-
-
-

qmi_indication_nas_operator_name_output_get_service_provider_name ()

-
gboolean
-qmi_indication_nas_operator_name_output_get_service_provider_name
-                               (QmiIndicationNasOperatorNameOutput *self,
-                                QmiNasNetworkNameDisplayCondition *value_service_provider_name_name_display_condition,
-                                const gchar **value_service_provider_name_name,
-                                GError **error);
-

Get the 'Service Provider Name' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - - - - - - -

self

a QmiIndicationNasOperatorNameOutput.

 

value_service_provider_name_name_display_condition

a placeholder for the output QmiNasNetworkNameDisplayCondition, or NULL if not required.

 

value_service_provider_name_name

a placeholder for the output constant string, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.18

-
-
-
-

Types and Values

-
-

QmiIndicationNasOperatorNameOutput

-
typedef struct _QmiIndicationNasOperatorNameOutput QmiIndicationNasOperatorNameOutput;
-

The QmiIndicationNasOperatorNameOutput structure contains private data and should only be accessed -using the provided API.

-

Since: 1.18

-
-
-
-

QmiIndicationNasOperatorNameOutputOperatorPlmnNameElement

-
typedef struct {
-    QmiNasPlmnEncodingScheme name_encoding;
-    QmiNasPlmnNameCountryInitials short_country_initials;
-    QmiNasPlmnNameSpareBits long_name_spare_bits;
-    QmiNasPlmnNameSpareBits short_name_spare_bits;
-    GArray *long_name;
-    GArray *short_name;
-} QmiIndicationNasOperatorNameOutputOperatorPlmnNameElement;
-
-

A QmiIndicationNasOperatorNameOutputOperatorPlmnNameElement struct.

-
-

Members

-
----- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

QmiNasPlmnEncodingScheme name_encoding;

a QmiNasPlmnEncodingScheme.

 

QmiNasPlmnNameCountryInitials short_country_initials;

a QmiNasPlmnNameCountryInitials.

 

QmiNasPlmnNameSpareBits long_name_spare_bits;

a QmiNasPlmnNameSpareBits.

 

QmiNasPlmnNameSpareBits short_name_spare_bits;

a QmiNasPlmnNameSpareBits.

 

GArray *long_name;

a GArray of guint8 elements.

 

GArray *short_name;

a GArray of guint8 elements.

 
-
-

Since: 1.18

-
-
-
-

QmiIndicationNasOperatorNameOutputOperatorPlmnListElement

-
typedef struct {
-    gchar *mcc;
-    gchar *mnc;
-    guint16 lac1;
-    guint16 lac2;
-    guint8 plmn_name_record_identifier;
-} QmiIndicationNasOperatorNameOutputOperatorPlmnListElement;
-
-

A QmiIndicationNasOperatorNameOutputOperatorPlmnListElement struct.

-
-

Members

-
----- - - - - - - - - - - - - - - - - - - - - - - - - - - - -

gchar *mcc;

a string of exactly 3 characters.

 

gchar *mnc;

a string of exactly 3 characters.

 

guint16 lac1;

a guint16.

 

guint16 lac2;

a guint16.

 

guint8 plmn_name_record_identifier;

a guint8.

 
-
-

Since: 1.18

-
-
-
- - - \ No newline at end of file diff -Nru libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-NAS-Operator-Name-indication.html libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-NAS-Operator-Name-indication.html --- libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-NAS-Operator-Name-indication.html 1970-01-01 01:00:00.000000000 +0100 +++ libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-NAS-Operator-Name-indication.html 2019-01-08 15:19:01.000000000 +0100 @@ -0,0 +1,568 @@ + + + + +NAS Operator Name indication: libqmi-glib Reference Manual + + + + + + + + + + + + + + + + +
+
+
+ + +
+

NAS Operator Name indication

+

NAS Operator Name indication

+
+ + +
+

Object Hierarchy

+
    GBoxed
+    ╰── QmiIndicationNasOperatorNameOutput
+
+
+
+

Description

+
+
+

Functions

+
+

qmi_indication_nas_operator_name_output_ref ()

+
QmiIndicationNasOperatorNameOutput *
+qmi_indication_nas_operator_name_output_ref
+                               (QmiIndicationNasOperatorNameOutput *self);
+

Atomically increments the reference count of self + by one.

+
+

Parameters

+
+++++ + + + + + +

self

a QmiIndicationNasOperatorNameOutput.

 
+
+
+

Returns

+

the new reference to self +.

+
+

Since: 1.18

+
+
+
+

qmi_indication_nas_operator_name_output_unref ()

+
void
+qmi_indication_nas_operator_name_output_unref
+                               (QmiIndicationNasOperatorNameOutput *self);
+

Atomically decrements the reference count of self + by one. +If the reference count drops to 0, self + is completely disposed.

+
+

Parameters

+
+++++ + + + + + +

self

a QmiIndicationNasOperatorNameOutput.

 
+
+

Since: 1.18

+
+
+
+

qmi_indication_nas_operator_name_output_get_operator_nitz_information ()

+
gboolean
+qmi_indication_nas_operator_name_output_get_operator_nitz_information
+                               (QmiIndicationNasOperatorNameOutput *self,
+                                QmiNasPlmnEncodingScheme *value_operator_nitz_information_name_encoding,
+                                QmiNasPlmnNameCountryInitials *value_operator_nitz_information_short_country_initials,
+                                QmiNasPlmnNameSpareBits *value_operator_nitz_information_long_name_spare_bits,
+                                QmiNasPlmnNameSpareBits *value_operator_nitz_information_short_name_spare_bits,
+                                const gchar **value_operator_nitz_information_long_name,
+                                const gchar **value_operator_nitz_information_short_name,
+                                GError **error);
+

Get the 'Operator NITZ Information' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

self

a QmiIndicationNasOperatorNameOutput.

 

value_operator_nitz_information_name_encoding

a placeholder for the output QmiNasPlmnEncodingScheme, or NULL if not required.

 

value_operator_nitz_information_short_country_initials

a placeholder for the output QmiNasPlmnNameCountryInitials, or NULL if not required.

 

value_operator_nitz_information_long_name_spare_bits

a placeholder for the output QmiNasPlmnNameSpareBits, or NULL if not required.

 

value_operator_nitz_information_short_name_spare_bits

a placeholder for the output QmiNasPlmnNameSpareBits, or NULL if not required.

 

value_operator_nitz_information_long_name

a placeholder for the output constant string, or NULL if not required.

 

value_operator_nitz_information_short_name

a placeholder for the output constant string, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.18

+
+
+
+

qmi_indication_nas_operator_name_output_get_operator_string_name ()

+
gboolean
+qmi_indication_nas_operator_name_output_get_operator_string_name
+                               (QmiIndicationNasOperatorNameOutput *self,
+                                const gchar **value_operator_string_name,
+                                GError **error);
+

Get the 'Operator String Name' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiIndicationNasOperatorNameOutput.

 

value_operator_string_name

a placeholder for the output constant string, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.18

+
+
+
+

qmi_indication_nas_operator_name_output_get_operator_plmn_name ()

+
gboolean
+qmi_indication_nas_operator_name_output_get_operator_plmn_name
+                               (QmiIndicationNasOperatorNameOutput *self,
+                                GArray **value_operator_plmn_name,
+                                GError **error);
+

Get the 'Operator PLMN Name' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiIndicationNasOperatorNameOutput.

 

value_operator_plmn_name

a placeholder for the output GArray of QmiIndicationNasOperatorNameOutputOperatorPlmnNameElement elements, or NULL if not required. Do not free it, it is owned by self +.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.18

+
+
+
+

qmi_indication_nas_operator_name_output_get_operator_plmn_list ()

+
gboolean
+qmi_indication_nas_operator_name_output_get_operator_plmn_list
+                               (QmiIndicationNasOperatorNameOutput *self,
+                                GArray **value_operator_plmn_list,
+                                GError **error);
+

Get the 'Operator PLMN List' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiIndicationNasOperatorNameOutput.

 

value_operator_plmn_list

a placeholder for the output GArray of QmiIndicationNasOperatorNameOutputOperatorPlmnListElement elements, or NULL if not required. Do not free it, it is owned by self +.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.18

+
+
+
+

qmi_indication_nas_operator_name_output_get_service_provider_name ()

+
gboolean
+qmi_indication_nas_operator_name_output_get_service_provider_name
+                               (QmiIndicationNasOperatorNameOutput *self,
+                                QmiNasNetworkNameDisplayCondition *value_service_provider_name_name_display_condition,
+                                const gchar **value_service_provider_name_name,
+                                GError **error);
+

Get the 'Service Provider Name' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + + + + + + +

self

a QmiIndicationNasOperatorNameOutput.

 

value_service_provider_name_name_display_condition

a placeholder for the output QmiNasNetworkNameDisplayCondition, or NULL if not required.

 

value_service_provider_name_name

a placeholder for the output constant string, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.18

+
+
+
+

Types and Values

+
+

QmiIndicationNasOperatorNameOutput

+
typedef struct _QmiIndicationNasOperatorNameOutput QmiIndicationNasOperatorNameOutput;
+

The QmiIndicationNasOperatorNameOutput structure contains private data and should only be accessed +using the provided API.

+

Since: 1.18

+
+
+
+

QmiIndicationNasOperatorNameOutputOperatorPlmnNameElement

+
typedef struct {
+    QmiNasPlmnEncodingScheme name_encoding;
+    QmiNasPlmnNameCountryInitials short_country_initials;
+    QmiNasPlmnNameSpareBits long_name_spare_bits;
+    QmiNasPlmnNameSpareBits short_name_spare_bits;
+    GArray *long_name;
+    GArray *short_name;
+} QmiIndicationNasOperatorNameOutputOperatorPlmnNameElement;
+
+

A QmiIndicationNasOperatorNameOutputOperatorPlmnNameElement struct.

+
+

Members

+
+++++ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

QmiNasPlmnEncodingScheme name_encoding;

a QmiNasPlmnEncodingScheme.

 

QmiNasPlmnNameCountryInitials short_country_initials;

a QmiNasPlmnNameCountryInitials.

 

QmiNasPlmnNameSpareBits long_name_spare_bits;

a QmiNasPlmnNameSpareBits.

 

QmiNasPlmnNameSpareBits short_name_spare_bits;

a QmiNasPlmnNameSpareBits.

 

GArray *long_name;

a GArray of guint8 elements.

 

GArray *short_name;

a GArray of guint8 elements.

 
+
+

Since: 1.18

+
+
+
+

QmiIndicationNasOperatorNameOutputOperatorPlmnListElement

+
typedef struct {
+    gchar *mcc;
+    gchar *mnc;
+    guint16 lac1;
+    guint16 lac2;
+    guint8 plmn_name_record_identifier;
+} QmiIndicationNasOperatorNameOutputOperatorPlmnListElement;
+
+

A QmiIndicationNasOperatorNameOutputOperatorPlmnListElement struct.

+
+

Members

+
+++++ + + + + + + + + + + + + + + + + + + + + + + + + + + + +

gchar *mcc;

a string of exactly 3 characters.

 

gchar *mnc;

a string of exactly 3 characters.

 

guint16 lac1;

a guint16.

 

guint16 lac2;

a guint16.

 

guint8 plmn_name_record_identifier;

a guint8.

 
+
+

Since: 1.18

+
+
+
+ + + \ No newline at end of file diff -Nru libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-NAS-Register-Indications.html libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-NAS-Register-Indications.html --- libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-NAS-Register-Indications.html 2017-03-22 12:28:29.000000000 +0100 +++ libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-NAS-Register-Indications.html 1970-01-01 01:00:00.000000000 +0100 @@ -1,1959 +0,0 @@ - - - - -NAS Register Indications: libqmi-glib Reference Manual - - - - - - - - - - - - - - - - -
-
-
- - -
-

NAS Register Indications

-

NAS Register Indications

-
-
-

Functions

-
---- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
-QmiMessageNasRegisterIndicationsInput * - -qmi_message_nas_register_indications_input_new () -
-QmiMessageNasRegisterIndicationsInput * - -qmi_message_nas_register_indications_input_ref () -
-void - -qmi_message_nas_register_indications_input_unref () -
-gboolean - -qmi_message_nas_register_indications_input_get_rf_band_information () -
-gboolean - -qmi_message_nas_register_indications_input_set_rf_band_information () -
-gboolean - -qmi_message_nas_register_indications_input_get_embms_status () -
-gboolean - -qmi_message_nas_register_indications_input_set_embms_status () -
-gboolean - -qmi_message_nas_register_indications_input_get_current_plmn_name () -
-gboolean - -qmi_message_nas_register_indications_input_set_current_plmn_name () -
-gboolean - -qmi_message_nas_register_indications_input_get_managed_roaming () -
-gboolean - -qmi_message_nas_register_indications_input_set_managed_roaming () -
-gboolean - -qmi_message_nas_register_indications_input_get_hdr_session_closed () -
-gboolean - -qmi_message_nas_register_indications_input_set_hdr_session_closed () -
-gboolean - -qmi_message_nas_register_indications_input_get_hdr_new_uati_assigned () -
-gboolean - -qmi_message_nas_register_indications_input_set_hdr_new_uati_assigned () -
-gboolean - -qmi_message_nas_register_indications_input_get_error_rate () -
-gboolean - -qmi_message_nas_register_indications_input_set_error_rate () -
-gboolean - -qmi_message_nas_register_indications_input_get_signal_info () -
-gboolean - -qmi_message_nas_register_indications_input_set_signal_info () -
-gboolean - -qmi_message_nas_register_indications_input_get_system_info () -
-gboolean - -qmi_message_nas_register_indications_input_set_system_info () -
-gboolean - -qmi_message_nas_register_indications_input_get_network_time () -
-gboolean - -qmi_message_nas_register_indications_input_set_network_time () -
-gboolean - -qmi_message_nas_register_indications_input_get_subscription_info () -
-gboolean - -qmi_message_nas_register_indications_input_set_subscription_info () -
-gboolean - -qmi_message_nas_register_indications_input_get_dual_standby_preference () -
-gboolean - -qmi_message_nas_register_indications_input_set_dual_standby_preference () -
-gboolean - -qmi_message_nas_register_indications_input_get_serving_system_events () -
-gboolean - -qmi_message_nas_register_indications_input_set_serving_system_events () -
-gboolean - -qmi_message_nas_register_indications_input_get_ddtm_events () -
-gboolean - -qmi_message_nas_register_indications_input_set_ddtm_events () -
-gboolean - -qmi_message_nas_register_indications_input_get_system_selection_preference () -
-gboolean - -qmi_message_nas_register_indications_input_set_system_selection_preference () -
-QmiMessageNasRegisterIndicationsOutput * - -qmi_message_nas_register_indications_output_ref () -
-void - -qmi_message_nas_register_indications_output_unref () -
-gboolean - -qmi_message_nas_register_indications_output_get_result () -
-void - -qmi_client_nas_register_indications () -
-QmiMessageNasRegisterIndicationsOutput * - -qmi_client_nas_register_indications_finish () -
-
-
-

Types and Values

- -
-
-

Object Hierarchy

-
    GBoxed
-    ├── QmiMessageNasRegisterIndicationsInput
-    ╰── QmiMessageNasRegisterIndicationsOutput
-
-
-
-

Description

-
-
-

Functions

-
-

qmi_message_nas_register_indications_input_new ()

-
QmiMessageNasRegisterIndicationsInput *
-qmi_message_nas_register_indications_input_new
-                               (void);
-

Allocates a new QmiMessageNasRegisterIndicationsInput.

-
-

Returns

-

the newly created QmiMessageNasRegisterIndicationsInput. The returned value should be freed with qmi_message_nas_register_indications_input_unref().

-
-

Since: 1.0

-
-
-
-

qmi_message_nas_register_indications_input_ref ()

-
QmiMessageNasRegisterIndicationsInput *
-qmi_message_nas_register_indications_input_ref
-                               (QmiMessageNasRegisterIndicationsInput *self);
-

Atomically increments the reference count of self - by one.

-
-

Parameters

-
----- - - - - - -

self

a QmiMessageNasRegisterIndicationsInput.

 
-
-
-

Returns

-

the new reference to self -.

-
-

Since: 1.0

-
-
-
-

qmi_message_nas_register_indications_input_unref ()

-
void
-qmi_message_nas_register_indications_input_unref
-                               (QmiMessageNasRegisterIndicationsInput *self);
-

Atomically decrements the reference count of self - by one. -If the reference count drops to 0, self - is completely disposed.

-
-

Parameters

-
----- - - - - - -

self

a QmiMessageNasRegisterIndicationsInput.

 
-
-

Since: 1.0

-
-
-
-

qmi_message_nas_register_indications_input_get_rf_band_information ()

-
gboolean
-qmi_message_nas_register_indications_input_get_rf_band_information
-                               (QmiMessageNasRegisterIndicationsInput *self,
-                                gboolean *value_rf_band_information,
-                                GError **error);
-

Get the 'RF Band Information' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessageNasRegisterIndicationsInput.

 

value_rf_band_information

a placeholder for the output gboolean, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.0

-
-
-
-

qmi_message_nas_register_indications_input_set_rf_band_information ()

-
gboolean
-qmi_message_nas_register_indications_input_set_rf_band_information
-                               (QmiMessageNasRegisterIndicationsInput *self,
-                                gboolean value_rf_band_information,
-                                GError **error);
-

Set the 'RF Band Information' field in the message.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessageNasRegisterIndicationsInput.

 

value_rf_band_information

a gboolean.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if value -was successfully set, FALSE otherwise.

-
-

Since: 1.0

-
-
-
-

qmi_message_nas_register_indications_input_get_embms_status ()

-
gboolean
-qmi_message_nas_register_indications_input_get_embms_status
-                               (QmiMessageNasRegisterIndicationsInput *self,
-                                gboolean *value_embms_status,
-                                GError **error);
-

Get the 'eMBMS Status' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessageNasRegisterIndicationsInput.

 

value_embms_status

a placeholder for the output gboolean, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.0

-
-
-
-

qmi_message_nas_register_indications_input_set_embms_status ()

-
gboolean
-qmi_message_nas_register_indications_input_set_embms_status
-                               (QmiMessageNasRegisterIndicationsInput *self,
-                                gboolean value_embms_status,
-                                GError **error);
-

Set the 'eMBMS Status' field in the message.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessageNasRegisterIndicationsInput.

 

value_embms_status

a gboolean.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if value -was successfully set, FALSE otherwise.

-
-

Since: 1.0

-
-
-
-

qmi_message_nas_register_indications_input_get_current_plmn_name ()

-
gboolean
-qmi_message_nas_register_indications_input_get_current_plmn_name
-                               (QmiMessageNasRegisterIndicationsInput *self,
-                                gboolean *value_current_plmn_name,
-                                GError **error);
-

Get the 'Current PLMN Name' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessageNasRegisterIndicationsInput.

 

value_current_plmn_name

a placeholder for the output gboolean, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.0

-
-
-
-

qmi_message_nas_register_indications_input_set_current_plmn_name ()

-
gboolean
-qmi_message_nas_register_indications_input_set_current_plmn_name
-                               (QmiMessageNasRegisterIndicationsInput *self,
-                                gboolean value_current_plmn_name,
-                                GError **error);
-

Set the 'Current PLMN Name' field in the message.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessageNasRegisterIndicationsInput.

 

value_current_plmn_name

a gboolean.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if value -was successfully set, FALSE otherwise.

-
-

Since: 1.0

-
-
-
-

qmi_message_nas_register_indications_input_get_managed_roaming ()

-
gboolean
-qmi_message_nas_register_indications_input_get_managed_roaming
-                               (QmiMessageNasRegisterIndicationsInput *self,
-                                gboolean *value_managed_roaming,
-                                GError **error);
-

Get the 'Managed Roaming' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessageNasRegisterIndicationsInput.

 

value_managed_roaming

a placeholder for the output gboolean, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.0

-
-
-
-

qmi_message_nas_register_indications_input_set_managed_roaming ()

-
gboolean
-qmi_message_nas_register_indications_input_set_managed_roaming
-                               (QmiMessageNasRegisterIndicationsInput *self,
-                                gboolean value_managed_roaming,
-                                GError **error);
-

Set the 'Managed Roaming' field in the message.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessageNasRegisterIndicationsInput.

 

value_managed_roaming

a gboolean.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if value -was successfully set, FALSE otherwise.

-
-

Since: 1.0

-
-
-
-

qmi_message_nas_register_indications_input_get_hdr_session_closed ()

-
gboolean
-qmi_message_nas_register_indications_input_get_hdr_session_closed
-                               (QmiMessageNasRegisterIndicationsInput *self,
-                                gboolean *value_hdr_session_closed,
-                                GError **error);
-

Get the 'HDR Session Closed' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessageNasRegisterIndicationsInput.

 

value_hdr_session_closed

a placeholder for the output gboolean, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.0

-
-
-
-

qmi_message_nas_register_indications_input_set_hdr_session_closed ()

-
gboolean
-qmi_message_nas_register_indications_input_set_hdr_session_closed
-                               (QmiMessageNasRegisterIndicationsInput *self,
-                                gboolean value_hdr_session_closed,
-                                GError **error);
-

Set the 'HDR Session Closed' field in the message.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessageNasRegisterIndicationsInput.

 

value_hdr_session_closed

a gboolean.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if value -was successfully set, FALSE otherwise.

-
-

Since: 1.0

-
-
-
-

qmi_message_nas_register_indications_input_get_hdr_new_uati_assigned ()

-
gboolean
-qmi_message_nas_register_indications_input_get_hdr_new_uati_assigned
-                               (QmiMessageNasRegisterIndicationsInput *self,
-                                gboolean *value_hdr_new_uati_assigned,
-                                GError **error);
-

Get the 'HDR New UATI Assigned' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessageNasRegisterIndicationsInput.

 

value_hdr_new_uati_assigned

a placeholder for the output gboolean, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.0

-
-
-
-

qmi_message_nas_register_indications_input_set_hdr_new_uati_assigned ()

-
gboolean
-qmi_message_nas_register_indications_input_set_hdr_new_uati_assigned
-                               (QmiMessageNasRegisterIndicationsInput *self,
-                                gboolean value_hdr_new_uati_assigned,
-                                GError **error);
-

Set the 'HDR New UATI Assigned' field in the message.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessageNasRegisterIndicationsInput.

 

value_hdr_new_uati_assigned

a gboolean.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if value -was successfully set, FALSE otherwise.

-
-

Since: 1.0

-
-
-
-

qmi_message_nas_register_indications_input_get_error_rate ()

-
gboolean
-qmi_message_nas_register_indications_input_get_error_rate
-                               (QmiMessageNasRegisterIndicationsInput *self,
-                                gboolean *value_error_rate,
-                                GError **error);
-

Get the 'Error Rate' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessageNasRegisterIndicationsInput.

 

value_error_rate

a placeholder for the output gboolean, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.0

-
-
-
-

qmi_message_nas_register_indications_input_set_error_rate ()

-
gboolean
-qmi_message_nas_register_indications_input_set_error_rate
-                               (QmiMessageNasRegisterIndicationsInput *self,
-                                gboolean value_error_rate,
-                                GError **error);
-

Set the 'Error Rate' field in the message.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessageNasRegisterIndicationsInput.

 

value_error_rate

a gboolean.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if value -was successfully set, FALSE otherwise.

-
-

Since: 1.0

-
-
-
-

qmi_message_nas_register_indications_input_get_signal_info ()

-
gboolean
-qmi_message_nas_register_indications_input_get_signal_info
-                               (QmiMessageNasRegisterIndicationsInput *self,
-                                gboolean *value_signal_info,
-                                GError **error);
-

Get the 'Signal Info' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessageNasRegisterIndicationsInput.

 

value_signal_info

a placeholder for the output gboolean, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.0

-
-
-
-

qmi_message_nas_register_indications_input_set_signal_info ()

-
gboolean
-qmi_message_nas_register_indications_input_set_signal_info
-                               (QmiMessageNasRegisterIndicationsInput *self,
-                                gboolean value_signal_info,
-                                GError **error);
-

Set the 'Signal Info' field in the message.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessageNasRegisterIndicationsInput.

 

value_signal_info

a gboolean.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if value -was successfully set, FALSE otherwise.

-
-

Since: 1.0

-
-
-
-

qmi_message_nas_register_indications_input_get_system_info ()

-
gboolean
-qmi_message_nas_register_indications_input_get_system_info
-                               (QmiMessageNasRegisterIndicationsInput *self,
-                                gboolean *value_system_info,
-                                GError **error);
-

Get the 'System Info' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessageNasRegisterIndicationsInput.

 

value_system_info

a placeholder for the output gboolean, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.0

-
-
-
-

qmi_message_nas_register_indications_input_set_system_info ()

-
gboolean
-qmi_message_nas_register_indications_input_set_system_info
-                               (QmiMessageNasRegisterIndicationsInput *self,
-                                gboolean value_system_info,
-                                GError **error);
-

Set the 'System Info' field in the message.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessageNasRegisterIndicationsInput.

 

value_system_info

a gboolean.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if value -was successfully set, FALSE otherwise.

-
-

Since: 1.0

-
-
-
-

qmi_message_nas_register_indications_input_get_network_time ()

-
gboolean
-qmi_message_nas_register_indications_input_get_network_time
-                               (QmiMessageNasRegisterIndicationsInput *self,
-                                gboolean *value_network_time,
-                                GError **error);
-

Get the 'Network Time' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessageNasRegisterIndicationsInput.

 

value_network_time

a placeholder for the output gboolean, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.0

-
-
-
-

qmi_message_nas_register_indications_input_set_network_time ()

-
gboolean
-qmi_message_nas_register_indications_input_set_network_time
-                               (QmiMessageNasRegisterIndicationsInput *self,
-                                gboolean value_network_time,
-                                GError **error);
-

Set the 'Network Time' field in the message.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessageNasRegisterIndicationsInput.

 

value_network_time

a gboolean.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if value -was successfully set, FALSE otherwise.

-
-

Since: 1.0

-
-
-
-

qmi_message_nas_register_indications_input_get_subscription_info ()

-
gboolean
-qmi_message_nas_register_indications_input_get_subscription_info
-                               (QmiMessageNasRegisterIndicationsInput *self,
-                                gboolean *value_subscription_info,
-                                GError **error);
-

Get the 'Subscription Info' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessageNasRegisterIndicationsInput.

 

value_subscription_info

a placeholder for the output gboolean, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.0

-
-
-
-

qmi_message_nas_register_indications_input_set_subscription_info ()

-
gboolean
-qmi_message_nas_register_indications_input_set_subscription_info
-                               (QmiMessageNasRegisterIndicationsInput *self,
-                                gboolean value_subscription_info,
-                                GError **error);
-

Set the 'Subscription Info' field in the message.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessageNasRegisterIndicationsInput.

 

value_subscription_info

a gboolean.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if value -was successfully set, FALSE otherwise.

-
-

Since: 1.0

-
-
-
-

qmi_message_nas_register_indications_input_get_dual_standby_preference ()

-
gboolean
-qmi_message_nas_register_indications_input_get_dual_standby_preference
-                               (QmiMessageNasRegisterIndicationsInput *self,
-                                gboolean *value_dual_standby_preference,
-                                GError **error);
-

Get the 'Dual Standby Preference' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessageNasRegisterIndicationsInput.

 

value_dual_standby_preference

a placeholder for the output gboolean, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.0

-
-
-
-

qmi_message_nas_register_indications_input_set_dual_standby_preference ()

-
gboolean
-qmi_message_nas_register_indications_input_set_dual_standby_preference
-                               (QmiMessageNasRegisterIndicationsInput *self,
-                                gboolean value_dual_standby_preference,
-                                GError **error);
-

Set the 'Dual Standby Preference' field in the message.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessageNasRegisterIndicationsInput.

 

value_dual_standby_preference

a gboolean.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if value -was successfully set, FALSE otherwise.

-
-

Since: 1.0

-
-
-
-

qmi_message_nas_register_indications_input_get_serving_system_events ()

-
gboolean
-qmi_message_nas_register_indications_input_get_serving_system_events
-                               (QmiMessageNasRegisterIndicationsInput *self,
-                                gboolean *value_serving_system_events,
-                                GError **error);
-

Get the 'Serving System Events' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessageNasRegisterIndicationsInput.

 

value_serving_system_events

a placeholder for the output gboolean, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.0

-
-
-
-

qmi_message_nas_register_indications_input_set_serving_system_events ()

-
gboolean
-qmi_message_nas_register_indications_input_set_serving_system_events
-                               (QmiMessageNasRegisterIndicationsInput *self,
-                                gboolean value_serving_system_events,
-                                GError **error);
-

Set the 'Serving System Events' field in the message.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessageNasRegisterIndicationsInput.

 

value_serving_system_events

a gboolean.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if value -was successfully set, FALSE otherwise.

-
-

Since: 1.0

-
-
-
-

qmi_message_nas_register_indications_input_get_ddtm_events ()

-
gboolean
-qmi_message_nas_register_indications_input_get_ddtm_events
-                               (QmiMessageNasRegisterIndicationsInput *self,
-                                gboolean *value_ddtm_events,
-                                GError **error);
-

Get the 'DDTM Events' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessageNasRegisterIndicationsInput.

 

value_ddtm_events

a placeholder for the output gboolean, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.0

-
-
-
-

qmi_message_nas_register_indications_input_set_ddtm_events ()

-
gboolean
-qmi_message_nas_register_indications_input_set_ddtm_events
-                               (QmiMessageNasRegisterIndicationsInput *self,
-                                gboolean value_ddtm_events,
-                                GError **error);
-

Set the 'DDTM Events' field in the message.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessageNasRegisterIndicationsInput.

 

value_ddtm_events

a gboolean.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if value -was successfully set, FALSE otherwise.

-
-

Since: 1.0

-
-
-
-

qmi_message_nas_register_indications_input_get_system_selection_preference ()

-
gboolean
-qmi_message_nas_register_indications_input_get_system_selection_preference
-                               (QmiMessageNasRegisterIndicationsInput *self,
-                                gboolean *value_system_selection_preference,
-                                GError **error);
-

Get the 'System Selection Preference' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessageNasRegisterIndicationsInput.

 

value_system_selection_preference

a placeholder for the output gboolean, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.0

-
-
-
-

qmi_message_nas_register_indications_input_set_system_selection_preference ()

-
gboolean
-qmi_message_nas_register_indications_input_set_system_selection_preference
-                               (QmiMessageNasRegisterIndicationsInput *self,
-                                gboolean value_system_selection_preference,
-                                GError **error);
-

Set the 'System Selection Preference' field in the message.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessageNasRegisterIndicationsInput.

 

value_system_selection_preference

a gboolean.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if value -was successfully set, FALSE otherwise.

-
-

Since: 1.0

-
-
-
-

qmi_message_nas_register_indications_output_ref ()

-
QmiMessageNasRegisterIndicationsOutput *
-qmi_message_nas_register_indications_output_ref
-                               (QmiMessageNasRegisterIndicationsOutput *self);
-

Atomically increments the reference count of self - by one.

-
-

Parameters

-
----- - - - - - -

self

a QmiMessageNasRegisterIndicationsOutput.

 
-
-
-

Returns

-

the new reference to self -.

-
-

Since: 1.0

-
-
-
-

qmi_message_nas_register_indications_output_unref ()

-
void
-qmi_message_nas_register_indications_output_unref
-                               (QmiMessageNasRegisterIndicationsOutput *self);
-

Atomically decrements the reference count of self - by one. -If the reference count drops to 0, self - is completely disposed.

-
-

Parameters

-
----- - - - - - -

self

a QmiMessageNasRegisterIndicationsOutput.

 
-
-

Since: 1.0

-
-
-
-

qmi_message_nas_register_indications_output_get_result ()

-
gboolean
-qmi_message_nas_register_indications_output_get_result
-                               (QmiMessageNasRegisterIndicationsOutput *self,
-                                GError **error);
-

Get the result of the QMI operation.

-
-

Parameters

-
----- - - - - - - - - - - - - -

self

a QmiMessageNasRegisterIndicationsOutput.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the QMI operation succeeded, FALSE if error -is set.

-
-

Since: 1.0

-
-
-
-

qmi_client_nas_register_indications ()

-
void
-qmi_client_nas_register_indications (QmiClientNas *self,
-                                     QmiMessageNasRegisterIndicationsInput *input,
-                                     guint timeout,
-                                     GCancellable *cancellable,
-                                     GAsyncReadyCallback callback,
-                                     gpointer user_data);
-

Asynchronously sends a Register Indications request to the device.

-

When the operation is finished, callback - will be invoked in the thread-default main loop of the thread you are calling this method from.

-

You can then call qmi_client_nas_register_indications_finish() to get the result of the operation.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

self

a QmiClientNas.

 

input

a QmiMessageNasRegisterIndicationsInput.

 

timeout

maximum time to wait for the method to complete, in seconds.

 

cancellable

a GCancellable or NULL.

 

callback

a GAsyncReadyCallback to call when the request is satisfied.

 

user_data

user data to pass to callback -.

 
-
-

Since: 1.0

-
-
-
-

qmi_client_nas_register_indications_finish ()

-
QmiMessageNasRegisterIndicationsOutput *
-qmi_client_nas_register_indications_finish
-                               (QmiClientNas *self,
-                                GAsyncResult *res,
-                                GError **error);
-

Finishes an async operation started with qmi_client_nas_register_indications().

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiClientNas.

 

res

the GAsyncResult obtained from the GAsyncReadyCallback passed to qmi_client_nas_register_indications().

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

a QmiMessageNasRegisterIndicationsOutput, or NULL if error -is set. The returned value should be freed with qmi_message_nas_register_indications_output_unref().

-
-

Since: 1.0

-
-
-
-

Types and Values

-
-

QmiMessageNasRegisterIndicationsInput

-
typedef struct _QmiMessageNasRegisterIndicationsInput QmiMessageNasRegisterIndicationsInput;
-

The QmiMessageNasRegisterIndicationsInput structure contains private data and should only be accessed -using the provided API.

-

Since: 1.0

-
-
-
-

QmiMessageNasRegisterIndicationsOutput

-
typedef struct _QmiMessageNasRegisterIndicationsOutput QmiMessageNasRegisterIndicationsOutput;
-

The QmiMessageNasRegisterIndicationsOutput structure contains private data and should only be accessed -using the provided API.

-

Since: 1.0

-
-
-
- - - \ No newline at end of file diff -Nru libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-NAS-Register-Indications-request.html libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-NAS-Register-Indications-request.html --- libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-NAS-Register-Indications-request.html 1970-01-01 01:00:00.000000000 +0100 +++ libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-NAS-Register-Indications-request.html 2019-01-08 15:19:01.000000000 +0100 @@ -0,0 +1,1959 @@ + + + + +NAS Register Indications request: libqmi-glib Reference Manual + + + + + + + + + + + + + + + + +
+
+
+ + +
+

NAS Register Indications request

+

NAS Register Indications request

+
+
+

Functions

+
++++ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+QmiMessageNasRegisterIndicationsInput * + +qmi_message_nas_register_indications_input_new () +
+QmiMessageNasRegisterIndicationsInput * + +qmi_message_nas_register_indications_input_ref () +
+void + +qmi_message_nas_register_indications_input_unref () +
+gboolean + +qmi_message_nas_register_indications_input_get_rf_band_information () +
+gboolean + +qmi_message_nas_register_indications_input_set_rf_band_information () +
+gboolean + +qmi_message_nas_register_indications_input_get_embms_status () +
+gboolean + +qmi_message_nas_register_indications_input_set_embms_status () +
+gboolean + +qmi_message_nas_register_indications_input_get_current_plmn_name () +
+gboolean + +qmi_message_nas_register_indications_input_set_current_plmn_name () +
+gboolean + +qmi_message_nas_register_indications_input_get_managed_roaming () +
+gboolean + +qmi_message_nas_register_indications_input_set_managed_roaming () +
+gboolean + +qmi_message_nas_register_indications_input_get_hdr_session_closed () +
+gboolean + +qmi_message_nas_register_indications_input_set_hdr_session_closed () +
+gboolean + +qmi_message_nas_register_indications_input_get_hdr_new_uati_assigned () +
+gboolean + +qmi_message_nas_register_indications_input_set_hdr_new_uati_assigned () +
+gboolean + +qmi_message_nas_register_indications_input_get_error_rate () +
+gboolean + +qmi_message_nas_register_indications_input_set_error_rate () +
+gboolean + +qmi_message_nas_register_indications_input_get_signal_info () +
+gboolean + +qmi_message_nas_register_indications_input_set_signal_info () +
+gboolean + +qmi_message_nas_register_indications_input_get_system_info () +
+gboolean + +qmi_message_nas_register_indications_input_set_system_info () +
+gboolean + +qmi_message_nas_register_indications_input_get_network_time () +
+gboolean + +qmi_message_nas_register_indications_input_set_network_time () +
+gboolean + +qmi_message_nas_register_indications_input_get_subscription_info () +
+gboolean + +qmi_message_nas_register_indications_input_set_subscription_info () +
+gboolean + +qmi_message_nas_register_indications_input_get_dual_standby_preference () +
+gboolean + +qmi_message_nas_register_indications_input_set_dual_standby_preference () +
+gboolean + +qmi_message_nas_register_indications_input_get_serving_system_events () +
+gboolean + +qmi_message_nas_register_indications_input_set_serving_system_events () +
+gboolean + +qmi_message_nas_register_indications_input_get_ddtm_events () +
+gboolean + +qmi_message_nas_register_indications_input_set_ddtm_events () +
+gboolean + +qmi_message_nas_register_indications_input_get_system_selection_preference () +
+gboolean + +qmi_message_nas_register_indications_input_set_system_selection_preference () +
+QmiMessageNasRegisterIndicationsOutput * + +qmi_message_nas_register_indications_output_ref () +
+void + +qmi_message_nas_register_indications_output_unref () +
+gboolean + +qmi_message_nas_register_indications_output_get_result () +
+void + +qmi_client_nas_register_indications () +
+QmiMessageNasRegisterIndicationsOutput * + +qmi_client_nas_register_indications_finish () +
+
+
+

Types and Values

+ +
+
+

Object Hierarchy

+
    GBoxed
+    ├── QmiMessageNasRegisterIndicationsInput
+    ╰── QmiMessageNasRegisterIndicationsOutput
+
+
+
+

Description

+
+
+

Functions

+
+

qmi_message_nas_register_indications_input_new ()

+
QmiMessageNasRegisterIndicationsInput *
+qmi_message_nas_register_indications_input_new
+                               (void);
+

Allocates a new QmiMessageNasRegisterIndicationsInput.

+
+

Returns

+

the newly created QmiMessageNasRegisterIndicationsInput. The returned value should be freed with qmi_message_nas_register_indications_input_unref().

+
+

Since: 1.0

+
+
+
+

qmi_message_nas_register_indications_input_ref ()

+
QmiMessageNasRegisterIndicationsInput *
+qmi_message_nas_register_indications_input_ref
+                               (QmiMessageNasRegisterIndicationsInput *self);
+

Atomically increments the reference count of self + by one.

+
+

Parameters

+
+++++ + + + + + +

self

a QmiMessageNasRegisterIndicationsInput.

 
+
+
+

Returns

+

the new reference to self +.

+
+

Since: 1.0

+
+
+
+

qmi_message_nas_register_indications_input_unref ()

+
void
+qmi_message_nas_register_indications_input_unref
+                               (QmiMessageNasRegisterIndicationsInput *self);
+

Atomically decrements the reference count of self + by one. +If the reference count drops to 0, self + is completely disposed.

+
+

Parameters

+
+++++ + + + + + +

self

a QmiMessageNasRegisterIndicationsInput.

 
+
+

Since: 1.0

+
+
+
+

qmi_message_nas_register_indications_input_get_rf_band_information ()

+
gboolean
+qmi_message_nas_register_indications_input_get_rf_band_information
+                               (QmiMessageNasRegisterIndicationsInput *self,
+                                gboolean *value_rf_band_information,
+                                GError **error);
+

Get the 'RF Band Information' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageNasRegisterIndicationsInput.

 

value_rf_band_information

a placeholder for the output gboolean, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.0

+
+
+
+

qmi_message_nas_register_indications_input_set_rf_band_information ()

+
gboolean
+qmi_message_nas_register_indications_input_set_rf_band_information
+                               (QmiMessageNasRegisterIndicationsInput *self,
+                                gboolean value_rf_band_information,
+                                GError **error);
+

Set the 'RF Band Information' field in the message.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageNasRegisterIndicationsInput.

 

value_rf_band_information

a gboolean.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if value +was successfully set, FALSE otherwise.

+
+

Since: 1.0

+
+
+
+

qmi_message_nas_register_indications_input_get_embms_status ()

+
gboolean
+qmi_message_nas_register_indications_input_get_embms_status
+                               (QmiMessageNasRegisterIndicationsInput *self,
+                                gboolean *value_embms_status,
+                                GError **error);
+

Get the 'eMBMS Status' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageNasRegisterIndicationsInput.

 

value_embms_status

a placeholder for the output gboolean, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.0

+
+
+
+

qmi_message_nas_register_indications_input_set_embms_status ()

+
gboolean
+qmi_message_nas_register_indications_input_set_embms_status
+                               (QmiMessageNasRegisterIndicationsInput *self,
+                                gboolean value_embms_status,
+                                GError **error);
+

Set the 'eMBMS Status' field in the message.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageNasRegisterIndicationsInput.

 

value_embms_status

a gboolean.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if value +was successfully set, FALSE otherwise.

+
+

Since: 1.0

+
+
+
+

qmi_message_nas_register_indications_input_get_current_plmn_name ()

+
gboolean
+qmi_message_nas_register_indications_input_get_current_plmn_name
+                               (QmiMessageNasRegisterIndicationsInput *self,
+                                gboolean *value_current_plmn_name,
+                                GError **error);
+

Get the 'Current PLMN Name' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageNasRegisterIndicationsInput.

 

value_current_plmn_name

a placeholder for the output gboolean, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.0

+
+
+
+

qmi_message_nas_register_indications_input_set_current_plmn_name ()

+
gboolean
+qmi_message_nas_register_indications_input_set_current_plmn_name
+                               (QmiMessageNasRegisterIndicationsInput *self,
+                                gboolean value_current_plmn_name,
+                                GError **error);
+

Set the 'Current PLMN Name' field in the message.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageNasRegisterIndicationsInput.

 

value_current_plmn_name

a gboolean.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if value +was successfully set, FALSE otherwise.

+
+

Since: 1.0

+
+
+
+

qmi_message_nas_register_indications_input_get_managed_roaming ()

+
gboolean
+qmi_message_nas_register_indications_input_get_managed_roaming
+                               (QmiMessageNasRegisterIndicationsInput *self,
+                                gboolean *value_managed_roaming,
+                                GError **error);
+

Get the 'Managed Roaming' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageNasRegisterIndicationsInput.

 

value_managed_roaming

a placeholder for the output gboolean, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.0

+
+
+
+

qmi_message_nas_register_indications_input_set_managed_roaming ()

+
gboolean
+qmi_message_nas_register_indications_input_set_managed_roaming
+                               (QmiMessageNasRegisterIndicationsInput *self,
+                                gboolean value_managed_roaming,
+                                GError **error);
+

Set the 'Managed Roaming' field in the message.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageNasRegisterIndicationsInput.

 

value_managed_roaming

a gboolean.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if value +was successfully set, FALSE otherwise.

+
+

Since: 1.0

+
+
+
+

qmi_message_nas_register_indications_input_get_hdr_session_closed ()

+
gboolean
+qmi_message_nas_register_indications_input_get_hdr_session_closed
+                               (QmiMessageNasRegisterIndicationsInput *self,
+                                gboolean *value_hdr_session_closed,
+                                GError **error);
+

Get the 'HDR Session Closed' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageNasRegisterIndicationsInput.

 

value_hdr_session_closed

a placeholder for the output gboolean, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.0

+
+
+
+

qmi_message_nas_register_indications_input_set_hdr_session_closed ()

+
gboolean
+qmi_message_nas_register_indications_input_set_hdr_session_closed
+                               (QmiMessageNasRegisterIndicationsInput *self,
+                                gboolean value_hdr_session_closed,
+                                GError **error);
+

Set the 'HDR Session Closed' field in the message.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageNasRegisterIndicationsInput.

 

value_hdr_session_closed

a gboolean.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if value +was successfully set, FALSE otherwise.

+
+

Since: 1.0

+
+
+
+

qmi_message_nas_register_indications_input_get_hdr_new_uati_assigned ()

+
gboolean
+qmi_message_nas_register_indications_input_get_hdr_new_uati_assigned
+                               (QmiMessageNasRegisterIndicationsInput *self,
+                                gboolean *value_hdr_new_uati_assigned,
+                                GError **error);
+

Get the 'HDR New UATI Assigned' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageNasRegisterIndicationsInput.

 

value_hdr_new_uati_assigned

a placeholder for the output gboolean, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.0

+
+
+
+

qmi_message_nas_register_indications_input_set_hdr_new_uati_assigned ()

+
gboolean
+qmi_message_nas_register_indications_input_set_hdr_new_uati_assigned
+                               (QmiMessageNasRegisterIndicationsInput *self,
+                                gboolean value_hdr_new_uati_assigned,
+                                GError **error);
+

Set the 'HDR New UATI Assigned' field in the message.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageNasRegisterIndicationsInput.

 

value_hdr_new_uati_assigned

a gboolean.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if value +was successfully set, FALSE otherwise.

+
+

Since: 1.0

+
+
+
+

qmi_message_nas_register_indications_input_get_error_rate ()

+
gboolean
+qmi_message_nas_register_indications_input_get_error_rate
+                               (QmiMessageNasRegisterIndicationsInput *self,
+                                gboolean *value_error_rate,
+                                GError **error);
+

Get the 'Error Rate' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageNasRegisterIndicationsInput.

 

value_error_rate

a placeholder for the output gboolean, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.0

+
+
+
+

qmi_message_nas_register_indications_input_set_error_rate ()

+
gboolean
+qmi_message_nas_register_indications_input_set_error_rate
+                               (QmiMessageNasRegisterIndicationsInput *self,
+                                gboolean value_error_rate,
+                                GError **error);
+

Set the 'Error Rate' field in the message.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageNasRegisterIndicationsInput.

 

value_error_rate

a gboolean.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if value +was successfully set, FALSE otherwise.

+
+

Since: 1.0

+
+
+
+

qmi_message_nas_register_indications_input_get_signal_info ()

+
gboolean
+qmi_message_nas_register_indications_input_get_signal_info
+                               (QmiMessageNasRegisterIndicationsInput *self,
+                                gboolean *value_signal_info,
+                                GError **error);
+

Get the 'Signal Info' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageNasRegisterIndicationsInput.

 

value_signal_info

a placeholder for the output gboolean, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.0

+
+
+
+

qmi_message_nas_register_indications_input_set_signal_info ()

+
gboolean
+qmi_message_nas_register_indications_input_set_signal_info
+                               (QmiMessageNasRegisterIndicationsInput *self,
+                                gboolean value_signal_info,
+                                GError **error);
+

Set the 'Signal Info' field in the message.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageNasRegisterIndicationsInput.

 

value_signal_info

a gboolean.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if value +was successfully set, FALSE otherwise.

+
+

Since: 1.0

+
+
+
+

qmi_message_nas_register_indications_input_get_system_info ()

+
gboolean
+qmi_message_nas_register_indications_input_get_system_info
+                               (QmiMessageNasRegisterIndicationsInput *self,
+                                gboolean *value_system_info,
+                                GError **error);
+

Get the 'System Info' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageNasRegisterIndicationsInput.

 

value_system_info

a placeholder for the output gboolean, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.0

+
+
+
+

qmi_message_nas_register_indications_input_set_system_info ()

+
gboolean
+qmi_message_nas_register_indications_input_set_system_info
+                               (QmiMessageNasRegisterIndicationsInput *self,
+                                gboolean value_system_info,
+                                GError **error);
+

Set the 'System Info' field in the message.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageNasRegisterIndicationsInput.

 

value_system_info

a gboolean.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if value +was successfully set, FALSE otherwise.

+
+

Since: 1.0

+
+
+
+

qmi_message_nas_register_indications_input_get_network_time ()

+
gboolean
+qmi_message_nas_register_indications_input_get_network_time
+                               (QmiMessageNasRegisterIndicationsInput *self,
+                                gboolean *value_network_time,
+                                GError **error);
+

Get the 'Network Time' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageNasRegisterIndicationsInput.

 

value_network_time

a placeholder for the output gboolean, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.0

+
+
+
+

qmi_message_nas_register_indications_input_set_network_time ()

+
gboolean
+qmi_message_nas_register_indications_input_set_network_time
+                               (QmiMessageNasRegisterIndicationsInput *self,
+                                gboolean value_network_time,
+                                GError **error);
+

Set the 'Network Time' field in the message.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageNasRegisterIndicationsInput.

 

value_network_time

a gboolean.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if value +was successfully set, FALSE otherwise.

+
+

Since: 1.0

+
+
+
+

qmi_message_nas_register_indications_input_get_subscription_info ()

+
gboolean
+qmi_message_nas_register_indications_input_get_subscription_info
+                               (QmiMessageNasRegisterIndicationsInput *self,
+                                gboolean *value_subscription_info,
+                                GError **error);
+

Get the 'Subscription Info' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageNasRegisterIndicationsInput.

 

value_subscription_info

a placeholder for the output gboolean, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.0

+
+
+
+

qmi_message_nas_register_indications_input_set_subscription_info ()

+
gboolean
+qmi_message_nas_register_indications_input_set_subscription_info
+                               (QmiMessageNasRegisterIndicationsInput *self,
+                                gboolean value_subscription_info,
+                                GError **error);
+

Set the 'Subscription Info' field in the message.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageNasRegisterIndicationsInput.

 

value_subscription_info

a gboolean.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if value +was successfully set, FALSE otherwise.

+
+

Since: 1.0

+
+
+
+

qmi_message_nas_register_indications_input_get_dual_standby_preference ()

+
gboolean
+qmi_message_nas_register_indications_input_get_dual_standby_preference
+                               (QmiMessageNasRegisterIndicationsInput *self,
+                                gboolean *value_dual_standby_preference,
+                                GError **error);
+

Get the 'Dual Standby Preference' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageNasRegisterIndicationsInput.

 

value_dual_standby_preference

a placeholder for the output gboolean, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.0

+
+
+
+

qmi_message_nas_register_indications_input_set_dual_standby_preference ()

+
gboolean
+qmi_message_nas_register_indications_input_set_dual_standby_preference
+                               (QmiMessageNasRegisterIndicationsInput *self,
+                                gboolean value_dual_standby_preference,
+                                GError **error);
+

Set the 'Dual Standby Preference' field in the message.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageNasRegisterIndicationsInput.

 

value_dual_standby_preference

a gboolean.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if value +was successfully set, FALSE otherwise.

+
+

Since: 1.0

+
+
+
+

qmi_message_nas_register_indications_input_get_serving_system_events ()

+
gboolean
+qmi_message_nas_register_indications_input_get_serving_system_events
+                               (QmiMessageNasRegisterIndicationsInput *self,
+                                gboolean *value_serving_system_events,
+                                GError **error);
+

Get the 'Serving System Events' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageNasRegisterIndicationsInput.

 

value_serving_system_events

a placeholder for the output gboolean, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.0

+
+
+
+

qmi_message_nas_register_indications_input_set_serving_system_events ()

+
gboolean
+qmi_message_nas_register_indications_input_set_serving_system_events
+                               (QmiMessageNasRegisterIndicationsInput *self,
+                                gboolean value_serving_system_events,
+                                GError **error);
+

Set the 'Serving System Events' field in the message.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageNasRegisterIndicationsInput.

 

value_serving_system_events

a gboolean.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if value +was successfully set, FALSE otherwise.

+
+

Since: 1.0

+
+
+
+

qmi_message_nas_register_indications_input_get_ddtm_events ()

+
gboolean
+qmi_message_nas_register_indications_input_get_ddtm_events
+                               (QmiMessageNasRegisterIndicationsInput *self,
+                                gboolean *value_ddtm_events,
+                                GError **error);
+

Get the 'DDTM Events' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageNasRegisterIndicationsInput.

 

value_ddtm_events

a placeholder for the output gboolean, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.0

+
+
+
+

qmi_message_nas_register_indications_input_set_ddtm_events ()

+
gboolean
+qmi_message_nas_register_indications_input_set_ddtm_events
+                               (QmiMessageNasRegisterIndicationsInput *self,
+                                gboolean value_ddtm_events,
+                                GError **error);
+

Set the 'DDTM Events' field in the message.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageNasRegisterIndicationsInput.

 

value_ddtm_events

a gboolean.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if value +was successfully set, FALSE otherwise.

+
+

Since: 1.0

+
+
+
+

qmi_message_nas_register_indications_input_get_system_selection_preference ()

+
gboolean
+qmi_message_nas_register_indications_input_get_system_selection_preference
+                               (QmiMessageNasRegisterIndicationsInput *self,
+                                gboolean *value_system_selection_preference,
+                                GError **error);
+

Get the 'System Selection Preference' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageNasRegisterIndicationsInput.

 

value_system_selection_preference

a placeholder for the output gboolean, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.0

+
+
+
+

qmi_message_nas_register_indications_input_set_system_selection_preference ()

+
gboolean
+qmi_message_nas_register_indications_input_set_system_selection_preference
+                               (QmiMessageNasRegisterIndicationsInput *self,
+                                gboolean value_system_selection_preference,
+                                GError **error);
+

Set the 'System Selection Preference' field in the message.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageNasRegisterIndicationsInput.

 

value_system_selection_preference

a gboolean.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if value +was successfully set, FALSE otherwise.

+
+

Since: 1.0

+
+
+
+

qmi_message_nas_register_indications_output_ref ()

+
QmiMessageNasRegisterIndicationsOutput *
+qmi_message_nas_register_indications_output_ref
+                               (QmiMessageNasRegisterIndicationsOutput *self);
+

Atomically increments the reference count of self + by one.

+
+

Parameters

+
+++++ + + + + + +

self

a QmiMessageNasRegisterIndicationsOutput.

 
+
+
+

Returns

+

the new reference to self +.

+
+

Since: 1.0

+
+
+
+

qmi_message_nas_register_indications_output_unref ()

+
void
+qmi_message_nas_register_indications_output_unref
+                               (QmiMessageNasRegisterIndicationsOutput *self);
+

Atomically decrements the reference count of self + by one. +If the reference count drops to 0, self + is completely disposed.

+
+

Parameters

+
+++++ + + + + + +

self

a QmiMessageNasRegisterIndicationsOutput.

 
+
+

Since: 1.0

+
+
+
+

qmi_message_nas_register_indications_output_get_result ()

+
gboolean
+qmi_message_nas_register_indications_output_get_result
+                               (QmiMessageNasRegisterIndicationsOutput *self,
+                                GError **error);
+

Get the result of the QMI operation.

+
+

Parameters

+
+++++ + + + + + + + + + + + + +

self

a QmiMessageNasRegisterIndicationsOutput.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the QMI operation succeeded, FALSE if error +is set.

+
+

Since: 1.0

+
+
+
+

qmi_client_nas_register_indications ()

+
void
+qmi_client_nas_register_indications (QmiClientNas *self,
+                                     QmiMessageNasRegisterIndicationsInput *input,
+                                     guint timeout,
+                                     GCancellable *cancellable,
+                                     GAsyncReadyCallback callback,
+                                     gpointer user_data);
+

Asynchronously sends a Register Indications request to the device.

+

When the operation is finished, callback + will be invoked in the thread-default main loop of the thread you are calling this method from.

+

You can then call qmi_client_nas_register_indications_finish() to get the result of the operation.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

self

a QmiClientNas.

 

input

a QmiMessageNasRegisterIndicationsInput.

 

timeout

maximum time to wait for the method to complete, in seconds.

 

cancellable

a GCancellable or NULL.

 

callback

a GAsyncReadyCallback to call when the request is satisfied.

 

user_data

user data to pass to callback +.

 
+
+

Since: 1.0

+
+
+
+

qmi_client_nas_register_indications_finish ()

+
QmiMessageNasRegisterIndicationsOutput *
+qmi_client_nas_register_indications_finish
+                               (QmiClientNas *self,
+                                GAsyncResult *res,
+                                GError **error);
+

Finishes an async operation started with qmi_client_nas_register_indications().

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiClientNas.

 

res

the GAsyncResult obtained from the GAsyncReadyCallback passed to qmi_client_nas_register_indications().

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

a QmiMessageNasRegisterIndicationsOutput, or NULL if error +is set. The returned value should be freed with qmi_message_nas_register_indications_output_unref().

+
+

Since: 1.0

+
+
+
+

Types and Values

+
+

QmiMessageNasRegisterIndicationsInput

+
typedef struct _QmiMessageNasRegisterIndicationsInput QmiMessageNasRegisterIndicationsInput;
+

The QmiMessageNasRegisterIndicationsInput structure contains private data and should only be accessed +using the provided API.

+

Since: 1.0

+
+
+
+

QmiMessageNasRegisterIndicationsOutput

+
typedef struct _QmiMessageNasRegisterIndicationsOutput QmiMessageNasRegisterIndicationsOutput;
+

The QmiMessageNasRegisterIndicationsOutput structure contains private data and should only be accessed +using the provided API.

+

Since: 1.0

+
+
+
+ + + \ No newline at end of file diff -Nru libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-NAS-Reset.html libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-NAS-Reset.html --- libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-NAS-Reset.html 2017-03-22 12:28:29.000000000 +0100 +++ libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-NAS-Reset.html 1970-01-01 01:00:00.000000000 +0100 @@ -1,317 +0,0 @@ - - - - -NAS Reset: libqmi-glib Reference Manual - - - - - - - - - - - - - - - - -
-
-
- - -
-

NAS Reset

-

NAS Reset

-
-
-

Functions

- -
-
-

Types and Values

-
---- - - - - -
 QmiMessageNasResetOutput
-
-
-

Object Hierarchy

-
    GBoxed
-    ╰── QmiMessageNasResetOutput
-
-
-
-

Description

-
-
-

Functions

-
-

qmi_message_nas_reset_output_ref ()

-
QmiMessageNasResetOutput *
-qmi_message_nas_reset_output_ref (QmiMessageNasResetOutput *self);
-

Atomically increments the reference count of self - by one.

-
-

Parameters

-
----- - - - - - -

self

a QmiMessageNasResetOutput.

 
-
-
-

Returns

-

the new reference to self -.

-
-

Since: 1.0

-
-
-
-

qmi_message_nas_reset_output_unref ()

-
void
-qmi_message_nas_reset_output_unref (QmiMessageNasResetOutput *self);
-

Atomically decrements the reference count of self - by one. -If the reference count drops to 0, self - is completely disposed.

-
-

Parameters

-
----- - - - - - -

self

a QmiMessageNasResetOutput.

 
-
-

Since: 1.0

-
-
-
-

qmi_message_nas_reset_output_get_result ()

-
gboolean
-qmi_message_nas_reset_output_get_result
-                               (QmiMessageNasResetOutput *self,
-                                GError **error);
-

Get the result of the QMI operation.

-
-

Parameters

-
----- - - - - - - - - - - - - -

self

a QmiMessageNasResetOutput.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the QMI operation succeeded, FALSE if error -is set.

-
-

Since: 1.0

-
-
-
-

qmi_client_nas_reset ()

-
void
-qmi_client_nas_reset (QmiClientNas *self,
-                      gpointer unused,
-                      guint timeout,
-                      GCancellable *cancellable,
-                      GAsyncReadyCallback callback,
-                      gpointer user_data);
-

Asynchronously sends a Reset request to the device.

-

When the operation is finished, callback - will be invoked in the thread-default main loop of the thread you are calling this method from.

-

You can then call qmi_client_nas_reset_finish() to get the result of the operation.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

self

a QmiClientNas.

 

unused

NULL. This message doesn't have any input bundle.

 

timeout

maximum time to wait for the method to complete, in seconds.

 

cancellable

a GCancellable or NULL.

 

callback

a GAsyncReadyCallback to call when the request is satisfied.

 

user_data

user data to pass to callback -.

 
-
-

Since: 1.0

-
-
-
-

qmi_client_nas_reset_finish ()

-
QmiMessageNasResetOutput *
-qmi_client_nas_reset_finish (QmiClientNas *self,
-                             GAsyncResult *res,
-                             GError **error);
-

Finishes an async operation started with qmi_client_nas_reset().

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiClientNas.

 

res

the GAsyncResult obtained from the GAsyncReadyCallback passed to qmi_client_nas_reset().

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

a QmiMessageNasResetOutput, or NULL if error -is set. The returned value should be freed with qmi_message_nas_reset_output_unref().

-
-

Since: 1.0

-
-
-
-

Types and Values

-
-

QmiMessageNasResetOutput

-
typedef struct _QmiMessageNasResetOutput QmiMessageNasResetOutput;
-

The QmiMessageNasResetOutput structure contains private data and should only be accessed -using the provided API.

-

Since: 1.0

-
-
-
- - - \ No newline at end of file diff -Nru libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-NAS-Reset-request.html libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-NAS-Reset-request.html --- libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-NAS-Reset-request.html 1970-01-01 01:00:00.000000000 +0100 +++ libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-NAS-Reset-request.html 2019-01-08 15:19:01.000000000 +0100 @@ -0,0 +1,317 @@ + + + + +NAS Reset request: libqmi-glib Reference Manual + + + + + + + + + + + + + + + + +
+
+
+ + +
+

NAS Reset request

+

NAS Reset request

+
+
+

Functions

+ +
+
+

Types and Values

+
++++ + + + + +
 QmiMessageNasResetOutput
+
+
+

Object Hierarchy

+
    GBoxed
+    ╰── QmiMessageNasResetOutput
+
+
+
+

Description

+
+
+

Functions

+
+

qmi_message_nas_reset_output_ref ()

+
QmiMessageNasResetOutput *
+qmi_message_nas_reset_output_ref (QmiMessageNasResetOutput *self);
+

Atomically increments the reference count of self + by one.

+
+

Parameters

+
+++++ + + + + + +

self

a QmiMessageNasResetOutput.

 
+
+
+

Returns

+

the new reference to self +.

+
+

Since: 1.0

+
+
+
+

qmi_message_nas_reset_output_unref ()

+
void
+qmi_message_nas_reset_output_unref (QmiMessageNasResetOutput *self);
+

Atomically decrements the reference count of self + by one. +If the reference count drops to 0, self + is completely disposed.

+
+

Parameters

+
+++++ + + + + + +

self

a QmiMessageNasResetOutput.

 
+
+

Since: 1.0

+
+
+
+

qmi_message_nas_reset_output_get_result ()

+
gboolean
+qmi_message_nas_reset_output_get_result
+                               (QmiMessageNasResetOutput *self,
+                                GError **error);
+

Get the result of the QMI operation.

+
+

Parameters

+
+++++ + + + + + + + + + + + + +

self

a QmiMessageNasResetOutput.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the QMI operation succeeded, FALSE if error +is set.

+
+

Since: 1.0

+
+
+
+

qmi_client_nas_reset ()

+
void
+qmi_client_nas_reset (QmiClientNas *self,
+                      gpointer unused,
+                      guint timeout,
+                      GCancellable *cancellable,
+                      GAsyncReadyCallback callback,
+                      gpointer user_data);
+

Asynchronously sends a Reset request to the device.

+

When the operation is finished, callback + will be invoked in the thread-default main loop of the thread you are calling this method from.

+

You can then call qmi_client_nas_reset_finish() to get the result of the operation.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

self

a QmiClientNas.

 

unused

NULL. This message doesn't have any input bundle.

 

timeout

maximum time to wait for the method to complete, in seconds.

 

cancellable

a GCancellable or NULL.

 

callback

a GAsyncReadyCallback to call when the request is satisfied.

 

user_data

user data to pass to callback +.

 
+
+

Since: 1.0

+
+
+
+

qmi_client_nas_reset_finish ()

+
QmiMessageNasResetOutput *
+qmi_client_nas_reset_finish (QmiClientNas *self,
+                             GAsyncResult *res,
+                             GError **error);
+

Finishes an async operation started with qmi_client_nas_reset().

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiClientNas.

 

res

the GAsyncResult obtained from the GAsyncReadyCallback passed to qmi_client_nas_reset().

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

a QmiMessageNasResetOutput, or NULL if error +is set. The returned value should be freed with qmi_message_nas_reset_output_unref().

+
+

Since: 1.0

+
+
+
+

Types and Values

+
+

QmiMessageNasResetOutput

+
typedef struct _QmiMessageNasResetOutput QmiMessageNasResetOutput;
+

The QmiMessageNasResetOutput structure contains private data and should only be accessed +using the provided API.

+

Since: 1.0

+
+
+
+ + + \ No newline at end of file diff -Nru libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-NAS-Serving-System.html libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-NAS-Serving-System.html --- libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-NAS-Serving-System.html 2017-03-22 12:28:29.000000000 +0100 +++ libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-NAS-Serving-System.html 1970-01-01 01:00:00.000000000 +0100 @@ -1,1726 +0,0 @@ - - - - -NAS Serving System: libqmi-glib Reference Manual - - - - - - - - - - - - - - - - -
-
-
- - -
-

NAS Serving System

-

NAS Serving System

-
-
-

Functions

-
---- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
-QmiIndicationNasServingSystemOutput * - -qmi_indication_nas_serving_system_output_ref () -
-void - -qmi_indication_nas_serving_system_output_unref () -
-gboolean - -qmi_indication_nas_serving_system_output_get_mnc_pcs_digit_include_status () -
-gboolean - -qmi_indication_nas_serving_system_output_get_umts_primary_scrambling_code () -
-gboolean - -qmi_indication_nas_serving_system_output_get_plmn_not_changed_indication () -
-gboolean - -qmi_indication_nas_serving_system_output_get_call_barring_status () -
-gboolean - -qmi_indication_nas_serving_system_output_get_lte_tac () -
-gboolean - -qmi_indication_nas_serving_system_output_get_hdr_personality () -
-gboolean - -qmi_indication_nas_serving_system_output_get_cdma_system_info () -
-gboolean - -qmi_indication_nas_serving_system_output_get_detailed_service_status () -
-gboolean - -qmi_indication_nas_serving_system_output_get_dtm_support () -
-gboolean - -qmi_indication_nas_serving_system_output_get_prl_indicator_3gpp2 () -
-gboolean - -qmi_indication_nas_serving_system_output_get_concurrent_service_info_3gpp2 () -
-gboolean - -qmi_indication_nas_serving_system_output_get_cid_3gpp () -
-gboolean - -qmi_indication_nas_serving_system_output_get_lac_3gpp () -
-gboolean - -qmi_indication_nas_serving_system_output_get_universal_time_and_local_time_zone_3gpp () -
-gboolean - -qmi_indication_nas_serving_system_output_get_daylight_saving_time_adjustment_3gpp () -
-gboolean - -qmi_indication_nas_serving_system_output_get_time_zone_3gpp () -
-gboolean - -qmi_indication_nas_serving_system_output_get_plmn_name_flag_3gpp () -
-gboolean - -qmi_indication_nas_serving_system_output_get_cdma_p_rev () -
-gboolean - -qmi_indication_nas_serving_system_output_get_time_zone_3gpp2 () -
-gboolean - -qmi_indication_nas_serving_system_output_get_default_roaming_indicator () -
-gboolean - -qmi_indication_nas_serving_system_output_get_roaming_indicator_list () -
-gboolean - -qmi_indication_nas_serving_system_output_get_cdma_base_station_info () -
-gboolean - -qmi_indication_nas_serving_system_output_get_cdma_system_id () -
-gboolean - -qmi_indication_nas_serving_system_output_get_current_plmn () -
-gboolean - -qmi_indication_nas_serving_system_output_get_data_service_capability () -
-gboolean - -qmi_indication_nas_serving_system_output_get_roaming_indicator () -
-gboolean - -qmi_indication_nas_serving_system_output_get_serving_system () -
-
- -
-

Object Hierarchy

-
    GBoxed
-    ╰── QmiIndicationNasServingSystemOutput
-
-
-
-

Description

-
-
-

Functions

-
-

qmi_indication_nas_serving_system_output_ref ()

-
QmiIndicationNasServingSystemOutput *
-qmi_indication_nas_serving_system_output_ref
-                               (QmiIndicationNasServingSystemOutput *self);
-

Atomically increments the reference count of self - by one.

-
-

Parameters

-
----- - - - - - -

self

a QmiIndicationNasServingSystemOutput.

 
-
-
-

Returns

-

the new reference to self -.

-
-

Since: 1.0

-
-
-
-

qmi_indication_nas_serving_system_output_unref ()

-
void
-qmi_indication_nas_serving_system_output_unref
-                               (QmiIndicationNasServingSystemOutput *self);
-

Atomically decrements the reference count of self - by one. -If the reference count drops to 0, self - is completely disposed.

-
-

Parameters

-
----- - - - - - -

self

a QmiIndicationNasServingSystemOutput.

 
-
-

Since: 1.0

-
-
-
-

qmi_indication_nas_serving_system_output_get_mnc_pcs_digit_include_status ()

-
gboolean
-qmi_indication_nas_serving_system_output_get_mnc_pcs_digit_include_status
-                               (QmiIndicationNasServingSystemOutput *self,
-                                guint16 *value_mnc_pcs_digit_include_status_mcc,
-                                guint16 *value_mnc_pcs_digit_include_status_mnc,
-                                gboolean *value_mnc_pcs_digit_include_status_includes_pcs_digit,
-                                GError **error);
-

Get the 'MNC PCS Digit Include Status' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - - - - - - - - - - - -

self

a QmiIndicationNasServingSystemOutput.

 

value_mnc_pcs_digit_include_status_mcc

a placeholder for the output guint16, or NULL if not required.

 

value_mnc_pcs_digit_include_status_mnc

a placeholder for the output guint16, or NULL if not required.

 

value_mnc_pcs_digit_include_status_includes_pcs_digit

a placeholder for the output gboolean, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.0

-
-
-
-

qmi_indication_nas_serving_system_output_get_umts_primary_scrambling_code ()

-
gboolean
-qmi_indication_nas_serving_system_output_get_umts_primary_scrambling_code
-                               (QmiIndicationNasServingSystemOutput *self,
-                                guint16 *value_umts_primary_scrambling_code,
-                                GError **error);
-

Get the 'UMTS Primary Scrambling Code' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiIndicationNasServingSystemOutput.

 

value_umts_primary_scrambling_code

a placeholder for the output guint16, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.0

-
-
-
-

qmi_indication_nas_serving_system_output_get_plmn_not_changed_indication ()

-
gboolean
-qmi_indication_nas_serving_system_output_get_plmn_not_changed_indication
-                               (QmiIndicationNasServingSystemOutput *self,
-                                gboolean *value_plmn_not_changed_indication,
-                                GError **error);
-

Get the 'PLMN Not Changed Indication' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiIndicationNasServingSystemOutput.

 

value_plmn_not_changed_indication

a placeholder for the output gboolean, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.0

-
-
-
-

qmi_indication_nas_serving_system_output_get_call_barring_status ()

-
gboolean
-qmi_indication_nas_serving_system_output_get_call_barring_status
-                               (QmiIndicationNasServingSystemOutput *self,
-                                QmiNasCallBarringStatus *value_call_barring_status_cs_status,
-                                QmiNasCallBarringStatus *value_call_barring_status_ps_status,
-                                GError **error);
-

Get the 'Call Barring Status' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - - - - - - -

self

a QmiIndicationNasServingSystemOutput.

 

value_call_barring_status_cs_status

a placeholder for the output QmiNasCallBarringStatus, or NULL if not required.

 

value_call_barring_status_ps_status

a placeholder for the output QmiNasCallBarringStatus, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.0

-
-
-
-

qmi_indication_nas_serving_system_output_get_lte_tac ()

-
gboolean
-qmi_indication_nas_serving_system_output_get_lte_tac
-                               (QmiIndicationNasServingSystemOutput *self,
-                                guint16 *value_lte_tac,
-                                GError **error);
-

Get the 'LTE TAC' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiIndicationNasServingSystemOutput.

 

value_lte_tac

a placeholder for the output guint16, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.0

-
-
-
-

qmi_indication_nas_serving_system_output_get_hdr_personality ()

-
gboolean
-qmi_indication_nas_serving_system_output_get_hdr_personality
-                               (QmiIndicationNasServingSystemOutput *self,
-                                QmiNasHdrPersonality *value_hdr_personality,
-                                GError **error);
-

Get the 'HDR Personality' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiIndicationNasServingSystemOutput.

 

value_hdr_personality

a placeholder for the output QmiNasHdrPersonality, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.0

-
-
-
-

qmi_indication_nas_serving_system_output_get_cdma_system_info ()

-
gboolean
-qmi_indication_nas_serving_system_output_get_cdma_system_info
-                               (QmiIndicationNasServingSystemOutput *self,
-                                guint16 *value_cdma_system_info_mcc,
-                                guint8 *value_cdma_system_info_imsi_11_12,
-                                GError **error);
-

Get the 'CDMA System Info' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - - - - - - -

self

a QmiIndicationNasServingSystemOutput.

 

value_cdma_system_info_mcc

a placeholder for the output guint16, or NULL if not required.

 

value_cdma_system_info_imsi_11_12

a placeholder for the output guint8, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.0

-
-
-
-

qmi_indication_nas_serving_system_output_get_detailed_service_status ()

-
gboolean
-qmi_indication_nas_serving_system_output_get_detailed_service_status
-                               (QmiIndicationNasServingSystemOutput *self,
-                                QmiNasServiceStatus *value_detailed_service_status_status,
-                                QmiNasNetworkServiceDomain *value_detailed_service_status_capability,
-                                QmiNasServiceStatus *value_detailed_service_status_hdr_status,
-                                gboolean *value_detailed_service_status_hdr_hybrid,
-                                gboolean *value_detailed_service_status_forbidden,
-                                GError **error);
-

Get the 'Detailed Service Status' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

self

a QmiIndicationNasServingSystemOutput.

 

value_detailed_service_status_status

a placeholder for the output QmiNasServiceStatus, or NULL if not required.

 

value_detailed_service_status_capability

a placeholder for the output QmiNasNetworkServiceDomain, or NULL if not required.

 

value_detailed_service_status_hdr_status

a placeholder for the output QmiNasServiceStatus, or NULL if not required.

 

value_detailed_service_status_hdr_hybrid

a placeholder for the output gboolean, or NULL if not required.

 

value_detailed_service_status_forbidden

a placeholder for the output gboolean, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.0

-
-
-
-

qmi_indication_nas_serving_system_output_get_dtm_support ()

-
gboolean
-qmi_indication_nas_serving_system_output_get_dtm_support
-                               (QmiIndicationNasServingSystemOutput *self,
-                                gboolean *value_dtm_support,
-                                GError **error);
-

Get the 'DTM Support' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiIndicationNasServingSystemOutput.

 

value_dtm_support

a placeholder for the output gboolean, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.0

-
-
-
-

qmi_indication_nas_serving_system_output_get_prl_indicator_3gpp2 ()

-
gboolean
-qmi_indication_nas_serving_system_output_get_prl_indicator_3gpp2
-                               (QmiIndicationNasServingSystemOutput *self,
-                                gboolean *value_prl_indicator_3gpp2,
-                                GError **error);
-

Get the 'PRL Indicator 3GPP2' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiIndicationNasServingSystemOutput.

 

value_prl_indicator_3gpp2

a placeholder for the output gboolean, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.0

-
-
-
-

qmi_indication_nas_serving_system_output_get_concurrent_service_info_3gpp2 ()

-
gboolean
-qmi_indication_nas_serving_system_output_get_concurrent_service_info_3gpp2
-                               (QmiIndicationNasServingSystemOutput *self,
-                                gboolean *value_concurrent_service_info_3gpp2,
-                                GError **error);
-

Get the 'Concurrent Service Info 3GPP2' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiIndicationNasServingSystemOutput.

 

value_concurrent_service_info_3gpp2

a placeholder for the output gboolean, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.0

-
-
-
-

qmi_indication_nas_serving_system_output_get_cid_3gpp ()

-
gboolean
-qmi_indication_nas_serving_system_output_get_cid_3gpp
-                               (QmiIndicationNasServingSystemOutput *self,
-                                guint32 *value_cid_3gpp,
-                                GError **error);
-

Get the 'CID 3GPP' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiIndicationNasServingSystemOutput.

 

value_cid_3gpp

a placeholder for the output guint32, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.0

-
-
-
-

qmi_indication_nas_serving_system_output_get_lac_3gpp ()

-
gboolean
-qmi_indication_nas_serving_system_output_get_lac_3gpp
-                               (QmiIndicationNasServingSystemOutput *self,
-                                guint16 *value_lac_3gpp,
-                                GError **error);
-

Get the 'LAC 3GPP' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiIndicationNasServingSystemOutput.

 

value_lac_3gpp

a placeholder for the output guint16, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.0

-
-
-
-

qmi_indication_nas_serving_system_output_get_universal_time_and_local_time_zone_3gpp ()

-
gboolean
-qmi_indication_nas_serving_system_output_get_universal_time_and_local_time_zone_3gpp
-                               (QmiIndicationNasServingSystemOutput *self,
-                                guint16 *value_universal_time_and_local_time_zone_3gpp_year,
-                                guint8 *value_universal_time_and_local_time_zone_3gpp_month,
-                                guint8 *value_universal_time_and_local_time_zone_3gpp_day,
-                                guint8 *value_universal_time_and_local_time_zone_3gpp_hour,
-                                guint8 *value_universal_time_and_local_time_zone_3gpp_minute,
-                                guint8 *value_universal_time_and_local_time_zone_3gpp_second,
-                                guint8 *value_universal_time_and_local_time_zone_3gpp_time_zone,
-                                GError **error);
-

Get the 'Universal Time and Local Time Zone 3GPP' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

self

a QmiIndicationNasServingSystemOutput.

 

value_universal_time_and_local_time_zone_3gpp_year

a placeholder for the output guint16, or NULL if not required.

 

value_universal_time_and_local_time_zone_3gpp_month

a placeholder for the output guint8, or NULL if not required.

 

value_universal_time_and_local_time_zone_3gpp_day

a placeholder for the output guint8, or NULL if not required.

 

value_universal_time_and_local_time_zone_3gpp_hour

a placeholder for the output guint8, or NULL if not required.

 

value_universal_time_and_local_time_zone_3gpp_minute

a placeholder for the output guint8, or NULL if not required.

 

value_universal_time_and_local_time_zone_3gpp_second

a placeholder for the output guint8, or NULL if not required.

 

value_universal_time_and_local_time_zone_3gpp_time_zone

a placeholder for the output guint8, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.0

-
-
-
-

qmi_indication_nas_serving_system_output_get_daylight_saving_time_adjustment_3gpp ()

-
gboolean
-qmi_indication_nas_serving_system_output_get_daylight_saving_time_adjustment_3gpp
-                               (QmiIndicationNasServingSystemOutput *self,
-                                guint8 *value_daylight_saving_time_adjustment_3gpp,
-                                GError **error);
-

Get the 'Daylight Saving Time Adjustment 3GPP' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiIndicationNasServingSystemOutput.

 

value_daylight_saving_time_adjustment_3gpp

a placeholder for the output guint8, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.0

-
-
-
-

qmi_indication_nas_serving_system_output_get_time_zone_3gpp ()

-
gboolean
-qmi_indication_nas_serving_system_output_get_time_zone_3gpp
-                               (QmiIndicationNasServingSystemOutput *self,
-                                gint8 *value_time_zone_3gpp,
-                                GError **error);
-

Get the 'Time Zone 3GPP' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiIndicationNasServingSystemOutput.

 

value_time_zone_3gpp

a placeholder for the output gint8, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.0

-
-
-
-

qmi_indication_nas_serving_system_output_get_plmn_name_flag_3gpp ()

-
gboolean
-qmi_indication_nas_serving_system_output_get_plmn_name_flag_3gpp
-                               (QmiIndicationNasServingSystemOutput *self,
-                                gboolean *value_plmn_name_flag_3gpp,
-                                GError **error);
-

Get the 'PLMN Name Flag 3GPP' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiIndicationNasServingSystemOutput.

 

value_plmn_name_flag_3gpp

a placeholder for the output gboolean, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.0

-
-
-
-

qmi_indication_nas_serving_system_output_get_cdma_p_rev ()

-
gboolean
-qmi_indication_nas_serving_system_output_get_cdma_p_rev
-                               (QmiIndicationNasServingSystemOutput *self,
-                                guint8 *value_cdma_p_rev,
-                                GError **error);
-

Get the 'CDMA P Rev' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiIndicationNasServingSystemOutput.

 

value_cdma_p_rev

a placeholder for the output guint8, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.0

-
-
-
-

qmi_indication_nas_serving_system_output_get_time_zone_3gpp2 ()

-
gboolean
-qmi_indication_nas_serving_system_output_get_time_zone_3gpp2
-                               (QmiIndicationNasServingSystemOutput *self,
-                                guint8 *value_time_zone_3gpp2_leap_seconds,
-                                gint8 *value_time_zone_3gpp2_local_time_offset,
-                                gboolean *value_time_zone_3gpp2_daylight_saving_time,
-                                GError **error);
-

Get the 'Time Zone 3GPP2' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - - - - - - - - - - - -

self

a QmiIndicationNasServingSystemOutput.

 

value_time_zone_3gpp2_leap_seconds

a placeholder for the output guint8, or NULL if not required.

 

value_time_zone_3gpp2_local_time_offset

a placeholder for the output gint8, or NULL if not required.

 

value_time_zone_3gpp2_daylight_saving_time

a placeholder for the output gboolean, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.0

-
-
-
-

qmi_indication_nas_serving_system_output_get_default_roaming_indicator ()

-
gboolean
-qmi_indication_nas_serving_system_output_get_default_roaming_indicator
-                               (QmiIndicationNasServingSystemOutput *self,
-                                QmiNasRoamingIndicatorStatus *value_default_roaming_indicator,
-                                GError **error);
-

Get the 'Default Roaming Indicator' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiIndicationNasServingSystemOutput.

 

value_default_roaming_indicator

a placeholder for the output QmiNasRoamingIndicatorStatus, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.0

-
-
-
-

qmi_indication_nas_serving_system_output_get_roaming_indicator_list ()

-
gboolean
-qmi_indication_nas_serving_system_output_get_roaming_indicator_list
-                               (QmiIndicationNasServingSystemOutput *self,
-                                GArray **value_roaming_indicator_list,
-                                GError **error);
-

Get the 'Roaming Indicator List' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiIndicationNasServingSystemOutput.

 

value_roaming_indicator_list

a placeholder for the output GArray of QmiIndicationNasServingSystemOutputRoamingIndicatorListElement elements, or NULL if not required. Do not free it, it is owned by self -.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.0

-
-
-
-

qmi_indication_nas_serving_system_output_get_cdma_base_station_info ()

-
gboolean
-qmi_indication_nas_serving_system_output_get_cdma_base_station_info
-                               (QmiIndicationNasServingSystemOutput *self,
-                                guint16 *value_cdma_base_station_info_base_station_id,
-                                gint32 *value_cdma_base_station_info_base_station_latitude,
-                                gint32 *value_cdma_base_station_info_base_station_longitude,
-                                GError **error);
-

Get the 'CDMA Base Station Info' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - - - - - - - - - - - -

self

a QmiIndicationNasServingSystemOutput.

 

value_cdma_base_station_info_base_station_id

a placeholder for the output guint16, or NULL if not required.

 

value_cdma_base_station_info_base_station_latitude

a placeholder for the output gint32, or NULL if not required.

 

value_cdma_base_station_info_base_station_longitude

a placeholder for the output gint32, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.0

-
-
-
-

qmi_indication_nas_serving_system_output_get_cdma_system_id ()

-
gboolean
-qmi_indication_nas_serving_system_output_get_cdma_system_id
-                               (QmiIndicationNasServingSystemOutput *self,
-                                guint16 *value_cdma_system_id_sid,
-                                guint16 *value_cdma_system_id_nid,
-                                GError **error);
-

Get the 'CDMA System ID' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - - - - - - -

self

a QmiIndicationNasServingSystemOutput.

 

value_cdma_system_id_sid

a placeholder for the output guint16, or NULL if not required.

 

value_cdma_system_id_nid

a placeholder for the output guint16, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.0

-
-
-
-

qmi_indication_nas_serving_system_output_get_current_plmn ()

-
gboolean
-qmi_indication_nas_serving_system_output_get_current_plmn
-                               (QmiIndicationNasServingSystemOutput *self,
-                                guint16 *value_current_plmn_mcc,
-                                guint16 *value_current_plmn_mnc,
-                                const gchar **value_current_plmn_description,
-                                GError **error);
-

Get the 'Current PLMN' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - - - - - - - - - - - -

self

a QmiIndicationNasServingSystemOutput.

 

value_current_plmn_mcc

a placeholder for the output guint16, or NULL if not required.

 

value_current_plmn_mnc

a placeholder for the output guint16, or NULL if not required.

 

value_current_plmn_description

a placeholder for the output constant string, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.0

-
-
-
-

qmi_indication_nas_serving_system_output_get_data_service_capability ()

-
gboolean
-qmi_indication_nas_serving_system_output_get_data_service_capability
-                               (QmiIndicationNasServingSystemOutput *self,
-                                GArray **value_data_service_capability,
-                                GError **error);
-

Get the 'Data Service Capability' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiIndicationNasServingSystemOutput.

 

value_data_service_capability

a placeholder for the output GArray of QmiNasDataCapability elements, or NULL if not required. Do not free it, it is owned by self -.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.0

-
-
-
-

qmi_indication_nas_serving_system_output_get_roaming_indicator ()

-
gboolean
-qmi_indication_nas_serving_system_output_get_roaming_indicator
-                               (QmiIndicationNasServingSystemOutput *self,
-                                QmiNasRoamingIndicatorStatus *value_roaming_indicator,
-                                GError **error);
-

Get the 'Roaming Indicator' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiIndicationNasServingSystemOutput.

 

value_roaming_indicator

a placeholder for the output QmiNasRoamingIndicatorStatus, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.0

-
-
-
-

qmi_indication_nas_serving_system_output_get_serving_system ()

-
gboolean
-qmi_indication_nas_serving_system_output_get_serving_system
-                               (QmiIndicationNasServingSystemOutput *self,
-                                QmiNasRegistrationState *value_serving_system_registration_state,
-                                QmiNasAttachState *value_serving_system_cs_attach_state,
-                                QmiNasAttachState *value_serving_system_ps_attach_state,
-                                QmiNasNetworkType *value_serving_system_selected_network,
-                                GArray **value_serving_system_radio_interfaces,
-                                GError **error);
-

Get the 'Serving System' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

self

a QmiIndicationNasServingSystemOutput.

 

value_serving_system_registration_state

a placeholder for the output QmiNasRegistrationState, or NULL if not required.

 

value_serving_system_cs_attach_state

a placeholder for the output QmiNasAttachState, or NULL if not required.

 

value_serving_system_ps_attach_state

a placeholder for the output QmiNasAttachState, or NULL if not required.

 

value_serving_system_selected_network

a placeholder for the output QmiNasNetworkType, or NULL if not required.

 

value_serving_system_radio_interfaces

a placeholder for the output GArray of QmiNasRadioInterface elements, or NULL if not required. Do not free it, it is owned by self -.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.0

-
-
-
-

Types and Values

-
-

QmiIndicationNasServingSystemOutput

-
typedef struct _QmiIndicationNasServingSystemOutput QmiIndicationNasServingSystemOutput;
-

The QmiIndicationNasServingSystemOutput structure contains private data and should only be accessed -using the provided API.

-

Since: 1.0

-
-
-
-

QmiIndicationNasServingSystemOutputRoamingIndicatorListElement

-
typedef struct {
-    QmiNasRadioInterface radio_interface;
-    QmiNasRoamingIndicatorStatus roaming_indicator;
-} QmiIndicationNasServingSystemOutputRoamingIndicatorListElement;
-
-

A QmiIndicationNasServingSystemOutputRoamingIndicatorListElement struct.

-
-

Members

-
----- - - - - - - - - - - - - -

QmiNasRadioInterface radio_interface;

a QmiNasRadioInterface.

 

QmiNasRoamingIndicatorStatus roaming_indicator;

a QmiNasRoamingIndicatorStatus.

 
-
-

Since: 1.0

-
-
-
- - - \ No newline at end of file diff -Nru libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-NAS-Serving-System-indication.html libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-NAS-Serving-System-indication.html --- libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-NAS-Serving-System-indication.html 1970-01-01 01:00:00.000000000 +0100 +++ libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-NAS-Serving-System-indication.html 2019-01-08 15:19:01.000000000 +0100 @@ -0,0 +1,1726 @@ + + + + +NAS Serving System indication: libqmi-glib Reference Manual + + + + + + + + + + + + + + + + +
+
+
+ + +
+

NAS Serving System indication

+

NAS Serving System indication

+
+
+

Functions

+
++++ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+QmiIndicationNasServingSystemOutput * + +qmi_indication_nas_serving_system_output_ref () +
+void + +qmi_indication_nas_serving_system_output_unref () +
+gboolean + +qmi_indication_nas_serving_system_output_get_mnc_pcs_digit_include_status () +
+gboolean + +qmi_indication_nas_serving_system_output_get_umts_primary_scrambling_code () +
+gboolean + +qmi_indication_nas_serving_system_output_get_plmn_not_changed_indication () +
+gboolean + +qmi_indication_nas_serving_system_output_get_call_barring_status () +
+gboolean + +qmi_indication_nas_serving_system_output_get_lte_tac () +
+gboolean + +qmi_indication_nas_serving_system_output_get_hdr_personality () +
+gboolean + +qmi_indication_nas_serving_system_output_get_cdma_system_info () +
+gboolean + +qmi_indication_nas_serving_system_output_get_detailed_service_status () +
+gboolean + +qmi_indication_nas_serving_system_output_get_dtm_support () +
+gboolean + +qmi_indication_nas_serving_system_output_get_prl_indicator_3gpp2 () +
+gboolean + +qmi_indication_nas_serving_system_output_get_concurrent_service_info_3gpp2 () +
+gboolean + +qmi_indication_nas_serving_system_output_get_cid_3gpp () +
+gboolean + +qmi_indication_nas_serving_system_output_get_lac_3gpp () +
+gboolean + +qmi_indication_nas_serving_system_output_get_universal_time_and_local_time_zone_3gpp () +
+gboolean + +qmi_indication_nas_serving_system_output_get_daylight_saving_time_adjustment_3gpp () +
+gboolean + +qmi_indication_nas_serving_system_output_get_time_zone_3gpp () +
+gboolean + +qmi_indication_nas_serving_system_output_get_plmn_name_flag_3gpp () +
+gboolean + +qmi_indication_nas_serving_system_output_get_cdma_p_rev () +
+gboolean + +qmi_indication_nas_serving_system_output_get_time_zone_3gpp2 () +
+gboolean + +qmi_indication_nas_serving_system_output_get_default_roaming_indicator () +
+gboolean + +qmi_indication_nas_serving_system_output_get_roaming_indicator_list () +
+gboolean + +qmi_indication_nas_serving_system_output_get_cdma_base_station_info () +
+gboolean + +qmi_indication_nas_serving_system_output_get_cdma_system_id () +
+gboolean + +qmi_indication_nas_serving_system_output_get_current_plmn () +
+gboolean + +qmi_indication_nas_serving_system_output_get_data_service_capability () +
+gboolean + +qmi_indication_nas_serving_system_output_get_roaming_indicator () +
+gboolean + +qmi_indication_nas_serving_system_output_get_serving_system () +
+
+ +
+

Object Hierarchy

+
    GBoxed
+    ╰── QmiIndicationNasServingSystemOutput
+
+
+
+

Description

+
+
+

Functions

+
+

qmi_indication_nas_serving_system_output_ref ()

+
QmiIndicationNasServingSystemOutput *
+qmi_indication_nas_serving_system_output_ref
+                               (QmiIndicationNasServingSystemOutput *self);
+

Atomically increments the reference count of self + by one.

+
+

Parameters

+
+++++ + + + + + +

self

a QmiIndicationNasServingSystemOutput.

 
+
+
+

Returns

+

the new reference to self +.

+
+

Since: 1.0

+
+
+
+

qmi_indication_nas_serving_system_output_unref ()

+
void
+qmi_indication_nas_serving_system_output_unref
+                               (QmiIndicationNasServingSystemOutput *self);
+

Atomically decrements the reference count of self + by one. +If the reference count drops to 0, self + is completely disposed.

+
+

Parameters

+
+++++ + + + + + +

self

a QmiIndicationNasServingSystemOutput.

 
+
+

Since: 1.0

+
+
+
+

qmi_indication_nas_serving_system_output_get_mnc_pcs_digit_include_status ()

+
gboolean
+qmi_indication_nas_serving_system_output_get_mnc_pcs_digit_include_status
+                               (QmiIndicationNasServingSystemOutput *self,
+                                guint16 *value_mnc_pcs_digit_include_status_mcc,
+                                guint16 *value_mnc_pcs_digit_include_status_mnc,
+                                gboolean *value_mnc_pcs_digit_include_status_includes_pcs_digit,
+                                GError **error);
+

Get the 'MNC PCS Digit Include Status' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + + + + + + + + + + + +

self

a QmiIndicationNasServingSystemOutput.

 

value_mnc_pcs_digit_include_status_mcc

a placeholder for the output guint16, or NULL if not required.

 

value_mnc_pcs_digit_include_status_mnc

a placeholder for the output guint16, or NULL if not required.

 

value_mnc_pcs_digit_include_status_includes_pcs_digit

a placeholder for the output gboolean, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.0

+
+
+
+

qmi_indication_nas_serving_system_output_get_umts_primary_scrambling_code ()

+
gboolean
+qmi_indication_nas_serving_system_output_get_umts_primary_scrambling_code
+                               (QmiIndicationNasServingSystemOutput *self,
+                                guint16 *value_umts_primary_scrambling_code,
+                                GError **error);
+

Get the 'UMTS Primary Scrambling Code' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiIndicationNasServingSystemOutput.

 

value_umts_primary_scrambling_code

a placeholder for the output guint16, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.0

+
+
+
+

qmi_indication_nas_serving_system_output_get_plmn_not_changed_indication ()

+
gboolean
+qmi_indication_nas_serving_system_output_get_plmn_not_changed_indication
+                               (QmiIndicationNasServingSystemOutput *self,
+                                gboolean *value_plmn_not_changed_indication,
+                                GError **error);
+

Get the 'PLMN Not Changed Indication' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiIndicationNasServingSystemOutput.

 

value_plmn_not_changed_indication

a placeholder for the output gboolean, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.0

+
+
+
+

qmi_indication_nas_serving_system_output_get_call_barring_status ()

+
gboolean
+qmi_indication_nas_serving_system_output_get_call_barring_status
+                               (QmiIndicationNasServingSystemOutput *self,
+                                QmiNasCallBarringStatus *value_call_barring_status_cs_status,
+                                QmiNasCallBarringStatus *value_call_barring_status_ps_status,
+                                GError **error);
+

Get the 'Call Barring Status' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + + + + + + +

self

a QmiIndicationNasServingSystemOutput.

 

value_call_barring_status_cs_status

a placeholder for the output QmiNasCallBarringStatus, or NULL if not required.

 

value_call_barring_status_ps_status

a placeholder for the output QmiNasCallBarringStatus, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.0

+
+
+
+

qmi_indication_nas_serving_system_output_get_lte_tac ()

+
gboolean
+qmi_indication_nas_serving_system_output_get_lte_tac
+                               (QmiIndicationNasServingSystemOutput *self,
+                                guint16 *value_lte_tac,
+                                GError **error);
+

Get the 'LTE TAC' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiIndicationNasServingSystemOutput.

 

value_lte_tac

a placeholder for the output guint16, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.0

+
+
+
+

qmi_indication_nas_serving_system_output_get_hdr_personality ()

+
gboolean
+qmi_indication_nas_serving_system_output_get_hdr_personality
+                               (QmiIndicationNasServingSystemOutput *self,
+                                QmiNasHdrPersonality *value_hdr_personality,
+                                GError **error);
+

Get the 'HDR Personality' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiIndicationNasServingSystemOutput.

 

value_hdr_personality

a placeholder for the output QmiNasHdrPersonality, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.0

+
+
+
+

qmi_indication_nas_serving_system_output_get_cdma_system_info ()

+
gboolean
+qmi_indication_nas_serving_system_output_get_cdma_system_info
+                               (QmiIndicationNasServingSystemOutput *self,
+                                guint16 *value_cdma_system_info_mcc,
+                                guint8 *value_cdma_system_info_imsi_11_12,
+                                GError **error);
+

Get the 'CDMA System Info' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + + + + + + +

self

a QmiIndicationNasServingSystemOutput.

 

value_cdma_system_info_mcc

a placeholder for the output guint16, or NULL if not required.

 

value_cdma_system_info_imsi_11_12

a placeholder for the output guint8, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.0

+
+
+
+

qmi_indication_nas_serving_system_output_get_detailed_service_status ()

+
gboolean
+qmi_indication_nas_serving_system_output_get_detailed_service_status
+                               (QmiIndicationNasServingSystemOutput *self,
+                                QmiNasServiceStatus *value_detailed_service_status_status,
+                                QmiNasNetworkServiceDomain *value_detailed_service_status_capability,
+                                QmiNasServiceStatus *value_detailed_service_status_hdr_status,
+                                gboolean *value_detailed_service_status_hdr_hybrid,
+                                gboolean *value_detailed_service_status_forbidden,
+                                GError **error);
+

Get the 'Detailed Service Status' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

self

a QmiIndicationNasServingSystemOutput.

 

value_detailed_service_status_status

a placeholder for the output QmiNasServiceStatus, or NULL if not required.

 

value_detailed_service_status_capability

a placeholder for the output QmiNasNetworkServiceDomain, or NULL if not required.

 

value_detailed_service_status_hdr_status

a placeholder for the output QmiNasServiceStatus, or NULL if not required.

 

value_detailed_service_status_hdr_hybrid

a placeholder for the output gboolean, or NULL if not required.

 

value_detailed_service_status_forbidden

a placeholder for the output gboolean, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.0

+
+
+
+

qmi_indication_nas_serving_system_output_get_dtm_support ()

+
gboolean
+qmi_indication_nas_serving_system_output_get_dtm_support
+                               (QmiIndicationNasServingSystemOutput *self,
+                                gboolean *value_dtm_support,
+                                GError **error);
+

Get the 'DTM Support' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiIndicationNasServingSystemOutput.

 

value_dtm_support

a placeholder for the output gboolean, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.0

+
+
+
+

qmi_indication_nas_serving_system_output_get_prl_indicator_3gpp2 ()

+
gboolean
+qmi_indication_nas_serving_system_output_get_prl_indicator_3gpp2
+                               (QmiIndicationNasServingSystemOutput *self,
+                                gboolean *value_prl_indicator_3gpp2,
+                                GError **error);
+

Get the 'PRL Indicator 3GPP2' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiIndicationNasServingSystemOutput.

 

value_prl_indicator_3gpp2

a placeholder for the output gboolean, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.0

+
+
+
+

qmi_indication_nas_serving_system_output_get_concurrent_service_info_3gpp2 ()

+
gboolean
+qmi_indication_nas_serving_system_output_get_concurrent_service_info_3gpp2
+                               (QmiIndicationNasServingSystemOutput *self,
+                                gboolean *value_concurrent_service_info_3gpp2,
+                                GError **error);
+

Get the 'Concurrent Service Info 3GPP2' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiIndicationNasServingSystemOutput.

 

value_concurrent_service_info_3gpp2

a placeholder for the output gboolean, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.0

+
+
+
+

qmi_indication_nas_serving_system_output_get_cid_3gpp ()

+
gboolean
+qmi_indication_nas_serving_system_output_get_cid_3gpp
+                               (QmiIndicationNasServingSystemOutput *self,
+                                guint32 *value_cid_3gpp,
+                                GError **error);
+

Get the 'CID 3GPP' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiIndicationNasServingSystemOutput.

 

value_cid_3gpp

a placeholder for the output guint32, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.0

+
+
+
+

qmi_indication_nas_serving_system_output_get_lac_3gpp ()

+
gboolean
+qmi_indication_nas_serving_system_output_get_lac_3gpp
+                               (QmiIndicationNasServingSystemOutput *self,
+                                guint16 *value_lac_3gpp,
+                                GError **error);
+

Get the 'LAC 3GPP' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiIndicationNasServingSystemOutput.

 

value_lac_3gpp

a placeholder for the output guint16, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.0

+
+
+
+

qmi_indication_nas_serving_system_output_get_universal_time_and_local_time_zone_3gpp ()

+
gboolean
+qmi_indication_nas_serving_system_output_get_universal_time_and_local_time_zone_3gpp
+                               (QmiIndicationNasServingSystemOutput *self,
+                                guint16 *value_universal_time_and_local_time_zone_3gpp_year,
+                                guint8 *value_universal_time_and_local_time_zone_3gpp_month,
+                                guint8 *value_universal_time_and_local_time_zone_3gpp_day,
+                                guint8 *value_universal_time_and_local_time_zone_3gpp_hour,
+                                guint8 *value_universal_time_and_local_time_zone_3gpp_minute,
+                                guint8 *value_universal_time_and_local_time_zone_3gpp_second,
+                                guint8 *value_universal_time_and_local_time_zone_3gpp_time_zone,
+                                GError **error);
+

Get the 'Universal Time and Local Time Zone 3GPP' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

self

a QmiIndicationNasServingSystemOutput.

 

value_universal_time_and_local_time_zone_3gpp_year

a placeholder for the output guint16, or NULL if not required.

 

value_universal_time_and_local_time_zone_3gpp_month

a placeholder for the output guint8, or NULL if not required.

 

value_universal_time_and_local_time_zone_3gpp_day

a placeholder for the output guint8, or NULL if not required.

 

value_universal_time_and_local_time_zone_3gpp_hour

a placeholder for the output guint8, or NULL if not required.

 

value_universal_time_and_local_time_zone_3gpp_minute

a placeholder for the output guint8, or NULL if not required.

 

value_universal_time_and_local_time_zone_3gpp_second

a placeholder for the output guint8, or NULL if not required.

 

value_universal_time_and_local_time_zone_3gpp_time_zone

a placeholder for the output guint8, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.0

+
+
+
+

qmi_indication_nas_serving_system_output_get_daylight_saving_time_adjustment_3gpp ()

+
gboolean
+qmi_indication_nas_serving_system_output_get_daylight_saving_time_adjustment_3gpp
+                               (QmiIndicationNasServingSystemOutput *self,
+                                guint8 *value_daylight_saving_time_adjustment_3gpp,
+                                GError **error);
+

Get the 'Daylight Saving Time Adjustment 3GPP' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiIndicationNasServingSystemOutput.

 

value_daylight_saving_time_adjustment_3gpp

a placeholder for the output guint8, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.0

+
+
+
+

qmi_indication_nas_serving_system_output_get_time_zone_3gpp ()

+
gboolean
+qmi_indication_nas_serving_system_output_get_time_zone_3gpp
+                               (QmiIndicationNasServingSystemOutput *self,
+                                gint8 *value_time_zone_3gpp,
+                                GError **error);
+

Get the 'Time Zone 3GPP' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiIndicationNasServingSystemOutput.

 

value_time_zone_3gpp

a placeholder for the output gint8, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.0

+
+
+
+

qmi_indication_nas_serving_system_output_get_plmn_name_flag_3gpp ()

+
gboolean
+qmi_indication_nas_serving_system_output_get_plmn_name_flag_3gpp
+                               (QmiIndicationNasServingSystemOutput *self,
+                                gboolean *value_plmn_name_flag_3gpp,
+                                GError **error);
+

Get the 'PLMN Name Flag 3GPP' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiIndicationNasServingSystemOutput.

 

value_plmn_name_flag_3gpp

a placeholder for the output gboolean, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.0

+
+
+
+

qmi_indication_nas_serving_system_output_get_cdma_p_rev ()

+
gboolean
+qmi_indication_nas_serving_system_output_get_cdma_p_rev
+                               (QmiIndicationNasServingSystemOutput *self,
+                                guint8 *value_cdma_p_rev,
+                                GError **error);
+

Get the 'CDMA P Rev' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiIndicationNasServingSystemOutput.

 

value_cdma_p_rev

a placeholder for the output guint8, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.0

+
+
+
+

qmi_indication_nas_serving_system_output_get_time_zone_3gpp2 ()

+
gboolean
+qmi_indication_nas_serving_system_output_get_time_zone_3gpp2
+                               (QmiIndicationNasServingSystemOutput *self,
+                                guint8 *value_time_zone_3gpp2_leap_seconds,
+                                gint8 *value_time_zone_3gpp2_local_time_offset,
+                                gboolean *value_time_zone_3gpp2_daylight_saving_time,
+                                GError **error);
+

Get the 'Time Zone 3GPP2' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + + + + + + + + + + + +

self

a QmiIndicationNasServingSystemOutput.

 

value_time_zone_3gpp2_leap_seconds

a placeholder for the output guint8, or NULL if not required.

 

value_time_zone_3gpp2_local_time_offset

a placeholder for the output gint8, or NULL if not required.

 

value_time_zone_3gpp2_daylight_saving_time

a placeholder for the output gboolean, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.0

+
+
+
+

qmi_indication_nas_serving_system_output_get_default_roaming_indicator ()

+
gboolean
+qmi_indication_nas_serving_system_output_get_default_roaming_indicator
+                               (QmiIndicationNasServingSystemOutput *self,
+                                QmiNasRoamingIndicatorStatus *value_default_roaming_indicator,
+                                GError **error);
+

Get the 'Default Roaming Indicator' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiIndicationNasServingSystemOutput.

 

value_default_roaming_indicator

a placeholder for the output QmiNasRoamingIndicatorStatus, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.0

+
+
+
+

qmi_indication_nas_serving_system_output_get_roaming_indicator_list ()

+
gboolean
+qmi_indication_nas_serving_system_output_get_roaming_indicator_list
+                               (QmiIndicationNasServingSystemOutput *self,
+                                GArray **value_roaming_indicator_list,
+                                GError **error);
+

Get the 'Roaming Indicator List' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiIndicationNasServingSystemOutput.

 

value_roaming_indicator_list

a placeholder for the output GArray of QmiIndicationNasServingSystemOutputRoamingIndicatorListElement elements, or NULL if not required. Do not free it, it is owned by self +.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.0

+
+
+
+

qmi_indication_nas_serving_system_output_get_cdma_base_station_info ()

+
gboolean
+qmi_indication_nas_serving_system_output_get_cdma_base_station_info
+                               (QmiIndicationNasServingSystemOutput *self,
+                                guint16 *value_cdma_base_station_info_base_station_id,
+                                gint32 *value_cdma_base_station_info_base_station_latitude,
+                                gint32 *value_cdma_base_station_info_base_station_longitude,
+                                GError **error);
+

Get the 'CDMA Base Station Info' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + + + + + + + + + + + +

self

a QmiIndicationNasServingSystemOutput.

 

value_cdma_base_station_info_base_station_id

a placeholder for the output guint16, or NULL if not required.

 

value_cdma_base_station_info_base_station_latitude

a placeholder for the output gint32, or NULL if not required.

 

value_cdma_base_station_info_base_station_longitude

a placeholder for the output gint32, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.0

+
+
+
+

qmi_indication_nas_serving_system_output_get_cdma_system_id ()

+
gboolean
+qmi_indication_nas_serving_system_output_get_cdma_system_id
+                               (QmiIndicationNasServingSystemOutput *self,
+                                guint16 *value_cdma_system_id_sid,
+                                guint16 *value_cdma_system_id_nid,
+                                GError **error);
+

Get the 'CDMA System ID' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + + + + + + +

self

a QmiIndicationNasServingSystemOutput.

 

value_cdma_system_id_sid

a placeholder for the output guint16, or NULL if not required.

 

value_cdma_system_id_nid

a placeholder for the output guint16, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.0

+
+
+
+

qmi_indication_nas_serving_system_output_get_current_plmn ()

+
gboolean
+qmi_indication_nas_serving_system_output_get_current_plmn
+                               (QmiIndicationNasServingSystemOutput *self,
+                                guint16 *value_current_plmn_mcc,
+                                guint16 *value_current_plmn_mnc,
+                                const gchar **value_current_plmn_description,
+                                GError **error);
+

Get the 'Current PLMN' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + + + + + + + + + + + +

self

a QmiIndicationNasServingSystemOutput.

 

value_current_plmn_mcc

a placeholder for the output guint16, or NULL if not required.

 

value_current_plmn_mnc

a placeholder for the output guint16, or NULL if not required.

 

value_current_plmn_description

a placeholder for the output constant string, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.0

+
+
+
+

qmi_indication_nas_serving_system_output_get_data_service_capability ()

+
gboolean
+qmi_indication_nas_serving_system_output_get_data_service_capability
+                               (QmiIndicationNasServingSystemOutput *self,
+                                GArray **value_data_service_capability,
+                                GError **error);
+

Get the 'Data Service Capability' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiIndicationNasServingSystemOutput.

 

value_data_service_capability

a placeholder for the output GArray of QmiNasDataCapability elements, or NULL if not required. Do not free it, it is owned by self +.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.0

+
+
+
+

qmi_indication_nas_serving_system_output_get_roaming_indicator ()

+
gboolean
+qmi_indication_nas_serving_system_output_get_roaming_indicator
+                               (QmiIndicationNasServingSystemOutput *self,
+                                QmiNasRoamingIndicatorStatus *value_roaming_indicator,
+                                GError **error);
+

Get the 'Roaming Indicator' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiIndicationNasServingSystemOutput.

 

value_roaming_indicator

a placeholder for the output QmiNasRoamingIndicatorStatus, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.0

+
+
+
+

qmi_indication_nas_serving_system_output_get_serving_system ()

+
gboolean
+qmi_indication_nas_serving_system_output_get_serving_system
+                               (QmiIndicationNasServingSystemOutput *self,
+                                QmiNasRegistrationState *value_serving_system_registration_state,
+                                QmiNasAttachState *value_serving_system_cs_attach_state,
+                                QmiNasAttachState *value_serving_system_ps_attach_state,
+                                QmiNasNetworkType *value_serving_system_selected_network,
+                                GArray **value_serving_system_radio_interfaces,
+                                GError **error);
+

Get the 'Serving System' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

self

a QmiIndicationNasServingSystemOutput.

 

value_serving_system_registration_state

a placeholder for the output QmiNasRegistrationState, or NULL if not required.

 

value_serving_system_cs_attach_state

a placeholder for the output QmiNasAttachState, or NULL if not required.

 

value_serving_system_ps_attach_state

a placeholder for the output QmiNasAttachState, or NULL if not required.

 

value_serving_system_selected_network

a placeholder for the output QmiNasNetworkType, or NULL if not required.

 

value_serving_system_radio_interfaces

a placeholder for the output GArray of QmiNasRadioInterface elements, or NULL if not required. Do not free it, it is owned by self +.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.0

+
+
+
+

Types and Values

+
+

QmiIndicationNasServingSystemOutput

+
typedef struct _QmiIndicationNasServingSystemOutput QmiIndicationNasServingSystemOutput;
+

The QmiIndicationNasServingSystemOutput structure contains private data and should only be accessed +using the provided API.

+

Since: 1.0

+
+
+
+

QmiIndicationNasServingSystemOutputRoamingIndicatorListElement

+
typedef struct {
+    QmiNasRadioInterface radio_interface;
+    QmiNasRoamingIndicatorStatus roaming_indicator;
+} QmiIndicationNasServingSystemOutputRoamingIndicatorListElement;
+
+

A QmiIndicationNasServingSystemOutputRoamingIndicatorListElement struct.

+
+

Members

+
+++++ + + + + + + + + + + + + +

QmiNasRadioInterface radio_interface;

a QmiNasRadioInterface.

 

QmiNasRoamingIndicatorStatus roaming_indicator;

a QmiNasRoamingIndicatorStatus.

 
+
+

Since: 1.0

+
+
+
+ + + \ No newline at end of file diff -Nru libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-NAS-Set-Event-Report.html libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-NAS-Set-Event-Report.html --- libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-NAS-Set-Event-Report.html 2017-03-22 12:28:29.000000000 +0100 +++ libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-NAS-Set-Event-Report.html 1970-01-01 01:00:00.000000000 +0100 @@ -1,1767 +0,0 @@ - - - - -NAS Set Event Report: libqmi-glib Reference Manual - - - - - - - - - - - - - - - - -
-
-
- - -
-

NAS Set Event Report

-

NAS Set Event Report

-
-
-

Functions

-
---- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
-QmiMessageNasSetEventReportInput * - -qmi_message_nas_set_event_report_input_new () -
-QmiMessageNasSetEventReportInput * - -qmi_message_nas_set_event_report_input_ref () -
-void - -qmi_message_nas_set_event_report_input_unref () -
-gboolean - -qmi_message_nas_set_event_report_input_get_lte_rsrp_delta () -
-gboolean - -qmi_message_nas_set_event_report_input_set_lte_rsrp_delta () -
-gboolean - -qmi_message_nas_set_event_report_input_get_lte_snr_delta () -
-gboolean - -qmi_message_nas_set_event_report_input_set_lte_snr_delta () -
-gboolean - -qmi_message_nas_set_event_report_input_get_sinr_threshold () -
-gboolean - -qmi_message_nas_set_event_report_input_set_sinr_threshold () -
-gboolean - -qmi_message_nas_set_event_report_input_get_ecio_threshold () -
-gboolean - -qmi_message_nas_set_event_report_input_set_ecio_threshold () -
-gboolean - -qmi_message_nas_set_event_report_input_get_error_rate_indicator () -
-gboolean - -qmi_message_nas_set_event_report_input_set_error_rate_indicator () -
-gboolean - -qmi_message_nas_set_event_report_input_get_sinr_indicator () -
-gboolean - -qmi_message_nas_set_event_report_input_set_sinr_indicator () -
-gboolean - -qmi_message_nas_set_event_report_input_get_io_indicator () -
-gboolean - -qmi_message_nas_set_event_report_input_set_io_indicator () -
-gboolean - -qmi_message_nas_set_event_report_input_get_ecio_indicator () -
-gboolean - -qmi_message_nas_set_event_report_input_set_ecio_indicator () -
-gboolean - -qmi_message_nas_set_event_report_input_get_rssi_indicator () -
-gboolean - -qmi_message_nas_set_event_report_input_set_rssi_indicator () -
-gboolean - -qmi_message_nas_set_event_report_input_get_registration_reject_reason () -
-gboolean - -qmi_message_nas_set_event_report_input_set_registration_reject_reason () -
-gboolean - -qmi_message_nas_set_event_report_input_get_rf_band_information () -
-gboolean - -qmi_message_nas_set_event_report_input_set_rf_band_information () -
-gboolean - -qmi_message_nas_set_event_report_input_get_signal_strength_indicator () -
-gboolean - -qmi_message_nas_set_event_report_input_set_signal_strength_indicator () -
-QmiMessageNasSetEventReportOutput * - -qmi_message_nas_set_event_report_output_ref () -
-void - -qmi_message_nas_set_event_report_output_unref () -
-gboolean - -qmi_message_nas_set_event_report_output_get_result () -
-void - -qmi_client_nas_set_event_report () -
-QmiMessageNasSetEventReportOutput * - -qmi_client_nas_set_event_report_finish () -
-
-
-

Types and Values

- -
-
-

Object Hierarchy

-
    GBoxed
-    ├── QmiMessageNasSetEventReportInput
-    ╰── QmiMessageNasSetEventReportOutput
-
-
-
-

Description

-
-
-

Functions

-
-

qmi_message_nas_set_event_report_input_new ()

-
QmiMessageNasSetEventReportInput *
-qmi_message_nas_set_event_report_input_new
-                               (void);
-

Allocates a new QmiMessageNasSetEventReportInput.

-
-

Returns

-

the newly created QmiMessageNasSetEventReportInput. The returned value should be freed with qmi_message_nas_set_event_report_input_unref().

-
-

Since: 1.0

-
-
-
-

qmi_message_nas_set_event_report_input_ref ()

-
QmiMessageNasSetEventReportInput *
-qmi_message_nas_set_event_report_input_ref
-                               (QmiMessageNasSetEventReportInput *self);
-

Atomically increments the reference count of self - by one.

-
-

Parameters

-
----- - - - - - -

self

a QmiMessageNasSetEventReportInput.

 
-
-
-

Returns

-

the new reference to self -.

-
-

Since: 1.0

-
-
-
-

qmi_message_nas_set_event_report_input_unref ()

-
void
-qmi_message_nas_set_event_report_input_unref
-                               (QmiMessageNasSetEventReportInput *self);
-

Atomically decrements the reference count of self - by one. -If the reference count drops to 0, self - is completely disposed.

-
-

Parameters

-
----- - - - - - -

self

a QmiMessageNasSetEventReportInput.

 
-
-

Since: 1.0

-
-
-
-

qmi_message_nas_set_event_report_input_get_lte_rsrp_delta ()

-
gboolean
-qmi_message_nas_set_event_report_input_get_lte_rsrp_delta
-                               (QmiMessageNasSetEventReportInput *self,
-                                gboolean *value_lte_rsrp_delta_report,
-                                guint8 *value_lte_rsrp_delta_rsrp_delta,
-                                GError **error);
-

Get the 'LTE RSRP Delta' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - - - - - - -

self

a QmiMessageNasSetEventReportInput.

 

value_lte_rsrp_delta_report

a placeholder for the output gboolean, or NULL if not required.

 

value_lte_rsrp_delta_rsrp_delta

a placeholder for the output guint8, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.0

-
-
-
-

qmi_message_nas_set_event_report_input_set_lte_rsrp_delta ()

-
gboolean
-qmi_message_nas_set_event_report_input_set_lte_rsrp_delta
-                               (QmiMessageNasSetEventReportInput *self,
-                                gboolean value_lte_rsrp_delta_report,
-                                guint8 value_lte_rsrp_delta_rsrp_delta,
-                                GError **error);
-

Set the 'LTE RSRP Delta' field in the message.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - - - - - - -

self

a QmiMessageNasSetEventReportInput.

 

value_lte_rsrp_delta_report

a gboolean.

 

value_lte_rsrp_delta_rsrp_delta

a guint8.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if value -was successfully set, FALSE otherwise.

-
-

Since: 1.0

-
-
-
-

qmi_message_nas_set_event_report_input_get_lte_snr_delta ()

-
gboolean
-qmi_message_nas_set_event_report_input_get_lte_snr_delta
-                               (QmiMessageNasSetEventReportInput *self,
-                                gboolean *value_lte_snr_delta_report,
-                                guint8 *value_lte_snr_delta_snr_delta,
-                                GError **error);
-

Get the 'LTE SNR Delta' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - - - - - - -

self

a QmiMessageNasSetEventReportInput.

 

value_lte_snr_delta_report

a placeholder for the output gboolean, or NULL if not required.

 

value_lte_snr_delta_snr_delta

a placeholder for the output guint8, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.0

-
-
-
-

qmi_message_nas_set_event_report_input_set_lte_snr_delta ()

-
gboolean
-qmi_message_nas_set_event_report_input_set_lte_snr_delta
-                               (QmiMessageNasSetEventReportInput *self,
-                                gboolean value_lte_snr_delta_report,
-                                guint8 value_lte_snr_delta_snr_delta,
-                                GError **error);
-

Set the 'LTE SNR Delta' field in the message.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - - - - - - -

self

a QmiMessageNasSetEventReportInput.

 

value_lte_snr_delta_report

a gboolean.

 

value_lte_snr_delta_snr_delta

a guint8.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if value -was successfully set, FALSE otherwise.

-
-

Since: 1.0

-
-
-
-

qmi_message_nas_set_event_report_input_get_sinr_threshold ()

-
gboolean
-qmi_message_nas_set_event_report_input_get_sinr_threshold
-                               (QmiMessageNasSetEventReportInput *self,
-                                gboolean *value_sinr_threshold_report,
-                                GArray **value_sinr_threshold_thresholds,
-                                GError **error);
-

Get the 'SINR Threshold' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - - - - - - -

self

a QmiMessageNasSetEventReportInput.

 

value_sinr_threshold_report

a placeholder for the output gboolean, or NULL if not required.

 

value_sinr_threshold_thresholds

a placeholder for the output GArray of guint8 elements, or NULL if not required. Do not free it, it is owned by self -.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.0

-
-
-
-

qmi_message_nas_set_event_report_input_set_sinr_threshold ()

-
gboolean
-qmi_message_nas_set_event_report_input_set_sinr_threshold
-                               (QmiMessageNasSetEventReportInput *self,
-                                gboolean value_sinr_threshold_report,
-                                GArray *value_sinr_threshold_thresholds,
-                                GError **error);
-

Set the 'SINR Threshold' field in the message.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - - - - - - -

self

a QmiMessageNasSetEventReportInput.

 

value_sinr_threshold_report

a gboolean.

 

value_sinr_threshold_thresholds

a GArray of guint8 elements. A new reference to value_sinr_threshold_thresholds -will be taken.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if value -was successfully set, FALSE otherwise.

-
-

Since: 1.0

-
-
-
-

qmi_message_nas_set_event_report_input_get_ecio_threshold ()

-
gboolean
-qmi_message_nas_set_event_report_input_get_ecio_threshold
-                               (QmiMessageNasSetEventReportInput *self,
-                                gboolean *value_ecio_threshold_report,
-                                GArray **value_ecio_threshold_thresholds,
-                                GError **error);
-

Get the 'ECIO Threshold' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - - - - - - -

self

a QmiMessageNasSetEventReportInput.

 

value_ecio_threshold_report

a placeholder for the output gboolean, or NULL if not required.

 

value_ecio_threshold_thresholds

a placeholder for the output GArray of gint16 elements, or NULL if not required. Do not free it, it is owned by self -.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.0

-
-
-
-

qmi_message_nas_set_event_report_input_set_ecio_threshold ()

-
gboolean
-qmi_message_nas_set_event_report_input_set_ecio_threshold
-                               (QmiMessageNasSetEventReportInput *self,
-                                gboolean value_ecio_threshold_report,
-                                GArray *value_ecio_threshold_thresholds,
-                                GError **error);
-

Set the 'ECIO Threshold' field in the message.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - - - - - - -

self

a QmiMessageNasSetEventReportInput.

 

value_ecio_threshold_report

a gboolean.

 

value_ecio_threshold_thresholds

a GArray of gint16 elements. A new reference to value_ecio_threshold_thresholds -will be taken.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if value -was successfully set, FALSE otherwise.

-
-

Since: 1.0

-
-
-
-

qmi_message_nas_set_event_report_input_get_error_rate_indicator ()

-
gboolean
-qmi_message_nas_set_event_report_input_get_error_rate_indicator
-                               (QmiMessageNasSetEventReportInput *self,
-                                gboolean *value_error_rate_indicator,
-                                GError **error);
-

Get the 'Error Rate Indicator' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessageNasSetEventReportInput.

 

value_error_rate_indicator

a placeholder for the output gboolean, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.0

-
-
-
-

qmi_message_nas_set_event_report_input_set_error_rate_indicator ()

-
gboolean
-qmi_message_nas_set_event_report_input_set_error_rate_indicator
-                               (QmiMessageNasSetEventReportInput *self,
-                                gboolean value_error_rate_indicator,
-                                GError **error);
-

Set the 'Error Rate Indicator' field in the message.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessageNasSetEventReportInput.

 

value_error_rate_indicator

a gboolean.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if value -was successfully set, FALSE otherwise.

-
-

Since: 1.0

-
-
-
-

qmi_message_nas_set_event_report_input_get_sinr_indicator ()

-
gboolean
-qmi_message_nas_set_event_report_input_get_sinr_indicator
-                               (QmiMessageNasSetEventReportInput *self,
-                                gboolean *value_sinr_indicator_report,
-                                guint8 *value_sinr_indicator_sinr_delta,
-                                GError **error);
-

Get the 'SINR Indicator' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - - - - - - -

self

a QmiMessageNasSetEventReportInput.

 

value_sinr_indicator_report

a placeholder for the output gboolean, or NULL if not required.

 

value_sinr_indicator_sinr_delta

a placeholder for the output guint8, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.0

-
-
-
-

qmi_message_nas_set_event_report_input_set_sinr_indicator ()

-
gboolean
-qmi_message_nas_set_event_report_input_set_sinr_indicator
-                               (QmiMessageNasSetEventReportInput *self,
-                                gboolean value_sinr_indicator_report,
-                                guint8 value_sinr_indicator_sinr_delta,
-                                GError **error);
-

Set the 'SINR Indicator' field in the message.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - - - - - - -

self

a QmiMessageNasSetEventReportInput.

 

value_sinr_indicator_report

a gboolean.

 

value_sinr_indicator_sinr_delta

a guint8.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if value -was successfully set, FALSE otherwise.

-
-

Since: 1.0

-
-
-
-

qmi_message_nas_set_event_report_input_get_io_indicator ()

-
gboolean
-qmi_message_nas_set_event_report_input_get_io_indicator
-                               (QmiMessageNasSetEventReportInput *self,
-                                gboolean *value_io_indicator_report,
-                                guint8 *value_io_indicator_io_delta,
-                                GError **error);
-

Get the 'IO Indicator' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - - - - - - -

self

a QmiMessageNasSetEventReportInput.

 

value_io_indicator_report

a placeholder for the output gboolean, or NULL if not required.

 

value_io_indicator_io_delta

a placeholder for the output guint8, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.0

-
-
-
-

qmi_message_nas_set_event_report_input_set_io_indicator ()

-
gboolean
-qmi_message_nas_set_event_report_input_set_io_indicator
-                               (QmiMessageNasSetEventReportInput *self,
-                                gboolean value_io_indicator_report,
-                                guint8 value_io_indicator_io_delta,
-                                GError **error);
-

Set the 'IO Indicator' field in the message.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - - - - - - -

self

a QmiMessageNasSetEventReportInput.

 

value_io_indicator_report

a gboolean.

 

value_io_indicator_io_delta

a guint8.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if value -was successfully set, FALSE otherwise.

-
-

Since: 1.0

-
-
-
-

qmi_message_nas_set_event_report_input_get_ecio_indicator ()

-
gboolean
-qmi_message_nas_set_event_report_input_get_ecio_indicator
-                               (QmiMessageNasSetEventReportInput *self,
-                                gboolean *value_ecio_indicator_report,
-                                guint8 *value_ecio_indicator_ecio_delta,
-                                GError **error);
-

Get the 'ECIO Indicator' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - - - - - - -

self

a QmiMessageNasSetEventReportInput.

 

value_ecio_indicator_report

a placeholder for the output gboolean, or NULL if not required.

 

value_ecio_indicator_ecio_delta

a placeholder for the output guint8, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.0

-
-
-
-

qmi_message_nas_set_event_report_input_set_ecio_indicator ()

-
gboolean
-qmi_message_nas_set_event_report_input_set_ecio_indicator
-                               (QmiMessageNasSetEventReportInput *self,
-                                gboolean value_ecio_indicator_report,
-                                guint8 value_ecio_indicator_ecio_delta,
-                                GError **error);
-

Set the 'ECIO Indicator' field in the message.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - - - - - - -

self

a QmiMessageNasSetEventReportInput.

 

value_ecio_indicator_report

a gboolean.

 

value_ecio_indicator_ecio_delta

a guint8.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if value -was successfully set, FALSE otherwise.

-
-

Since: 1.0

-
-
-
-

qmi_message_nas_set_event_report_input_get_rssi_indicator ()

-
gboolean
-qmi_message_nas_set_event_report_input_get_rssi_indicator
-                               (QmiMessageNasSetEventReportInput *self,
-                                gboolean *value_rssi_indicator_report,
-                                guint8 *value_rssi_indicator_rssi_delta,
-                                GError **error);
-

Get the 'RSSI Indicator' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - - - - - - -

self

a QmiMessageNasSetEventReportInput.

 

value_rssi_indicator_report

a placeholder for the output gboolean, or NULL if not required.

 

value_rssi_indicator_rssi_delta

a placeholder for the output guint8, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.0

-
-
-
-

qmi_message_nas_set_event_report_input_set_rssi_indicator ()

-
gboolean
-qmi_message_nas_set_event_report_input_set_rssi_indicator
-                               (QmiMessageNasSetEventReportInput *self,
-                                gboolean value_rssi_indicator_report,
-                                guint8 value_rssi_indicator_rssi_delta,
-                                GError **error);
-

Set the 'RSSI Indicator' field in the message.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - - - - - - -

self

a QmiMessageNasSetEventReportInput.

 

value_rssi_indicator_report

a gboolean.

 

value_rssi_indicator_rssi_delta

a guint8.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if value -was successfully set, FALSE otherwise.

-
-

Since: 1.0

-
-
-
-

qmi_message_nas_set_event_report_input_get_registration_reject_reason ()

-
gboolean
-qmi_message_nas_set_event_report_input_get_registration_reject_reason
-                               (QmiMessageNasSetEventReportInput *self,
-                                gboolean *value_registration_reject_reason,
-                                GError **error);
-

Get the 'Registration Reject Reason' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessageNasSetEventReportInput.

 

value_registration_reject_reason

a placeholder for the output gboolean, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.0

-
-
-
-

qmi_message_nas_set_event_report_input_set_registration_reject_reason ()

-
gboolean
-qmi_message_nas_set_event_report_input_set_registration_reject_reason
-                               (QmiMessageNasSetEventReportInput *self,
-                                gboolean value_registration_reject_reason,
-                                GError **error);
-

Set the 'Registration Reject Reason' field in the message.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessageNasSetEventReportInput.

 

value_registration_reject_reason

a gboolean.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if value -was successfully set, FALSE otherwise.

-
-

Since: 1.0

-
-
-
-

qmi_message_nas_set_event_report_input_get_rf_band_information ()

-
gboolean
-qmi_message_nas_set_event_report_input_get_rf_band_information
-                               (QmiMessageNasSetEventReportInput *self,
-                                gboolean *value_rf_band_information,
-                                GError **error);
-

Get the 'RF Band Information' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessageNasSetEventReportInput.

 

value_rf_band_information

a placeholder for the output gboolean, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.0

-
-
-
-

qmi_message_nas_set_event_report_input_set_rf_band_information ()

-
gboolean
-qmi_message_nas_set_event_report_input_set_rf_band_information
-                               (QmiMessageNasSetEventReportInput *self,
-                                gboolean value_rf_band_information,
-                                GError **error);
-

Set the 'RF Band Information' field in the message.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessageNasSetEventReportInput.

 

value_rf_band_information

a gboolean.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if value -was successfully set, FALSE otherwise.

-
-

Since: 1.0

-
-
-
-

qmi_message_nas_set_event_report_input_get_signal_strength_indicator ()

-
gboolean
-qmi_message_nas_set_event_report_input_get_signal_strength_indicator
-                               (QmiMessageNasSetEventReportInput *self,
-                                gboolean *value_signal_strength_indicator_report,
-                                GArray **value_signal_strength_indicator_thresholds,
-                                GError **error);
-

Get the 'Signal Strength Indicator' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - - - - - - -

self

a QmiMessageNasSetEventReportInput.

 

value_signal_strength_indicator_report

a placeholder for the output gboolean, or NULL if not required.

 

value_signal_strength_indicator_thresholds

a placeholder for the output GArray of gint8 elements, or NULL if not required. Do not free it, it is owned by self -.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.0

-
-
-
-

qmi_message_nas_set_event_report_input_set_signal_strength_indicator ()

-
gboolean
-qmi_message_nas_set_event_report_input_set_signal_strength_indicator
-                               (QmiMessageNasSetEventReportInput *self,
-                                gboolean value_signal_strength_indicator_report,
-                                GArray *value_signal_strength_indicator_thresholds,
-                                GError **error);
-

Set the 'Signal Strength Indicator' field in the message.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - - - - - - -

self

a QmiMessageNasSetEventReportInput.

 

value_signal_strength_indicator_report

a gboolean.

 

value_signal_strength_indicator_thresholds

a GArray of gint8 elements. A new reference to value_signal_strength_indicator_thresholds -will be taken.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if value -was successfully set, FALSE otherwise.

-
-

Since: 1.0

-
-
-
-

qmi_message_nas_set_event_report_output_ref ()

-
QmiMessageNasSetEventReportOutput *
-qmi_message_nas_set_event_report_output_ref
-                               (QmiMessageNasSetEventReportOutput *self);
-

Atomically increments the reference count of self - by one.

-
-

Parameters

-
----- - - - - - -

self

a QmiMessageNasSetEventReportOutput.

 
-
-
-

Returns

-

the new reference to self -.

-
-

Since: 1.0

-
-
-
-

qmi_message_nas_set_event_report_output_unref ()

-
void
-qmi_message_nas_set_event_report_output_unref
-                               (QmiMessageNasSetEventReportOutput *self);
-

Atomically decrements the reference count of self - by one. -If the reference count drops to 0, self - is completely disposed.

-
-

Parameters

-
----- - - - - - -

self

a QmiMessageNasSetEventReportOutput.

 
-
-

Since: 1.0

-
-
-
-

qmi_message_nas_set_event_report_output_get_result ()

-
gboolean
-qmi_message_nas_set_event_report_output_get_result
-                               (QmiMessageNasSetEventReportOutput *self,
-                                GError **error);
-

Get the result of the QMI operation.

-
-

Parameters

-
----- - - - - - - - - - - - - -

self

a QmiMessageNasSetEventReportOutput.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the QMI operation succeeded, FALSE if error -is set.

-
-

Since: 1.0

-
-
-
-

qmi_client_nas_set_event_report ()

-
void
-qmi_client_nas_set_event_report (QmiClientNas *self,
-                                 QmiMessageNasSetEventReportInput *input,
-                                 guint timeout,
-                                 GCancellable *cancellable,
-                                 GAsyncReadyCallback callback,
-                                 gpointer user_data);
-

Asynchronously sends a Set Event Report request to the device.

-

When the operation is finished, callback - will be invoked in the thread-default main loop of the thread you are calling this method from.

-

You can then call qmi_client_nas_set_event_report_finish() to get the result of the operation.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

self

a QmiClientNas.

 

input

a QmiMessageNasSetEventReportInput.

 

timeout

maximum time to wait for the method to complete, in seconds.

 

cancellable

a GCancellable or NULL.

 

callback

a GAsyncReadyCallback to call when the request is satisfied.

 

user_data

user data to pass to callback -.

 
-
-

Since: 1.0

-
-
-
-

qmi_client_nas_set_event_report_finish ()

-
QmiMessageNasSetEventReportOutput *
-qmi_client_nas_set_event_report_finish
-                               (QmiClientNas *self,
-                                GAsyncResult *res,
-                                GError **error);
-

Finishes an async operation started with qmi_client_nas_set_event_report().

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiClientNas.

 

res

the GAsyncResult obtained from the GAsyncReadyCallback passed to qmi_client_nas_set_event_report().

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

a QmiMessageNasSetEventReportOutput, or NULL if error -is set. The returned value should be freed with qmi_message_nas_set_event_report_output_unref().

-
-

Since: 1.0

-
-
-
-

Types and Values

-
-

QmiMessageNasSetEventReportInput

-
typedef struct _QmiMessageNasSetEventReportInput QmiMessageNasSetEventReportInput;
-

The QmiMessageNasSetEventReportInput structure contains private data and should only be accessed -using the provided API.

-

Since: 1.0

-
-
-
-

QmiMessageNasSetEventReportOutput

-
typedef struct _QmiMessageNasSetEventReportOutput QmiMessageNasSetEventReportOutput;
-

The QmiMessageNasSetEventReportOutput structure contains private data and should only be accessed -using the provided API.

-

Since: 1.0

-
-
-
- - - \ No newline at end of file diff -Nru libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-NAS-Set-Event-Report-request.html libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-NAS-Set-Event-Report-request.html --- libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-NAS-Set-Event-Report-request.html 1970-01-01 01:00:00.000000000 +0100 +++ libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-NAS-Set-Event-Report-request.html 2019-01-08 15:19:01.000000000 +0100 @@ -0,0 +1,1767 @@ + + + + +NAS Set Event Report request: libqmi-glib Reference Manual + + + + + + + + + + + + + + + + +
+
+
+ + +
+

NAS Set Event Report request

+

NAS Set Event Report request

+
+
+

Functions

+
++++ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+QmiMessageNasSetEventReportInput * + +qmi_message_nas_set_event_report_input_new () +
+QmiMessageNasSetEventReportInput * + +qmi_message_nas_set_event_report_input_ref () +
+void + +qmi_message_nas_set_event_report_input_unref () +
+gboolean + +qmi_message_nas_set_event_report_input_get_lte_rsrp_delta () +
+gboolean + +qmi_message_nas_set_event_report_input_set_lte_rsrp_delta () +
+gboolean + +qmi_message_nas_set_event_report_input_get_lte_snr_delta () +
+gboolean + +qmi_message_nas_set_event_report_input_set_lte_snr_delta () +
+gboolean + +qmi_message_nas_set_event_report_input_get_sinr_threshold () +
+gboolean + +qmi_message_nas_set_event_report_input_set_sinr_threshold () +
+gboolean + +qmi_message_nas_set_event_report_input_get_ecio_threshold () +
+gboolean + +qmi_message_nas_set_event_report_input_set_ecio_threshold () +
+gboolean + +qmi_message_nas_set_event_report_input_get_error_rate_indicator () +
+gboolean + +qmi_message_nas_set_event_report_input_set_error_rate_indicator () +
+gboolean + +qmi_message_nas_set_event_report_input_get_sinr_indicator () +
+gboolean + +qmi_message_nas_set_event_report_input_set_sinr_indicator () +
+gboolean + +qmi_message_nas_set_event_report_input_get_io_indicator () +
+gboolean + +qmi_message_nas_set_event_report_input_set_io_indicator () +
+gboolean + +qmi_message_nas_set_event_report_input_get_ecio_indicator () +
+gboolean + +qmi_message_nas_set_event_report_input_set_ecio_indicator () +
+gboolean + +qmi_message_nas_set_event_report_input_get_rssi_indicator () +
+gboolean + +qmi_message_nas_set_event_report_input_set_rssi_indicator () +
+gboolean + +qmi_message_nas_set_event_report_input_get_registration_reject_reason () +
+gboolean + +qmi_message_nas_set_event_report_input_set_registration_reject_reason () +
+gboolean + +qmi_message_nas_set_event_report_input_get_rf_band_information () +
+gboolean + +qmi_message_nas_set_event_report_input_set_rf_band_information () +
+gboolean + +qmi_message_nas_set_event_report_input_get_signal_strength_indicator () +
+gboolean + +qmi_message_nas_set_event_report_input_set_signal_strength_indicator () +
+QmiMessageNasSetEventReportOutput * + +qmi_message_nas_set_event_report_output_ref () +
+void + +qmi_message_nas_set_event_report_output_unref () +
+gboolean + +qmi_message_nas_set_event_report_output_get_result () +
+void + +qmi_client_nas_set_event_report () +
+QmiMessageNasSetEventReportOutput * + +qmi_client_nas_set_event_report_finish () +
+
+
+

Types and Values

+ +
+
+

Object Hierarchy

+
    GBoxed
+    ├── QmiMessageNasSetEventReportInput
+    ╰── QmiMessageNasSetEventReportOutput
+
+
+
+

Description

+
+
+

Functions

+
+

qmi_message_nas_set_event_report_input_new ()

+
QmiMessageNasSetEventReportInput *
+qmi_message_nas_set_event_report_input_new
+                               (void);
+

Allocates a new QmiMessageNasSetEventReportInput.

+
+

Returns

+

the newly created QmiMessageNasSetEventReportInput. The returned value should be freed with qmi_message_nas_set_event_report_input_unref().

+
+

Since: 1.0

+
+
+
+

qmi_message_nas_set_event_report_input_ref ()

+
QmiMessageNasSetEventReportInput *
+qmi_message_nas_set_event_report_input_ref
+                               (QmiMessageNasSetEventReportInput *self);
+

Atomically increments the reference count of self + by one.

+
+

Parameters

+
+++++ + + + + + +

self

a QmiMessageNasSetEventReportInput.

 
+
+
+

Returns

+

the new reference to self +.

+
+

Since: 1.0

+
+
+
+

qmi_message_nas_set_event_report_input_unref ()

+
void
+qmi_message_nas_set_event_report_input_unref
+                               (QmiMessageNasSetEventReportInput *self);
+

Atomically decrements the reference count of self + by one. +If the reference count drops to 0, self + is completely disposed.

+
+

Parameters

+
+++++ + + + + + +

self

a QmiMessageNasSetEventReportInput.

 
+
+

Since: 1.0

+
+
+
+

qmi_message_nas_set_event_report_input_get_lte_rsrp_delta ()

+
gboolean
+qmi_message_nas_set_event_report_input_get_lte_rsrp_delta
+                               (QmiMessageNasSetEventReportInput *self,
+                                gboolean *value_lte_rsrp_delta_report,
+                                guint8 *value_lte_rsrp_delta_rsrp_delta,
+                                GError **error);
+

Get the 'LTE RSRP Delta' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + + + + + + +

self

a QmiMessageNasSetEventReportInput.

 

value_lte_rsrp_delta_report

a placeholder for the output gboolean, or NULL if not required.

 

value_lte_rsrp_delta_rsrp_delta

a placeholder for the output guint8, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.0

+
+
+
+

qmi_message_nas_set_event_report_input_set_lte_rsrp_delta ()

+
gboolean
+qmi_message_nas_set_event_report_input_set_lte_rsrp_delta
+                               (QmiMessageNasSetEventReportInput *self,
+                                gboolean value_lte_rsrp_delta_report,
+                                guint8 value_lte_rsrp_delta_rsrp_delta,
+                                GError **error);
+

Set the 'LTE RSRP Delta' field in the message.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + + + + + + +

self

a QmiMessageNasSetEventReportInput.

 

value_lte_rsrp_delta_report

a gboolean.

 

value_lte_rsrp_delta_rsrp_delta

a guint8.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if value +was successfully set, FALSE otherwise.

+
+

Since: 1.0

+
+
+
+

qmi_message_nas_set_event_report_input_get_lte_snr_delta ()

+
gboolean
+qmi_message_nas_set_event_report_input_get_lte_snr_delta
+                               (QmiMessageNasSetEventReportInput *self,
+                                gboolean *value_lte_snr_delta_report,
+                                guint8 *value_lte_snr_delta_snr_delta,
+                                GError **error);
+

Get the 'LTE SNR Delta' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + + + + + + +

self

a QmiMessageNasSetEventReportInput.

 

value_lte_snr_delta_report

a placeholder for the output gboolean, or NULL if not required.

 

value_lte_snr_delta_snr_delta

a placeholder for the output guint8, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.0

+
+
+
+

qmi_message_nas_set_event_report_input_set_lte_snr_delta ()

+
gboolean
+qmi_message_nas_set_event_report_input_set_lte_snr_delta
+                               (QmiMessageNasSetEventReportInput *self,
+                                gboolean value_lte_snr_delta_report,
+                                guint8 value_lte_snr_delta_snr_delta,
+                                GError **error);
+

Set the 'LTE SNR Delta' field in the message.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + + + + + + +

self

a QmiMessageNasSetEventReportInput.

 

value_lte_snr_delta_report

a gboolean.

 

value_lte_snr_delta_snr_delta

a guint8.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if value +was successfully set, FALSE otherwise.

+
+

Since: 1.0

+
+
+
+

qmi_message_nas_set_event_report_input_get_sinr_threshold ()

+
gboolean
+qmi_message_nas_set_event_report_input_get_sinr_threshold
+                               (QmiMessageNasSetEventReportInput *self,
+                                gboolean *value_sinr_threshold_report,
+                                GArray **value_sinr_threshold_thresholds,
+                                GError **error);
+

Get the 'SINR Threshold' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + + + + + + +

self

a QmiMessageNasSetEventReportInput.

 

value_sinr_threshold_report

a placeholder for the output gboolean, or NULL if not required.

 

value_sinr_threshold_thresholds

a placeholder for the output GArray of guint8 elements, or NULL if not required. Do not free it, it is owned by self +.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.0

+
+
+
+

qmi_message_nas_set_event_report_input_set_sinr_threshold ()

+
gboolean
+qmi_message_nas_set_event_report_input_set_sinr_threshold
+                               (QmiMessageNasSetEventReportInput *self,
+                                gboolean value_sinr_threshold_report,
+                                GArray *value_sinr_threshold_thresholds,
+                                GError **error);
+

Set the 'SINR Threshold' field in the message.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + + + + + + +

self

a QmiMessageNasSetEventReportInput.

 

value_sinr_threshold_report

a gboolean.

 

value_sinr_threshold_thresholds

a GArray of guint8 elements. A new reference to value_sinr_threshold_thresholds +will be taken.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if value +was successfully set, FALSE otherwise.

+
+

Since: 1.0

+
+
+
+

qmi_message_nas_set_event_report_input_get_ecio_threshold ()

+
gboolean
+qmi_message_nas_set_event_report_input_get_ecio_threshold
+                               (QmiMessageNasSetEventReportInput *self,
+                                gboolean *value_ecio_threshold_report,
+                                GArray **value_ecio_threshold_thresholds,
+                                GError **error);
+

Get the 'ECIO Threshold' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + + + + + + +

self

a QmiMessageNasSetEventReportInput.

 

value_ecio_threshold_report

a placeholder for the output gboolean, or NULL if not required.

 

value_ecio_threshold_thresholds

a placeholder for the output GArray of gint16 elements, or NULL if not required. Do not free it, it is owned by self +.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.0

+
+
+
+

qmi_message_nas_set_event_report_input_set_ecio_threshold ()

+
gboolean
+qmi_message_nas_set_event_report_input_set_ecio_threshold
+                               (QmiMessageNasSetEventReportInput *self,
+                                gboolean value_ecio_threshold_report,
+                                GArray *value_ecio_threshold_thresholds,
+                                GError **error);
+

Set the 'ECIO Threshold' field in the message.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + + + + + + +

self

a QmiMessageNasSetEventReportInput.

 

value_ecio_threshold_report

a gboolean.

 

value_ecio_threshold_thresholds

a GArray of gint16 elements. A new reference to value_ecio_threshold_thresholds +will be taken.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if value +was successfully set, FALSE otherwise.

+
+

Since: 1.0

+
+
+
+

qmi_message_nas_set_event_report_input_get_error_rate_indicator ()

+
gboolean
+qmi_message_nas_set_event_report_input_get_error_rate_indicator
+                               (QmiMessageNasSetEventReportInput *self,
+                                gboolean *value_error_rate_indicator,
+                                GError **error);
+

Get the 'Error Rate Indicator' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageNasSetEventReportInput.

 

value_error_rate_indicator

a placeholder for the output gboolean, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.0

+
+
+
+

qmi_message_nas_set_event_report_input_set_error_rate_indicator ()

+
gboolean
+qmi_message_nas_set_event_report_input_set_error_rate_indicator
+                               (QmiMessageNasSetEventReportInput *self,
+                                gboolean value_error_rate_indicator,
+                                GError **error);
+

Set the 'Error Rate Indicator' field in the message.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageNasSetEventReportInput.

 

value_error_rate_indicator

a gboolean.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if value +was successfully set, FALSE otherwise.

+
+

Since: 1.0

+
+
+
+

qmi_message_nas_set_event_report_input_get_sinr_indicator ()

+
gboolean
+qmi_message_nas_set_event_report_input_get_sinr_indicator
+                               (QmiMessageNasSetEventReportInput *self,
+                                gboolean *value_sinr_indicator_report,
+                                guint8 *value_sinr_indicator_sinr_delta,
+                                GError **error);
+

Get the 'SINR Indicator' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + + + + + + +

self

a QmiMessageNasSetEventReportInput.

 

value_sinr_indicator_report

a placeholder for the output gboolean, or NULL if not required.

 

value_sinr_indicator_sinr_delta

a placeholder for the output guint8, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.0

+
+
+
+

qmi_message_nas_set_event_report_input_set_sinr_indicator ()

+
gboolean
+qmi_message_nas_set_event_report_input_set_sinr_indicator
+                               (QmiMessageNasSetEventReportInput *self,
+                                gboolean value_sinr_indicator_report,
+                                guint8 value_sinr_indicator_sinr_delta,
+                                GError **error);
+

Set the 'SINR Indicator' field in the message.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + + + + + + +

self

a QmiMessageNasSetEventReportInput.

 

value_sinr_indicator_report

a gboolean.

 

value_sinr_indicator_sinr_delta

a guint8.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if value +was successfully set, FALSE otherwise.

+
+

Since: 1.0

+
+
+
+

qmi_message_nas_set_event_report_input_get_io_indicator ()

+
gboolean
+qmi_message_nas_set_event_report_input_get_io_indicator
+                               (QmiMessageNasSetEventReportInput *self,
+                                gboolean *value_io_indicator_report,
+                                guint8 *value_io_indicator_io_delta,
+                                GError **error);
+

Get the 'IO Indicator' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + + + + + + +

self

a QmiMessageNasSetEventReportInput.

 

value_io_indicator_report

a placeholder for the output gboolean, or NULL if not required.

 

value_io_indicator_io_delta

a placeholder for the output guint8, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.0

+
+
+
+

qmi_message_nas_set_event_report_input_set_io_indicator ()

+
gboolean
+qmi_message_nas_set_event_report_input_set_io_indicator
+                               (QmiMessageNasSetEventReportInput *self,
+                                gboolean value_io_indicator_report,
+                                guint8 value_io_indicator_io_delta,
+                                GError **error);
+

Set the 'IO Indicator' field in the message.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + + + + + + +

self

a QmiMessageNasSetEventReportInput.

 

value_io_indicator_report

a gboolean.

 

value_io_indicator_io_delta

a guint8.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if value +was successfully set, FALSE otherwise.

+
+

Since: 1.0

+
+
+
+

qmi_message_nas_set_event_report_input_get_ecio_indicator ()

+
gboolean
+qmi_message_nas_set_event_report_input_get_ecio_indicator
+                               (QmiMessageNasSetEventReportInput *self,
+                                gboolean *value_ecio_indicator_report,
+                                guint8 *value_ecio_indicator_ecio_delta,
+                                GError **error);
+

Get the 'ECIO Indicator' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + + + + + + +

self

a QmiMessageNasSetEventReportInput.

 

value_ecio_indicator_report

a placeholder for the output gboolean, or NULL if not required.

 

value_ecio_indicator_ecio_delta

a placeholder for the output guint8, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.0

+
+
+
+

qmi_message_nas_set_event_report_input_set_ecio_indicator ()

+
gboolean
+qmi_message_nas_set_event_report_input_set_ecio_indicator
+                               (QmiMessageNasSetEventReportInput *self,
+                                gboolean value_ecio_indicator_report,
+                                guint8 value_ecio_indicator_ecio_delta,
+                                GError **error);
+

Set the 'ECIO Indicator' field in the message.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + + + + + + +

self

a QmiMessageNasSetEventReportInput.

 

value_ecio_indicator_report

a gboolean.

 

value_ecio_indicator_ecio_delta

a guint8.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if value +was successfully set, FALSE otherwise.

+
+

Since: 1.0

+
+
+
+

qmi_message_nas_set_event_report_input_get_rssi_indicator ()

+
gboolean
+qmi_message_nas_set_event_report_input_get_rssi_indicator
+                               (QmiMessageNasSetEventReportInput *self,
+                                gboolean *value_rssi_indicator_report,
+                                guint8 *value_rssi_indicator_rssi_delta,
+                                GError **error);
+

Get the 'RSSI Indicator' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + + + + + + +

self

a QmiMessageNasSetEventReportInput.

 

value_rssi_indicator_report

a placeholder for the output gboolean, or NULL if not required.

 

value_rssi_indicator_rssi_delta

a placeholder for the output guint8, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.0

+
+
+
+

qmi_message_nas_set_event_report_input_set_rssi_indicator ()

+
gboolean
+qmi_message_nas_set_event_report_input_set_rssi_indicator
+                               (QmiMessageNasSetEventReportInput *self,
+                                gboolean value_rssi_indicator_report,
+                                guint8 value_rssi_indicator_rssi_delta,
+                                GError **error);
+

Set the 'RSSI Indicator' field in the message.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + + + + + + +

self

a QmiMessageNasSetEventReportInput.

 

value_rssi_indicator_report

a gboolean.

 

value_rssi_indicator_rssi_delta

a guint8.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if value +was successfully set, FALSE otherwise.

+
+

Since: 1.0

+
+
+
+

qmi_message_nas_set_event_report_input_get_registration_reject_reason ()

+
gboolean
+qmi_message_nas_set_event_report_input_get_registration_reject_reason
+                               (QmiMessageNasSetEventReportInput *self,
+                                gboolean *value_registration_reject_reason,
+                                GError **error);
+

Get the 'Registration Reject Reason' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageNasSetEventReportInput.

 

value_registration_reject_reason

a placeholder for the output gboolean, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.0

+
+
+
+

qmi_message_nas_set_event_report_input_set_registration_reject_reason ()

+
gboolean
+qmi_message_nas_set_event_report_input_set_registration_reject_reason
+                               (QmiMessageNasSetEventReportInput *self,
+                                gboolean value_registration_reject_reason,
+                                GError **error);
+

Set the 'Registration Reject Reason' field in the message.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageNasSetEventReportInput.

 

value_registration_reject_reason

a gboolean.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if value +was successfully set, FALSE otherwise.

+
+

Since: 1.0

+
+
+
+

qmi_message_nas_set_event_report_input_get_rf_band_information ()

+
gboolean
+qmi_message_nas_set_event_report_input_get_rf_band_information
+                               (QmiMessageNasSetEventReportInput *self,
+                                gboolean *value_rf_band_information,
+                                GError **error);
+

Get the 'RF Band Information' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageNasSetEventReportInput.

 

value_rf_band_information

a placeholder for the output gboolean, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.0

+
+
+
+

qmi_message_nas_set_event_report_input_set_rf_band_information ()

+
gboolean
+qmi_message_nas_set_event_report_input_set_rf_band_information
+                               (QmiMessageNasSetEventReportInput *self,
+                                gboolean value_rf_band_information,
+                                GError **error);
+

Set the 'RF Band Information' field in the message.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageNasSetEventReportInput.

 

value_rf_band_information

a gboolean.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if value +was successfully set, FALSE otherwise.

+
+

Since: 1.0

+
+
+
+

qmi_message_nas_set_event_report_input_get_signal_strength_indicator ()

+
gboolean
+qmi_message_nas_set_event_report_input_get_signal_strength_indicator
+                               (QmiMessageNasSetEventReportInput *self,
+                                gboolean *value_signal_strength_indicator_report,
+                                GArray **value_signal_strength_indicator_thresholds,
+                                GError **error);
+

Get the 'Signal Strength Indicator' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + + + + + + +

self

a QmiMessageNasSetEventReportInput.

 

value_signal_strength_indicator_report

a placeholder for the output gboolean, or NULL if not required.

 

value_signal_strength_indicator_thresholds

a placeholder for the output GArray of gint8 elements, or NULL if not required. Do not free it, it is owned by self +.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.0

+
+
+
+

qmi_message_nas_set_event_report_input_set_signal_strength_indicator ()

+
gboolean
+qmi_message_nas_set_event_report_input_set_signal_strength_indicator
+                               (QmiMessageNasSetEventReportInput *self,
+                                gboolean value_signal_strength_indicator_report,
+                                GArray *value_signal_strength_indicator_thresholds,
+                                GError **error);
+

Set the 'Signal Strength Indicator' field in the message.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + + + + + + +

self

a QmiMessageNasSetEventReportInput.

 

value_signal_strength_indicator_report

a gboolean.

 

value_signal_strength_indicator_thresholds

a GArray of gint8 elements. A new reference to value_signal_strength_indicator_thresholds +will be taken.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if value +was successfully set, FALSE otherwise.

+
+

Since: 1.0

+
+
+
+

qmi_message_nas_set_event_report_output_ref ()

+
QmiMessageNasSetEventReportOutput *
+qmi_message_nas_set_event_report_output_ref
+                               (QmiMessageNasSetEventReportOutput *self);
+

Atomically increments the reference count of self + by one.

+
+

Parameters

+
+++++ + + + + + +

self

a QmiMessageNasSetEventReportOutput.

 
+
+
+

Returns

+

the new reference to self +.

+
+

Since: 1.0

+
+
+
+

qmi_message_nas_set_event_report_output_unref ()

+
void
+qmi_message_nas_set_event_report_output_unref
+                               (QmiMessageNasSetEventReportOutput *self);
+

Atomically decrements the reference count of self + by one. +If the reference count drops to 0, self + is completely disposed.

+
+

Parameters

+
+++++ + + + + + +

self

a QmiMessageNasSetEventReportOutput.

 
+
+

Since: 1.0

+
+
+
+

qmi_message_nas_set_event_report_output_get_result ()

+
gboolean
+qmi_message_nas_set_event_report_output_get_result
+                               (QmiMessageNasSetEventReportOutput *self,
+                                GError **error);
+

Get the result of the QMI operation.

+
+

Parameters

+
+++++ + + + + + + + + + + + + +

self

a QmiMessageNasSetEventReportOutput.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the QMI operation succeeded, FALSE if error +is set.

+
+

Since: 1.0

+
+
+
+

qmi_client_nas_set_event_report ()

+
void
+qmi_client_nas_set_event_report (QmiClientNas *self,
+                                 QmiMessageNasSetEventReportInput *input,
+                                 guint timeout,
+                                 GCancellable *cancellable,
+                                 GAsyncReadyCallback callback,
+                                 gpointer user_data);
+

Asynchronously sends a Set Event Report request to the device.

+

When the operation is finished, callback + will be invoked in the thread-default main loop of the thread you are calling this method from.

+

You can then call qmi_client_nas_set_event_report_finish() to get the result of the operation.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

self

a QmiClientNas.

 

input

a QmiMessageNasSetEventReportInput.

 

timeout

maximum time to wait for the method to complete, in seconds.

 

cancellable

a GCancellable or NULL.

 

callback

a GAsyncReadyCallback to call when the request is satisfied.

 

user_data

user data to pass to callback +.

 
+
+

Since: 1.0

+
+
+
+

qmi_client_nas_set_event_report_finish ()

+
QmiMessageNasSetEventReportOutput *
+qmi_client_nas_set_event_report_finish
+                               (QmiClientNas *self,
+                                GAsyncResult *res,
+                                GError **error);
+

Finishes an async operation started with qmi_client_nas_set_event_report().

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiClientNas.

 

res

the GAsyncResult obtained from the GAsyncReadyCallback passed to qmi_client_nas_set_event_report().

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

a QmiMessageNasSetEventReportOutput, or NULL if error +is set. The returned value should be freed with qmi_message_nas_set_event_report_output_unref().

+
+

Since: 1.0

+
+
+
+

Types and Values

+
+

QmiMessageNasSetEventReportInput

+
typedef struct _QmiMessageNasSetEventReportInput QmiMessageNasSetEventReportInput;
+

The QmiMessageNasSetEventReportInput structure contains private data and should only be accessed +using the provided API.

+

Since: 1.0

+
+
+
+

QmiMessageNasSetEventReportOutput

+
typedef struct _QmiMessageNasSetEventReportOutput QmiMessageNasSetEventReportOutput;
+

The QmiMessageNasSetEventReportOutput structure contains private data and should only be accessed +using the provided API.

+

Since: 1.0

+
+
+
+ + + \ No newline at end of file diff -Nru libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-NAS-Set-System-Selection-Preference.html libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-NAS-Set-System-Selection-Preference.html --- libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-NAS-Set-System-Selection-Preference.html 2017-03-22 12:28:29.000000000 +0100 +++ libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-NAS-Set-System-Selection-Preference.html 1970-01-01 01:00:00.000000000 +0100 @@ -1,1678 +0,0 @@ - - - - -NAS Set System Selection Preference: libqmi-glib Reference Manual - - - - - - - - - - - - - - - - -
-
-
- - -
-

NAS Set System Selection Preference

-

NAS Set System Selection Preference

-
-
-

Functions

-
---- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
-QmiMessageNasSetSystemSelectionPreferenceInput * - -qmi_message_nas_set_system_selection_preference_input_new () -
-QmiMessageNasSetSystemSelectionPreferenceInput * - -qmi_message_nas_set_system_selection_preference_input_ref () -
-void - -qmi_message_nas_set_system_selection_preference_input_unref () -
-gboolean - -qmi_message_nas_set_system_selection_preference_input_get_td_scdma_band_preference () -
-gboolean - -qmi_message_nas_set_system_selection_preference_input_set_td_scdma_band_preference () -
-gboolean - -qmi_message_nas_set_system_selection_preference_input_get_mnc_pds_digit_include_status () -
-gboolean - -qmi_message_nas_set_system_selection_preference_input_set_mnc_pds_digit_include_status () -
-gboolean - -qmi_message_nas_set_system_selection_preference_input_get_gsm_wcdma_acquisition_order_preference () -
-gboolean - -qmi_message_nas_set_system_selection_preference_input_set_gsm_wcdma_acquisition_order_preference () -
-gboolean - -qmi_message_nas_set_system_selection_preference_input_get_service_domain_preference () -
-gboolean - -qmi_message_nas_set_system_selection_preference_input_set_service_domain_preference () -
-gboolean - -qmi_message_nas_set_system_selection_preference_input_get_change_duration () -
-gboolean - -qmi_message_nas_set_system_selection_preference_input_set_change_duration () -
-gboolean - -qmi_message_nas_set_system_selection_preference_input_get_network_selection_preference () -
-gboolean - -qmi_message_nas_set_system_selection_preference_input_set_network_selection_preference () -
-gboolean - -qmi_message_nas_set_system_selection_preference_input_get_lte_band_preference () -
-gboolean - -qmi_message_nas_set_system_selection_preference_input_set_lte_band_preference () -
-gboolean - -qmi_message_nas_set_system_selection_preference_input_get_roaming_preference () -
-gboolean - -qmi_message_nas_set_system_selection_preference_input_set_roaming_preference () -
-gboolean - -qmi_message_nas_set_system_selection_preference_input_get_cdma_prl_preference () -
-gboolean - -qmi_message_nas_set_system_selection_preference_input_set_cdma_prl_preference () -
-gboolean - -qmi_message_nas_set_system_selection_preference_input_get_band_preference () -
-gboolean - -qmi_message_nas_set_system_selection_preference_input_set_band_preference () -
-gboolean - -qmi_message_nas_set_system_selection_preference_input_get_mode_preference () -
-gboolean - -qmi_message_nas_set_system_selection_preference_input_set_mode_preference () -
-gboolean - -qmi_message_nas_set_system_selection_preference_input_get_emergency_mode () -
-gboolean - -qmi_message_nas_set_system_selection_preference_input_set_emergency_mode () -
-QmiMessageNasSetSystemSelectionPreferenceOutput * - -qmi_message_nas_set_system_selection_preference_output_ref () -
-void - -qmi_message_nas_set_system_selection_preference_output_unref () -
-gboolean - -qmi_message_nas_set_system_selection_preference_output_get_result () -
-void - -qmi_client_nas_set_system_selection_preference () -
-QmiMessageNasSetSystemSelectionPreferenceOutput * - -qmi_client_nas_set_system_selection_preference_finish () -
-
- -
-

Object Hierarchy

-
    GBoxed
-    ├── QmiMessageNasSetSystemSelectionPreferenceInput
-    ╰── QmiMessageNasSetSystemSelectionPreferenceOutput
-
-
-
-

Description

-
-
-

Functions

-
-

qmi_message_nas_set_system_selection_preference_input_new ()

-
QmiMessageNasSetSystemSelectionPreferenceInput *
-qmi_message_nas_set_system_selection_preference_input_new
-                               (void);
-

Allocates a new QmiMessageNasSetSystemSelectionPreferenceInput.

-
-

Returns

-

the newly created QmiMessageNasSetSystemSelectionPreferenceInput. The returned value should be freed with qmi_message_nas_set_system_selection_preference_input_unref().

-
-

Since: 1.0

-
-
-
-

qmi_message_nas_set_system_selection_preference_input_ref ()

-
QmiMessageNasSetSystemSelectionPreferenceInput *
-qmi_message_nas_set_system_selection_preference_input_ref
-                               (QmiMessageNasSetSystemSelectionPreferenceInput *self);
-

Atomically increments the reference count of self - by one.

-
-

Parameters

- -
-
-

Returns

-

the new reference to self -.

-
-

Since: 1.0

-
-
-
-

qmi_message_nas_set_system_selection_preference_input_unref ()

-
void
-qmi_message_nas_set_system_selection_preference_input_unref
-                               (QmiMessageNasSetSystemSelectionPreferenceInput *self);
-

Atomically decrements the reference count of self - by one. -If the reference count drops to 0, self - is completely disposed.

-
-

Parameters

- -
-

Since: 1.0

-
-
-
-

qmi_message_nas_set_system_selection_preference_input_get_td_scdma_band_preference ()

-
gboolean
-qmi_message_nas_set_system_selection_preference_input_get_td_scdma_band_preference
-                               (QmiMessageNasSetSystemSelectionPreferenceInput *self,
-                                QmiNasTdScdmaBandPreference *value_td_scdma_band_preference,
-                                GError **error);
-

Get the 'TD SCDMA Band Preference' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessageNasSetSystemSelectionPreferenceInput.

 

value_td_scdma_band_preference

a placeholder for the output QmiNasTdScdmaBandPreference, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.0

-
-
-
-

qmi_message_nas_set_system_selection_preference_input_set_td_scdma_band_preference ()

-
gboolean
-qmi_message_nas_set_system_selection_preference_input_set_td_scdma_band_preference
-                               (QmiMessageNasSetSystemSelectionPreferenceInput *self,
-                                QmiNasTdScdmaBandPreference value_td_scdma_band_preference,
-                                GError **error);
-

Set the 'TD SCDMA Band Preference' field in the message.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessageNasSetSystemSelectionPreferenceInput.

 

value_td_scdma_band_preference

a QmiNasTdScdmaBandPreference.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if value -was successfully set, FALSE otherwise.

-
-

Since: 1.0

-
-
-
-

qmi_message_nas_set_system_selection_preference_input_get_mnc_pds_digit_include_status ()

-
gboolean
-qmi_message_nas_set_system_selection_preference_input_get_mnc_pds_digit_include_status
-                               (QmiMessageNasSetSystemSelectionPreferenceInput *self,
-                                gboolean *value_mnc_pds_digit_include_status,
-                                GError **error);
-

Get the 'MNC PDS Digit Include Status' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessageNasSetSystemSelectionPreferenceInput.

 

value_mnc_pds_digit_include_status

a placeholder for the output gboolean, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.0

-
-
-
-

qmi_message_nas_set_system_selection_preference_input_set_mnc_pds_digit_include_status ()

-
gboolean
-qmi_message_nas_set_system_selection_preference_input_set_mnc_pds_digit_include_status
-                               (QmiMessageNasSetSystemSelectionPreferenceInput *self,
-                                gboolean value_mnc_pds_digit_include_status,
-                                GError **error);
-

Set the 'MNC PDS Digit Include Status' field in the message.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessageNasSetSystemSelectionPreferenceInput.

 

value_mnc_pds_digit_include_status

a gboolean.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if value -was successfully set, FALSE otherwise.

-
-

Since: 1.0

-
-
-
-

qmi_message_nas_set_system_selection_preference_input_get_gsm_wcdma_acquisition_order_preference ()

-
gboolean
-qmi_message_nas_set_system_selection_preference_input_get_gsm_wcdma_acquisition_order_preference
-                               (QmiMessageNasSetSystemSelectionPreferenceInput *self,
-                                QmiNasGsmWcdmaAcquisitionOrderPreference *value_gsm_wcdma_acquisition_order_preference,
-                                GError **error);
-

Get the 'GSM WCDMA Acquisition Order Preference' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessageNasSetSystemSelectionPreferenceInput.

 

value_gsm_wcdma_acquisition_order_preference

a placeholder for the output QmiNasGsmWcdmaAcquisitionOrderPreference, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.0

-
-
-
-

qmi_message_nas_set_system_selection_preference_input_set_gsm_wcdma_acquisition_order_preference ()

-
gboolean
-qmi_message_nas_set_system_selection_preference_input_set_gsm_wcdma_acquisition_order_preference
-                               (QmiMessageNasSetSystemSelectionPreferenceInput *self,
-                                QmiNasGsmWcdmaAcquisitionOrderPreference value_gsm_wcdma_acquisition_order_preference,
-                                GError **error);
-

Set the 'GSM WCDMA Acquisition Order Preference' field in the message.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessageNasSetSystemSelectionPreferenceInput.

 

value_gsm_wcdma_acquisition_order_preference

a QmiNasGsmWcdmaAcquisitionOrderPreference.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if value -was successfully set, FALSE otherwise.

-
-

Since: 1.0

-
-
-
-

qmi_message_nas_set_system_selection_preference_input_get_service_domain_preference ()

-
gboolean
-qmi_message_nas_set_system_selection_preference_input_get_service_domain_preference
-                               (QmiMessageNasSetSystemSelectionPreferenceInput *self,
-                                QmiNasServiceDomainPreference *value_service_domain_preference,
-                                GError **error);
-

Get the 'Service Domain Preference' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessageNasSetSystemSelectionPreferenceInput.

 

value_service_domain_preference

a placeholder for the output QmiNasServiceDomainPreference, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.0

-
-
-
-

qmi_message_nas_set_system_selection_preference_input_set_service_domain_preference ()

-
gboolean
-qmi_message_nas_set_system_selection_preference_input_set_service_domain_preference
-                               (QmiMessageNasSetSystemSelectionPreferenceInput *self,
-                                QmiNasServiceDomainPreference value_service_domain_preference,
-                                GError **error);
-

Set the 'Service Domain Preference' field in the message.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessageNasSetSystemSelectionPreferenceInput.

 

value_service_domain_preference

a QmiNasServiceDomainPreference.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if value -was successfully set, FALSE otherwise.

-
-

Since: 1.0

-
-
-
-

qmi_message_nas_set_system_selection_preference_input_get_change_duration ()

-
gboolean
-qmi_message_nas_set_system_selection_preference_input_get_change_duration
-                               (QmiMessageNasSetSystemSelectionPreferenceInput *self,
-                                QmiNasChangeDuration *value_change_duration,
-                                GError **error);
-

Get the 'Change Duration' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessageNasSetSystemSelectionPreferenceInput.

 

value_change_duration

a placeholder for the output QmiNasChangeDuration, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.0

-
-
-
-

qmi_message_nas_set_system_selection_preference_input_set_change_duration ()

-
gboolean
-qmi_message_nas_set_system_selection_preference_input_set_change_duration
-                               (QmiMessageNasSetSystemSelectionPreferenceInput *self,
-                                QmiNasChangeDuration value_change_duration,
-                                GError **error);
-

Set the 'Change Duration' field in the message.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessageNasSetSystemSelectionPreferenceInput.

 

value_change_duration

a QmiNasChangeDuration.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if value -was successfully set, FALSE otherwise.

-
-

Since: 1.0

-
-
-
-

qmi_message_nas_set_system_selection_preference_input_get_network_selection_preference ()

-
gboolean
-qmi_message_nas_set_system_selection_preference_input_get_network_selection_preference
-                               (QmiMessageNasSetSystemSelectionPreferenceInput *self,
-                                QmiNasNetworkSelectionPreference *value_network_selection_preference_mode,
-                                guint16 *value_network_selection_preference_mcc,
-                                guint16 *value_network_selection_preference_mnc,
-                                GError **error);
-

Get the 'Network Selection Preference' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - - - - - - - - - - - -

self

a QmiMessageNasSetSystemSelectionPreferenceInput.

 

value_network_selection_preference_mode

a placeholder for the output QmiNasNetworkSelectionPreference, or NULL if not required.

 

value_network_selection_preference_mcc

a placeholder for the output guint16, or NULL if not required.

 

value_network_selection_preference_mnc

a placeholder for the output guint16, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.0

-
-
-
-

qmi_message_nas_set_system_selection_preference_input_set_network_selection_preference ()

-
gboolean
-qmi_message_nas_set_system_selection_preference_input_set_network_selection_preference
-                               (QmiMessageNasSetSystemSelectionPreferenceInput *self,
-                                QmiNasNetworkSelectionPreference value_network_selection_preference_mode,
-                                guint16 value_network_selection_preference_mcc,
-                                guint16 value_network_selection_preference_mnc,
-                                GError **error);
-

Set the 'Network Selection Preference' field in the message.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - - - - - - - - - - - -

self

a QmiMessageNasSetSystemSelectionPreferenceInput.

 

value_network_selection_preference_mode

a QmiNasNetworkSelectionPreference.

 

value_network_selection_preference_mcc

a guint16.

 

value_network_selection_preference_mnc

a guint16.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if value -was successfully set, FALSE otherwise.

-
-

Since: 1.0

-
-
-
-

qmi_message_nas_set_system_selection_preference_input_get_lte_band_preference ()

-
gboolean
-qmi_message_nas_set_system_selection_preference_input_get_lte_band_preference
-                               (QmiMessageNasSetSystemSelectionPreferenceInput *self,
-                                QmiNasLteBandPreference *value_lte_band_preference,
-                                GError **error);
-

Get the 'LTE Band Preference' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessageNasSetSystemSelectionPreferenceInput.

 

value_lte_band_preference

a placeholder for the output QmiNasLteBandPreference, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.0

-
-
-
-

qmi_message_nas_set_system_selection_preference_input_set_lte_band_preference ()

-
gboolean
-qmi_message_nas_set_system_selection_preference_input_set_lte_band_preference
-                               (QmiMessageNasSetSystemSelectionPreferenceInput *self,
-                                QmiNasLteBandPreference value_lte_band_preference,
-                                GError **error);
-

Set the 'LTE Band Preference' field in the message.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessageNasSetSystemSelectionPreferenceInput.

 

value_lte_band_preference

a QmiNasLteBandPreference.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if value -was successfully set, FALSE otherwise.

-
-

Since: 1.0

-
-
-
-

qmi_message_nas_set_system_selection_preference_input_get_roaming_preference ()

-
gboolean
-qmi_message_nas_set_system_selection_preference_input_get_roaming_preference
-                               (QmiMessageNasSetSystemSelectionPreferenceInput *self,
-                                QmiNasRoamingPreference *value_roaming_preference,
-                                GError **error);
-

Get the 'Roaming Preference' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessageNasSetSystemSelectionPreferenceInput.

 

value_roaming_preference

a placeholder for the output QmiNasRoamingPreference, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.0

-
-
-
-

qmi_message_nas_set_system_selection_preference_input_set_roaming_preference ()

-
gboolean
-qmi_message_nas_set_system_selection_preference_input_set_roaming_preference
-                               (QmiMessageNasSetSystemSelectionPreferenceInput *self,
-                                QmiNasRoamingPreference value_roaming_preference,
-                                GError **error);
-

Set the 'Roaming Preference' field in the message.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessageNasSetSystemSelectionPreferenceInput.

 

value_roaming_preference

a QmiNasRoamingPreference.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if value -was successfully set, FALSE otherwise.

-
-

Since: 1.0

-
-
-
-

qmi_message_nas_set_system_selection_preference_input_get_cdma_prl_preference ()

-
gboolean
-qmi_message_nas_set_system_selection_preference_input_get_cdma_prl_preference
-                               (QmiMessageNasSetSystemSelectionPreferenceInput *self,
-                                QmiNasCdmaPrlPreference *value_cdma_prl_preference,
-                                GError **error);
-

Get the 'CDMA PRL Preference' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessageNasSetSystemSelectionPreferenceInput.

 

value_cdma_prl_preference

a placeholder for the output QmiNasCdmaPrlPreference, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.0

-
-
-
-

qmi_message_nas_set_system_selection_preference_input_set_cdma_prl_preference ()

-
gboolean
-qmi_message_nas_set_system_selection_preference_input_set_cdma_prl_preference
-                               (QmiMessageNasSetSystemSelectionPreferenceInput *self,
-                                QmiNasCdmaPrlPreference value_cdma_prl_preference,
-                                GError **error);
-

Set the 'CDMA PRL Preference' field in the message.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessageNasSetSystemSelectionPreferenceInput.

 

value_cdma_prl_preference

a QmiNasCdmaPrlPreference.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if value -was successfully set, FALSE otherwise.

-
-

Since: 1.0

-
-
-
-

qmi_message_nas_set_system_selection_preference_input_get_band_preference ()

-
gboolean
-qmi_message_nas_set_system_selection_preference_input_get_band_preference
-                               (QmiMessageNasSetSystemSelectionPreferenceInput *self,
-                                QmiNasBandPreference *value_band_preference,
-                                GError **error);
-

Get the 'Band Preference' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessageNasSetSystemSelectionPreferenceInput.

 

value_band_preference

a placeholder for the output QmiNasBandPreference, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.0

-
-
-
-

qmi_message_nas_set_system_selection_preference_input_set_band_preference ()

-
gboolean
-qmi_message_nas_set_system_selection_preference_input_set_band_preference
-                               (QmiMessageNasSetSystemSelectionPreferenceInput *self,
-                                QmiNasBandPreference value_band_preference,
-                                GError **error);
-

Set the 'Band Preference' field in the message.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessageNasSetSystemSelectionPreferenceInput.

 

value_band_preference

a QmiNasBandPreference.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if value -was successfully set, FALSE otherwise.

-
-

Since: 1.0

-
-
-
-

qmi_message_nas_set_system_selection_preference_input_get_mode_preference ()

-
gboolean
-qmi_message_nas_set_system_selection_preference_input_get_mode_preference
-                               (QmiMessageNasSetSystemSelectionPreferenceInput *self,
-                                QmiNasRatModePreference *value_mode_preference,
-                                GError **error);
-

Get the 'Mode Preference' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessageNasSetSystemSelectionPreferenceInput.

 

value_mode_preference

a placeholder for the output QmiNasRatModePreference, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.0

-
-
-
-

qmi_message_nas_set_system_selection_preference_input_set_mode_preference ()

-
gboolean
-qmi_message_nas_set_system_selection_preference_input_set_mode_preference
-                               (QmiMessageNasSetSystemSelectionPreferenceInput *self,
-                                QmiNasRatModePreference value_mode_preference,
-                                GError **error);
-

Set the 'Mode Preference' field in the message.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessageNasSetSystemSelectionPreferenceInput.

 

value_mode_preference

a QmiNasRatModePreference.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if value -was successfully set, FALSE otherwise.

-
-

Since: 1.0

-
-
-
-

qmi_message_nas_set_system_selection_preference_input_get_emergency_mode ()

-
gboolean
-qmi_message_nas_set_system_selection_preference_input_get_emergency_mode
-                               (QmiMessageNasSetSystemSelectionPreferenceInput *self,
-                                gboolean *value_emergency_mode,
-                                GError **error);
-

Get the 'Emergency mode' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessageNasSetSystemSelectionPreferenceInput.

 

value_emergency_mode

a placeholder for the output gboolean, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.0

-
-
-
-

qmi_message_nas_set_system_selection_preference_input_set_emergency_mode ()

-
gboolean
-qmi_message_nas_set_system_selection_preference_input_set_emergency_mode
-                               (QmiMessageNasSetSystemSelectionPreferenceInput *self,
-                                gboolean value_emergency_mode,
-                                GError **error);
-

Set the 'Emergency mode' field in the message.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessageNasSetSystemSelectionPreferenceInput.

 

value_emergency_mode

a gboolean.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if value -was successfully set, FALSE otherwise.

-
-

Since: 1.0

-
-
-
-

qmi_message_nas_set_system_selection_preference_output_ref ()

-
QmiMessageNasSetSystemSelectionPreferenceOutput *
-qmi_message_nas_set_system_selection_preference_output_ref
-                               (QmiMessageNasSetSystemSelectionPreferenceOutput *self);
-

Atomically increments the reference count of self - by one.

-
-

Parameters

- -
-
-

Returns

-

the new reference to self -.

-
-

Since: 1.0

-
-
-
-

qmi_message_nas_set_system_selection_preference_output_unref ()

-
void
-qmi_message_nas_set_system_selection_preference_output_unref
-                               (QmiMessageNasSetSystemSelectionPreferenceOutput *self);
-

Atomically decrements the reference count of self - by one. -If the reference count drops to 0, self - is completely disposed.

-
-

Parameters

- -
-

Since: 1.0

-
-
-
-

qmi_message_nas_set_system_selection_preference_output_get_result ()

-
gboolean
-qmi_message_nas_set_system_selection_preference_output_get_result
-                               (QmiMessageNasSetSystemSelectionPreferenceOutput *self,
-                                GError **error);
-

Get the result of the QMI operation.

-
-

Parameters

-
----- - - - - - - - - - - - - -

self

a QmiMessageNasSetSystemSelectionPreferenceOutput.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the QMI operation succeeded, FALSE if error -is set.

-
-

Since: 1.0

-
-
-
-

qmi_client_nas_set_system_selection_preference ()

-
void
-qmi_client_nas_set_system_selection_preference
-                               (QmiClientNas *self,
-                                QmiMessageNasSetSystemSelectionPreferenceInput *input,
-                                guint timeout,
-                                GCancellable *cancellable,
-                                GAsyncReadyCallback callback,
-                                gpointer user_data);
-

Asynchronously sends a Set System Selection Preference request to the device.

-

When the operation is finished, callback - will be invoked in the thread-default main loop of the thread you are calling this method from.

-

You can then call qmi_client_nas_set_system_selection_preference_finish() to get the result of the operation.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

self

a QmiClientNas.

 

input

a QmiMessageNasSetSystemSelectionPreferenceInput.

 

timeout

maximum time to wait for the method to complete, in seconds.

 

cancellable

a GCancellable or NULL.

 

callback

a GAsyncReadyCallback to call when the request is satisfied.

 

user_data

user data to pass to callback -.

 
-
-

Since: 1.0

-
-
-
-

qmi_client_nas_set_system_selection_preference_finish ()

-
QmiMessageNasSetSystemSelectionPreferenceOutput *
-qmi_client_nas_set_system_selection_preference_finish
-                               (QmiClientNas *self,
-                                GAsyncResult *res,
-                                GError **error);
-

Finishes an async operation started with qmi_client_nas_set_system_selection_preference().

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiClientNas.

 

res

the GAsyncResult obtained from the GAsyncReadyCallback passed to qmi_client_nas_set_system_selection_preference().

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

a QmiMessageNasSetSystemSelectionPreferenceOutput, or NULL if error -is set. The returned value should be freed with qmi_message_nas_set_system_selection_preference_output_unref().

-
-

Since: 1.0

-
-
-
-

Types and Values

-
-

QmiMessageNasSetSystemSelectionPreferenceInput

-
typedef struct _QmiMessageNasSetSystemSelectionPreferenceInput QmiMessageNasSetSystemSelectionPreferenceInput;
-

The QmiMessageNasSetSystemSelectionPreferenceInput structure contains private data and should only be accessed -using the provided API.

-

Since: 1.0

-
-
-
-

QmiMessageNasSetSystemSelectionPreferenceOutput

-
typedef struct _QmiMessageNasSetSystemSelectionPreferenceOutput QmiMessageNasSetSystemSelectionPreferenceOutput;
-

The QmiMessageNasSetSystemSelectionPreferenceOutput structure contains private data and should only be accessed -using the provided API.

-

Since: 1.0

-
-
-
- - - \ No newline at end of file diff -Nru libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-NAS-Set-System-Selection-Preference-request.html libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-NAS-Set-System-Selection-Preference-request.html --- libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-NAS-Set-System-Selection-Preference-request.html 1970-01-01 01:00:00.000000000 +0100 +++ libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-NAS-Set-System-Selection-Preference-request.html 2019-01-08 15:19:02.000000000 +0100 @@ -0,0 +1,1920 @@ + + + + +NAS Set System Selection Preference request: libqmi-glib Reference Manual + + + + + + + + + + + + + + + + +
+
+
+ + +
+

NAS Set System Selection Preference request

+

NAS Set System Selection Preference request

+
+
+

Functions

+
++++ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+QmiMessageNasSetSystemSelectionPreferenceInput * + +qmi_message_nas_set_system_selection_preference_input_new () +
+QmiMessageNasSetSystemSelectionPreferenceInput * + +qmi_message_nas_set_system_selection_preference_input_ref () +
+void + +qmi_message_nas_set_system_selection_preference_input_unref () +
+gboolean + +qmi_message_nas_set_system_selection_preference_input_get_extended_lte_band_preference () +
+gboolean + +qmi_message_nas_set_system_selection_preference_input_set_extended_lte_band_preference () +
+gboolean + +qmi_message_nas_set_system_selection_preference_input_get_acquisition_order_preference () +
+gboolean + +qmi_message_nas_set_system_selection_preference_input_set_acquisition_order_preference () +
+gboolean + +qmi_message_nas_set_system_selection_preference_input_get_td_scdma_band_preference () +
+gboolean + +qmi_message_nas_set_system_selection_preference_input_set_td_scdma_band_preference () +
+gboolean + +qmi_message_nas_set_system_selection_preference_input_get_mnc_pds_digit_include_status () +
+gboolean + +qmi_message_nas_set_system_selection_preference_input_set_mnc_pds_digit_include_status () +
+gboolean + +qmi_message_nas_set_system_selection_preference_input_get_gsm_wcdma_acquisition_order_preference () +
+gboolean + +qmi_message_nas_set_system_selection_preference_input_set_gsm_wcdma_acquisition_order_preference () +
+gboolean + +qmi_message_nas_set_system_selection_preference_input_get_service_domain_preference () +
+gboolean + +qmi_message_nas_set_system_selection_preference_input_set_service_domain_preference () +
+gboolean + +qmi_message_nas_set_system_selection_preference_input_get_change_duration () +
+gboolean + +qmi_message_nas_set_system_selection_preference_input_set_change_duration () +
+gboolean + +qmi_message_nas_set_system_selection_preference_input_get_network_selection_preference () +
+gboolean + +qmi_message_nas_set_system_selection_preference_input_set_network_selection_preference () +
+gboolean + +qmi_message_nas_set_system_selection_preference_input_get_lte_band_preference () +
+gboolean + +qmi_message_nas_set_system_selection_preference_input_set_lte_band_preference () +
+gboolean + +qmi_message_nas_set_system_selection_preference_input_get_roaming_preference () +
+gboolean + +qmi_message_nas_set_system_selection_preference_input_set_roaming_preference () +
+gboolean + +qmi_message_nas_set_system_selection_preference_input_get_cdma_prl_preference () +
+gboolean + +qmi_message_nas_set_system_selection_preference_input_set_cdma_prl_preference () +
+gboolean + +qmi_message_nas_set_system_selection_preference_input_get_band_preference () +
+gboolean + +qmi_message_nas_set_system_selection_preference_input_set_band_preference () +
+gboolean + +qmi_message_nas_set_system_selection_preference_input_get_mode_preference () +
+gboolean + +qmi_message_nas_set_system_selection_preference_input_set_mode_preference () +
+gboolean + +qmi_message_nas_set_system_selection_preference_input_get_emergency_mode () +
+gboolean + +qmi_message_nas_set_system_selection_preference_input_set_emergency_mode () +
+QmiMessageNasSetSystemSelectionPreferenceOutput * + +qmi_message_nas_set_system_selection_preference_output_ref () +
+void + +qmi_message_nas_set_system_selection_preference_output_unref () +
+gboolean + +qmi_message_nas_set_system_selection_preference_output_get_result () +
+void + +qmi_client_nas_set_system_selection_preference () +
+QmiMessageNasSetSystemSelectionPreferenceOutput * + +qmi_client_nas_set_system_selection_preference_finish () +
+
+ +
+

Object Hierarchy

+
    GBoxed
+    ├── QmiMessageNasSetSystemSelectionPreferenceInput
+    ╰── QmiMessageNasSetSystemSelectionPreferenceOutput
+
+
+
+

Description

+
+
+

Functions

+
+

qmi_message_nas_set_system_selection_preference_input_new ()

+
QmiMessageNasSetSystemSelectionPreferenceInput *
+qmi_message_nas_set_system_selection_preference_input_new
+                               (void);
+

Allocates a new QmiMessageNasSetSystemSelectionPreferenceInput.

+
+

Returns

+

the newly created QmiMessageNasSetSystemSelectionPreferenceInput. The returned value should be freed with qmi_message_nas_set_system_selection_preference_input_unref().

+
+

Since: 1.0

+
+
+
+

qmi_message_nas_set_system_selection_preference_input_ref ()

+
QmiMessageNasSetSystemSelectionPreferenceInput *
+qmi_message_nas_set_system_selection_preference_input_ref
+                               (QmiMessageNasSetSystemSelectionPreferenceInput *self);
+

Atomically increments the reference count of self + by one.

+
+

Parameters

+ +
+
+

Returns

+

the new reference to self +.

+
+

Since: 1.0

+
+
+
+

qmi_message_nas_set_system_selection_preference_input_unref ()

+
void
+qmi_message_nas_set_system_selection_preference_input_unref
+                               (QmiMessageNasSetSystemSelectionPreferenceInput *self);
+

Atomically decrements the reference count of self + by one. +If the reference count drops to 0, self + is completely disposed.

+
+

Parameters

+ +
+

Since: 1.0

+
+
+
+

qmi_message_nas_set_system_selection_preference_input_get_extended_lte_band_preference ()

+
gboolean
+qmi_message_nas_set_system_selection_preference_input_get_extended_lte_band_preference
+                               (QmiMessageNasSetSystemSelectionPreferenceInput *self,
+                                guint64 *value_extended_lte_band_preference_mask_low,
+                                guint64 *value_extended_lte_band_preference_mask_mid_low,
+                                guint64 *value_extended_lte_band_preference_mask_mid_high,
+                                guint64 *value_extended_lte_band_preference_mask_high,
+                                GError **error);
+

Get the 'Extended LTE Band Preference' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

self

a QmiMessageNasSetSystemSelectionPreferenceInput.

 

value_extended_lte_band_preference_mask_low

a placeholder for the output guint64, or NULL if not required.

 

value_extended_lte_band_preference_mask_mid_low

a placeholder for the output guint64, or NULL if not required.

 

value_extended_lte_band_preference_mask_mid_high

a placeholder for the output guint64, or NULL if not required.

 

value_extended_lte_band_preference_mask_high

a placeholder for the output guint64, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.20

+
+
+
+

qmi_message_nas_set_system_selection_preference_input_set_extended_lte_band_preference ()

+
gboolean
+qmi_message_nas_set_system_selection_preference_input_set_extended_lte_band_preference
+                               (QmiMessageNasSetSystemSelectionPreferenceInput *self,
+                                guint64 value_extended_lte_band_preference_mask_low,
+                                guint64 value_extended_lte_band_preference_mask_mid_low,
+                                guint64 value_extended_lte_band_preference_mask_mid_high,
+                                guint64 value_extended_lte_band_preference_mask_high,
+                                GError **error);
+

Set the 'Extended LTE Band Preference' field in the message.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

self

a QmiMessageNasSetSystemSelectionPreferenceInput.

 

value_extended_lte_band_preference_mask_low

a guint64.

 

value_extended_lte_band_preference_mask_mid_low

a guint64.

 

value_extended_lte_band_preference_mask_mid_high

a guint64.

 

value_extended_lte_band_preference_mask_high

a guint64.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if value +was successfully set, FALSE otherwise.

+
+

Since: 1.20

+
+
+
+

qmi_message_nas_set_system_selection_preference_input_get_acquisition_order_preference ()

+
gboolean
+qmi_message_nas_set_system_selection_preference_input_get_acquisition_order_preference
+                               (QmiMessageNasSetSystemSelectionPreferenceInput *self,
+                                GArray **value_acquisition_order_preference,
+                                GError **error);
+

Get the 'Acquisition Order Preference' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageNasSetSystemSelectionPreferenceInput.

 

value_acquisition_order_preference

a placeholder for the output GArray of QmiNasRadioInterface elements, or NULL if not required. Do not free it, it is owned by self +.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.22

+
+
+
+

qmi_message_nas_set_system_selection_preference_input_set_acquisition_order_preference ()

+
gboolean
+qmi_message_nas_set_system_selection_preference_input_set_acquisition_order_preference
+                               (QmiMessageNasSetSystemSelectionPreferenceInput *self,
+                                GArray *value_acquisition_order_preference,
+                                GError **error);
+

Set the 'Acquisition Order Preference' field in the message.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageNasSetSystemSelectionPreferenceInput.

 

value_acquisition_order_preference

a GArray of QmiNasRadioInterface elements. A new reference to value_acquisition_order_preference +will be taken.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if value +was successfully set, FALSE otherwise.

+
+

Since: 1.22

+
+
+
+

qmi_message_nas_set_system_selection_preference_input_get_td_scdma_band_preference ()

+
gboolean
+qmi_message_nas_set_system_selection_preference_input_get_td_scdma_band_preference
+                               (QmiMessageNasSetSystemSelectionPreferenceInput *self,
+                                QmiNasTdScdmaBandPreference *value_td_scdma_band_preference,
+                                GError **error);
+

Get the 'TD SCDMA Band Preference' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageNasSetSystemSelectionPreferenceInput.

 

value_td_scdma_band_preference

a placeholder for the output QmiNasTdScdmaBandPreference, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.0

+
+
+
+

qmi_message_nas_set_system_selection_preference_input_set_td_scdma_band_preference ()

+
gboolean
+qmi_message_nas_set_system_selection_preference_input_set_td_scdma_band_preference
+                               (QmiMessageNasSetSystemSelectionPreferenceInput *self,
+                                QmiNasTdScdmaBandPreference value_td_scdma_band_preference,
+                                GError **error);
+

Set the 'TD SCDMA Band Preference' field in the message.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageNasSetSystemSelectionPreferenceInput.

 

value_td_scdma_band_preference

a QmiNasTdScdmaBandPreference.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if value +was successfully set, FALSE otherwise.

+
+

Since: 1.0

+
+
+
+

qmi_message_nas_set_system_selection_preference_input_get_mnc_pds_digit_include_status ()

+
gboolean
+qmi_message_nas_set_system_selection_preference_input_get_mnc_pds_digit_include_status
+                               (QmiMessageNasSetSystemSelectionPreferenceInput *self,
+                                gboolean *value_mnc_pds_digit_include_status,
+                                GError **error);
+

Get the 'MNC PDS Digit Include Status' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageNasSetSystemSelectionPreferenceInput.

 

value_mnc_pds_digit_include_status

a placeholder for the output gboolean, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.0

+
+
+
+

qmi_message_nas_set_system_selection_preference_input_set_mnc_pds_digit_include_status ()

+
gboolean
+qmi_message_nas_set_system_selection_preference_input_set_mnc_pds_digit_include_status
+                               (QmiMessageNasSetSystemSelectionPreferenceInput *self,
+                                gboolean value_mnc_pds_digit_include_status,
+                                GError **error);
+

Set the 'MNC PDS Digit Include Status' field in the message.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageNasSetSystemSelectionPreferenceInput.

 

value_mnc_pds_digit_include_status

a gboolean.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if value +was successfully set, FALSE otherwise.

+
+

Since: 1.0

+
+
+
+

qmi_message_nas_set_system_selection_preference_input_get_gsm_wcdma_acquisition_order_preference ()

+
gboolean
+qmi_message_nas_set_system_selection_preference_input_get_gsm_wcdma_acquisition_order_preference
+                               (QmiMessageNasSetSystemSelectionPreferenceInput *self,
+                                QmiNasGsmWcdmaAcquisitionOrderPreference *value_gsm_wcdma_acquisition_order_preference,
+                                GError **error);
+

Get the 'GSM WCDMA Acquisition Order Preference' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageNasSetSystemSelectionPreferenceInput.

 

value_gsm_wcdma_acquisition_order_preference

a placeholder for the output QmiNasGsmWcdmaAcquisitionOrderPreference, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.0

+
+
+
+

qmi_message_nas_set_system_selection_preference_input_set_gsm_wcdma_acquisition_order_preference ()

+
gboolean
+qmi_message_nas_set_system_selection_preference_input_set_gsm_wcdma_acquisition_order_preference
+                               (QmiMessageNasSetSystemSelectionPreferenceInput *self,
+                                QmiNasGsmWcdmaAcquisitionOrderPreference value_gsm_wcdma_acquisition_order_preference,
+                                GError **error);
+

Set the 'GSM WCDMA Acquisition Order Preference' field in the message.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageNasSetSystemSelectionPreferenceInput.

 

value_gsm_wcdma_acquisition_order_preference

a QmiNasGsmWcdmaAcquisitionOrderPreference.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if value +was successfully set, FALSE otherwise.

+
+

Since: 1.0

+
+
+
+

qmi_message_nas_set_system_selection_preference_input_get_service_domain_preference ()

+
gboolean
+qmi_message_nas_set_system_selection_preference_input_get_service_domain_preference
+                               (QmiMessageNasSetSystemSelectionPreferenceInput *self,
+                                QmiNasServiceDomainPreference *value_service_domain_preference,
+                                GError **error);
+

Get the 'Service Domain Preference' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageNasSetSystemSelectionPreferenceInput.

 

value_service_domain_preference

a placeholder for the output QmiNasServiceDomainPreference, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.0

+
+
+
+

qmi_message_nas_set_system_selection_preference_input_set_service_domain_preference ()

+
gboolean
+qmi_message_nas_set_system_selection_preference_input_set_service_domain_preference
+                               (QmiMessageNasSetSystemSelectionPreferenceInput *self,
+                                QmiNasServiceDomainPreference value_service_domain_preference,
+                                GError **error);
+

Set the 'Service Domain Preference' field in the message.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageNasSetSystemSelectionPreferenceInput.

 

value_service_domain_preference

a QmiNasServiceDomainPreference.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if value +was successfully set, FALSE otherwise.

+
+

Since: 1.0

+
+
+
+

qmi_message_nas_set_system_selection_preference_input_get_change_duration ()

+
gboolean
+qmi_message_nas_set_system_selection_preference_input_get_change_duration
+                               (QmiMessageNasSetSystemSelectionPreferenceInput *self,
+                                QmiNasChangeDuration *value_change_duration,
+                                GError **error);
+

Get the 'Change Duration' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageNasSetSystemSelectionPreferenceInput.

 

value_change_duration

a placeholder for the output QmiNasChangeDuration, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.0

+
+
+
+

qmi_message_nas_set_system_selection_preference_input_set_change_duration ()

+
gboolean
+qmi_message_nas_set_system_selection_preference_input_set_change_duration
+                               (QmiMessageNasSetSystemSelectionPreferenceInput *self,
+                                QmiNasChangeDuration value_change_duration,
+                                GError **error);
+

Set the 'Change Duration' field in the message.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageNasSetSystemSelectionPreferenceInput.

 

value_change_duration

a QmiNasChangeDuration.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if value +was successfully set, FALSE otherwise.

+
+

Since: 1.0

+
+
+
+

qmi_message_nas_set_system_selection_preference_input_get_network_selection_preference ()

+
gboolean
+qmi_message_nas_set_system_selection_preference_input_get_network_selection_preference
+                               (QmiMessageNasSetSystemSelectionPreferenceInput *self,
+                                QmiNasNetworkSelectionPreference *value_network_selection_preference_mode,
+                                guint16 *value_network_selection_preference_mcc,
+                                guint16 *value_network_selection_preference_mnc,
+                                GError **error);
+

Get the 'Network Selection Preference' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + + + + + + + + + + + +

self

a QmiMessageNasSetSystemSelectionPreferenceInput.

 

value_network_selection_preference_mode

a placeholder for the output QmiNasNetworkSelectionPreference, or NULL if not required.

 

value_network_selection_preference_mcc

a placeholder for the output guint16, or NULL if not required.

 

value_network_selection_preference_mnc

a placeholder for the output guint16, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.0

+
+
+
+

qmi_message_nas_set_system_selection_preference_input_set_network_selection_preference ()

+
gboolean
+qmi_message_nas_set_system_selection_preference_input_set_network_selection_preference
+                               (QmiMessageNasSetSystemSelectionPreferenceInput *self,
+                                QmiNasNetworkSelectionPreference value_network_selection_preference_mode,
+                                guint16 value_network_selection_preference_mcc,
+                                guint16 value_network_selection_preference_mnc,
+                                GError **error);
+

Set the 'Network Selection Preference' field in the message.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + + + + + + + + + + + +

self

a QmiMessageNasSetSystemSelectionPreferenceInput.

 

value_network_selection_preference_mode

a QmiNasNetworkSelectionPreference.

 

value_network_selection_preference_mcc

a guint16.

 

value_network_selection_preference_mnc

a guint16.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if value +was successfully set, FALSE otherwise.

+
+

Since: 1.0

+
+
+
+

qmi_message_nas_set_system_selection_preference_input_get_lte_band_preference ()

+
gboolean
+qmi_message_nas_set_system_selection_preference_input_get_lte_band_preference
+                               (QmiMessageNasSetSystemSelectionPreferenceInput *self,
+                                QmiNasLteBandPreference *value_lte_band_preference,
+                                GError **error);
+

Get the 'LTE Band Preference' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageNasSetSystemSelectionPreferenceInput.

 

value_lte_band_preference

a placeholder for the output QmiNasLteBandPreference, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.0

+
+
+
+

qmi_message_nas_set_system_selection_preference_input_set_lte_band_preference ()

+
gboolean
+qmi_message_nas_set_system_selection_preference_input_set_lte_band_preference
+                               (QmiMessageNasSetSystemSelectionPreferenceInput *self,
+                                QmiNasLteBandPreference value_lte_band_preference,
+                                GError **error);
+

Set the 'LTE Band Preference' field in the message.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageNasSetSystemSelectionPreferenceInput.

 

value_lte_band_preference

a QmiNasLteBandPreference.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if value +was successfully set, FALSE otherwise.

+
+

Since: 1.0

+
+
+
+

qmi_message_nas_set_system_selection_preference_input_get_roaming_preference ()

+
gboolean
+qmi_message_nas_set_system_selection_preference_input_get_roaming_preference
+                               (QmiMessageNasSetSystemSelectionPreferenceInput *self,
+                                QmiNasRoamingPreference *value_roaming_preference,
+                                GError **error);
+

Get the 'Roaming Preference' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageNasSetSystemSelectionPreferenceInput.

 

value_roaming_preference

a placeholder for the output QmiNasRoamingPreference, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.0

+
+
+
+

qmi_message_nas_set_system_selection_preference_input_set_roaming_preference ()

+
gboolean
+qmi_message_nas_set_system_selection_preference_input_set_roaming_preference
+                               (QmiMessageNasSetSystemSelectionPreferenceInput *self,
+                                QmiNasRoamingPreference value_roaming_preference,
+                                GError **error);
+

Set the 'Roaming Preference' field in the message.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageNasSetSystemSelectionPreferenceInput.

 

value_roaming_preference

a QmiNasRoamingPreference.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if value +was successfully set, FALSE otherwise.

+
+

Since: 1.0

+
+
+
+

qmi_message_nas_set_system_selection_preference_input_get_cdma_prl_preference ()

+
gboolean
+qmi_message_nas_set_system_selection_preference_input_get_cdma_prl_preference
+                               (QmiMessageNasSetSystemSelectionPreferenceInput *self,
+                                QmiNasCdmaPrlPreference *value_cdma_prl_preference,
+                                GError **error);
+

Get the 'CDMA PRL Preference' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageNasSetSystemSelectionPreferenceInput.

 

value_cdma_prl_preference

a placeholder for the output QmiNasCdmaPrlPreference, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.0

+
+
+
+

qmi_message_nas_set_system_selection_preference_input_set_cdma_prl_preference ()

+
gboolean
+qmi_message_nas_set_system_selection_preference_input_set_cdma_prl_preference
+                               (QmiMessageNasSetSystemSelectionPreferenceInput *self,
+                                QmiNasCdmaPrlPreference value_cdma_prl_preference,
+                                GError **error);
+

Set the 'CDMA PRL Preference' field in the message.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageNasSetSystemSelectionPreferenceInput.

 

value_cdma_prl_preference

a QmiNasCdmaPrlPreference.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if value +was successfully set, FALSE otherwise.

+
+

Since: 1.0

+
+
+
+

qmi_message_nas_set_system_selection_preference_input_get_band_preference ()

+
gboolean
+qmi_message_nas_set_system_selection_preference_input_get_band_preference
+                               (QmiMessageNasSetSystemSelectionPreferenceInput *self,
+                                QmiNasBandPreference *value_band_preference,
+                                GError **error);
+

Get the 'Band Preference' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageNasSetSystemSelectionPreferenceInput.

 

value_band_preference

a placeholder for the output QmiNasBandPreference, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.0

+
+
+
+

qmi_message_nas_set_system_selection_preference_input_set_band_preference ()

+
gboolean
+qmi_message_nas_set_system_selection_preference_input_set_band_preference
+                               (QmiMessageNasSetSystemSelectionPreferenceInput *self,
+                                QmiNasBandPreference value_band_preference,
+                                GError **error);
+

Set the 'Band Preference' field in the message.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageNasSetSystemSelectionPreferenceInput.

 

value_band_preference

a QmiNasBandPreference.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if value +was successfully set, FALSE otherwise.

+
+

Since: 1.0

+
+
+
+

qmi_message_nas_set_system_selection_preference_input_get_mode_preference ()

+
gboolean
+qmi_message_nas_set_system_selection_preference_input_get_mode_preference
+                               (QmiMessageNasSetSystemSelectionPreferenceInput *self,
+                                QmiNasRatModePreference *value_mode_preference,
+                                GError **error);
+

Get the 'Mode Preference' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageNasSetSystemSelectionPreferenceInput.

 

value_mode_preference

a placeholder for the output QmiNasRatModePreference, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.0

+
+
+
+

qmi_message_nas_set_system_selection_preference_input_set_mode_preference ()

+
gboolean
+qmi_message_nas_set_system_selection_preference_input_set_mode_preference
+                               (QmiMessageNasSetSystemSelectionPreferenceInput *self,
+                                QmiNasRatModePreference value_mode_preference,
+                                GError **error);
+

Set the 'Mode Preference' field in the message.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageNasSetSystemSelectionPreferenceInput.

 

value_mode_preference

a QmiNasRatModePreference.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if value +was successfully set, FALSE otherwise.

+
+

Since: 1.0

+
+
+
+

qmi_message_nas_set_system_selection_preference_input_get_emergency_mode ()

+
gboolean
+qmi_message_nas_set_system_selection_preference_input_get_emergency_mode
+                               (QmiMessageNasSetSystemSelectionPreferenceInput *self,
+                                gboolean *value_emergency_mode,
+                                GError **error);
+

Get the 'Emergency mode' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageNasSetSystemSelectionPreferenceInput.

 

value_emergency_mode

a placeholder for the output gboolean, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.0

+
+
+
+

qmi_message_nas_set_system_selection_preference_input_set_emergency_mode ()

+
gboolean
+qmi_message_nas_set_system_selection_preference_input_set_emergency_mode
+                               (QmiMessageNasSetSystemSelectionPreferenceInput *self,
+                                gboolean value_emergency_mode,
+                                GError **error);
+

Set the 'Emergency mode' field in the message.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageNasSetSystemSelectionPreferenceInput.

 

value_emergency_mode

a gboolean.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if value +was successfully set, FALSE otherwise.

+
+

Since: 1.0

+
+
+
+

qmi_message_nas_set_system_selection_preference_output_ref ()

+
QmiMessageNasSetSystemSelectionPreferenceOutput *
+qmi_message_nas_set_system_selection_preference_output_ref
+                               (QmiMessageNasSetSystemSelectionPreferenceOutput *self);
+

Atomically increments the reference count of self + by one.

+
+

Parameters

+ +
+
+

Returns

+

the new reference to self +.

+
+

Since: 1.0

+
+
+
+

qmi_message_nas_set_system_selection_preference_output_unref ()

+
void
+qmi_message_nas_set_system_selection_preference_output_unref
+                               (QmiMessageNasSetSystemSelectionPreferenceOutput *self);
+

Atomically decrements the reference count of self + by one. +If the reference count drops to 0, self + is completely disposed.

+
+

Parameters

+ +
+

Since: 1.0

+
+
+
+

qmi_message_nas_set_system_selection_preference_output_get_result ()

+
gboolean
+qmi_message_nas_set_system_selection_preference_output_get_result
+                               (QmiMessageNasSetSystemSelectionPreferenceOutput *self,
+                                GError **error);
+

Get the result of the QMI operation.

+
+

Parameters

+
+++++ + + + + + + + + + + + + +

self

a QmiMessageNasSetSystemSelectionPreferenceOutput.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the QMI operation succeeded, FALSE if error +is set.

+
+

Since: 1.0

+
+
+
+

qmi_client_nas_set_system_selection_preference ()

+
void
+qmi_client_nas_set_system_selection_preference
+                               (QmiClientNas *self,
+                                QmiMessageNasSetSystemSelectionPreferenceInput *input,
+                                guint timeout,
+                                GCancellable *cancellable,
+                                GAsyncReadyCallback callback,
+                                gpointer user_data);
+

Asynchronously sends a Set System Selection Preference request to the device.

+

When the operation is finished, callback + will be invoked in the thread-default main loop of the thread you are calling this method from.

+

You can then call qmi_client_nas_set_system_selection_preference_finish() to get the result of the operation.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

self

a QmiClientNas.

 

input

a QmiMessageNasSetSystemSelectionPreferenceInput.

 

timeout

maximum time to wait for the method to complete, in seconds.

 

cancellable

a GCancellable or NULL.

 

callback

a GAsyncReadyCallback to call when the request is satisfied.

 

user_data

user data to pass to callback +.

 
+
+

Since: 1.0

+
+
+
+

qmi_client_nas_set_system_selection_preference_finish ()

+
QmiMessageNasSetSystemSelectionPreferenceOutput *
+qmi_client_nas_set_system_selection_preference_finish
+                               (QmiClientNas *self,
+                                GAsyncResult *res,
+                                GError **error);
+

Finishes an async operation started with qmi_client_nas_set_system_selection_preference().

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiClientNas.

 

res

the GAsyncResult obtained from the GAsyncReadyCallback passed to qmi_client_nas_set_system_selection_preference().

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

a QmiMessageNasSetSystemSelectionPreferenceOutput, or NULL if error +is set. The returned value should be freed with qmi_message_nas_set_system_selection_preference_output_unref().

+
+

Since: 1.0

+
+
+
+

Types and Values

+
+

QmiMessageNasSetSystemSelectionPreferenceInput

+
typedef struct _QmiMessageNasSetSystemSelectionPreferenceInput QmiMessageNasSetSystemSelectionPreferenceInput;
+

The QmiMessageNasSetSystemSelectionPreferenceInput structure contains private data and should only be accessed +using the provided API.

+

Since: 1.0

+
+
+
+

QmiMessageNasSetSystemSelectionPreferenceOutput

+
typedef struct _QmiMessageNasSetSystemSelectionPreferenceOutput QmiMessageNasSetSystemSelectionPreferenceOutput;
+

The QmiMessageNasSetSystemSelectionPreferenceOutput structure contains private data and should only be accessed +using the provided API.

+

Since: 1.0

+
+
+
+ + + \ No newline at end of file diff -Nru libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-NAS-Set-Technology-Preference.html libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-NAS-Set-Technology-Preference.html --- libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-NAS-Set-Technology-Preference.html 2017-03-22 12:28:29.000000000 +0100 +++ libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-NAS-Set-Technology-Preference.html 1970-01-01 01:00:00.000000000 +0100 @@ -1,544 +0,0 @@ - - - - -NAS Set Technology Preference: libqmi-glib Reference Manual - - - - - - - - - - - - - - - - -
-
-
- - -
-

NAS Set Technology Preference

-

NAS Set Technology Preference

-
- - -
-

Object Hierarchy

-
    GBoxed
-    ├── QmiMessageNasSetTechnologyPreferenceInput
-    ╰── QmiMessageNasSetTechnologyPreferenceOutput
-
-
-
-

Description

-
-
-

Functions

-
-

qmi_message_nas_set_technology_preference_input_new ()

-
QmiMessageNasSetTechnologyPreferenceInput *
-qmi_message_nas_set_technology_preference_input_new
-                               (void);
-

Allocates a new QmiMessageNasSetTechnologyPreferenceInput.

-
-

Returns

-

the newly created QmiMessageNasSetTechnologyPreferenceInput. The returned value should be freed with qmi_message_nas_set_technology_preference_input_unref().

-
-

Since: 1.0

-
-
-
-

qmi_message_nas_set_technology_preference_input_ref ()

-
QmiMessageNasSetTechnologyPreferenceInput *
-qmi_message_nas_set_technology_preference_input_ref
-                               (QmiMessageNasSetTechnologyPreferenceInput *self);
-

Atomically increments the reference count of self - by one.

-
-

Parameters

-
----- - - - - - -

self

a QmiMessageNasSetTechnologyPreferenceInput.

 
-
-
-

Returns

-

the new reference to self -.

-
-

Since: 1.0

-
-
-
-

qmi_message_nas_set_technology_preference_input_unref ()

-
void
-qmi_message_nas_set_technology_preference_input_unref
-                               (QmiMessageNasSetTechnologyPreferenceInput *self);
-

Atomically decrements the reference count of self - by one. -If the reference count drops to 0, self - is completely disposed.

-
-

Parameters

-
----- - - - - - -

self

a QmiMessageNasSetTechnologyPreferenceInput.

 
-
-

Since: 1.0

-
-
-
-

qmi_message_nas_set_technology_preference_input_get_current ()

-
gboolean
-qmi_message_nas_set_technology_preference_input_get_current
-                               (QmiMessageNasSetTechnologyPreferenceInput *self,
-                                QmiNasRadioTechnologyPreference *value_current_technology_preference,
-                                QmiNasPreferenceDuration *value_current_technology_preference_duration,
-                                GError **error);
-

Get the 'Current' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - - - - - - -

self

a QmiMessageNasSetTechnologyPreferenceInput.

 

value_current_technology_preference

a placeholder for the output QmiNasRadioTechnologyPreference, or NULL if not required.

 

value_current_technology_preference_duration

a placeholder for the output QmiNasPreferenceDuration, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.0

-
-
-
-

qmi_message_nas_set_technology_preference_input_set_current ()

-
gboolean
-qmi_message_nas_set_technology_preference_input_set_current
-                               (QmiMessageNasSetTechnologyPreferenceInput *self,
-                                QmiNasRadioTechnologyPreference value_current_technology_preference,
-                                QmiNasPreferenceDuration value_current_technology_preference_duration,
-                                GError **error);
-

Set the 'Current' field in the message.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - - - - - - -

self

a QmiMessageNasSetTechnologyPreferenceInput.

 

value_current_technology_preference

a QmiNasRadioTechnologyPreference.

 

value_current_technology_preference_duration

a QmiNasPreferenceDuration.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if value -was successfully set, FALSE otherwise.

-
-

Since: 1.0

-
-
-
-

qmi_message_nas_set_technology_preference_output_ref ()

-
QmiMessageNasSetTechnologyPreferenceOutput *
-qmi_message_nas_set_technology_preference_output_ref
-                               (QmiMessageNasSetTechnologyPreferenceOutput *self);
-

Atomically increments the reference count of self - by one.

-
-

Parameters

-
----- - - - - - -

self

a QmiMessageNasSetTechnologyPreferenceOutput.

 
-
-
-

Returns

-

the new reference to self -.

-
-

Since: 1.0

-
-
-
-

qmi_message_nas_set_technology_preference_output_unref ()

-
void
-qmi_message_nas_set_technology_preference_output_unref
-                               (QmiMessageNasSetTechnologyPreferenceOutput *self);
-

Atomically decrements the reference count of self - by one. -If the reference count drops to 0, self - is completely disposed.

-
-

Parameters

-
----- - - - - - -

self

a QmiMessageNasSetTechnologyPreferenceOutput.

 
-
-

Since: 1.0

-
-
-
-

qmi_message_nas_set_technology_preference_output_get_result ()

-
gboolean
-qmi_message_nas_set_technology_preference_output_get_result
-                               (QmiMessageNasSetTechnologyPreferenceOutput *self,
-                                GError **error);
-

Get the result of the QMI operation.

-
-

Parameters

-
----- - - - - - - - - - - - - -

self

a QmiMessageNasSetTechnologyPreferenceOutput.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the QMI operation succeeded, FALSE if error -is set.

-
-

Since: 1.0

-
-
-
-

qmi_client_nas_set_technology_preference ()

-
void
-qmi_client_nas_set_technology_preference
-                               (QmiClientNas *self,
-                                QmiMessageNasSetTechnologyPreferenceInput *input,
-                                guint timeout,
-                                GCancellable *cancellable,
-                                GAsyncReadyCallback callback,
-                                gpointer user_data);
-

Asynchronously sends a Set Technology Preference request to the device.

-

When the operation is finished, callback - will be invoked in the thread-default main loop of the thread you are calling this method from.

-

You can then call qmi_client_nas_set_technology_preference_finish() to get the result of the operation.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

self

a QmiClientNas.

 

input

a QmiMessageNasSetTechnologyPreferenceInput.

 

timeout

maximum time to wait for the method to complete, in seconds.

 

cancellable

a GCancellable or NULL.

 

callback

a GAsyncReadyCallback to call when the request is satisfied.

 

user_data

user data to pass to callback -.

 
-
-

Since: 1.0

-
-
-
-

qmi_client_nas_set_technology_preference_finish ()

-
QmiMessageNasSetTechnologyPreferenceOutput *
-qmi_client_nas_set_technology_preference_finish
-                               (QmiClientNas *self,
-                                GAsyncResult *res,
-                                GError **error);
-

Finishes an async operation started with qmi_client_nas_set_technology_preference().

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiClientNas.

 

res

the GAsyncResult obtained from the GAsyncReadyCallback passed to qmi_client_nas_set_technology_preference().

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

a QmiMessageNasSetTechnologyPreferenceOutput, or NULL if error -is set. The returned value should be freed with qmi_message_nas_set_technology_preference_output_unref().

-
-

Since: 1.0

-
-
-
-

Types and Values

-
-

QmiMessageNasSetTechnologyPreferenceInput

-
typedef struct _QmiMessageNasSetTechnologyPreferenceInput QmiMessageNasSetTechnologyPreferenceInput;
-

The QmiMessageNasSetTechnologyPreferenceInput structure contains private data and should only be accessed -using the provided API.

-

Since: 1.0

-
-
-
-

QmiMessageNasSetTechnologyPreferenceOutput

-
typedef struct _QmiMessageNasSetTechnologyPreferenceOutput QmiMessageNasSetTechnologyPreferenceOutput;
-

The QmiMessageNasSetTechnologyPreferenceOutput structure contains private data and should only be accessed -using the provided API.

-

Since: 1.0

-
-
-
- - - \ No newline at end of file diff -Nru libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-NAS-Set-Technology-Preference-request.html libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-NAS-Set-Technology-Preference-request.html --- libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-NAS-Set-Technology-Preference-request.html 1970-01-01 01:00:00.000000000 +0100 +++ libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-NAS-Set-Technology-Preference-request.html 2019-01-08 15:19:02.000000000 +0100 @@ -0,0 +1,544 @@ + + + + +NAS Set Technology Preference request: libqmi-glib Reference Manual + + + + + + + + + + + + + + + + +
+
+
+ + +
+

NAS Set Technology Preference request

+

NAS Set Technology Preference request

+
+ + +
+

Object Hierarchy

+
    GBoxed
+    ├── QmiMessageNasSetTechnologyPreferenceInput
+    ╰── QmiMessageNasSetTechnologyPreferenceOutput
+
+
+
+

Description

+
+
+

Functions

+
+

qmi_message_nas_set_technology_preference_input_new ()

+
QmiMessageNasSetTechnologyPreferenceInput *
+qmi_message_nas_set_technology_preference_input_new
+                               (void);
+

Allocates a new QmiMessageNasSetTechnologyPreferenceInput.

+
+

Returns

+

the newly created QmiMessageNasSetTechnologyPreferenceInput. The returned value should be freed with qmi_message_nas_set_technology_preference_input_unref().

+
+

Since: 1.0

+
+
+
+

qmi_message_nas_set_technology_preference_input_ref ()

+
QmiMessageNasSetTechnologyPreferenceInput *
+qmi_message_nas_set_technology_preference_input_ref
+                               (QmiMessageNasSetTechnologyPreferenceInput *self);
+

Atomically increments the reference count of self + by one.

+
+

Parameters

+
+++++ + + + + + +

self

a QmiMessageNasSetTechnologyPreferenceInput.

 
+
+
+

Returns

+

the new reference to self +.

+
+

Since: 1.0

+
+
+
+

qmi_message_nas_set_technology_preference_input_unref ()

+
void
+qmi_message_nas_set_technology_preference_input_unref
+                               (QmiMessageNasSetTechnologyPreferenceInput *self);
+

Atomically decrements the reference count of self + by one. +If the reference count drops to 0, self + is completely disposed.

+
+

Parameters

+
+++++ + + + + + +

self

a QmiMessageNasSetTechnologyPreferenceInput.

 
+
+

Since: 1.0

+
+
+
+

qmi_message_nas_set_technology_preference_input_get_current ()

+
gboolean
+qmi_message_nas_set_technology_preference_input_get_current
+                               (QmiMessageNasSetTechnologyPreferenceInput *self,
+                                QmiNasRadioTechnologyPreference *value_current_technology_preference,
+                                QmiNasPreferenceDuration *value_current_technology_preference_duration,
+                                GError **error);
+

Get the 'Current' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + + + + + + +

self

a QmiMessageNasSetTechnologyPreferenceInput.

 

value_current_technology_preference

a placeholder for the output QmiNasRadioTechnologyPreference, or NULL if not required.

 

value_current_technology_preference_duration

a placeholder for the output QmiNasPreferenceDuration, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.0

+
+
+
+

qmi_message_nas_set_technology_preference_input_set_current ()

+
gboolean
+qmi_message_nas_set_technology_preference_input_set_current
+                               (QmiMessageNasSetTechnologyPreferenceInput *self,
+                                QmiNasRadioTechnologyPreference value_current_technology_preference,
+                                QmiNasPreferenceDuration value_current_technology_preference_duration,
+                                GError **error);
+

Set the 'Current' field in the message.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + + + + + + +

self

a QmiMessageNasSetTechnologyPreferenceInput.

 

value_current_technology_preference

a QmiNasRadioTechnologyPreference.

 

value_current_technology_preference_duration

a QmiNasPreferenceDuration.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if value +was successfully set, FALSE otherwise.

+
+

Since: 1.0

+
+
+
+

qmi_message_nas_set_technology_preference_output_ref ()

+
QmiMessageNasSetTechnologyPreferenceOutput *
+qmi_message_nas_set_technology_preference_output_ref
+                               (QmiMessageNasSetTechnologyPreferenceOutput *self);
+

Atomically increments the reference count of self + by one.

+
+

Parameters

+
+++++ + + + + + +

self

a QmiMessageNasSetTechnologyPreferenceOutput.

 
+
+
+

Returns

+

the new reference to self +.

+
+

Since: 1.0

+
+
+
+

qmi_message_nas_set_technology_preference_output_unref ()

+
void
+qmi_message_nas_set_technology_preference_output_unref
+                               (QmiMessageNasSetTechnologyPreferenceOutput *self);
+

Atomically decrements the reference count of self + by one. +If the reference count drops to 0, self + is completely disposed.

+
+

Parameters

+
+++++ + + + + + +

self

a QmiMessageNasSetTechnologyPreferenceOutput.

 
+
+

Since: 1.0

+
+
+
+

qmi_message_nas_set_technology_preference_output_get_result ()

+
gboolean
+qmi_message_nas_set_technology_preference_output_get_result
+                               (QmiMessageNasSetTechnologyPreferenceOutput *self,
+                                GError **error);
+

Get the result of the QMI operation.

+
+

Parameters

+
+++++ + + + + + + + + + + + + +

self

a QmiMessageNasSetTechnologyPreferenceOutput.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the QMI operation succeeded, FALSE if error +is set.

+
+

Since: 1.0

+
+
+
+

qmi_client_nas_set_technology_preference ()

+
void
+qmi_client_nas_set_technology_preference
+                               (QmiClientNas *self,
+                                QmiMessageNasSetTechnologyPreferenceInput *input,
+                                guint timeout,
+                                GCancellable *cancellable,
+                                GAsyncReadyCallback callback,
+                                gpointer user_data);
+

Asynchronously sends a Set Technology Preference request to the device.

+

When the operation is finished, callback + will be invoked in the thread-default main loop of the thread you are calling this method from.

+

You can then call qmi_client_nas_set_technology_preference_finish() to get the result of the operation.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

self

a QmiClientNas.

 

input

a QmiMessageNasSetTechnologyPreferenceInput.

 

timeout

maximum time to wait for the method to complete, in seconds.

 

cancellable

a GCancellable or NULL.

 

callback

a GAsyncReadyCallback to call when the request is satisfied.

 

user_data

user data to pass to callback +.

 
+
+

Since: 1.0

+
+
+
+

qmi_client_nas_set_technology_preference_finish ()

+
QmiMessageNasSetTechnologyPreferenceOutput *
+qmi_client_nas_set_technology_preference_finish
+                               (QmiClientNas *self,
+                                GAsyncResult *res,
+                                GError **error);
+

Finishes an async operation started with qmi_client_nas_set_technology_preference().

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiClientNas.

 

res

the GAsyncResult obtained from the GAsyncReadyCallback passed to qmi_client_nas_set_technology_preference().

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

a QmiMessageNasSetTechnologyPreferenceOutput, or NULL if error +is set. The returned value should be freed with qmi_message_nas_set_technology_preference_output_unref().

+
+

Since: 1.0

+
+
+
+

Types and Values

+
+

QmiMessageNasSetTechnologyPreferenceInput

+
typedef struct _QmiMessageNasSetTechnologyPreferenceInput QmiMessageNasSetTechnologyPreferenceInput;
+

The QmiMessageNasSetTechnologyPreferenceInput structure contains private data and should only be accessed +using the provided API.

+

Since: 1.0

+
+
+
+

QmiMessageNasSetTechnologyPreferenceOutput

+
typedef struct _QmiMessageNasSetTechnologyPreferenceOutput QmiMessageNasSetTechnologyPreferenceOutput;
+

The QmiMessageNasSetTechnologyPreferenceOutput structure contains private data and should only be accessed +using the provided API.

+

Since: 1.0

+
+
+
+ + + \ No newline at end of file diff -Nru libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-NAS-Signal-Info.html libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-NAS-Signal-Info.html --- libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-NAS-Signal-Info.html 2017-03-22 12:28:28.000000000 +0100 +++ libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-NAS-Signal-Info.html 1970-01-01 01:00:00.000000000 +0100 @@ -1,511 +0,0 @@ - - - - -NAS Signal Info: libqmi-glib Reference Manual - - - - - - - - - - - - - - - - -
-
-
- - -
-

NAS Signal Info

-

NAS Signal Info

-
- -
-

Types and Values

- -
-
-

Object Hierarchy

-
    GBoxed
-    ╰── QmiIndicationNasSignalInfoOutput
-
-
-
-

Description

-
-
-

Functions

-
-

qmi_indication_nas_signal_info_output_ref ()

-
QmiIndicationNasSignalInfoOutput *
-qmi_indication_nas_signal_info_output_ref
-                               (QmiIndicationNasSignalInfoOutput *self);
-

Atomically increments the reference count of self - by one.

-
-

Parameters

-
----- - - - - - -

self

a QmiIndicationNasSignalInfoOutput.

 
-
-
-

Returns

-

the new reference to self -.

-
-

Since: 1.0

-
-
-
-

qmi_indication_nas_signal_info_output_unref ()

-
void
-qmi_indication_nas_signal_info_output_unref
-                               (QmiIndicationNasSignalInfoOutput *self);
-

Atomically decrements the reference count of self - by one. -If the reference count drops to 0, self - is completely disposed.

-
-

Parameters

-
----- - - - - - -

self

a QmiIndicationNasSignalInfoOutput.

 
-
-

Since: 1.0

-
-
-
-

qmi_indication_nas_signal_info_output_get_tdma_signal_strength ()

-
gboolean
-qmi_indication_nas_signal_info_output_get_tdma_signal_strength
-                               (QmiIndicationNasSignalInfoOutput *self,
-                                gint8 *value_tdma_signal_strength,
-                                GError **error);
-

Get the 'TDMA Signal Strength' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiIndicationNasSignalInfoOutput.

 

value_tdma_signal_strength

a placeholder for the output gint8, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.0

-
-
-
-

qmi_indication_nas_signal_info_output_get_lte_signal_strength ()

-
gboolean
-qmi_indication_nas_signal_info_output_get_lte_signal_strength
-                               (QmiIndicationNasSignalInfoOutput *self,
-                                gint8 *value_lte_signal_strength_rssi,
-                                gint8 *value_lte_signal_strength_rsrq,
-                                gint16 *value_lte_signal_strength_rsrp,
-                                gint16 *value_lte_signal_strength_snr,
-                                GError **error);
-

Get the 'LTE Signal Strength' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

self

a QmiIndicationNasSignalInfoOutput.

 

value_lte_signal_strength_rssi

a placeholder for the output gint8, or NULL if not required.

 

value_lte_signal_strength_rsrq

a placeholder for the output gint8, or NULL if not required.

 

value_lte_signal_strength_rsrp

a placeholder for the output gint16, or NULL if not required.

 

value_lte_signal_strength_snr

a placeholder for the output gint16, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.0

-
-
-
-

qmi_indication_nas_signal_info_output_get_wcdma_signal_strength ()

-
gboolean
-qmi_indication_nas_signal_info_output_get_wcdma_signal_strength
-                               (QmiIndicationNasSignalInfoOutput *self,
-                                gint8 *value_wcdma_signal_strength_rssi,
-                                gint16 *value_wcdma_signal_strength_ecio,
-                                GError **error);
-

Get the 'WCDMA Signal Strength' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - - - - - - -

self

a QmiIndicationNasSignalInfoOutput.

 

value_wcdma_signal_strength_rssi

a placeholder for the output gint8, or NULL if not required.

 

value_wcdma_signal_strength_ecio

a placeholder for the output gint16, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.0

-
-
-
-

qmi_indication_nas_signal_info_output_get_gsm_signal_strength ()

-
gboolean
-qmi_indication_nas_signal_info_output_get_gsm_signal_strength
-                               (QmiIndicationNasSignalInfoOutput *self,
-                                gint8 *value_gsm_signal_strength,
-                                GError **error);
-

Get the 'GSM Signal Strength' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiIndicationNasSignalInfoOutput.

 

value_gsm_signal_strength

a placeholder for the output gint8, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.0

-
-
-
-

qmi_indication_nas_signal_info_output_get_hdr_signal_strength ()

-
gboolean
-qmi_indication_nas_signal_info_output_get_hdr_signal_strength
-                               (QmiIndicationNasSignalInfoOutput *self,
-                                gint8 *value_hdr_signal_strength_rssi,
-                                gint16 *value_hdr_signal_strength_ecio,
-                                QmiNasEvdoSinrLevel *value_hdr_signal_strength_sinr,
-                                gint32 *value_hdr_signal_strength_io,
-                                GError **error);
-

Get the 'HDR Signal Strength' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

self

a QmiIndicationNasSignalInfoOutput.

 

value_hdr_signal_strength_rssi

a placeholder for the output gint8, or NULL if not required.

 

value_hdr_signal_strength_ecio

a placeholder for the output gint16, or NULL if not required.

 

value_hdr_signal_strength_sinr

a placeholder for the output QmiNasEvdoSinrLevel, or NULL if not required.

 

value_hdr_signal_strength_io

a placeholder for the output gint32, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.0

-
-
-
-

qmi_indication_nas_signal_info_output_get_cdma_signal_strength ()

-
gboolean
-qmi_indication_nas_signal_info_output_get_cdma_signal_strength
-                               (QmiIndicationNasSignalInfoOutput *self,
-                                gint8 *value_cdma_signal_strength_rssi,
-                                gint16 *value_cdma_signal_strength_ecio,
-                                GError **error);
-

Get the 'CDMA Signal Strength' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - - - - - - -

self

a QmiIndicationNasSignalInfoOutput.

 

value_cdma_signal_strength_rssi

a placeholder for the output gint8, or NULL if not required.

 

value_cdma_signal_strength_ecio

a placeholder for the output gint16, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.0

-
-
-
-

Types and Values

-
-

QmiIndicationNasSignalInfoOutput

-
typedef struct _QmiIndicationNasSignalInfoOutput QmiIndicationNasSignalInfoOutput;
-

The QmiIndicationNasSignalInfoOutput structure contains private data and should only be accessed -using the provided API.

-

Since: 1.0

-
-
-
- - - \ No newline at end of file diff -Nru libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-NAS-Signal-Info-indication.html libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-NAS-Signal-Info-indication.html --- libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-NAS-Signal-Info-indication.html 1970-01-01 01:00:00.000000000 +0100 +++ libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-NAS-Signal-Info-indication.html 2019-01-08 15:19:02.000000000 +0100 @@ -0,0 +1,511 @@ + + + + +NAS Signal Info indication: libqmi-glib Reference Manual + + + + + + + + + + + + + + + + +
+
+
+ + +
+

NAS Signal Info indication

+

NAS Signal Info indication

+
+ +
+

Types and Values

+ +
+
+

Object Hierarchy

+
    GBoxed
+    ╰── QmiIndicationNasSignalInfoOutput
+
+
+
+

Description

+
+
+

Functions

+
+

qmi_indication_nas_signal_info_output_ref ()

+
QmiIndicationNasSignalInfoOutput *
+qmi_indication_nas_signal_info_output_ref
+                               (QmiIndicationNasSignalInfoOutput *self);
+

Atomically increments the reference count of self + by one.

+
+

Parameters

+
+++++ + + + + + +

self

a QmiIndicationNasSignalInfoOutput.

 
+
+
+

Returns

+

the new reference to self +.

+
+

Since: 1.0

+
+
+
+

qmi_indication_nas_signal_info_output_unref ()

+
void
+qmi_indication_nas_signal_info_output_unref
+                               (QmiIndicationNasSignalInfoOutput *self);
+

Atomically decrements the reference count of self + by one. +If the reference count drops to 0, self + is completely disposed.

+
+

Parameters

+
+++++ + + + + + +

self

a QmiIndicationNasSignalInfoOutput.

 
+
+

Since: 1.0

+
+
+
+

qmi_indication_nas_signal_info_output_get_tdma_signal_strength ()

+
gboolean
+qmi_indication_nas_signal_info_output_get_tdma_signal_strength
+                               (QmiIndicationNasSignalInfoOutput *self,
+                                gint8 *value_tdma_signal_strength,
+                                GError **error);
+

Get the 'TDMA Signal Strength' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiIndicationNasSignalInfoOutput.

 

value_tdma_signal_strength

a placeholder for the output gint8, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.0

+
+
+
+

qmi_indication_nas_signal_info_output_get_lte_signal_strength ()

+
gboolean
+qmi_indication_nas_signal_info_output_get_lte_signal_strength
+                               (QmiIndicationNasSignalInfoOutput *self,
+                                gint8 *value_lte_signal_strength_rssi,
+                                gint8 *value_lte_signal_strength_rsrq,
+                                gint16 *value_lte_signal_strength_rsrp,
+                                gint16 *value_lte_signal_strength_snr,
+                                GError **error);
+

Get the 'LTE Signal Strength' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

self

a QmiIndicationNasSignalInfoOutput.

 

value_lte_signal_strength_rssi

a placeholder for the output gint8, or NULL if not required.

 

value_lte_signal_strength_rsrq

a placeholder for the output gint8, or NULL if not required.

 

value_lte_signal_strength_rsrp

a placeholder for the output gint16, or NULL if not required.

 

value_lte_signal_strength_snr

a placeholder for the output gint16, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.0

+
+
+
+

qmi_indication_nas_signal_info_output_get_wcdma_signal_strength ()

+
gboolean
+qmi_indication_nas_signal_info_output_get_wcdma_signal_strength
+                               (QmiIndicationNasSignalInfoOutput *self,
+                                gint8 *value_wcdma_signal_strength_rssi,
+                                gint16 *value_wcdma_signal_strength_ecio,
+                                GError **error);
+

Get the 'WCDMA Signal Strength' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + + + + + + +

self

a QmiIndicationNasSignalInfoOutput.

 

value_wcdma_signal_strength_rssi

a placeholder for the output gint8, or NULL if not required.

 

value_wcdma_signal_strength_ecio

a placeholder for the output gint16, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.0

+
+
+
+

qmi_indication_nas_signal_info_output_get_gsm_signal_strength ()

+
gboolean
+qmi_indication_nas_signal_info_output_get_gsm_signal_strength
+                               (QmiIndicationNasSignalInfoOutput *self,
+                                gint8 *value_gsm_signal_strength,
+                                GError **error);
+

Get the 'GSM Signal Strength' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiIndicationNasSignalInfoOutput.

 

value_gsm_signal_strength

a placeholder for the output gint8, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.0

+
+
+
+

qmi_indication_nas_signal_info_output_get_hdr_signal_strength ()

+
gboolean
+qmi_indication_nas_signal_info_output_get_hdr_signal_strength
+                               (QmiIndicationNasSignalInfoOutput *self,
+                                gint8 *value_hdr_signal_strength_rssi,
+                                gint16 *value_hdr_signal_strength_ecio,
+                                QmiNasEvdoSinrLevel *value_hdr_signal_strength_sinr,
+                                gint32 *value_hdr_signal_strength_io,
+                                GError **error);
+

Get the 'HDR Signal Strength' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

self

a QmiIndicationNasSignalInfoOutput.

 

value_hdr_signal_strength_rssi

a placeholder for the output gint8, or NULL if not required.

 

value_hdr_signal_strength_ecio

a placeholder for the output gint16, or NULL if not required.

 

value_hdr_signal_strength_sinr

a placeholder for the output QmiNasEvdoSinrLevel, or NULL if not required.

 

value_hdr_signal_strength_io

a placeholder for the output gint32, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.0

+
+
+
+

qmi_indication_nas_signal_info_output_get_cdma_signal_strength ()

+
gboolean
+qmi_indication_nas_signal_info_output_get_cdma_signal_strength
+                               (QmiIndicationNasSignalInfoOutput *self,
+                                gint8 *value_cdma_signal_strength_rssi,
+                                gint16 *value_cdma_signal_strength_ecio,
+                                GError **error);
+

Get the 'CDMA Signal Strength' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + + + + + + +

self

a QmiIndicationNasSignalInfoOutput.

 

value_cdma_signal_strength_rssi

a placeholder for the output gint8, or NULL if not required.

 

value_cdma_signal_strength_ecio

a placeholder for the output gint16, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.0

+
+
+
+

Types and Values

+
+

QmiIndicationNasSignalInfoOutput

+
typedef struct _QmiIndicationNasSignalInfoOutput QmiIndicationNasSignalInfoOutput;
+

The QmiIndicationNasSignalInfoOutput structure contains private data and should only be accessed +using the provided API.

+

Since: 1.0

+
+
+
+ + + \ No newline at end of file diff -Nru libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-NAS-System-Info.html libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-NAS-System-Info.html --- libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-NAS-System-Info.html 2017-03-22 12:28:29.000000000 +0100 +++ libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-NAS-System-Info.html 1970-01-01 01:00:00.000000000 +0100 @@ -1,2338 +0,0 @@ - - - - -NAS System Info: libqmi-glib Reference Manual - - - - - - - - - - - - - - - - -
-
-
- - -
-

NAS System Info

-

NAS System Info

-
-
-

Functions

-
---- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
-QmiIndicationNasSystemInfoOutput * - -qmi_indication_nas_system_info_output_ref () -
-void - -qmi_indication_nas_system_info_output_unref () -
-gboolean - -qmi_indication_nas_system_info_output_get_sim_reject_info () -
-gboolean - -qmi_indication_nas_system_info_output_get_lte_embms_coverage_info_support () -
-gboolean - -qmi_indication_nas_system_info_output_get_td_scma_system_info () -
-gboolean - -qmi_indication_nas_system_info_output_get_td_scdma_service_status () -
-gboolean - -qmi_indication_nas_system_info_output_get_plmn_not_changed_indication () -
-gboolean - -qmi_indication_nas_system_info_output_get_wcdma_cipher_domain () -
-gboolean - -qmi_indication_nas_system_info_output_get_gsm_cipher_domain () -
-gboolean - -qmi_indication_nas_system_info_output_get_lte_voice_support () -
-gboolean - -qmi_indication_nas_system_info_output_get_wcdma_call_barring_status () -
-gboolean - -qmi_indication_nas_system_info_output_get_gsm_call_barring_status () -
-gboolean - -qmi_indication_nas_system_info_output_get_additional_lte_system_info () -
-gboolean - -qmi_indication_nas_system_info_output_get_additional_wcdma_system_info () -
-gboolean - -qmi_indication_nas_system_info_output_get_additional_gsm_system_info () -
-gboolean - -qmi_indication_nas_system_info_output_get_additional_hdr_system_info () -
-gboolean - -qmi_indication_nas_system_info_output_get_additional_cdma_system_info () -
-gboolean - -qmi_indication_nas_system_info_output_get_lte_system_info () -
-gboolean - -qmi_indication_nas_system_info_output_get_wcdma_system_info () -
-gboolean - -qmi_indication_nas_system_info_output_get_gsm_system_info () -
-gboolean - -qmi_indication_nas_system_info_output_get_hdr_system_info () -
-gboolean - -qmi_indication_nas_system_info_output_get_cdma_system_info () -
-gboolean - -qmi_indication_nas_system_info_output_get_lte_service_status () -
-gboolean - -qmi_indication_nas_system_info_output_get_wcdma_service_status () -
-gboolean - -qmi_indication_nas_system_info_output_get_gsm_service_status () -
-gboolean - -qmi_indication_nas_system_info_output_get_hdr_service_status () -
-gboolean - -qmi_indication_nas_system_info_output_get_cdma_service_status () -
-
-
-

Types and Values

- -
-
-

Object Hierarchy

-
    GBoxed
-    ╰── QmiIndicationNasSystemInfoOutput
-
-
-
-

Description

-
-
-

Functions

-
-

qmi_indication_nas_system_info_output_ref ()

-
QmiIndicationNasSystemInfoOutput *
-qmi_indication_nas_system_info_output_ref
-                               (QmiIndicationNasSystemInfoOutput *self);
-

Atomically increments the reference count of self - by one.

-
-

Parameters

-
----- - - - - - -

self

a QmiIndicationNasSystemInfoOutput.

 
-
-
-

Returns

-

the new reference to self -.

-
-

Since: 1.0

-
-
-
-

qmi_indication_nas_system_info_output_unref ()

-
void
-qmi_indication_nas_system_info_output_unref
-                               (QmiIndicationNasSystemInfoOutput *self);
-

Atomically decrements the reference count of self - by one. -If the reference count drops to 0, self - is completely disposed.

-
-

Parameters

-
----- - - - - - -

self

a QmiIndicationNasSystemInfoOutput.

 
-
-

Since: 1.0

-
-
-
-

qmi_indication_nas_system_info_output_get_sim_reject_info ()

-
gboolean
-qmi_indication_nas_system_info_output_get_sim_reject_info
-                               (QmiIndicationNasSystemInfoOutput *self,
-                                QmiNasSimRejectState *value_sim_reject_info,
-                                GError **error);
-

Get the 'SIM Reject Info' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiIndicationNasSystemInfoOutput.

 

value_sim_reject_info

a placeholder for the output QmiNasSimRejectState, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.0

-
-
-
-

qmi_indication_nas_system_info_output_get_lte_embms_coverage_info_support ()

-
gboolean
-qmi_indication_nas_system_info_output_get_lte_embms_coverage_info_support
-                               (QmiIndicationNasSystemInfoOutput *self,
-                                gboolean *value_lte_embms_coverage_info_support,
-                                GError **error);
-

Get the 'LTE eMBMS Coverage Info Support' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiIndicationNasSystemInfoOutput.

 

value_lte_embms_coverage_info_support

a placeholder for the output gboolean, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.0

-
-
-
-

qmi_indication_nas_system_info_output_get_td_scma_system_info ()

-
gboolean
-qmi_indication_nas_system_info_output_get_td_scma_system_info
-                               (QmiIndicationNasSystemInfoOutput *self,
-                                gboolean *value_td_scma_system_info_domain_valid,
-                                QmiNasNetworkServiceDomain *value_td_scma_system_info_domain,
-                                gboolean *value_td_scma_system_info_service_capability_valid,
-                                QmiNasNetworkServiceDomain *value_td_scma_system_info_service_capability,
-                                gboolean *value_td_scma_system_info_roaming_status_valid,
-                                QmiNasRoamingStatus *value_td_scma_system_info_roaming_status,
-                                gboolean *value_td_scma_system_info_forbidden_valid,
-                                gboolean *value_td_scma_system_info_forbidden,
-                                gboolean *value_td_scma_system_info_lac_valid,
-                                guint16 *value_td_scma_system_info_lac,
-                                gboolean *value_td_scma_system_info_cid_valid,
-                                guint32 *value_td_scma_system_info_cid,
-                                gboolean *value_td_scma_system_info_registration_reject_info_valid,
-                                QmiNasNetworkServiceDomain *value_td_scma_system_info_registration_reject_domain,
-                                guint8 *value_td_scma_system_info_registration_reject_cause,
-                                gboolean *value_td_scma_system_info_network_id_valid,
-                                const gchar **value_td_scma_system_info_mcc,
-                                const gchar **value_td_scma_system_info_mnc,
-                                gboolean *value_td_scma_system_info_hs_call_status_valid,
-                                QmiNasWcdmaHsService *value_td_scma_system_info_hs_call_status,
-                                gboolean *value_td_scma_system_info_hs_service_valid,
-                                QmiNasWcdmaHsService *value_td_scma_system_info_hs_service,
-                                gboolean *value_td_scma_system_info_cell_parameter_id_valid,
-                                guint16 *value_td_scma_system_info_cell_parameter_id,
-                                gboolean *value_td_scma_system_info_cell_broadcast_support_valid,
-                                QmiNasCellBroadcastCapability *value_td_scma_system_info_cell_broadcast_support,
-                                gboolean *value_td_scma_system_info_cs_call_barring_status_valid,
-                                QmiNasCallBarringStatus *value_td_scma_system_info_cs_call_barring_status,
-                                gboolean *value_td_scma_system_info_ps_call_barring_status_valid,
-                                QmiNasCallBarringStatus *value_td_scma_system_info_ps_call_barring_status,
-                                gboolean *value_td_scma_system_info_cipher_domain_valid,
-                                QmiNasNetworkServiceDomain *value_td_scma_system_info_cipher_domain,
-                                GError **error);
-

Get the 'TD SCMA System Info' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

self

a QmiIndicationNasSystemInfoOutput.

 

value_td_scma_system_info_domain_valid

a placeholder for the output gboolean, or NULL if not required.

 

value_td_scma_system_info_domain

a placeholder for the output QmiNasNetworkServiceDomain, or NULL if not required.

 

value_td_scma_system_info_service_capability_valid

a placeholder for the output gboolean, or NULL if not required.

 

value_td_scma_system_info_service_capability

a placeholder for the output QmiNasNetworkServiceDomain, or NULL if not required.

 

value_td_scma_system_info_roaming_status_valid

a placeholder for the output gboolean, or NULL if not required.

 

value_td_scma_system_info_roaming_status

a placeholder for the output QmiNasRoamingStatus, or NULL if not required.

 

value_td_scma_system_info_forbidden_valid

a placeholder for the output gboolean, or NULL if not required.

 

value_td_scma_system_info_forbidden

a placeholder for the output gboolean, or NULL if not required.

 

value_td_scma_system_info_lac_valid

a placeholder for the output gboolean, or NULL if not required.

 

value_td_scma_system_info_lac

a placeholder for the output guint16, or NULL if not required.

 

value_td_scma_system_info_cid_valid

a placeholder for the output gboolean, or NULL if not required.

 

value_td_scma_system_info_cid

a placeholder for the output guint32, or NULL if not required.

 

value_td_scma_system_info_registration_reject_info_valid

a placeholder for the output gboolean, or NULL if not required.

 

value_td_scma_system_info_registration_reject_domain

a placeholder for the output QmiNasNetworkServiceDomain, or NULL if not required.

 

value_td_scma_system_info_registration_reject_cause

a placeholder for the output guint8, or NULL if not required.

 

value_td_scma_system_info_network_id_valid

a placeholder for the output gboolean, or NULL if not required.

 

value_td_scma_system_info_mcc

a placeholder for the output constant string, or NULL if not required.

 

value_td_scma_system_info_mnc

a placeholder for the output constant string, or NULL if not required.

 

value_td_scma_system_info_hs_call_status_valid

a placeholder for the output gboolean, or NULL if not required.

 

value_td_scma_system_info_hs_call_status

a placeholder for the output QmiNasWcdmaHsService, or NULL if not required.

 

value_td_scma_system_info_hs_service_valid

a placeholder for the output gboolean, or NULL if not required.

 

value_td_scma_system_info_hs_service

a placeholder for the output QmiNasWcdmaHsService, or NULL if not required.

 

value_td_scma_system_info_cell_parameter_id_valid

a placeholder for the output gboolean, or NULL if not required.

 

value_td_scma_system_info_cell_parameter_id

a placeholder for the output guint16, or NULL if not required.

 

value_td_scma_system_info_cell_broadcast_support_valid

a placeholder for the output gboolean, or NULL if not required.

 

value_td_scma_system_info_cell_broadcast_support

a placeholder for the output QmiNasCellBroadcastCapability, or NULL if not required.

 

value_td_scma_system_info_cs_call_barring_status_valid

a placeholder for the output gboolean, or NULL if not required.

 

value_td_scma_system_info_cs_call_barring_status

a placeholder for the output QmiNasCallBarringStatus, or NULL if not required.

 

value_td_scma_system_info_ps_call_barring_status_valid

a placeholder for the output gboolean, or NULL if not required.

 

value_td_scma_system_info_ps_call_barring_status

a placeholder for the output QmiNasCallBarringStatus, or NULL if not required.

 

value_td_scma_system_info_cipher_domain_valid

a placeholder for the output gboolean, or NULL if not required.

 

value_td_scma_system_info_cipher_domain

a placeholder for the output QmiNasNetworkServiceDomain, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.0

-
-
-
-

qmi_indication_nas_system_info_output_get_td_scdma_service_status ()

-
gboolean
-qmi_indication_nas_system_info_output_get_td_scdma_service_status
-                               (QmiIndicationNasSystemInfoOutput *self,
-                                QmiNasServiceStatus *value_td_scdma_service_status_service_status,
-                                QmiNasServiceStatus *value_td_scdma_service_status_true_service_status,
-                                gboolean *value_td_scdma_service_status_preferred_data_path,
-                                GError **error);
-

Get the 'TD SCDMA Service Status' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - - - - - - - - - - - -

self

a QmiIndicationNasSystemInfoOutput.

 

value_td_scdma_service_status_service_status

a placeholder for the output QmiNasServiceStatus, or NULL if not required.

 

value_td_scdma_service_status_true_service_status

a placeholder for the output QmiNasServiceStatus, or NULL if not required.

 

value_td_scdma_service_status_preferred_data_path

a placeholder for the output gboolean, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.0

-
-
-
-

qmi_indication_nas_system_info_output_get_plmn_not_changed_indication ()

-
gboolean
-qmi_indication_nas_system_info_output_get_plmn_not_changed_indication
-                               (QmiIndicationNasSystemInfoOutput *self,
-                                gboolean *value_plmn_not_changed_indication,
-                                GError **error);
-

Get the 'PLMN Not Changed Indication' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiIndicationNasSystemInfoOutput.

 

value_plmn_not_changed_indication

a placeholder for the output gboolean, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.0

-
-
-
-

qmi_indication_nas_system_info_output_get_wcdma_cipher_domain ()

-
gboolean
-qmi_indication_nas_system_info_output_get_wcdma_cipher_domain
-                               (QmiIndicationNasSystemInfoOutput *self,
-                                QmiNasNetworkServiceDomain *value_wcdma_cipher_domain,
-                                GError **error);
-

Get the 'WCDMA Cipher Domain' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiIndicationNasSystemInfoOutput.

 

value_wcdma_cipher_domain

a placeholder for the output QmiNasNetworkServiceDomain, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.0

-
-
-
-

qmi_indication_nas_system_info_output_get_gsm_cipher_domain ()

-
gboolean
-qmi_indication_nas_system_info_output_get_gsm_cipher_domain
-                               (QmiIndicationNasSystemInfoOutput *self,
-                                QmiNasNetworkServiceDomain *value_gsm_cipher_domain,
-                                GError **error);
-

Get the 'GSM Cipher Domain' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiIndicationNasSystemInfoOutput.

 

value_gsm_cipher_domain

a placeholder for the output QmiNasNetworkServiceDomain, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.0

-
-
-
-

qmi_indication_nas_system_info_output_get_lte_voice_support ()

-
gboolean
-qmi_indication_nas_system_info_output_get_lte_voice_support
-                               (QmiIndicationNasSystemInfoOutput *self,
-                                gboolean *value_lte_voice_support,
-                                GError **error);
-

Get the 'LTE Voice Support' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiIndicationNasSystemInfoOutput.

 

value_lte_voice_support

a placeholder for the output gboolean, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.0

-
-
-
-

qmi_indication_nas_system_info_output_get_wcdma_call_barring_status ()

-
gboolean
-qmi_indication_nas_system_info_output_get_wcdma_call_barring_status
-                               (QmiIndicationNasSystemInfoOutput *self,
-                                QmiNasCallBarringStatus *value_wcdma_call_barring_status_cs_status,
-                                QmiNasCallBarringStatus *value_wcdma_call_barring_status_ps_status,
-                                GError **error);
-

Get the 'WCDMA Call Barring Status' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - - - - - - -

self

a QmiIndicationNasSystemInfoOutput.

 

value_wcdma_call_barring_status_cs_status

a placeholder for the output QmiNasCallBarringStatus, or NULL if not required.

 

value_wcdma_call_barring_status_ps_status

a placeholder for the output QmiNasCallBarringStatus, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.0

-
-
-
-

qmi_indication_nas_system_info_output_get_gsm_call_barring_status ()

-
gboolean
-qmi_indication_nas_system_info_output_get_gsm_call_barring_status
-                               (QmiIndicationNasSystemInfoOutput *self,
-                                QmiNasCallBarringStatus *value_gsm_call_barring_status_cs_status,
-                                QmiNasCallBarringStatus *value_gsm_call_barring_status_ps_status,
-                                GError **error);
-

Get the 'GSM Call Barring Status' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - - - - - - -

self

a QmiIndicationNasSystemInfoOutput.

 

value_gsm_call_barring_status_cs_status

a placeholder for the output QmiNasCallBarringStatus, or NULL if not required.

 

value_gsm_call_barring_status_ps_status

a placeholder for the output QmiNasCallBarringStatus, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.0

-
-
-
-

qmi_indication_nas_system_info_output_get_additional_lte_system_info ()

-
gboolean
-qmi_indication_nas_system_info_output_get_additional_lte_system_info
-                               (QmiIndicationNasSystemInfoOutput *self,
-                                guint16 *value_additional_lte_system_info_geo_system_index,
-                                GError **error);
-

Get the 'Additional LTE System Info' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiIndicationNasSystemInfoOutput.

 

value_additional_lte_system_info_geo_system_index

a placeholder for the output guint16, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.0

-
-
-
-

qmi_indication_nas_system_info_output_get_additional_wcdma_system_info ()

-
gboolean
-qmi_indication_nas_system_info_output_get_additional_wcdma_system_info
-                               (QmiIndicationNasSystemInfoOutput *self,
-                                guint16 *value_additional_wcdma_system_info_geo_system_index,
-                                QmiNasCellBroadcastCapability *value_additional_wcdma_system_info_cell_broadcast_support,
-                                GError **error);
-

Get the 'Additional WCDMA System Info' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - - - - - - -

self

a QmiIndicationNasSystemInfoOutput.

 

value_additional_wcdma_system_info_geo_system_index

a placeholder for the output guint16, or NULL if not required.

 

value_additional_wcdma_system_info_cell_broadcast_support

a placeholder for the output QmiNasCellBroadcastCapability, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.0

-
-
-
-

qmi_indication_nas_system_info_output_get_additional_gsm_system_info ()

-
gboolean
-qmi_indication_nas_system_info_output_get_additional_gsm_system_info
-                               (QmiIndicationNasSystemInfoOutput *self,
-                                guint16 *value_additional_gsm_system_info_geo_system_index,
-                                QmiNasCellBroadcastCapability *value_additional_gsm_system_info_cell_broadcast_support,
-                                GError **error);
-

Get the 'Additional GSM System Info' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - - - - - - -

self

a QmiIndicationNasSystemInfoOutput.

 

value_additional_gsm_system_info_geo_system_index

a placeholder for the output guint16, or NULL if not required.

 

value_additional_gsm_system_info_cell_broadcast_support

a placeholder for the output QmiNasCellBroadcastCapability, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.0

-
-
-
-

qmi_indication_nas_system_info_output_get_additional_hdr_system_info ()

-
gboolean
-qmi_indication_nas_system_info_output_get_additional_hdr_system_info
-                               (QmiIndicationNasSystemInfoOutput *self,
-                                guint16 *value_additional_hdr_system_info_geo_system_index,
-                                GError **error);
-

Get the 'Additional HDR System Info' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiIndicationNasSystemInfoOutput.

 

value_additional_hdr_system_info_geo_system_index

a placeholder for the output guint16, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.0

-
-
-
-

qmi_indication_nas_system_info_output_get_additional_cdma_system_info ()

-
gboolean
-qmi_indication_nas_system_info_output_get_additional_cdma_system_info
-                               (QmiIndicationNasSystemInfoOutput *self,
-                                guint16 *value_additional_cdma_system_info_geo_system_index,
-                                guint16 *value_additional_cdma_system_info_registration_period,
-                                GError **error);
-

Get the 'Additional CDMA System Info' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - - - - - - -

self

a QmiIndicationNasSystemInfoOutput.

 

value_additional_cdma_system_info_geo_system_index

a placeholder for the output guint16, or NULL if not required.

 

value_additional_cdma_system_info_registration_period

a placeholder for the output guint16, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.0

-
-
-
-

qmi_indication_nas_system_info_output_get_lte_system_info ()

-
gboolean
-qmi_indication_nas_system_info_output_get_lte_system_info
-                               (QmiIndicationNasSystemInfoOutput *self,
-                                gboolean *value_lte_system_info_domain_valid,
-                                QmiNasNetworkServiceDomain *value_lte_system_info_domain,
-                                gboolean *value_lte_system_info_service_capability_valid,
-                                QmiNasNetworkServiceDomain *value_lte_system_info_service_capability,
-                                gboolean *value_lte_system_info_roaming_status_valid,
-                                QmiNasRoamingStatus *value_lte_system_info_roaming_status,
-                                gboolean *value_lte_system_info_forbidden_valid,
-                                gboolean *value_lte_system_info_forbidden,
-                                gboolean *value_lte_system_info_lac_valid,
-                                guint16 *value_lte_system_info_lac,
-                                gboolean *value_lte_system_info_cid_valid,
-                                guint32 *value_lte_system_info_cid,
-                                gboolean *value_lte_system_info_registration_reject_info_valid,
-                                QmiNasNetworkServiceDomain *value_lte_system_info_registration_reject_domain,
-                                guint8 *value_lte_system_info_registration_reject_cause,
-                                gboolean *value_lte_system_info_network_id_valid,
-                                const gchar **value_lte_system_info_mcc,
-                                const gchar **value_lte_system_info_mnc,
-                                gboolean *value_lte_system_info_tac_valid,
-                                guint16 *value_lte_system_info_tac,
-                                GError **error);
-

Get the 'LTE System Info' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

self

a QmiIndicationNasSystemInfoOutput.

 

value_lte_system_info_domain_valid

a placeholder for the output gboolean, or NULL if not required.

 

value_lte_system_info_domain

a placeholder for the output QmiNasNetworkServiceDomain, or NULL if not required.

 

value_lte_system_info_service_capability_valid

a placeholder for the output gboolean, or NULL if not required.

 

value_lte_system_info_service_capability

a placeholder for the output QmiNasNetworkServiceDomain, or NULL if not required.

 

value_lte_system_info_roaming_status_valid

a placeholder for the output gboolean, or NULL if not required.

 

value_lte_system_info_roaming_status

a placeholder for the output QmiNasRoamingStatus, or NULL if not required.

 

value_lte_system_info_forbidden_valid

a placeholder for the output gboolean, or NULL if not required.

 

value_lte_system_info_forbidden

a placeholder for the output gboolean, or NULL if not required.

 

value_lte_system_info_lac_valid

a placeholder for the output gboolean, or NULL if not required.

 

value_lte_system_info_lac

a placeholder for the output guint16, or NULL if not required.

 

value_lte_system_info_cid_valid

a placeholder for the output gboolean, or NULL if not required.

 

value_lte_system_info_cid

a placeholder for the output guint32, or NULL if not required.

 

value_lte_system_info_registration_reject_info_valid

a placeholder for the output gboolean, or NULL if not required.

 

value_lte_system_info_registration_reject_domain

a placeholder for the output QmiNasNetworkServiceDomain, or NULL if not required.

 

value_lte_system_info_registration_reject_cause

a placeholder for the output guint8, or NULL if not required.

 

value_lte_system_info_network_id_valid

a placeholder for the output gboolean, or NULL if not required.

 

value_lte_system_info_mcc

a placeholder for the output constant string, or NULL if not required.

 

value_lte_system_info_mnc

a placeholder for the output constant string, or NULL if not required.

 

value_lte_system_info_tac_valid

a placeholder for the output gboolean, or NULL if not required.

 

value_lte_system_info_tac

a placeholder for the output guint16, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.0

-
-
-
-

qmi_indication_nas_system_info_output_get_wcdma_system_info ()

-
gboolean
-qmi_indication_nas_system_info_output_get_wcdma_system_info
-                               (QmiIndicationNasSystemInfoOutput *self,
-                                gboolean *value_wcdma_system_info_domain_valid,
-                                QmiNasNetworkServiceDomain *value_wcdma_system_info_domain,
-                                gboolean *value_wcdma_system_info_service_capability_valid,
-                                QmiNasNetworkServiceDomain *value_wcdma_system_info_service_capability,
-                                gboolean *value_wcdma_system_info_roaming_status_valid,
-                                QmiNasRoamingStatus *value_wcdma_system_info_roaming_status,
-                                gboolean *value_wcdma_system_info_forbidden_valid,
-                                gboolean *value_wcdma_system_info_forbidden,
-                                gboolean *value_wcdma_system_info_lac_valid,
-                                guint16 *value_wcdma_system_info_lac,
-                                gboolean *value_wcdma_system_info_cid_valid,
-                                guint32 *value_wcdma_system_info_cid,
-                                gboolean *value_wcdma_system_info_registration_reject_info_valid,
-                                QmiNasNetworkServiceDomain *value_wcdma_system_info_registration_reject_domain,
-                                guint8 *value_wcdma_system_info_registration_reject_cause,
-                                gboolean *value_wcdma_system_info_network_id_valid,
-                                const gchar **value_wcdma_system_info_mcc,
-                                const gchar **value_wcdma_system_info_mnc,
-                                gboolean *value_wcdma_system_info_hs_call_status_valid,
-                                QmiNasWcdmaHsService *value_wcdma_system_info_hs_call_status,
-                                gboolean *value_wcdma_system_info_hs_service_valid,
-                                QmiNasWcdmaHsService *value_wcdma_system_info_hs_service,
-                                gboolean *value_wcdma_system_info_primary_scrambling_code_valid,
-                                guint16 *value_wcdma_system_info_primary_scrambling_code,
-                                GError **error);
-

Get the 'WCDMA System Info' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

self

a QmiIndicationNasSystemInfoOutput.

 

value_wcdma_system_info_domain_valid

a placeholder for the output gboolean, or NULL if not required.

 

value_wcdma_system_info_domain

a placeholder for the output QmiNasNetworkServiceDomain, or NULL if not required.

 

value_wcdma_system_info_service_capability_valid

a placeholder for the output gboolean, or NULL if not required.

 

value_wcdma_system_info_service_capability

a placeholder for the output QmiNasNetworkServiceDomain, or NULL if not required.

 

value_wcdma_system_info_roaming_status_valid

a placeholder for the output gboolean, or NULL if not required.

 

value_wcdma_system_info_roaming_status

a placeholder for the output QmiNasRoamingStatus, or NULL if not required.

 

value_wcdma_system_info_forbidden_valid

a placeholder for the output gboolean, or NULL if not required.

 

value_wcdma_system_info_forbidden

a placeholder for the output gboolean, or NULL if not required.

 

value_wcdma_system_info_lac_valid

a placeholder for the output gboolean, or NULL if not required.

 

value_wcdma_system_info_lac

a placeholder for the output guint16, or NULL if not required.

 

value_wcdma_system_info_cid_valid

a placeholder for the output gboolean, or NULL if not required.

 

value_wcdma_system_info_cid

a placeholder for the output guint32, or NULL if not required.

 

value_wcdma_system_info_registration_reject_info_valid

a placeholder for the output gboolean, or NULL if not required.

 

value_wcdma_system_info_registration_reject_domain

a placeholder for the output QmiNasNetworkServiceDomain, or NULL if not required.

 

value_wcdma_system_info_registration_reject_cause

a placeholder for the output guint8, or NULL if not required.

 

value_wcdma_system_info_network_id_valid

a placeholder for the output gboolean, or NULL if not required.

 

value_wcdma_system_info_mcc

a placeholder for the output constant string, or NULL if not required.

 

value_wcdma_system_info_mnc

a placeholder for the output constant string, or NULL if not required.

 

value_wcdma_system_info_hs_call_status_valid

a placeholder for the output gboolean, or NULL if not required.

 

value_wcdma_system_info_hs_call_status

a placeholder for the output QmiNasWcdmaHsService, or NULL if not required.

 

value_wcdma_system_info_hs_service_valid

a placeholder for the output gboolean, or NULL if not required.

 

value_wcdma_system_info_hs_service

a placeholder for the output QmiNasWcdmaHsService, or NULL if not required.

 

value_wcdma_system_info_primary_scrambling_code_valid

a placeholder for the output gboolean, or NULL if not required.

 

value_wcdma_system_info_primary_scrambling_code

a placeholder for the output guint16, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.0

-
-
-
-

qmi_indication_nas_system_info_output_get_gsm_system_info ()

-
gboolean
-qmi_indication_nas_system_info_output_get_gsm_system_info
-                               (QmiIndicationNasSystemInfoOutput *self,
-                                gboolean *value_gsm_system_info_domain_valid,
-                                QmiNasNetworkServiceDomain *value_gsm_system_info_domain,
-                                gboolean *value_gsm_system_info_service_capability_valid,
-                                QmiNasNetworkServiceDomain *value_gsm_system_info_service_capability,
-                                gboolean *value_gsm_system_info_roaming_status_valid,
-                                QmiNasRoamingStatus *value_gsm_system_info_roaming_status,
-                                gboolean *value_gsm_system_info_forbidden_valid,
-                                gboolean *value_gsm_system_info_forbidden,
-                                gboolean *value_gsm_system_info_lac_valid,
-                                guint16 *value_gsm_system_info_lac,
-                                gboolean *value_gsm_system_info_cid_valid,
-                                guint32 *value_gsm_system_info_cid,
-                                gboolean *value_gsm_system_info_registration_reject_info_valid,
-                                QmiNasNetworkServiceDomain *value_gsm_system_info_registration_reject_domain,
-                                guint8 *value_gsm_system_info_registration_reject_cause,
-                                gboolean *value_gsm_system_info_network_id_valid,
-                                const gchar **value_gsm_system_info_mcc,
-                                const gchar **value_gsm_system_info_mnc,
-                                gboolean *value_gsm_system_info_egprs_support_valid,
-                                gboolean *value_gsm_system_info_egprs_support,
-                                gboolean *value_gsm_system_info_dtm_support_valid,
-                                gboolean *value_gsm_system_info_dtm_support,
-                                GError **error);
-

Get the 'GSM System Info' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

self

a QmiIndicationNasSystemInfoOutput.

 

value_gsm_system_info_domain_valid

a placeholder for the output gboolean, or NULL if not required.

 

value_gsm_system_info_domain

a placeholder for the output QmiNasNetworkServiceDomain, or NULL if not required.

 

value_gsm_system_info_service_capability_valid

a placeholder for the output gboolean, or NULL if not required.

 

value_gsm_system_info_service_capability

a placeholder for the output QmiNasNetworkServiceDomain, or NULL if not required.

 

value_gsm_system_info_roaming_status_valid

a placeholder for the output gboolean, or NULL if not required.

 

value_gsm_system_info_roaming_status

a placeholder for the output QmiNasRoamingStatus, or NULL if not required.

 

value_gsm_system_info_forbidden_valid

a placeholder for the output gboolean, or NULL if not required.

 

value_gsm_system_info_forbidden

a placeholder for the output gboolean, or NULL if not required.

 

value_gsm_system_info_lac_valid

a placeholder for the output gboolean, or NULL if not required.

 

value_gsm_system_info_lac

a placeholder for the output guint16, or NULL if not required.

 

value_gsm_system_info_cid_valid

a placeholder for the output gboolean, or NULL if not required.

 

value_gsm_system_info_cid

a placeholder for the output guint32, or NULL if not required.

 

value_gsm_system_info_registration_reject_info_valid

a placeholder for the output gboolean, or NULL if not required.

 

value_gsm_system_info_registration_reject_domain

a placeholder for the output QmiNasNetworkServiceDomain, or NULL if not required.

 

value_gsm_system_info_registration_reject_cause

a placeholder for the output guint8, or NULL if not required.

 

value_gsm_system_info_network_id_valid

a placeholder for the output gboolean, or NULL if not required.

 

value_gsm_system_info_mcc

a placeholder for the output constant string, or NULL if not required.

 

value_gsm_system_info_mnc

a placeholder for the output constant string, or NULL if not required.

 

value_gsm_system_info_egprs_support_valid

a placeholder for the output gboolean, or NULL if not required.

 

value_gsm_system_info_egprs_support

a placeholder for the output gboolean, or NULL if not required.

 

value_gsm_system_info_dtm_support_valid

a placeholder for the output gboolean, or NULL if not required.

 

value_gsm_system_info_dtm_support

a placeholder for the output gboolean, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.0

-
-
-
-

qmi_indication_nas_system_info_output_get_hdr_system_info ()

-
gboolean
-qmi_indication_nas_system_info_output_get_hdr_system_info
-                               (QmiIndicationNasSystemInfoOutput *self,
-                                gboolean *value_hdr_system_info_domain_valid,
-                                QmiNasNetworkServiceDomain *value_hdr_system_info_domain,
-                                gboolean *value_hdr_system_info_service_capability_valid,
-                                QmiNasNetworkServiceDomain *value_hdr_system_info_service_capability,
-                                gboolean *value_hdr_system_info_roaming_status_valid,
-                                QmiNasRoamingStatus *value_hdr_system_info_roaming_status,
-                                gboolean *value_hdr_system_info_forbidden_valid,
-                                gboolean *value_hdr_system_info_forbidden,
-                                gboolean *value_hdr_system_info_prl_match_valid,
-                                gboolean *value_hdr_system_info_prl_match,
-                                gboolean *value_hdr_system_info_personality_valid,
-                                QmiNasHdrPersonality *value_hdr_system_info_personality,
-                                gboolean *value_hdr_system_info_protocol_revision_valid,
-                                QmiNasHdrProtocolRevision *value_hdr_system_info_protocol_revision,
-                                gboolean *value_hdr_system_info_is_856_system_id_valid,
-                                const gchar **value_hdr_system_info_is_856_system_id,
-                                GError **error);
-

Get the 'HDR System Info' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

self

a QmiIndicationNasSystemInfoOutput.

 

value_hdr_system_info_domain_valid

a placeholder for the output gboolean, or NULL if not required.

 

value_hdr_system_info_domain

a placeholder for the output QmiNasNetworkServiceDomain, or NULL if not required.

 

value_hdr_system_info_service_capability_valid

a placeholder for the output gboolean, or NULL if not required.

 

value_hdr_system_info_service_capability

a placeholder for the output QmiNasNetworkServiceDomain, or NULL if not required.

 

value_hdr_system_info_roaming_status_valid

a placeholder for the output gboolean, or NULL if not required.

 

value_hdr_system_info_roaming_status

a placeholder for the output QmiNasRoamingStatus, or NULL if not required.

 

value_hdr_system_info_forbidden_valid

a placeholder for the output gboolean, or NULL if not required.

 

value_hdr_system_info_forbidden

a placeholder for the output gboolean, or NULL if not required.

 

value_hdr_system_info_prl_match_valid

a placeholder for the output gboolean, or NULL if not required.

 

value_hdr_system_info_prl_match

a placeholder for the output gboolean, or NULL if not required.

 

value_hdr_system_info_personality_valid

a placeholder for the output gboolean, or NULL if not required.

 

value_hdr_system_info_personality

a placeholder for the output QmiNasHdrPersonality, or NULL if not required.

 

value_hdr_system_info_protocol_revision_valid

a placeholder for the output gboolean, or NULL if not required.

 

value_hdr_system_info_protocol_revision

a placeholder for the output QmiNasHdrProtocolRevision, or NULL if not required.

 

value_hdr_system_info_is_856_system_id_valid

a placeholder for the output gboolean, or NULL if not required.

 

value_hdr_system_info_is_856_system_id

a placeholder for the output constant string, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.0

-
-
-
-

qmi_indication_nas_system_info_output_get_cdma_system_info ()

-
gboolean
-qmi_indication_nas_system_info_output_get_cdma_system_info
-                               (QmiIndicationNasSystemInfoOutput *self,
-                                gboolean *value_cdma_system_info_domain_valid,
-                                QmiNasNetworkServiceDomain *value_cdma_system_info_domain,
-                                gboolean *value_cdma_system_info_service_capability_valid,
-                                QmiNasNetworkServiceDomain *value_cdma_system_info_service_capability,
-                                gboolean *value_cdma_system_info_roaming_status_valid,
-                                QmiNasRoamingStatus *value_cdma_system_info_roaming_status,
-                                gboolean *value_cdma_system_info_forbidden_valid,
-                                gboolean *value_cdma_system_info_forbidden,
-                                gboolean *value_cdma_system_info_prl_match_valid,
-                                gboolean *value_cdma_system_info_prl_match,
-                                gboolean *value_cdma_system_info_p_rev_valid,
-                                guint8 *value_cdma_system_info_p_rev,
-                                gboolean *value_cdma_system_info_base_station_p_rev_valid,
-                                guint8 *value_cdma_system_info_base_station_p_rev,
-                                gboolean *value_cdma_system_info_concurrent_service_support_valid,
-                                gboolean *value_cdma_system_info_concurrent_service_support,
-                                gboolean *value_cdma_system_info_cdma_system_id_valid,
-                                guint16 *value_cdma_system_info_sid,
-                                guint16 *value_cdma_system_info_nid,
-                                gboolean *value_cdma_system_info_base_station_info_valid,
-                                guint16 *value_cdma_system_info_base_station_id,
-                                gint32 *value_cdma_system_info_base_station_latitude,
-                                gint32 *value_cdma_system_info_base_station_longitude,
-                                gboolean *value_cdma_system_info_packet_zone_valid,
-                                guint16 *value_cdma_system_info_packet_zone,
-                                gboolean *value_cdma_system_info_network_id_valid,
-                                const gchar **value_cdma_system_info_mcc,
-                                const gchar **value_cdma_system_info_mnc,
-                                GError **error);
-

Get the 'CDMA System Info' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

self

a QmiIndicationNasSystemInfoOutput.

 

value_cdma_system_info_domain_valid

a placeholder for the output gboolean, or NULL if not required.

 

value_cdma_system_info_domain

a placeholder for the output QmiNasNetworkServiceDomain, or NULL if not required.

 

value_cdma_system_info_service_capability_valid

a placeholder for the output gboolean, or NULL if not required.

 

value_cdma_system_info_service_capability

a placeholder for the output QmiNasNetworkServiceDomain, or NULL if not required.

 

value_cdma_system_info_roaming_status_valid

a placeholder for the output gboolean, or NULL if not required.

 

value_cdma_system_info_roaming_status

a placeholder for the output QmiNasRoamingStatus, or NULL if not required.

 

value_cdma_system_info_forbidden_valid

a placeholder for the output gboolean, or NULL if not required.

 

value_cdma_system_info_forbidden

a placeholder for the output gboolean, or NULL if not required.

 

value_cdma_system_info_prl_match_valid

a placeholder for the output gboolean, or NULL if not required.

 

value_cdma_system_info_prl_match

a placeholder for the output gboolean, or NULL if not required.

 

value_cdma_system_info_p_rev_valid

a placeholder for the output gboolean, or NULL if not required.

 

value_cdma_system_info_p_rev

a placeholder for the output guint8, or NULL if not required.

 

value_cdma_system_info_base_station_p_rev_valid

a placeholder for the output gboolean, or NULL if not required.

 

value_cdma_system_info_base_station_p_rev

a placeholder for the output guint8, or NULL if not required.

 

value_cdma_system_info_concurrent_service_support_valid

a placeholder for the output gboolean, or NULL if not required.

 

value_cdma_system_info_concurrent_service_support

a placeholder for the output gboolean, or NULL if not required.

 

value_cdma_system_info_cdma_system_id_valid

a placeholder for the output gboolean, or NULL if not required.

 

value_cdma_system_info_sid

a placeholder for the output guint16, or NULL if not required.

 

value_cdma_system_info_nid

a placeholder for the output guint16, or NULL if not required.

 

value_cdma_system_info_base_station_info_valid

a placeholder for the output gboolean, or NULL if not required.

 

value_cdma_system_info_base_station_id

a placeholder for the output guint16, or NULL if not required.

 

value_cdma_system_info_base_station_latitude

a placeholder for the output gint32, or NULL if not required.

 

value_cdma_system_info_base_station_longitude

a placeholder for the output gint32, or NULL if not required.

 

value_cdma_system_info_packet_zone_valid

a placeholder for the output gboolean, or NULL if not required.

 

value_cdma_system_info_packet_zone

a placeholder for the output guint16, or NULL if not required.

 

value_cdma_system_info_network_id_valid

a placeholder for the output gboolean, or NULL if not required.

 

value_cdma_system_info_mcc

a placeholder for the output constant string, or NULL if not required.

 

value_cdma_system_info_mnc

a placeholder for the output constant string, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.0

-
-
-
-

qmi_indication_nas_system_info_output_get_lte_service_status ()

-
gboolean
-qmi_indication_nas_system_info_output_get_lte_service_status
-                               (QmiIndicationNasSystemInfoOutput *self,
-                                QmiNasServiceStatus *value_lte_service_status_service_status,
-                                QmiNasServiceStatus *value_lte_service_status_true_service_status,
-                                gboolean *value_lte_service_status_preferred_data_path,
-                                GError **error);
-

Get the 'LTE Service Status' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - - - - - - - - - - - -

self

a QmiIndicationNasSystemInfoOutput.

 

value_lte_service_status_service_status

a placeholder for the output QmiNasServiceStatus, or NULL if not required.

 

value_lte_service_status_true_service_status

a placeholder for the output QmiNasServiceStatus, or NULL if not required.

 

value_lte_service_status_preferred_data_path

a placeholder for the output gboolean, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.0

-
-
-
-

qmi_indication_nas_system_info_output_get_wcdma_service_status ()

-
gboolean
-qmi_indication_nas_system_info_output_get_wcdma_service_status
-                               (QmiIndicationNasSystemInfoOutput *self,
-                                QmiNasServiceStatus *value_wcdma_service_status_service_status,
-                                QmiNasServiceStatus *value_wcdma_service_status_true_service_status,
-                                gboolean *value_wcdma_service_status_preferred_data_path,
-                                GError **error);
-

Get the 'WCDMA Service Status' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - - - - - - - - - - - -

self

a QmiIndicationNasSystemInfoOutput.

 

value_wcdma_service_status_service_status

a placeholder for the output QmiNasServiceStatus, or NULL if not required.

 

value_wcdma_service_status_true_service_status

a placeholder for the output QmiNasServiceStatus, or NULL if not required.

 

value_wcdma_service_status_preferred_data_path

a placeholder for the output gboolean, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.0

-
-
-
-

qmi_indication_nas_system_info_output_get_gsm_service_status ()

-
gboolean
-qmi_indication_nas_system_info_output_get_gsm_service_status
-                               (QmiIndicationNasSystemInfoOutput *self,
-                                QmiNasServiceStatus *value_gsm_service_status_service_status,
-                                QmiNasServiceStatus *value_gsm_service_status_true_service_status,
-                                gboolean *value_gsm_service_status_preferred_data_path,
-                                GError **error);
-

Get the 'GSM Service Status' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - - - - - - - - - - - -

self

a QmiIndicationNasSystemInfoOutput.

 

value_gsm_service_status_service_status

a placeholder for the output QmiNasServiceStatus, or NULL if not required.

 

value_gsm_service_status_true_service_status

a placeholder for the output QmiNasServiceStatus, or NULL if not required.

 

value_gsm_service_status_preferred_data_path

a placeholder for the output gboolean, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.0

-
-
-
-

qmi_indication_nas_system_info_output_get_hdr_service_status ()

-
gboolean
-qmi_indication_nas_system_info_output_get_hdr_service_status
-                               (QmiIndicationNasSystemInfoOutput *self,
-                                QmiNasServiceStatus *value_hdr_service_status_service_status,
-                                gboolean *value_hdr_service_status_preferred_data_path,
-                                GError **error);
-

Get the 'HDR Service Status' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - - - - - - -

self

a QmiIndicationNasSystemInfoOutput.

 

value_hdr_service_status_service_status

a placeholder for the output QmiNasServiceStatus, or NULL if not required.

 

value_hdr_service_status_preferred_data_path

a placeholder for the output gboolean, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.0

-
-
-
-

qmi_indication_nas_system_info_output_get_cdma_service_status ()

-
gboolean
-qmi_indication_nas_system_info_output_get_cdma_service_status
-                               (QmiIndicationNasSystemInfoOutput *self,
-                                QmiNasServiceStatus *value_cdma_service_status_service_status,
-                                gboolean *value_cdma_service_status_preferred_data_path,
-                                GError **error);
-

Get the 'CDMA Service Status' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - - - - - - -

self

a QmiIndicationNasSystemInfoOutput.

 

value_cdma_service_status_service_status

a placeholder for the output QmiNasServiceStatus, or NULL if not required.

 

value_cdma_service_status_preferred_data_path

a placeholder for the output gboolean, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.0

-
-
-
-

Types and Values

-
-

QmiIndicationNasSystemInfoOutput

-
typedef struct _QmiIndicationNasSystemInfoOutput QmiIndicationNasSystemInfoOutput;
-

The QmiIndicationNasSystemInfoOutput structure contains private data and should only be accessed -using the provided API.

-

Since: 1.0

-
-
-
- - - \ No newline at end of file diff -Nru libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-NAS-System-Info-indication.html libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-NAS-System-Info-indication.html --- libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-NAS-System-Info-indication.html 1970-01-01 01:00:00.000000000 +0100 +++ libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-NAS-System-Info-indication.html 2019-01-08 15:19:02.000000000 +0100 @@ -0,0 +1,2338 @@ + + + + +NAS System Info indication: libqmi-glib Reference Manual + + + + + + + + + + + + + + + + +
+
+
+ + +
+

NAS System Info indication

+

NAS System Info indication

+
+
+

Functions

+
++++ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+QmiIndicationNasSystemInfoOutput * + +qmi_indication_nas_system_info_output_ref () +
+void + +qmi_indication_nas_system_info_output_unref () +
+gboolean + +qmi_indication_nas_system_info_output_get_sim_reject_info () +
+gboolean + +qmi_indication_nas_system_info_output_get_lte_embms_coverage_info_support () +
+gboolean + +qmi_indication_nas_system_info_output_get_td_scma_system_info () +
+gboolean + +qmi_indication_nas_system_info_output_get_td_scdma_service_status () +
+gboolean + +qmi_indication_nas_system_info_output_get_plmn_not_changed_indication () +
+gboolean + +qmi_indication_nas_system_info_output_get_wcdma_cipher_domain () +
+gboolean + +qmi_indication_nas_system_info_output_get_gsm_cipher_domain () +
+gboolean + +qmi_indication_nas_system_info_output_get_lte_voice_support () +
+gboolean + +qmi_indication_nas_system_info_output_get_wcdma_call_barring_status () +
+gboolean + +qmi_indication_nas_system_info_output_get_gsm_call_barring_status () +
+gboolean + +qmi_indication_nas_system_info_output_get_additional_lte_system_info () +
+gboolean + +qmi_indication_nas_system_info_output_get_additional_wcdma_system_info () +
+gboolean + +qmi_indication_nas_system_info_output_get_additional_gsm_system_info () +
+gboolean + +qmi_indication_nas_system_info_output_get_additional_hdr_system_info () +
+gboolean + +qmi_indication_nas_system_info_output_get_additional_cdma_system_info () +
+gboolean + +qmi_indication_nas_system_info_output_get_lte_system_info () +
+gboolean + +qmi_indication_nas_system_info_output_get_wcdma_system_info () +
+gboolean + +qmi_indication_nas_system_info_output_get_gsm_system_info () +
+gboolean + +qmi_indication_nas_system_info_output_get_hdr_system_info () +
+gboolean + +qmi_indication_nas_system_info_output_get_cdma_system_info () +
+gboolean + +qmi_indication_nas_system_info_output_get_lte_service_status () +
+gboolean + +qmi_indication_nas_system_info_output_get_wcdma_service_status () +
+gboolean + +qmi_indication_nas_system_info_output_get_gsm_service_status () +
+gboolean + +qmi_indication_nas_system_info_output_get_hdr_service_status () +
+gboolean + +qmi_indication_nas_system_info_output_get_cdma_service_status () +
+
+
+

Types and Values

+ +
+
+

Object Hierarchy

+
    GBoxed
+    ╰── QmiIndicationNasSystemInfoOutput
+
+
+
+

Description

+
+
+

Functions

+
+

qmi_indication_nas_system_info_output_ref ()

+
QmiIndicationNasSystemInfoOutput *
+qmi_indication_nas_system_info_output_ref
+                               (QmiIndicationNasSystemInfoOutput *self);
+

Atomically increments the reference count of self + by one.

+
+

Parameters

+
+++++ + + + + + +

self

a QmiIndicationNasSystemInfoOutput.

 
+
+
+

Returns

+

the new reference to self +.

+
+

Since: 1.0

+
+
+
+

qmi_indication_nas_system_info_output_unref ()

+
void
+qmi_indication_nas_system_info_output_unref
+                               (QmiIndicationNasSystemInfoOutput *self);
+

Atomically decrements the reference count of self + by one. +If the reference count drops to 0, self + is completely disposed.

+
+

Parameters

+
+++++ + + + + + +

self

a QmiIndicationNasSystemInfoOutput.

 
+
+

Since: 1.0

+
+
+
+

qmi_indication_nas_system_info_output_get_sim_reject_info ()

+
gboolean
+qmi_indication_nas_system_info_output_get_sim_reject_info
+                               (QmiIndicationNasSystemInfoOutput *self,
+                                QmiNasSimRejectState *value_sim_reject_info,
+                                GError **error);
+

Get the 'SIM Reject Info' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiIndicationNasSystemInfoOutput.

 

value_sim_reject_info

a placeholder for the output QmiNasSimRejectState, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.0

+
+
+
+

qmi_indication_nas_system_info_output_get_lte_embms_coverage_info_support ()

+
gboolean
+qmi_indication_nas_system_info_output_get_lte_embms_coverage_info_support
+                               (QmiIndicationNasSystemInfoOutput *self,
+                                gboolean *value_lte_embms_coverage_info_support,
+                                GError **error);
+

Get the 'LTE eMBMS Coverage Info Support' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiIndicationNasSystemInfoOutput.

 

value_lte_embms_coverage_info_support

a placeholder for the output gboolean, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.0

+
+
+
+

qmi_indication_nas_system_info_output_get_td_scma_system_info ()

+
gboolean
+qmi_indication_nas_system_info_output_get_td_scma_system_info
+                               (QmiIndicationNasSystemInfoOutput *self,
+                                gboolean *value_td_scma_system_info_domain_valid,
+                                QmiNasNetworkServiceDomain *value_td_scma_system_info_domain,
+                                gboolean *value_td_scma_system_info_service_capability_valid,
+                                QmiNasNetworkServiceDomain *value_td_scma_system_info_service_capability,
+                                gboolean *value_td_scma_system_info_roaming_status_valid,
+                                QmiNasRoamingStatus *value_td_scma_system_info_roaming_status,
+                                gboolean *value_td_scma_system_info_forbidden_valid,
+                                gboolean *value_td_scma_system_info_forbidden,
+                                gboolean *value_td_scma_system_info_lac_valid,
+                                guint16 *value_td_scma_system_info_lac,
+                                gboolean *value_td_scma_system_info_cid_valid,
+                                guint32 *value_td_scma_system_info_cid,
+                                gboolean *value_td_scma_system_info_registration_reject_info_valid,
+                                QmiNasNetworkServiceDomain *value_td_scma_system_info_registration_reject_domain,
+                                guint8 *value_td_scma_system_info_registration_reject_cause,
+                                gboolean *value_td_scma_system_info_network_id_valid,
+                                const gchar **value_td_scma_system_info_mcc,
+                                const gchar **value_td_scma_system_info_mnc,
+                                gboolean *value_td_scma_system_info_hs_call_status_valid,
+                                QmiNasWcdmaHsService *value_td_scma_system_info_hs_call_status,
+                                gboolean *value_td_scma_system_info_hs_service_valid,
+                                QmiNasWcdmaHsService *value_td_scma_system_info_hs_service,
+                                gboolean *value_td_scma_system_info_cell_parameter_id_valid,
+                                guint16 *value_td_scma_system_info_cell_parameter_id,
+                                gboolean *value_td_scma_system_info_cell_broadcast_support_valid,
+                                QmiNasCellBroadcastCapability *value_td_scma_system_info_cell_broadcast_support,
+                                gboolean *value_td_scma_system_info_cs_call_barring_status_valid,
+                                QmiNasCallBarringStatus *value_td_scma_system_info_cs_call_barring_status,
+                                gboolean *value_td_scma_system_info_ps_call_barring_status_valid,
+                                QmiNasCallBarringStatus *value_td_scma_system_info_ps_call_barring_status,
+                                gboolean *value_td_scma_system_info_cipher_domain_valid,
+                                QmiNasNetworkServiceDomain *value_td_scma_system_info_cipher_domain,
+                                GError **error);
+

Get the 'TD SCMA System Info' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

self

a QmiIndicationNasSystemInfoOutput.

 

value_td_scma_system_info_domain_valid

a placeholder for the output gboolean, or NULL if not required.

 

value_td_scma_system_info_domain

a placeholder for the output QmiNasNetworkServiceDomain, or NULL if not required.

 

value_td_scma_system_info_service_capability_valid

a placeholder for the output gboolean, or NULL if not required.

 

value_td_scma_system_info_service_capability

a placeholder for the output QmiNasNetworkServiceDomain, or NULL if not required.

 

value_td_scma_system_info_roaming_status_valid

a placeholder for the output gboolean, or NULL if not required.

 

value_td_scma_system_info_roaming_status

a placeholder for the output QmiNasRoamingStatus, or NULL if not required.

 

value_td_scma_system_info_forbidden_valid

a placeholder for the output gboolean, or NULL if not required.

 

value_td_scma_system_info_forbidden

a placeholder for the output gboolean, or NULL if not required.

 

value_td_scma_system_info_lac_valid

a placeholder for the output gboolean, or NULL if not required.

 

value_td_scma_system_info_lac

a placeholder for the output guint16, or NULL if not required.

 

value_td_scma_system_info_cid_valid

a placeholder for the output gboolean, or NULL if not required.

 

value_td_scma_system_info_cid

a placeholder for the output guint32, or NULL if not required.

 

value_td_scma_system_info_registration_reject_info_valid

a placeholder for the output gboolean, or NULL if not required.

 

value_td_scma_system_info_registration_reject_domain

a placeholder for the output QmiNasNetworkServiceDomain, or NULL if not required.

 

value_td_scma_system_info_registration_reject_cause

a placeholder for the output guint8, or NULL if not required.

 

value_td_scma_system_info_network_id_valid

a placeholder for the output gboolean, or NULL if not required.

 

value_td_scma_system_info_mcc

a placeholder for the output constant string, or NULL if not required.

 

value_td_scma_system_info_mnc

a placeholder for the output constant string, or NULL if not required.

 

value_td_scma_system_info_hs_call_status_valid

a placeholder for the output gboolean, or NULL if not required.

 

value_td_scma_system_info_hs_call_status

a placeholder for the output QmiNasWcdmaHsService, or NULL if not required.

 

value_td_scma_system_info_hs_service_valid

a placeholder for the output gboolean, or NULL if not required.

 

value_td_scma_system_info_hs_service

a placeholder for the output QmiNasWcdmaHsService, or NULL if not required.

 

value_td_scma_system_info_cell_parameter_id_valid

a placeholder for the output gboolean, or NULL if not required.

 

value_td_scma_system_info_cell_parameter_id

a placeholder for the output guint16, or NULL if not required.

 

value_td_scma_system_info_cell_broadcast_support_valid

a placeholder for the output gboolean, or NULL if not required.

 

value_td_scma_system_info_cell_broadcast_support

a placeholder for the output QmiNasCellBroadcastCapability, or NULL if not required.

 

value_td_scma_system_info_cs_call_barring_status_valid

a placeholder for the output gboolean, or NULL if not required.

 

value_td_scma_system_info_cs_call_barring_status

a placeholder for the output QmiNasCallBarringStatus, or NULL if not required.

 

value_td_scma_system_info_ps_call_barring_status_valid

a placeholder for the output gboolean, or NULL if not required.

 

value_td_scma_system_info_ps_call_barring_status

a placeholder for the output QmiNasCallBarringStatus, or NULL if not required.

 

value_td_scma_system_info_cipher_domain_valid

a placeholder for the output gboolean, or NULL if not required.

 

value_td_scma_system_info_cipher_domain

a placeholder for the output QmiNasNetworkServiceDomain, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.0

+
+
+
+

qmi_indication_nas_system_info_output_get_td_scdma_service_status ()

+
gboolean
+qmi_indication_nas_system_info_output_get_td_scdma_service_status
+                               (QmiIndicationNasSystemInfoOutput *self,
+                                QmiNasServiceStatus *value_td_scdma_service_status_service_status,
+                                QmiNasServiceStatus *value_td_scdma_service_status_true_service_status,
+                                gboolean *value_td_scdma_service_status_preferred_data_path,
+                                GError **error);
+

Get the 'TD SCDMA Service Status' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + + + + + + + + + + + +

self

a QmiIndicationNasSystemInfoOutput.

 

value_td_scdma_service_status_service_status

a placeholder for the output QmiNasServiceStatus, or NULL if not required.

 

value_td_scdma_service_status_true_service_status

a placeholder for the output QmiNasServiceStatus, or NULL if not required.

 

value_td_scdma_service_status_preferred_data_path

a placeholder for the output gboolean, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.0

+
+
+
+

qmi_indication_nas_system_info_output_get_plmn_not_changed_indication ()

+
gboolean
+qmi_indication_nas_system_info_output_get_plmn_not_changed_indication
+                               (QmiIndicationNasSystemInfoOutput *self,
+                                gboolean *value_plmn_not_changed_indication,
+                                GError **error);
+

Get the 'PLMN Not Changed Indication' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiIndicationNasSystemInfoOutput.

 

value_plmn_not_changed_indication

a placeholder for the output gboolean, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.0

+
+
+
+

qmi_indication_nas_system_info_output_get_wcdma_cipher_domain ()

+
gboolean
+qmi_indication_nas_system_info_output_get_wcdma_cipher_domain
+                               (QmiIndicationNasSystemInfoOutput *self,
+                                QmiNasNetworkServiceDomain *value_wcdma_cipher_domain,
+                                GError **error);
+

Get the 'WCDMA Cipher Domain' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiIndicationNasSystemInfoOutput.

 

value_wcdma_cipher_domain

a placeholder for the output QmiNasNetworkServiceDomain, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.0

+
+
+
+

qmi_indication_nas_system_info_output_get_gsm_cipher_domain ()

+
gboolean
+qmi_indication_nas_system_info_output_get_gsm_cipher_domain
+                               (QmiIndicationNasSystemInfoOutput *self,
+                                QmiNasNetworkServiceDomain *value_gsm_cipher_domain,
+                                GError **error);
+

Get the 'GSM Cipher Domain' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiIndicationNasSystemInfoOutput.

 

value_gsm_cipher_domain

a placeholder for the output QmiNasNetworkServiceDomain, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.0

+
+
+
+

qmi_indication_nas_system_info_output_get_lte_voice_support ()

+
gboolean
+qmi_indication_nas_system_info_output_get_lte_voice_support
+                               (QmiIndicationNasSystemInfoOutput *self,
+                                gboolean *value_lte_voice_support,
+                                GError **error);
+

Get the 'LTE Voice Support' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiIndicationNasSystemInfoOutput.

 

value_lte_voice_support

a placeholder for the output gboolean, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.0

+
+
+
+

qmi_indication_nas_system_info_output_get_wcdma_call_barring_status ()

+
gboolean
+qmi_indication_nas_system_info_output_get_wcdma_call_barring_status
+                               (QmiIndicationNasSystemInfoOutput *self,
+                                QmiNasCallBarringStatus *value_wcdma_call_barring_status_cs_status,
+                                QmiNasCallBarringStatus *value_wcdma_call_barring_status_ps_status,
+                                GError **error);
+

Get the 'WCDMA Call Barring Status' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + + + + + + +

self

a QmiIndicationNasSystemInfoOutput.

 

value_wcdma_call_barring_status_cs_status

a placeholder for the output QmiNasCallBarringStatus, or NULL if not required.

 

value_wcdma_call_barring_status_ps_status

a placeholder for the output QmiNasCallBarringStatus, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.0

+
+
+
+

qmi_indication_nas_system_info_output_get_gsm_call_barring_status ()

+
gboolean
+qmi_indication_nas_system_info_output_get_gsm_call_barring_status
+                               (QmiIndicationNasSystemInfoOutput *self,
+                                QmiNasCallBarringStatus *value_gsm_call_barring_status_cs_status,
+                                QmiNasCallBarringStatus *value_gsm_call_barring_status_ps_status,
+                                GError **error);
+

Get the 'GSM Call Barring Status' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + + + + + + +

self

a QmiIndicationNasSystemInfoOutput.

 

value_gsm_call_barring_status_cs_status

a placeholder for the output QmiNasCallBarringStatus, or NULL if not required.

 

value_gsm_call_barring_status_ps_status

a placeholder for the output QmiNasCallBarringStatus, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.0

+
+
+
+

qmi_indication_nas_system_info_output_get_additional_lte_system_info ()

+
gboolean
+qmi_indication_nas_system_info_output_get_additional_lte_system_info
+                               (QmiIndicationNasSystemInfoOutput *self,
+                                guint16 *value_additional_lte_system_info_geo_system_index,
+                                GError **error);
+

Get the 'Additional LTE System Info' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiIndicationNasSystemInfoOutput.

 

value_additional_lte_system_info_geo_system_index

a placeholder for the output guint16, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.0

+
+
+
+

qmi_indication_nas_system_info_output_get_additional_wcdma_system_info ()

+
gboolean
+qmi_indication_nas_system_info_output_get_additional_wcdma_system_info
+                               (QmiIndicationNasSystemInfoOutput *self,
+                                guint16 *value_additional_wcdma_system_info_geo_system_index,
+                                QmiNasCellBroadcastCapability *value_additional_wcdma_system_info_cell_broadcast_support,
+                                GError **error);
+

Get the 'Additional WCDMA System Info' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + + + + + + +

self

a QmiIndicationNasSystemInfoOutput.

 

value_additional_wcdma_system_info_geo_system_index

a placeholder for the output guint16, or NULL if not required.

 

value_additional_wcdma_system_info_cell_broadcast_support

a placeholder for the output QmiNasCellBroadcastCapability, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.0

+
+
+
+

qmi_indication_nas_system_info_output_get_additional_gsm_system_info ()

+
gboolean
+qmi_indication_nas_system_info_output_get_additional_gsm_system_info
+                               (QmiIndicationNasSystemInfoOutput *self,
+                                guint16 *value_additional_gsm_system_info_geo_system_index,
+                                QmiNasCellBroadcastCapability *value_additional_gsm_system_info_cell_broadcast_support,
+                                GError **error);
+

Get the 'Additional GSM System Info' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + + + + + + +

self

a QmiIndicationNasSystemInfoOutput.

 

value_additional_gsm_system_info_geo_system_index

a placeholder for the output guint16, or NULL if not required.

 

value_additional_gsm_system_info_cell_broadcast_support

a placeholder for the output QmiNasCellBroadcastCapability, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.0

+
+
+
+

qmi_indication_nas_system_info_output_get_additional_hdr_system_info ()

+
gboolean
+qmi_indication_nas_system_info_output_get_additional_hdr_system_info
+                               (QmiIndicationNasSystemInfoOutput *self,
+                                guint16 *value_additional_hdr_system_info_geo_system_index,
+                                GError **error);
+

Get the 'Additional HDR System Info' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiIndicationNasSystemInfoOutput.

 

value_additional_hdr_system_info_geo_system_index

a placeholder for the output guint16, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.0

+
+
+
+

qmi_indication_nas_system_info_output_get_additional_cdma_system_info ()

+
gboolean
+qmi_indication_nas_system_info_output_get_additional_cdma_system_info
+                               (QmiIndicationNasSystemInfoOutput *self,
+                                guint16 *value_additional_cdma_system_info_geo_system_index,
+                                guint16 *value_additional_cdma_system_info_registration_period,
+                                GError **error);
+

Get the 'Additional CDMA System Info' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + + + + + + +

self

a QmiIndicationNasSystemInfoOutput.

 

value_additional_cdma_system_info_geo_system_index

a placeholder for the output guint16, or NULL if not required.

 

value_additional_cdma_system_info_registration_period

a placeholder for the output guint16, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.0

+
+
+
+

qmi_indication_nas_system_info_output_get_lte_system_info ()

+
gboolean
+qmi_indication_nas_system_info_output_get_lte_system_info
+                               (QmiIndicationNasSystemInfoOutput *self,
+                                gboolean *value_lte_system_info_domain_valid,
+                                QmiNasNetworkServiceDomain *value_lte_system_info_domain,
+                                gboolean *value_lte_system_info_service_capability_valid,
+                                QmiNasNetworkServiceDomain *value_lte_system_info_service_capability,
+                                gboolean *value_lte_system_info_roaming_status_valid,
+                                QmiNasRoamingStatus *value_lte_system_info_roaming_status,
+                                gboolean *value_lte_system_info_forbidden_valid,
+                                gboolean *value_lte_system_info_forbidden,
+                                gboolean *value_lte_system_info_lac_valid,
+                                guint16 *value_lte_system_info_lac,
+                                gboolean *value_lte_system_info_cid_valid,
+                                guint32 *value_lte_system_info_cid,
+                                gboolean *value_lte_system_info_registration_reject_info_valid,
+                                QmiNasNetworkServiceDomain *value_lte_system_info_registration_reject_domain,
+                                guint8 *value_lte_system_info_registration_reject_cause,
+                                gboolean *value_lte_system_info_network_id_valid,
+                                const gchar **value_lte_system_info_mcc,
+                                const gchar **value_lte_system_info_mnc,
+                                gboolean *value_lte_system_info_tac_valid,
+                                guint16 *value_lte_system_info_tac,
+                                GError **error);
+

Get the 'LTE System Info' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

self

a QmiIndicationNasSystemInfoOutput.

 

value_lte_system_info_domain_valid

a placeholder for the output gboolean, or NULL if not required.

 

value_lte_system_info_domain

a placeholder for the output QmiNasNetworkServiceDomain, or NULL if not required.

 

value_lte_system_info_service_capability_valid

a placeholder for the output gboolean, or NULL if not required.

 

value_lte_system_info_service_capability

a placeholder for the output QmiNasNetworkServiceDomain, or NULL if not required.

 

value_lte_system_info_roaming_status_valid

a placeholder for the output gboolean, or NULL if not required.

 

value_lte_system_info_roaming_status

a placeholder for the output QmiNasRoamingStatus, or NULL if not required.

 

value_lte_system_info_forbidden_valid

a placeholder for the output gboolean, or NULL if not required.

 

value_lte_system_info_forbidden

a placeholder for the output gboolean, or NULL if not required.

 

value_lte_system_info_lac_valid

a placeholder for the output gboolean, or NULL if not required.

 

value_lte_system_info_lac

a placeholder for the output guint16, or NULL if not required.

 

value_lte_system_info_cid_valid

a placeholder for the output gboolean, or NULL if not required.

 

value_lte_system_info_cid

a placeholder for the output guint32, or NULL if not required.

 

value_lte_system_info_registration_reject_info_valid

a placeholder for the output gboolean, or NULL if not required.

 

value_lte_system_info_registration_reject_domain

a placeholder for the output QmiNasNetworkServiceDomain, or NULL if not required.

 

value_lte_system_info_registration_reject_cause

a placeholder for the output guint8, or NULL if not required.

 

value_lte_system_info_network_id_valid

a placeholder for the output gboolean, or NULL if not required.

 

value_lte_system_info_mcc

a placeholder for the output constant string, or NULL if not required.

 

value_lte_system_info_mnc

a placeholder for the output constant string, or NULL if not required.

 

value_lte_system_info_tac_valid

a placeholder for the output gboolean, or NULL if not required.

 

value_lte_system_info_tac

a placeholder for the output guint16, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.0

+
+
+
+

qmi_indication_nas_system_info_output_get_wcdma_system_info ()

+
gboolean
+qmi_indication_nas_system_info_output_get_wcdma_system_info
+                               (QmiIndicationNasSystemInfoOutput *self,
+                                gboolean *value_wcdma_system_info_domain_valid,
+                                QmiNasNetworkServiceDomain *value_wcdma_system_info_domain,
+                                gboolean *value_wcdma_system_info_service_capability_valid,
+                                QmiNasNetworkServiceDomain *value_wcdma_system_info_service_capability,
+                                gboolean *value_wcdma_system_info_roaming_status_valid,
+                                QmiNasRoamingStatus *value_wcdma_system_info_roaming_status,
+                                gboolean *value_wcdma_system_info_forbidden_valid,
+                                gboolean *value_wcdma_system_info_forbidden,
+                                gboolean *value_wcdma_system_info_lac_valid,
+                                guint16 *value_wcdma_system_info_lac,
+                                gboolean *value_wcdma_system_info_cid_valid,
+                                guint32 *value_wcdma_system_info_cid,
+                                gboolean *value_wcdma_system_info_registration_reject_info_valid,
+                                QmiNasNetworkServiceDomain *value_wcdma_system_info_registration_reject_domain,
+                                guint8 *value_wcdma_system_info_registration_reject_cause,
+                                gboolean *value_wcdma_system_info_network_id_valid,
+                                const gchar **value_wcdma_system_info_mcc,
+                                const gchar **value_wcdma_system_info_mnc,
+                                gboolean *value_wcdma_system_info_hs_call_status_valid,
+                                QmiNasWcdmaHsService *value_wcdma_system_info_hs_call_status,
+                                gboolean *value_wcdma_system_info_hs_service_valid,
+                                QmiNasWcdmaHsService *value_wcdma_system_info_hs_service,
+                                gboolean *value_wcdma_system_info_primary_scrambling_code_valid,
+                                guint16 *value_wcdma_system_info_primary_scrambling_code,
+                                GError **error);
+

Get the 'WCDMA System Info' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

self

a QmiIndicationNasSystemInfoOutput.

 

value_wcdma_system_info_domain_valid

a placeholder for the output gboolean, or NULL if not required.

 

value_wcdma_system_info_domain

a placeholder for the output QmiNasNetworkServiceDomain, or NULL if not required.

 

value_wcdma_system_info_service_capability_valid

a placeholder for the output gboolean, or NULL if not required.

 

value_wcdma_system_info_service_capability

a placeholder for the output QmiNasNetworkServiceDomain, or NULL if not required.

 

value_wcdma_system_info_roaming_status_valid

a placeholder for the output gboolean, or NULL if not required.

 

value_wcdma_system_info_roaming_status

a placeholder for the output QmiNasRoamingStatus, or NULL if not required.

 

value_wcdma_system_info_forbidden_valid

a placeholder for the output gboolean, or NULL if not required.

 

value_wcdma_system_info_forbidden

a placeholder for the output gboolean, or NULL if not required.

 

value_wcdma_system_info_lac_valid

a placeholder for the output gboolean, or NULL if not required.

 

value_wcdma_system_info_lac

a placeholder for the output guint16, or NULL if not required.

 

value_wcdma_system_info_cid_valid

a placeholder for the output gboolean, or NULL if not required.

 

value_wcdma_system_info_cid

a placeholder for the output guint32, or NULL if not required.

 

value_wcdma_system_info_registration_reject_info_valid

a placeholder for the output gboolean, or NULL if not required.

 

value_wcdma_system_info_registration_reject_domain

a placeholder for the output QmiNasNetworkServiceDomain, or NULL if not required.

 

value_wcdma_system_info_registration_reject_cause

a placeholder for the output guint8, or NULL if not required.

 

value_wcdma_system_info_network_id_valid

a placeholder for the output gboolean, or NULL if not required.

 

value_wcdma_system_info_mcc

a placeholder for the output constant string, or NULL if not required.

 

value_wcdma_system_info_mnc

a placeholder for the output constant string, or NULL if not required.

 

value_wcdma_system_info_hs_call_status_valid

a placeholder for the output gboolean, or NULL if not required.

 

value_wcdma_system_info_hs_call_status

a placeholder for the output QmiNasWcdmaHsService, or NULL if not required.

 

value_wcdma_system_info_hs_service_valid

a placeholder for the output gboolean, or NULL if not required.

 

value_wcdma_system_info_hs_service

a placeholder for the output QmiNasWcdmaHsService, or NULL if not required.

 

value_wcdma_system_info_primary_scrambling_code_valid

a placeholder for the output gboolean, or NULL if not required.

 

value_wcdma_system_info_primary_scrambling_code

a placeholder for the output guint16, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.0

+
+
+
+

qmi_indication_nas_system_info_output_get_gsm_system_info ()

+
gboolean
+qmi_indication_nas_system_info_output_get_gsm_system_info
+                               (QmiIndicationNasSystemInfoOutput *self,
+                                gboolean *value_gsm_system_info_domain_valid,
+                                QmiNasNetworkServiceDomain *value_gsm_system_info_domain,
+                                gboolean *value_gsm_system_info_service_capability_valid,
+                                QmiNasNetworkServiceDomain *value_gsm_system_info_service_capability,
+                                gboolean *value_gsm_system_info_roaming_status_valid,
+                                QmiNasRoamingStatus *value_gsm_system_info_roaming_status,
+                                gboolean *value_gsm_system_info_forbidden_valid,
+                                gboolean *value_gsm_system_info_forbidden,
+                                gboolean *value_gsm_system_info_lac_valid,
+                                guint16 *value_gsm_system_info_lac,
+                                gboolean *value_gsm_system_info_cid_valid,
+                                guint32 *value_gsm_system_info_cid,
+                                gboolean *value_gsm_system_info_registration_reject_info_valid,
+                                QmiNasNetworkServiceDomain *value_gsm_system_info_registration_reject_domain,
+                                guint8 *value_gsm_system_info_registration_reject_cause,
+                                gboolean *value_gsm_system_info_network_id_valid,
+                                const gchar **value_gsm_system_info_mcc,
+                                const gchar **value_gsm_system_info_mnc,
+                                gboolean *value_gsm_system_info_egprs_support_valid,
+                                gboolean *value_gsm_system_info_egprs_support,
+                                gboolean *value_gsm_system_info_dtm_support_valid,
+                                gboolean *value_gsm_system_info_dtm_support,
+                                GError **error);
+

Get the 'GSM System Info' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

self

a QmiIndicationNasSystemInfoOutput.

 

value_gsm_system_info_domain_valid

a placeholder for the output gboolean, or NULL if not required.

 

value_gsm_system_info_domain

a placeholder for the output QmiNasNetworkServiceDomain, or NULL if not required.

 

value_gsm_system_info_service_capability_valid

a placeholder for the output gboolean, or NULL if not required.

 

value_gsm_system_info_service_capability

a placeholder for the output QmiNasNetworkServiceDomain, or NULL if not required.

 

value_gsm_system_info_roaming_status_valid

a placeholder for the output gboolean, or NULL if not required.

 

value_gsm_system_info_roaming_status

a placeholder for the output QmiNasRoamingStatus, or NULL if not required.

 

value_gsm_system_info_forbidden_valid

a placeholder for the output gboolean, or NULL if not required.

 

value_gsm_system_info_forbidden

a placeholder for the output gboolean, or NULL if not required.

 

value_gsm_system_info_lac_valid

a placeholder for the output gboolean, or NULL if not required.

 

value_gsm_system_info_lac

a placeholder for the output guint16, or NULL if not required.

 

value_gsm_system_info_cid_valid

a placeholder for the output gboolean, or NULL if not required.

 

value_gsm_system_info_cid

a placeholder for the output guint32, or NULL if not required.

 

value_gsm_system_info_registration_reject_info_valid

a placeholder for the output gboolean, or NULL if not required.

 

value_gsm_system_info_registration_reject_domain

a placeholder for the output QmiNasNetworkServiceDomain, or NULL if not required.

 

value_gsm_system_info_registration_reject_cause

a placeholder for the output guint8, or NULL if not required.

 

value_gsm_system_info_network_id_valid

a placeholder for the output gboolean, or NULL if not required.

 

value_gsm_system_info_mcc

a placeholder for the output constant string, or NULL if not required.

 

value_gsm_system_info_mnc

a placeholder for the output constant string, or NULL if not required.

 

value_gsm_system_info_egprs_support_valid

a placeholder for the output gboolean, or NULL if not required.

 

value_gsm_system_info_egprs_support

a placeholder for the output gboolean, or NULL if not required.

 

value_gsm_system_info_dtm_support_valid

a placeholder for the output gboolean, or NULL if not required.

 

value_gsm_system_info_dtm_support

a placeholder for the output gboolean, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.0

+
+
+
+

qmi_indication_nas_system_info_output_get_hdr_system_info ()

+
gboolean
+qmi_indication_nas_system_info_output_get_hdr_system_info
+                               (QmiIndicationNasSystemInfoOutput *self,
+                                gboolean *value_hdr_system_info_domain_valid,
+                                QmiNasNetworkServiceDomain *value_hdr_system_info_domain,
+                                gboolean *value_hdr_system_info_service_capability_valid,
+                                QmiNasNetworkServiceDomain *value_hdr_system_info_service_capability,
+                                gboolean *value_hdr_system_info_roaming_status_valid,
+                                QmiNasRoamingStatus *value_hdr_system_info_roaming_status,
+                                gboolean *value_hdr_system_info_forbidden_valid,
+                                gboolean *value_hdr_system_info_forbidden,
+                                gboolean *value_hdr_system_info_prl_match_valid,
+                                gboolean *value_hdr_system_info_prl_match,
+                                gboolean *value_hdr_system_info_personality_valid,
+                                QmiNasHdrPersonality *value_hdr_system_info_personality,
+                                gboolean *value_hdr_system_info_protocol_revision_valid,
+                                QmiNasHdrProtocolRevision *value_hdr_system_info_protocol_revision,
+                                gboolean *value_hdr_system_info_is_856_system_id_valid,
+                                const gchar **value_hdr_system_info_is_856_system_id,
+                                GError **error);
+

Get the 'HDR System Info' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

self

a QmiIndicationNasSystemInfoOutput.

 

value_hdr_system_info_domain_valid

a placeholder for the output gboolean, or NULL if not required.

 

value_hdr_system_info_domain

a placeholder for the output QmiNasNetworkServiceDomain, or NULL if not required.

 

value_hdr_system_info_service_capability_valid

a placeholder for the output gboolean, or NULL if not required.

 

value_hdr_system_info_service_capability

a placeholder for the output QmiNasNetworkServiceDomain, or NULL if not required.

 

value_hdr_system_info_roaming_status_valid

a placeholder for the output gboolean, or NULL if not required.

 

value_hdr_system_info_roaming_status

a placeholder for the output QmiNasRoamingStatus, or NULL if not required.

 

value_hdr_system_info_forbidden_valid

a placeholder for the output gboolean, or NULL if not required.

 

value_hdr_system_info_forbidden

a placeholder for the output gboolean, or NULL if not required.

 

value_hdr_system_info_prl_match_valid

a placeholder for the output gboolean, or NULL if not required.

 

value_hdr_system_info_prl_match

a placeholder for the output gboolean, or NULL if not required.

 

value_hdr_system_info_personality_valid

a placeholder for the output gboolean, or NULL if not required.

 

value_hdr_system_info_personality

a placeholder for the output QmiNasHdrPersonality, or NULL if not required.

 

value_hdr_system_info_protocol_revision_valid

a placeholder for the output gboolean, or NULL if not required.

 

value_hdr_system_info_protocol_revision

a placeholder for the output QmiNasHdrProtocolRevision, or NULL if not required.

 

value_hdr_system_info_is_856_system_id_valid

a placeholder for the output gboolean, or NULL if not required.

 

value_hdr_system_info_is_856_system_id

a placeholder for the output constant string, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.0

+
+
+
+

qmi_indication_nas_system_info_output_get_cdma_system_info ()

+
gboolean
+qmi_indication_nas_system_info_output_get_cdma_system_info
+                               (QmiIndicationNasSystemInfoOutput *self,
+                                gboolean *value_cdma_system_info_domain_valid,
+                                QmiNasNetworkServiceDomain *value_cdma_system_info_domain,
+                                gboolean *value_cdma_system_info_service_capability_valid,
+                                QmiNasNetworkServiceDomain *value_cdma_system_info_service_capability,
+                                gboolean *value_cdma_system_info_roaming_status_valid,
+                                QmiNasRoamingStatus *value_cdma_system_info_roaming_status,
+                                gboolean *value_cdma_system_info_forbidden_valid,
+                                gboolean *value_cdma_system_info_forbidden,
+                                gboolean *value_cdma_system_info_prl_match_valid,
+                                gboolean *value_cdma_system_info_prl_match,
+                                gboolean *value_cdma_system_info_p_rev_valid,
+                                guint8 *value_cdma_system_info_p_rev,
+                                gboolean *value_cdma_system_info_base_station_p_rev_valid,
+                                guint8 *value_cdma_system_info_base_station_p_rev,
+                                gboolean *value_cdma_system_info_concurrent_service_support_valid,
+                                gboolean *value_cdma_system_info_concurrent_service_support,
+                                gboolean *value_cdma_system_info_cdma_system_id_valid,
+                                guint16 *value_cdma_system_info_sid,
+                                guint16 *value_cdma_system_info_nid,
+                                gboolean *value_cdma_system_info_base_station_info_valid,
+                                guint16 *value_cdma_system_info_base_station_id,
+                                gint32 *value_cdma_system_info_base_station_latitude,
+                                gint32 *value_cdma_system_info_base_station_longitude,
+                                gboolean *value_cdma_system_info_packet_zone_valid,
+                                guint16 *value_cdma_system_info_packet_zone,
+                                gboolean *value_cdma_system_info_network_id_valid,
+                                const gchar **value_cdma_system_info_mcc,
+                                const gchar **value_cdma_system_info_mnc,
+                                GError **error);
+

Get the 'CDMA System Info' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

self

a QmiIndicationNasSystemInfoOutput.

 

value_cdma_system_info_domain_valid

a placeholder for the output gboolean, or NULL if not required.

 

value_cdma_system_info_domain

a placeholder for the output QmiNasNetworkServiceDomain, or NULL if not required.

 

value_cdma_system_info_service_capability_valid

a placeholder for the output gboolean, or NULL if not required.

 

value_cdma_system_info_service_capability

a placeholder for the output QmiNasNetworkServiceDomain, or NULL if not required.

 

value_cdma_system_info_roaming_status_valid

a placeholder for the output gboolean, or NULL if not required.

 

value_cdma_system_info_roaming_status

a placeholder for the output QmiNasRoamingStatus, or NULL if not required.

 

value_cdma_system_info_forbidden_valid

a placeholder for the output gboolean, or NULL if not required.

 

value_cdma_system_info_forbidden

a placeholder for the output gboolean, or NULL if not required.

 

value_cdma_system_info_prl_match_valid

a placeholder for the output gboolean, or NULL if not required.

 

value_cdma_system_info_prl_match

a placeholder for the output gboolean, or NULL if not required.

 

value_cdma_system_info_p_rev_valid

a placeholder for the output gboolean, or NULL if not required.

 

value_cdma_system_info_p_rev

a placeholder for the output guint8, or NULL if not required.

 

value_cdma_system_info_base_station_p_rev_valid

a placeholder for the output gboolean, or NULL if not required.

 

value_cdma_system_info_base_station_p_rev

a placeholder for the output guint8, or NULL if not required.

 

value_cdma_system_info_concurrent_service_support_valid

a placeholder for the output gboolean, or NULL if not required.

 

value_cdma_system_info_concurrent_service_support

a placeholder for the output gboolean, or NULL if not required.

 

value_cdma_system_info_cdma_system_id_valid

a placeholder for the output gboolean, or NULL if not required.

 

value_cdma_system_info_sid

a placeholder for the output guint16, or NULL if not required.

 

value_cdma_system_info_nid

a placeholder for the output guint16, or NULL if not required.

 

value_cdma_system_info_base_station_info_valid

a placeholder for the output gboolean, or NULL if not required.

 

value_cdma_system_info_base_station_id

a placeholder for the output guint16, or NULL if not required.

 

value_cdma_system_info_base_station_latitude

a placeholder for the output gint32, or NULL if not required.

 

value_cdma_system_info_base_station_longitude

a placeholder for the output gint32, or NULL if not required.

 

value_cdma_system_info_packet_zone_valid

a placeholder for the output gboolean, or NULL if not required.

 

value_cdma_system_info_packet_zone

a placeholder for the output guint16, or NULL if not required.

 

value_cdma_system_info_network_id_valid

a placeholder for the output gboolean, or NULL if not required.

 

value_cdma_system_info_mcc

a placeholder for the output constant string, or NULL if not required.

 

value_cdma_system_info_mnc

a placeholder for the output constant string, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.0

+
+
+
+

qmi_indication_nas_system_info_output_get_lte_service_status ()

+
gboolean
+qmi_indication_nas_system_info_output_get_lte_service_status
+                               (QmiIndicationNasSystemInfoOutput *self,
+                                QmiNasServiceStatus *value_lte_service_status_service_status,
+                                QmiNasServiceStatus *value_lte_service_status_true_service_status,
+                                gboolean *value_lte_service_status_preferred_data_path,
+                                GError **error);
+

Get the 'LTE Service Status' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + + + + + + + + + + + +

self

a QmiIndicationNasSystemInfoOutput.

 

value_lte_service_status_service_status

a placeholder for the output QmiNasServiceStatus, or NULL if not required.

 

value_lte_service_status_true_service_status

a placeholder for the output QmiNasServiceStatus, or NULL if not required.

 

value_lte_service_status_preferred_data_path

a placeholder for the output gboolean, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.0

+
+
+
+

qmi_indication_nas_system_info_output_get_wcdma_service_status ()

+
gboolean
+qmi_indication_nas_system_info_output_get_wcdma_service_status
+                               (QmiIndicationNasSystemInfoOutput *self,
+                                QmiNasServiceStatus *value_wcdma_service_status_service_status,
+                                QmiNasServiceStatus *value_wcdma_service_status_true_service_status,
+                                gboolean *value_wcdma_service_status_preferred_data_path,
+                                GError **error);
+

Get the 'WCDMA Service Status' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + + + + + + + + + + + +

self

a QmiIndicationNasSystemInfoOutput.

 

value_wcdma_service_status_service_status

a placeholder for the output QmiNasServiceStatus, or NULL if not required.

 

value_wcdma_service_status_true_service_status

a placeholder for the output QmiNasServiceStatus, or NULL if not required.

 

value_wcdma_service_status_preferred_data_path

a placeholder for the output gboolean, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.0

+
+
+
+

qmi_indication_nas_system_info_output_get_gsm_service_status ()

+
gboolean
+qmi_indication_nas_system_info_output_get_gsm_service_status
+                               (QmiIndicationNasSystemInfoOutput *self,
+                                QmiNasServiceStatus *value_gsm_service_status_service_status,
+                                QmiNasServiceStatus *value_gsm_service_status_true_service_status,
+                                gboolean *value_gsm_service_status_preferred_data_path,
+                                GError **error);
+

Get the 'GSM Service Status' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + + + + + + + + + + + +

self

a QmiIndicationNasSystemInfoOutput.

 

value_gsm_service_status_service_status

a placeholder for the output QmiNasServiceStatus, or NULL if not required.

 

value_gsm_service_status_true_service_status

a placeholder for the output QmiNasServiceStatus, or NULL if not required.

 

value_gsm_service_status_preferred_data_path

a placeholder for the output gboolean, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.0

+
+
+
+

qmi_indication_nas_system_info_output_get_hdr_service_status ()

+
gboolean
+qmi_indication_nas_system_info_output_get_hdr_service_status
+                               (QmiIndicationNasSystemInfoOutput *self,
+                                QmiNasServiceStatus *value_hdr_service_status_service_status,
+                                gboolean *value_hdr_service_status_preferred_data_path,
+                                GError **error);
+

Get the 'HDR Service Status' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + + + + + + +

self

a QmiIndicationNasSystemInfoOutput.

 

value_hdr_service_status_service_status

a placeholder for the output QmiNasServiceStatus, or NULL if not required.

 

value_hdr_service_status_preferred_data_path

a placeholder for the output gboolean, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.0

+
+
+
+

qmi_indication_nas_system_info_output_get_cdma_service_status ()

+
gboolean
+qmi_indication_nas_system_info_output_get_cdma_service_status
+                               (QmiIndicationNasSystemInfoOutput *self,
+                                QmiNasServiceStatus *value_cdma_service_status_service_status,
+                                gboolean *value_cdma_service_status_preferred_data_path,
+                                GError **error);
+

Get the 'CDMA Service Status' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + + + + + + +

self

a QmiIndicationNasSystemInfoOutput.

 

value_cdma_service_status_service_status

a placeholder for the output QmiNasServiceStatus, or NULL if not required.

 

value_cdma_service_status_preferred_data_path

a placeholder for the output gboolean, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.0

+
+
+
+

Types and Values

+
+

QmiIndicationNasSystemInfoOutput

+
typedef struct _QmiIndicationNasSystemInfoOutput QmiIndicationNasSystemInfoOutput;
+

The QmiIndicationNasSystemInfoOutput structure contains private data and should only be accessed +using the provided API.

+

Since: 1.0

+
+
+
+ + + \ No newline at end of file diff -Nru libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-OMA-Cancel-Session.html libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-OMA-Cancel-Session.html --- libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-OMA-Cancel-Session.html 2017-03-22 12:28:29.000000000 +0100 +++ libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-OMA-Cancel-Session.html 1970-01-01 01:00:00.000000000 +0100 @@ -1,319 +0,0 @@ - - - - -OMA Cancel Session: libqmi-glib Reference Manual - - - - - - - - - - - - - - - - -
-
-
- - -
-

OMA Cancel Session

-

OMA Cancel Session

-
- -
-

Types and Values

- -
-
-

Object Hierarchy

-
    GBoxed
-    ╰── QmiMessageOmaCancelSessionOutput
-
-
-
-

Description

-
-
-

Functions

-
-

qmi_message_oma_cancel_session_output_ref ()

-
QmiMessageOmaCancelSessionOutput *
-qmi_message_oma_cancel_session_output_ref
-                               (QmiMessageOmaCancelSessionOutput *self);
-

Atomically increments the reference count of self - by one.

-
-

Parameters

-
----- - - - - - -

self

a QmiMessageOmaCancelSessionOutput.

 
-
-
-

Returns

-

the new reference to self -.

-
-

Since: 1.6

-
-
-
-

qmi_message_oma_cancel_session_output_unref ()

-
void
-qmi_message_oma_cancel_session_output_unref
-                               (QmiMessageOmaCancelSessionOutput *self);
-

Atomically decrements the reference count of self - by one. -If the reference count drops to 0, self - is completely disposed.

-
-

Parameters

-
----- - - - - - -

self

a QmiMessageOmaCancelSessionOutput.

 
-
-

Since: 1.6

-
-
-
-

qmi_message_oma_cancel_session_output_get_result ()

-
gboolean
-qmi_message_oma_cancel_session_output_get_result
-                               (QmiMessageOmaCancelSessionOutput *self,
-                                GError **error);
-

Get the result of the QMI operation.

-
-

Parameters

-
----- - - - - - - - - - - - - -

self

a QmiMessageOmaCancelSessionOutput.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the QMI operation succeeded, FALSE if error -is set.

-
-

Since: 1.6

-
-
-
-

qmi_client_oma_cancel_session ()

-
void
-qmi_client_oma_cancel_session (QmiClientOma *self,
-                               gpointer unused,
-                               guint timeout,
-                               GCancellable *cancellable,
-                               GAsyncReadyCallback callback,
-                               gpointer user_data);
-

Asynchronously sends a Cancel Session request to the device.

-

When the operation is finished, callback - will be invoked in the thread-default main loop of the thread you are calling this method from.

-

You can then call qmi_client_oma_cancel_session_finish() to get the result of the operation.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

self

a QmiClientOma.

 

unused

NULL. This message doesn't have any input bundle.

 

timeout

maximum time to wait for the method to complete, in seconds.

 

cancellable

a GCancellable or NULL.

 

callback

a GAsyncReadyCallback to call when the request is satisfied.

 

user_data

user data to pass to callback -.

 
-
-

Since: 1.6

-
-
-
-

qmi_client_oma_cancel_session_finish ()

-
QmiMessageOmaCancelSessionOutput *
-qmi_client_oma_cancel_session_finish (QmiClientOma *self,
-                                      GAsyncResult *res,
-                                      GError **error);
-

Finishes an async operation started with qmi_client_oma_cancel_session().

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiClientOma.

 

res

the GAsyncResult obtained from the GAsyncReadyCallback passed to qmi_client_oma_cancel_session().

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

a QmiMessageOmaCancelSessionOutput, or NULL if error -is set. The returned value should be freed with qmi_message_oma_cancel_session_output_unref().

-
-

Since: 1.6

-
-
-
-

Types and Values

-
-

QmiMessageOmaCancelSessionOutput

-
typedef struct _QmiMessageOmaCancelSessionOutput QmiMessageOmaCancelSessionOutput;
-

The QmiMessageOmaCancelSessionOutput structure contains private data and should only be accessed -using the provided API.

-

Since: 1.6

-
-
-
- - - \ No newline at end of file diff -Nru libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-OMA-Cancel-Session-request.html libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-OMA-Cancel-Session-request.html --- libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-OMA-Cancel-Session-request.html 1970-01-01 01:00:00.000000000 +0100 +++ libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-OMA-Cancel-Session-request.html 2019-01-08 15:19:02.000000000 +0100 @@ -0,0 +1,319 @@ + + + + +OMA Cancel Session request: libqmi-glib Reference Manual + + + + + + + + + + + + + + + + +
+
+
+ + +
+

OMA Cancel Session request

+

OMA Cancel Session request

+
+ +
+

Types and Values

+ +
+
+

Object Hierarchy

+
    GBoxed
+    ╰── QmiMessageOmaCancelSessionOutput
+
+
+
+

Description

+
+
+

Functions

+
+

qmi_message_oma_cancel_session_output_ref ()

+
QmiMessageOmaCancelSessionOutput *
+qmi_message_oma_cancel_session_output_ref
+                               (QmiMessageOmaCancelSessionOutput *self);
+

Atomically increments the reference count of self + by one.

+
+

Parameters

+
+++++ + + + + + +

self

a QmiMessageOmaCancelSessionOutput.

 
+
+
+

Returns

+

the new reference to self +.

+
+

Since: 1.6

+
+
+
+

qmi_message_oma_cancel_session_output_unref ()

+
void
+qmi_message_oma_cancel_session_output_unref
+                               (QmiMessageOmaCancelSessionOutput *self);
+

Atomically decrements the reference count of self + by one. +If the reference count drops to 0, self + is completely disposed.

+
+

Parameters

+
+++++ + + + + + +

self

a QmiMessageOmaCancelSessionOutput.

 
+
+

Since: 1.6

+
+
+
+

qmi_message_oma_cancel_session_output_get_result ()

+
gboolean
+qmi_message_oma_cancel_session_output_get_result
+                               (QmiMessageOmaCancelSessionOutput *self,
+                                GError **error);
+

Get the result of the QMI operation.

+
+

Parameters

+
+++++ + + + + + + + + + + + + +

self

a QmiMessageOmaCancelSessionOutput.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the QMI operation succeeded, FALSE if error +is set.

+
+

Since: 1.6

+
+
+
+

qmi_client_oma_cancel_session ()

+
void
+qmi_client_oma_cancel_session (QmiClientOma *self,
+                               gpointer unused,
+                               guint timeout,
+                               GCancellable *cancellable,
+                               GAsyncReadyCallback callback,
+                               gpointer user_data);
+

Asynchronously sends a Cancel Session request to the device.

+

When the operation is finished, callback + will be invoked in the thread-default main loop of the thread you are calling this method from.

+

You can then call qmi_client_oma_cancel_session_finish() to get the result of the operation.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

self

a QmiClientOma.

 

unused

NULL. This message doesn't have any input bundle.

 

timeout

maximum time to wait for the method to complete, in seconds.

 

cancellable

a GCancellable or NULL.

 

callback

a GAsyncReadyCallback to call when the request is satisfied.

 

user_data

user data to pass to callback +.

 
+
+

Since: 1.6

+
+
+
+

qmi_client_oma_cancel_session_finish ()

+
QmiMessageOmaCancelSessionOutput *
+qmi_client_oma_cancel_session_finish (QmiClientOma *self,
+                                      GAsyncResult *res,
+                                      GError **error);
+

Finishes an async operation started with qmi_client_oma_cancel_session().

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiClientOma.

 

res

the GAsyncResult obtained from the GAsyncReadyCallback passed to qmi_client_oma_cancel_session().

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

a QmiMessageOmaCancelSessionOutput, or NULL if error +is set. The returned value should be freed with qmi_message_oma_cancel_session_output_unref().

+
+

Since: 1.6

+
+
+
+

Types and Values

+
+

QmiMessageOmaCancelSessionOutput

+
typedef struct _QmiMessageOmaCancelSessionOutput QmiMessageOmaCancelSessionOutput;
+

The QmiMessageOmaCancelSessionOutput structure contains private data and should only be accessed +using the provided API.

+

Since: 1.6

+
+
+
+ + + \ No newline at end of file diff -Nru libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-OMA-enumerations-and-flags.html libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-OMA-enumerations-and-flags.html --- libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-OMA-enumerations-and-flags.html 2017-03-22 12:28:29.000000000 +0100 +++ libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-OMA-enumerations-and-flags.html 2019-01-08 15:19:02.000000000 +0100 @@ -3,12 +3,12 @@ OMA enumerations and flags: libqmi-glib Reference Manual - + - - + + @@ -21,7 +21,7 @@ Home Up Prev -Next +Next
@@ -100,7 +100,7 @@

Object Hierarchy

-
    GEnum
+
    GEnum
     ├── QmiOmaHfaFeatureDoneState
     ├── QmiOmaSessionFailedReason
     ├── QmiOmaSessionState
@@ -137,7 +137,7 @@
 

Returns

-

a string with the nickname, or NULL if not found. Do not free the returned value.

+

a string with the nickname, or NULL if not found. Do not free the returned value.

[transfer none]

Since: 1.6

@@ -166,7 +166,7 @@

Returns

-

a string with the nickname, or NULL if not found. Do not free the returned value.

+

a string with the nickname, or NULL if not found. Do not free the returned value.

[transfer none]

Since: 1.6

@@ -196,7 +196,7 @@

Returns

-

a string with the nickname, or NULL if not found. Do not free the returned value.

+

a string with the nickname, or NULL if not found. Do not free the returned value.

[transfer none]

Since: 1.6

@@ -226,7 +226,7 @@

Returns

-

a string with the nickname, or NULL if not found. Do not free the returned value.

+

a string with the nickname, or NULL if not found. Do not free the returned value.

[transfer none]

Since: 1.6

@@ -497,6 +497,6 @@ +
Generated by GTK-Doc V1.29 \ No newline at end of file diff -Nru libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-OMA-Event-Report.html libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-OMA-Event-Report.html --- libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-OMA-Event-Report.html 2017-03-22 12:28:28.000000000 +0100 +++ libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-OMA-Event-Report.html 1970-01-01 01:00:00.000000000 +0100 @@ -1,316 +0,0 @@ - - - - -OMA Event Report: libqmi-glib Reference Manual - - - - - - - - - - - - - - - - -
-
-
- - -
-

OMA Event Report

-

OMA Event Report

-
- -
-

Types and Values

- -
-
-

Object Hierarchy

-
    GBoxed
-    ╰── QmiIndicationOmaEventReportOutput
-
-
-
-

Description

-
-
-

Functions

-
-

qmi_indication_oma_event_report_output_ref ()

-
QmiIndicationOmaEventReportOutput *
-qmi_indication_oma_event_report_output_ref
-                               (QmiIndicationOmaEventReportOutput *self);
-

Atomically increments the reference count of self - by one.

-
-

Parameters

-
----- - - - - - -

self

a QmiIndicationOmaEventReportOutput.

 
-
-
-

Returns

-

the new reference to self -.

-
-

Since: 1.6

-
-
-
-

qmi_indication_oma_event_report_output_unref ()

-
void
-qmi_indication_oma_event_report_output_unref
-                               (QmiIndicationOmaEventReportOutput *self);
-

Atomically decrements the reference count of self - by one. -If the reference count drops to 0, self - is completely disposed.

-
-

Parameters

-
----- - - - - - -

self

a QmiIndicationOmaEventReportOutput.

 
-
-

Since: 1.6

-
-
-
-

qmi_indication_oma_event_report_output_get_session_fail_reason ()

-
gboolean
-qmi_indication_oma_event_report_output_get_session_fail_reason
-                               (QmiIndicationOmaEventReportOutput *self,
-                                QmiOmaSessionFailedReason *value_session_fail_reason,
-                                GError **error);
-

Get the 'Session Fail Reason' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiIndicationOmaEventReportOutput.

 

value_session_fail_reason

a placeholder for the output QmiOmaSessionFailedReason, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.6

-
-
-
-

qmi_indication_oma_event_report_output_get_session_state ()

-
gboolean
-qmi_indication_oma_event_report_output_get_session_state
-                               (QmiIndicationOmaEventReportOutput *self,
-                                QmiOmaSessionState *value_session_state,
-                                GError **error);
-

Get the 'Session State' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiIndicationOmaEventReportOutput.

 

value_session_state

a placeholder for the output QmiOmaSessionState, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.6

-
-
-
-

qmi_indication_oma_event_report_output_get_network_initiated_alert ()

-
gboolean
-qmi_indication_oma_event_report_output_get_network_initiated_alert
-                               (QmiIndicationOmaEventReportOutput *self,
-                                QmiOmaSessionType *value_network_initiated_alert_session_type,
-                                guint16 *value_network_initiated_alert_session_id,
-                                GError **error);
-

Get the 'Network Initiated Alert' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - - - - - - -

self

a QmiIndicationOmaEventReportOutput.

 

value_network_initiated_alert_session_type

a placeholder for the output QmiOmaSessionType, or NULL if not required.

 

value_network_initiated_alert_session_id

a placeholder for the output guint16, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.6

-
-
-
-

Types and Values

-
-

QmiIndicationOmaEventReportOutput

-
typedef struct _QmiIndicationOmaEventReportOutput QmiIndicationOmaEventReportOutput;
-

The QmiIndicationOmaEventReportOutput structure contains private data and should only be accessed -using the provided API.

-

Since: 1.6

-
-
-
- - - \ No newline at end of file diff -Nru libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-OMA-Event-Report-indication.html libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-OMA-Event-Report-indication.html --- libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-OMA-Event-Report-indication.html 1970-01-01 01:00:00.000000000 +0100 +++ libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-OMA-Event-Report-indication.html 2019-01-08 15:19:02.000000000 +0100 @@ -0,0 +1,316 @@ + + + + +OMA Event Report indication: libqmi-glib Reference Manual + + + + + + + + + + + + + + + + +
+
+
+ + +
+

OMA Event Report indication

+

OMA Event Report indication

+
+ +
+

Types and Values

+ +
+
+

Object Hierarchy

+
    GBoxed
+    ╰── QmiIndicationOmaEventReportOutput
+
+
+
+

Description

+
+
+

Functions

+
+

qmi_indication_oma_event_report_output_ref ()

+
QmiIndicationOmaEventReportOutput *
+qmi_indication_oma_event_report_output_ref
+                               (QmiIndicationOmaEventReportOutput *self);
+

Atomically increments the reference count of self + by one.

+
+

Parameters

+
+++++ + + + + + +

self

a QmiIndicationOmaEventReportOutput.

 
+
+
+

Returns

+

the new reference to self +.

+
+

Since: 1.6

+
+
+
+

qmi_indication_oma_event_report_output_unref ()

+
void
+qmi_indication_oma_event_report_output_unref
+                               (QmiIndicationOmaEventReportOutput *self);
+

Atomically decrements the reference count of self + by one. +If the reference count drops to 0, self + is completely disposed.

+
+

Parameters

+
+++++ + + + + + +

self

a QmiIndicationOmaEventReportOutput.

 
+
+

Since: 1.6

+
+
+
+

qmi_indication_oma_event_report_output_get_session_fail_reason ()

+
gboolean
+qmi_indication_oma_event_report_output_get_session_fail_reason
+                               (QmiIndicationOmaEventReportOutput *self,
+                                QmiOmaSessionFailedReason *value_session_fail_reason,
+                                GError **error);
+

Get the 'Session Fail Reason' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiIndicationOmaEventReportOutput.

 

value_session_fail_reason

a placeholder for the output QmiOmaSessionFailedReason, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.6

+
+
+
+

qmi_indication_oma_event_report_output_get_session_state ()

+
gboolean
+qmi_indication_oma_event_report_output_get_session_state
+                               (QmiIndicationOmaEventReportOutput *self,
+                                QmiOmaSessionState *value_session_state,
+                                GError **error);
+

Get the 'Session State' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiIndicationOmaEventReportOutput.

 

value_session_state

a placeholder for the output QmiOmaSessionState, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.6

+
+
+
+

qmi_indication_oma_event_report_output_get_network_initiated_alert ()

+
gboolean
+qmi_indication_oma_event_report_output_get_network_initiated_alert
+                               (QmiIndicationOmaEventReportOutput *self,
+                                QmiOmaSessionType *value_network_initiated_alert_session_type,
+                                guint16 *value_network_initiated_alert_session_id,
+                                GError **error);
+

Get the 'Network Initiated Alert' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + + + + + + +

self

a QmiIndicationOmaEventReportOutput.

 

value_network_initiated_alert_session_type

a placeholder for the output QmiOmaSessionType, or NULL if not required.

 

value_network_initiated_alert_session_id

a placeholder for the output guint16, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.6

+
+
+
+

Types and Values

+
+

QmiIndicationOmaEventReportOutput

+
typedef struct _QmiIndicationOmaEventReportOutput QmiIndicationOmaEventReportOutput;
+

The QmiIndicationOmaEventReportOutput structure contains private data and should only be accessed +using the provided API.

+

Since: 1.6

+
+
+
+ + + \ No newline at end of file diff -Nru libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-OMA-Get-Feature-Setting.html libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-OMA-Get-Feature-Setting.html --- libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-OMA-Get-Feature-Setting.html 2017-03-22 12:28:29.000000000 +0100 +++ libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-OMA-Get-Feature-Setting.html 1970-01-01 01:00:00.000000000 +0100 @@ -1,524 +0,0 @@ - - - - -OMA Get Feature Setting: libqmi-glib Reference Manual - - - - - - - - - - - - - - - - -
-
-
- - -
-

OMA Get Feature Setting

-

OMA Get Feature Setting

-
- -
-

Types and Values

- -
-
-

Object Hierarchy

-
    GBoxed
-    ╰── QmiMessageOmaGetFeatureSettingOutput
-
-
-
-

Description

-
-
-

Functions

-
-

qmi_message_oma_get_feature_setting_output_ref ()

-
QmiMessageOmaGetFeatureSettingOutput *
-qmi_message_oma_get_feature_setting_output_ref
-                               (QmiMessageOmaGetFeatureSettingOutput *self);
-

Atomically increments the reference count of self - by one.

-
-

Parameters

-
----- - - - - - -

self

a QmiMessageOmaGetFeatureSettingOutput.

 
-
-
-

Returns

-

the new reference to self -.

-
-

Since: 1.6

-
-
-
-

qmi_message_oma_get_feature_setting_output_unref ()

-
void
-qmi_message_oma_get_feature_setting_output_unref
-                               (QmiMessageOmaGetFeatureSettingOutput *self);
-

Atomically decrements the reference count of self - by one. -If the reference count drops to 0, self - is completely disposed.

-
-

Parameters

-
----- - - - - - -

self

a QmiMessageOmaGetFeatureSettingOutput.

 
-
-

Since: 1.6

-
-
-
-

qmi_message_oma_get_feature_setting_output_get_result ()

-
gboolean
-qmi_message_oma_get_feature_setting_output_get_result
-                               (QmiMessageOmaGetFeatureSettingOutput *self,
-                                GError **error);
-

Get the result of the QMI operation.

-
-

Parameters

-
----- - - - - - - - - - - - - -

self

a QmiMessageOmaGetFeatureSettingOutput.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the QMI operation succeeded, FALSE if error -is set.

-
-

Since: 1.6

-
-
-
-

qmi_message_oma_get_feature_setting_output_get_device_provisioning_service_update_config ()

-
gboolean
-qmi_message_oma_get_feature_setting_output_get_device_provisioning_service_update_config
-                               (QmiMessageOmaGetFeatureSettingOutput *self,
-                                gboolean *value_device_provisioning_service_update_config,
-                                GError **error);
-

Get the 'Device Provisioning Service Update Config' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessageOmaGetFeatureSettingOutput.

 

value_device_provisioning_service_update_config

a placeholder for the output gboolean, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.6

-
-
-
-

qmi_message_oma_get_feature_setting_output_get_prl_update_service_config ()

-
gboolean
-qmi_message_oma_get_feature_setting_output_get_prl_update_service_config
-                               (QmiMessageOmaGetFeatureSettingOutput *self,
-                                gboolean *value_prl_update_service_config,
-                                GError **error);
-

Get the 'PRL Update Service Config' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessageOmaGetFeatureSettingOutput.

 

value_prl_update_service_config

a placeholder for the output gboolean, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.6

-
-
-
-

qmi_message_oma_get_feature_setting_output_get_hfa_feature_config ()

-
gboolean
-qmi_message_oma_get_feature_setting_output_get_hfa_feature_config
-                               (QmiMessageOmaGetFeatureSettingOutput *self,
-                                gboolean *value_hfa_feature_config,
-                                GError **error);
-

Get the 'HFA Feature Config' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessageOmaGetFeatureSettingOutput.

 

value_hfa_feature_config

a placeholder for the output gboolean, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.6

-
-
-
-

qmi_message_oma_get_feature_setting_output_get_hfa_feature_done_state ()

-
gboolean
-qmi_message_oma_get_feature_setting_output_get_hfa_feature_done_state
-                               (QmiMessageOmaGetFeatureSettingOutput *self,
-                                QmiOmaHfaFeatureDoneState *value_hfa_feature_done_state,
-                                GError **error);
-

Get the 'HFA Feature Done State' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessageOmaGetFeatureSettingOutput.

 

value_hfa_feature_done_state

a placeholder for the output QmiOmaHfaFeatureDoneState, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.6

-
-
-
-

qmi_client_oma_get_feature_setting ()

-
void
-qmi_client_oma_get_feature_setting (QmiClientOma *self,
-                                    gpointer unused,
-                                    guint timeout,
-                                    GCancellable *cancellable,
-                                    GAsyncReadyCallback callback,
-                                    gpointer user_data);
-

Asynchronously sends a Get Feature Setting request to the device.

-

When the operation is finished, callback - will be invoked in the thread-default main loop of the thread you are calling this method from.

-

You can then call qmi_client_oma_get_feature_setting_finish() to get the result of the operation.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

self

a QmiClientOma.

 

unused

NULL. This message doesn't have any input bundle.

 

timeout

maximum time to wait for the method to complete, in seconds.

 

cancellable

a GCancellable or NULL.

 

callback

a GAsyncReadyCallback to call when the request is satisfied.

 

user_data

user data to pass to callback -.

 
-
-

Since: 1.6

-
-
-
-

qmi_client_oma_get_feature_setting_finish ()

-
QmiMessageOmaGetFeatureSettingOutput *
-qmi_client_oma_get_feature_setting_finish
-                               (QmiClientOma *self,
-                                GAsyncResult *res,
-                                GError **error);
-

Finishes an async operation started with qmi_client_oma_get_feature_setting().

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiClientOma.

 

res

the GAsyncResult obtained from the GAsyncReadyCallback passed to qmi_client_oma_get_feature_setting().

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

a QmiMessageOmaGetFeatureSettingOutput, or NULL if error -is set. The returned value should be freed with qmi_message_oma_get_feature_setting_output_unref().

-
-

Since: 1.6

-
-
-
-

Types and Values

-
-

QmiMessageOmaGetFeatureSettingOutput

-
typedef struct _QmiMessageOmaGetFeatureSettingOutput QmiMessageOmaGetFeatureSettingOutput;
-

The QmiMessageOmaGetFeatureSettingOutput structure contains private data and should only be accessed -using the provided API.

-

Since: 1.6

-
-
-
- - - \ No newline at end of file diff -Nru libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-OMA-Get-Feature-Setting-request.html libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-OMA-Get-Feature-Setting-request.html --- libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-OMA-Get-Feature-Setting-request.html 1970-01-01 01:00:00.000000000 +0100 +++ libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-OMA-Get-Feature-Setting-request.html 2019-01-08 15:19:02.000000000 +0100 @@ -0,0 +1,524 @@ + + + + +OMA Get Feature Setting request: libqmi-glib Reference Manual + + + + + + + + + + + + + + + + +
+
+
+ + +
+

OMA Get Feature Setting request

+

OMA Get Feature Setting request

+
+ +
+

Types and Values

+ +
+
+

Object Hierarchy

+
    GBoxed
+    ╰── QmiMessageOmaGetFeatureSettingOutput
+
+
+
+

Description

+
+
+

Functions

+
+

qmi_message_oma_get_feature_setting_output_ref ()

+
QmiMessageOmaGetFeatureSettingOutput *
+qmi_message_oma_get_feature_setting_output_ref
+                               (QmiMessageOmaGetFeatureSettingOutput *self);
+

Atomically increments the reference count of self + by one.

+
+

Parameters

+
+++++ + + + + + +

self

a QmiMessageOmaGetFeatureSettingOutput.

 
+
+
+

Returns

+

the new reference to self +.

+
+

Since: 1.6

+
+
+
+

qmi_message_oma_get_feature_setting_output_unref ()

+
void
+qmi_message_oma_get_feature_setting_output_unref
+                               (QmiMessageOmaGetFeatureSettingOutput *self);
+

Atomically decrements the reference count of self + by one. +If the reference count drops to 0, self + is completely disposed.

+
+

Parameters

+
+++++ + + + + + +

self

a QmiMessageOmaGetFeatureSettingOutput.

 
+
+

Since: 1.6

+
+
+
+

qmi_message_oma_get_feature_setting_output_get_result ()

+
gboolean
+qmi_message_oma_get_feature_setting_output_get_result
+                               (QmiMessageOmaGetFeatureSettingOutput *self,
+                                GError **error);
+

Get the result of the QMI operation.

+
+

Parameters

+
+++++ + + + + + + + + + + + + +

self

a QmiMessageOmaGetFeatureSettingOutput.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the QMI operation succeeded, FALSE if error +is set.

+
+

Since: 1.6

+
+
+
+

qmi_message_oma_get_feature_setting_output_get_device_provisioning_service_update_config ()

+
gboolean
+qmi_message_oma_get_feature_setting_output_get_device_provisioning_service_update_config
+                               (QmiMessageOmaGetFeatureSettingOutput *self,
+                                gboolean *value_device_provisioning_service_update_config,
+                                GError **error);
+

Get the 'Device Provisioning Service Update Config' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageOmaGetFeatureSettingOutput.

 

value_device_provisioning_service_update_config

a placeholder for the output gboolean, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.6

+
+
+
+

qmi_message_oma_get_feature_setting_output_get_prl_update_service_config ()

+
gboolean
+qmi_message_oma_get_feature_setting_output_get_prl_update_service_config
+                               (QmiMessageOmaGetFeatureSettingOutput *self,
+                                gboolean *value_prl_update_service_config,
+                                GError **error);
+

Get the 'PRL Update Service Config' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageOmaGetFeatureSettingOutput.

 

value_prl_update_service_config

a placeholder for the output gboolean, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.6

+
+
+
+

qmi_message_oma_get_feature_setting_output_get_hfa_feature_config ()

+
gboolean
+qmi_message_oma_get_feature_setting_output_get_hfa_feature_config
+                               (QmiMessageOmaGetFeatureSettingOutput *self,
+                                gboolean *value_hfa_feature_config,
+                                GError **error);
+

Get the 'HFA Feature Config' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageOmaGetFeatureSettingOutput.

 

value_hfa_feature_config

a placeholder for the output gboolean, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.6

+
+
+
+

qmi_message_oma_get_feature_setting_output_get_hfa_feature_done_state ()

+
gboolean
+qmi_message_oma_get_feature_setting_output_get_hfa_feature_done_state
+                               (QmiMessageOmaGetFeatureSettingOutput *self,
+                                QmiOmaHfaFeatureDoneState *value_hfa_feature_done_state,
+                                GError **error);
+

Get the 'HFA Feature Done State' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageOmaGetFeatureSettingOutput.

 

value_hfa_feature_done_state

a placeholder for the output QmiOmaHfaFeatureDoneState, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.6

+
+
+
+

qmi_client_oma_get_feature_setting ()

+
void
+qmi_client_oma_get_feature_setting (QmiClientOma *self,
+                                    gpointer unused,
+                                    guint timeout,
+                                    GCancellable *cancellable,
+                                    GAsyncReadyCallback callback,
+                                    gpointer user_data);
+

Asynchronously sends a Get Feature Setting request to the device.

+

When the operation is finished, callback + will be invoked in the thread-default main loop of the thread you are calling this method from.

+

You can then call qmi_client_oma_get_feature_setting_finish() to get the result of the operation.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

self

a QmiClientOma.

 

unused

NULL. This message doesn't have any input bundle.

 

timeout

maximum time to wait for the method to complete, in seconds.

 

cancellable

a GCancellable or NULL.

 

callback

a GAsyncReadyCallback to call when the request is satisfied.

 

user_data

user data to pass to callback +.

 
+
+

Since: 1.6

+
+
+
+

qmi_client_oma_get_feature_setting_finish ()

+
QmiMessageOmaGetFeatureSettingOutput *
+qmi_client_oma_get_feature_setting_finish
+                               (QmiClientOma *self,
+                                GAsyncResult *res,
+                                GError **error);
+

Finishes an async operation started with qmi_client_oma_get_feature_setting().

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiClientOma.

 

res

the GAsyncResult obtained from the GAsyncReadyCallback passed to qmi_client_oma_get_feature_setting().

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

a QmiMessageOmaGetFeatureSettingOutput, or NULL if error +is set. The returned value should be freed with qmi_message_oma_get_feature_setting_output_unref().

+
+

Since: 1.6

+
+
+
+

Types and Values

+
+

QmiMessageOmaGetFeatureSettingOutput

+
typedef struct _QmiMessageOmaGetFeatureSettingOutput QmiMessageOmaGetFeatureSettingOutput;
+

The QmiMessageOmaGetFeatureSettingOutput structure contains private data and should only be accessed +using the provided API.

+

Since: 1.6

+
+
+
+ + + \ No newline at end of file diff -Nru libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-OMA-Get-Session-Info.html libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-OMA-Get-Session-Info.html --- libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-OMA-Get-Session-Info.html 2017-03-22 12:28:29.000000000 +0100 +++ libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-OMA-Get-Session-Info.html 1970-01-01 01:00:00.000000000 +0100 @@ -1,548 +0,0 @@ - - - - -OMA Get Session Info: libqmi-glib Reference Manual - - - - - - - - - - - - - - - - -
-
-
- - -
-

OMA Get Session Info

-

OMA Get Session Info

-
- -
-

Types and Values

- -
-
-

Object Hierarchy

-
    GBoxed
-    ╰── QmiMessageOmaGetSessionInfoOutput
-
-
-
-

Description

-
-
-

Functions

-
-

qmi_message_oma_get_session_info_output_ref ()

-
QmiMessageOmaGetSessionInfoOutput *
-qmi_message_oma_get_session_info_output_ref
-                               (QmiMessageOmaGetSessionInfoOutput *self);
-

Atomically increments the reference count of self - by one.

-
-

Parameters

-
----- - - - - - -

self

a QmiMessageOmaGetSessionInfoOutput.

 
-
-
-

Returns

-

the new reference to self -.

-
-

Since: 1.6

-
-
-
-

qmi_message_oma_get_session_info_output_unref ()

-
void
-qmi_message_oma_get_session_info_output_unref
-                               (QmiMessageOmaGetSessionInfoOutput *self);
-

Atomically decrements the reference count of self - by one. -If the reference count drops to 0, self - is completely disposed.

-
-

Parameters

-
----- - - - - - -

self

a QmiMessageOmaGetSessionInfoOutput.

 
-
-

Since: 1.6

-
-
-
-

qmi_message_oma_get_session_info_output_get_result ()

-
gboolean
-qmi_message_oma_get_session_info_output_get_result
-                               (QmiMessageOmaGetSessionInfoOutput *self,
-                                GError **error);
-

Get the result of the QMI operation.

-
-

Parameters

-
----- - - - - - - - - - - - - -

self

a QmiMessageOmaGetSessionInfoOutput.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the QMI operation succeeded, FALSE if error -is set.

-
-

Since: 1.6

-
-
-
-

qmi_message_oma_get_session_info_output_get_session_info ()

-
gboolean
-qmi_message_oma_get_session_info_output_get_session_info
-                               (QmiMessageOmaGetSessionInfoOutput *self,
-                                QmiOmaSessionState *value_session_info_session_state,
-                                QmiOmaSessionType *value_session_info_session_type,
-                                GError **error);
-

Get the 'Session Info' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - - - - - - -

self

a QmiMessageOmaGetSessionInfoOutput.

 

value_session_info_session_state

a placeholder for the output QmiOmaSessionState, or NULL if not required.

 

value_session_info_session_type

a placeholder for the output QmiOmaSessionType, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.6

-
-
-
-

qmi_message_oma_get_session_info_output_get_session_failed_reason ()

-
gboolean
-qmi_message_oma_get_session_info_output_get_session_failed_reason
-                               (QmiMessageOmaGetSessionInfoOutput *self,
-                                QmiOmaSessionFailedReason *value_session_failed_reason,
-                                GError **error);
-

Get the 'Session Failed Reason' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessageOmaGetSessionInfoOutput.

 

value_session_failed_reason

a placeholder for the output QmiOmaSessionFailedReason, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.6

-
-
-
-

qmi_message_oma_get_session_info_output_get_retry_info ()

-
gboolean
-qmi_message_oma_get_session_info_output_get_retry_info
-                               (QmiMessageOmaGetSessionInfoOutput *self,
-                                guint8 *value_retry_info_retry_count,
-                                guint16 *value_retry_info_retry_pause_timer,
-                                guint16 *value_retry_info_retry_pause_timer_remaining,
-                                GError **error);
-

Get the 'Retry Info' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - - - - - - - - - - - -

self

a QmiMessageOmaGetSessionInfoOutput.

 

value_retry_info_retry_count

a placeholder for the output guint8, or NULL if not required.

 

value_retry_info_retry_pause_timer

a placeholder for the output guint16, or NULL if not required.

 

value_retry_info_retry_pause_timer_remaining

a placeholder for the output guint16, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.6

-
-
-
-

qmi_message_oma_get_session_info_output_get_network_initiated_alert ()

-
gboolean
-qmi_message_oma_get_session_info_output_get_network_initiated_alert
-                               (QmiMessageOmaGetSessionInfoOutput *self,
-                                QmiOmaSessionType *value_network_initiated_alert_session_type,
-                                guint16 *value_network_initiated_alert_session_id,
-                                GError **error);
-

Get the 'Network Initiated Alert' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - - - - - - -

self

a QmiMessageOmaGetSessionInfoOutput.

 

value_network_initiated_alert_session_type

a placeholder for the output QmiOmaSessionType, or NULL if not required.

 

value_network_initiated_alert_session_id

a placeholder for the output guint16, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.6

-
-
-
-

qmi_client_oma_get_session_info ()

-
void
-qmi_client_oma_get_session_info (QmiClientOma *self,
-                                 gpointer unused,
-                                 guint timeout,
-                                 GCancellable *cancellable,
-                                 GAsyncReadyCallback callback,
-                                 gpointer user_data);
-

Asynchronously sends a Get Session Info request to the device.

-

When the operation is finished, callback - will be invoked in the thread-default main loop of the thread you are calling this method from.

-

You can then call qmi_client_oma_get_session_info_finish() to get the result of the operation.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

self

a QmiClientOma.

 

unused

NULL. This message doesn't have any input bundle.

 

timeout

maximum time to wait for the method to complete, in seconds.

 

cancellable

a GCancellable or NULL.

 

callback

a GAsyncReadyCallback to call when the request is satisfied.

 

user_data

user data to pass to callback -.

 
-
-

Since: 1.6

-
-
-
-

qmi_client_oma_get_session_info_finish ()

-
QmiMessageOmaGetSessionInfoOutput *
-qmi_client_oma_get_session_info_finish
-                               (QmiClientOma *self,
-                                GAsyncResult *res,
-                                GError **error);
-

Finishes an async operation started with qmi_client_oma_get_session_info().

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiClientOma.

 

res

the GAsyncResult obtained from the GAsyncReadyCallback passed to qmi_client_oma_get_session_info().

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

a QmiMessageOmaGetSessionInfoOutput, or NULL if error -is set. The returned value should be freed with qmi_message_oma_get_session_info_output_unref().

-
-

Since: 1.6

-
-
-
-

Types and Values

-
-

QmiMessageOmaGetSessionInfoOutput

-
typedef struct _QmiMessageOmaGetSessionInfoOutput QmiMessageOmaGetSessionInfoOutput;
-

The QmiMessageOmaGetSessionInfoOutput structure contains private data and should only be accessed -using the provided API.

-

Since: 1.6

-
-
-
- - - \ No newline at end of file diff -Nru libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-OMA-Get-Session-Info-request.html libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-OMA-Get-Session-Info-request.html --- libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-OMA-Get-Session-Info-request.html 1970-01-01 01:00:00.000000000 +0100 +++ libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-OMA-Get-Session-Info-request.html 2019-01-08 15:19:02.000000000 +0100 @@ -0,0 +1,548 @@ + + + + +OMA Get Session Info request: libqmi-glib Reference Manual + + + + + + + + + + + + + + + + +
+
+
+ + +
+

OMA Get Session Info request

+

OMA Get Session Info request

+
+ +
+

Types and Values

+ +
+
+

Object Hierarchy

+
    GBoxed
+    ╰── QmiMessageOmaGetSessionInfoOutput
+
+
+
+

Description

+
+
+

Functions

+
+

qmi_message_oma_get_session_info_output_ref ()

+
QmiMessageOmaGetSessionInfoOutput *
+qmi_message_oma_get_session_info_output_ref
+                               (QmiMessageOmaGetSessionInfoOutput *self);
+

Atomically increments the reference count of self + by one.

+
+

Parameters

+
+++++ + + + + + +

self

a QmiMessageOmaGetSessionInfoOutput.

 
+
+
+

Returns

+

the new reference to self +.

+
+

Since: 1.6

+
+
+
+

qmi_message_oma_get_session_info_output_unref ()

+
void
+qmi_message_oma_get_session_info_output_unref
+                               (QmiMessageOmaGetSessionInfoOutput *self);
+

Atomically decrements the reference count of self + by one. +If the reference count drops to 0, self + is completely disposed.

+
+

Parameters

+
+++++ + + + + + +

self

a QmiMessageOmaGetSessionInfoOutput.

 
+
+

Since: 1.6

+
+
+
+

qmi_message_oma_get_session_info_output_get_result ()

+
gboolean
+qmi_message_oma_get_session_info_output_get_result
+                               (QmiMessageOmaGetSessionInfoOutput *self,
+                                GError **error);
+

Get the result of the QMI operation.

+
+

Parameters

+
+++++ + + + + + + + + + + + + +

self

a QmiMessageOmaGetSessionInfoOutput.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the QMI operation succeeded, FALSE if error +is set.

+
+

Since: 1.6

+
+
+
+

qmi_message_oma_get_session_info_output_get_session_info ()

+
gboolean
+qmi_message_oma_get_session_info_output_get_session_info
+                               (QmiMessageOmaGetSessionInfoOutput *self,
+                                QmiOmaSessionState *value_session_info_session_state,
+                                QmiOmaSessionType *value_session_info_session_type,
+                                GError **error);
+

Get the 'Session Info' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + + + + + + +

self

a QmiMessageOmaGetSessionInfoOutput.

 

value_session_info_session_state

a placeholder for the output QmiOmaSessionState, or NULL if not required.

 

value_session_info_session_type

a placeholder for the output QmiOmaSessionType, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.6

+
+
+
+

qmi_message_oma_get_session_info_output_get_session_failed_reason ()

+
gboolean
+qmi_message_oma_get_session_info_output_get_session_failed_reason
+                               (QmiMessageOmaGetSessionInfoOutput *self,
+                                QmiOmaSessionFailedReason *value_session_failed_reason,
+                                GError **error);
+

Get the 'Session Failed Reason' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageOmaGetSessionInfoOutput.

 

value_session_failed_reason

a placeholder for the output QmiOmaSessionFailedReason, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.6

+
+
+
+

qmi_message_oma_get_session_info_output_get_retry_info ()

+
gboolean
+qmi_message_oma_get_session_info_output_get_retry_info
+                               (QmiMessageOmaGetSessionInfoOutput *self,
+                                guint8 *value_retry_info_retry_count,
+                                guint16 *value_retry_info_retry_pause_timer,
+                                guint16 *value_retry_info_retry_pause_timer_remaining,
+                                GError **error);
+

Get the 'Retry Info' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + + + + + + + + + + + +

self

a QmiMessageOmaGetSessionInfoOutput.

 

value_retry_info_retry_count

a placeholder for the output guint8, or NULL if not required.

 

value_retry_info_retry_pause_timer

a placeholder for the output guint16, or NULL if not required.

 

value_retry_info_retry_pause_timer_remaining

a placeholder for the output guint16, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.6

+
+
+
+

qmi_message_oma_get_session_info_output_get_network_initiated_alert ()

+
gboolean
+qmi_message_oma_get_session_info_output_get_network_initiated_alert
+                               (QmiMessageOmaGetSessionInfoOutput *self,
+                                QmiOmaSessionType *value_network_initiated_alert_session_type,
+                                guint16 *value_network_initiated_alert_session_id,
+                                GError **error);
+

Get the 'Network Initiated Alert' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + + + + + + +

self

a QmiMessageOmaGetSessionInfoOutput.

 

value_network_initiated_alert_session_type

a placeholder for the output QmiOmaSessionType, or NULL if not required.

 

value_network_initiated_alert_session_id

a placeholder for the output guint16, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.6

+
+
+
+

qmi_client_oma_get_session_info ()

+
void
+qmi_client_oma_get_session_info (QmiClientOma *self,
+                                 gpointer unused,
+                                 guint timeout,
+                                 GCancellable *cancellable,
+                                 GAsyncReadyCallback callback,
+                                 gpointer user_data);
+

Asynchronously sends a Get Session Info request to the device.

+

When the operation is finished, callback + will be invoked in the thread-default main loop of the thread you are calling this method from.

+

You can then call qmi_client_oma_get_session_info_finish() to get the result of the operation.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

self

a QmiClientOma.

 

unused

NULL. This message doesn't have any input bundle.

 

timeout

maximum time to wait for the method to complete, in seconds.

 

cancellable

a GCancellable or NULL.

 

callback

a GAsyncReadyCallback to call when the request is satisfied.

 

user_data

user data to pass to callback +.

 
+
+

Since: 1.6

+
+
+
+

qmi_client_oma_get_session_info_finish ()

+
QmiMessageOmaGetSessionInfoOutput *
+qmi_client_oma_get_session_info_finish
+                               (QmiClientOma *self,
+                                GAsyncResult *res,
+                                GError **error);
+

Finishes an async operation started with qmi_client_oma_get_session_info().

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiClientOma.

 

res

the GAsyncResult obtained from the GAsyncReadyCallback passed to qmi_client_oma_get_session_info().

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

a QmiMessageOmaGetSessionInfoOutput, or NULL if error +is set. The returned value should be freed with qmi_message_oma_get_session_info_output_unref().

+
+

Since: 1.6

+
+
+
+

Types and Values

+
+

QmiMessageOmaGetSessionInfoOutput

+
typedef struct _QmiMessageOmaGetSessionInfoOutput QmiMessageOmaGetSessionInfoOutput;
+

The QmiMessageOmaGetSessionInfoOutput structure contains private data and should only be accessed +using the provided API.

+

Since: 1.6

+
+
+
+ + + \ No newline at end of file diff -Nru libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-OMA-Reset.html libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-OMA-Reset.html --- libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-OMA-Reset.html 2017-03-22 12:28:28.000000000 +0100 +++ libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-OMA-Reset.html 1970-01-01 01:00:00.000000000 +0100 @@ -1,317 +0,0 @@ - - - - -OMA Reset: libqmi-glib Reference Manual - - - - - - - - - - - - - - - - -
-
-
- - -
-

OMA Reset

-

OMA Reset

-
-
-

Functions

- -
-
-

Types and Values

-
---- - - - - -
 QmiMessageOmaResetOutput
-
-
-

Object Hierarchy

-
    GBoxed
-    ╰── QmiMessageOmaResetOutput
-
-
-
-

Description

-
-
-

Functions

-
-

qmi_message_oma_reset_output_ref ()

-
QmiMessageOmaResetOutput *
-qmi_message_oma_reset_output_ref (QmiMessageOmaResetOutput *self);
-

Atomically increments the reference count of self - by one.

-
-

Parameters

-
----- - - - - - -

self

a QmiMessageOmaResetOutput.

 
-
-
-

Returns

-

the new reference to self -.

-
-

Since: 1.6

-
-
-
-

qmi_message_oma_reset_output_unref ()

-
void
-qmi_message_oma_reset_output_unref (QmiMessageOmaResetOutput *self);
-

Atomically decrements the reference count of self - by one. -If the reference count drops to 0, self - is completely disposed.

-
-

Parameters

-
----- - - - - - -

self

a QmiMessageOmaResetOutput.

 
-
-

Since: 1.6

-
-
-
-

qmi_message_oma_reset_output_get_result ()

-
gboolean
-qmi_message_oma_reset_output_get_result
-                               (QmiMessageOmaResetOutput *self,
-                                GError **error);
-

Get the result of the QMI operation.

-
-

Parameters

-
----- - - - - - - - - - - - - -

self

a QmiMessageOmaResetOutput.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the QMI operation succeeded, FALSE if error -is set.

-
-

Since: 1.6

-
-
-
-

qmi_client_oma_reset ()

-
void
-qmi_client_oma_reset (QmiClientOma *self,
-                      gpointer unused,
-                      guint timeout,
-                      GCancellable *cancellable,
-                      GAsyncReadyCallback callback,
-                      gpointer user_data);
-

Asynchronously sends a Reset request to the device.

-

When the operation is finished, callback - will be invoked in the thread-default main loop of the thread you are calling this method from.

-

You can then call qmi_client_oma_reset_finish() to get the result of the operation.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

self

a QmiClientOma.

 

unused

NULL. This message doesn't have any input bundle.

 

timeout

maximum time to wait for the method to complete, in seconds.

 

cancellable

a GCancellable or NULL.

 

callback

a GAsyncReadyCallback to call when the request is satisfied.

 

user_data

user data to pass to callback -.

 
-
-

Since: 1.6

-
-
-
-

qmi_client_oma_reset_finish ()

-
QmiMessageOmaResetOutput *
-qmi_client_oma_reset_finish (QmiClientOma *self,
-                             GAsyncResult *res,
-                             GError **error);
-

Finishes an async operation started with qmi_client_oma_reset().

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiClientOma.

 

res

the GAsyncResult obtained from the GAsyncReadyCallback passed to qmi_client_oma_reset().

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

a QmiMessageOmaResetOutput, or NULL if error -is set. The returned value should be freed with qmi_message_oma_reset_output_unref().

-
-

Since: 1.6

-
-
-
-

Types and Values

-
-

QmiMessageOmaResetOutput

-
typedef struct _QmiMessageOmaResetOutput QmiMessageOmaResetOutput;
-

The QmiMessageOmaResetOutput structure contains private data and should only be accessed -using the provided API.

-

Since: 1.6

-
-
-
- - - \ No newline at end of file diff -Nru libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-OMA-Reset-request.html libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-OMA-Reset-request.html --- libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-OMA-Reset-request.html 1970-01-01 01:00:00.000000000 +0100 +++ libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-OMA-Reset-request.html 2019-01-08 15:19:02.000000000 +0100 @@ -0,0 +1,317 @@ + + + + +OMA Reset request: libqmi-glib Reference Manual + + + + + + + + + + + + + + + + +
+
+
+ + +
+

OMA Reset request

+

OMA Reset request

+
+
+

Functions

+ +
+
+

Types and Values

+
++++ + + + + +
 QmiMessageOmaResetOutput
+
+
+

Object Hierarchy

+
    GBoxed
+    ╰── QmiMessageOmaResetOutput
+
+
+
+

Description

+
+
+

Functions

+
+

qmi_message_oma_reset_output_ref ()

+
QmiMessageOmaResetOutput *
+qmi_message_oma_reset_output_ref (QmiMessageOmaResetOutput *self);
+

Atomically increments the reference count of self + by one.

+
+

Parameters

+
+++++ + + + + + +

self

a QmiMessageOmaResetOutput.

 
+
+
+

Returns

+

the new reference to self +.

+
+

Since: 1.6

+
+
+
+

qmi_message_oma_reset_output_unref ()

+
void
+qmi_message_oma_reset_output_unref (QmiMessageOmaResetOutput *self);
+

Atomically decrements the reference count of self + by one. +If the reference count drops to 0, self + is completely disposed.

+
+

Parameters

+
+++++ + + + + + +

self

a QmiMessageOmaResetOutput.

 
+
+

Since: 1.6

+
+
+
+

qmi_message_oma_reset_output_get_result ()

+
gboolean
+qmi_message_oma_reset_output_get_result
+                               (QmiMessageOmaResetOutput *self,
+                                GError **error);
+

Get the result of the QMI operation.

+
+

Parameters

+
+++++ + + + + + + + + + + + + +

self

a QmiMessageOmaResetOutput.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the QMI operation succeeded, FALSE if error +is set.

+
+

Since: 1.6

+
+
+
+

qmi_client_oma_reset ()

+
void
+qmi_client_oma_reset (QmiClientOma *self,
+                      gpointer unused,
+                      guint timeout,
+                      GCancellable *cancellable,
+                      GAsyncReadyCallback callback,
+                      gpointer user_data);
+

Asynchronously sends a Reset request to the device.

+

When the operation is finished, callback + will be invoked in the thread-default main loop of the thread you are calling this method from.

+

You can then call qmi_client_oma_reset_finish() to get the result of the operation.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

self

a QmiClientOma.

 

unused

NULL. This message doesn't have any input bundle.

 

timeout

maximum time to wait for the method to complete, in seconds.

 

cancellable

a GCancellable or NULL.

 

callback

a GAsyncReadyCallback to call when the request is satisfied.

 

user_data

user data to pass to callback +.

 
+
+

Since: 1.6

+
+
+
+

qmi_client_oma_reset_finish ()

+
QmiMessageOmaResetOutput *
+qmi_client_oma_reset_finish (QmiClientOma *self,
+                             GAsyncResult *res,
+                             GError **error);
+

Finishes an async operation started with qmi_client_oma_reset().

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiClientOma.

 

res

the GAsyncResult obtained from the GAsyncReadyCallback passed to qmi_client_oma_reset().

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

a QmiMessageOmaResetOutput, or NULL if error +is set. The returned value should be freed with qmi_message_oma_reset_output_unref().

+
+

Since: 1.6

+
+
+
+

Types and Values

+
+

QmiMessageOmaResetOutput

+
typedef struct _QmiMessageOmaResetOutput QmiMessageOmaResetOutput;
+

The QmiMessageOmaResetOutput structure contains private data and should only be accessed +using the provided API.

+

Since: 1.6

+
+
+
+ + + \ No newline at end of file diff -Nru libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-OMA-Send-Selection.html libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-OMA-Send-Selection.html --- libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-OMA-Send-Selection.html 2017-03-22 12:28:28.000000000 +0100 +++ libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-OMA-Send-Selection.html 1970-01-01 01:00:00.000000000 +0100 @@ -1,542 +0,0 @@ - - - - -OMA Send Selection: libqmi-glib Reference Manual - - - - - - - - - - - - - - - - -
-
-
- - -
-

OMA Send Selection

-

OMA Send Selection

-
- -
-

Types and Values

- -
-
-

Object Hierarchy

-
    GBoxed
-    ├── QmiMessageOmaSendSelectionInput
-    ╰── QmiMessageOmaSendSelectionOutput
-
-
-
-

Description

-
-
-

Functions

-
-

qmi_message_oma_send_selection_input_new ()

-
QmiMessageOmaSendSelectionInput *
-qmi_message_oma_send_selection_input_new
-                               (void);
-

Allocates a new QmiMessageOmaSendSelectionInput.

-
-

Returns

-

the newly created QmiMessageOmaSendSelectionInput. The returned value should be freed with qmi_message_oma_send_selection_input_unref().

-
-

Since: 1.6

-
-
-
-

qmi_message_oma_send_selection_input_ref ()

-
QmiMessageOmaSendSelectionInput *
-qmi_message_oma_send_selection_input_ref
-                               (QmiMessageOmaSendSelectionInput *self);
-

Atomically increments the reference count of self - by one.

-
-

Parameters

-
----- - - - - - -

self

a QmiMessageOmaSendSelectionInput.

 
-
-
-

Returns

-

the new reference to self -.

-
-

Since: 1.6

-
-
-
-

qmi_message_oma_send_selection_input_unref ()

-
void
-qmi_message_oma_send_selection_input_unref
-                               (QmiMessageOmaSendSelectionInput *self);
-

Atomically decrements the reference count of self - by one. -If the reference count drops to 0, self - is completely disposed.

-
-

Parameters

-
----- - - - - - -

self

a QmiMessageOmaSendSelectionInput.

 
-
-

Since: 1.6

-
-
-
-

qmi_message_oma_send_selection_input_get_network_initiated_alert_selection ()

-
gboolean
-qmi_message_oma_send_selection_input_get_network_initiated_alert_selection
-                               (QmiMessageOmaSendSelectionInput *self,
-                                gboolean *value_network_initiated_alert_selection_control_point_selection_accept,
-                                guint16 *value_network_initiated_alert_selection_session_id,
-                                GError **error);
-

Get the 'Network Initiated Alert Selection' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - - - - - - -

self

a QmiMessageOmaSendSelectionInput.

 

value_network_initiated_alert_selection_control_point_selection_accept

a placeholder for the output gboolean, or NULL if not required.

 

value_network_initiated_alert_selection_session_id

a placeholder for the output guint16, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.6

-
-
-
-

qmi_message_oma_send_selection_input_set_network_initiated_alert_selection ()

-
gboolean
-qmi_message_oma_send_selection_input_set_network_initiated_alert_selection
-                               (QmiMessageOmaSendSelectionInput *self,
-                                gboolean value_network_initiated_alert_selection_control_point_selection_accept,
-                                guint16 value_network_initiated_alert_selection_session_id,
-                                GError **error);
-

Set the 'Network Initiated Alert Selection' field in the message.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - - - - - - -

self

a QmiMessageOmaSendSelectionInput.

 

value_network_initiated_alert_selection_control_point_selection_accept

a gboolean.

 

value_network_initiated_alert_selection_session_id

a guint16.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if value -was successfully set, FALSE otherwise.

-
-

Since: 1.6

-
-
-
-

qmi_message_oma_send_selection_output_ref ()

-
QmiMessageOmaSendSelectionOutput *
-qmi_message_oma_send_selection_output_ref
-                               (QmiMessageOmaSendSelectionOutput *self);
-

Atomically increments the reference count of self - by one.

-
-

Parameters

-
----- - - - - - -

self

a QmiMessageOmaSendSelectionOutput.

 
-
-
-

Returns

-

the new reference to self -.

-
-

Since: 1.6

-
-
-
-

qmi_message_oma_send_selection_output_unref ()

-
void
-qmi_message_oma_send_selection_output_unref
-                               (QmiMessageOmaSendSelectionOutput *self);
-

Atomically decrements the reference count of self - by one. -If the reference count drops to 0, self - is completely disposed.

-
-

Parameters

-
----- - - - - - -

self

a QmiMessageOmaSendSelectionOutput.

 
-
-

Since: 1.6

-
-
-
-

qmi_message_oma_send_selection_output_get_result ()

-
gboolean
-qmi_message_oma_send_selection_output_get_result
-                               (QmiMessageOmaSendSelectionOutput *self,
-                                GError **error);
-

Get the result of the QMI operation.

-
-

Parameters

-
----- - - - - - - - - - - - - -

self

a QmiMessageOmaSendSelectionOutput.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the QMI operation succeeded, FALSE if error -is set.

-
-

Since: 1.6

-
-
-
-

qmi_client_oma_send_selection ()

-
void
-qmi_client_oma_send_selection (QmiClientOma *self,
-                               QmiMessageOmaSendSelectionInput *input,
-                               guint timeout,
-                               GCancellable *cancellable,
-                               GAsyncReadyCallback callback,
-                               gpointer user_data);
-

Asynchronously sends a Send Selection request to the device.

-

When the operation is finished, callback - will be invoked in the thread-default main loop of the thread you are calling this method from.

-

You can then call qmi_client_oma_send_selection_finish() to get the result of the operation.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

self

a QmiClientOma.

 

input

a QmiMessageOmaSendSelectionInput.

 

timeout

maximum time to wait for the method to complete, in seconds.

 

cancellable

a GCancellable or NULL.

 

callback

a GAsyncReadyCallback to call when the request is satisfied.

 

user_data

user data to pass to callback -.

 
-
-

Since: 1.6

-
-
-
-

qmi_client_oma_send_selection_finish ()

-
QmiMessageOmaSendSelectionOutput *
-qmi_client_oma_send_selection_finish (QmiClientOma *self,
-                                      GAsyncResult *res,
-                                      GError **error);
-

Finishes an async operation started with qmi_client_oma_send_selection().

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiClientOma.

 

res

the GAsyncResult obtained from the GAsyncReadyCallback passed to qmi_client_oma_send_selection().

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

a QmiMessageOmaSendSelectionOutput, or NULL if error -is set. The returned value should be freed with qmi_message_oma_send_selection_output_unref().

-
-

Since: 1.6

-
-
-
-

Types and Values

-
-

QmiMessageOmaSendSelectionInput

-
typedef struct _QmiMessageOmaSendSelectionInput QmiMessageOmaSendSelectionInput;
-

The QmiMessageOmaSendSelectionInput structure contains private data and should only be accessed -using the provided API.

-

Since: 1.6

-
-
-
-

QmiMessageOmaSendSelectionOutput

-
typedef struct _QmiMessageOmaSendSelectionOutput QmiMessageOmaSendSelectionOutput;
-

The QmiMessageOmaSendSelectionOutput structure contains private data and should only be accessed -using the provided API.

-

Since: 1.6

-
-
-
- - - \ No newline at end of file diff -Nru libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-OMA-Send-Selection-request.html libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-OMA-Send-Selection-request.html --- libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-OMA-Send-Selection-request.html 1970-01-01 01:00:00.000000000 +0100 +++ libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-OMA-Send-Selection-request.html 2019-01-08 15:19:02.000000000 +0100 @@ -0,0 +1,542 @@ + + + + +OMA Send Selection request: libqmi-glib Reference Manual + + + + + + + + + + + + + + + + +
+
+
+ + +
+

OMA Send Selection request

+

OMA Send Selection request

+
+ +
+

Types and Values

+ +
+
+

Object Hierarchy

+
    GBoxed
+    ├── QmiMessageOmaSendSelectionInput
+    ╰── QmiMessageOmaSendSelectionOutput
+
+
+
+

Description

+
+
+

Functions

+
+

qmi_message_oma_send_selection_input_new ()

+
QmiMessageOmaSendSelectionInput *
+qmi_message_oma_send_selection_input_new
+                               (void);
+

Allocates a new QmiMessageOmaSendSelectionInput.

+
+

Returns

+

the newly created QmiMessageOmaSendSelectionInput. The returned value should be freed with qmi_message_oma_send_selection_input_unref().

+
+

Since: 1.6

+
+
+
+

qmi_message_oma_send_selection_input_ref ()

+
QmiMessageOmaSendSelectionInput *
+qmi_message_oma_send_selection_input_ref
+                               (QmiMessageOmaSendSelectionInput *self);
+

Atomically increments the reference count of self + by one.

+
+

Parameters

+
+++++ + + + + + +

self

a QmiMessageOmaSendSelectionInput.

 
+
+
+

Returns

+

the new reference to self +.

+
+

Since: 1.6

+
+
+
+

qmi_message_oma_send_selection_input_unref ()

+
void
+qmi_message_oma_send_selection_input_unref
+                               (QmiMessageOmaSendSelectionInput *self);
+

Atomically decrements the reference count of self + by one. +If the reference count drops to 0, self + is completely disposed.

+
+

Parameters

+
+++++ + + + + + +

self

a QmiMessageOmaSendSelectionInput.

 
+
+

Since: 1.6

+
+
+
+

qmi_message_oma_send_selection_input_get_network_initiated_alert_selection ()

+
gboolean
+qmi_message_oma_send_selection_input_get_network_initiated_alert_selection
+                               (QmiMessageOmaSendSelectionInput *self,
+                                gboolean *value_network_initiated_alert_selection_control_point_selection_accept,
+                                guint16 *value_network_initiated_alert_selection_session_id,
+                                GError **error);
+

Get the 'Network Initiated Alert Selection' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + + + + + + +

self

a QmiMessageOmaSendSelectionInput.

 

value_network_initiated_alert_selection_control_point_selection_accept

a placeholder for the output gboolean, or NULL if not required.

 

value_network_initiated_alert_selection_session_id

a placeholder for the output guint16, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.6

+
+
+
+

qmi_message_oma_send_selection_input_set_network_initiated_alert_selection ()

+
gboolean
+qmi_message_oma_send_selection_input_set_network_initiated_alert_selection
+                               (QmiMessageOmaSendSelectionInput *self,
+                                gboolean value_network_initiated_alert_selection_control_point_selection_accept,
+                                guint16 value_network_initiated_alert_selection_session_id,
+                                GError **error);
+

Set the 'Network Initiated Alert Selection' field in the message.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + + + + + + +

self

a QmiMessageOmaSendSelectionInput.

 

value_network_initiated_alert_selection_control_point_selection_accept

a gboolean.

 

value_network_initiated_alert_selection_session_id

a guint16.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if value +was successfully set, FALSE otherwise.

+
+

Since: 1.6

+
+
+
+

qmi_message_oma_send_selection_output_ref ()

+
QmiMessageOmaSendSelectionOutput *
+qmi_message_oma_send_selection_output_ref
+                               (QmiMessageOmaSendSelectionOutput *self);
+

Atomically increments the reference count of self + by one.

+
+

Parameters

+
+++++ + + + + + +

self

a QmiMessageOmaSendSelectionOutput.

 
+
+
+

Returns

+

the new reference to self +.

+
+

Since: 1.6

+
+
+
+

qmi_message_oma_send_selection_output_unref ()

+
void
+qmi_message_oma_send_selection_output_unref
+                               (QmiMessageOmaSendSelectionOutput *self);
+

Atomically decrements the reference count of self + by one. +If the reference count drops to 0, self + is completely disposed.

+
+

Parameters

+
+++++ + + + + + +

self

a QmiMessageOmaSendSelectionOutput.

 
+
+

Since: 1.6

+
+
+
+

qmi_message_oma_send_selection_output_get_result ()

+
gboolean
+qmi_message_oma_send_selection_output_get_result
+                               (QmiMessageOmaSendSelectionOutput *self,
+                                GError **error);
+

Get the result of the QMI operation.

+
+

Parameters

+
+++++ + + + + + + + + + + + + +

self

a QmiMessageOmaSendSelectionOutput.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the QMI operation succeeded, FALSE if error +is set.

+
+

Since: 1.6

+
+
+
+

qmi_client_oma_send_selection ()

+
void
+qmi_client_oma_send_selection (QmiClientOma *self,
+                               QmiMessageOmaSendSelectionInput *input,
+                               guint timeout,
+                               GCancellable *cancellable,
+                               GAsyncReadyCallback callback,
+                               gpointer user_data);
+

Asynchronously sends a Send Selection request to the device.

+

When the operation is finished, callback + will be invoked in the thread-default main loop of the thread you are calling this method from.

+

You can then call qmi_client_oma_send_selection_finish() to get the result of the operation.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

self

a QmiClientOma.

 

input

a QmiMessageOmaSendSelectionInput.

 

timeout

maximum time to wait for the method to complete, in seconds.

 

cancellable

a GCancellable or NULL.

 

callback

a GAsyncReadyCallback to call when the request is satisfied.

 

user_data

user data to pass to callback +.

 
+
+

Since: 1.6

+
+
+
+

qmi_client_oma_send_selection_finish ()

+
QmiMessageOmaSendSelectionOutput *
+qmi_client_oma_send_selection_finish (QmiClientOma *self,
+                                      GAsyncResult *res,
+                                      GError **error);
+

Finishes an async operation started with qmi_client_oma_send_selection().

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiClientOma.

 

res

the GAsyncResult obtained from the GAsyncReadyCallback passed to qmi_client_oma_send_selection().

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

a QmiMessageOmaSendSelectionOutput, or NULL if error +is set. The returned value should be freed with qmi_message_oma_send_selection_output_unref().

+
+

Since: 1.6

+
+
+
+

Types and Values

+
+

QmiMessageOmaSendSelectionInput

+
typedef struct _QmiMessageOmaSendSelectionInput QmiMessageOmaSendSelectionInput;
+

The QmiMessageOmaSendSelectionInput structure contains private data and should only be accessed +using the provided API.

+

Since: 1.6

+
+
+
+

QmiMessageOmaSendSelectionOutput

+
typedef struct _QmiMessageOmaSendSelectionOutput QmiMessageOmaSendSelectionOutput;
+

The QmiMessageOmaSendSelectionOutput structure contains private data and should only be accessed +using the provided API.

+

Since: 1.6

+
+
+
+ + + \ No newline at end of file diff -Nru libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-OMA-Set-Event-Report.html libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-OMA-Set-Event-Report.html --- libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-OMA-Set-Event-Report.html 2017-03-22 12:28:29.000000000 +0100 +++ libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-OMA-Set-Event-Report.html 1970-01-01 01:00:00.000000000 +0100 @@ -1,633 +0,0 @@ - - - - -OMA Set Event Report: libqmi-glib Reference Manual - - - - - - - - - - - - - - - - -
-
-
- - -
-

OMA Set Event Report

-

OMA Set Event Report

-
- -
-

Types and Values

- -
-
-

Object Hierarchy

-
    GBoxed
-    ├── QmiMessageOmaSetEventReportInput
-    ╰── QmiMessageOmaSetEventReportOutput
-
-
-
-

Description

-
-
-

Functions

-
-

qmi_message_oma_set_event_report_input_new ()

-
QmiMessageOmaSetEventReportInput *
-qmi_message_oma_set_event_report_input_new
-                               (void);
-

Allocates a new QmiMessageOmaSetEventReportInput.

-
-

Returns

-

the newly created QmiMessageOmaSetEventReportInput. The returned value should be freed with qmi_message_oma_set_event_report_input_unref().

-
-

Since: 1.6

-
-
-
-

qmi_message_oma_set_event_report_input_ref ()

-
QmiMessageOmaSetEventReportInput *
-qmi_message_oma_set_event_report_input_ref
-                               (QmiMessageOmaSetEventReportInput *self);
-

Atomically increments the reference count of self - by one.

-
-

Parameters

-
----- - - - - - -

self

a QmiMessageOmaSetEventReportInput.

 
-
-
-

Returns

-

the new reference to self -.

-
-

Since: 1.6

-
-
-
-

qmi_message_oma_set_event_report_input_unref ()

-
void
-qmi_message_oma_set_event_report_input_unref
-                               (QmiMessageOmaSetEventReportInput *self);
-

Atomically decrements the reference count of self - by one. -If the reference count drops to 0, self - is completely disposed.

-
-

Parameters

-
----- - - - - - -

self

a QmiMessageOmaSetEventReportInput.

 
-
-

Since: 1.6

-
-
-
-

qmi_message_oma_set_event_report_input_get_session_state_reporting ()

-
gboolean
-qmi_message_oma_set_event_report_input_get_session_state_reporting
-                               (QmiMessageOmaSetEventReportInput *self,
-                                gboolean *value_session_state_reporting,
-                                GError **error);
-

Get the 'Session State Reporting' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessageOmaSetEventReportInput.

 

value_session_state_reporting

a placeholder for the output gboolean, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.6

-
-
-
-

qmi_message_oma_set_event_report_input_set_session_state_reporting ()

-
gboolean
-qmi_message_oma_set_event_report_input_set_session_state_reporting
-                               (QmiMessageOmaSetEventReportInput *self,
-                                gboolean value_session_state_reporting,
-                                GError **error);
-

Set the 'Session State Reporting' field in the message.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessageOmaSetEventReportInput.

 

value_session_state_reporting

a gboolean.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if value -was successfully set, FALSE otherwise.

-
-

Since: 1.6

-
-
-
-

qmi_message_oma_set_event_report_input_get_network_initiated_alert_reporting ()

-
gboolean
-qmi_message_oma_set_event_report_input_get_network_initiated_alert_reporting
-                               (QmiMessageOmaSetEventReportInput *self,
-                                gboolean *value_network_initiated_alert_reporting,
-                                GError **error);
-

Get the 'Network Initiated Alert Reporting' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessageOmaSetEventReportInput.

 

value_network_initiated_alert_reporting

a placeholder for the output gboolean, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.6

-
-
-
-

qmi_message_oma_set_event_report_input_set_network_initiated_alert_reporting ()

-
gboolean
-qmi_message_oma_set_event_report_input_set_network_initiated_alert_reporting
-                               (QmiMessageOmaSetEventReportInput *self,
-                                gboolean value_network_initiated_alert_reporting,
-                                GError **error);
-

Set the 'Network Initiated Alert Reporting' field in the message.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessageOmaSetEventReportInput.

 

value_network_initiated_alert_reporting

a gboolean.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if value -was successfully set, FALSE otherwise.

-
-

Since: 1.6

-
-
-
-

qmi_message_oma_set_event_report_output_ref ()

-
QmiMessageOmaSetEventReportOutput *
-qmi_message_oma_set_event_report_output_ref
-                               (QmiMessageOmaSetEventReportOutput *self);
-

Atomically increments the reference count of self - by one.

-
-

Parameters

-
----- - - - - - -

self

a QmiMessageOmaSetEventReportOutput.

 
-
-
-

Returns

-

the new reference to self -.

-
-

Since: 1.6

-
-
-
-

qmi_message_oma_set_event_report_output_unref ()

-
void
-qmi_message_oma_set_event_report_output_unref
-                               (QmiMessageOmaSetEventReportOutput *self);
-

Atomically decrements the reference count of self - by one. -If the reference count drops to 0, self - is completely disposed.

-
-

Parameters

-
----- - - - - - -

self

a QmiMessageOmaSetEventReportOutput.

 
-
-

Since: 1.6

-
-
-
-

qmi_message_oma_set_event_report_output_get_result ()

-
gboolean
-qmi_message_oma_set_event_report_output_get_result
-                               (QmiMessageOmaSetEventReportOutput *self,
-                                GError **error);
-

Get the result of the QMI operation.

-
-

Parameters

-
----- - - - - - - - - - - - - -

self

a QmiMessageOmaSetEventReportOutput.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the QMI operation succeeded, FALSE if error -is set.

-
-

Since: 1.6

-
-
-
-

qmi_client_oma_set_event_report ()

-
void
-qmi_client_oma_set_event_report (QmiClientOma *self,
-                                 QmiMessageOmaSetEventReportInput *input,
-                                 guint timeout,
-                                 GCancellable *cancellable,
-                                 GAsyncReadyCallback callback,
-                                 gpointer user_data);
-

Asynchronously sends a Set Event Report request to the device.

-

When the operation is finished, callback - will be invoked in the thread-default main loop of the thread you are calling this method from.

-

You can then call qmi_client_oma_set_event_report_finish() to get the result of the operation.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

self

a QmiClientOma.

 

input

a QmiMessageOmaSetEventReportInput.

 

timeout

maximum time to wait for the method to complete, in seconds.

 

cancellable

a GCancellable or NULL.

 

callback

a GAsyncReadyCallback to call when the request is satisfied.

 

user_data

user data to pass to callback -.

 
-
-

Since: 1.6

-
-
-
-

qmi_client_oma_set_event_report_finish ()

-
QmiMessageOmaSetEventReportOutput *
-qmi_client_oma_set_event_report_finish
-                               (QmiClientOma *self,
-                                GAsyncResult *res,
-                                GError **error);
-

Finishes an async operation started with qmi_client_oma_set_event_report().

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiClientOma.

 

res

the GAsyncResult obtained from the GAsyncReadyCallback passed to qmi_client_oma_set_event_report().

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

a QmiMessageOmaSetEventReportOutput, or NULL if error -is set. The returned value should be freed with qmi_message_oma_set_event_report_output_unref().

-
-

Since: 1.6

-
-
-
-

Types and Values

-
-

QmiMessageOmaSetEventReportInput

-
typedef struct _QmiMessageOmaSetEventReportInput QmiMessageOmaSetEventReportInput;
-

The QmiMessageOmaSetEventReportInput structure contains private data and should only be accessed -using the provided API.

-

Since: 1.6

-
-
-
-

QmiMessageOmaSetEventReportOutput

-
typedef struct _QmiMessageOmaSetEventReportOutput QmiMessageOmaSetEventReportOutput;
-

The QmiMessageOmaSetEventReportOutput structure contains private data and should only be accessed -using the provided API.

-

Since: 1.6

-
-
-
- - - \ No newline at end of file diff -Nru libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-OMA-Set-Event-Report-request.html libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-OMA-Set-Event-Report-request.html --- libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-OMA-Set-Event-Report-request.html 1970-01-01 01:00:00.000000000 +0100 +++ libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-OMA-Set-Event-Report-request.html 2019-01-08 15:19:02.000000000 +0100 @@ -0,0 +1,633 @@ + + + + +OMA Set Event Report request: libqmi-glib Reference Manual + + + + + + + + + + + + + + + + +
+
+
+ + +
+

OMA Set Event Report request

+

OMA Set Event Report request

+
+ +
+

Types and Values

+ +
+
+

Object Hierarchy

+
    GBoxed
+    ├── QmiMessageOmaSetEventReportInput
+    ╰── QmiMessageOmaSetEventReportOutput
+
+
+
+

Description

+
+
+

Functions

+
+

qmi_message_oma_set_event_report_input_new ()

+
QmiMessageOmaSetEventReportInput *
+qmi_message_oma_set_event_report_input_new
+                               (void);
+

Allocates a new QmiMessageOmaSetEventReportInput.

+
+

Returns

+

the newly created QmiMessageOmaSetEventReportInput. The returned value should be freed with qmi_message_oma_set_event_report_input_unref().

+
+

Since: 1.6

+
+
+
+

qmi_message_oma_set_event_report_input_ref ()

+
QmiMessageOmaSetEventReportInput *
+qmi_message_oma_set_event_report_input_ref
+                               (QmiMessageOmaSetEventReportInput *self);
+

Atomically increments the reference count of self + by one.

+
+

Parameters

+
+++++ + + + + + +

self

a QmiMessageOmaSetEventReportInput.

 
+
+
+

Returns

+

the new reference to self +.

+
+

Since: 1.6

+
+
+
+

qmi_message_oma_set_event_report_input_unref ()

+
void
+qmi_message_oma_set_event_report_input_unref
+                               (QmiMessageOmaSetEventReportInput *self);
+

Atomically decrements the reference count of self + by one. +If the reference count drops to 0, self + is completely disposed.

+
+

Parameters

+
+++++ + + + + + +

self

a QmiMessageOmaSetEventReportInput.

 
+
+

Since: 1.6

+
+
+
+

qmi_message_oma_set_event_report_input_get_session_state_reporting ()

+
gboolean
+qmi_message_oma_set_event_report_input_get_session_state_reporting
+                               (QmiMessageOmaSetEventReportInput *self,
+                                gboolean *value_session_state_reporting,
+                                GError **error);
+

Get the 'Session State Reporting' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageOmaSetEventReportInput.

 

value_session_state_reporting

a placeholder for the output gboolean, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.6

+
+
+
+

qmi_message_oma_set_event_report_input_set_session_state_reporting ()

+
gboolean
+qmi_message_oma_set_event_report_input_set_session_state_reporting
+                               (QmiMessageOmaSetEventReportInput *self,
+                                gboolean value_session_state_reporting,
+                                GError **error);
+

Set the 'Session State Reporting' field in the message.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageOmaSetEventReportInput.

 

value_session_state_reporting

a gboolean.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if value +was successfully set, FALSE otherwise.

+
+

Since: 1.6

+
+
+
+

qmi_message_oma_set_event_report_input_get_network_initiated_alert_reporting ()

+
gboolean
+qmi_message_oma_set_event_report_input_get_network_initiated_alert_reporting
+                               (QmiMessageOmaSetEventReportInput *self,
+                                gboolean *value_network_initiated_alert_reporting,
+                                GError **error);
+

Get the 'Network Initiated Alert Reporting' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageOmaSetEventReportInput.

 

value_network_initiated_alert_reporting

a placeholder for the output gboolean, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.6

+
+
+
+

qmi_message_oma_set_event_report_input_set_network_initiated_alert_reporting ()

+
gboolean
+qmi_message_oma_set_event_report_input_set_network_initiated_alert_reporting
+                               (QmiMessageOmaSetEventReportInput *self,
+                                gboolean value_network_initiated_alert_reporting,
+                                GError **error);
+

Set the 'Network Initiated Alert Reporting' field in the message.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageOmaSetEventReportInput.

 

value_network_initiated_alert_reporting

a gboolean.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if value +was successfully set, FALSE otherwise.

+
+

Since: 1.6

+
+
+
+

qmi_message_oma_set_event_report_output_ref ()

+
QmiMessageOmaSetEventReportOutput *
+qmi_message_oma_set_event_report_output_ref
+                               (QmiMessageOmaSetEventReportOutput *self);
+

Atomically increments the reference count of self + by one.

+
+

Parameters

+
+++++ + + + + + +

self

a QmiMessageOmaSetEventReportOutput.

 
+
+
+

Returns

+

the new reference to self +.

+
+

Since: 1.6

+
+
+
+

qmi_message_oma_set_event_report_output_unref ()

+
void
+qmi_message_oma_set_event_report_output_unref
+                               (QmiMessageOmaSetEventReportOutput *self);
+

Atomically decrements the reference count of self + by one. +If the reference count drops to 0, self + is completely disposed.

+
+

Parameters

+
+++++ + + + + + +

self

a QmiMessageOmaSetEventReportOutput.

 
+
+

Since: 1.6

+
+
+
+

qmi_message_oma_set_event_report_output_get_result ()

+
gboolean
+qmi_message_oma_set_event_report_output_get_result
+                               (QmiMessageOmaSetEventReportOutput *self,
+                                GError **error);
+

Get the result of the QMI operation.

+
+

Parameters

+
+++++ + + + + + + + + + + + + +

self

a QmiMessageOmaSetEventReportOutput.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the QMI operation succeeded, FALSE if error +is set.

+
+

Since: 1.6

+
+
+
+

qmi_client_oma_set_event_report ()

+
void
+qmi_client_oma_set_event_report (QmiClientOma *self,
+                                 QmiMessageOmaSetEventReportInput *input,
+                                 guint timeout,
+                                 GCancellable *cancellable,
+                                 GAsyncReadyCallback callback,
+                                 gpointer user_data);
+

Asynchronously sends a Set Event Report request to the device.

+

When the operation is finished, callback + will be invoked in the thread-default main loop of the thread you are calling this method from.

+

You can then call qmi_client_oma_set_event_report_finish() to get the result of the operation.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

self

a QmiClientOma.

 

input

a QmiMessageOmaSetEventReportInput.

 

timeout

maximum time to wait for the method to complete, in seconds.

 

cancellable

a GCancellable or NULL.

 

callback

a GAsyncReadyCallback to call when the request is satisfied.

 

user_data

user data to pass to callback +.

 
+
+

Since: 1.6

+
+
+
+

qmi_client_oma_set_event_report_finish ()

+
QmiMessageOmaSetEventReportOutput *
+qmi_client_oma_set_event_report_finish
+                               (QmiClientOma *self,
+                                GAsyncResult *res,
+                                GError **error);
+

Finishes an async operation started with qmi_client_oma_set_event_report().

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiClientOma.

 

res

the GAsyncResult obtained from the GAsyncReadyCallback passed to qmi_client_oma_set_event_report().

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

a QmiMessageOmaSetEventReportOutput, or NULL if error +is set. The returned value should be freed with qmi_message_oma_set_event_report_output_unref().

+
+

Since: 1.6

+
+
+
+

Types and Values

+
+

QmiMessageOmaSetEventReportInput

+
typedef struct _QmiMessageOmaSetEventReportInput QmiMessageOmaSetEventReportInput;
+

The QmiMessageOmaSetEventReportInput structure contains private data and should only be accessed +using the provided API.

+

Since: 1.6

+
+
+
+

QmiMessageOmaSetEventReportOutput

+
typedef struct _QmiMessageOmaSetEventReportOutput QmiMessageOmaSetEventReportOutput;
+

The QmiMessageOmaSetEventReportOutput structure contains private data and should only be accessed +using the provided API.

+

Since: 1.6

+
+
+
+ + + \ No newline at end of file diff -Nru libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-OMA-Set-Feature-Setting.html libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-OMA-Set-Feature-Setting.html --- libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-OMA-Set-Feature-Setting.html 2017-03-22 12:28:28.000000000 +0100 +++ libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-OMA-Set-Feature-Setting.html 1970-01-01 01:00:00.000000000 +0100 @@ -1,735 +0,0 @@ - - - - -OMA Set Feature Setting: libqmi-glib Reference Manual - - - - - - - - - - - - - - - - -
-
-
- - -
-

OMA Set Feature Setting

-

OMA Set Feature Setting

-
- -
-

Types and Values

- -
-
-

Object Hierarchy

-
    GBoxed
-    ├── QmiMessageOmaSetFeatureSettingInput
-    ╰── QmiMessageOmaSetFeatureSettingOutput
-
-
-
-

Description

-
-
-

Functions

-
-

qmi_message_oma_set_feature_setting_input_new ()

-
QmiMessageOmaSetFeatureSettingInput *
-qmi_message_oma_set_feature_setting_input_new
-                               (void);
-

Allocates a new QmiMessageOmaSetFeatureSettingInput.

-
-

Returns

-

the newly created QmiMessageOmaSetFeatureSettingInput. The returned value should be freed with qmi_message_oma_set_feature_setting_input_unref().

-
-

Since: 1.6

-
-
-
-

qmi_message_oma_set_feature_setting_input_ref ()

-
QmiMessageOmaSetFeatureSettingInput *
-qmi_message_oma_set_feature_setting_input_ref
-                               (QmiMessageOmaSetFeatureSettingInput *self);
-

Atomically increments the reference count of self - by one.

-
-

Parameters

-
----- - - - - - -

self

a QmiMessageOmaSetFeatureSettingInput.

 
-
-
-

Returns

-

the new reference to self -.

-
-

Since: 1.6

-
-
-
-

qmi_message_oma_set_feature_setting_input_unref ()

-
void
-qmi_message_oma_set_feature_setting_input_unref
-                               (QmiMessageOmaSetFeatureSettingInput *self);
-

Atomically decrements the reference count of self - by one. -If the reference count drops to 0, self - is completely disposed.

-
-

Parameters

-
----- - - - - - -

self

a QmiMessageOmaSetFeatureSettingInput.

 
-
-

Since: 1.6

-
-
-
-

qmi_message_oma_set_feature_setting_input_get_hfa_feature_config ()

-
gboolean
-qmi_message_oma_set_feature_setting_input_get_hfa_feature_config
-                               (QmiMessageOmaSetFeatureSettingInput *self,
-                                gboolean *value_hfa_feature_config,
-                                GError **error);
-

Get the 'HFA Feature Config' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessageOmaSetFeatureSettingInput.

 

value_hfa_feature_config

a placeholder for the output gboolean, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.6

-
-
-
-

qmi_message_oma_set_feature_setting_input_set_hfa_feature_config ()

-
gboolean
-qmi_message_oma_set_feature_setting_input_set_hfa_feature_config
-                               (QmiMessageOmaSetFeatureSettingInput *self,
-                                gboolean value_hfa_feature_config,
-                                GError **error);
-

Set the 'HFA Feature Config' field in the message.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessageOmaSetFeatureSettingInput.

 

value_hfa_feature_config

a gboolean.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if value -was successfully set, FALSE otherwise.

-
-

Since: 1.6

-
-
-
-

qmi_message_oma_set_feature_setting_input_get_prl_update_service_config ()

-
gboolean
-qmi_message_oma_set_feature_setting_input_get_prl_update_service_config
-                               (QmiMessageOmaSetFeatureSettingInput *self,
-                                gboolean *value_prl_update_service_config,
-                                GError **error);
-

Get the 'PRL Update Service Config' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessageOmaSetFeatureSettingInput.

 

value_prl_update_service_config

a placeholder for the output gboolean, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.6

-
-
-
-

qmi_message_oma_set_feature_setting_input_set_prl_update_service_config ()

-
gboolean
-qmi_message_oma_set_feature_setting_input_set_prl_update_service_config
-                               (QmiMessageOmaSetFeatureSettingInput *self,
-                                gboolean value_prl_update_service_config,
-                                GError **error);
-

Set the 'PRL Update Service Config' field in the message.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessageOmaSetFeatureSettingInput.

 

value_prl_update_service_config

a gboolean.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if value -was successfully set, FALSE otherwise.

-
-

Since: 1.6

-
-
-
-

qmi_message_oma_set_feature_setting_input_get_device_provisioning_service_update_config ()

-
gboolean
-qmi_message_oma_set_feature_setting_input_get_device_provisioning_service_update_config
-                               (QmiMessageOmaSetFeatureSettingInput *self,
-                                gboolean *value_device_provisioning_service_update_config,
-                                GError **error);
-

Get the 'Device Provisioning Service Update Config' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessageOmaSetFeatureSettingInput.

 

value_device_provisioning_service_update_config

a placeholder for the output gboolean, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.6

-
-
-
-

qmi_message_oma_set_feature_setting_input_set_device_provisioning_service_update_config ()

-
gboolean
-qmi_message_oma_set_feature_setting_input_set_device_provisioning_service_update_config
-                               (QmiMessageOmaSetFeatureSettingInput *self,
-                                gboolean value_device_provisioning_service_update_config,
-                                GError **error);
-

Set the 'Device Provisioning Service Update Config' field in the message.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessageOmaSetFeatureSettingInput.

 

value_device_provisioning_service_update_config

a gboolean.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if value -was successfully set, FALSE otherwise.

-
-

Since: 1.6

-
-
-
-

qmi_message_oma_set_feature_setting_output_ref ()

-
QmiMessageOmaSetFeatureSettingOutput *
-qmi_message_oma_set_feature_setting_output_ref
-                               (QmiMessageOmaSetFeatureSettingOutput *self);
-

Atomically increments the reference count of self - by one.

-
-

Parameters

-
----- - - - - - -

self

a QmiMessageOmaSetFeatureSettingOutput.

 
-
-
-

Returns

-

the new reference to self -.

-
-

Since: 1.6

-
-
-
-

qmi_message_oma_set_feature_setting_output_unref ()

-
void
-qmi_message_oma_set_feature_setting_output_unref
-                               (QmiMessageOmaSetFeatureSettingOutput *self);
-

Atomically decrements the reference count of self - by one. -If the reference count drops to 0, self - is completely disposed.

-
-

Parameters

-
----- - - - - - -

self

a QmiMessageOmaSetFeatureSettingOutput.

 
-
-

Since: 1.6

-
-
-
-

qmi_message_oma_set_feature_setting_output_get_result ()

-
gboolean
-qmi_message_oma_set_feature_setting_output_get_result
-                               (QmiMessageOmaSetFeatureSettingOutput *self,
-                                GError **error);
-

Get the result of the QMI operation.

-
-

Parameters

-
----- - - - - - - - - - - - - -

self

a QmiMessageOmaSetFeatureSettingOutput.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the QMI operation succeeded, FALSE if error -is set.

-
-

Since: 1.6

-
-
-
-

qmi_client_oma_set_feature_setting ()

-
void
-qmi_client_oma_set_feature_setting (QmiClientOma *self,
-                                    QmiMessageOmaSetFeatureSettingInput *input,
-                                    guint timeout,
-                                    GCancellable *cancellable,
-                                    GAsyncReadyCallback callback,
-                                    gpointer user_data);
-

Asynchronously sends a Set Feature Setting request to the device.

-

When the operation is finished, callback - will be invoked in the thread-default main loop of the thread you are calling this method from.

-

You can then call qmi_client_oma_set_feature_setting_finish() to get the result of the operation.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

self

a QmiClientOma.

 

input

a QmiMessageOmaSetFeatureSettingInput.

 

timeout

maximum time to wait for the method to complete, in seconds.

 

cancellable

a GCancellable or NULL.

 

callback

a GAsyncReadyCallback to call when the request is satisfied.

 

user_data

user data to pass to callback -.

 
-
-

Since: 1.6

-
-
-
-

qmi_client_oma_set_feature_setting_finish ()

-
QmiMessageOmaSetFeatureSettingOutput *
-qmi_client_oma_set_feature_setting_finish
-                               (QmiClientOma *self,
-                                GAsyncResult *res,
-                                GError **error);
-

Finishes an async operation started with qmi_client_oma_set_feature_setting().

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiClientOma.

 

res

the GAsyncResult obtained from the GAsyncReadyCallback passed to qmi_client_oma_set_feature_setting().

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

a QmiMessageOmaSetFeatureSettingOutput, or NULL if error -is set. The returned value should be freed with qmi_message_oma_set_feature_setting_output_unref().

-
-

Since: 1.6

-
-
-
-

Types and Values

-
-

QmiMessageOmaSetFeatureSettingInput

-
typedef struct _QmiMessageOmaSetFeatureSettingInput QmiMessageOmaSetFeatureSettingInput;
-

The QmiMessageOmaSetFeatureSettingInput structure contains private data and should only be accessed -using the provided API.

-

Since: 1.6

-
-
-
-

QmiMessageOmaSetFeatureSettingOutput

-
typedef struct _QmiMessageOmaSetFeatureSettingOutput QmiMessageOmaSetFeatureSettingOutput;
-

The QmiMessageOmaSetFeatureSettingOutput structure contains private data and should only be accessed -using the provided API.

-

Since: 1.6

-
-
-
- - - \ No newline at end of file diff -Nru libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-OMA-Set-Feature-Setting-request.html libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-OMA-Set-Feature-Setting-request.html --- libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-OMA-Set-Feature-Setting-request.html 1970-01-01 01:00:00.000000000 +0100 +++ libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-OMA-Set-Feature-Setting-request.html 2019-01-08 15:19:02.000000000 +0100 @@ -0,0 +1,735 @@ + + + + +OMA Set Feature Setting request: libqmi-glib Reference Manual + + + + + + + + + + + + + + + + +
+
+
+ + +
+

OMA Set Feature Setting request

+

OMA Set Feature Setting request

+
+ +
+

Types and Values

+ +
+
+

Object Hierarchy

+
    GBoxed
+    ├── QmiMessageOmaSetFeatureSettingInput
+    ╰── QmiMessageOmaSetFeatureSettingOutput
+
+
+
+

Description

+
+
+

Functions

+
+

qmi_message_oma_set_feature_setting_input_new ()

+
QmiMessageOmaSetFeatureSettingInput *
+qmi_message_oma_set_feature_setting_input_new
+                               (void);
+

Allocates a new QmiMessageOmaSetFeatureSettingInput.

+
+

Returns

+

the newly created QmiMessageOmaSetFeatureSettingInput. The returned value should be freed with qmi_message_oma_set_feature_setting_input_unref().

+
+

Since: 1.6

+
+
+
+

qmi_message_oma_set_feature_setting_input_ref ()

+
QmiMessageOmaSetFeatureSettingInput *
+qmi_message_oma_set_feature_setting_input_ref
+                               (QmiMessageOmaSetFeatureSettingInput *self);
+

Atomically increments the reference count of self + by one.

+
+

Parameters

+
+++++ + + + + + +

self

a QmiMessageOmaSetFeatureSettingInput.

 
+
+
+

Returns

+

the new reference to self +.

+
+

Since: 1.6

+
+
+
+

qmi_message_oma_set_feature_setting_input_unref ()

+
void
+qmi_message_oma_set_feature_setting_input_unref
+                               (QmiMessageOmaSetFeatureSettingInput *self);
+

Atomically decrements the reference count of self + by one. +If the reference count drops to 0, self + is completely disposed.

+
+

Parameters

+
+++++ + + + + + +

self

a QmiMessageOmaSetFeatureSettingInput.

 
+
+

Since: 1.6

+
+
+
+

qmi_message_oma_set_feature_setting_input_get_hfa_feature_config ()

+
gboolean
+qmi_message_oma_set_feature_setting_input_get_hfa_feature_config
+                               (QmiMessageOmaSetFeatureSettingInput *self,
+                                gboolean *value_hfa_feature_config,
+                                GError **error);
+

Get the 'HFA Feature Config' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageOmaSetFeatureSettingInput.

 

value_hfa_feature_config

a placeholder for the output gboolean, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.6

+
+
+
+

qmi_message_oma_set_feature_setting_input_set_hfa_feature_config ()

+
gboolean
+qmi_message_oma_set_feature_setting_input_set_hfa_feature_config
+                               (QmiMessageOmaSetFeatureSettingInput *self,
+                                gboolean value_hfa_feature_config,
+                                GError **error);
+

Set the 'HFA Feature Config' field in the message.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageOmaSetFeatureSettingInput.

 

value_hfa_feature_config

a gboolean.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if value +was successfully set, FALSE otherwise.

+
+

Since: 1.6

+
+
+
+

qmi_message_oma_set_feature_setting_input_get_prl_update_service_config ()

+
gboolean
+qmi_message_oma_set_feature_setting_input_get_prl_update_service_config
+                               (QmiMessageOmaSetFeatureSettingInput *self,
+                                gboolean *value_prl_update_service_config,
+                                GError **error);
+

Get the 'PRL Update Service Config' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageOmaSetFeatureSettingInput.

 

value_prl_update_service_config

a placeholder for the output gboolean, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.6

+
+
+
+

qmi_message_oma_set_feature_setting_input_set_prl_update_service_config ()

+
gboolean
+qmi_message_oma_set_feature_setting_input_set_prl_update_service_config
+                               (QmiMessageOmaSetFeatureSettingInput *self,
+                                gboolean value_prl_update_service_config,
+                                GError **error);
+

Set the 'PRL Update Service Config' field in the message.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageOmaSetFeatureSettingInput.

 

value_prl_update_service_config

a gboolean.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if value +was successfully set, FALSE otherwise.

+
+

Since: 1.6

+
+
+
+

qmi_message_oma_set_feature_setting_input_get_device_provisioning_service_update_config ()

+
gboolean
+qmi_message_oma_set_feature_setting_input_get_device_provisioning_service_update_config
+                               (QmiMessageOmaSetFeatureSettingInput *self,
+                                gboolean *value_device_provisioning_service_update_config,
+                                GError **error);
+

Get the 'Device Provisioning Service Update Config' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageOmaSetFeatureSettingInput.

 

value_device_provisioning_service_update_config

a placeholder for the output gboolean, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.6

+
+
+
+

qmi_message_oma_set_feature_setting_input_set_device_provisioning_service_update_config ()

+
gboolean
+qmi_message_oma_set_feature_setting_input_set_device_provisioning_service_update_config
+                               (QmiMessageOmaSetFeatureSettingInput *self,
+                                gboolean value_device_provisioning_service_update_config,
+                                GError **error);
+

Set the 'Device Provisioning Service Update Config' field in the message.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageOmaSetFeatureSettingInput.

 

value_device_provisioning_service_update_config

a gboolean.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if value +was successfully set, FALSE otherwise.

+
+

Since: 1.6

+
+
+
+

qmi_message_oma_set_feature_setting_output_ref ()

+
QmiMessageOmaSetFeatureSettingOutput *
+qmi_message_oma_set_feature_setting_output_ref
+                               (QmiMessageOmaSetFeatureSettingOutput *self);
+

Atomically increments the reference count of self + by one.

+
+

Parameters

+
+++++ + + + + + +

self

a QmiMessageOmaSetFeatureSettingOutput.

 
+
+
+

Returns

+

the new reference to self +.

+
+

Since: 1.6

+
+
+
+

qmi_message_oma_set_feature_setting_output_unref ()

+
void
+qmi_message_oma_set_feature_setting_output_unref
+                               (QmiMessageOmaSetFeatureSettingOutput *self);
+

Atomically decrements the reference count of self + by one. +If the reference count drops to 0, self + is completely disposed.

+
+

Parameters

+
+++++ + + + + + +

self

a QmiMessageOmaSetFeatureSettingOutput.

 
+
+

Since: 1.6

+
+
+
+

qmi_message_oma_set_feature_setting_output_get_result ()

+
gboolean
+qmi_message_oma_set_feature_setting_output_get_result
+                               (QmiMessageOmaSetFeatureSettingOutput *self,
+                                GError **error);
+

Get the result of the QMI operation.

+
+

Parameters

+
+++++ + + + + + + + + + + + + +

self

a QmiMessageOmaSetFeatureSettingOutput.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the QMI operation succeeded, FALSE if error +is set.

+
+

Since: 1.6

+
+
+
+

qmi_client_oma_set_feature_setting ()

+
void
+qmi_client_oma_set_feature_setting (QmiClientOma *self,
+                                    QmiMessageOmaSetFeatureSettingInput *input,
+                                    guint timeout,
+                                    GCancellable *cancellable,
+                                    GAsyncReadyCallback callback,
+                                    gpointer user_data);
+

Asynchronously sends a Set Feature Setting request to the device.

+

When the operation is finished, callback + will be invoked in the thread-default main loop of the thread you are calling this method from.

+

You can then call qmi_client_oma_set_feature_setting_finish() to get the result of the operation.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

self

a QmiClientOma.

 

input

a QmiMessageOmaSetFeatureSettingInput.

 

timeout

maximum time to wait for the method to complete, in seconds.

 

cancellable

a GCancellable or NULL.

 

callback

a GAsyncReadyCallback to call when the request is satisfied.

 

user_data

user data to pass to callback +.

 
+
+

Since: 1.6

+
+
+
+

qmi_client_oma_set_feature_setting_finish ()

+
QmiMessageOmaSetFeatureSettingOutput *
+qmi_client_oma_set_feature_setting_finish
+                               (QmiClientOma *self,
+                                GAsyncResult *res,
+                                GError **error);
+

Finishes an async operation started with qmi_client_oma_set_feature_setting().

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiClientOma.

 

res

the GAsyncResult obtained from the GAsyncReadyCallback passed to qmi_client_oma_set_feature_setting().

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

a QmiMessageOmaSetFeatureSettingOutput, or NULL if error +is set. The returned value should be freed with qmi_message_oma_set_feature_setting_output_unref().

+
+

Since: 1.6

+
+
+
+

Types and Values

+
+

QmiMessageOmaSetFeatureSettingInput

+
typedef struct _QmiMessageOmaSetFeatureSettingInput QmiMessageOmaSetFeatureSettingInput;
+

The QmiMessageOmaSetFeatureSettingInput structure contains private data and should only be accessed +using the provided API.

+

Since: 1.6

+
+
+
+

QmiMessageOmaSetFeatureSettingOutput

+
typedef struct _QmiMessageOmaSetFeatureSettingOutput QmiMessageOmaSetFeatureSettingOutput;
+

The QmiMessageOmaSetFeatureSettingOutput structure contains private data and should only be accessed +using the provided API.

+

Since: 1.6

+
+
+
+ + + \ No newline at end of file diff -Nru libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-OMA-Start-Session.html libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-OMA-Start-Session.html --- libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-OMA-Start-Session.html 2017-03-22 12:28:29.000000000 +0100 +++ libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-OMA-Start-Session.html 1970-01-01 01:00:00.000000000 +0100 @@ -1,530 +0,0 @@ - - - - -OMA Start Session: libqmi-glib Reference Manual - - - - - - - - - - - - - - - - -
-
-
- - -
-

OMA Start Session

-

OMA Start Session

-
- -
-

Types and Values

- -
-
-

Object Hierarchy

-
    GBoxed
-    ├── QmiMessageOmaStartSessionInput
-    ╰── QmiMessageOmaStartSessionOutput
-
-
-
-

Description

-
-
-

Functions

-
-

qmi_message_oma_start_session_input_new ()

-
QmiMessageOmaStartSessionInput *
-qmi_message_oma_start_session_input_new
-                               (void);
-

Allocates a new QmiMessageOmaStartSessionInput.

-
-

Returns

-

the newly created QmiMessageOmaStartSessionInput. The returned value should be freed with qmi_message_oma_start_session_input_unref().

-
-

Since: 1.6

-
-
-
-

qmi_message_oma_start_session_input_ref ()

-
QmiMessageOmaStartSessionInput *
-qmi_message_oma_start_session_input_ref
-                               (QmiMessageOmaStartSessionInput *self);
-

Atomically increments the reference count of self - by one.

-
-

Parameters

-
----- - - - - - -

self

a QmiMessageOmaStartSessionInput.

 
-
-
-

Returns

-

the new reference to self -.

-
-

Since: 1.6

-
-
-
-

qmi_message_oma_start_session_input_unref ()

-
void
-qmi_message_oma_start_session_input_unref
-                               (QmiMessageOmaStartSessionInput *self);
-

Atomically decrements the reference count of self - by one. -If the reference count drops to 0, self - is completely disposed.

-
-

Parameters

-
----- - - - - - -

self

a QmiMessageOmaStartSessionInput.

 
-
-

Since: 1.6

-
-
-
-

qmi_message_oma_start_session_input_get_session_type ()

-
gboolean
-qmi_message_oma_start_session_input_get_session_type
-                               (QmiMessageOmaStartSessionInput *self,
-                                QmiOmaSessionType *value_session_type,
-                                GError **error);
-

Get the 'Session Type' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessageOmaStartSessionInput.

 

value_session_type

a placeholder for the output QmiOmaSessionType, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.6

-
-
-
-

qmi_message_oma_start_session_input_set_session_type ()

-
gboolean
-qmi_message_oma_start_session_input_set_session_type
-                               (QmiMessageOmaStartSessionInput *self,
-                                QmiOmaSessionType value_session_type,
-                                GError **error);
-

Set the 'Session Type' field in the message.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessageOmaStartSessionInput.

 

value_session_type

a QmiOmaSessionType.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if value -was successfully set, FALSE otherwise.

-
-

Since: 1.6

-
-
-
-

qmi_message_oma_start_session_output_ref ()

-
QmiMessageOmaStartSessionOutput *
-qmi_message_oma_start_session_output_ref
-                               (QmiMessageOmaStartSessionOutput *self);
-

Atomically increments the reference count of self - by one.

-
-

Parameters

-
----- - - - - - -

self

a QmiMessageOmaStartSessionOutput.

 
-
-
-

Returns

-

the new reference to self -.

-
-

Since: 1.6

-
-
-
-

qmi_message_oma_start_session_output_unref ()

-
void
-qmi_message_oma_start_session_output_unref
-                               (QmiMessageOmaStartSessionOutput *self);
-

Atomically decrements the reference count of self - by one. -If the reference count drops to 0, self - is completely disposed.

-
-

Parameters

-
----- - - - - - -

self

a QmiMessageOmaStartSessionOutput.

 
-
-

Since: 1.6

-
-
-
-

qmi_message_oma_start_session_output_get_result ()

-
gboolean
-qmi_message_oma_start_session_output_get_result
-                               (QmiMessageOmaStartSessionOutput *self,
-                                GError **error);
-

Get the result of the QMI operation.

-
-

Parameters

-
----- - - - - - - - - - - - - -

self

a QmiMessageOmaStartSessionOutput.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the QMI operation succeeded, FALSE if error -is set.

-
-

Since: 1.6

-
-
-
-

qmi_client_oma_start_session ()

-
void
-qmi_client_oma_start_session (QmiClientOma *self,
-                              QmiMessageOmaStartSessionInput *input,
-                              guint timeout,
-                              GCancellable *cancellable,
-                              GAsyncReadyCallback callback,
-                              gpointer user_data);
-

Asynchronously sends a Start Session request to the device.

-

When the operation is finished, callback - will be invoked in the thread-default main loop of the thread you are calling this method from.

-

You can then call qmi_client_oma_start_session_finish() to get the result of the operation.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

self

a QmiClientOma.

 

input

a QmiMessageOmaStartSessionInput.

 

timeout

maximum time to wait for the method to complete, in seconds.

 

cancellable

a GCancellable or NULL.

 

callback

a GAsyncReadyCallback to call when the request is satisfied.

 

user_data

user data to pass to callback -.

 
-
-

Since: 1.6

-
-
-
-

qmi_client_oma_start_session_finish ()

-
QmiMessageOmaStartSessionOutput *
-qmi_client_oma_start_session_finish (QmiClientOma *self,
-                                     GAsyncResult *res,
-                                     GError **error);
-

Finishes an async operation started with qmi_client_oma_start_session().

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiClientOma.

 

res

the GAsyncResult obtained from the GAsyncReadyCallback passed to qmi_client_oma_start_session().

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

a QmiMessageOmaStartSessionOutput, or NULL if error -is set. The returned value should be freed with qmi_message_oma_start_session_output_unref().

-
-

Since: 1.6

-
-
-
-

Types and Values

-
-

QmiMessageOmaStartSessionInput

-
typedef struct _QmiMessageOmaStartSessionInput QmiMessageOmaStartSessionInput;
-

The QmiMessageOmaStartSessionInput structure contains private data and should only be accessed -using the provided API.

-

Since: 1.6

-
-
-
-

QmiMessageOmaStartSessionOutput

-
typedef struct _QmiMessageOmaStartSessionOutput QmiMessageOmaStartSessionOutput;
-

The QmiMessageOmaStartSessionOutput structure contains private data and should only be accessed -using the provided API.

-

Since: 1.6

-
-
-
- - - \ No newline at end of file diff -Nru libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-OMA-Start-Session-request.html libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-OMA-Start-Session-request.html --- libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-OMA-Start-Session-request.html 1970-01-01 01:00:00.000000000 +0100 +++ libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-OMA-Start-Session-request.html 2019-01-08 15:19:02.000000000 +0100 @@ -0,0 +1,530 @@ + + + + +OMA Start Session request: libqmi-glib Reference Manual + + + + + + + + + + + + + + + + +
+
+
+ + +
+

OMA Start Session request

+

OMA Start Session request

+
+ +
+

Types and Values

+ +
+
+

Object Hierarchy

+
    GBoxed
+    ├── QmiMessageOmaStartSessionInput
+    ╰── QmiMessageOmaStartSessionOutput
+
+
+
+

Description

+
+
+

Functions

+
+

qmi_message_oma_start_session_input_new ()

+
QmiMessageOmaStartSessionInput *
+qmi_message_oma_start_session_input_new
+                               (void);
+

Allocates a new QmiMessageOmaStartSessionInput.

+
+

Returns

+

the newly created QmiMessageOmaStartSessionInput. The returned value should be freed with qmi_message_oma_start_session_input_unref().

+
+

Since: 1.6

+
+
+
+

qmi_message_oma_start_session_input_ref ()

+
QmiMessageOmaStartSessionInput *
+qmi_message_oma_start_session_input_ref
+                               (QmiMessageOmaStartSessionInput *self);
+

Atomically increments the reference count of self + by one.

+
+

Parameters

+
+++++ + + + + + +

self

a QmiMessageOmaStartSessionInput.

 
+
+
+

Returns

+

the new reference to self +.

+
+

Since: 1.6

+
+
+
+

qmi_message_oma_start_session_input_unref ()

+
void
+qmi_message_oma_start_session_input_unref
+                               (QmiMessageOmaStartSessionInput *self);
+

Atomically decrements the reference count of self + by one. +If the reference count drops to 0, self + is completely disposed.

+
+

Parameters

+
+++++ + + + + + +

self

a QmiMessageOmaStartSessionInput.

 
+
+

Since: 1.6

+
+
+
+

qmi_message_oma_start_session_input_get_session_type ()

+
gboolean
+qmi_message_oma_start_session_input_get_session_type
+                               (QmiMessageOmaStartSessionInput *self,
+                                QmiOmaSessionType *value_session_type,
+                                GError **error);
+

Get the 'Session Type' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageOmaStartSessionInput.

 

value_session_type

a placeholder for the output QmiOmaSessionType, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.6

+
+
+
+

qmi_message_oma_start_session_input_set_session_type ()

+
gboolean
+qmi_message_oma_start_session_input_set_session_type
+                               (QmiMessageOmaStartSessionInput *self,
+                                QmiOmaSessionType value_session_type,
+                                GError **error);
+

Set the 'Session Type' field in the message.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageOmaStartSessionInput.

 

value_session_type

a QmiOmaSessionType.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if value +was successfully set, FALSE otherwise.

+
+

Since: 1.6

+
+
+
+

qmi_message_oma_start_session_output_ref ()

+
QmiMessageOmaStartSessionOutput *
+qmi_message_oma_start_session_output_ref
+                               (QmiMessageOmaStartSessionOutput *self);
+

Atomically increments the reference count of self + by one.

+
+

Parameters

+
+++++ + + + + + +

self

a QmiMessageOmaStartSessionOutput.

 
+
+
+

Returns

+

the new reference to self +.

+
+

Since: 1.6

+
+
+
+

qmi_message_oma_start_session_output_unref ()

+
void
+qmi_message_oma_start_session_output_unref
+                               (QmiMessageOmaStartSessionOutput *self);
+

Atomically decrements the reference count of self + by one. +If the reference count drops to 0, self + is completely disposed.

+
+

Parameters

+
+++++ + + + + + +

self

a QmiMessageOmaStartSessionOutput.

 
+
+

Since: 1.6

+
+
+
+

qmi_message_oma_start_session_output_get_result ()

+
gboolean
+qmi_message_oma_start_session_output_get_result
+                               (QmiMessageOmaStartSessionOutput *self,
+                                GError **error);
+

Get the result of the QMI operation.

+
+

Parameters

+
+++++ + + + + + + + + + + + + +

self

a QmiMessageOmaStartSessionOutput.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the QMI operation succeeded, FALSE if error +is set.

+
+

Since: 1.6

+
+
+
+

qmi_client_oma_start_session ()

+
void
+qmi_client_oma_start_session (QmiClientOma *self,
+                              QmiMessageOmaStartSessionInput *input,
+                              guint timeout,
+                              GCancellable *cancellable,
+                              GAsyncReadyCallback callback,
+                              gpointer user_data);
+

Asynchronously sends a Start Session request to the device.

+

When the operation is finished, callback + will be invoked in the thread-default main loop of the thread you are calling this method from.

+

You can then call qmi_client_oma_start_session_finish() to get the result of the operation.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

self

a QmiClientOma.

 

input

a QmiMessageOmaStartSessionInput.

 

timeout

maximum time to wait for the method to complete, in seconds.

 

cancellable

a GCancellable or NULL.

 

callback

a GAsyncReadyCallback to call when the request is satisfied.

 

user_data

user data to pass to callback +.

 
+
+

Since: 1.6

+
+
+
+

qmi_client_oma_start_session_finish ()

+
QmiMessageOmaStartSessionOutput *
+qmi_client_oma_start_session_finish (QmiClientOma *self,
+                                     GAsyncResult *res,
+                                     GError **error);
+

Finishes an async operation started with qmi_client_oma_start_session().

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiClientOma.

 

res

the GAsyncResult obtained from the GAsyncReadyCallback passed to qmi_client_oma_start_session().

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

a QmiMessageOmaStartSessionOutput, or NULL if error +is set. The returned value should be freed with qmi_message_oma_start_session_output_unref().

+
+

Since: 1.6

+
+
+
+

Types and Values

+
+

QmiMessageOmaStartSessionInput

+
typedef struct _QmiMessageOmaStartSessionInput QmiMessageOmaStartSessionInput;
+

The QmiMessageOmaStartSessionInput structure contains private data and should only be accessed +using the provided API.

+

Since: 1.6

+
+
+
+

QmiMessageOmaStartSessionOutput

+
typedef struct _QmiMessageOmaStartSessionOutput QmiMessageOmaStartSessionOutput;
+

The QmiMessageOmaStartSessionOutput structure contains private data and should only be accessed +using the provided API.

+

Since: 1.6

+
+
+
+ + + \ No newline at end of file diff -Nru libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-PBM-enumerations-and-flags.html libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-PBM-enumerations-and-flags.html --- libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-PBM-enumerations-and-flags.html 2017-03-22 12:28:29.000000000 +0100 +++ libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-PBM-enumerations-and-flags.html 2019-01-08 15:19:02.000000000 +0100 @@ -3,12 +3,12 @@ PBM enumerations and flags: libqmi-glib Reference Manual - + - - + + @@ -21,7 +21,7 @@ Home Up Prev -Next +Next
@@ -91,9 +91,9 @@

Object Hierarchy

-
    GEnum
+
    GEnum
     ╰── QmiPbmSessionType
-    GFlags
+    GFlags
     ├── QmiPbmEventRegistrationFlag
     ╰── QmiPbmPhonebookType
 
@@ -130,7 +130,7 @@

Returns

-

a string with the list of nicknames, or NULL if none given. The returned value should be freed with g_free().

+

a string with the list of nicknames, or NULL if none given. The returned value should be freed with g_free().

[transfer full]

Since: 1.6

@@ -161,7 +161,7 @@

Returns

-

a string with the list of nicknames, or NULL if none given. The returned value should be freed with g_free().

+

a string with the list of nicknames, or NULL if none given. The returned value should be freed with g_free().

[transfer full]

Since: 1.6

@@ -190,7 +190,7 @@

Returns

-

a string with the nickname, or NULL if not found. Do not free the returned value.

+

a string with the nickname, or NULL if not found. Do not free the returned value.

[transfer none]

Since: 1.6

@@ -408,6 +408,6 @@ +
Generated by GTK-Doc V1.29 \ No newline at end of file diff -Nru libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-PBM-Get-All-Capabilities.html libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-PBM-Get-All-Capabilities.html --- libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-PBM-Get-All-Capabilities.html 2017-03-22 12:28:29.000000000 +0100 +++ libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-PBM-Get-All-Capabilities.html 1970-01-01 01:00:00.000000000 +0100 @@ -1,1137 +0,0 @@ - - - - -PBM Get All Capabilities: libqmi-glib Reference Manual - - - - - - - - - - - - - - - - -
-
-
- - -
-

PBM Get All Capabilities

-

PBM Get All Capabilities

-
- - -
-

Object Hierarchy

-
    GBoxed
-    ╰── QmiMessagePbmGetAllCapabilitiesOutput
-
-
-
-

Description

-
-
-

Functions

-
-

qmi_message_pbm_get_all_capabilities_output_ref ()

-
QmiMessagePbmGetAllCapabilitiesOutput *
-qmi_message_pbm_get_all_capabilities_output_ref
-                               (QmiMessagePbmGetAllCapabilitiesOutput *self);
-

Atomically increments the reference count of self - by one.

-
-

Parameters

-
----- - - - - - -

self

a QmiMessagePbmGetAllCapabilitiesOutput.

 
-
-
-

Returns

-

the new reference to self -.

-
-

Since: 1.6

-
-
-
-

qmi_message_pbm_get_all_capabilities_output_unref ()

-
void
-qmi_message_pbm_get_all_capabilities_output_unref
-                               (QmiMessagePbmGetAllCapabilitiesOutput *self);
-

Atomically decrements the reference count of self - by one. -If the reference count drops to 0, self - is completely disposed.

-
-

Parameters

-
----- - - - - - -

self

a QmiMessagePbmGetAllCapabilitiesOutput.

 
-
-

Since: 1.6

-
-
-
-

qmi_message_pbm_get_all_capabilities_output_get_result ()

-
gboolean
-qmi_message_pbm_get_all_capabilities_output_get_result
-                               (QmiMessagePbmGetAllCapabilitiesOutput *self,
-                                GError **error);
-

Get the result of the QMI operation.

-
-

Parameters

-
----- - - - - - - - - - - - - -

self

a QmiMessagePbmGetAllCapabilitiesOutput.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the QMI operation succeeded, FALSE if error -is set.

-
-

Since: 1.6

-
-
-
-

qmi_message_pbm_get_all_capabilities_output_get_capability_basic_information ()

-
gboolean
-qmi_message_pbm_get_all_capabilities_output_get_capability_basic_information
-                               (QmiMessagePbmGetAllCapabilitiesOutput *self,
-                                GArray **value_capability_basic_information,
-                                GError **error);
-

Get the 'Capability Basic Information' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessagePbmGetAllCapabilitiesOutput.

 

value_capability_basic_information

a placeholder for the output GArray of QmiMessagePbmGetAllCapabilitiesOutputCapabilityBasicInformationElement elements, or NULL if not required. Do not free it, it is owned by self -.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.6

-
-
-
-

qmi_message_pbm_get_all_capabilities_output_get_group_capability ()

-
gboolean
-qmi_message_pbm_get_all_capabilities_output_get_group_capability
-                               (QmiMessagePbmGetAllCapabilitiesOutput *self,
-                                GArray **value_group_capability,
-                                GError **error);
-

Get the 'Group Capability' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessagePbmGetAllCapabilitiesOutput.

 

value_group_capability

a placeholder for the output GArray of QmiMessagePbmGetAllCapabilitiesOutputGroupCapabilityElement elements, or NULL if not required. Do not free it, it is owned by self -.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.6

-
-
-
-

qmi_message_pbm_get_all_capabilities_output_get_additional_number_capability ()

-
gboolean
-qmi_message_pbm_get_all_capabilities_output_get_additional_number_capability
-                               (QmiMessagePbmGetAllCapabilitiesOutput *self,
-                                GArray **value_additional_number_capability,
-                                GError **error);
-

Get the 'Additional Number Capability' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessagePbmGetAllCapabilitiesOutput.

 

value_additional_number_capability

a placeholder for the output GArray of QmiMessagePbmGetAllCapabilitiesOutputAdditionalNumberCapabilityElement elements, or NULL if not required. Do not free it, it is owned by self -.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.6

-
-
-
-

qmi_message_pbm_get_all_capabilities_output_get_email_capability ()

-
gboolean
-qmi_message_pbm_get_all_capabilities_output_get_email_capability
-                               (QmiMessagePbmGetAllCapabilitiesOutput *self,
-                                GArray **value_email_capability,
-                                GError **error);
-

Get the 'Email Capability' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessagePbmGetAllCapabilitiesOutput.

 

value_email_capability

a placeholder for the output GArray of QmiMessagePbmGetAllCapabilitiesOutputEmailCapabilityElement elements, or NULL if not required. Do not free it, it is owned by self -.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.6

-
-
-
-

qmi_message_pbm_get_all_capabilities_output_get_second_name_capability ()

-
gboolean
-qmi_message_pbm_get_all_capabilities_output_get_second_name_capability
-                               (QmiMessagePbmGetAllCapabilitiesOutput *self,
-                                GArray **value_second_name_capability,
-                                GError **error);
-

Get the 'Second Name Capability' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessagePbmGetAllCapabilitiesOutput.

 

value_second_name_capability

a placeholder for the output GArray of QmiMessagePbmGetAllCapabilitiesOutputSecondNameCapabilityElement elements, or NULL if not required. Do not free it, it is owned by self -.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.6

-
-
-
-

qmi_message_pbm_get_all_capabilities_output_get_hidden_records_capability ()

-
gboolean
-qmi_message_pbm_get_all_capabilities_output_get_hidden_records_capability
-                               (QmiMessagePbmGetAllCapabilitiesOutput *self,
-                                GArray **value_hidden_records_capability,
-                                GError **error);
-

Get the 'Hidden Records Capability' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessagePbmGetAllCapabilitiesOutput.

 

value_hidden_records_capability

a placeholder for the output GArray of QmiMessagePbmGetAllCapabilitiesOutputHiddenRecordsCapabilityElement elements, or NULL if not required. Do not free it, it is owned by self -.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.6

-
-
-
-

qmi_message_pbm_get_all_capabilities_output_get_grouping_information_alpha_string_capability ()

-
gboolean
-qmi_message_pbm_get_all_capabilities_output_get_grouping_information_alpha_string_capability
-                               (QmiMessagePbmGetAllCapabilitiesOutput *self,
-                                GArray **value_grouping_information_alpha_string_capability,
-                                GError **error);
-

Get the 'Grouping Information Alpha String Capability' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessagePbmGetAllCapabilitiesOutput.

 

value_grouping_information_alpha_string_capability

a placeholder for the output GArray of QmiMessagePbmGetAllCapabilitiesOutputGroupingInformationAlphaStringCapabilityElement elements, or NULL if not required. Do not free it, it is owned by self -.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.6

-
-
-
-

qmi_message_pbm_get_all_capabilities_output_get_additional_number_alpha_string_capability ()

-
gboolean
-qmi_message_pbm_get_all_capabilities_output_get_additional_number_alpha_string_capability
-                               (QmiMessagePbmGetAllCapabilitiesOutput *self,
-                                GArray **value_additional_number_alpha_string_capability,
-                                GError **error);
-

Get the 'Additional Number Alpha String Capability' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessagePbmGetAllCapabilitiesOutput.

 

value_additional_number_alpha_string_capability

a placeholder for the output GArray of QmiMessagePbmGetAllCapabilitiesOutputAdditionalNumberAlphaStringCapabilityElement elements, or NULL if not required. Do not free it, it is owned by self -.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.6

-
-
-
-

qmi_client_pbm_get_all_capabilities ()

-
void
-qmi_client_pbm_get_all_capabilities (QmiClientPbm *self,
-                                     gpointer unused,
-                                     guint timeout,
-                                     GCancellable *cancellable,
-                                     GAsyncReadyCallback callback,
-                                     gpointer user_data);
-

Asynchronously sends a Get All Capabilities request to the device.

-

When the operation is finished, callback - will be invoked in the thread-default main loop of the thread you are calling this method from.

-

You can then call qmi_client_pbm_get_all_capabilities_finish() to get the result of the operation.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

self

a QmiClientPbm.

 

unused

NULL. This message doesn't have any input bundle.

 

timeout

maximum time to wait for the method to complete, in seconds.

 

cancellable

a GCancellable or NULL.

 

callback

a GAsyncReadyCallback to call when the request is satisfied.

 

user_data

user data to pass to callback -.

 
-
-

Since: 1.6

-
-
-
-

qmi_client_pbm_get_all_capabilities_finish ()

-
QmiMessagePbmGetAllCapabilitiesOutput *
-qmi_client_pbm_get_all_capabilities_finish
-                               (QmiClientPbm *self,
-                                GAsyncResult *res,
-                                GError **error);
-

Finishes an async operation started with qmi_client_pbm_get_all_capabilities().

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiClientPbm.

 

res

the GAsyncResult obtained from the GAsyncReadyCallback passed to qmi_client_pbm_get_all_capabilities().

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

a QmiMessagePbmGetAllCapabilitiesOutput, or NULL if error -is set. The returned value should be freed with qmi_message_pbm_get_all_capabilities_output_unref().

-
-

Since: 1.6

-
-
-
-

Types and Values

-
-

QmiMessagePbmGetAllCapabilitiesOutput

-
typedef struct _QmiMessagePbmGetAllCapabilitiesOutput QmiMessagePbmGetAllCapabilitiesOutput;
-

The QmiMessagePbmGetAllCapabilitiesOutput structure contains private data and should only be accessed -using the provided API.

-

Since: 1.6

-
-
-
-

QmiMessagePbmGetAllCapabilitiesOutputCapabilityBasicInformationElementPhonebooksElement

-
typedef struct {
-    QmiPbmPhonebookType phonebook_type;
-    guint16 used_records;
-    guint16 maximum_records;
-    guint8 maximum_number_length;
-    guint8 maximum_name_length;
-} QmiMessagePbmGetAllCapabilitiesOutputCapabilityBasicInformationElementPhonebooksElement;
-
-

A QmiMessagePbmGetAllCapabilitiesOutputCapabilityBasicInformationElementPhonebooksElement struct.

-
-

Members

-
----- - - - - - - - - - - - - - - - - - - - - - - - - - - - -

QmiPbmPhonebookType phonebook_type;

a QmiPbmPhonebookType.

 

guint16 used_records;

a guint16.

 

guint16 maximum_records;

a guint16.

 

guint8 maximum_number_length;

a guint8.

 

guint8 maximum_name_length;

a guint8.

 
-
-

Since: 1.6

-
-
-
-

QmiMessagePbmGetAllCapabilitiesOutputCapabilityBasicInformationElement

-
typedef struct {
-    QmiPbmSessionType session_type;
-    GArray *phonebooks;
-} QmiMessagePbmGetAllCapabilitiesOutputCapabilityBasicInformationElement;
-
-

A QmiMessagePbmGetAllCapabilitiesOutputCapabilityBasicInformationElement struct.

-
-

Members

- -
-

Since: 1.6

-
-
-
-

QmiMessagePbmGetAllCapabilitiesOutputGroupCapabilityElement

-
typedef struct {
-    QmiPbmSessionType session_type;
-    guint8 maximum_groups;
-    guint8 maximum_group_tag_length;
-} QmiMessagePbmGetAllCapabilitiesOutputGroupCapabilityElement;
-
-

A QmiMessagePbmGetAllCapabilitiesOutputGroupCapabilityElement struct.

-
-

Members

-
----- - - - - - - - - - - - - - - - - - -

QmiPbmSessionType session_type;

a QmiPbmSessionType.

 

guint8 maximum_groups;

a guint8.

 

guint8 maximum_group_tag_length;

a guint8.

 
-
-

Since: 1.6

-
-
-
-

QmiMessagePbmGetAllCapabilitiesOutputAdditionalNumberCapabilityElement

-
typedef struct {
-    QmiPbmSessionType session_type;
-    guint8 maximum_additional_numbers;
-    guint8 maximum_additional_number_length;
-    guint8 maximum_additional_number_tag_length;
-} QmiMessagePbmGetAllCapabilitiesOutputAdditionalNumberCapabilityElement;
-
-

A QmiMessagePbmGetAllCapabilitiesOutputAdditionalNumberCapabilityElement struct.

-
-

Members

-
----- - - - - - - - - - - - - - - - - - - - - - - -

QmiPbmSessionType session_type;

a QmiPbmSessionType.

 

guint8 maximum_additional_numbers;

a guint8.

 

guint8 maximum_additional_number_length;

a guint8.

 

guint8 maximum_additional_number_tag_length;

a guint8.

 
-
-

Since: 1.6

-
-
-
-

QmiMessagePbmGetAllCapabilitiesOutputEmailCapabilityElement

-
typedef struct {
-    QmiPbmSessionType session_type;
-    guint8 maximum_emails;
-    guint8 maximum_email_address_length;
-} QmiMessagePbmGetAllCapabilitiesOutputEmailCapabilityElement;
-
-

A QmiMessagePbmGetAllCapabilitiesOutputEmailCapabilityElement struct.

-
-

Members

-
----- - - - - - - - - - - - - - - - - - -

QmiPbmSessionType session_type;

a QmiPbmSessionType.

 

guint8 maximum_emails;

a guint8.

 

guint8 maximum_email_address_length;

a guint8.

 
-
-

Since: 1.6

-
-
-
-

QmiMessagePbmGetAllCapabilitiesOutputSecondNameCapabilityElement

-
typedef struct {
-    QmiPbmSessionType session_type;
-    guint8 maximum_second_name_length;
-} QmiMessagePbmGetAllCapabilitiesOutputSecondNameCapabilityElement;
-
-

A QmiMessagePbmGetAllCapabilitiesOutputSecondNameCapabilityElement struct.

-
-

Members

-
----- - - - - - - - - - - - - -

QmiPbmSessionType session_type;

a QmiPbmSessionType.

 

guint8 maximum_second_name_length;

a guint8.

 
-
-

Since: 1.6

-
-
-
-

QmiMessagePbmGetAllCapabilitiesOutputHiddenRecordsCapabilityElement

-
typedef struct {
-    QmiPbmSessionType session_type;
-    gboolean supported;
-} QmiMessagePbmGetAllCapabilitiesOutputHiddenRecordsCapabilityElement;
-
-

A QmiMessagePbmGetAllCapabilitiesOutputHiddenRecordsCapabilityElement struct.

-
-

Members

-
----- - - - - - - - - - - - - -

QmiPbmSessionType session_type;

a QmiPbmSessionType.

 

gboolean supported;

a gboolean.

 
-
-

Since: 1.6

-
-
-
-

QmiMessagePbmGetAllCapabilitiesOutputGroupingInformationAlphaStringCapabilityElement

-
typedef struct {
-    QmiPbmSessionType session_type;
-    guint8 maximum_records;
-    guint8 used_records;
-    guint8 maximum_string_length;
-} QmiMessagePbmGetAllCapabilitiesOutputGroupingInformationAlphaStringCapabilityElement;
-
-

A QmiMessagePbmGetAllCapabilitiesOutputGroupingInformationAlphaStringCapabilityElement struct.

-
-

Members

-
----- - - - - - - - - - - - - - - - - - - - - - - -

QmiPbmSessionType session_type;

a QmiPbmSessionType.

 

guint8 maximum_records;

a guint8.

 

guint8 used_records;

a guint8.

 

guint8 maximum_string_length;

a guint8.

 
-
-

Since: 1.6

-
-
-
-

QmiMessagePbmGetAllCapabilitiesOutputAdditionalNumberAlphaStringCapabilityElement

-
typedef struct {
-    QmiPbmSessionType session_type;
-    guint8 maximum_records;
-    guint8 used_records;
-    guint8 maximum_string_length;
-} QmiMessagePbmGetAllCapabilitiesOutputAdditionalNumberAlphaStringCapabilityElement;
-
-

A QmiMessagePbmGetAllCapabilitiesOutputAdditionalNumberAlphaStringCapabilityElement struct.

-
-

Members

-
----- - - - - - - - - - - - - - - - - - - - - - - -

QmiPbmSessionType session_type;

a QmiPbmSessionType.

 

guint8 maximum_records;

a guint8.

 

guint8 used_records;

a guint8.

 

guint8 maximum_string_length;

a guint8.

 
-
-

Since: 1.6

-
-
-
- - - \ No newline at end of file diff -Nru libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-PBM-Get-All-Capabilities-request.html libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-PBM-Get-All-Capabilities-request.html --- libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-PBM-Get-All-Capabilities-request.html 1970-01-01 01:00:00.000000000 +0100 +++ libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-PBM-Get-All-Capabilities-request.html 2019-01-08 15:19:02.000000000 +0100 @@ -0,0 +1,1137 @@ + + + + +PBM Get All Capabilities request: libqmi-glib Reference Manual + + + + + + + + + + + + + + + + +
+
+
+ + +
+

PBM Get All Capabilities request

+

PBM Get All Capabilities request

+
+ + +
+

Object Hierarchy

+
    GBoxed
+    ╰── QmiMessagePbmGetAllCapabilitiesOutput
+
+
+
+

Description

+
+
+

Functions

+
+

qmi_message_pbm_get_all_capabilities_output_ref ()

+
QmiMessagePbmGetAllCapabilitiesOutput *
+qmi_message_pbm_get_all_capabilities_output_ref
+                               (QmiMessagePbmGetAllCapabilitiesOutput *self);
+

Atomically increments the reference count of self + by one.

+
+

Parameters

+
+++++ + + + + + +

self

a QmiMessagePbmGetAllCapabilitiesOutput.

 
+
+
+

Returns

+

the new reference to self +.

+
+

Since: 1.6

+
+
+
+

qmi_message_pbm_get_all_capabilities_output_unref ()

+
void
+qmi_message_pbm_get_all_capabilities_output_unref
+                               (QmiMessagePbmGetAllCapabilitiesOutput *self);
+

Atomically decrements the reference count of self + by one. +If the reference count drops to 0, self + is completely disposed.

+
+

Parameters

+
+++++ + + + + + +

self

a QmiMessagePbmGetAllCapabilitiesOutput.

 
+
+

Since: 1.6

+
+
+
+

qmi_message_pbm_get_all_capabilities_output_get_result ()

+
gboolean
+qmi_message_pbm_get_all_capabilities_output_get_result
+                               (QmiMessagePbmGetAllCapabilitiesOutput *self,
+                                GError **error);
+

Get the result of the QMI operation.

+
+

Parameters

+
+++++ + + + + + + + + + + + + +

self

a QmiMessagePbmGetAllCapabilitiesOutput.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the QMI operation succeeded, FALSE if error +is set.

+
+

Since: 1.6

+
+
+
+

qmi_message_pbm_get_all_capabilities_output_get_capability_basic_information ()

+
gboolean
+qmi_message_pbm_get_all_capabilities_output_get_capability_basic_information
+                               (QmiMessagePbmGetAllCapabilitiesOutput *self,
+                                GArray **value_capability_basic_information,
+                                GError **error);
+

Get the 'Capability Basic Information' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessagePbmGetAllCapabilitiesOutput.

 

value_capability_basic_information

a placeholder for the output GArray of QmiMessagePbmGetAllCapabilitiesOutputCapabilityBasicInformationElement elements, or NULL if not required. Do not free it, it is owned by self +.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.6

+
+
+
+

qmi_message_pbm_get_all_capabilities_output_get_group_capability ()

+
gboolean
+qmi_message_pbm_get_all_capabilities_output_get_group_capability
+                               (QmiMessagePbmGetAllCapabilitiesOutput *self,
+                                GArray **value_group_capability,
+                                GError **error);
+

Get the 'Group Capability' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessagePbmGetAllCapabilitiesOutput.

 

value_group_capability

a placeholder for the output GArray of QmiMessagePbmGetAllCapabilitiesOutputGroupCapabilityElement elements, or NULL if not required. Do not free it, it is owned by self +.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.6

+
+
+
+

qmi_message_pbm_get_all_capabilities_output_get_additional_number_capability ()

+
gboolean
+qmi_message_pbm_get_all_capabilities_output_get_additional_number_capability
+                               (QmiMessagePbmGetAllCapabilitiesOutput *self,
+                                GArray **value_additional_number_capability,
+                                GError **error);
+

Get the 'Additional Number Capability' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessagePbmGetAllCapabilitiesOutput.

 

value_additional_number_capability

a placeholder for the output GArray of QmiMessagePbmGetAllCapabilitiesOutputAdditionalNumberCapabilityElement elements, or NULL if not required. Do not free it, it is owned by self +.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.6

+
+
+
+

qmi_message_pbm_get_all_capabilities_output_get_email_capability ()

+
gboolean
+qmi_message_pbm_get_all_capabilities_output_get_email_capability
+                               (QmiMessagePbmGetAllCapabilitiesOutput *self,
+                                GArray **value_email_capability,
+                                GError **error);
+

Get the 'Email Capability' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessagePbmGetAllCapabilitiesOutput.

 

value_email_capability

a placeholder for the output GArray of QmiMessagePbmGetAllCapabilitiesOutputEmailCapabilityElement elements, or NULL if not required. Do not free it, it is owned by self +.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.6

+
+
+
+

qmi_message_pbm_get_all_capabilities_output_get_second_name_capability ()

+
gboolean
+qmi_message_pbm_get_all_capabilities_output_get_second_name_capability
+                               (QmiMessagePbmGetAllCapabilitiesOutput *self,
+                                GArray **value_second_name_capability,
+                                GError **error);
+

Get the 'Second Name Capability' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessagePbmGetAllCapabilitiesOutput.

 

value_second_name_capability

a placeholder for the output GArray of QmiMessagePbmGetAllCapabilitiesOutputSecondNameCapabilityElement elements, or NULL if not required. Do not free it, it is owned by self +.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.6

+
+
+
+

qmi_message_pbm_get_all_capabilities_output_get_hidden_records_capability ()

+
gboolean
+qmi_message_pbm_get_all_capabilities_output_get_hidden_records_capability
+                               (QmiMessagePbmGetAllCapabilitiesOutput *self,
+                                GArray **value_hidden_records_capability,
+                                GError **error);
+

Get the 'Hidden Records Capability' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessagePbmGetAllCapabilitiesOutput.

 

value_hidden_records_capability

a placeholder for the output GArray of QmiMessagePbmGetAllCapabilitiesOutputHiddenRecordsCapabilityElement elements, or NULL if not required. Do not free it, it is owned by self +.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.6

+
+
+
+

qmi_message_pbm_get_all_capabilities_output_get_grouping_information_alpha_string_capability ()

+
gboolean
+qmi_message_pbm_get_all_capabilities_output_get_grouping_information_alpha_string_capability
+                               (QmiMessagePbmGetAllCapabilitiesOutput *self,
+                                GArray **value_grouping_information_alpha_string_capability,
+                                GError **error);
+

Get the 'Grouping Information Alpha String Capability' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessagePbmGetAllCapabilitiesOutput.

 

value_grouping_information_alpha_string_capability

a placeholder for the output GArray of QmiMessagePbmGetAllCapabilitiesOutputGroupingInformationAlphaStringCapabilityElement elements, or NULL if not required. Do not free it, it is owned by self +.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.6

+
+
+
+

qmi_message_pbm_get_all_capabilities_output_get_additional_number_alpha_string_capability ()

+
gboolean
+qmi_message_pbm_get_all_capabilities_output_get_additional_number_alpha_string_capability
+                               (QmiMessagePbmGetAllCapabilitiesOutput *self,
+                                GArray **value_additional_number_alpha_string_capability,
+                                GError **error);
+

Get the 'Additional Number Alpha String Capability' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessagePbmGetAllCapabilitiesOutput.

 

value_additional_number_alpha_string_capability

a placeholder for the output GArray of QmiMessagePbmGetAllCapabilitiesOutputAdditionalNumberAlphaStringCapabilityElement elements, or NULL if not required. Do not free it, it is owned by self +.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.6

+
+
+
+

qmi_client_pbm_get_all_capabilities ()

+
void
+qmi_client_pbm_get_all_capabilities (QmiClientPbm *self,
+                                     gpointer unused,
+                                     guint timeout,
+                                     GCancellable *cancellable,
+                                     GAsyncReadyCallback callback,
+                                     gpointer user_data);
+

Asynchronously sends a Get All Capabilities request to the device.

+

When the operation is finished, callback + will be invoked in the thread-default main loop of the thread you are calling this method from.

+

You can then call qmi_client_pbm_get_all_capabilities_finish() to get the result of the operation.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

self

a QmiClientPbm.

 

unused

NULL. This message doesn't have any input bundle.

 

timeout

maximum time to wait for the method to complete, in seconds.

 

cancellable

a GCancellable or NULL.

 

callback

a GAsyncReadyCallback to call when the request is satisfied.

 

user_data

user data to pass to callback +.

 
+
+

Since: 1.6

+
+
+
+

qmi_client_pbm_get_all_capabilities_finish ()

+
QmiMessagePbmGetAllCapabilitiesOutput *
+qmi_client_pbm_get_all_capabilities_finish
+                               (QmiClientPbm *self,
+                                GAsyncResult *res,
+                                GError **error);
+

Finishes an async operation started with qmi_client_pbm_get_all_capabilities().

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiClientPbm.

 

res

the GAsyncResult obtained from the GAsyncReadyCallback passed to qmi_client_pbm_get_all_capabilities().

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

a QmiMessagePbmGetAllCapabilitiesOutput, or NULL if error +is set. The returned value should be freed with qmi_message_pbm_get_all_capabilities_output_unref().

+
+

Since: 1.6

+
+
+
+

Types and Values

+
+

QmiMessagePbmGetAllCapabilitiesOutput

+
typedef struct _QmiMessagePbmGetAllCapabilitiesOutput QmiMessagePbmGetAllCapabilitiesOutput;
+

The QmiMessagePbmGetAllCapabilitiesOutput structure contains private data and should only be accessed +using the provided API.

+

Since: 1.6

+
+
+
+

QmiMessagePbmGetAllCapabilitiesOutputCapabilityBasicInformationElementPhonebooksElement

+
typedef struct {
+    QmiPbmPhonebookType phonebook_type;
+    guint16 used_records;
+    guint16 maximum_records;
+    guint8 maximum_number_length;
+    guint8 maximum_name_length;
+} QmiMessagePbmGetAllCapabilitiesOutputCapabilityBasicInformationElementPhonebooksElement;
+
+

A QmiMessagePbmGetAllCapabilitiesOutputCapabilityBasicInformationElementPhonebooksElement struct.

+
+

Members

+
+++++ + + + + + + + + + + + + + + + + + + + + + + + + + + + +

QmiPbmPhonebookType phonebook_type;

a QmiPbmPhonebookType.

 

guint16 used_records;

a guint16.

 

guint16 maximum_records;

a guint16.

 

guint8 maximum_number_length;

a guint8.

 

guint8 maximum_name_length;

a guint8.

 
+
+

Since: 1.6

+
+
+
+

QmiMessagePbmGetAllCapabilitiesOutputCapabilityBasicInformationElement

+
typedef struct {
+    QmiPbmSessionType session_type;
+    GArray *phonebooks;
+} QmiMessagePbmGetAllCapabilitiesOutputCapabilityBasicInformationElement;
+
+

A QmiMessagePbmGetAllCapabilitiesOutputCapabilityBasicInformationElement struct.

+
+

Members

+ +
+

Since: 1.6

+
+
+
+

QmiMessagePbmGetAllCapabilitiesOutputGroupCapabilityElement

+
typedef struct {
+    QmiPbmSessionType session_type;
+    guint8 maximum_groups;
+    guint8 maximum_group_tag_length;
+} QmiMessagePbmGetAllCapabilitiesOutputGroupCapabilityElement;
+
+

A QmiMessagePbmGetAllCapabilitiesOutputGroupCapabilityElement struct.

+
+

Members

+
+++++ + + + + + + + + + + + + + + + + + +

QmiPbmSessionType session_type;

a QmiPbmSessionType.

 

guint8 maximum_groups;

a guint8.

 

guint8 maximum_group_tag_length;

a guint8.

 
+
+

Since: 1.6

+
+
+
+

QmiMessagePbmGetAllCapabilitiesOutputAdditionalNumberCapabilityElement

+
typedef struct {
+    QmiPbmSessionType session_type;
+    guint8 maximum_additional_numbers;
+    guint8 maximum_additional_number_length;
+    guint8 maximum_additional_number_tag_length;
+} QmiMessagePbmGetAllCapabilitiesOutputAdditionalNumberCapabilityElement;
+
+

A QmiMessagePbmGetAllCapabilitiesOutputAdditionalNumberCapabilityElement struct.

+
+

Members

+
+++++ + + + + + + + + + + + + + + + + + + + + + + +

QmiPbmSessionType session_type;

a QmiPbmSessionType.

 

guint8 maximum_additional_numbers;

a guint8.

 

guint8 maximum_additional_number_length;

a guint8.

 

guint8 maximum_additional_number_tag_length;

a guint8.

 
+
+

Since: 1.6

+
+
+
+

QmiMessagePbmGetAllCapabilitiesOutputEmailCapabilityElement

+
typedef struct {
+    QmiPbmSessionType session_type;
+    guint8 maximum_emails;
+    guint8 maximum_email_address_length;
+} QmiMessagePbmGetAllCapabilitiesOutputEmailCapabilityElement;
+
+

A QmiMessagePbmGetAllCapabilitiesOutputEmailCapabilityElement struct.

+
+

Members

+
+++++ + + + + + + + + + + + + + + + + + +

QmiPbmSessionType session_type;

a QmiPbmSessionType.

 

guint8 maximum_emails;

a guint8.

 

guint8 maximum_email_address_length;

a guint8.

 
+
+

Since: 1.6

+
+
+
+

QmiMessagePbmGetAllCapabilitiesOutputSecondNameCapabilityElement

+
typedef struct {
+    QmiPbmSessionType session_type;
+    guint8 maximum_second_name_length;
+} QmiMessagePbmGetAllCapabilitiesOutputSecondNameCapabilityElement;
+
+

A QmiMessagePbmGetAllCapabilitiesOutputSecondNameCapabilityElement struct.

+
+

Members

+
+++++ + + + + + + + + + + + + +

QmiPbmSessionType session_type;

a QmiPbmSessionType.

 

guint8 maximum_second_name_length;

a guint8.

 
+
+

Since: 1.6

+
+
+
+

QmiMessagePbmGetAllCapabilitiesOutputHiddenRecordsCapabilityElement

+
typedef struct {
+    QmiPbmSessionType session_type;
+    gboolean supported;
+} QmiMessagePbmGetAllCapabilitiesOutputHiddenRecordsCapabilityElement;
+
+

A QmiMessagePbmGetAllCapabilitiesOutputHiddenRecordsCapabilityElement struct.

+
+

Members

+
+++++ + + + + + + + + + + + + +

QmiPbmSessionType session_type;

a QmiPbmSessionType.

 

gboolean supported;

a gboolean.

 
+
+

Since: 1.6

+
+
+
+

QmiMessagePbmGetAllCapabilitiesOutputGroupingInformationAlphaStringCapabilityElement

+
typedef struct {
+    QmiPbmSessionType session_type;
+    guint8 maximum_records;
+    guint8 used_records;
+    guint8 maximum_string_length;
+} QmiMessagePbmGetAllCapabilitiesOutputGroupingInformationAlphaStringCapabilityElement;
+
+

A QmiMessagePbmGetAllCapabilitiesOutputGroupingInformationAlphaStringCapabilityElement struct.

+
+

Members

+
+++++ + + + + + + + + + + + + + + + + + + + + + + +

QmiPbmSessionType session_type;

a QmiPbmSessionType.

 

guint8 maximum_records;

a guint8.

 

guint8 used_records;

a guint8.

 

guint8 maximum_string_length;

a guint8.

 
+
+

Since: 1.6

+
+
+
+

QmiMessagePbmGetAllCapabilitiesOutputAdditionalNumberAlphaStringCapabilityElement

+
typedef struct {
+    QmiPbmSessionType session_type;
+    guint8 maximum_records;
+    guint8 used_records;
+    guint8 maximum_string_length;
+} QmiMessagePbmGetAllCapabilitiesOutputAdditionalNumberAlphaStringCapabilityElement;
+
+

A QmiMessagePbmGetAllCapabilitiesOutputAdditionalNumberAlphaStringCapabilityElement struct.

+
+

Members

+
+++++ + + + + + + + + + + + + + + + + + + + + + + +

QmiPbmSessionType session_type;

a QmiPbmSessionType.

 

guint8 maximum_records;

a guint8.

 

guint8 used_records;

a guint8.

 

guint8 maximum_string_length;

a guint8.

 
+
+

Since: 1.6

+
+
+
+ + + \ No newline at end of file diff -Nru libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-PBM-Get-Capabilities.html libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-PBM-Get-Capabilities.html --- libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-PBM-Get-Capabilities.html 2017-03-22 12:28:29.000000000 +0100 +++ libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-PBM-Get-Capabilities.html 1970-01-01 01:00:00.000000000 +0100 @@ -1,1029 +0,0 @@ - - - - -PBM Get Capabilities: libqmi-glib Reference Manual - - - - - - - - - - - - - - - - -
-
-
- - -
-

PBM Get Capabilities

-

PBM Get Capabilities

-
-
-

Functions

-
---- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
-QmiMessagePbmGetCapabilitiesInput * - -qmi_message_pbm_get_capabilities_input_new () -
-QmiMessagePbmGetCapabilitiesInput * - -qmi_message_pbm_get_capabilities_input_ref () -
-void - -qmi_message_pbm_get_capabilities_input_unref () -
-gboolean - -qmi_message_pbm_get_capabilities_input_get_phonebook_information () -
-gboolean - -qmi_message_pbm_get_capabilities_input_set_phonebook_information () -
-QmiMessagePbmGetCapabilitiesOutput * - -qmi_message_pbm_get_capabilities_output_ref () -
-void - -qmi_message_pbm_get_capabilities_output_unref () -
-gboolean - -qmi_message_pbm_get_capabilities_output_get_result () -
-gboolean - -qmi_message_pbm_get_capabilities_output_get_capability_basic_information () -
-gboolean - -qmi_message_pbm_get_capabilities_output_get_group_capability () -
-gboolean - -qmi_message_pbm_get_capabilities_output_get_additional_number_capability () -
-gboolean - -qmi_message_pbm_get_capabilities_output_get_email_capability () -
-gboolean - -qmi_message_pbm_get_capabilities_output_get_second_name_capability () -
-gboolean - -qmi_message_pbm_get_capabilities_output_get_hidden_records_capability () -
-gboolean - -qmi_message_pbm_get_capabilities_output_get_grouping_information_alpha_string_capability () -
-gboolean - -qmi_message_pbm_get_capabilities_output_get_additional_number_alpha_string_capability () -
-void - -qmi_client_pbm_get_capabilities () -
-QmiMessagePbmGetCapabilitiesOutput * - -qmi_client_pbm_get_capabilities_finish () -
-
-
-

Types and Values

- -
-
-

Object Hierarchy

-
    GBoxed
-    ├── QmiMessagePbmGetCapabilitiesInput
-    ╰── QmiMessagePbmGetCapabilitiesOutput
-
-
-
-

Description

-
-
-

Functions

-
-

qmi_message_pbm_get_capabilities_input_new ()

-
QmiMessagePbmGetCapabilitiesInput *
-qmi_message_pbm_get_capabilities_input_new
-                               (void);
-

Allocates a new QmiMessagePbmGetCapabilitiesInput.

-
-

Returns

-

the newly created QmiMessagePbmGetCapabilitiesInput. The returned value should be freed with qmi_message_pbm_get_capabilities_input_unref().

-
-

Since: 1.6

-
-
-
-

qmi_message_pbm_get_capabilities_input_ref ()

-
QmiMessagePbmGetCapabilitiesInput *
-qmi_message_pbm_get_capabilities_input_ref
-                               (QmiMessagePbmGetCapabilitiesInput *self);
-

Atomically increments the reference count of self - by one.

-
-

Parameters

-
----- - - - - - -

self

a QmiMessagePbmGetCapabilitiesInput.

 
-
-
-

Returns

-

the new reference to self -.

-
-

Since: 1.6

-
-
-
-

qmi_message_pbm_get_capabilities_input_unref ()

-
void
-qmi_message_pbm_get_capabilities_input_unref
-                               (QmiMessagePbmGetCapabilitiesInput *self);
-

Atomically decrements the reference count of self - by one. -If the reference count drops to 0, self - is completely disposed.

-
-

Parameters

-
----- - - - - - -

self

a QmiMessagePbmGetCapabilitiesInput.

 
-
-

Since: 1.6

-
-
-
-

qmi_message_pbm_get_capabilities_input_get_phonebook_information ()

-
gboolean
-qmi_message_pbm_get_capabilities_input_get_phonebook_information
-                               (QmiMessagePbmGetCapabilitiesInput *self,
-                                QmiPbmSessionType *value_phonebook_information_session_type,
-                                QmiPbmPhonebookType *value_phonebook_information_phonebook_type,
-                                GError **error);
-

Get the 'Phonebook Information' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - - - - - - -

self

a QmiMessagePbmGetCapabilitiesInput.

 

value_phonebook_information_session_type

a placeholder for the output QmiPbmSessionType, or NULL if not required.

 

value_phonebook_information_phonebook_type

a placeholder for the output QmiPbmPhonebookType, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.6

-
-
-
-

qmi_message_pbm_get_capabilities_input_set_phonebook_information ()

-
gboolean
-qmi_message_pbm_get_capabilities_input_set_phonebook_information
-                               (QmiMessagePbmGetCapabilitiesInput *self,
-                                QmiPbmSessionType value_phonebook_information_session_type,
-                                QmiPbmPhonebookType value_phonebook_information_phonebook_type,
-                                GError **error);
-

Set the 'Phonebook Information' field in the message.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - - - - - - -

self

a QmiMessagePbmGetCapabilitiesInput.

 

value_phonebook_information_session_type

a QmiPbmSessionType.

 

value_phonebook_information_phonebook_type

a QmiPbmPhonebookType.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if value -was successfully set, FALSE otherwise.

-
-

Since: 1.6

-
-
-
-

qmi_message_pbm_get_capabilities_output_ref ()

-
QmiMessagePbmGetCapabilitiesOutput *
-qmi_message_pbm_get_capabilities_output_ref
-                               (QmiMessagePbmGetCapabilitiesOutput *self);
-

Atomically increments the reference count of self - by one.

-
-

Parameters

-
----- - - - - - -

self

a QmiMessagePbmGetCapabilitiesOutput.

 
-
-
-

Returns

-

the new reference to self -.

-
-

Since: 1.6

-
-
-
-

qmi_message_pbm_get_capabilities_output_unref ()

-
void
-qmi_message_pbm_get_capabilities_output_unref
-                               (QmiMessagePbmGetCapabilitiesOutput *self);
-

Atomically decrements the reference count of self - by one. -If the reference count drops to 0, self - is completely disposed.

-
-

Parameters

-
----- - - - - - -

self

a QmiMessagePbmGetCapabilitiesOutput.

 
-
-

Since: 1.6

-
-
-
-

qmi_message_pbm_get_capabilities_output_get_result ()

-
gboolean
-qmi_message_pbm_get_capabilities_output_get_result
-                               (QmiMessagePbmGetCapabilitiesOutput *self,
-                                GError **error);
-

Get the result of the QMI operation.

-
-

Parameters

-
----- - - - - - - - - - - - - -

self

a QmiMessagePbmGetCapabilitiesOutput.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the QMI operation succeeded, FALSE if error -is set.

-
-

Since: 1.6

-
-
-
-

qmi_message_pbm_get_capabilities_output_get_capability_basic_information ()

-
gboolean
-qmi_message_pbm_get_capabilities_output_get_capability_basic_information
-                               (QmiMessagePbmGetCapabilitiesOutput *self,
-                                QmiPbmSessionType *value_capability_basic_information_session_type,
-                                QmiPbmPhonebookType *value_capability_basic_information_phonebook_type,
-                                guint16 *value_capability_basic_information_used_records,
-                                guint16 *value_capability_basic_information_maximum_records,
-                                guint8 *value_capability_basic_information_maximum_number_length,
-                                guint8 *value_capability_basic_information_maximum_name_length,
-                                GError **error);
-

Get the 'Capability Basic Information' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

self

a QmiMessagePbmGetCapabilitiesOutput.

 

value_capability_basic_information_session_type

a placeholder for the output QmiPbmSessionType, or NULL if not required.

 

value_capability_basic_information_phonebook_type

a placeholder for the output QmiPbmPhonebookType, or NULL if not required.

 

value_capability_basic_information_used_records

a placeholder for the output guint16, or NULL if not required.

 

value_capability_basic_information_maximum_records

a placeholder for the output guint16, or NULL if not required.

 

value_capability_basic_information_maximum_number_length

a placeholder for the output guint8, or NULL if not required.

 

value_capability_basic_information_maximum_name_length

a placeholder for the output guint8, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.6

-
-
-
-

qmi_message_pbm_get_capabilities_output_get_group_capability ()

-
gboolean
-qmi_message_pbm_get_capabilities_output_get_group_capability
-                               (QmiMessagePbmGetCapabilitiesOutput *self,
-                                guint8 *value_group_capability_maximum_groups,
-                                guint8 *value_group_capability_maximum_group_tag_length,
-                                GError **error);
-

Get the 'Group Capability' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - - - - - - -

self

a QmiMessagePbmGetCapabilitiesOutput.

 

value_group_capability_maximum_groups

a placeholder for the output guint8, or NULL if not required.

 

value_group_capability_maximum_group_tag_length

a placeholder for the output guint8, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.6

-
-
-
-

qmi_message_pbm_get_capabilities_output_get_additional_number_capability ()

-
gboolean
-qmi_message_pbm_get_capabilities_output_get_additional_number_capability
-                               (QmiMessagePbmGetCapabilitiesOutput *self,
-                                guint8 *value_additional_number_capability_maximum_additional_numbers,
-                                guint8 *value_additional_number_capability_maximum_additional_number_length,
-                                guint8 *value_additional_number_capability_maximum_additional_number_tag_length,
-                                GError **error);
-

Get the 'Additional Number Capability' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - - - - - - - - - - - -

self

a QmiMessagePbmGetCapabilitiesOutput.

 

value_additional_number_capability_maximum_additional_numbers

a placeholder for the output guint8, or NULL if not required.

 

value_additional_number_capability_maximum_additional_number_length

a placeholder for the output guint8, or NULL if not required.

 

value_additional_number_capability_maximum_additional_number_tag_length

a placeholder for the output guint8, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.6

-
-
-
-

qmi_message_pbm_get_capabilities_output_get_email_capability ()

-
gboolean
-qmi_message_pbm_get_capabilities_output_get_email_capability
-                               (QmiMessagePbmGetCapabilitiesOutput *self,
-                                guint8 *value_email_capability_maximum_emails,
-                                guint8 *value_email_capability_maximum_email_address_length,
-                                GError **error);
-

Get the 'Email Capability' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - - - - - - -

self

a QmiMessagePbmGetCapabilitiesOutput.

 

value_email_capability_maximum_emails

a placeholder for the output guint8, or NULL if not required.

 

value_email_capability_maximum_email_address_length

a placeholder for the output guint8, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.6

-
-
-
-

qmi_message_pbm_get_capabilities_output_get_second_name_capability ()

-
gboolean
-qmi_message_pbm_get_capabilities_output_get_second_name_capability
-                               (QmiMessagePbmGetCapabilitiesOutput *self,
-                                guint8 *value_second_name_capability_maximum_second_name_length,
-                                GError **error);
-

Get the 'Second Name Capability' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessagePbmGetCapabilitiesOutput.

 

value_second_name_capability_maximum_second_name_length

a placeholder for the output guint8, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.6

-
-
-
-

qmi_message_pbm_get_capabilities_output_get_hidden_records_capability ()

-
gboolean
-qmi_message_pbm_get_capabilities_output_get_hidden_records_capability
-                               (QmiMessagePbmGetCapabilitiesOutput *self,
-                                gboolean *value_hidden_records_capability_supported,
-                                GError **error);
-

Get the 'Hidden Records Capability' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessagePbmGetCapabilitiesOutput.

 

value_hidden_records_capability_supported

a placeholder for the output gboolean, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.6

-
-
-
-

qmi_message_pbm_get_capabilities_output_get_grouping_information_alpha_string_capability ()

-
gboolean
-qmi_message_pbm_get_capabilities_output_get_grouping_information_alpha_string_capability
-                               (QmiMessagePbmGetCapabilitiesOutput *self,
-                                guint8 *value_grouping_information_alpha_string_capability_maximum_records,
-                                guint8 *value_grouping_information_alpha_string_capability_used_records,
-                                guint8 *value_grouping_information_alpha_string_capability_maximum_string_length,
-                                GError **error);
-

Get the 'Grouping Information Alpha String Capability' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - - - - - - - - - - - -

self

a QmiMessagePbmGetCapabilitiesOutput.

 

value_grouping_information_alpha_string_capability_maximum_records

a placeholder for the output guint8, or NULL if not required.

 

value_grouping_information_alpha_string_capability_used_records

a placeholder for the output guint8, or NULL if not required.

 

value_grouping_information_alpha_string_capability_maximum_string_length

a placeholder for the output guint8, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.6

-
-
-
-

qmi_message_pbm_get_capabilities_output_get_additional_number_alpha_string_capability ()

-
gboolean
-qmi_message_pbm_get_capabilities_output_get_additional_number_alpha_string_capability
-                               (QmiMessagePbmGetCapabilitiesOutput *self,
-                                guint8 *value_additional_number_alpha_string_capability_maximum_records,
-                                guint8 *value_additional_number_alpha_string_capability_used_records,
-                                guint8 *value_additional_number_alpha_string_capability_maximum_string_length,
-                                GError **error);
-

Get the 'Additional Number Alpha String Capability' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - - - - - - - - - - - -

self

a QmiMessagePbmGetCapabilitiesOutput.

 

value_additional_number_alpha_string_capability_maximum_records

a placeholder for the output guint8, or NULL if not required.

 

value_additional_number_alpha_string_capability_used_records

a placeholder for the output guint8, or NULL if not required.

 

value_additional_number_alpha_string_capability_maximum_string_length

a placeholder for the output guint8, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.6

-
-
-
-

qmi_client_pbm_get_capabilities ()

-
void
-qmi_client_pbm_get_capabilities (QmiClientPbm *self,
-                                 QmiMessagePbmGetCapabilitiesInput *input,
-                                 guint timeout,
-                                 GCancellable *cancellable,
-                                 GAsyncReadyCallback callback,
-                                 gpointer user_data);
-

Asynchronously sends a Get Capabilities request to the device.

-

When the operation is finished, callback - will be invoked in the thread-default main loop of the thread you are calling this method from.

-

You can then call qmi_client_pbm_get_capabilities_finish() to get the result of the operation.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

self

a QmiClientPbm.

 

input

a QmiMessagePbmGetCapabilitiesInput.

 

timeout

maximum time to wait for the method to complete, in seconds.

 

cancellable

a GCancellable or NULL.

 

callback

a GAsyncReadyCallback to call when the request is satisfied.

 

user_data

user data to pass to callback -.

 
-
-

Since: 1.6

-
-
-
-

qmi_client_pbm_get_capabilities_finish ()

-
QmiMessagePbmGetCapabilitiesOutput *
-qmi_client_pbm_get_capabilities_finish
-                               (QmiClientPbm *self,
-                                GAsyncResult *res,
-                                GError **error);
-

Finishes an async operation started with qmi_client_pbm_get_capabilities().

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiClientPbm.

 

res

the GAsyncResult obtained from the GAsyncReadyCallback passed to qmi_client_pbm_get_capabilities().

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

a QmiMessagePbmGetCapabilitiesOutput, or NULL if error -is set. The returned value should be freed with qmi_message_pbm_get_capabilities_output_unref().

-
-

Since: 1.6

-
-
-
-

Types and Values

-
-

QmiMessagePbmGetCapabilitiesInput

-
typedef struct _QmiMessagePbmGetCapabilitiesInput QmiMessagePbmGetCapabilitiesInput;
-

The QmiMessagePbmGetCapabilitiesInput structure contains private data and should only be accessed -using the provided API.

-

Since: 1.6

-
-
-
-

QmiMessagePbmGetCapabilitiesOutput

-
typedef struct _QmiMessagePbmGetCapabilitiesOutput QmiMessagePbmGetCapabilitiesOutput;
-

The QmiMessagePbmGetCapabilitiesOutput structure contains private data and should only be accessed -using the provided API.

-

Since: 1.6

-
-
-
- - - \ No newline at end of file diff -Nru libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-PBM-Get-Capabilities-request.html libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-PBM-Get-Capabilities-request.html --- libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-PBM-Get-Capabilities-request.html 1970-01-01 01:00:00.000000000 +0100 +++ libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-PBM-Get-Capabilities-request.html 2019-01-08 15:19:02.000000000 +0100 @@ -0,0 +1,1029 @@ + + + + +PBM Get Capabilities request: libqmi-glib Reference Manual + + + + + + + + + + + + + + + + +
+
+
+ + +
+

PBM Get Capabilities request

+

PBM Get Capabilities request

+
+
+

Functions

+
++++ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+QmiMessagePbmGetCapabilitiesInput * + +qmi_message_pbm_get_capabilities_input_new () +
+QmiMessagePbmGetCapabilitiesInput * + +qmi_message_pbm_get_capabilities_input_ref () +
+void + +qmi_message_pbm_get_capabilities_input_unref () +
+gboolean + +qmi_message_pbm_get_capabilities_input_get_phonebook_information () +
+gboolean + +qmi_message_pbm_get_capabilities_input_set_phonebook_information () +
+QmiMessagePbmGetCapabilitiesOutput * + +qmi_message_pbm_get_capabilities_output_ref () +
+void + +qmi_message_pbm_get_capabilities_output_unref () +
+gboolean + +qmi_message_pbm_get_capabilities_output_get_result () +
+gboolean + +qmi_message_pbm_get_capabilities_output_get_capability_basic_information () +
+gboolean + +qmi_message_pbm_get_capabilities_output_get_group_capability () +
+gboolean + +qmi_message_pbm_get_capabilities_output_get_additional_number_capability () +
+gboolean + +qmi_message_pbm_get_capabilities_output_get_email_capability () +
+gboolean + +qmi_message_pbm_get_capabilities_output_get_second_name_capability () +
+gboolean + +qmi_message_pbm_get_capabilities_output_get_hidden_records_capability () +
+gboolean + +qmi_message_pbm_get_capabilities_output_get_grouping_information_alpha_string_capability () +
+gboolean + +qmi_message_pbm_get_capabilities_output_get_additional_number_alpha_string_capability () +
+void + +qmi_client_pbm_get_capabilities () +
+QmiMessagePbmGetCapabilitiesOutput * + +qmi_client_pbm_get_capabilities_finish () +
+
+
+

Types and Values

+ +
+
+

Object Hierarchy

+
    GBoxed
+    ├── QmiMessagePbmGetCapabilitiesInput
+    ╰── QmiMessagePbmGetCapabilitiesOutput
+
+
+
+

Description

+
+
+

Functions

+
+

qmi_message_pbm_get_capabilities_input_new ()

+
QmiMessagePbmGetCapabilitiesInput *
+qmi_message_pbm_get_capabilities_input_new
+                               (void);
+

Allocates a new QmiMessagePbmGetCapabilitiesInput.

+
+

Returns

+

the newly created QmiMessagePbmGetCapabilitiesInput. The returned value should be freed with qmi_message_pbm_get_capabilities_input_unref().

+
+

Since: 1.6

+
+
+
+

qmi_message_pbm_get_capabilities_input_ref ()

+
QmiMessagePbmGetCapabilitiesInput *
+qmi_message_pbm_get_capabilities_input_ref
+                               (QmiMessagePbmGetCapabilitiesInput *self);
+

Atomically increments the reference count of self + by one.

+
+

Parameters

+
+++++ + + + + + +

self

a QmiMessagePbmGetCapabilitiesInput.

 
+
+
+

Returns

+

the new reference to self +.

+
+

Since: 1.6

+
+
+
+

qmi_message_pbm_get_capabilities_input_unref ()

+
void
+qmi_message_pbm_get_capabilities_input_unref
+                               (QmiMessagePbmGetCapabilitiesInput *self);
+

Atomically decrements the reference count of self + by one. +If the reference count drops to 0, self + is completely disposed.

+
+

Parameters

+
+++++ + + + + + +

self

a QmiMessagePbmGetCapabilitiesInput.

 
+
+

Since: 1.6

+
+
+
+

qmi_message_pbm_get_capabilities_input_get_phonebook_information ()

+
gboolean
+qmi_message_pbm_get_capabilities_input_get_phonebook_information
+                               (QmiMessagePbmGetCapabilitiesInput *self,
+                                QmiPbmSessionType *value_phonebook_information_session_type,
+                                QmiPbmPhonebookType *value_phonebook_information_phonebook_type,
+                                GError **error);
+

Get the 'Phonebook Information' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + + + + + + +

self

a QmiMessagePbmGetCapabilitiesInput.

 

value_phonebook_information_session_type

a placeholder for the output QmiPbmSessionType, or NULL if not required.

 

value_phonebook_information_phonebook_type

a placeholder for the output QmiPbmPhonebookType, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.6

+
+
+
+

qmi_message_pbm_get_capabilities_input_set_phonebook_information ()

+
gboolean
+qmi_message_pbm_get_capabilities_input_set_phonebook_information
+                               (QmiMessagePbmGetCapabilitiesInput *self,
+                                QmiPbmSessionType value_phonebook_information_session_type,
+                                QmiPbmPhonebookType value_phonebook_information_phonebook_type,
+                                GError **error);
+

Set the 'Phonebook Information' field in the message.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + + + + + + +

self

a QmiMessagePbmGetCapabilitiesInput.

 

value_phonebook_information_session_type

a QmiPbmSessionType.

 

value_phonebook_information_phonebook_type

a QmiPbmPhonebookType.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if value +was successfully set, FALSE otherwise.

+
+

Since: 1.6

+
+
+
+

qmi_message_pbm_get_capabilities_output_ref ()

+
QmiMessagePbmGetCapabilitiesOutput *
+qmi_message_pbm_get_capabilities_output_ref
+                               (QmiMessagePbmGetCapabilitiesOutput *self);
+

Atomically increments the reference count of self + by one.

+
+

Parameters

+
+++++ + + + + + +

self

a QmiMessagePbmGetCapabilitiesOutput.

 
+
+
+

Returns

+

the new reference to self +.

+
+

Since: 1.6

+
+
+
+

qmi_message_pbm_get_capabilities_output_unref ()

+
void
+qmi_message_pbm_get_capabilities_output_unref
+                               (QmiMessagePbmGetCapabilitiesOutput *self);
+

Atomically decrements the reference count of self + by one. +If the reference count drops to 0, self + is completely disposed.

+
+

Parameters

+
+++++ + + + + + +

self

a QmiMessagePbmGetCapabilitiesOutput.

 
+
+

Since: 1.6

+
+
+
+

qmi_message_pbm_get_capabilities_output_get_result ()

+
gboolean
+qmi_message_pbm_get_capabilities_output_get_result
+                               (QmiMessagePbmGetCapabilitiesOutput *self,
+                                GError **error);
+

Get the result of the QMI operation.

+
+

Parameters

+
+++++ + + + + + + + + + + + + +

self

a QmiMessagePbmGetCapabilitiesOutput.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the QMI operation succeeded, FALSE if error +is set.

+
+

Since: 1.6

+
+
+
+

qmi_message_pbm_get_capabilities_output_get_capability_basic_information ()

+
gboolean
+qmi_message_pbm_get_capabilities_output_get_capability_basic_information
+                               (QmiMessagePbmGetCapabilitiesOutput *self,
+                                QmiPbmSessionType *value_capability_basic_information_session_type,
+                                QmiPbmPhonebookType *value_capability_basic_information_phonebook_type,
+                                guint16 *value_capability_basic_information_used_records,
+                                guint16 *value_capability_basic_information_maximum_records,
+                                guint8 *value_capability_basic_information_maximum_number_length,
+                                guint8 *value_capability_basic_information_maximum_name_length,
+                                GError **error);
+

Get the 'Capability Basic Information' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

self

a QmiMessagePbmGetCapabilitiesOutput.

 

value_capability_basic_information_session_type

a placeholder for the output QmiPbmSessionType, or NULL if not required.

 

value_capability_basic_information_phonebook_type

a placeholder for the output QmiPbmPhonebookType, or NULL if not required.

 

value_capability_basic_information_used_records

a placeholder for the output guint16, or NULL if not required.

 

value_capability_basic_information_maximum_records

a placeholder for the output guint16, or NULL if not required.

 

value_capability_basic_information_maximum_number_length

a placeholder for the output guint8, or NULL if not required.

 

value_capability_basic_information_maximum_name_length

a placeholder for the output guint8, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.6

+
+
+
+

qmi_message_pbm_get_capabilities_output_get_group_capability ()

+
gboolean
+qmi_message_pbm_get_capabilities_output_get_group_capability
+                               (QmiMessagePbmGetCapabilitiesOutput *self,
+                                guint8 *value_group_capability_maximum_groups,
+                                guint8 *value_group_capability_maximum_group_tag_length,
+                                GError **error);
+

Get the 'Group Capability' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + + + + + + +

self

a QmiMessagePbmGetCapabilitiesOutput.

 

value_group_capability_maximum_groups

a placeholder for the output guint8, or NULL if not required.

 

value_group_capability_maximum_group_tag_length

a placeholder for the output guint8, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.6

+
+
+
+

qmi_message_pbm_get_capabilities_output_get_additional_number_capability ()

+
gboolean
+qmi_message_pbm_get_capabilities_output_get_additional_number_capability
+                               (QmiMessagePbmGetCapabilitiesOutput *self,
+                                guint8 *value_additional_number_capability_maximum_additional_numbers,
+                                guint8 *value_additional_number_capability_maximum_additional_number_length,
+                                guint8 *value_additional_number_capability_maximum_additional_number_tag_length,
+                                GError **error);
+

Get the 'Additional Number Capability' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + + + + + + + + + + + +

self

a QmiMessagePbmGetCapabilitiesOutput.

 

value_additional_number_capability_maximum_additional_numbers

a placeholder for the output guint8, or NULL if not required.

 

value_additional_number_capability_maximum_additional_number_length

a placeholder for the output guint8, or NULL if not required.

 

value_additional_number_capability_maximum_additional_number_tag_length

a placeholder for the output guint8, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.6

+
+
+
+

qmi_message_pbm_get_capabilities_output_get_email_capability ()

+
gboolean
+qmi_message_pbm_get_capabilities_output_get_email_capability
+                               (QmiMessagePbmGetCapabilitiesOutput *self,
+                                guint8 *value_email_capability_maximum_emails,
+                                guint8 *value_email_capability_maximum_email_address_length,
+                                GError **error);
+

Get the 'Email Capability' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + + + + + + +

self

a QmiMessagePbmGetCapabilitiesOutput.

 

value_email_capability_maximum_emails

a placeholder for the output guint8, or NULL if not required.

 

value_email_capability_maximum_email_address_length

a placeholder for the output guint8, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.6

+
+
+
+

qmi_message_pbm_get_capabilities_output_get_second_name_capability ()

+
gboolean
+qmi_message_pbm_get_capabilities_output_get_second_name_capability
+                               (QmiMessagePbmGetCapabilitiesOutput *self,
+                                guint8 *value_second_name_capability_maximum_second_name_length,
+                                GError **error);
+

Get the 'Second Name Capability' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessagePbmGetCapabilitiesOutput.

 

value_second_name_capability_maximum_second_name_length

a placeholder for the output guint8, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.6

+
+
+
+

qmi_message_pbm_get_capabilities_output_get_hidden_records_capability ()

+
gboolean
+qmi_message_pbm_get_capabilities_output_get_hidden_records_capability
+                               (QmiMessagePbmGetCapabilitiesOutput *self,
+                                gboolean *value_hidden_records_capability_supported,
+                                GError **error);
+

Get the 'Hidden Records Capability' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessagePbmGetCapabilitiesOutput.

 

value_hidden_records_capability_supported

a placeholder for the output gboolean, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.6

+
+
+
+

qmi_message_pbm_get_capabilities_output_get_grouping_information_alpha_string_capability ()

+
gboolean
+qmi_message_pbm_get_capabilities_output_get_grouping_information_alpha_string_capability
+                               (QmiMessagePbmGetCapabilitiesOutput *self,
+                                guint8 *value_grouping_information_alpha_string_capability_maximum_records,
+                                guint8 *value_grouping_information_alpha_string_capability_used_records,
+                                guint8 *value_grouping_information_alpha_string_capability_maximum_string_length,
+                                GError **error);
+

Get the 'Grouping Information Alpha String Capability' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + + + + + + + + + + + +

self

a QmiMessagePbmGetCapabilitiesOutput.

 

value_grouping_information_alpha_string_capability_maximum_records

a placeholder for the output guint8, or NULL if not required.

 

value_grouping_information_alpha_string_capability_used_records

a placeholder for the output guint8, or NULL if not required.

 

value_grouping_information_alpha_string_capability_maximum_string_length

a placeholder for the output guint8, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.6

+
+
+
+

qmi_message_pbm_get_capabilities_output_get_additional_number_alpha_string_capability ()

+
gboolean
+qmi_message_pbm_get_capabilities_output_get_additional_number_alpha_string_capability
+                               (QmiMessagePbmGetCapabilitiesOutput *self,
+                                guint8 *value_additional_number_alpha_string_capability_maximum_records,
+                                guint8 *value_additional_number_alpha_string_capability_used_records,
+                                guint8 *value_additional_number_alpha_string_capability_maximum_string_length,
+                                GError **error);
+

Get the 'Additional Number Alpha String Capability' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + + + + + + + + + + + +

self

a QmiMessagePbmGetCapabilitiesOutput.

 

value_additional_number_alpha_string_capability_maximum_records

a placeholder for the output guint8, or NULL if not required.

 

value_additional_number_alpha_string_capability_used_records

a placeholder for the output guint8, or NULL if not required.

 

value_additional_number_alpha_string_capability_maximum_string_length

a placeholder for the output guint8, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.6

+
+
+
+

qmi_client_pbm_get_capabilities ()

+
void
+qmi_client_pbm_get_capabilities (QmiClientPbm *self,
+                                 QmiMessagePbmGetCapabilitiesInput *input,
+                                 guint timeout,
+                                 GCancellable *cancellable,
+                                 GAsyncReadyCallback callback,
+                                 gpointer user_data);
+

Asynchronously sends a Get Capabilities request to the device.

+

When the operation is finished, callback + will be invoked in the thread-default main loop of the thread you are calling this method from.

+

You can then call qmi_client_pbm_get_capabilities_finish() to get the result of the operation.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

self

a QmiClientPbm.

 

input

a QmiMessagePbmGetCapabilitiesInput.

 

timeout

maximum time to wait for the method to complete, in seconds.

 

cancellable

a GCancellable or NULL.

 

callback

a GAsyncReadyCallback to call when the request is satisfied.

 

user_data

user data to pass to callback +.

 
+
+

Since: 1.6

+
+
+
+

qmi_client_pbm_get_capabilities_finish ()

+
QmiMessagePbmGetCapabilitiesOutput *
+qmi_client_pbm_get_capabilities_finish
+                               (QmiClientPbm *self,
+                                GAsyncResult *res,
+                                GError **error);
+

Finishes an async operation started with qmi_client_pbm_get_capabilities().

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiClientPbm.

 

res

the GAsyncResult obtained from the GAsyncReadyCallback passed to qmi_client_pbm_get_capabilities().

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

a QmiMessagePbmGetCapabilitiesOutput, or NULL if error +is set. The returned value should be freed with qmi_message_pbm_get_capabilities_output_unref().

+
+

Since: 1.6

+
+
+
+

Types and Values

+
+

QmiMessagePbmGetCapabilitiesInput

+
typedef struct _QmiMessagePbmGetCapabilitiesInput QmiMessagePbmGetCapabilitiesInput;
+

The QmiMessagePbmGetCapabilitiesInput structure contains private data and should only be accessed +using the provided API.

+

Since: 1.6

+
+
+
+

QmiMessagePbmGetCapabilitiesOutput

+
typedef struct _QmiMessagePbmGetCapabilitiesOutput QmiMessagePbmGetCapabilitiesOutput;
+

The QmiMessagePbmGetCapabilitiesOutput structure contains private data and should only be accessed +using the provided API.

+

Since: 1.6

+
+
+
+ + + \ No newline at end of file diff -Nru libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-PBM-Indication-Register.html libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-PBM-Indication-Register.html --- libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-PBM-Indication-Register.html 2017-03-22 12:28:29.000000000 +0100 +++ libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-PBM-Indication-Register.html 1970-01-01 01:00:00.000000000 +0100 @@ -1,582 +0,0 @@ - - - - -PBM Indication Register: libqmi-glib Reference Manual - - - - - - - - - - - - - - - - -
-
-
- - -
-

PBM Indication Register

-

PBM Indication Register

-
- -
-

Types and Values

- -
-
-

Object Hierarchy

-
    GBoxed
-    ├── QmiMessagePbmIndicationRegisterInput
-    ╰── QmiMessagePbmIndicationRegisterOutput
-
-
-
-

Description

-
-
-

Functions

-
-

qmi_message_pbm_indication_register_input_new ()

-
QmiMessagePbmIndicationRegisterInput *
-qmi_message_pbm_indication_register_input_new
-                               (void);
-

Allocates a new QmiMessagePbmIndicationRegisterInput.

-
-

Returns

-

the newly created QmiMessagePbmIndicationRegisterInput. The returned value should be freed with qmi_message_pbm_indication_register_input_unref().

-
-

Since: 1.6

-
-
-
-

qmi_message_pbm_indication_register_input_ref ()

-
QmiMessagePbmIndicationRegisterInput *
-qmi_message_pbm_indication_register_input_ref
-                               (QmiMessagePbmIndicationRegisterInput *self);
-

Atomically increments the reference count of self - by one.

-
-

Parameters

-
----- - - - - - -

self

a QmiMessagePbmIndicationRegisterInput.

 
-
-
-

Returns

-

the new reference to self -.

-
-

Since: 1.6

-
-
-
-

qmi_message_pbm_indication_register_input_unref ()

-
void
-qmi_message_pbm_indication_register_input_unref
-                               (QmiMessagePbmIndicationRegisterInput *self);
-

Atomically decrements the reference count of self - by one. -If the reference count drops to 0, self - is completely disposed.

-
-

Parameters

-
----- - - - - - -

self

a QmiMessagePbmIndicationRegisterInput.

 
-
-

Since: 1.6

-
-
-
-

qmi_message_pbm_indication_register_input_get_event_registration_mask ()

-
gboolean
-qmi_message_pbm_indication_register_input_get_event_registration_mask
-                               (QmiMessagePbmIndicationRegisterInput *self,
-                                QmiPbmEventRegistrationFlag *value_event_registration_mask,
-                                GError **error);
-

Get the 'Event Registration Mask' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessagePbmIndicationRegisterInput.

 

value_event_registration_mask

a placeholder for the output QmiPbmEventRegistrationFlag, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.6

-
-
-
-

qmi_message_pbm_indication_register_input_set_event_registration_mask ()

-
gboolean
-qmi_message_pbm_indication_register_input_set_event_registration_mask
-                               (QmiMessagePbmIndicationRegisterInput *self,
-                                QmiPbmEventRegistrationFlag value_event_registration_mask,
-                                GError **error);
-

Set the 'Event Registration Mask' field in the message.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessagePbmIndicationRegisterInput.

 

value_event_registration_mask

a QmiPbmEventRegistrationFlag.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if value -was successfully set, FALSE otherwise.

-
-

Since: 1.6

-
-
-
-

qmi_message_pbm_indication_register_output_ref ()

-
QmiMessagePbmIndicationRegisterOutput *
-qmi_message_pbm_indication_register_output_ref
-                               (QmiMessagePbmIndicationRegisterOutput *self);
-

Atomically increments the reference count of self - by one.

-
-

Parameters

-
----- - - - - - -

self

a QmiMessagePbmIndicationRegisterOutput.

 
-
-
-

Returns

-

the new reference to self -.

-
-

Since: 1.6

-
-
-
-

qmi_message_pbm_indication_register_output_unref ()

-
void
-qmi_message_pbm_indication_register_output_unref
-                               (QmiMessagePbmIndicationRegisterOutput *self);
-

Atomically decrements the reference count of self - by one. -If the reference count drops to 0, self - is completely disposed.

-
-

Parameters

-
----- - - - - - -

self

a QmiMessagePbmIndicationRegisterOutput.

 
-
-

Since: 1.6

-
-
-
-

qmi_message_pbm_indication_register_output_get_result ()

-
gboolean
-qmi_message_pbm_indication_register_output_get_result
-                               (QmiMessagePbmIndicationRegisterOutput *self,
-                                GError **error);
-

Get the result of the QMI operation.

-
-

Parameters

-
----- - - - - - - - - - - - - -

self

a QmiMessagePbmIndicationRegisterOutput.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the QMI operation succeeded, FALSE if error -is set.

-
-

Since: 1.6

-
-
-
-

qmi_message_pbm_indication_register_output_get_event_registration_mask ()

-
gboolean
-qmi_message_pbm_indication_register_output_get_event_registration_mask
-                               (QmiMessagePbmIndicationRegisterOutput *self,
-                                QmiPbmEventRegistrationFlag *value_event_registration_mask,
-                                GError **error);
-

Get the 'Event Registration Mask' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessagePbmIndicationRegisterOutput.

 

value_event_registration_mask

a placeholder for the output QmiPbmEventRegistrationFlag, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.6

-
-
-
-

qmi_client_pbm_indication_register ()

-
void
-qmi_client_pbm_indication_register (QmiClientPbm *self,
-                                    QmiMessagePbmIndicationRegisterInput *input,
-                                    guint timeout,
-                                    GCancellable *cancellable,
-                                    GAsyncReadyCallback callback,
-                                    gpointer user_data);
-

Asynchronously sends a Indication Register request to the device.

-

When the operation is finished, callback - will be invoked in the thread-default main loop of the thread you are calling this method from.

-

You can then call qmi_client_pbm_indication_register_finish() to get the result of the operation.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

self

a QmiClientPbm.

 

input

a QmiMessagePbmIndicationRegisterInput.

 

timeout

maximum time to wait for the method to complete, in seconds.

 

cancellable

a GCancellable or NULL.

 

callback

a GAsyncReadyCallback to call when the request is satisfied.

 

user_data

user data to pass to callback -.

 
-
-

Since: 1.6

-
-
-
-

qmi_client_pbm_indication_register_finish ()

-
QmiMessagePbmIndicationRegisterOutput *
-qmi_client_pbm_indication_register_finish
-                               (QmiClientPbm *self,
-                                GAsyncResult *res,
-                                GError **error);
-

Finishes an async operation started with qmi_client_pbm_indication_register().

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiClientPbm.

 

res

the GAsyncResult obtained from the GAsyncReadyCallback passed to qmi_client_pbm_indication_register().

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

a QmiMessagePbmIndicationRegisterOutput, or NULL if error -is set. The returned value should be freed with qmi_message_pbm_indication_register_output_unref().

-
-

Since: 1.6

-
-
-
-

Types and Values

-
-

QmiMessagePbmIndicationRegisterInput

-
typedef struct _QmiMessagePbmIndicationRegisterInput QmiMessagePbmIndicationRegisterInput;
-

The QmiMessagePbmIndicationRegisterInput structure contains private data and should only be accessed -using the provided API.

-

Since: 1.6

-
-
-
-

QmiMessagePbmIndicationRegisterOutput

-
typedef struct _QmiMessagePbmIndicationRegisterOutput QmiMessagePbmIndicationRegisterOutput;
-

The QmiMessagePbmIndicationRegisterOutput structure contains private data and should only be accessed -using the provided API.

-

Since: 1.6

-
-
-
- - - \ No newline at end of file diff -Nru libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-PBM-Indication-Register-request.html libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-PBM-Indication-Register-request.html --- libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-PBM-Indication-Register-request.html 1970-01-01 01:00:00.000000000 +0100 +++ libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-PBM-Indication-Register-request.html 2019-01-08 15:19:02.000000000 +0100 @@ -0,0 +1,582 @@ + + + + +PBM Indication Register request: libqmi-glib Reference Manual + + + + + + + + + + + + + + + + +
+
+
+ + +
+

PBM Indication Register request

+

PBM Indication Register request

+
+ +
+

Types and Values

+ +
+
+

Object Hierarchy

+
    GBoxed
+    ├── QmiMessagePbmIndicationRegisterInput
+    ╰── QmiMessagePbmIndicationRegisterOutput
+
+
+
+

Description

+
+
+

Functions

+
+

qmi_message_pbm_indication_register_input_new ()

+
QmiMessagePbmIndicationRegisterInput *
+qmi_message_pbm_indication_register_input_new
+                               (void);
+

Allocates a new QmiMessagePbmIndicationRegisterInput.

+
+

Returns

+

the newly created QmiMessagePbmIndicationRegisterInput. The returned value should be freed with qmi_message_pbm_indication_register_input_unref().

+
+

Since: 1.6

+
+
+
+

qmi_message_pbm_indication_register_input_ref ()

+
QmiMessagePbmIndicationRegisterInput *
+qmi_message_pbm_indication_register_input_ref
+                               (QmiMessagePbmIndicationRegisterInput *self);
+

Atomically increments the reference count of self + by one.

+
+

Parameters

+
+++++ + + + + + +

self

a QmiMessagePbmIndicationRegisterInput.

 
+
+
+

Returns

+

the new reference to self +.

+
+

Since: 1.6

+
+
+
+

qmi_message_pbm_indication_register_input_unref ()

+
void
+qmi_message_pbm_indication_register_input_unref
+                               (QmiMessagePbmIndicationRegisterInput *self);
+

Atomically decrements the reference count of self + by one. +If the reference count drops to 0, self + is completely disposed.

+
+

Parameters

+
+++++ + + + + + +

self

a QmiMessagePbmIndicationRegisterInput.

 
+
+

Since: 1.6

+
+
+
+

qmi_message_pbm_indication_register_input_get_event_registration_mask ()

+
gboolean
+qmi_message_pbm_indication_register_input_get_event_registration_mask
+                               (QmiMessagePbmIndicationRegisterInput *self,
+                                QmiPbmEventRegistrationFlag *value_event_registration_mask,
+                                GError **error);
+

Get the 'Event Registration Mask' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessagePbmIndicationRegisterInput.

 

value_event_registration_mask

a placeholder for the output QmiPbmEventRegistrationFlag, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.6

+
+
+
+

qmi_message_pbm_indication_register_input_set_event_registration_mask ()

+
gboolean
+qmi_message_pbm_indication_register_input_set_event_registration_mask
+                               (QmiMessagePbmIndicationRegisterInput *self,
+                                QmiPbmEventRegistrationFlag value_event_registration_mask,
+                                GError **error);
+

Set the 'Event Registration Mask' field in the message.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessagePbmIndicationRegisterInput.

 

value_event_registration_mask

a QmiPbmEventRegistrationFlag.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if value +was successfully set, FALSE otherwise.

+
+

Since: 1.6

+
+
+
+

qmi_message_pbm_indication_register_output_ref ()

+
QmiMessagePbmIndicationRegisterOutput *
+qmi_message_pbm_indication_register_output_ref
+                               (QmiMessagePbmIndicationRegisterOutput *self);
+

Atomically increments the reference count of self + by one.

+
+

Parameters

+
+++++ + + + + + +

self

a QmiMessagePbmIndicationRegisterOutput.

 
+
+
+

Returns

+

the new reference to self +.

+
+

Since: 1.6

+
+
+
+

qmi_message_pbm_indication_register_output_unref ()

+
void
+qmi_message_pbm_indication_register_output_unref
+                               (QmiMessagePbmIndicationRegisterOutput *self);
+

Atomically decrements the reference count of self + by one. +If the reference count drops to 0, self + is completely disposed.

+
+

Parameters

+
+++++ + + + + + +

self

a QmiMessagePbmIndicationRegisterOutput.

 
+
+

Since: 1.6

+
+
+
+

qmi_message_pbm_indication_register_output_get_result ()

+
gboolean
+qmi_message_pbm_indication_register_output_get_result
+                               (QmiMessagePbmIndicationRegisterOutput *self,
+                                GError **error);
+

Get the result of the QMI operation.

+
+

Parameters

+
+++++ + + + + + + + + + + + + +

self

a QmiMessagePbmIndicationRegisterOutput.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the QMI operation succeeded, FALSE if error +is set.

+
+

Since: 1.6

+
+
+
+

qmi_message_pbm_indication_register_output_get_event_registration_mask ()

+
gboolean
+qmi_message_pbm_indication_register_output_get_event_registration_mask
+                               (QmiMessagePbmIndicationRegisterOutput *self,
+                                QmiPbmEventRegistrationFlag *value_event_registration_mask,
+                                GError **error);
+

Get the 'Event Registration Mask' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessagePbmIndicationRegisterOutput.

 

value_event_registration_mask

a placeholder for the output QmiPbmEventRegistrationFlag, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.6

+
+
+
+

qmi_client_pbm_indication_register ()

+
void
+qmi_client_pbm_indication_register (QmiClientPbm *self,
+                                    QmiMessagePbmIndicationRegisterInput *input,
+                                    guint timeout,
+                                    GCancellable *cancellable,
+                                    GAsyncReadyCallback callback,
+                                    gpointer user_data);
+

Asynchronously sends a Indication Register request to the device.

+

When the operation is finished, callback + will be invoked in the thread-default main loop of the thread you are calling this method from.

+

You can then call qmi_client_pbm_indication_register_finish() to get the result of the operation.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

self

a QmiClientPbm.

 

input

a QmiMessagePbmIndicationRegisterInput.

 

timeout

maximum time to wait for the method to complete, in seconds.

 

cancellable

a GCancellable or NULL.

 

callback

a GAsyncReadyCallback to call when the request is satisfied.

 

user_data

user data to pass to callback +.

 
+
+

Since: 1.6

+
+
+
+

qmi_client_pbm_indication_register_finish ()

+
QmiMessagePbmIndicationRegisterOutput *
+qmi_client_pbm_indication_register_finish
+                               (QmiClientPbm *self,
+                                GAsyncResult *res,
+                                GError **error);
+

Finishes an async operation started with qmi_client_pbm_indication_register().

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiClientPbm.

 

res

the GAsyncResult obtained from the GAsyncReadyCallback passed to qmi_client_pbm_indication_register().

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

a QmiMessagePbmIndicationRegisterOutput, or NULL if error +is set. The returned value should be freed with qmi_message_pbm_indication_register_output_unref().

+
+

Since: 1.6

+
+
+
+

Types and Values

+
+

QmiMessagePbmIndicationRegisterInput

+
typedef struct _QmiMessagePbmIndicationRegisterInput QmiMessagePbmIndicationRegisterInput;
+

The QmiMessagePbmIndicationRegisterInput structure contains private data and should only be accessed +using the provided API.

+

Since: 1.6

+
+
+
+

QmiMessagePbmIndicationRegisterOutput

+
typedef struct _QmiMessagePbmIndicationRegisterOutput QmiMessagePbmIndicationRegisterOutput;
+

The QmiMessagePbmIndicationRegisterOutput structure contains private data and should only be accessed +using the provided API.

+

Since: 1.6

+
+
+
+ + + \ No newline at end of file diff -Nru libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-PDC-Activate-Config.html libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-PDC-Activate-Config.html --- libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-PDC-Activate-Config.html 2017-03-22 12:28:28.000000000 +0100 +++ libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-PDC-Activate-Config.html 1970-01-01 01:00:00.000000000 +0100 @@ -1,683 +0,0 @@ - - - - -PDC Activate Config: libqmi-glib Reference Manual - - - - - - - - - - - - - - - - -
-
-
- - -
-

PDC Activate Config

-

PDC Activate Config

-
- -
-

Types and Values

- -
-
-

Object Hierarchy

-
    GBoxed
-    ├── QmiMessagePdcActivateConfigInput
-    ╰── QmiMessagePdcActivateConfigOutput
-
-
-
-

Description

-
-
-

Functions

-
-

qmi_message_pdc_activate_config_input_new ()

-
QmiMessagePdcActivateConfigInput *
-qmi_message_pdc_activate_config_input_new
-                               (void);
-

Allocates a new QmiMessagePdcActivateConfigInput.

-
-

Returns

-

the newly created QmiMessagePdcActivateConfigInput. The returned value should be freed with qmi_message_pdc_activate_config_input_unref().

-
-

Since: 1.18

-
-
-
-

qmi_message_pdc_activate_config_input_ref ()

-
QmiMessagePdcActivateConfigInput *
-qmi_message_pdc_activate_config_input_ref
-                               (QmiMessagePdcActivateConfigInput *self);
-

Atomically increments the reference count of self - by one.

-
-

Parameters

-
----- - - - - - -

self

a QmiMessagePdcActivateConfigInput.

 
-
-
-

Returns

-

the new reference to self -.

-
-

Since: 1.18

-
-
-
-

qmi_message_pdc_activate_config_input_unref ()

-
void
-qmi_message_pdc_activate_config_input_unref
-                               (QmiMessagePdcActivateConfigInput *self);
-

Atomically decrements the reference count of self - by one. -If the reference count drops to 0, self - is completely disposed.

-
-

Parameters

-
----- - - - - - -

self

a QmiMessagePdcActivateConfigInput.

 
-
-

Since: 1.18

-
-
-
-

qmi_message_pdc_activate_config_input_get_token ()

-
gboolean
-qmi_message_pdc_activate_config_input_get_token
-                               (QmiMessagePdcActivateConfigInput *self,
-                                guint32 *value_token,
-                                GError **error);
-

Get the 'Token' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessagePdcActivateConfigInput.

 

value_token

a placeholder for the output guint32, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.18

-
-
-
-

qmi_message_pdc_activate_config_input_set_token ()

-
gboolean
-qmi_message_pdc_activate_config_input_set_token
-                               (QmiMessagePdcActivateConfigInput *self,
-                                guint32 value_token,
-                                GError **error);
-

Set the 'Token' field in the message.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessagePdcActivateConfigInput.

 

value_token

a guint32.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if value -was successfully set, FALSE otherwise.

-
-

Since: 1.18

-
-
-
-

qmi_message_pdc_activate_config_input_get_config_type ()

-
gboolean
-qmi_message_pdc_activate_config_input_get_config_type
-                               (QmiMessagePdcActivateConfigInput *self,
-                                QmiPdcConfigurationType *value_config_type,
-                                GError **error);
-

Get the 'Config Type' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessagePdcActivateConfigInput.

 

value_config_type

a placeholder for the output QmiPdcConfigurationType, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.18

-
-
-
-

qmi_message_pdc_activate_config_input_set_config_type ()

-
gboolean
-qmi_message_pdc_activate_config_input_set_config_type
-                               (QmiMessagePdcActivateConfigInput *self,
-                                QmiPdcConfigurationType value_config_type,
-                                GError **error);
-

Set the 'Config Type' field in the message.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessagePdcActivateConfigInput.

 

value_config_type

a QmiPdcConfigurationType.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if value -was successfully set, FALSE otherwise.

-
-

Since: 1.18

-
-
-
-

qmi_message_pdc_activate_config_output_ref ()

-
QmiMessagePdcActivateConfigOutput *
-qmi_message_pdc_activate_config_output_ref
-                               (QmiMessagePdcActivateConfigOutput *self);
-

Atomically increments the reference count of self - by one.

-
-

Parameters

-
----- - - - - - -

self

a QmiMessagePdcActivateConfigOutput.

 
-
-
-

Returns

-

the new reference to self -.

-
-

Since: 1.18

-
-
-
-

qmi_message_pdc_activate_config_output_unref ()

-
void
-qmi_message_pdc_activate_config_output_unref
-                               (QmiMessagePdcActivateConfigOutput *self);
-

Atomically decrements the reference count of self - by one. -If the reference count drops to 0, self - is completely disposed.

-
-

Parameters

-
----- - - - - - -

self

a QmiMessagePdcActivateConfigOutput.

 
-
-

Since: 1.18

-
-
-
-

qmi_message_pdc_activate_config_output_get_token ()

-
gboolean
-qmi_message_pdc_activate_config_output_get_token
-                               (QmiMessagePdcActivateConfigOutput *self,
-                                guint32 *value_token,
-                                GError **error);
-

Get the 'Token' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessagePdcActivateConfigOutput.

 

value_token

a placeholder for the output guint32, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.18

-
-
-
-

qmi_message_pdc_activate_config_output_get_result ()

-
gboolean
-qmi_message_pdc_activate_config_output_get_result
-                               (QmiMessagePdcActivateConfigOutput *self,
-                                GError **error);
-

Get the result of the QMI operation.

-
-

Parameters

-
----- - - - - - - - - - - - - -

self

a QmiMessagePdcActivateConfigOutput.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the QMI operation succeeded, FALSE if error -is set.

-
-

Since: 1.18

-
-
-
-

qmi_client_pdc_activate_config ()

-
void
-qmi_client_pdc_activate_config (QmiClientPdc *self,
-                                QmiMessagePdcActivateConfigInput *input,
-                                guint timeout,
-                                GCancellable *cancellable,
-                                GAsyncReadyCallback callback,
-                                gpointer user_data);
-

Asynchronously sends a Activate Config request to the device.

-

When the operation is finished, callback - will be invoked in the thread-default main loop of the thread you are calling this method from.

-

You can then call qmi_client_pdc_activate_config_finish() to get the result of the operation.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

self

a QmiClientPdc.

 

input

a QmiMessagePdcActivateConfigInput.

 

timeout

maximum time to wait for the method to complete, in seconds.

 

cancellable

a GCancellable or NULL.

 

callback

a GAsyncReadyCallback to call when the request is satisfied.

 

user_data

user data to pass to callback -.

 
-
-

Since: 1.18

-
-
-
-

qmi_client_pdc_activate_config_finish ()

-
QmiMessagePdcActivateConfigOutput *
-qmi_client_pdc_activate_config_finish (QmiClientPdc *self,
-                                       GAsyncResult *res,
-                                       GError **error);
-

Finishes an async operation started with qmi_client_pdc_activate_config().

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiClientPdc.

 

res

the GAsyncResult obtained from the GAsyncReadyCallback passed to qmi_client_pdc_activate_config().

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

a QmiMessagePdcActivateConfigOutput, or NULL if error -is set. The returned value should be freed with qmi_message_pdc_activate_config_output_unref().

-
-

Since: 1.18

-
-
-
-

Types and Values

-
-

QmiMessagePdcActivateConfigInput

-
typedef struct _QmiMessagePdcActivateConfigInput QmiMessagePdcActivateConfigInput;
-

The QmiMessagePdcActivateConfigInput structure contains private data and should only be accessed -using the provided API.

-

Since: 1.18

-
-
-
-

QmiMessagePdcActivateConfigOutput

-
typedef struct _QmiMessagePdcActivateConfigOutput QmiMessagePdcActivateConfigOutput;
-

The QmiMessagePdcActivateConfigOutput structure contains private data and should only be accessed -using the provided API.

-

Since: 1.18

-
-
-
- - - \ No newline at end of file diff -Nru libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-PDC-Activate-Config-indication.html libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-PDC-Activate-Config-indication.html --- libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-PDC-Activate-Config-indication.html 1970-01-01 01:00:00.000000000 +0100 +++ libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-PDC-Activate-Config-indication.html 2019-01-08 15:19:02.000000000 +0100 @@ -0,0 +1,259 @@ + + + + +PDC Activate Config indication: libqmi-glib Reference Manual + + + + + + + + + + + + + + + + +
+
+
+ + +
+

PDC Activate Config indication

+

PDC Activate Config indication

+
+ +
+

Types and Values

+ +
+
+

Object Hierarchy

+
    GBoxed
+    ╰── QmiIndicationPdcActivateConfigOutput
+
+
+
+

Description

+
+
+

Functions

+
+

qmi_indication_pdc_activate_config_output_ref ()

+
QmiIndicationPdcActivateConfigOutput *
+qmi_indication_pdc_activate_config_output_ref
+                               (QmiIndicationPdcActivateConfigOutput *self);
+

Atomically increments the reference count of self + by one.

+
+

Parameters

+
+++++ + + + + + +

self

a QmiIndicationPdcActivateConfigOutput.

 
+
+
+

Returns

+

the new reference to self +.

+
+

Since: 1.18

+
+
+
+

qmi_indication_pdc_activate_config_output_unref ()

+
void
+qmi_indication_pdc_activate_config_output_unref
+                               (QmiIndicationPdcActivateConfigOutput *self);
+

Atomically decrements the reference count of self + by one. +If the reference count drops to 0, self + is completely disposed.

+
+

Parameters

+
+++++ + + + + + +

self

a QmiIndicationPdcActivateConfigOutput.

 
+
+

Since: 1.18

+
+
+
+

qmi_indication_pdc_activate_config_output_get_token ()

+
gboolean
+qmi_indication_pdc_activate_config_output_get_token
+                               (QmiIndicationPdcActivateConfigOutput *self,
+                                guint32 *value_token,
+                                GError **error);
+

Get the 'Token' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiIndicationPdcActivateConfigOutput.

 

value_token

a placeholder for the output guint32, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.18

+
+
+
+

qmi_indication_pdc_activate_config_output_get_indication_result ()

+
gboolean
+qmi_indication_pdc_activate_config_output_get_indication_result
+                               (QmiIndicationPdcActivateConfigOutput *self,
+                                guint16 *value_indication_result,
+                                GError **error);
+

Get the 'Indication Result' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiIndicationPdcActivateConfigOutput.

 

value_indication_result

a placeholder for the output guint16, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.18

+
+
+
+

Types and Values

+
+

QmiIndicationPdcActivateConfigOutput

+
typedef struct _QmiIndicationPdcActivateConfigOutput QmiIndicationPdcActivateConfigOutput;
+

The QmiIndicationPdcActivateConfigOutput structure contains private data and should only be accessed +using the provided API.

+

Since: 1.18

+
+
+
+ + + \ No newline at end of file diff -Nru libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-PDC-Activate-Config-request.html libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-PDC-Activate-Config-request.html --- libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-PDC-Activate-Config-request.html 1970-01-01 01:00:00.000000000 +0100 +++ libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-PDC-Activate-Config-request.html 2019-01-08 15:19:02.000000000 +0100 @@ -0,0 +1,683 @@ + + + + +PDC Activate Config request: libqmi-glib Reference Manual + + + + + + + + + + + + + + + + +
+
+
+ + +
+

PDC Activate Config request

+

PDC Activate Config request

+
+ +
+

Types and Values

+ +
+
+

Object Hierarchy

+
    GBoxed
+    ├── QmiMessagePdcActivateConfigInput
+    ╰── QmiMessagePdcActivateConfigOutput
+
+
+
+

Description

+
+
+

Functions

+
+

qmi_message_pdc_activate_config_input_new ()

+
QmiMessagePdcActivateConfigInput *
+qmi_message_pdc_activate_config_input_new
+                               (void);
+

Allocates a new QmiMessagePdcActivateConfigInput.

+
+

Returns

+

the newly created QmiMessagePdcActivateConfigInput. The returned value should be freed with qmi_message_pdc_activate_config_input_unref().

+
+

Since: 1.18

+
+
+
+

qmi_message_pdc_activate_config_input_ref ()

+
QmiMessagePdcActivateConfigInput *
+qmi_message_pdc_activate_config_input_ref
+                               (QmiMessagePdcActivateConfigInput *self);
+

Atomically increments the reference count of self + by one.

+
+

Parameters

+
+++++ + + + + + +

self

a QmiMessagePdcActivateConfigInput.

 
+
+
+

Returns

+

the new reference to self +.

+
+

Since: 1.18

+
+
+
+

qmi_message_pdc_activate_config_input_unref ()

+
void
+qmi_message_pdc_activate_config_input_unref
+                               (QmiMessagePdcActivateConfigInput *self);
+

Atomically decrements the reference count of self + by one. +If the reference count drops to 0, self + is completely disposed.

+
+

Parameters

+
+++++ + + + + + +

self

a QmiMessagePdcActivateConfigInput.

 
+
+

Since: 1.18

+
+
+
+

qmi_message_pdc_activate_config_input_get_token ()

+
gboolean
+qmi_message_pdc_activate_config_input_get_token
+                               (QmiMessagePdcActivateConfigInput *self,
+                                guint32 *value_token,
+                                GError **error);
+

Get the 'Token' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessagePdcActivateConfigInput.

 

value_token

a placeholder for the output guint32, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.18

+
+
+
+

qmi_message_pdc_activate_config_input_set_token ()

+
gboolean
+qmi_message_pdc_activate_config_input_set_token
+                               (QmiMessagePdcActivateConfigInput *self,
+                                guint32 value_token,
+                                GError **error);
+

Set the 'Token' field in the message.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessagePdcActivateConfigInput.

 

value_token

a guint32.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if value +was successfully set, FALSE otherwise.

+
+

Since: 1.18

+
+
+
+

qmi_message_pdc_activate_config_input_get_config_type ()

+
gboolean
+qmi_message_pdc_activate_config_input_get_config_type
+                               (QmiMessagePdcActivateConfigInput *self,
+                                QmiPdcConfigurationType *value_config_type,
+                                GError **error);
+

Get the 'Config Type' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessagePdcActivateConfigInput.

 

value_config_type

a placeholder for the output QmiPdcConfigurationType, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.18

+
+
+
+

qmi_message_pdc_activate_config_input_set_config_type ()

+
gboolean
+qmi_message_pdc_activate_config_input_set_config_type
+                               (QmiMessagePdcActivateConfigInput *self,
+                                QmiPdcConfigurationType value_config_type,
+                                GError **error);
+

Set the 'Config Type' field in the message.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessagePdcActivateConfigInput.

 

value_config_type

a QmiPdcConfigurationType.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if value +was successfully set, FALSE otherwise.

+
+

Since: 1.18

+
+
+
+

qmi_message_pdc_activate_config_output_ref ()

+
QmiMessagePdcActivateConfigOutput *
+qmi_message_pdc_activate_config_output_ref
+                               (QmiMessagePdcActivateConfigOutput *self);
+

Atomically increments the reference count of self + by one.

+
+

Parameters

+
+++++ + + + + + +

self

a QmiMessagePdcActivateConfigOutput.

 
+
+
+

Returns

+

the new reference to self +.

+
+

Since: 1.18

+
+
+
+

qmi_message_pdc_activate_config_output_unref ()

+
void
+qmi_message_pdc_activate_config_output_unref
+                               (QmiMessagePdcActivateConfigOutput *self);
+

Atomically decrements the reference count of self + by one. +If the reference count drops to 0, self + is completely disposed.

+
+

Parameters

+
+++++ + + + + + +

self

a QmiMessagePdcActivateConfigOutput.

 
+
+

Since: 1.18

+
+
+
+

qmi_message_pdc_activate_config_output_get_token ()

+
gboolean
+qmi_message_pdc_activate_config_output_get_token
+                               (QmiMessagePdcActivateConfigOutput *self,
+                                guint32 *value_token,
+                                GError **error);
+

Get the 'Token' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessagePdcActivateConfigOutput.

 

value_token

a placeholder for the output guint32, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.18

+
+
+
+

qmi_message_pdc_activate_config_output_get_result ()

+
gboolean
+qmi_message_pdc_activate_config_output_get_result
+                               (QmiMessagePdcActivateConfigOutput *self,
+                                GError **error);
+

Get the result of the QMI operation.

+
+

Parameters

+
+++++ + + + + + + + + + + + + +

self

a QmiMessagePdcActivateConfigOutput.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the QMI operation succeeded, FALSE if error +is set.

+
+

Since: 1.18

+
+
+
+

qmi_client_pdc_activate_config ()

+
void
+qmi_client_pdc_activate_config (QmiClientPdc *self,
+                                QmiMessagePdcActivateConfigInput *input,
+                                guint timeout,
+                                GCancellable *cancellable,
+                                GAsyncReadyCallback callback,
+                                gpointer user_data);
+

Asynchronously sends a Activate Config request to the device.

+

When the operation is finished, callback + will be invoked in the thread-default main loop of the thread you are calling this method from.

+

You can then call qmi_client_pdc_activate_config_finish() to get the result of the operation.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

self

a QmiClientPdc.

 

input

a QmiMessagePdcActivateConfigInput.

 

timeout

maximum time to wait for the method to complete, in seconds.

 

cancellable

a GCancellable or NULL.

 

callback

a GAsyncReadyCallback to call when the request is satisfied.

 

user_data

user data to pass to callback +.

 
+
+

Since: 1.18

+
+
+
+

qmi_client_pdc_activate_config_finish ()

+
QmiMessagePdcActivateConfigOutput *
+qmi_client_pdc_activate_config_finish (QmiClientPdc *self,
+                                       GAsyncResult *res,
+                                       GError **error);
+

Finishes an async operation started with qmi_client_pdc_activate_config().

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiClientPdc.

 

res

the GAsyncResult obtained from the GAsyncReadyCallback passed to qmi_client_pdc_activate_config().

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

a QmiMessagePdcActivateConfigOutput, or NULL if error +is set. The returned value should be freed with qmi_message_pdc_activate_config_output_unref().

+
+

Since: 1.18

+
+
+
+

Types and Values

+
+

QmiMessagePdcActivateConfigInput

+
typedef struct _QmiMessagePdcActivateConfigInput QmiMessagePdcActivateConfigInput;
+

The QmiMessagePdcActivateConfigInput structure contains private data and should only be accessed +using the provided API.

+

Since: 1.18

+
+
+
+

QmiMessagePdcActivateConfigOutput

+
typedef struct _QmiMessagePdcActivateConfigOutput QmiMessagePdcActivateConfigOutput;
+

The QmiMessagePdcActivateConfigOutput structure contains private data and should only be accessed +using the provided API.

+

Since: 1.18

+
+
+
+ + + \ No newline at end of file diff -Nru libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-PDC-Config-Change.html libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-PDC-Config-Change.html --- libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-PDC-Config-Change.html 2017-03-22 12:28:28.000000000 +0100 +++ libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-PDC-Config-Change.html 1970-01-01 01:00:00.000000000 +0100 @@ -1,618 +0,0 @@ - - - - -PDC Config Change: libqmi-glib Reference Manual - - - - - - - - - - - - - - - - -
-
-
- - -
-

PDC Config Change

-

PDC Config Change

-
- -
-

Types and Values

- -
-
-

Object Hierarchy

-
    GBoxed
-    ├── QmiMessagePdcConfigChangeInput
-    ╰── QmiMessagePdcConfigChangeOutput
-
-
-
-

Description

-
-
-

Functions

-
-

qmi_message_pdc_config_change_input_new ()

-
QmiMessagePdcConfigChangeInput *
-qmi_message_pdc_config_change_input_new
-                               (void);
-

Allocates a new QmiMessagePdcConfigChangeInput.

-
-

Returns

-

the newly created QmiMessagePdcConfigChangeInput. The returned value should be freed with qmi_message_pdc_config_change_input_unref().

-
-

Since: 1.18

-
-
-
-

qmi_message_pdc_config_change_input_ref ()

-
QmiMessagePdcConfigChangeInput *
-qmi_message_pdc_config_change_input_ref
-                               (QmiMessagePdcConfigChangeInput *self);
-

Atomically increments the reference count of self - by one.

-
-

Parameters

-
----- - - - - - -

self

a QmiMessagePdcConfigChangeInput.

 
-
-
-

Returns

-

the new reference to self -.

-
-

Since: 1.18

-
-
-
-

qmi_message_pdc_config_change_input_unref ()

-
void
-qmi_message_pdc_config_change_input_unref
-                               (QmiMessagePdcConfigChangeInput *self);
-

Atomically decrements the reference count of self - by one. -If the reference count drops to 0, self - is completely disposed.

-
-

Parameters

-
----- - - - - - -

self

a QmiMessagePdcConfigChangeInput.

 
-
-

Since: 1.18

-
-
-
-

qmi_message_pdc_config_change_input_get_type_with_id ()

-
gboolean
-qmi_message_pdc_config_change_input_get_type_with_id
-                               (QmiMessagePdcConfigChangeInput *self,
-                                QmiConfigTypeAndId *value_type_with_id,
-                                GError **error);
-

Get the 'Type With Id' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessagePdcConfigChangeInput.

 

value_type_with_id

a placeholder for the output constant QmiConfigTypeAndId, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.18

-
-
-
-

qmi_message_pdc_config_change_input_set_type_with_id ()

-
gboolean
-qmi_message_pdc_config_change_input_set_type_with_id
-                               (QmiMessagePdcConfigChangeInput *self,
-                                const QmiConfigTypeAndId *value_type_with_id,
-                                GError **error);
-

Set the 'Type With Id' field in the message.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessagePdcConfigChangeInput.

 

value_type_with_id

the address of the QmiConfigTypeAndId to set.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if value -was successfully set, FALSE otherwise.

-
-

Since: 1.18

-
-
-
-

qmi_message_pdc_config_change_output_ref ()

-
QmiMessagePdcConfigChangeOutput *
-qmi_message_pdc_config_change_output_ref
-                               (QmiMessagePdcConfigChangeOutput *self);
-

Atomically increments the reference count of self - by one.

-
-

Parameters

-
----- - - - - - -

self

a QmiMessagePdcConfigChangeOutput.

 
-
-
-

Returns

-

the new reference to self -.

-
-

Since: 1.18

-
-
-
-

qmi_message_pdc_config_change_output_unref ()

-
void
-qmi_message_pdc_config_change_output_unref
-                               (QmiMessagePdcConfigChangeOutput *self);
-

Atomically decrements the reference count of self - by one. -If the reference count drops to 0, self - is completely disposed.

-
-

Parameters

-
----- - - - - - -

self

a QmiMessagePdcConfigChangeOutput.

 
-
-

Since: 1.18

-
-
-
-

qmi_message_pdc_config_change_output_get_type_with_id ()

-
gboolean
-qmi_message_pdc_config_change_output_get_type_with_id
-                               (QmiMessagePdcConfigChangeOutput *self,
-                                QmiConfigTypeAndId *value_type_with_id,
-                                GError **error);
-

Get the 'Type With Id' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessagePdcConfigChangeOutput.

 

value_type_with_id

a placeholder for the output constant QmiConfigTypeAndId, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.18

-
-
-
-

qmi_message_pdc_config_change_output_get_result ()

-
gboolean
-qmi_message_pdc_config_change_output_get_result
-                               (QmiMessagePdcConfigChangeOutput *self,
-                                GError **error);
-

Get the result of the QMI operation.

-
-

Parameters

-
----- - - - - - - - - - - - - -

self

a QmiMessagePdcConfigChangeOutput.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the QMI operation succeeded, FALSE if error -is set.

-
-

Since: 1.18

-
-
-
-

qmi_client_pdc_config_change ()

-
void
-qmi_client_pdc_config_change (QmiClientPdc *self,
-                              QmiMessagePdcConfigChangeInput *input,
-                              guint timeout,
-                              GCancellable *cancellable,
-                              GAsyncReadyCallback callback,
-                              gpointer user_data);
-

Asynchronously sends a Config Change request to the device.

-

When the operation is finished, callback - will be invoked in the thread-default main loop of the thread you are calling this method from.

-

You can then call qmi_client_pdc_config_change_finish() to get the result of the operation.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

self

a QmiClientPdc.

 

input

a QmiMessagePdcConfigChangeInput.

 

timeout

maximum time to wait for the method to complete, in seconds.

 

cancellable

a GCancellable or NULL.

 

callback

a GAsyncReadyCallback to call when the request is satisfied.

 

user_data

user data to pass to callback -.

 
-
-

Since: 1.18

-
-
-
-

qmi_client_pdc_config_change_finish ()

-
QmiMessagePdcConfigChangeOutput *
-qmi_client_pdc_config_change_finish (QmiClientPdc *self,
-                                     GAsyncResult *res,
-                                     GError **error);
-

Finishes an async operation started with qmi_client_pdc_config_change().

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiClientPdc.

 

res

the GAsyncResult obtained from the GAsyncReadyCallback passed to qmi_client_pdc_config_change().

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

a QmiMessagePdcConfigChangeOutput, or NULL if error -is set. The returned value should be freed with qmi_message_pdc_config_change_output_unref().

-
-

Since: 1.18

-
-
-
-

Types and Values

-
-

QmiMessagePdcConfigChangeInput

-
typedef struct _QmiMessagePdcConfigChangeInput QmiMessagePdcConfigChangeInput;
-

The QmiMessagePdcConfigChangeInput structure contains private data and should only be accessed -using the provided API.

-

Since: 1.18

-
-
-
-

QmiConfigTypeAndId

-
typedef struct {
-    QmiPdcConfigurationType config_type;
-    GArray *id;
-} QmiConfigTypeAndId;
-
-

A QmiConfigTypeAndId struct.

-
-

Members

-
----- - - - - - - - - - - - - -

QmiPdcConfigurationType config_type;

a QmiPdcConfigurationType.

 

GArray *id;

a GArray of guint8 elements.

 
-
-

Since: 1.18

-
-
-
-

QmiMessagePdcConfigChangeOutput

-
typedef struct _QmiMessagePdcConfigChangeOutput QmiMessagePdcConfigChangeOutput;
-

The QmiMessagePdcConfigChangeOutput structure contains private data and should only be accessed -using the provided API.

-

Since: 1.18

-
-
-
- - - \ No newline at end of file diff -Nru libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-PDC-Config-Change-request.html libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-PDC-Config-Change-request.html --- libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-PDC-Config-Change-request.html 1970-01-01 01:00:00.000000000 +0100 +++ libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-PDC-Config-Change-request.html 2019-01-08 15:19:02.000000000 +0100 @@ -0,0 +1,618 @@ + + + + +PDC Config Change request: libqmi-glib Reference Manual + + + + + + + + + + + + + + + + +
+
+
+ + +
+

PDC Config Change request

+

PDC Config Change request

+
+ +
+

Types and Values

+ +
+
+

Object Hierarchy

+
    GBoxed
+    ├── QmiMessagePdcConfigChangeInput
+    ╰── QmiMessagePdcConfigChangeOutput
+
+
+
+

Description

+
+
+

Functions

+
+

qmi_message_pdc_config_change_input_new ()

+
QmiMessagePdcConfigChangeInput *
+qmi_message_pdc_config_change_input_new
+                               (void);
+

Allocates a new QmiMessagePdcConfigChangeInput.

+
+

Returns

+

the newly created QmiMessagePdcConfigChangeInput. The returned value should be freed with qmi_message_pdc_config_change_input_unref().

+
+

Since: 1.18

+
+
+
+

qmi_message_pdc_config_change_input_ref ()

+
QmiMessagePdcConfigChangeInput *
+qmi_message_pdc_config_change_input_ref
+                               (QmiMessagePdcConfigChangeInput *self);
+

Atomically increments the reference count of self + by one.

+
+

Parameters

+
+++++ + + + + + +

self

a QmiMessagePdcConfigChangeInput.

 
+
+
+

Returns

+

the new reference to self +.

+
+

Since: 1.18

+
+
+
+

qmi_message_pdc_config_change_input_unref ()

+
void
+qmi_message_pdc_config_change_input_unref
+                               (QmiMessagePdcConfigChangeInput *self);
+

Atomically decrements the reference count of self + by one. +If the reference count drops to 0, self + is completely disposed.

+
+

Parameters

+
+++++ + + + + + +

self

a QmiMessagePdcConfigChangeInput.

 
+
+

Since: 1.18

+
+
+
+

qmi_message_pdc_config_change_input_get_type_with_id ()

+
gboolean
+qmi_message_pdc_config_change_input_get_type_with_id
+                               (QmiMessagePdcConfigChangeInput *self,
+                                QmiConfigTypeAndId *value_type_with_id,
+                                GError **error);
+

Get the 'Type With Id' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessagePdcConfigChangeInput.

 

value_type_with_id

a placeholder for the output constant QmiConfigTypeAndId, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.18

+
+
+
+

qmi_message_pdc_config_change_input_set_type_with_id ()

+
gboolean
+qmi_message_pdc_config_change_input_set_type_with_id
+                               (QmiMessagePdcConfigChangeInput *self,
+                                const QmiConfigTypeAndId *value_type_with_id,
+                                GError **error);
+

Set the 'Type With Id' field in the message.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessagePdcConfigChangeInput.

 

value_type_with_id

the address of the QmiConfigTypeAndId to set.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if value +was successfully set, FALSE otherwise.

+
+

Since: 1.18

+
+
+
+

qmi_message_pdc_config_change_output_ref ()

+
QmiMessagePdcConfigChangeOutput *
+qmi_message_pdc_config_change_output_ref
+                               (QmiMessagePdcConfigChangeOutput *self);
+

Atomically increments the reference count of self + by one.

+
+

Parameters

+
+++++ + + + + + +

self

a QmiMessagePdcConfigChangeOutput.

 
+
+
+

Returns

+

the new reference to self +.

+
+

Since: 1.18

+
+
+
+

qmi_message_pdc_config_change_output_unref ()

+
void
+qmi_message_pdc_config_change_output_unref
+                               (QmiMessagePdcConfigChangeOutput *self);
+

Atomically decrements the reference count of self + by one. +If the reference count drops to 0, self + is completely disposed.

+
+

Parameters

+
+++++ + + + + + +

self

a QmiMessagePdcConfigChangeOutput.

 
+
+

Since: 1.18

+
+
+
+

qmi_message_pdc_config_change_output_get_type_with_id ()

+
gboolean
+qmi_message_pdc_config_change_output_get_type_with_id
+                               (QmiMessagePdcConfigChangeOutput *self,
+                                QmiConfigTypeAndId *value_type_with_id,
+                                GError **error);
+

Get the 'Type With Id' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessagePdcConfigChangeOutput.

 

value_type_with_id

a placeholder for the output constant QmiConfigTypeAndId, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.18

+
+
+
+

qmi_message_pdc_config_change_output_get_result ()

+
gboolean
+qmi_message_pdc_config_change_output_get_result
+                               (QmiMessagePdcConfigChangeOutput *self,
+                                GError **error);
+

Get the result of the QMI operation.

+
+

Parameters

+
+++++ + + + + + + + + + + + + +

self

a QmiMessagePdcConfigChangeOutput.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the QMI operation succeeded, FALSE if error +is set.

+
+

Since: 1.18

+
+
+
+

qmi_client_pdc_config_change ()

+
void
+qmi_client_pdc_config_change (QmiClientPdc *self,
+                              QmiMessagePdcConfigChangeInput *input,
+                              guint timeout,
+                              GCancellable *cancellable,
+                              GAsyncReadyCallback callback,
+                              gpointer user_data);
+

Asynchronously sends a Config Change request to the device.

+

When the operation is finished, callback + will be invoked in the thread-default main loop of the thread you are calling this method from.

+

You can then call qmi_client_pdc_config_change_finish() to get the result of the operation.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

self

a QmiClientPdc.

 

input

a QmiMessagePdcConfigChangeInput.

 

timeout

maximum time to wait for the method to complete, in seconds.

 

cancellable

a GCancellable or NULL.

 

callback

a GAsyncReadyCallback to call when the request is satisfied.

 

user_data

user data to pass to callback +.

 
+
+

Since: 1.18

+
+
+
+

qmi_client_pdc_config_change_finish ()

+
QmiMessagePdcConfigChangeOutput *
+qmi_client_pdc_config_change_finish (QmiClientPdc *self,
+                                     GAsyncResult *res,
+                                     GError **error);
+

Finishes an async operation started with qmi_client_pdc_config_change().

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiClientPdc.

 

res

the GAsyncResult obtained from the GAsyncReadyCallback passed to qmi_client_pdc_config_change().

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

a QmiMessagePdcConfigChangeOutput, or NULL if error +is set. The returned value should be freed with qmi_message_pdc_config_change_output_unref().

+
+

Since: 1.18

+
+
+
+

Types and Values

+
+

QmiMessagePdcConfigChangeInput

+
typedef struct _QmiMessagePdcConfigChangeInput QmiMessagePdcConfigChangeInput;
+

The QmiMessagePdcConfigChangeInput structure contains private data and should only be accessed +using the provided API.

+

Since: 1.18

+
+
+
+

QmiConfigTypeAndId

+
typedef struct {
+    QmiPdcConfigurationType config_type;
+    GArray *id;
+} QmiConfigTypeAndId;
+
+

A QmiConfigTypeAndId struct.

+
+

Members

+
+++++ + + + + + + + + + + + + +

QmiPdcConfigurationType config_type;

a QmiPdcConfigurationType.

 

GArray *id;

a GArray of guint8 elements.

 
+
+

Since: 1.18

+
+
+
+

QmiMessagePdcConfigChangeOutput

+
typedef struct _QmiMessagePdcConfigChangeOutput QmiMessagePdcConfigChangeOutput;
+

The QmiMessagePdcConfigChangeOutput structure contains private data and should only be accessed +using the provided API.

+

Since: 1.18

+
+
+
+ + + \ No newline at end of file diff -Nru libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-PDC-Deactivate-Config.html libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-PDC-Deactivate-Config.html --- libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-PDC-Deactivate-Config.html 2017-03-22 12:28:28.000000000 +0100 +++ libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-PDC-Deactivate-Config.html 1970-01-01 01:00:00.000000000 +0100 @@ -1,684 +0,0 @@ - - - - -PDC Deactivate Config: libqmi-glib Reference Manual - - - - - - - - - - - - - - - - -
-
-
- - -
-

PDC Deactivate Config

-

PDC Deactivate Config

-
- -
-

Types and Values

- -
-
-

Object Hierarchy

-
    GBoxed
-    ├── QmiMessagePdcDeactivateConfigInput
-    ╰── QmiMessagePdcDeactivateConfigOutput
-
-
-
-

Description

-
-
-

Functions

-
-

qmi_message_pdc_deactivate_config_input_new ()

-
QmiMessagePdcDeactivateConfigInput *
-qmi_message_pdc_deactivate_config_input_new
-                               (void);
-

Allocates a new QmiMessagePdcDeactivateConfigInput.

-
-

Returns

-

the newly created QmiMessagePdcDeactivateConfigInput. The returned value should be freed with qmi_message_pdc_deactivate_config_input_unref().

-
-

Since: 1.18

-
-
-
-

qmi_message_pdc_deactivate_config_input_ref ()

-
QmiMessagePdcDeactivateConfigInput *
-qmi_message_pdc_deactivate_config_input_ref
-                               (QmiMessagePdcDeactivateConfigInput *self);
-

Atomically increments the reference count of self - by one.

-
-

Parameters

-
----- - - - - - -

self

a QmiMessagePdcDeactivateConfigInput.

 
-
-
-

Returns

-

the new reference to self -.

-
-

Since: 1.18

-
-
-
-

qmi_message_pdc_deactivate_config_input_unref ()

-
void
-qmi_message_pdc_deactivate_config_input_unref
-                               (QmiMessagePdcDeactivateConfigInput *self);
-

Atomically decrements the reference count of self - by one. -If the reference count drops to 0, self - is completely disposed.

-
-

Parameters

-
----- - - - - - -

self

a QmiMessagePdcDeactivateConfigInput.

 
-
-

Since: 1.18

-
-
-
-

qmi_message_pdc_deactivate_config_input_get_token ()

-
gboolean
-qmi_message_pdc_deactivate_config_input_get_token
-                               (QmiMessagePdcDeactivateConfigInput *self,
-                                guint32 *value_token,
-                                GError **error);
-

Get the 'Token' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessagePdcDeactivateConfigInput.

 

value_token

a placeholder for the output guint32, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.18

-
-
-
-

qmi_message_pdc_deactivate_config_input_set_token ()

-
gboolean
-qmi_message_pdc_deactivate_config_input_set_token
-                               (QmiMessagePdcDeactivateConfigInput *self,
-                                guint32 value_token,
-                                GError **error);
-

Set the 'Token' field in the message.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessagePdcDeactivateConfigInput.

 

value_token

a guint32.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if value -was successfully set, FALSE otherwise.

-
-

Since: 1.18

-
-
-
-

qmi_message_pdc_deactivate_config_input_get_config_type ()

-
gboolean
-qmi_message_pdc_deactivate_config_input_get_config_type
-                               (QmiMessagePdcDeactivateConfigInput *self,
-                                QmiPdcConfigurationType *value_config_type,
-                                GError **error);
-

Get the 'Config Type' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessagePdcDeactivateConfigInput.

 

value_config_type

a placeholder for the output QmiPdcConfigurationType, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.18

-
-
-
-

qmi_message_pdc_deactivate_config_input_set_config_type ()

-
gboolean
-qmi_message_pdc_deactivate_config_input_set_config_type
-                               (QmiMessagePdcDeactivateConfigInput *self,
-                                QmiPdcConfigurationType value_config_type,
-                                GError **error);
-

Set the 'Config Type' field in the message.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessagePdcDeactivateConfigInput.

 

value_config_type

a QmiPdcConfigurationType.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if value -was successfully set, FALSE otherwise.

-
-

Since: 1.18

-
-
-
-

qmi_message_pdc_deactivate_config_output_ref ()

-
QmiMessagePdcDeactivateConfigOutput *
-qmi_message_pdc_deactivate_config_output_ref
-                               (QmiMessagePdcDeactivateConfigOutput *self);
-

Atomically increments the reference count of self - by one.

-
-

Parameters

-
----- - - - - - -

self

a QmiMessagePdcDeactivateConfigOutput.

 
-
-
-

Returns

-

the new reference to self -.

-
-

Since: 1.18

-
-
-
-

qmi_message_pdc_deactivate_config_output_unref ()

-
void
-qmi_message_pdc_deactivate_config_output_unref
-                               (QmiMessagePdcDeactivateConfigOutput *self);
-

Atomically decrements the reference count of self - by one. -If the reference count drops to 0, self - is completely disposed.

-
-

Parameters

-
----- - - - - - -

self

a QmiMessagePdcDeactivateConfigOutput.

 
-
-

Since: 1.18

-
-
-
-

qmi_message_pdc_deactivate_config_output_get_token ()

-
gboolean
-qmi_message_pdc_deactivate_config_output_get_token
-                               (QmiMessagePdcDeactivateConfigOutput *self,
-                                guint32 *value_token,
-                                GError **error);
-

Get the 'Token' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessagePdcDeactivateConfigOutput.

 

value_token

a placeholder for the output guint32, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.18

-
-
-
-

qmi_message_pdc_deactivate_config_output_get_result ()

-
gboolean
-qmi_message_pdc_deactivate_config_output_get_result
-                               (QmiMessagePdcDeactivateConfigOutput *self,
-                                GError **error);
-

Get the result of the QMI operation.

-
-

Parameters

-
----- - - - - - - - - - - - - -

self

a QmiMessagePdcDeactivateConfigOutput.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the QMI operation succeeded, FALSE if error -is set.

-
-

Since: 1.18

-
-
-
-

qmi_client_pdc_deactivate_config ()

-
void
-qmi_client_pdc_deactivate_config (QmiClientPdc *self,
-                                  QmiMessagePdcDeactivateConfigInput *input,
-                                  guint timeout,
-                                  GCancellable *cancellable,
-                                  GAsyncReadyCallback callback,
-                                  gpointer user_data);
-

Asynchronously sends a Deactivate Config request to the device.

-

When the operation is finished, callback - will be invoked in the thread-default main loop of the thread you are calling this method from.

-

You can then call qmi_client_pdc_deactivate_config_finish() to get the result of the operation.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

self

a QmiClientPdc.

 

input

a QmiMessagePdcDeactivateConfigInput.

 

timeout

maximum time to wait for the method to complete, in seconds.

 

cancellable

a GCancellable or NULL.

 

callback

a GAsyncReadyCallback to call when the request is satisfied.

 

user_data

user data to pass to callback -.

 
-
-

Since: 1.18

-
-
-
-

qmi_client_pdc_deactivate_config_finish ()

-
QmiMessagePdcDeactivateConfigOutput *
-qmi_client_pdc_deactivate_config_finish
-                               (QmiClientPdc *self,
-                                GAsyncResult *res,
-                                GError **error);
-

Finishes an async operation started with qmi_client_pdc_deactivate_config().

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiClientPdc.

 

res

the GAsyncResult obtained from the GAsyncReadyCallback passed to qmi_client_pdc_deactivate_config().

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

a QmiMessagePdcDeactivateConfigOutput, or NULL if error -is set. The returned value should be freed with qmi_message_pdc_deactivate_config_output_unref().

-
-

Since: 1.18

-
-
-
-

Types and Values

-
-

QmiMessagePdcDeactivateConfigInput

-
typedef struct _QmiMessagePdcDeactivateConfigInput QmiMessagePdcDeactivateConfigInput;
-

The QmiMessagePdcDeactivateConfigInput structure contains private data and should only be accessed -using the provided API.

-

Since: 1.18

-
-
-
-

QmiMessagePdcDeactivateConfigOutput

-
typedef struct _QmiMessagePdcDeactivateConfigOutput QmiMessagePdcDeactivateConfigOutput;
-

The QmiMessagePdcDeactivateConfigOutput structure contains private data and should only be accessed -using the provided API.

-

Since: 1.18

-
-
-
- - - \ No newline at end of file diff -Nru libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-PDC-Deactivate-Config-indication.html libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-PDC-Deactivate-Config-indication.html --- libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-PDC-Deactivate-Config-indication.html 1970-01-01 01:00:00.000000000 +0100 +++ libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-PDC-Deactivate-Config-indication.html 2019-01-08 15:19:02.000000000 +0100 @@ -0,0 +1,259 @@ + + + + +PDC Deactivate Config indication: libqmi-glib Reference Manual + + + + + + + + + + + + + + + + +
+
+
+ + +
+

PDC Deactivate Config indication

+

PDC Deactivate Config indication

+
+ +
+

Types and Values

+ +
+
+

Object Hierarchy

+
    GBoxed
+    ╰── QmiIndicationPdcDeactivateConfigOutput
+
+
+
+

Description

+
+
+

Functions

+
+

qmi_indication_pdc_deactivate_config_output_ref ()

+
QmiIndicationPdcDeactivateConfigOutput *
+qmi_indication_pdc_deactivate_config_output_ref
+                               (QmiIndicationPdcDeactivateConfigOutput *self);
+

Atomically increments the reference count of self + by one.

+
+

Parameters

+
+++++ + + + + + +

self

a QmiIndicationPdcDeactivateConfigOutput.

 
+
+
+

Returns

+

the new reference to self +.

+
+

Since: 1.18

+
+
+
+

qmi_indication_pdc_deactivate_config_output_unref ()

+
void
+qmi_indication_pdc_deactivate_config_output_unref
+                               (QmiIndicationPdcDeactivateConfigOutput *self);
+

Atomically decrements the reference count of self + by one. +If the reference count drops to 0, self + is completely disposed.

+
+

Parameters

+
+++++ + + + + + +

self

a QmiIndicationPdcDeactivateConfigOutput.

 
+
+

Since: 1.18

+
+
+
+

qmi_indication_pdc_deactivate_config_output_get_token ()

+
gboolean
+qmi_indication_pdc_deactivate_config_output_get_token
+                               (QmiIndicationPdcDeactivateConfigOutput *self,
+                                guint32 *value_token,
+                                GError **error);
+

Get the 'Token' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiIndicationPdcDeactivateConfigOutput.

 

value_token

a placeholder for the output guint32, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.18

+
+
+
+

qmi_indication_pdc_deactivate_config_output_get_indication_result ()

+
gboolean
+qmi_indication_pdc_deactivate_config_output_get_indication_result
+                               (QmiIndicationPdcDeactivateConfigOutput *self,
+                                guint16 *value_indication_result,
+                                GError **error);
+

Get the 'Indication Result' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiIndicationPdcDeactivateConfigOutput.

 

value_indication_result

a placeholder for the output guint16, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.18

+
+
+
+

Types and Values

+
+

QmiIndicationPdcDeactivateConfigOutput

+
typedef struct _QmiIndicationPdcDeactivateConfigOutput QmiIndicationPdcDeactivateConfigOutput;
+

The QmiIndicationPdcDeactivateConfigOutput structure contains private data and should only be accessed +using the provided API.

+

Since: 1.18

+
+
+
+ + + \ No newline at end of file diff -Nru libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-PDC-Deactivate-Config-request.html libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-PDC-Deactivate-Config-request.html --- libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-PDC-Deactivate-Config-request.html 1970-01-01 01:00:00.000000000 +0100 +++ libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-PDC-Deactivate-Config-request.html 2019-01-08 15:19:02.000000000 +0100 @@ -0,0 +1,684 @@ + + + + +PDC Deactivate Config request: libqmi-glib Reference Manual + + + + + + + + + + + + + + + + +
+
+
+ + +
+

PDC Deactivate Config request

+

PDC Deactivate Config request

+
+ +
+

Types and Values

+ +
+
+

Object Hierarchy

+
    GBoxed
+    ├── QmiMessagePdcDeactivateConfigInput
+    ╰── QmiMessagePdcDeactivateConfigOutput
+
+
+
+

Description

+
+
+

Functions

+
+

qmi_message_pdc_deactivate_config_input_new ()

+
QmiMessagePdcDeactivateConfigInput *
+qmi_message_pdc_deactivate_config_input_new
+                               (void);
+

Allocates a new QmiMessagePdcDeactivateConfigInput.

+
+

Returns

+

the newly created QmiMessagePdcDeactivateConfigInput. The returned value should be freed with qmi_message_pdc_deactivate_config_input_unref().

+
+

Since: 1.18

+
+
+
+

qmi_message_pdc_deactivate_config_input_ref ()

+
QmiMessagePdcDeactivateConfigInput *
+qmi_message_pdc_deactivate_config_input_ref
+                               (QmiMessagePdcDeactivateConfigInput *self);
+

Atomically increments the reference count of self + by one.

+
+

Parameters

+
+++++ + + + + + +

self

a QmiMessagePdcDeactivateConfigInput.

 
+
+
+

Returns

+

the new reference to self +.

+
+

Since: 1.18

+
+
+
+

qmi_message_pdc_deactivate_config_input_unref ()

+
void
+qmi_message_pdc_deactivate_config_input_unref
+                               (QmiMessagePdcDeactivateConfigInput *self);
+

Atomically decrements the reference count of self + by one. +If the reference count drops to 0, self + is completely disposed.

+
+

Parameters

+
+++++ + + + + + +

self

a QmiMessagePdcDeactivateConfigInput.

 
+
+

Since: 1.18

+
+
+
+

qmi_message_pdc_deactivate_config_input_get_token ()

+
gboolean
+qmi_message_pdc_deactivate_config_input_get_token
+                               (QmiMessagePdcDeactivateConfigInput *self,
+                                guint32 *value_token,
+                                GError **error);
+

Get the 'Token' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessagePdcDeactivateConfigInput.

 

value_token

a placeholder for the output guint32, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.18

+
+
+
+

qmi_message_pdc_deactivate_config_input_set_token ()

+
gboolean
+qmi_message_pdc_deactivate_config_input_set_token
+                               (QmiMessagePdcDeactivateConfigInput *self,
+                                guint32 value_token,
+                                GError **error);
+

Set the 'Token' field in the message.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessagePdcDeactivateConfigInput.

 

value_token

a guint32.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if value +was successfully set, FALSE otherwise.

+
+

Since: 1.18

+
+
+
+

qmi_message_pdc_deactivate_config_input_get_config_type ()

+
gboolean
+qmi_message_pdc_deactivate_config_input_get_config_type
+                               (QmiMessagePdcDeactivateConfigInput *self,
+                                QmiPdcConfigurationType *value_config_type,
+                                GError **error);
+

Get the 'Config Type' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessagePdcDeactivateConfigInput.

 

value_config_type

a placeholder for the output QmiPdcConfigurationType, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.18

+
+
+
+

qmi_message_pdc_deactivate_config_input_set_config_type ()

+
gboolean
+qmi_message_pdc_deactivate_config_input_set_config_type
+                               (QmiMessagePdcDeactivateConfigInput *self,
+                                QmiPdcConfigurationType value_config_type,
+                                GError **error);
+

Set the 'Config Type' field in the message.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessagePdcDeactivateConfigInput.

 

value_config_type

a QmiPdcConfigurationType.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if value +was successfully set, FALSE otherwise.

+
+

Since: 1.18

+
+
+
+

qmi_message_pdc_deactivate_config_output_ref ()

+
QmiMessagePdcDeactivateConfigOutput *
+qmi_message_pdc_deactivate_config_output_ref
+                               (QmiMessagePdcDeactivateConfigOutput *self);
+

Atomically increments the reference count of self + by one.

+
+

Parameters

+
+++++ + + + + + +

self

a QmiMessagePdcDeactivateConfigOutput.

 
+
+
+

Returns

+

the new reference to self +.

+
+

Since: 1.18

+
+
+
+

qmi_message_pdc_deactivate_config_output_unref ()

+
void
+qmi_message_pdc_deactivate_config_output_unref
+                               (QmiMessagePdcDeactivateConfigOutput *self);
+

Atomically decrements the reference count of self + by one. +If the reference count drops to 0, self + is completely disposed.

+
+

Parameters

+
+++++ + + + + + +

self

a QmiMessagePdcDeactivateConfigOutput.

 
+
+

Since: 1.18

+
+
+
+

qmi_message_pdc_deactivate_config_output_get_token ()

+
gboolean
+qmi_message_pdc_deactivate_config_output_get_token
+                               (QmiMessagePdcDeactivateConfigOutput *self,
+                                guint32 *value_token,
+                                GError **error);
+

Get the 'Token' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessagePdcDeactivateConfigOutput.

 

value_token

a placeholder for the output guint32, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.18

+
+
+
+

qmi_message_pdc_deactivate_config_output_get_result ()

+
gboolean
+qmi_message_pdc_deactivate_config_output_get_result
+                               (QmiMessagePdcDeactivateConfigOutput *self,
+                                GError **error);
+

Get the result of the QMI operation.

+
+

Parameters

+
+++++ + + + + + + + + + + + + +

self

a QmiMessagePdcDeactivateConfigOutput.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the QMI operation succeeded, FALSE if error +is set.

+
+

Since: 1.18

+
+
+
+

qmi_client_pdc_deactivate_config ()

+
void
+qmi_client_pdc_deactivate_config (QmiClientPdc *self,
+                                  QmiMessagePdcDeactivateConfigInput *input,
+                                  guint timeout,
+                                  GCancellable *cancellable,
+                                  GAsyncReadyCallback callback,
+                                  gpointer user_data);
+

Asynchronously sends a Deactivate Config request to the device.

+

When the operation is finished, callback + will be invoked in the thread-default main loop of the thread you are calling this method from.

+

You can then call qmi_client_pdc_deactivate_config_finish() to get the result of the operation.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

self

a QmiClientPdc.

 

input

a QmiMessagePdcDeactivateConfigInput.

 

timeout

maximum time to wait for the method to complete, in seconds.

 

cancellable

a GCancellable or NULL.

 

callback

a GAsyncReadyCallback to call when the request is satisfied.

 

user_data

user data to pass to callback +.

 
+
+

Since: 1.18

+
+
+
+

qmi_client_pdc_deactivate_config_finish ()

+
QmiMessagePdcDeactivateConfigOutput *
+qmi_client_pdc_deactivate_config_finish
+                               (QmiClientPdc *self,
+                                GAsyncResult *res,
+                                GError **error);
+

Finishes an async operation started with qmi_client_pdc_deactivate_config().

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiClientPdc.

 

res

the GAsyncResult obtained from the GAsyncReadyCallback passed to qmi_client_pdc_deactivate_config().

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

a QmiMessagePdcDeactivateConfigOutput, or NULL if error +is set. The returned value should be freed with qmi_message_pdc_deactivate_config_output_unref().

+
+

Since: 1.18

+
+
+
+

Types and Values

+
+

QmiMessagePdcDeactivateConfigInput

+
typedef struct _QmiMessagePdcDeactivateConfigInput QmiMessagePdcDeactivateConfigInput;
+

The QmiMessagePdcDeactivateConfigInput structure contains private data and should only be accessed +using the provided API.

+

Since: 1.18

+
+
+
+

QmiMessagePdcDeactivateConfigOutput

+
typedef struct _QmiMessagePdcDeactivateConfigOutput QmiMessagePdcDeactivateConfigOutput;
+

The QmiMessagePdcDeactivateConfigOutput structure contains private data and should only be accessed +using the provided API.

+

Since: 1.18

+
+
+
+ + + \ No newline at end of file diff -Nru libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-PDC-Delete-Config.html libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-PDC-Delete-Config.html --- libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-PDC-Delete-Config.html 2017-03-22 12:28:29.000000000 +0100 +++ libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-PDC-Delete-Config.html 1970-01-01 01:00:00.000000000 +0100 @@ -1,787 +0,0 @@ - - - - -PDC Delete Config: libqmi-glib Reference Manual - - - - - - - - - - - - - - - - -
-
-
- - -
-

PDC Delete Config

-

PDC Delete Config

-
- -
-

Types and Values

- -
-
-

Object Hierarchy

-
    GBoxed
-    ├── QmiMessagePdcDeleteConfigInput
-    ╰── QmiMessagePdcDeleteConfigOutput
-
-
-
-

Description

-
-
-

Functions

-
-

qmi_message_pdc_delete_config_input_new ()

-
QmiMessagePdcDeleteConfigInput *
-qmi_message_pdc_delete_config_input_new
-                               (void);
-

Allocates a new QmiMessagePdcDeleteConfigInput.

-
-

Returns

-

the newly created QmiMessagePdcDeleteConfigInput. The returned value should be freed with qmi_message_pdc_delete_config_input_unref().

-
-

Since: 1.18

-
-
-
-

qmi_message_pdc_delete_config_input_ref ()

-
QmiMessagePdcDeleteConfigInput *
-qmi_message_pdc_delete_config_input_ref
-                               (QmiMessagePdcDeleteConfigInput *self);
-

Atomically increments the reference count of self - by one.

-
-

Parameters

-
----- - - - - - -

self

a QmiMessagePdcDeleteConfigInput.

 
-
-
-

Returns

-

the new reference to self -.

-
-

Since: 1.18

-
-
-
-

qmi_message_pdc_delete_config_input_unref ()

-
void
-qmi_message_pdc_delete_config_input_unref
-                               (QmiMessagePdcDeleteConfigInput *self);
-

Atomically decrements the reference count of self - by one. -If the reference count drops to 0, self - is completely disposed.

-
-

Parameters

-
----- - - - - - -

self

a QmiMessagePdcDeleteConfigInput.

 
-
-

Since: 1.18

-
-
-
-

qmi_message_pdc_delete_config_input_get_id ()

-
gboolean
-qmi_message_pdc_delete_config_input_get_id
-                               (QmiMessagePdcDeleteConfigInput *self,
-                                GArray **value_id,
-                                GError **error);
-

Get the 'Id' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessagePdcDeleteConfigInput.

 

value_id

a placeholder for the output GArray of guint8 elements, or NULL if not required. Do not free it, it is owned by self -.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.18

-
-
-
-

qmi_message_pdc_delete_config_input_set_id ()

-
gboolean
-qmi_message_pdc_delete_config_input_set_id
-                               (QmiMessagePdcDeleteConfigInput *self,
-                                GArray *value_id,
-                                GError **error);
-

Set the 'Id' field in the message.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessagePdcDeleteConfigInput.

 

value_id

a GArray of guint8 elements. A new reference to value_id -will be taken.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if value -was successfully set, FALSE otherwise.

-
-

Since: 1.18

-
-
-
-

qmi_message_pdc_delete_config_input_get_token ()

-
gboolean
-qmi_message_pdc_delete_config_input_get_token
-                               (QmiMessagePdcDeleteConfigInput *self,
-                                guint32 *value_token,
-                                GError **error);
-

Get the 'Token' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessagePdcDeleteConfigInput.

 

value_token

a placeholder for the output guint32, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.18

-
-
-
-

qmi_message_pdc_delete_config_input_set_token ()

-
gboolean
-qmi_message_pdc_delete_config_input_set_token
-                               (QmiMessagePdcDeleteConfigInput *self,
-                                guint32 value_token,
-                                GError **error);
-

Set the 'Token' field in the message.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessagePdcDeleteConfigInput.

 

value_token

a guint32.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if value -was successfully set, FALSE otherwise.

-
-

Since: 1.18

-
-
-
-

qmi_message_pdc_delete_config_input_get_config_type ()

-
gboolean
-qmi_message_pdc_delete_config_input_get_config_type
-                               (QmiMessagePdcDeleteConfigInput *self,
-                                QmiPdcConfigurationType *value_config_type,
-                                GError **error);
-

Get the 'Config Type' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessagePdcDeleteConfigInput.

 

value_config_type

a placeholder for the output QmiPdcConfigurationType, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.18

-
-
-
-

qmi_message_pdc_delete_config_input_set_config_type ()

-
gboolean
-qmi_message_pdc_delete_config_input_set_config_type
-                               (QmiMessagePdcDeleteConfigInput *self,
-                                QmiPdcConfigurationType value_config_type,
-                                GError **error);
-

Set the 'Config Type' field in the message.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessagePdcDeleteConfigInput.

 

value_config_type

a QmiPdcConfigurationType.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if value -was successfully set, FALSE otherwise.

-
-

Since: 1.18

-
-
-
-

qmi_message_pdc_delete_config_output_ref ()

-
QmiMessagePdcDeleteConfigOutput *
-qmi_message_pdc_delete_config_output_ref
-                               (QmiMessagePdcDeleteConfigOutput *self);
-

Atomically increments the reference count of self - by one.

-
-

Parameters

-
----- - - - - - -

self

a QmiMessagePdcDeleteConfigOutput.

 
-
-
-

Returns

-

the new reference to self -.

-
-

Since: 1.18

-
-
-
-

qmi_message_pdc_delete_config_output_unref ()

-
void
-qmi_message_pdc_delete_config_output_unref
-                               (QmiMessagePdcDeleteConfigOutput *self);
-

Atomically decrements the reference count of self - by one. -If the reference count drops to 0, self - is completely disposed.

-
-

Parameters

-
----- - - - - - -

self

a QmiMessagePdcDeleteConfigOutput.

 
-
-

Since: 1.18

-
-
-
-

qmi_message_pdc_delete_config_output_get_token ()

-
gboolean
-qmi_message_pdc_delete_config_output_get_token
-                               (QmiMessagePdcDeleteConfigOutput *self,
-                                guint32 *value_token,
-                                GError **error);
-

Get the 'Token' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessagePdcDeleteConfigOutput.

 

value_token

a placeholder for the output guint32, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.18

-
-
-
-

qmi_message_pdc_delete_config_output_get_result ()

-
gboolean
-qmi_message_pdc_delete_config_output_get_result
-                               (QmiMessagePdcDeleteConfigOutput *self,
-                                GError **error);
-

Get the result of the QMI operation.

-
-

Parameters

-
----- - - - - - - - - - - - - -

self

a QmiMessagePdcDeleteConfigOutput.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the QMI operation succeeded, FALSE if error -is set.

-
-

Since: 1.18

-
-
-
-

qmi_client_pdc_delete_config ()

-
void
-qmi_client_pdc_delete_config (QmiClientPdc *self,
-                              QmiMessagePdcDeleteConfigInput *input,
-                              guint timeout,
-                              GCancellable *cancellable,
-                              GAsyncReadyCallback callback,
-                              gpointer user_data);
-

Asynchronously sends a Delete Config request to the device.

-

When the operation is finished, callback - will be invoked in the thread-default main loop of the thread you are calling this method from.

-

You can then call qmi_client_pdc_delete_config_finish() to get the result of the operation.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

self

a QmiClientPdc.

 

input

a QmiMessagePdcDeleteConfigInput.

 

timeout

maximum time to wait for the method to complete, in seconds.

 

cancellable

a GCancellable or NULL.

 

callback

a GAsyncReadyCallback to call when the request is satisfied.

 

user_data

user data to pass to callback -.

 
-
-

Since: 1.18

-
-
-
-

qmi_client_pdc_delete_config_finish ()

-
QmiMessagePdcDeleteConfigOutput *
-qmi_client_pdc_delete_config_finish (QmiClientPdc *self,
-                                     GAsyncResult *res,
-                                     GError **error);
-

Finishes an async operation started with qmi_client_pdc_delete_config().

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiClientPdc.

 

res

the GAsyncResult obtained from the GAsyncReadyCallback passed to qmi_client_pdc_delete_config().

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

a QmiMessagePdcDeleteConfigOutput, or NULL if error -is set. The returned value should be freed with qmi_message_pdc_delete_config_output_unref().

-
-

Since: 1.18

-
-
-
-

Types and Values

-
-

QmiMessagePdcDeleteConfigInput

-
typedef struct _QmiMessagePdcDeleteConfigInput QmiMessagePdcDeleteConfigInput;
-

The QmiMessagePdcDeleteConfigInput structure contains private data and should only be accessed -using the provided API.

-

Since: 1.18

-
-
-
-

QmiMessagePdcDeleteConfigOutput

-
typedef struct _QmiMessagePdcDeleteConfigOutput QmiMessagePdcDeleteConfigOutput;
-

The QmiMessagePdcDeleteConfigOutput structure contains private data and should only be accessed -using the provided API.

-

Since: 1.18

-
-
-
- - - \ No newline at end of file diff -Nru libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-PDC-Delete-Config-request.html libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-PDC-Delete-Config-request.html --- libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-PDC-Delete-Config-request.html 1970-01-01 01:00:00.000000000 +0100 +++ libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-PDC-Delete-Config-request.html 2019-01-08 15:19:02.000000000 +0100 @@ -0,0 +1,787 @@ + + + + +PDC Delete Config request: libqmi-glib Reference Manual + + + + + + + + + + + + + + + + +
+
+
+ + +
+

PDC Delete Config request

+

PDC Delete Config request

+
+ +
+

Types and Values

+ +
+
+

Object Hierarchy

+
    GBoxed
+    ├── QmiMessagePdcDeleteConfigInput
+    ╰── QmiMessagePdcDeleteConfigOutput
+
+
+
+

Description

+
+
+

Functions

+
+

qmi_message_pdc_delete_config_input_new ()

+
QmiMessagePdcDeleteConfigInput *
+qmi_message_pdc_delete_config_input_new
+                               (void);
+

Allocates a new QmiMessagePdcDeleteConfigInput.

+
+

Returns

+

the newly created QmiMessagePdcDeleteConfigInput. The returned value should be freed with qmi_message_pdc_delete_config_input_unref().

+
+

Since: 1.18

+
+
+
+

qmi_message_pdc_delete_config_input_ref ()

+
QmiMessagePdcDeleteConfigInput *
+qmi_message_pdc_delete_config_input_ref
+                               (QmiMessagePdcDeleteConfigInput *self);
+

Atomically increments the reference count of self + by one.

+
+

Parameters

+
+++++ + + + + + +

self

a QmiMessagePdcDeleteConfigInput.

 
+
+
+

Returns

+

the new reference to self +.

+
+

Since: 1.18

+
+
+
+

qmi_message_pdc_delete_config_input_unref ()

+
void
+qmi_message_pdc_delete_config_input_unref
+                               (QmiMessagePdcDeleteConfigInput *self);
+

Atomically decrements the reference count of self + by one. +If the reference count drops to 0, self + is completely disposed.

+
+

Parameters

+
+++++ + + + + + +

self

a QmiMessagePdcDeleteConfigInput.

 
+
+

Since: 1.18

+
+
+
+

qmi_message_pdc_delete_config_input_get_id ()

+
gboolean
+qmi_message_pdc_delete_config_input_get_id
+                               (QmiMessagePdcDeleteConfigInput *self,
+                                GArray **value_id,
+                                GError **error);
+

Get the 'Id' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessagePdcDeleteConfigInput.

 

value_id

a placeholder for the output GArray of guint8 elements, or NULL if not required. Do not free it, it is owned by self +.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.18

+
+
+
+

qmi_message_pdc_delete_config_input_set_id ()

+
gboolean
+qmi_message_pdc_delete_config_input_set_id
+                               (QmiMessagePdcDeleteConfigInput *self,
+                                GArray *value_id,
+                                GError **error);
+

Set the 'Id' field in the message.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessagePdcDeleteConfigInput.

 

value_id

a GArray of guint8 elements. A new reference to value_id +will be taken.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if value +was successfully set, FALSE otherwise.

+
+

Since: 1.18

+
+
+
+

qmi_message_pdc_delete_config_input_get_token ()

+
gboolean
+qmi_message_pdc_delete_config_input_get_token
+                               (QmiMessagePdcDeleteConfigInput *self,
+                                guint32 *value_token,
+                                GError **error);
+

Get the 'Token' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessagePdcDeleteConfigInput.

 

value_token

a placeholder for the output guint32, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.18

+
+
+
+

qmi_message_pdc_delete_config_input_set_token ()

+
gboolean
+qmi_message_pdc_delete_config_input_set_token
+                               (QmiMessagePdcDeleteConfigInput *self,
+                                guint32 value_token,
+                                GError **error);
+

Set the 'Token' field in the message.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessagePdcDeleteConfigInput.

 

value_token

a guint32.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if value +was successfully set, FALSE otherwise.

+
+

Since: 1.18

+
+
+
+

qmi_message_pdc_delete_config_input_get_config_type ()

+
gboolean
+qmi_message_pdc_delete_config_input_get_config_type
+                               (QmiMessagePdcDeleteConfigInput *self,
+                                QmiPdcConfigurationType *value_config_type,
+                                GError **error);
+

Get the 'Config Type' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessagePdcDeleteConfigInput.

 

value_config_type

a placeholder for the output QmiPdcConfigurationType, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.18

+
+
+
+

qmi_message_pdc_delete_config_input_set_config_type ()

+
gboolean
+qmi_message_pdc_delete_config_input_set_config_type
+                               (QmiMessagePdcDeleteConfigInput *self,
+                                QmiPdcConfigurationType value_config_type,
+                                GError **error);
+

Set the 'Config Type' field in the message.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessagePdcDeleteConfigInput.

 

value_config_type

a QmiPdcConfigurationType.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if value +was successfully set, FALSE otherwise.

+
+

Since: 1.18

+
+
+
+

qmi_message_pdc_delete_config_output_ref ()

+
QmiMessagePdcDeleteConfigOutput *
+qmi_message_pdc_delete_config_output_ref
+                               (QmiMessagePdcDeleteConfigOutput *self);
+

Atomically increments the reference count of self + by one.

+
+

Parameters

+
+++++ + + + + + +

self

a QmiMessagePdcDeleteConfigOutput.

 
+
+
+

Returns

+

the new reference to self +.

+
+

Since: 1.18

+
+
+
+

qmi_message_pdc_delete_config_output_unref ()

+
void
+qmi_message_pdc_delete_config_output_unref
+                               (QmiMessagePdcDeleteConfigOutput *self);
+

Atomically decrements the reference count of self + by one. +If the reference count drops to 0, self + is completely disposed.

+
+

Parameters

+
+++++ + + + + + +

self

a QmiMessagePdcDeleteConfigOutput.

 
+
+

Since: 1.18

+
+
+
+

qmi_message_pdc_delete_config_output_get_token ()

+
gboolean
+qmi_message_pdc_delete_config_output_get_token
+                               (QmiMessagePdcDeleteConfigOutput *self,
+                                guint32 *value_token,
+                                GError **error);
+

Get the 'Token' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessagePdcDeleteConfigOutput.

 

value_token

a placeholder for the output guint32, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.18

+
+
+
+

qmi_message_pdc_delete_config_output_get_result ()

+
gboolean
+qmi_message_pdc_delete_config_output_get_result
+                               (QmiMessagePdcDeleteConfigOutput *self,
+                                GError **error);
+

Get the result of the QMI operation.

+
+

Parameters

+
+++++ + + + + + + + + + + + + +

self

a QmiMessagePdcDeleteConfigOutput.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the QMI operation succeeded, FALSE if error +is set.

+
+

Since: 1.18

+
+
+
+

qmi_client_pdc_delete_config ()

+
void
+qmi_client_pdc_delete_config (QmiClientPdc *self,
+                              QmiMessagePdcDeleteConfigInput *input,
+                              guint timeout,
+                              GCancellable *cancellable,
+                              GAsyncReadyCallback callback,
+                              gpointer user_data);
+

Asynchronously sends a Delete Config request to the device.

+

When the operation is finished, callback + will be invoked in the thread-default main loop of the thread you are calling this method from.

+

You can then call qmi_client_pdc_delete_config_finish() to get the result of the operation.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

self

a QmiClientPdc.

 

input

a QmiMessagePdcDeleteConfigInput.

 

timeout

maximum time to wait for the method to complete, in seconds.

 

cancellable

a GCancellable or NULL.

 

callback

a GAsyncReadyCallback to call when the request is satisfied.

 

user_data

user data to pass to callback +.

 
+
+

Since: 1.18

+
+
+
+

qmi_client_pdc_delete_config_finish ()

+
QmiMessagePdcDeleteConfigOutput *
+qmi_client_pdc_delete_config_finish (QmiClientPdc *self,
+                                     GAsyncResult *res,
+                                     GError **error);
+

Finishes an async operation started with qmi_client_pdc_delete_config().

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiClientPdc.

 

res

the GAsyncResult obtained from the GAsyncReadyCallback passed to qmi_client_pdc_delete_config().

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

a QmiMessagePdcDeleteConfigOutput, or NULL if error +is set. The returned value should be freed with qmi_message_pdc_delete_config_output_unref().

+
+

Since: 1.18

+
+
+
+

Types and Values

+
+

QmiMessagePdcDeleteConfigInput

+
typedef struct _QmiMessagePdcDeleteConfigInput QmiMessagePdcDeleteConfigInput;
+

The QmiMessagePdcDeleteConfigInput structure contains private data and should only be accessed +using the provided API.

+

Since: 1.18

+
+
+
+

QmiMessagePdcDeleteConfigOutput

+
typedef struct _QmiMessagePdcDeleteConfigOutput QmiMessagePdcDeleteConfigOutput;
+

The QmiMessagePdcDeleteConfigOutput structure contains private data and should only be accessed +using the provided API.

+

Since: 1.18

+
+
+
+ + + \ No newline at end of file diff -Nru libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-PDC-enumerations-and-flags.html libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-PDC-enumerations-and-flags.html --- libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-PDC-enumerations-and-flags.html 2017-03-22 12:28:29.000000000 +0100 +++ libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-PDC-enumerations-and-flags.html 2019-01-08 15:19:02.000000000 +0100 @@ -3,12 +3,12 @@ PDC enumerations and flags: libqmi-glib Reference Manual - + - - + + @@ -21,7 +21,7 @@ Home Up Prev -Next +Next
@@ -63,7 +63,7 @@

Object Hierarchy

-
    GEnum
+
    GEnum
     ╰── QmiPdcConfigurationType
 
@@ -97,7 +97,7 @@

Returns

-

a string with the nickname, or NULL if not found. Do not free the returned value.

+

a string with the nickname, or NULL if not found. Do not free the returned value.

[transfer none]

Since: 1.18

@@ -139,6 +139,6 @@ +
Generated by GTK-Doc V1.29 \ No newline at end of file diff -Nru libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-PDC-Get-Config-Info.html libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-PDC-Get-Config-Info.html --- libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-PDC-Get-Config-Info.html 2017-03-22 12:28:29.000000000 +0100 +++ libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-PDC-Get-Config-Info.html 1970-01-01 01:00:00.000000000 +0100 @@ -1,632 +0,0 @@ - - - - -PDC Get Config Info: libqmi-glib Reference Manual - - - - - - - - - - - - - - - - -
-
-
- - -
-

PDC Get Config Info

-

PDC Get Config Info

-
- -
-

Types and Values

- -
-
-

Object Hierarchy

-
    GBoxed
-    ├── QmiMessagePdcGetConfigInfoInput
-    ╰── QmiMessagePdcGetConfigInfoOutput
-
-
-
-

Description

-
-
-

Functions

-
-

qmi_message_pdc_get_config_info_input_new ()

-
QmiMessagePdcGetConfigInfoInput *
-qmi_message_pdc_get_config_info_input_new
-                               (void);
-

Allocates a new QmiMessagePdcGetConfigInfoInput.

-
-

Returns

-

the newly created QmiMessagePdcGetConfigInfoInput. The returned value should be freed with qmi_message_pdc_get_config_info_input_unref().

-
-

Since: 1.18

-
-
-
-

qmi_message_pdc_get_config_info_input_ref ()

-
QmiMessagePdcGetConfigInfoInput *
-qmi_message_pdc_get_config_info_input_ref
-                               (QmiMessagePdcGetConfigInfoInput *self);
-

Atomically increments the reference count of self - by one.

-
-

Parameters

-
----- - - - - - -

self

a QmiMessagePdcGetConfigInfoInput.

 
-
-
-

Returns

-

the new reference to self -.

-
-

Since: 1.18

-
-
-
-

qmi_message_pdc_get_config_info_input_unref ()

-
void
-qmi_message_pdc_get_config_info_input_unref
-                               (QmiMessagePdcGetConfigInfoInput *self);
-

Atomically decrements the reference count of self - by one. -If the reference count drops to 0, self - is completely disposed.

-
-

Parameters

-
----- - - - - - -

self

a QmiMessagePdcGetConfigInfoInput.

 
-
-

Since: 1.18

-
-
-
-

qmi_message_pdc_get_config_info_input_get_token ()

-
gboolean
-qmi_message_pdc_get_config_info_input_get_token
-                               (QmiMessagePdcGetConfigInfoInput *self,
-                                guint32 *value_token,
-                                GError **error);
-

Get the 'Token' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessagePdcGetConfigInfoInput.

 

value_token

a placeholder for the output guint32, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.18

-
-
-
-

qmi_message_pdc_get_config_info_input_set_token ()

-
gboolean
-qmi_message_pdc_get_config_info_input_set_token
-                               (QmiMessagePdcGetConfigInfoInput *self,
-                                guint32 value_token,
-                                GError **error);
-

Set the 'Token' field in the message.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessagePdcGetConfigInfoInput.

 

value_token

a guint32.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if value -was successfully set, FALSE otherwise.

-
-

Since: 1.18

-
-
-
-

qmi_message_pdc_get_config_info_input_get_type_with_id ()

-
gboolean
-qmi_message_pdc_get_config_info_input_get_type_with_id
-                               (QmiMessagePdcGetConfigInfoInput *self,
-                                QmiConfigTypeAndId *value_type_with_id,
-                                GError **error);
-

Get the 'Type With Id' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessagePdcGetConfigInfoInput.

 

value_type_with_id

a placeholder for the output constant QmiConfigTypeAndId, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.18

-
-
-
-

qmi_message_pdc_get_config_info_input_set_type_with_id ()

-
gboolean
-qmi_message_pdc_get_config_info_input_set_type_with_id
-                               (QmiMessagePdcGetConfigInfoInput *self,
-                                const QmiConfigTypeAndId *value_type_with_id,
-                                GError **error);
-

Set the 'Type With Id' field in the message.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessagePdcGetConfigInfoInput.

 

value_type_with_id

the address of the QmiConfigTypeAndId to set.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if value -was successfully set, FALSE otherwise.

-
-

Since: 1.18

-
-
-
-

qmi_message_pdc_get_config_info_output_ref ()

-
QmiMessagePdcGetConfigInfoOutput *
-qmi_message_pdc_get_config_info_output_ref
-                               (QmiMessagePdcGetConfigInfoOutput *self);
-

Atomically increments the reference count of self - by one.

-
-

Parameters

-
----- - - - - - -

self

a QmiMessagePdcGetConfigInfoOutput.

 
-
-
-

Returns

-

the new reference to self -.

-
-

Since: 1.18

-
-
-
-

qmi_message_pdc_get_config_info_output_unref ()

-
void
-qmi_message_pdc_get_config_info_output_unref
-                               (QmiMessagePdcGetConfigInfoOutput *self);
-

Atomically decrements the reference count of self - by one. -If the reference count drops to 0, self - is completely disposed.

-
-

Parameters

-
----- - - - - - -

self

a QmiMessagePdcGetConfigInfoOutput.

 
-
-

Since: 1.18

-
-
-
-

qmi_message_pdc_get_config_info_output_get_result ()

-
gboolean
-qmi_message_pdc_get_config_info_output_get_result
-                               (QmiMessagePdcGetConfigInfoOutput *self,
-                                GError **error);
-

Get the result of the QMI operation.

-
-

Parameters

-
----- - - - - - - - - - - - - -

self

a QmiMessagePdcGetConfigInfoOutput.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the QMI operation succeeded, FALSE if error -is set.

-
-

Since: 1.18

-
-
-
-

qmi_client_pdc_get_config_info ()

-
void
-qmi_client_pdc_get_config_info (QmiClientPdc *self,
-                                QmiMessagePdcGetConfigInfoInput *input,
-                                guint timeout,
-                                GCancellable *cancellable,
-                                GAsyncReadyCallback callback,
-                                gpointer user_data);
-

Asynchronously sends a Get Config Info request to the device.

-

When the operation is finished, callback - will be invoked in the thread-default main loop of the thread you are calling this method from.

-

You can then call qmi_client_pdc_get_config_info_finish() to get the result of the operation.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

self

a QmiClientPdc.

 

input

a QmiMessagePdcGetConfigInfoInput.

 

timeout

maximum time to wait for the method to complete, in seconds.

 

cancellable

a GCancellable or NULL.

 

callback

a GAsyncReadyCallback to call when the request is satisfied.

 

user_data

user data to pass to callback -.

 
-
-

Since: 1.18

-
-
-
-

qmi_client_pdc_get_config_info_finish ()

-
QmiMessagePdcGetConfigInfoOutput *
-qmi_client_pdc_get_config_info_finish (QmiClientPdc *self,
-                                       GAsyncResult *res,
-                                       GError **error);
-

Finishes an async operation started with qmi_client_pdc_get_config_info().

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiClientPdc.

 

res

the GAsyncResult obtained from the GAsyncReadyCallback passed to qmi_client_pdc_get_config_info().

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

a QmiMessagePdcGetConfigInfoOutput, or NULL if error -is set. The returned value should be freed with qmi_message_pdc_get_config_info_output_unref().

-
-

Since: 1.18

-
-
-
-

Types and Values

-
-

QmiMessagePdcGetConfigInfoInput

-
typedef struct _QmiMessagePdcGetConfigInfoInput QmiMessagePdcGetConfigInfoInput;
-

The QmiMessagePdcGetConfigInfoInput structure contains private data and should only be accessed -using the provided API.

-

Since: 1.18

-
-
-
-

QmiMessagePdcGetConfigInfoOutput

-
typedef struct _QmiMessagePdcGetConfigInfoOutput QmiMessagePdcGetConfigInfoOutput;
-

The QmiMessagePdcGetConfigInfoOutput structure contains private data and should only be accessed -using the provided API.

-

Since: 1.18

-
-
-
- - - \ No newline at end of file diff -Nru libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-PDC-Get-Config-Info-indication.html libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-PDC-Get-Config-Info-indication.html --- libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-PDC-Get-Config-Info-indication.html 1970-01-01 01:00:00.000000000 +0100 +++ libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-PDC-Get-Config-Info-indication.html 2019-01-08 15:19:02.000000000 +0100 @@ -0,0 +1,412 @@ + + + + +PDC Get Config Info indication: libqmi-glib Reference Manual + + + + + + + + + + + + + + + + +
+
+
+ + +
+

PDC Get Config Info indication

+

PDC Get Config Info indication

+
+ +
+

Types and Values

+ +
+
+

Object Hierarchy

+
    GBoxed
+    ╰── QmiIndicationPdcGetConfigInfoOutput
+
+
+
+

Description

+
+
+

Functions

+
+

qmi_indication_pdc_get_config_info_output_ref ()

+
QmiIndicationPdcGetConfigInfoOutput *
+qmi_indication_pdc_get_config_info_output_ref
+                               (QmiIndicationPdcGetConfigInfoOutput *self);
+

Atomically increments the reference count of self + by one.

+
+

Parameters

+
+++++ + + + + + +

self

a QmiIndicationPdcGetConfigInfoOutput.

 
+
+
+

Returns

+

the new reference to self +.

+
+

Since: 1.18

+
+
+
+

qmi_indication_pdc_get_config_info_output_unref ()

+
void
+qmi_indication_pdc_get_config_info_output_unref
+                               (QmiIndicationPdcGetConfigInfoOutput *self);
+

Atomically decrements the reference count of self + by one. +If the reference count drops to 0, self + is completely disposed.

+
+

Parameters

+
+++++ + + + + + +

self

a QmiIndicationPdcGetConfigInfoOutput.

 
+
+

Since: 1.18

+
+
+
+

qmi_indication_pdc_get_config_info_output_get_version ()

+
gboolean
+qmi_indication_pdc_get_config_info_output_get_version
+                               (QmiIndicationPdcGetConfigInfoOutput *self,
+                                guint32 *value_version,
+                                GError **error);
+

Get the 'Version' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiIndicationPdcGetConfigInfoOutput.

 

value_version

a placeholder for the output guint32, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.18

+
+
+
+

qmi_indication_pdc_get_config_info_output_get_description ()

+
gboolean
+qmi_indication_pdc_get_config_info_output_get_description
+                               (QmiIndicationPdcGetConfigInfoOutput *self,
+                                const gchar **value_description,
+                                GError **error);
+

Get the 'Description' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiIndicationPdcGetConfigInfoOutput.

 

value_description

a placeholder for the output constant string, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.18

+
+
+
+

qmi_indication_pdc_get_config_info_output_get_total_size ()

+
gboolean
+qmi_indication_pdc_get_config_info_output_get_total_size
+                               (QmiIndicationPdcGetConfigInfoOutput *self,
+                                guint32 *value_total_size,
+                                GError **error);
+

Get the 'Total Size' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiIndicationPdcGetConfigInfoOutput.

 

value_total_size

a placeholder for the output guint32, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.18

+
+
+
+

qmi_indication_pdc_get_config_info_output_get_indication_result ()

+
gboolean
+qmi_indication_pdc_get_config_info_output_get_indication_result
+                               (QmiIndicationPdcGetConfigInfoOutput *self,
+                                guint16 *value_indication_result,
+                                GError **error);
+

Get the 'Indication Result' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiIndicationPdcGetConfigInfoOutput.

 

value_indication_result

a placeholder for the output guint16, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.18

+
+
+
+

qmi_indication_pdc_get_config_info_output_get_token ()

+
gboolean
+qmi_indication_pdc_get_config_info_output_get_token
+                               (QmiIndicationPdcGetConfigInfoOutput *self,
+                                guint32 *value_token,
+                                GError **error);
+

Get the 'Token' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiIndicationPdcGetConfigInfoOutput.

 

value_token

a placeholder for the output guint32, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.18

+
+
+
+

Types and Values

+
+

QmiIndicationPdcGetConfigInfoOutput

+
typedef struct _QmiIndicationPdcGetConfigInfoOutput QmiIndicationPdcGetConfigInfoOutput;
+

The QmiIndicationPdcGetConfigInfoOutput structure contains private data and should only be accessed +using the provided API.

+

Since: 1.18

+
+
+
+ + + \ No newline at end of file diff -Nru libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-PDC-Get-Config-Info-request.html libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-PDC-Get-Config-Info-request.html --- libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-PDC-Get-Config-Info-request.html 1970-01-01 01:00:00.000000000 +0100 +++ libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-PDC-Get-Config-Info-request.html 2019-01-08 15:19:02.000000000 +0100 @@ -0,0 +1,632 @@ + + + + +PDC Get Config Info request: libqmi-glib Reference Manual + + + + + + + + + + + + + + + + +
+
+
+ + +
+

PDC Get Config Info request

+

PDC Get Config Info request

+
+ +
+

Types and Values

+ +
+
+

Object Hierarchy

+
    GBoxed
+    ├── QmiMessagePdcGetConfigInfoInput
+    ╰── QmiMessagePdcGetConfigInfoOutput
+
+
+
+

Description

+
+
+

Functions

+
+

qmi_message_pdc_get_config_info_input_new ()

+
QmiMessagePdcGetConfigInfoInput *
+qmi_message_pdc_get_config_info_input_new
+                               (void);
+

Allocates a new QmiMessagePdcGetConfigInfoInput.

+
+

Returns

+

the newly created QmiMessagePdcGetConfigInfoInput. The returned value should be freed with qmi_message_pdc_get_config_info_input_unref().

+
+

Since: 1.18

+
+
+
+

qmi_message_pdc_get_config_info_input_ref ()

+
QmiMessagePdcGetConfigInfoInput *
+qmi_message_pdc_get_config_info_input_ref
+                               (QmiMessagePdcGetConfigInfoInput *self);
+

Atomically increments the reference count of self + by one.

+
+

Parameters

+
+++++ + + + + + +

self

a QmiMessagePdcGetConfigInfoInput.

 
+
+
+

Returns

+

the new reference to self +.

+
+

Since: 1.18

+
+
+
+

qmi_message_pdc_get_config_info_input_unref ()

+
void
+qmi_message_pdc_get_config_info_input_unref
+                               (QmiMessagePdcGetConfigInfoInput *self);
+

Atomically decrements the reference count of self + by one. +If the reference count drops to 0, self + is completely disposed.

+
+

Parameters

+
+++++ + + + + + +

self

a QmiMessagePdcGetConfigInfoInput.

 
+
+

Since: 1.18

+
+
+
+

qmi_message_pdc_get_config_info_input_get_token ()

+
gboolean
+qmi_message_pdc_get_config_info_input_get_token
+                               (QmiMessagePdcGetConfigInfoInput *self,
+                                guint32 *value_token,
+                                GError **error);
+

Get the 'Token' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessagePdcGetConfigInfoInput.

 

value_token

a placeholder for the output guint32, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.18

+
+
+
+

qmi_message_pdc_get_config_info_input_set_token ()

+
gboolean
+qmi_message_pdc_get_config_info_input_set_token
+                               (QmiMessagePdcGetConfigInfoInput *self,
+                                guint32 value_token,
+                                GError **error);
+

Set the 'Token' field in the message.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessagePdcGetConfigInfoInput.

 

value_token

a guint32.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if value +was successfully set, FALSE otherwise.

+
+

Since: 1.18

+
+
+
+

qmi_message_pdc_get_config_info_input_get_type_with_id ()

+
gboolean
+qmi_message_pdc_get_config_info_input_get_type_with_id
+                               (QmiMessagePdcGetConfigInfoInput *self,
+                                QmiConfigTypeAndId *value_type_with_id,
+                                GError **error);
+

Get the 'Type With Id' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessagePdcGetConfigInfoInput.

 

value_type_with_id

a placeholder for the output constant QmiConfigTypeAndId, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.18

+
+
+
+

qmi_message_pdc_get_config_info_input_set_type_with_id ()

+
gboolean
+qmi_message_pdc_get_config_info_input_set_type_with_id
+                               (QmiMessagePdcGetConfigInfoInput *self,
+                                const QmiConfigTypeAndId *value_type_with_id,
+                                GError **error);
+

Set the 'Type With Id' field in the message.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessagePdcGetConfigInfoInput.

 

value_type_with_id

the address of the QmiConfigTypeAndId to set.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if value +was successfully set, FALSE otherwise.

+
+

Since: 1.18

+
+
+
+

qmi_message_pdc_get_config_info_output_ref ()

+
QmiMessagePdcGetConfigInfoOutput *
+qmi_message_pdc_get_config_info_output_ref
+                               (QmiMessagePdcGetConfigInfoOutput *self);
+

Atomically increments the reference count of self + by one.

+
+

Parameters

+
+++++ + + + + + +

self

a QmiMessagePdcGetConfigInfoOutput.

 
+
+
+

Returns

+

the new reference to self +.

+
+

Since: 1.18

+
+
+
+

qmi_message_pdc_get_config_info_output_unref ()

+
void
+qmi_message_pdc_get_config_info_output_unref
+                               (QmiMessagePdcGetConfigInfoOutput *self);
+

Atomically decrements the reference count of self + by one. +If the reference count drops to 0, self + is completely disposed.

+
+

Parameters

+
+++++ + + + + + +

self

a QmiMessagePdcGetConfigInfoOutput.

 
+
+

Since: 1.18

+
+
+
+

qmi_message_pdc_get_config_info_output_get_result ()

+
gboolean
+qmi_message_pdc_get_config_info_output_get_result
+                               (QmiMessagePdcGetConfigInfoOutput *self,
+                                GError **error);
+

Get the result of the QMI operation.

+
+

Parameters

+
+++++ + + + + + + + + + + + + +

self

a QmiMessagePdcGetConfigInfoOutput.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the QMI operation succeeded, FALSE if error +is set.

+
+

Since: 1.18

+
+
+
+

qmi_client_pdc_get_config_info ()

+
void
+qmi_client_pdc_get_config_info (QmiClientPdc *self,
+                                QmiMessagePdcGetConfigInfoInput *input,
+                                guint timeout,
+                                GCancellable *cancellable,
+                                GAsyncReadyCallback callback,
+                                gpointer user_data);
+

Asynchronously sends a Get Config Info request to the device.

+

When the operation is finished, callback + will be invoked in the thread-default main loop of the thread you are calling this method from.

+

You can then call qmi_client_pdc_get_config_info_finish() to get the result of the operation.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

self

a QmiClientPdc.

 

input

a QmiMessagePdcGetConfigInfoInput.

 

timeout

maximum time to wait for the method to complete, in seconds.

 

cancellable

a GCancellable or NULL.

 

callback

a GAsyncReadyCallback to call when the request is satisfied.

 

user_data

user data to pass to callback +.

 
+
+

Since: 1.18

+
+
+
+

qmi_client_pdc_get_config_info_finish ()

+
QmiMessagePdcGetConfigInfoOutput *
+qmi_client_pdc_get_config_info_finish (QmiClientPdc *self,
+                                       GAsyncResult *res,
+                                       GError **error);
+

Finishes an async operation started with qmi_client_pdc_get_config_info().

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiClientPdc.

 

res

the GAsyncResult obtained from the GAsyncReadyCallback passed to qmi_client_pdc_get_config_info().

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

a QmiMessagePdcGetConfigInfoOutput, or NULL if error +is set. The returned value should be freed with qmi_message_pdc_get_config_info_output_unref().

+
+

Since: 1.18

+
+
+
+

Types and Values

+
+

QmiMessagePdcGetConfigInfoInput

+
typedef struct _QmiMessagePdcGetConfigInfoInput QmiMessagePdcGetConfigInfoInput;
+

The QmiMessagePdcGetConfigInfoInput structure contains private data and should only be accessed +using the provided API.

+

Since: 1.18

+
+
+
+

QmiMessagePdcGetConfigInfoOutput

+
typedef struct _QmiMessagePdcGetConfigInfoOutput QmiMessagePdcGetConfigInfoOutput;
+

The QmiMessagePdcGetConfigInfoOutput structure contains private data and should only be accessed +using the provided API.

+

Since: 1.18

+
+
+
+ + + \ No newline at end of file diff -Nru libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-PDC-Get-Config-Limits.html libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-PDC-Get-Config-Limits.html --- libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-PDC-Get-Config-Limits.html 2017-03-22 12:28:28.000000000 +0100 +++ libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-PDC-Get-Config-Limits.html 1970-01-01 01:00:00.000000000 +0100 @@ -1,786 +0,0 @@ - - - - -PDC Get Config Limits: libqmi-glib Reference Manual - - - - - - - - - - - - - - - - -
-
-
- - -
-

PDC Get Config Limits

-

PDC Get Config Limits

-
- -
-

Types and Values

- -
-
-

Object Hierarchy

-
    GBoxed
-    ├── QmiMessagePdcGetConfigLimitsInput
-    ╰── QmiMessagePdcGetConfigLimitsOutput
-
-
-
-

Description

-
-
-

Functions

-
-

qmi_message_pdc_get_config_limits_input_new ()

-
QmiMessagePdcGetConfigLimitsInput *
-qmi_message_pdc_get_config_limits_input_new
-                               (void);
-

Allocates a new QmiMessagePdcGetConfigLimitsInput.

-
-

Returns

-

the newly created QmiMessagePdcGetConfigLimitsInput. The returned value should be freed with qmi_message_pdc_get_config_limits_input_unref().

-
-

Since: 1.18

-
-
-
-

qmi_message_pdc_get_config_limits_input_ref ()

-
QmiMessagePdcGetConfigLimitsInput *
-qmi_message_pdc_get_config_limits_input_ref
-                               (QmiMessagePdcGetConfigLimitsInput *self);
-

Atomically increments the reference count of self - by one.

-
-

Parameters

-
----- - - - - - -

self

a QmiMessagePdcGetConfigLimitsInput.

 
-
-
-

Returns

-

the new reference to self -.

-
-

Since: 1.18

-
-
-
-

qmi_message_pdc_get_config_limits_input_unref ()

-
void
-qmi_message_pdc_get_config_limits_input_unref
-                               (QmiMessagePdcGetConfigLimitsInput *self);
-

Atomically decrements the reference count of self - by one. -If the reference count drops to 0, self - is completely disposed.

-
-

Parameters

-
----- - - - - - -

self

a QmiMessagePdcGetConfigLimitsInput.

 
-
-

Since: 1.18

-
-
-
-

qmi_message_pdc_get_config_limits_input_get_token ()

-
gboolean
-qmi_message_pdc_get_config_limits_input_get_token
-                               (QmiMessagePdcGetConfigLimitsInput *self,
-                                guint32 *value_token,
-                                GError **error);
-

Get the 'Token' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessagePdcGetConfigLimitsInput.

 

value_token

a placeholder for the output guint32, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.18

-
-
-
-

qmi_message_pdc_get_config_limits_input_set_token ()

-
gboolean
-qmi_message_pdc_get_config_limits_input_set_token
-                               (QmiMessagePdcGetConfigLimitsInput *self,
-                                guint32 value_token,
-                                GError **error);
-

Set the 'Token' field in the message.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessagePdcGetConfigLimitsInput.

 

value_token

a guint32.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if value -was successfully set, FALSE otherwise.

-
-

Since: 1.18

-
-
-
-

qmi_message_pdc_get_config_limits_input_get_config_type ()

-
gboolean
-qmi_message_pdc_get_config_limits_input_get_config_type
-                               (QmiMessagePdcGetConfigLimitsInput *self,
-                                QmiPdcConfigurationType *value_config_type,
-                                GError **error);
-

Get the 'Config Type' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessagePdcGetConfigLimitsInput.

 

value_config_type

a placeholder for the output QmiPdcConfigurationType, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.18

-
-
-
-

qmi_message_pdc_get_config_limits_input_set_config_type ()

-
gboolean
-qmi_message_pdc_get_config_limits_input_set_config_type
-                               (QmiMessagePdcGetConfigLimitsInput *self,
-                                QmiPdcConfigurationType value_config_type,
-                                GError **error);
-

Set the 'Config Type' field in the message.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessagePdcGetConfigLimitsInput.

 

value_config_type

a QmiPdcConfigurationType.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if value -was successfully set, FALSE otherwise.

-
-

Since: 1.18

-
-
-
-

qmi_message_pdc_get_config_limits_output_ref ()

-
QmiMessagePdcGetConfigLimitsOutput *
-qmi_message_pdc_get_config_limits_output_ref
-                               (QmiMessagePdcGetConfigLimitsOutput *self);
-

Atomically increments the reference count of self - by one.

-
-

Parameters

-
----- - - - - - -

self

a QmiMessagePdcGetConfigLimitsOutput.

 
-
-
-

Returns

-

the new reference to self -.

-
-

Since: 1.18

-
-
-
-

qmi_message_pdc_get_config_limits_output_unref ()

-
void
-qmi_message_pdc_get_config_limits_output_unref
-                               (QmiMessagePdcGetConfigLimitsOutput *self);
-

Atomically decrements the reference count of self - by one. -If the reference count drops to 0, self - is completely disposed.

-
-

Parameters

-
----- - - - - - -

self

a QmiMessagePdcGetConfigLimitsOutput.

 
-
-

Since: 1.18

-
-
-
-

qmi_message_pdc_get_config_limits_output_get_current_size ()

-
gboolean
-qmi_message_pdc_get_config_limits_output_get_current_size
-                               (QmiMessagePdcGetConfigLimitsOutput *self,
-                                guint64 *value_current_size,
-                                GError **error);
-

Get the 'Current Size' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessagePdcGetConfigLimitsOutput.

 

value_current_size

a placeholder for the output guint64, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.18

-
-
-
-

qmi_message_pdc_get_config_limits_output_get_maximum_size ()

-
gboolean
-qmi_message_pdc_get_config_limits_output_get_maximum_size
-                               (QmiMessagePdcGetConfigLimitsOutput *self,
-                                guint64 *value_maximum_size,
-                                GError **error);
-

Get the 'Maximum Size' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessagePdcGetConfigLimitsOutput.

 

value_maximum_size

a placeholder for the output guint64, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.18

-
-
-
-

qmi_message_pdc_get_config_limits_output_get_token ()

-
gboolean
-qmi_message_pdc_get_config_limits_output_get_token
-                               (QmiMessagePdcGetConfigLimitsOutput *self,
-                                guint32 *value_token,
-                                GError **error);
-

Get the 'Token' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessagePdcGetConfigLimitsOutput.

 

value_token

a placeholder for the output guint32, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.18

-
-
-
-

qmi_message_pdc_get_config_limits_output_get_result ()

-
gboolean
-qmi_message_pdc_get_config_limits_output_get_result
-                               (QmiMessagePdcGetConfigLimitsOutput *self,
-                                GError **error);
-

Get the result of the QMI operation.

-
-

Parameters

-
----- - - - - - - - - - - - - -

self

a QmiMessagePdcGetConfigLimitsOutput.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the QMI operation succeeded, FALSE if error -is set.

-
-

Since: 1.18

-
-
-
-

qmi_client_pdc_get_config_limits ()

-
void
-qmi_client_pdc_get_config_limits (QmiClientPdc *self,
-                                  QmiMessagePdcGetConfigLimitsInput *input,
-                                  guint timeout,
-                                  GCancellable *cancellable,
-                                  GAsyncReadyCallback callback,
-                                  gpointer user_data);
-

Asynchronously sends a Get Config Limits request to the device.

-

When the operation is finished, callback - will be invoked in the thread-default main loop of the thread you are calling this method from.

-

You can then call qmi_client_pdc_get_config_limits_finish() to get the result of the operation.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

self

a QmiClientPdc.

 

input

a QmiMessagePdcGetConfigLimitsInput.

 

timeout

maximum time to wait for the method to complete, in seconds.

 

cancellable

a GCancellable or NULL.

 

callback

a GAsyncReadyCallback to call when the request is satisfied.

 

user_data

user data to pass to callback -.

 
-
-

Since: 1.18

-
-
-
-

qmi_client_pdc_get_config_limits_finish ()

-
QmiMessagePdcGetConfigLimitsOutput *
-qmi_client_pdc_get_config_limits_finish
-                               (QmiClientPdc *self,
-                                GAsyncResult *res,
-                                GError **error);
-

Finishes an async operation started with qmi_client_pdc_get_config_limits().

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiClientPdc.

 

res

the GAsyncResult obtained from the GAsyncReadyCallback passed to qmi_client_pdc_get_config_limits().

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

a QmiMessagePdcGetConfigLimitsOutput, or NULL if error -is set. The returned value should be freed with qmi_message_pdc_get_config_limits_output_unref().

-
-

Since: 1.18

-
-
-
-

Types and Values

-
-

QmiMessagePdcGetConfigLimitsInput

-
typedef struct _QmiMessagePdcGetConfigLimitsInput QmiMessagePdcGetConfigLimitsInput;
-

The QmiMessagePdcGetConfigLimitsInput structure contains private data and should only be accessed -using the provided API.

-

Since: 1.18

-
-
-
-

QmiMessagePdcGetConfigLimitsOutput

-
typedef struct _QmiMessagePdcGetConfigLimitsOutput QmiMessagePdcGetConfigLimitsOutput;
-

The QmiMessagePdcGetConfigLimitsOutput structure contains private data and should only be accessed -using the provided API.

-

Since: 1.18

-
-
-
- - - \ No newline at end of file diff -Nru libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-PDC-Get-Config-Limits-request.html libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-PDC-Get-Config-Limits-request.html --- libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-PDC-Get-Config-Limits-request.html 1970-01-01 01:00:00.000000000 +0100 +++ libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-PDC-Get-Config-Limits-request.html 2019-01-08 15:19:02.000000000 +0100 @@ -0,0 +1,786 @@ + + + + +PDC Get Config Limits request: libqmi-glib Reference Manual + + + + + + + + + + + + + + + + +
+
+
+ + +
+

PDC Get Config Limits request

+

PDC Get Config Limits request

+
+ +
+

Types and Values

+ +
+
+

Object Hierarchy

+
    GBoxed
+    ├── QmiMessagePdcGetConfigLimitsInput
+    ╰── QmiMessagePdcGetConfigLimitsOutput
+
+
+
+

Description

+
+
+

Functions

+
+

qmi_message_pdc_get_config_limits_input_new ()

+
QmiMessagePdcGetConfigLimitsInput *
+qmi_message_pdc_get_config_limits_input_new
+                               (void);
+

Allocates a new QmiMessagePdcGetConfigLimitsInput.

+
+

Returns

+

the newly created QmiMessagePdcGetConfigLimitsInput. The returned value should be freed with qmi_message_pdc_get_config_limits_input_unref().

+
+

Since: 1.18

+
+
+
+

qmi_message_pdc_get_config_limits_input_ref ()

+
QmiMessagePdcGetConfigLimitsInput *
+qmi_message_pdc_get_config_limits_input_ref
+                               (QmiMessagePdcGetConfigLimitsInput *self);
+

Atomically increments the reference count of self + by one.

+
+

Parameters

+
+++++ + + + + + +

self

a QmiMessagePdcGetConfigLimitsInput.

 
+
+
+

Returns

+

the new reference to self +.

+
+

Since: 1.18

+
+
+
+

qmi_message_pdc_get_config_limits_input_unref ()

+
void
+qmi_message_pdc_get_config_limits_input_unref
+                               (QmiMessagePdcGetConfigLimitsInput *self);
+

Atomically decrements the reference count of self + by one. +If the reference count drops to 0, self + is completely disposed.

+
+

Parameters

+
+++++ + + + + + +

self

a QmiMessagePdcGetConfigLimitsInput.

 
+
+

Since: 1.18

+
+
+
+

qmi_message_pdc_get_config_limits_input_get_token ()

+
gboolean
+qmi_message_pdc_get_config_limits_input_get_token
+                               (QmiMessagePdcGetConfigLimitsInput *self,
+                                guint32 *value_token,
+                                GError **error);
+

Get the 'Token' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessagePdcGetConfigLimitsInput.

 

value_token

a placeholder for the output guint32, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.18

+
+
+
+

qmi_message_pdc_get_config_limits_input_set_token ()

+
gboolean
+qmi_message_pdc_get_config_limits_input_set_token
+                               (QmiMessagePdcGetConfigLimitsInput *self,
+                                guint32 value_token,
+                                GError **error);
+

Set the 'Token' field in the message.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessagePdcGetConfigLimitsInput.

 

value_token

a guint32.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if value +was successfully set, FALSE otherwise.

+
+

Since: 1.18

+
+
+
+

qmi_message_pdc_get_config_limits_input_get_config_type ()

+
gboolean
+qmi_message_pdc_get_config_limits_input_get_config_type
+                               (QmiMessagePdcGetConfigLimitsInput *self,
+                                QmiPdcConfigurationType *value_config_type,
+                                GError **error);
+

Get the 'Config Type' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessagePdcGetConfigLimitsInput.

 

value_config_type

a placeholder for the output QmiPdcConfigurationType, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.18

+
+
+
+

qmi_message_pdc_get_config_limits_input_set_config_type ()

+
gboolean
+qmi_message_pdc_get_config_limits_input_set_config_type
+                               (QmiMessagePdcGetConfigLimitsInput *self,
+                                QmiPdcConfigurationType value_config_type,
+                                GError **error);
+

Set the 'Config Type' field in the message.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessagePdcGetConfigLimitsInput.

 

value_config_type

a QmiPdcConfigurationType.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if value +was successfully set, FALSE otherwise.

+
+

Since: 1.18

+
+
+
+

qmi_message_pdc_get_config_limits_output_ref ()

+
QmiMessagePdcGetConfigLimitsOutput *
+qmi_message_pdc_get_config_limits_output_ref
+                               (QmiMessagePdcGetConfigLimitsOutput *self);
+

Atomically increments the reference count of self + by one.

+
+

Parameters

+
+++++ + + + + + +

self

a QmiMessagePdcGetConfigLimitsOutput.

 
+
+
+

Returns

+

the new reference to self +.

+
+

Since: 1.18

+
+
+
+

qmi_message_pdc_get_config_limits_output_unref ()

+
void
+qmi_message_pdc_get_config_limits_output_unref
+                               (QmiMessagePdcGetConfigLimitsOutput *self);
+

Atomically decrements the reference count of self + by one. +If the reference count drops to 0, self + is completely disposed.

+
+

Parameters

+
+++++ + + + + + +

self

a QmiMessagePdcGetConfigLimitsOutput.

 
+
+

Since: 1.18

+
+
+
+

qmi_message_pdc_get_config_limits_output_get_current_size ()

+
gboolean
+qmi_message_pdc_get_config_limits_output_get_current_size
+                               (QmiMessagePdcGetConfigLimitsOutput *self,
+                                guint64 *value_current_size,
+                                GError **error);
+

Get the 'Current Size' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessagePdcGetConfigLimitsOutput.

 

value_current_size

a placeholder for the output guint64, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.18

+
+
+
+

qmi_message_pdc_get_config_limits_output_get_maximum_size ()

+
gboolean
+qmi_message_pdc_get_config_limits_output_get_maximum_size
+                               (QmiMessagePdcGetConfigLimitsOutput *self,
+                                guint64 *value_maximum_size,
+                                GError **error);
+

Get the 'Maximum Size' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessagePdcGetConfigLimitsOutput.

 

value_maximum_size

a placeholder for the output guint64, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.18

+
+
+
+

qmi_message_pdc_get_config_limits_output_get_token ()

+
gboolean
+qmi_message_pdc_get_config_limits_output_get_token
+                               (QmiMessagePdcGetConfigLimitsOutput *self,
+                                guint32 *value_token,
+                                GError **error);
+

Get the 'Token' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessagePdcGetConfigLimitsOutput.

 

value_token

a placeholder for the output guint32, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.18

+
+
+
+

qmi_message_pdc_get_config_limits_output_get_result ()

+
gboolean
+qmi_message_pdc_get_config_limits_output_get_result
+                               (QmiMessagePdcGetConfigLimitsOutput *self,
+                                GError **error);
+

Get the result of the QMI operation.

+
+

Parameters

+
+++++ + + + + + + + + + + + + +

self

a QmiMessagePdcGetConfigLimitsOutput.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the QMI operation succeeded, FALSE if error +is set.

+
+

Since: 1.18

+
+
+
+

qmi_client_pdc_get_config_limits ()

+
void
+qmi_client_pdc_get_config_limits (QmiClientPdc *self,
+                                  QmiMessagePdcGetConfigLimitsInput *input,
+                                  guint timeout,
+                                  GCancellable *cancellable,
+                                  GAsyncReadyCallback callback,
+                                  gpointer user_data);
+

Asynchronously sends a Get Config Limits request to the device.

+

When the operation is finished, callback + will be invoked in the thread-default main loop of the thread you are calling this method from.

+

You can then call qmi_client_pdc_get_config_limits_finish() to get the result of the operation.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

self

a QmiClientPdc.

 

input

a QmiMessagePdcGetConfigLimitsInput.

 

timeout

maximum time to wait for the method to complete, in seconds.

 

cancellable

a GCancellable or NULL.

 

callback

a GAsyncReadyCallback to call when the request is satisfied.

 

user_data

user data to pass to callback +.

 
+
+

Since: 1.18

+
+
+
+

qmi_client_pdc_get_config_limits_finish ()

+
QmiMessagePdcGetConfigLimitsOutput *
+qmi_client_pdc_get_config_limits_finish
+                               (QmiClientPdc *self,
+                                GAsyncResult *res,
+                                GError **error);
+

Finishes an async operation started with qmi_client_pdc_get_config_limits().

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiClientPdc.

 

res

the GAsyncResult obtained from the GAsyncReadyCallback passed to qmi_client_pdc_get_config_limits().

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

a QmiMessagePdcGetConfigLimitsOutput, or NULL if error +is set. The returned value should be freed with qmi_message_pdc_get_config_limits_output_unref().

+
+

Since: 1.18

+
+
+
+

Types and Values

+
+

QmiMessagePdcGetConfigLimitsInput

+
typedef struct _QmiMessagePdcGetConfigLimitsInput QmiMessagePdcGetConfigLimitsInput;
+

The QmiMessagePdcGetConfigLimitsInput structure contains private data and should only be accessed +using the provided API.

+

Since: 1.18

+
+
+
+

QmiMessagePdcGetConfigLimitsOutput

+
typedef struct _QmiMessagePdcGetConfigLimitsOutput QmiMessagePdcGetConfigLimitsOutput;
+

The QmiMessagePdcGetConfigLimitsOutput structure contains private data and should only be accessed +using the provided API.

+

Since: 1.18

+
+
+
+ + + \ No newline at end of file diff -Nru libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-PDC-Get-Default-Config-Info.html libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-PDC-Get-Default-Config-Info.html --- libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-PDC-Get-Default-Config-Info.html 2017-03-22 12:28:29.000000000 +0100 +++ libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-PDC-Get-Default-Config-Info.html 1970-01-01 01:00:00.000000000 +0100 @@ -1,838 +0,0 @@ - - - - -PDC Get Default Config Info: libqmi-glib Reference Manual - - - - - - - - - - - - - - - - -
-
-
- - -
-

PDC Get Default Config Info

-

PDC Get Default Config Info

-
- -
-

Types and Values

- -
-
-

Object Hierarchy

-
    GBoxed
-    ├── QmiMessagePdcGetDefaultConfigInfoInput
-    ╰── QmiMessagePdcGetDefaultConfigInfoOutput
-
-
-
-

Description

-
-
-

Functions

-
-

qmi_message_pdc_get_default_config_info_input_new ()

-
QmiMessagePdcGetDefaultConfigInfoInput *
-qmi_message_pdc_get_default_config_info_input_new
-                               (void);
-

Allocates a new QmiMessagePdcGetDefaultConfigInfoInput.

-
-

Returns

-

the newly created QmiMessagePdcGetDefaultConfigInfoInput. The returned value should be freed with qmi_message_pdc_get_default_config_info_input_unref().

-
-

Since: 1.18

-
-
-
-

qmi_message_pdc_get_default_config_info_input_ref ()

-
QmiMessagePdcGetDefaultConfigInfoInput *
-qmi_message_pdc_get_default_config_info_input_ref
-                               (QmiMessagePdcGetDefaultConfigInfoInput *self);
-

Atomically increments the reference count of self - by one.

-
-

Parameters

-
----- - - - - - -

self

a QmiMessagePdcGetDefaultConfigInfoInput.

 
-
-
-

Returns

-

the new reference to self -.

-
-

Since: 1.18

-
-
-
-

qmi_message_pdc_get_default_config_info_input_unref ()

-
void
-qmi_message_pdc_get_default_config_info_input_unref
-                               (QmiMessagePdcGetDefaultConfigInfoInput *self);
-

Atomically decrements the reference count of self - by one. -If the reference count drops to 0, self - is completely disposed.

-
-

Parameters

-
----- - - - - - -

self

a QmiMessagePdcGetDefaultConfigInfoInput.

 
-
-

Since: 1.18

-
-
-
-

qmi_message_pdc_get_default_config_info_input_get_token ()

-
gboolean
-qmi_message_pdc_get_default_config_info_input_get_token
-                               (QmiMessagePdcGetDefaultConfigInfoInput *self,
-                                guint32 *value_token,
-                                GError **error);
-

Get the 'Token' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessagePdcGetDefaultConfigInfoInput.

 

value_token

a placeholder for the output guint32, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.18

-
-
-
-

qmi_message_pdc_get_default_config_info_input_set_token ()

-
gboolean
-qmi_message_pdc_get_default_config_info_input_set_token
-                               (QmiMessagePdcGetDefaultConfigInfoInput *self,
-                                guint32 value_token,
-                                GError **error);
-

Set the 'Token' field in the message.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessagePdcGetDefaultConfigInfoInput.

 

value_token

a guint32.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if value -was successfully set, FALSE otherwise.

-
-

Since: 1.18

-
-
-
-

qmi_message_pdc_get_default_config_info_input_get_config_type ()

-
gboolean
-qmi_message_pdc_get_default_config_info_input_get_config_type
-                               (QmiMessagePdcGetDefaultConfigInfoInput *self,
-                                QmiPdcConfigurationType *value_config_type,
-                                GError **error);
-

Get the 'Config Type' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessagePdcGetDefaultConfigInfoInput.

 

value_config_type

a placeholder for the output QmiPdcConfigurationType, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.18

-
-
-
-

qmi_message_pdc_get_default_config_info_input_set_config_type ()

-
gboolean
-qmi_message_pdc_get_default_config_info_input_set_config_type
-                               (QmiMessagePdcGetDefaultConfigInfoInput *self,
-                                QmiPdcConfigurationType value_config_type,
-                                GError **error);
-

Set the 'Config Type' field in the message.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessagePdcGetDefaultConfigInfoInput.

 

value_config_type

a QmiPdcConfigurationType.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if value -was successfully set, FALSE otherwise.

-
-

Since: 1.18

-
-
-
-

qmi_message_pdc_get_default_config_info_output_ref ()

-
QmiMessagePdcGetDefaultConfigInfoOutput *
-qmi_message_pdc_get_default_config_info_output_ref
-                               (QmiMessagePdcGetDefaultConfigInfoOutput *self);
-

Atomically increments the reference count of self - by one.

-
-

Parameters

-
----- - - - - - -

self

a QmiMessagePdcGetDefaultConfigInfoOutput.

 
-
-
-

Returns

-

the new reference to self -.

-
-

Since: 1.18

-
-
-
-

qmi_message_pdc_get_default_config_info_output_unref ()

-
void
-qmi_message_pdc_get_default_config_info_output_unref
-                               (QmiMessagePdcGetDefaultConfigInfoOutput *self);
-

Atomically decrements the reference count of self - by one. -If the reference count drops to 0, self - is completely disposed.

-
-

Parameters

-
----- - - - - - -

self

a QmiMessagePdcGetDefaultConfigInfoOutput.

 
-
-

Since: 1.18

-
-
-
-

qmi_message_pdc_get_default_config_info_output_get_description ()

-
gboolean
-qmi_message_pdc_get_default_config_info_output_get_description
-                               (QmiMessagePdcGetDefaultConfigInfoOutput *self,
-                                const gchar **value_description,
-                                GError **error);
-

Get the 'Description' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessagePdcGetDefaultConfigInfoOutput.

 

value_description

a placeholder for the output constant string, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.18

-
-
-
-

qmi_message_pdc_get_default_config_info_output_get_total_size ()

-
gboolean
-qmi_message_pdc_get_default_config_info_output_get_total_size
-                               (QmiMessagePdcGetDefaultConfigInfoOutput *self,
-                                guint32 *value_total_size,
-                                GError **error);
-

Get the 'Total Size' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessagePdcGetDefaultConfigInfoOutput.

 

value_total_size

a placeholder for the output guint32, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.18

-
-
-
-

qmi_message_pdc_get_default_config_info_output_get_version ()

-
gboolean
-qmi_message_pdc_get_default_config_info_output_get_version
-                               (QmiMessagePdcGetDefaultConfigInfoOutput *self,
-                                guint32 *value_version,
-                                GError **error);
-

Get the 'Version' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessagePdcGetDefaultConfigInfoOutput.

 

value_version

a placeholder for the output guint32, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.18

-
-
-
-

qmi_message_pdc_get_default_config_info_output_get_token ()

-
gboolean
-qmi_message_pdc_get_default_config_info_output_get_token
-                               (QmiMessagePdcGetDefaultConfigInfoOutput *self,
-                                guint32 *value_token,
-                                GError **error);
-

Get the 'Token' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessagePdcGetDefaultConfigInfoOutput.

 

value_token

a placeholder for the output guint32, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.18

-
-
-
-

qmi_message_pdc_get_default_config_info_output_get_result ()

-
gboolean
-qmi_message_pdc_get_default_config_info_output_get_result
-                               (QmiMessagePdcGetDefaultConfigInfoOutput *self,
-                                GError **error);
-

Get the result of the QMI operation.

-
-

Parameters

-
----- - - - - - - - - - - - - -

self

a QmiMessagePdcGetDefaultConfigInfoOutput.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the QMI operation succeeded, FALSE if error -is set.

-
-

Since: 1.18

-
-
-
-

qmi_client_pdc_get_default_config_info ()

-
void
-qmi_client_pdc_get_default_config_info
-                               (QmiClientPdc *self,
-                                QmiMessagePdcGetDefaultConfigInfoInput *input,
-                                guint timeout,
-                                GCancellable *cancellable,
-                                GAsyncReadyCallback callback,
-                                gpointer user_data);
-

Asynchronously sends a Get Default Config Info request to the device.

-

When the operation is finished, callback - will be invoked in the thread-default main loop of the thread you are calling this method from.

-

You can then call qmi_client_pdc_get_default_config_info_finish() to get the result of the operation.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

self

a QmiClientPdc.

 

input

a QmiMessagePdcGetDefaultConfigInfoInput.

 

timeout

maximum time to wait for the method to complete, in seconds.

 

cancellable

a GCancellable or NULL.

 

callback

a GAsyncReadyCallback to call when the request is satisfied.

 

user_data

user data to pass to callback -.

 
-
-

Since: 1.18

-
-
-
-

qmi_client_pdc_get_default_config_info_finish ()

-
QmiMessagePdcGetDefaultConfigInfoOutput *
-qmi_client_pdc_get_default_config_info_finish
-                               (QmiClientPdc *self,
-                                GAsyncResult *res,
-                                GError **error);
-

Finishes an async operation started with qmi_client_pdc_get_default_config_info().

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiClientPdc.

 

res

the GAsyncResult obtained from the GAsyncReadyCallback passed to qmi_client_pdc_get_default_config_info().

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

a QmiMessagePdcGetDefaultConfigInfoOutput, or NULL if error -is set. The returned value should be freed with qmi_message_pdc_get_default_config_info_output_unref().

-
-

Since: 1.18

-
-
-
-

Types and Values

-
-

QmiMessagePdcGetDefaultConfigInfoInput

-
typedef struct _QmiMessagePdcGetDefaultConfigInfoInput QmiMessagePdcGetDefaultConfigInfoInput;
-

The QmiMessagePdcGetDefaultConfigInfoInput structure contains private data and should only be accessed -using the provided API.

-

Since: 1.18

-
-
-
-

QmiMessagePdcGetDefaultConfigInfoOutput

-
typedef struct _QmiMessagePdcGetDefaultConfigInfoOutput QmiMessagePdcGetDefaultConfigInfoOutput;
-

The QmiMessagePdcGetDefaultConfigInfoOutput structure contains private data and should only be accessed -using the provided API.

-

Since: 1.18

-
-
-
- - - \ No newline at end of file diff -Nru libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-PDC-Get-Default-Config-Info-request.html libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-PDC-Get-Default-Config-Info-request.html --- libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-PDC-Get-Default-Config-Info-request.html 1970-01-01 01:00:00.000000000 +0100 +++ libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-PDC-Get-Default-Config-Info-request.html 2019-01-08 15:19:02.000000000 +0100 @@ -0,0 +1,838 @@ + + + + +PDC Get Default Config Info request: libqmi-glib Reference Manual + + + + + + + + + + + + + + + + +
+
+
+ + +
+

PDC Get Default Config Info request

+

PDC Get Default Config Info request

+
+ +
+

Types and Values

+ +
+
+

Object Hierarchy

+
    GBoxed
+    ├── QmiMessagePdcGetDefaultConfigInfoInput
+    ╰── QmiMessagePdcGetDefaultConfigInfoOutput
+
+
+
+

Description

+
+
+

Functions

+
+

qmi_message_pdc_get_default_config_info_input_new ()

+
QmiMessagePdcGetDefaultConfigInfoInput *
+qmi_message_pdc_get_default_config_info_input_new
+                               (void);
+

Allocates a new QmiMessagePdcGetDefaultConfigInfoInput.

+
+

Returns

+

the newly created QmiMessagePdcGetDefaultConfigInfoInput. The returned value should be freed with qmi_message_pdc_get_default_config_info_input_unref().

+
+

Since: 1.18

+
+
+
+

qmi_message_pdc_get_default_config_info_input_ref ()

+
QmiMessagePdcGetDefaultConfigInfoInput *
+qmi_message_pdc_get_default_config_info_input_ref
+                               (QmiMessagePdcGetDefaultConfigInfoInput *self);
+

Atomically increments the reference count of self + by one.

+
+

Parameters

+
+++++ + + + + + +

self

a QmiMessagePdcGetDefaultConfigInfoInput.

 
+
+
+

Returns

+

the new reference to self +.

+
+

Since: 1.18

+
+
+
+

qmi_message_pdc_get_default_config_info_input_unref ()

+
void
+qmi_message_pdc_get_default_config_info_input_unref
+                               (QmiMessagePdcGetDefaultConfigInfoInput *self);
+

Atomically decrements the reference count of self + by one. +If the reference count drops to 0, self + is completely disposed.

+
+

Parameters

+
+++++ + + + + + +

self

a QmiMessagePdcGetDefaultConfigInfoInput.

 
+
+

Since: 1.18

+
+
+
+

qmi_message_pdc_get_default_config_info_input_get_token ()

+
gboolean
+qmi_message_pdc_get_default_config_info_input_get_token
+                               (QmiMessagePdcGetDefaultConfigInfoInput *self,
+                                guint32 *value_token,
+                                GError **error);
+

Get the 'Token' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessagePdcGetDefaultConfigInfoInput.

 

value_token

a placeholder for the output guint32, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.18

+
+
+
+

qmi_message_pdc_get_default_config_info_input_set_token ()

+
gboolean
+qmi_message_pdc_get_default_config_info_input_set_token
+                               (QmiMessagePdcGetDefaultConfigInfoInput *self,
+                                guint32 value_token,
+                                GError **error);
+

Set the 'Token' field in the message.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessagePdcGetDefaultConfigInfoInput.

 

value_token

a guint32.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if value +was successfully set, FALSE otherwise.

+
+

Since: 1.18

+
+
+
+

qmi_message_pdc_get_default_config_info_input_get_config_type ()

+
gboolean
+qmi_message_pdc_get_default_config_info_input_get_config_type
+                               (QmiMessagePdcGetDefaultConfigInfoInput *self,
+                                QmiPdcConfigurationType *value_config_type,
+                                GError **error);
+

Get the 'Config Type' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessagePdcGetDefaultConfigInfoInput.

 

value_config_type

a placeholder for the output QmiPdcConfigurationType, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.18

+
+
+
+

qmi_message_pdc_get_default_config_info_input_set_config_type ()

+
gboolean
+qmi_message_pdc_get_default_config_info_input_set_config_type
+                               (QmiMessagePdcGetDefaultConfigInfoInput *self,
+                                QmiPdcConfigurationType value_config_type,
+                                GError **error);
+

Set the 'Config Type' field in the message.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessagePdcGetDefaultConfigInfoInput.

 

value_config_type

a QmiPdcConfigurationType.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if value +was successfully set, FALSE otherwise.

+
+

Since: 1.18

+
+
+
+

qmi_message_pdc_get_default_config_info_output_ref ()

+
QmiMessagePdcGetDefaultConfigInfoOutput *
+qmi_message_pdc_get_default_config_info_output_ref
+                               (QmiMessagePdcGetDefaultConfigInfoOutput *self);
+

Atomically increments the reference count of self + by one.

+
+

Parameters

+
+++++ + + + + + +

self

a QmiMessagePdcGetDefaultConfigInfoOutput.

 
+
+
+

Returns

+

the new reference to self +.

+
+

Since: 1.18

+
+
+
+

qmi_message_pdc_get_default_config_info_output_unref ()

+
void
+qmi_message_pdc_get_default_config_info_output_unref
+                               (QmiMessagePdcGetDefaultConfigInfoOutput *self);
+

Atomically decrements the reference count of self + by one. +If the reference count drops to 0, self + is completely disposed.

+
+

Parameters

+
+++++ + + + + + +

self

a QmiMessagePdcGetDefaultConfigInfoOutput.

 
+
+

Since: 1.18

+
+
+
+

qmi_message_pdc_get_default_config_info_output_get_description ()

+
gboolean
+qmi_message_pdc_get_default_config_info_output_get_description
+                               (QmiMessagePdcGetDefaultConfigInfoOutput *self,
+                                const gchar **value_description,
+                                GError **error);
+

Get the 'Description' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessagePdcGetDefaultConfigInfoOutput.

 

value_description

a placeholder for the output constant string, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.18

+
+
+
+

qmi_message_pdc_get_default_config_info_output_get_total_size ()

+
gboolean
+qmi_message_pdc_get_default_config_info_output_get_total_size
+                               (QmiMessagePdcGetDefaultConfigInfoOutput *self,
+                                guint32 *value_total_size,
+                                GError **error);
+

Get the 'Total Size' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessagePdcGetDefaultConfigInfoOutput.

 

value_total_size

a placeholder for the output guint32, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.18

+
+
+
+

qmi_message_pdc_get_default_config_info_output_get_version ()

+
gboolean
+qmi_message_pdc_get_default_config_info_output_get_version
+                               (QmiMessagePdcGetDefaultConfigInfoOutput *self,
+                                guint32 *value_version,
+                                GError **error);
+

Get the 'Version' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessagePdcGetDefaultConfigInfoOutput.

 

value_version

a placeholder for the output guint32, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.18

+
+
+
+

qmi_message_pdc_get_default_config_info_output_get_token ()

+
gboolean
+qmi_message_pdc_get_default_config_info_output_get_token
+                               (QmiMessagePdcGetDefaultConfigInfoOutput *self,
+                                guint32 *value_token,
+                                GError **error);
+

Get the 'Token' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessagePdcGetDefaultConfigInfoOutput.

 

value_token

a placeholder for the output guint32, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.18

+
+
+
+

qmi_message_pdc_get_default_config_info_output_get_result ()

+
gboolean
+qmi_message_pdc_get_default_config_info_output_get_result
+                               (QmiMessagePdcGetDefaultConfigInfoOutput *self,
+                                GError **error);
+

Get the result of the QMI operation.

+
+

Parameters

+
+++++ + + + + + + + + + + + + +

self

a QmiMessagePdcGetDefaultConfigInfoOutput.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the QMI operation succeeded, FALSE if error +is set.

+
+

Since: 1.18

+
+
+
+

qmi_client_pdc_get_default_config_info ()

+
void
+qmi_client_pdc_get_default_config_info
+                               (QmiClientPdc *self,
+                                QmiMessagePdcGetDefaultConfigInfoInput *input,
+                                guint timeout,
+                                GCancellable *cancellable,
+                                GAsyncReadyCallback callback,
+                                gpointer user_data);
+

Asynchronously sends a Get Default Config Info request to the device.

+

When the operation is finished, callback + will be invoked in the thread-default main loop of the thread you are calling this method from.

+

You can then call qmi_client_pdc_get_default_config_info_finish() to get the result of the operation.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

self

a QmiClientPdc.

 

input

a QmiMessagePdcGetDefaultConfigInfoInput.

 

timeout

maximum time to wait for the method to complete, in seconds.

 

cancellable

a GCancellable or NULL.

 

callback

a GAsyncReadyCallback to call when the request is satisfied.

 

user_data

user data to pass to callback +.

 
+
+

Since: 1.18

+
+
+
+

qmi_client_pdc_get_default_config_info_finish ()

+
QmiMessagePdcGetDefaultConfigInfoOutput *
+qmi_client_pdc_get_default_config_info_finish
+                               (QmiClientPdc *self,
+                                GAsyncResult *res,
+                                GError **error);
+

Finishes an async operation started with qmi_client_pdc_get_default_config_info().

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiClientPdc.

 

res

the GAsyncResult obtained from the GAsyncReadyCallback passed to qmi_client_pdc_get_default_config_info().

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

a QmiMessagePdcGetDefaultConfigInfoOutput, or NULL if error +is set. The returned value should be freed with qmi_message_pdc_get_default_config_info_output_unref().

+
+

Since: 1.18

+
+
+
+

Types and Values

+
+

QmiMessagePdcGetDefaultConfigInfoInput

+
typedef struct _QmiMessagePdcGetDefaultConfigInfoInput QmiMessagePdcGetDefaultConfigInfoInput;
+

The QmiMessagePdcGetDefaultConfigInfoInput structure contains private data and should only be accessed +using the provided API.

+

Since: 1.18

+
+
+
+

QmiMessagePdcGetDefaultConfigInfoOutput

+
typedef struct _QmiMessagePdcGetDefaultConfigInfoOutput QmiMessagePdcGetDefaultConfigInfoOutput;
+

The QmiMessagePdcGetDefaultConfigInfoOutput structure contains private data and should only be accessed +using the provided API.

+

Since: 1.18

+
+
+
+ + + \ No newline at end of file diff -Nru libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-PDC-Get-Selected-Config.html libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-PDC-Get-Selected-Config.html --- libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-PDC-Get-Selected-Config.html 2017-03-22 12:28:29.000000000 +0100 +++ libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-PDC-Get-Selected-Config.html 1970-01-01 01:00:00.000000000 +0100 @@ -1,684 +0,0 @@ - - - - -PDC Get Selected Config: libqmi-glib Reference Manual - - - - - - - - - - - - - - - - -
-
-
- - -
-

PDC Get Selected Config

-

PDC Get Selected Config

-
- -
-

Types and Values

- -
-
-

Object Hierarchy

-
    GBoxed
-    ├── QmiMessagePdcGetSelectedConfigInput
-    ╰── QmiMessagePdcGetSelectedConfigOutput
-
-
-
-

Description

-
-
-

Functions

-
-

qmi_message_pdc_get_selected_config_input_new ()

-
QmiMessagePdcGetSelectedConfigInput *
-qmi_message_pdc_get_selected_config_input_new
-                               (void);
-

Allocates a new QmiMessagePdcGetSelectedConfigInput.

-
-

Returns

-

the newly created QmiMessagePdcGetSelectedConfigInput. The returned value should be freed with qmi_message_pdc_get_selected_config_input_unref().

-
-

Since: 1.18

-
-
-
-

qmi_message_pdc_get_selected_config_input_ref ()

-
QmiMessagePdcGetSelectedConfigInput *
-qmi_message_pdc_get_selected_config_input_ref
-                               (QmiMessagePdcGetSelectedConfigInput *self);
-

Atomically increments the reference count of self - by one.

-
-

Parameters

-
----- - - - - - -

self

a QmiMessagePdcGetSelectedConfigInput.

 
-
-
-

Returns

-

the new reference to self -.

-
-

Since: 1.18

-
-
-
-

qmi_message_pdc_get_selected_config_input_unref ()

-
void
-qmi_message_pdc_get_selected_config_input_unref
-                               (QmiMessagePdcGetSelectedConfigInput *self);
-

Atomically decrements the reference count of self - by one. -If the reference count drops to 0, self - is completely disposed.

-
-

Parameters

-
----- - - - - - -

self

a QmiMessagePdcGetSelectedConfigInput.

 
-
-

Since: 1.18

-
-
-
-

qmi_message_pdc_get_selected_config_input_get_token ()

-
gboolean
-qmi_message_pdc_get_selected_config_input_get_token
-                               (QmiMessagePdcGetSelectedConfigInput *self,
-                                guint32 *value_token,
-                                GError **error);
-

Get the 'Token' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessagePdcGetSelectedConfigInput.

 

value_token

a placeholder for the output guint32, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.18

-
-
-
-

qmi_message_pdc_get_selected_config_input_set_token ()

-
gboolean
-qmi_message_pdc_get_selected_config_input_set_token
-                               (QmiMessagePdcGetSelectedConfigInput *self,
-                                guint32 value_token,
-                                GError **error);
-

Set the 'Token' field in the message.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessagePdcGetSelectedConfigInput.

 

value_token

a guint32.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if value -was successfully set, FALSE otherwise.

-
-

Since: 1.18

-
-
-
-

qmi_message_pdc_get_selected_config_input_get_config_type ()

-
gboolean
-qmi_message_pdc_get_selected_config_input_get_config_type
-                               (QmiMessagePdcGetSelectedConfigInput *self,
-                                QmiPdcConfigurationType *value_config_type,
-                                GError **error);
-

Get the 'Config Type' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessagePdcGetSelectedConfigInput.

 

value_config_type

a placeholder for the output QmiPdcConfigurationType, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.18

-
-
-
-

qmi_message_pdc_get_selected_config_input_set_config_type ()

-
gboolean
-qmi_message_pdc_get_selected_config_input_set_config_type
-                               (QmiMessagePdcGetSelectedConfigInput *self,
-                                QmiPdcConfigurationType value_config_type,
-                                GError **error);
-

Set the 'Config Type' field in the message.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessagePdcGetSelectedConfigInput.

 

value_config_type

a QmiPdcConfigurationType.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if value -was successfully set, FALSE otherwise.

-
-

Since: 1.18

-
-
-
-

qmi_message_pdc_get_selected_config_output_ref ()

-
QmiMessagePdcGetSelectedConfigOutput *
-qmi_message_pdc_get_selected_config_output_ref
-                               (QmiMessagePdcGetSelectedConfigOutput *self);
-

Atomically increments the reference count of self - by one.

-
-

Parameters

-
----- - - - - - -

self

a QmiMessagePdcGetSelectedConfigOutput.

 
-
-
-

Returns

-

the new reference to self -.

-
-

Since: 1.18

-
-
-
-

qmi_message_pdc_get_selected_config_output_unref ()

-
void
-qmi_message_pdc_get_selected_config_output_unref
-                               (QmiMessagePdcGetSelectedConfigOutput *self);
-

Atomically decrements the reference count of self - by one. -If the reference count drops to 0, self - is completely disposed.

-
-

Parameters

-
----- - - - - - -

self

a QmiMessagePdcGetSelectedConfigOutput.

 
-
-

Since: 1.18

-
-
-
-

qmi_message_pdc_get_selected_config_output_get_token ()

-
gboolean
-qmi_message_pdc_get_selected_config_output_get_token
-                               (QmiMessagePdcGetSelectedConfigOutput *self,
-                                guint32 *value_token,
-                                GError **error);
-

Get the 'Token' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessagePdcGetSelectedConfigOutput.

 

value_token

a placeholder for the output guint32, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.18

-
-
-
-

qmi_message_pdc_get_selected_config_output_get_result ()

-
gboolean
-qmi_message_pdc_get_selected_config_output_get_result
-                               (QmiMessagePdcGetSelectedConfigOutput *self,
-                                GError **error);
-

Get the result of the QMI operation.

-
-

Parameters

-
----- - - - - - - - - - - - - -

self

a QmiMessagePdcGetSelectedConfigOutput.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the QMI operation succeeded, FALSE if error -is set.

-
-

Since: 1.18

-
-
-
-

qmi_client_pdc_get_selected_config ()

-
void
-qmi_client_pdc_get_selected_config (QmiClientPdc *self,
-                                    QmiMessagePdcGetSelectedConfigInput *input,
-                                    guint timeout,
-                                    GCancellable *cancellable,
-                                    GAsyncReadyCallback callback,
-                                    gpointer user_data);
-

Asynchronously sends a Get Selected Config request to the device.

-

When the operation is finished, callback - will be invoked in the thread-default main loop of the thread you are calling this method from.

-

You can then call qmi_client_pdc_get_selected_config_finish() to get the result of the operation.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

self

a QmiClientPdc.

 

input

a QmiMessagePdcGetSelectedConfigInput.

 

timeout

maximum time to wait for the method to complete, in seconds.

 

cancellable

a GCancellable or NULL.

 

callback

a GAsyncReadyCallback to call when the request is satisfied.

 

user_data

user data to pass to callback -.

 
-
-

Since: 1.18

-
-
-
-

qmi_client_pdc_get_selected_config_finish ()

-
QmiMessagePdcGetSelectedConfigOutput *
-qmi_client_pdc_get_selected_config_finish
-                               (QmiClientPdc *self,
-                                GAsyncResult *res,
-                                GError **error);
-

Finishes an async operation started with qmi_client_pdc_get_selected_config().

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiClientPdc.

 

res

the GAsyncResult obtained from the GAsyncReadyCallback passed to qmi_client_pdc_get_selected_config().

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

a QmiMessagePdcGetSelectedConfigOutput, or NULL if error -is set. The returned value should be freed with qmi_message_pdc_get_selected_config_output_unref().

-
-

Since: 1.18

-
-
-
-

Types and Values

-
-

QmiMessagePdcGetSelectedConfigInput

-
typedef struct _QmiMessagePdcGetSelectedConfigInput QmiMessagePdcGetSelectedConfigInput;
-

The QmiMessagePdcGetSelectedConfigInput structure contains private data and should only be accessed -using the provided API.

-

Since: 1.18

-
-
-
-

QmiMessagePdcGetSelectedConfigOutput

-
typedef struct _QmiMessagePdcGetSelectedConfigOutput QmiMessagePdcGetSelectedConfigOutput;
-

The QmiMessagePdcGetSelectedConfigOutput structure contains private data and should only be accessed -using the provided API.

-

Since: 1.18

-
-
-
- - - \ No newline at end of file diff -Nru libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-PDC-Get-Selected-Config-indication.html libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-PDC-Get-Selected-Config-indication.html --- libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-PDC-Get-Selected-Config-indication.html 1970-01-01 01:00:00.000000000 +0100 +++ libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-PDC-Get-Selected-Config-indication.html 2019-01-08 15:19:02.000000000 +0100 @@ -0,0 +1,363 @@ + + + + +PDC Get Selected Config indication: libqmi-glib Reference Manual + + + + + + + + + + + + + + + + +
+
+
+ + +
+

PDC Get Selected Config indication

+

PDC Get Selected Config indication

+
+ +
+

Types and Values

+ +
+
+

Object Hierarchy

+
    GBoxed
+    ╰── QmiIndicationPdcGetSelectedConfigOutput
+
+
+
+

Description

+
+
+

Functions

+
+

qmi_indication_pdc_get_selected_config_output_ref ()

+
QmiIndicationPdcGetSelectedConfigOutput *
+qmi_indication_pdc_get_selected_config_output_ref
+                               (QmiIndicationPdcGetSelectedConfigOutput *self);
+

Atomically increments the reference count of self + by one.

+
+

Parameters

+
+++++ + + + + + +

self

a QmiIndicationPdcGetSelectedConfigOutput.

 
+
+
+

Returns

+

the new reference to self +.

+
+

Since: 1.18

+
+
+
+

qmi_indication_pdc_get_selected_config_output_unref ()

+
void
+qmi_indication_pdc_get_selected_config_output_unref
+                               (QmiIndicationPdcGetSelectedConfigOutput *self);
+

Atomically decrements the reference count of self + by one. +If the reference count drops to 0, self + is completely disposed.

+
+

Parameters

+
+++++ + + + + + +

self

a QmiIndicationPdcGetSelectedConfigOutput.

 
+
+

Since: 1.18

+
+
+
+

qmi_indication_pdc_get_selected_config_output_get_pending_id ()

+
gboolean
+qmi_indication_pdc_get_selected_config_output_get_pending_id
+                               (QmiIndicationPdcGetSelectedConfigOutput *self,
+                                GArray **value_pending_id,
+                                GError **error);
+

Get the 'Pending Id' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiIndicationPdcGetSelectedConfigOutput.

 

value_pending_id

a placeholder for the output GArray of guint8 elements, or NULL if not required. Do not free it, it is owned by self +.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.18

+
+
+
+

qmi_indication_pdc_get_selected_config_output_get_active_id ()

+
gboolean
+qmi_indication_pdc_get_selected_config_output_get_active_id
+                               (QmiIndicationPdcGetSelectedConfigOutput *self,
+                                GArray **value_active_id,
+                                GError **error);
+

Get the 'Active Id' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiIndicationPdcGetSelectedConfigOutput.

 

value_active_id

a placeholder for the output GArray of guint8 elements, or NULL if not required. Do not free it, it is owned by self +.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.18

+
+
+
+

qmi_indication_pdc_get_selected_config_output_get_indication_result ()

+
gboolean
+qmi_indication_pdc_get_selected_config_output_get_indication_result
+                               (QmiIndicationPdcGetSelectedConfigOutput *self,
+                                guint16 *value_indication_result,
+                                GError **error);
+

Get the 'Indication Result' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiIndicationPdcGetSelectedConfigOutput.

 

value_indication_result

a placeholder for the output guint16, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.18

+
+
+
+

qmi_indication_pdc_get_selected_config_output_get_token ()

+
gboolean
+qmi_indication_pdc_get_selected_config_output_get_token
+                               (QmiIndicationPdcGetSelectedConfigOutput *self,
+                                guint32 *value_token,
+                                GError **error);
+

Get the 'Token' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiIndicationPdcGetSelectedConfigOutput.

 

value_token

a placeholder for the output guint32, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.18

+
+
+
+

Types and Values

+
+

QmiIndicationPdcGetSelectedConfigOutput

+
typedef struct _QmiIndicationPdcGetSelectedConfigOutput QmiIndicationPdcGetSelectedConfigOutput;
+

The QmiIndicationPdcGetSelectedConfigOutput structure contains private data and should only be accessed +using the provided API.

+

Since: 1.18

+
+
+
+ + + \ No newline at end of file diff -Nru libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-PDC-Get-Selected-Config-request.html libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-PDC-Get-Selected-Config-request.html --- libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-PDC-Get-Selected-Config-request.html 1970-01-01 01:00:00.000000000 +0100 +++ libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-PDC-Get-Selected-Config-request.html 2019-01-08 15:19:02.000000000 +0100 @@ -0,0 +1,684 @@ + + + + +PDC Get Selected Config request: libqmi-glib Reference Manual + + + + + + + + + + + + + + + + +
+
+
+ + +
+

PDC Get Selected Config request

+

PDC Get Selected Config request

+
+ +
+

Types and Values

+ +
+
+

Object Hierarchy

+
    GBoxed
+    ├── QmiMessagePdcGetSelectedConfigInput
+    ╰── QmiMessagePdcGetSelectedConfigOutput
+
+
+
+

Description

+
+
+

Functions

+
+

qmi_message_pdc_get_selected_config_input_new ()

+
QmiMessagePdcGetSelectedConfigInput *
+qmi_message_pdc_get_selected_config_input_new
+                               (void);
+

Allocates a new QmiMessagePdcGetSelectedConfigInput.

+
+

Returns

+

the newly created QmiMessagePdcGetSelectedConfigInput. The returned value should be freed with qmi_message_pdc_get_selected_config_input_unref().

+
+

Since: 1.18

+
+
+
+

qmi_message_pdc_get_selected_config_input_ref ()

+
QmiMessagePdcGetSelectedConfigInput *
+qmi_message_pdc_get_selected_config_input_ref
+                               (QmiMessagePdcGetSelectedConfigInput *self);
+

Atomically increments the reference count of self + by one.

+
+

Parameters

+
+++++ + + + + + +

self

a QmiMessagePdcGetSelectedConfigInput.

 
+
+
+

Returns

+

the new reference to self +.

+
+

Since: 1.18

+
+
+
+

qmi_message_pdc_get_selected_config_input_unref ()

+
void
+qmi_message_pdc_get_selected_config_input_unref
+                               (QmiMessagePdcGetSelectedConfigInput *self);
+

Atomically decrements the reference count of self + by one. +If the reference count drops to 0, self + is completely disposed.

+
+

Parameters

+
+++++ + + + + + +

self

a QmiMessagePdcGetSelectedConfigInput.

 
+
+

Since: 1.18

+
+
+
+

qmi_message_pdc_get_selected_config_input_get_token ()

+
gboolean
+qmi_message_pdc_get_selected_config_input_get_token
+                               (QmiMessagePdcGetSelectedConfigInput *self,
+                                guint32 *value_token,
+                                GError **error);
+

Get the 'Token' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessagePdcGetSelectedConfigInput.

 

value_token

a placeholder for the output guint32, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.18

+
+
+
+

qmi_message_pdc_get_selected_config_input_set_token ()

+
gboolean
+qmi_message_pdc_get_selected_config_input_set_token
+                               (QmiMessagePdcGetSelectedConfigInput *self,
+                                guint32 value_token,
+                                GError **error);
+

Set the 'Token' field in the message.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessagePdcGetSelectedConfigInput.

 

value_token

a guint32.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if value +was successfully set, FALSE otherwise.

+
+

Since: 1.18

+
+
+
+

qmi_message_pdc_get_selected_config_input_get_config_type ()

+
gboolean
+qmi_message_pdc_get_selected_config_input_get_config_type
+                               (QmiMessagePdcGetSelectedConfigInput *self,
+                                QmiPdcConfigurationType *value_config_type,
+                                GError **error);
+

Get the 'Config Type' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessagePdcGetSelectedConfigInput.

 

value_config_type

a placeholder for the output QmiPdcConfigurationType, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.18

+
+
+
+

qmi_message_pdc_get_selected_config_input_set_config_type ()

+
gboolean
+qmi_message_pdc_get_selected_config_input_set_config_type
+                               (QmiMessagePdcGetSelectedConfigInput *self,
+                                QmiPdcConfigurationType value_config_type,
+                                GError **error);
+

Set the 'Config Type' field in the message.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessagePdcGetSelectedConfigInput.

 

value_config_type

a QmiPdcConfigurationType.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if value +was successfully set, FALSE otherwise.

+
+

Since: 1.18

+
+
+
+

qmi_message_pdc_get_selected_config_output_ref ()

+
QmiMessagePdcGetSelectedConfigOutput *
+qmi_message_pdc_get_selected_config_output_ref
+                               (QmiMessagePdcGetSelectedConfigOutput *self);
+

Atomically increments the reference count of self + by one.

+
+

Parameters

+
+++++ + + + + + +

self

a QmiMessagePdcGetSelectedConfigOutput.

 
+
+
+

Returns

+

the new reference to self +.

+
+

Since: 1.18

+
+
+
+

qmi_message_pdc_get_selected_config_output_unref ()

+
void
+qmi_message_pdc_get_selected_config_output_unref
+                               (QmiMessagePdcGetSelectedConfigOutput *self);
+

Atomically decrements the reference count of self + by one. +If the reference count drops to 0, self + is completely disposed.

+
+

Parameters

+
+++++ + + + + + +

self

a QmiMessagePdcGetSelectedConfigOutput.

 
+
+

Since: 1.18

+
+
+
+

qmi_message_pdc_get_selected_config_output_get_token ()

+
gboolean
+qmi_message_pdc_get_selected_config_output_get_token
+                               (QmiMessagePdcGetSelectedConfigOutput *self,
+                                guint32 *value_token,
+                                GError **error);
+

Get the 'Token' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessagePdcGetSelectedConfigOutput.

 

value_token

a placeholder for the output guint32, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.18

+
+
+
+

qmi_message_pdc_get_selected_config_output_get_result ()

+
gboolean
+qmi_message_pdc_get_selected_config_output_get_result
+                               (QmiMessagePdcGetSelectedConfigOutput *self,
+                                GError **error);
+

Get the result of the QMI operation.

+
+

Parameters

+
+++++ + + + + + + + + + + + + +

self

a QmiMessagePdcGetSelectedConfigOutput.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the QMI operation succeeded, FALSE if error +is set.

+
+

Since: 1.18

+
+
+
+

qmi_client_pdc_get_selected_config ()

+
void
+qmi_client_pdc_get_selected_config (QmiClientPdc *self,
+                                    QmiMessagePdcGetSelectedConfigInput *input,
+                                    guint timeout,
+                                    GCancellable *cancellable,
+                                    GAsyncReadyCallback callback,
+                                    gpointer user_data);
+

Asynchronously sends a Get Selected Config request to the device.

+

When the operation is finished, callback + will be invoked in the thread-default main loop of the thread you are calling this method from.

+

You can then call qmi_client_pdc_get_selected_config_finish() to get the result of the operation.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

self

a QmiClientPdc.

 

input

a QmiMessagePdcGetSelectedConfigInput.

 

timeout

maximum time to wait for the method to complete, in seconds.

 

cancellable

a GCancellable or NULL.

 

callback

a GAsyncReadyCallback to call when the request is satisfied.

 

user_data

user data to pass to callback +.

 
+
+

Since: 1.18

+
+
+
+

qmi_client_pdc_get_selected_config_finish ()

+
QmiMessagePdcGetSelectedConfigOutput *
+qmi_client_pdc_get_selected_config_finish
+                               (QmiClientPdc *self,
+                                GAsyncResult *res,
+                                GError **error);
+

Finishes an async operation started with qmi_client_pdc_get_selected_config().

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiClientPdc.

 

res

the GAsyncResult obtained from the GAsyncReadyCallback passed to qmi_client_pdc_get_selected_config().

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

a QmiMessagePdcGetSelectedConfigOutput, or NULL if error +is set. The returned value should be freed with qmi_message_pdc_get_selected_config_output_unref().

+
+

Since: 1.18

+
+
+
+

Types and Values

+
+

QmiMessagePdcGetSelectedConfigInput

+
typedef struct _QmiMessagePdcGetSelectedConfigInput QmiMessagePdcGetSelectedConfigInput;
+

The QmiMessagePdcGetSelectedConfigInput structure contains private data and should only be accessed +using the provided API.

+

Since: 1.18

+
+
+
+

QmiMessagePdcGetSelectedConfigOutput

+
typedef struct _QmiMessagePdcGetSelectedConfigOutput QmiMessagePdcGetSelectedConfigOutput;
+

The QmiMessagePdcGetSelectedConfigOutput structure contains private data and should only be accessed +using the provided API.

+

Since: 1.18

+
+
+
+ + + \ No newline at end of file diff -Nru libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-PDC-List-Configs.html libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-PDC-List-Configs.html --- libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-PDC-List-Configs.html 2017-03-22 12:28:28.000000000 +0100 +++ libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-PDC-List-Configs.html 1970-01-01 01:00:00.000000000 +0100 @@ -1,632 +0,0 @@ - - - - -PDC List Configs: libqmi-glib Reference Manual - - - - - - - - - - - - - - - - -
-
-
- - -
-

PDC List Configs

-

PDC List Configs

-
- -
-

Types and Values

- -
-
-

Object Hierarchy

-
    GBoxed
-    ├── QmiMessagePdcListConfigsInput
-    ╰── QmiMessagePdcListConfigsOutput
-
-
-
-

Description

-
-
-

Functions

-
-

qmi_message_pdc_list_configs_input_new ()

-
QmiMessagePdcListConfigsInput *
-qmi_message_pdc_list_configs_input_new
-                               (void);
-

Allocates a new QmiMessagePdcListConfigsInput.

-
-

Returns

-

the newly created QmiMessagePdcListConfigsInput. The returned value should be freed with qmi_message_pdc_list_configs_input_unref().

-
-

Since: 1.18

-
-
-
-

qmi_message_pdc_list_configs_input_ref ()

-
QmiMessagePdcListConfigsInput *
-qmi_message_pdc_list_configs_input_ref
-                               (QmiMessagePdcListConfigsInput *self);
-

Atomically increments the reference count of self - by one.

-
-

Parameters

-
----- - - - - - -

self

a QmiMessagePdcListConfigsInput.

 
-
-
-

Returns

-

the new reference to self -.

-
-

Since: 1.18

-
-
-
-

qmi_message_pdc_list_configs_input_unref ()

-
void
-qmi_message_pdc_list_configs_input_unref
-                               (QmiMessagePdcListConfigsInput *self);
-

Atomically decrements the reference count of self - by one. -If the reference count drops to 0, self - is completely disposed.

-
-

Parameters

-
----- - - - - - -

self

a QmiMessagePdcListConfigsInput.

 
-
-

Since: 1.18

-
-
-
-

qmi_message_pdc_list_configs_input_get_config_type ()

-
gboolean
-qmi_message_pdc_list_configs_input_get_config_type
-                               (QmiMessagePdcListConfigsInput *self,
-                                QmiPdcConfigurationType *value_config_type,
-                                GError **error);
-

Get the 'Config Type' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessagePdcListConfigsInput.

 

value_config_type

a placeholder for the output QmiPdcConfigurationType, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.18

-
-
-
-

qmi_message_pdc_list_configs_input_set_config_type ()

-
gboolean
-qmi_message_pdc_list_configs_input_set_config_type
-                               (QmiMessagePdcListConfigsInput *self,
-                                QmiPdcConfigurationType value_config_type,
-                                GError **error);
-

Set the 'Config Type' field in the message.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessagePdcListConfigsInput.

 

value_config_type

a QmiPdcConfigurationType.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if value -was successfully set, FALSE otherwise.

-
-

Since: 1.18

-
-
-
-

qmi_message_pdc_list_configs_input_get_token ()

-
gboolean
-qmi_message_pdc_list_configs_input_get_token
-                               (QmiMessagePdcListConfigsInput *self,
-                                guint32 *value_token,
-                                GError **error);
-

Get the 'Token' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessagePdcListConfigsInput.

 

value_token

a placeholder for the output guint32, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.18

-
-
-
-

qmi_message_pdc_list_configs_input_set_token ()

-
gboolean
-qmi_message_pdc_list_configs_input_set_token
-                               (QmiMessagePdcListConfigsInput *self,
-                                guint32 value_token,
-                                GError **error);
-

Set the 'Token' field in the message.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessagePdcListConfigsInput.

 

value_token

a guint32.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if value -was successfully set, FALSE otherwise.

-
-

Since: 1.18

-
-
-
-

qmi_message_pdc_list_configs_output_ref ()

-
QmiMessagePdcListConfigsOutput *
-qmi_message_pdc_list_configs_output_ref
-                               (QmiMessagePdcListConfigsOutput *self);
-

Atomically increments the reference count of self - by one.

-
-

Parameters

-
----- - - - - - -

self

a QmiMessagePdcListConfigsOutput.

 
-
-
-

Returns

-

the new reference to self -.

-
-

Since: 1.18

-
-
-
-

qmi_message_pdc_list_configs_output_unref ()

-
void
-qmi_message_pdc_list_configs_output_unref
-                               (QmiMessagePdcListConfigsOutput *self);
-

Atomically decrements the reference count of self - by one. -If the reference count drops to 0, self - is completely disposed.

-
-

Parameters

-
----- - - - - - -

self

a QmiMessagePdcListConfigsOutput.

 
-
-

Since: 1.18

-
-
-
-

qmi_message_pdc_list_configs_output_get_result ()

-
gboolean
-qmi_message_pdc_list_configs_output_get_result
-                               (QmiMessagePdcListConfigsOutput *self,
-                                GError **error);
-

Get the result of the QMI operation.

-
-

Parameters

-
----- - - - - - - - - - - - - -

self

a QmiMessagePdcListConfigsOutput.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the QMI operation succeeded, FALSE if error -is set.

-
-

Since: 1.18

-
-
-
-

qmi_client_pdc_list_configs ()

-
void
-qmi_client_pdc_list_configs (QmiClientPdc *self,
-                             QmiMessagePdcListConfigsInput *input,
-                             guint timeout,
-                             GCancellable *cancellable,
-                             GAsyncReadyCallback callback,
-                             gpointer user_data);
-

Asynchronously sends a List Configs request to the device.

-

When the operation is finished, callback - will be invoked in the thread-default main loop of the thread you are calling this method from.

-

You can then call qmi_client_pdc_list_configs_finish() to get the result of the operation.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

self

a QmiClientPdc.

 

input

a QmiMessagePdcListConfigsInput.

 

timeout

maximum time to wait for the method to complete, in seconds.

 

cancellable

a GCancellable or NULL.

 

callback

a GAsyncReadyCallback to call when the request is satisfied.

 

user_data

user data to pass to callback -.

 
-
-

Since: 1.18

-
-
-
-

qmi_client_pdc_list_configs_finish ()

-
QmiMessagePdcListConfigsOutput *
-qmi_client_pdc_list_configs_finish (QmiClientPdc *self,
-                                    GAsyncResult *res,
-                                    GError **error);
-

Finishes an async operation started with qmi_client_pdc_list_configs().

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiClientPdc.

 

res

the GAsyncResult obtained from the GAsyncReadyCallback passed to qmi_client_pdc_list_configs().

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

a QmiMessagePdcListConfigsOutput, or NULL if error -is set. The returned value should be freed with qmi_message_pdc_list_configs_output_unref().

-
-

Since: 1.18

-
-
-
-

Types and Values

-
-

QmiMessagePdcListConfigsInput

-
typedef struct _QmiMessagePdcListConfigsInput QmiMessagePdcListConfigsInput;
-

The QmiMessagePdcListConfigsInput structure contains private data and should only be accessed -using the provided API.

-

Since: 1.18

-
-
-
-

QmiMessagePdcListConfigsOutput

-
typedef struct _QmiMessagePdcListConfigsOutput QmiMessagePdcListConfigsOutput;
-

The QmiMessagePdcListConfigsOutput structure contains private data and should only be accessed -using the provided API.

-

Since: 1.18

-
-
-
- - - \ No newline at end of file diff -Nru libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-PDC-List-Configs-indication.html libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-PDC-List-Configs-indication.html --- libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-PDC-List-Configs-indication.html 1970-01-01 01:00:00.000000000 +0100 +++ libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-PDC-List-Configs-indication.html 2019-01-08 15:19:02.000000000 +0100 @@ -0,0 +1,350 @@ + + + + +PDC List Configs indication: libqmi-glib Reference Manual + + + + + + + + + + + + + + + + +
+
+
+ + +
+

PDC List Configs indication

+

PDC List Configs indication

+
+ +
+

Types and Values

+ +
+
+

Object Hierarchy

+
    GBoxed
+    ╰── QmiIndicationPdcListConfigsOutput
+
+
+
+

Description

+
+
+

Functions

+
+

qmi_indication_pdc_list_configs_output_ref ()

+
QmiIndicationPdcListConfigsOutput *
+qmi_indication_pdc_list_configs_output_ref
+                               (QmiIndicationPdcListConfigsOutput *self);
+

Atomically increments the reference count of self + by one.

+
+

Parameters

+
+++++ + + + + + +

self

a QmiIndicationPdcListConfigsOutput.

 
+
+
+

Returns

+

the new reference to self +.

+
+

Since: 1.18

+
+
+
+

qmi_indication_pdc_list_configs_output_unref ()

+
void
+qmi_indication_pdc_list_configs_output_unref
+                               (QmiIndicationPdcListConfigsOutput *self);
+

Atomically decrements the reference count of self + by one. +If the reference count drops to 0, self + is completely disposed.

+
+

Parameters

+
+++++ + + + + + +

self

a QmiIndicationPdcListConfigsOutput.

 
+
+

Since: 1.18

+
+
+
+

qmi_indication_pdc_list_configs_output_get_configs ()

+
gboolean
+qmi_indication_pdc_list_configs_output_get_configs
+                               (QmiIndicationPdcListConfigsOutput *self,
+                                GArray **value_configs,
+                                GError **error);
+

Get the 'Configs' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiIndicationPdcListConfigsOutput.

 

value_configs

a placeholder for the output GArray of QmiIndicationPdcListConfigsOutputConfigsElement elements, or NULL if not required. Do not free it, it is owned by self +.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.18

+
+
+
+

qmi_indication_pdc_list_configs_output_get_indication_result ()

+
gboolean
+qmi_indication_pdc_list_configs_output_get_indication_result
+                               (QmiIndicationPdcListConfigsOutput *self,
+                                guint16 *value_indication_result,
+                                GError **error);
+

Get the 'Indication Result' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiIndicationPdcListConfigsOutput.

 

value_indication_result

a placeholder for the output guint16, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.18

+
+
+
+

qmi_indication_pdc_list_configs_output_get_token ()

+
gboolean
+qmi_indication_pdc_list_configs_output_get_token
+                               (QmiIndicationPdcListConfigsOutput *self,
+                                guint32 *value_token,
+                                GError **error);
+

Get the 'Token' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiIndicationPdcListConfigsOutput.

 

value_token

a placeholder for the output guint32, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.18

+
+
+
+

Types and Values

+
+

QmiIndicationPdcListConfigsOutput

+
typedef struct _QmiIndicationPdcListConfigsOutput QmiIndicationPdcListConfigsOutput;
+

The QmiIndicationPdcListConfigsOutput structure contains private data and should only be accessed +using the provided API.

+

Since: 1.18

+
+
+
+

QmiIndicationPdcListConfigsOutputConfigsElement

+
typedef struct {
+    QmiPdcConfigurationType config_type;
+    GArray *id;
+} QmiIndicationPdcListConfigsOutputConfigsElement;
+
+

A QmiIndicationPdcListConfigsOutputConfigsElement struct.

+
+

Members

+
+++++ + + + + + + + + + + + + +

QmiPdcConfigurationType config_type;

a QmiPdcConfigurationType.

 

GArray *id;

a GArray of guint8 elements.

 
+
+

Since: 1.18

+
+
+
+ + + \ No newline at end of file diff -Nru libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-PDC-List-Configs-request.html libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-PDC-List-Configs-request.html --- libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-PDC-List-Configs-request.html 1970-01-01 01:00:00.000000000 +0100 +++ libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-PDC-List-Configs-request.html 2019-01-08 15:19:02.000000000 +0100 @@ -0,0 +1,632 @@ + + + + +PDC List Configs request: libqmi-glib Reference Manual + + + + + + + + + + + + + + + + +
+
+
+ + +
+

PDC List Configs request

+

PDC List Configs request

+
+ +
+

Types and Values

+ +
+
+

Object Hierarchy

+
    GBoxed
+    ├── QmiMessagePdcListConfigsInput
+    ╰── QmiMessagePdcListConfigsOutput
+
+
+
+

Description

+
+
+

Functions

+
+

qmi_message_pdc_list_configs_input_new ()

+
QmiMessagePdcListConfigsInput *
+qmi_message_pdc_list_configs_input_new
+                               (void);
+

Allocates a new QmiMessagePdcListConfigsInput.

+
+

Returns

+

the newly created QmiMessagePdcListConfigsInput. The returned value should be freed with qmi_message_pdc_list_configs_input_unref().

+
+

Since: 1.18

+
+
+
+

qmi_message_pdc_list_configs_input_ref ()

+
QmiMessagePdcListConfigsInput *
+qmi_message_pdc_list_configs_input_ref
+                               (QmiMessagePdcListConfigsInput *self);
+

Atomically increments the reference count of self + by one.

+
+

Parameters

+
+++++ + + + + + +

self

a QmiMessagePdcListConfigsInput.

 
+
+
+

Returns

+

the new reference to self +.

+
+

Since: 1.18

+
+
+
+

qmi_message_pdc_list_configs_input_unref ()

+
void
+qmi_message_pdc_list_configs_input_unref
+                               (QmiMessagePdcListConfigsInput *self);
+

Atomically decrements the reference count of self + by one. +If the reference count drops to 0, self + is completely disposed.

+
+

Parameters

+
+++++ + + + + + +

self

a QmiMessagePdcListConfigsInput.

 
+
+

Since: 1.18

+
+
+
+

qmi_message_pdc_list_configs_input_get_config_type ()

+
gboolean
+qmi_message_pdc_list_configs_input_get_config_type
+                               (QmiMessagePdcListConfigsInput *self,
+                                QmiPdcConfigurationType *value_config_type,
+                                GError **error);
+

Get the 'Config Type' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessagePdcListConfigsInput.

 

value_config_type

a placeholder for the output QmiPdcConfigurationType, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.18

+
+
+
+

qmi_message_pdc_list_configs_input_set_config_type ()

+
gboolean
+qmi_message_pdc_list_configs_input_set_config_type
+                               (QmiMessagePdcListConfigsInput *self,
+                                QmiPdcConfigurationType value_config_type,
+                                GError **error);
+

Set the 'Config Type' field in the message.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessagePdcListConfigsInput.

 

value_config_type

a QmiPdcConfigurationType.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if value +was successfully set, FALSE otherwise.

+
+

Since: 1.18

+
+
+
+

qmi_message_pdc_list_configs_input_get_token ()

+
gboolean
+qmi_message_pdc_list_configs_input_get_token
+                               (QmiMessagePdcListConfigsInput *self,
+                                guint32 *value_token,
+                                GError **error);
+

Get the 'Token' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessagePdcListConfigsInput.

 

value_token

a placeholder for the output guint32, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.18

+
+
+
+

qmi_message_pdc_list_configs_input_set_token ()

+
gboolean
+qmi_message_pdc_list_configs_input_set_token
+                               (QmiMessagePdcListConfigsInput *self,
+                                guint32 value_token,
+                                GError **error);
+

Set the 'Token' field in the message.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessagePdcListConfigsInput.

 

value_token

a guint32.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if value +was successfully set, FALSE otherwise.

+
+

Since: 1.18

+
+
+
+

qmi_message_pdc_list_configs_output_ref ()

+
QmiMessagePdcListConfigsOutput *
+qmi_message_pdc_list_configs_output_ref
+                               (QmiMessagePdcListConfigsOutput *self);
+

Atomically increments the reference count of self + by one.

+
+

Parameters

+
+++++ + + + + + +

self

a QmiMessagePdcListConfigsOutput.

 
+
+
+

Returns

+

the new reference to self +.

+
+

Since: 1.18

+
+
+
+

qmi_message_pdc_list_configs_output_unref ()

+
void
+qmi_message_pdc_list_configs_output_unref
+                               (QmiMessagePdcListConfigsOutput *self);
+

Atomically decrements the reference count of self + by one. +If the reference count drops to 0, self + is completely disposed.

+
+

Parameters

+
+++++ + + + + + +

self

a QmiMessagePdcListConfigsOutput.

 
+
+

Since: 1.18

+
+
+
+

qmi_message_pdc_list_configs_output_get_result ()

+
gboolean
+qmi_message_pdc_list_configs_output_get_result
+                               (QmiMessagePdcListConfigsOutput *self,
+                                GError **error);
+

Get the result of the QMI operation.

+
+

Parameters

+
+++++ + + + + + + + + + + + + +

self

a QmiMessagePdcListConfigsOutput.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the QMI operation succeeded, FALSE if error +is set.

+
+

Since: 1.18

+
+
+
+

qmi_client_pdc_list_configs ()

+
void
+qmi_client_pdc_list_configs (QmiClientPdc *self,
+                             QmiMessagePdcListConfigsInput *input,
+                             guint timeout,
+                             GCancellable *cancellable,
+                             GAsyncReadyCallback callback,
+                             gpointer user_data);
+

Asynchronously sends a List Configs request to the device.

+

When the operation is finished, callback + will be invoked in the thread-default main loop of the thread you are calling this method from.

+

You can then call qmi_client_pdc_list_configs_finish() to get the result of the operation.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

self

a QmiClientPdc.

 

input

a QmiMessagePdcListConfigsInput.

 

timeout

maximum time to wait for the method to complete, in seconds.

 

cancellable

a GCancellable or NULL.

 

callback

a GAsyncReadyCallback to call when the request is satisfied.

 

user_data

user data to pass to callback +.

 
+
+

Since: 1.18

+
+
+
+

qmi_client_pdc_list_configs_finish ()

+
QmiMessagePdcListConfigsOutput *
+qmi_client_pdc_list_configs_finish (QmiClientPdc *self,
+                                    GAsyncResult *res,
+                                    GError **error);
+

Finishes an async operation started with qmi_client_pdc_list_configs().

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiClientPdc.

 

res

the GAsyncResult obtained from the GAsyncReadyCallback passed to qmi_client_pdc_list_configs().

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

a QmiMessagePdcListConfigsOutput, or NULL if error +is set. The returned value should be freed with qmi_message_pdc_list_configs_output_unref().

+
+

Since: 1.18

+
+
+
+

Types and Values

+
+

QmiMessagePdcListConfigsInput

+
typedef struct _QmiMessagePdcListConfigsInput QmiMessagePdcListConfigsInput;
+

The QmiMessagePdcListConfigsInput structure contains private data and should only be accessed +using the provided API.

+

Since: 1.18

+
+
+
+

QmiMessagePdcListConfigsOutput

+
typedef struct _QmiMessagePdcListConfigsOutput QmiMessagePdcListConfigsOutput;
+

The QmiMessagePdcListConfigsOutput structure contains private data and should only be accessed +using the provided API.

+

Since: 1.18

+
+
+
+ + + \ No newline at end of file diff -Nru libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-PDC-Load-Config.html libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-PDC-Load-Config.html --- libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-PDC-Load-Config.html 2017-03-22 12:28:28.000000000 +0100 +++ libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-PDC-Load-Config.html 1970-01-01 01:00:00.000000000 +0100 @@ -1,721 +0,0 @@ - - - - -PDC Load Config: libqmi-glib Reference Manual - - - - - - - - - - - - - - - - -
-
-
- - -
-

PDC Load Config

-

PDC Load Config

-
- -
-

Types and Values

- -
-
-

Object Hierarchy

-
    GBoxed
-    ├── QmiMessagePdcLoadConfigInput
-    ╰── QmiMessagePdcLoadConfigOutput
-
-
-
-

Description

-
-
-

Functions

-
-

qmi_message_pdc_load_config_input_new ()

-
QmiMessagePdcLoadConfigInput *
-qmi_message_pdc_load_config_input_new (void);
-

Allocates a new QmiMessagePdcLoadConfigInput.

-
-

Returns

-

the newly created QmiMessagePdcLoadConfigInput. The returned value should be freed with qmi_message_pdc_load_config_input_unref().

-
-

Since: 1.18

-
-
-
-

qmi_message_pdc_load_config_input_ref ()

-
QmiMessagePdcLoadConfigInput *
-qmi_message_pdc_load_config_input_ref (QmiMessagePdcLoadConfigInput *self);
-

Atomically increments the reference count of self - by one.

-
-

Parameters

-
----- - - - - - -

self

a QmiMessagePdcLoadConfigInput.

 
-
-
-

Returns

-

the new reference to self -.

-
-

Since: 1.18

-
-
-
-

qmi_message_pdc_load_config_input_unref ()

-
void
-qmi_message_pdc_load_config_input_unref
-                               (QmiMessagePdcLoadConfigInput *self);
-

Atomically decrements the reference count of self - by one. -If the reference count drops to 0, self - is completely disposed.

-
-

Parameters

-
----- - - - - - -

self

a QmiMessagePdcLoadConfigInput.

 
-
-

Since: 1.18

-
-
-
-

qmi_message_pdc_load_config_input_get_token ()

-
gboolean
-qmi_message_pdc_load_config_input_get_token
-                               (QmiMessagePdcLoadConfigInput *self,
-                                guint32 *value_token,
-                                GError **error);
-

Get the 'Token' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessagePdcLoadConfigInput.

 

value_token

a placeholder for the output guint32, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.18

-
-
-
-

qmi_message_pdc_load_config_input_set_token ()

-
gboolean
-qmi_message_pdc_load_config_input_set_token
-                               (QmiMessagePdcLoadConfigInput *self,
-                                guint32 value_token,
-                                GError **error);
-

Set the 'Token' field in the message.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessagePdcLoadConfigInput.

 

value_token

a guint32.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if value -was successfully set, FALSE otherwise.

-
-

Since: 1.18

-
-
-
-

qmi_message_pdc_load_config_input_get_config_chunk ()

-
gboolean
-qmi_message_pdc_load_config_input_get_config_chunk
-                               (QmiMessagePdcLoadConfigInput *self,
-                                QmiPdcConfigurationType *value_config_chunk_type,
-                                GArray **value_config_chunk_id,
-                                guint32 *value_config_chunk_total_size,
-                                GArray **value_config_chunk_chunk,
-                                GError **error);
-

Get the 'Config Chunk' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

self

a QmiMessagePdcLoadConfigInput.

 

value_config_chunk_type

a placeholder for the output QmiPdcConfigurationType, or NULL if not required.

 

value_config_chunk_id

a placeholder for the output GArray of guint8 elements, or NULL if not required. Do not free it, it is owned by self -.

 

value_config_chunk_total_size

a placeholder for the output guint32, or NULL if not required.

 

value_config_chunk_chunk

a placeholder for the output GArray of guint8 elements, or NULL if not required. Do not free it, it is owned by self -.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.18

-
-
-
-

qmi_message_pdc_load_config_input_set_config_chunk ()

-
gboolean
-qmi_message_pdc_load_config_input_set_config_chunk
-                               (QmiMessagePdcLoadConfigInput *self,
-                                QmiPdcConfigurationType value_config_chunk_type,
-                                GArray *value_config_chunk_id,
-                                guint32 value_config_chunk_total_size,
-                                GArray *value_config_chunk_chunk,
-                                GError **error);
-

Set the 'Config Chunk' field in the message.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

self

a QmiMessagePdcLoadConfigInput.

 

value_config_chunk_type

a QmiPdcConfigurationType.

 

value_config_chunk_id

a GArray of guint8 elements. A new reference to value_config_chunk_id -will be taken.

 

value_config_chunk_total_size

a guint32.

 

value_config_chunk_chunk

a GArray of guint8 elements. A new reference to value_config_chunk_chunk -will be taken.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if value -was successfully set, FALSE otherwise.

-
-

Since: 1.18

-
-
-
-

qmi_message_pdc_load_config_output_ref ()

-
QmiMessagePdcLoadConfigOutput *
-qmi_message_pdc_load_config_output_ref
-                               (QmiMessagePdcLoadConfigOutput *self);
-

Atomically increments the reference count of self - by one.

-
-

Parameters

-
----- - - - - - -

self

a QmiMessagePdcLoadConfigOutput.

 
-
-
-

Returns

-

the new reference to self -.

-
-

Since: 1.18

-
-
-
-

qmi_message_pdc_load_config_output_unref ()

-
void
-qmi_message_pdc_load_config_output_unref
-                               (QmiMessagePdcLoadConfigOutput *self);
-

Atomically decrements the reference count of self - by one. -If the reference count drops to 0, self - is completely disposed.

-
-

Parameters

-
----- - - - - - -

self

a QmiMessagePdcLoadConfigOutput.

 
-
-

Since: 1.18

-
-
-
-

qmi_message_pdc_load_config_output_get_token ()

-
gboolean
-qmi_message_pdc_load_config_output_get_token
-                               (QmiMessagePdcLoadConfigOutput *self,
-                                guint32 *value_token,
-                                GError **error);
-

Get the 'Token' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessagePdcLoadConfigOutput.

 

value_token

a placeholder for the output guint32, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.18

-
-
-
-

qmi_message_pdc_load_config_output_get_result ()

-
gboolean
-qmi_message_pdc_load_config_output_get_result
-                               (QmiMessagePdcLoadConfigOutput *self,
-                                GError **error);
-

Get the result of the QMI operation.

-
-

Parameters

-
----- - - - - - - - - - - - - -

self

a QmiMessagePdcLoadConfigOutput.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the QMI operation succeeded, FALSE if error -is set.

-
-

Since: 1.18

-
-
-
-

qmi_client_pdc_load_config ()

-
void
-qmi_client_pdc_load_config (QmiClientPdc *self,
-                            QmiMessagePdcLoadConfigInput *input,
-                            guint timeout,
-                            GCancellable *cancellable,
-                            GAsyncReadyCallback callback,
-                            gpointer user_data);
-

Asynchronously sends a Load Config request to the device.

-

When the operation is finished, callback - will be invoked in the thread-default main loop of the thread you are calling this method from.

-

You can then call qmi_client_pdc_load_config_finish() to get the result of the operation.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

self

a QmiClientPdc.

 

input

a QmiMessagePdcLoadConfigInput.

 

timeout

maximum time to wait for the method to complete, in seconds.

 

cancellable

a GCancellable or NULL.

 

callback

a GAsyncReadyCallback to call when the request is satisfied.

 

user_data

user data to pass to callback -.

 
-
-

Since: 1.18

-
-
-
-

qmi_client_pdc_load_config_finish ()

-
QmiMessagePdcLoadConfigOutput *
-qmi_client_pdc_load_config_finish (QmiClientPdc *self,
-                                   GAsyncResult *res,
-                                   GError **error);
-

Finishes an async operation started with qmi_client_pdc_load_config().

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiClientPdc.

 

res

the GAsyncResult obtained from the GAsyncReadyCallback passed to qmi_client_pdc_load_config().

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

a QmiMessagePdcLoadConfigOutput, or NULL if error -is set. The returned value should be freed with qmi_message_pdc_load_config_output_unref().

-
-

Since: 1.18

-
-
-
-

Types and Values

-
-

QmiMessagePdcLoadConfigInput

-
typedef struct _QmiMessagePdcLoadConfigInput QmiMessagePdcLoadConfigInput;
-

The QmiMessagePdcLoadConfigInput structure contains private data and should only be accessed -using the provided API.

-

Since: 1.18

-
-
-
-

QmiMessagePdcLoadConfigOutput

-
typedef struct _QmiMessagePdcLoadConfigOutput QmiMessagePdcLoadConfigOutput;
-

The QmiMessagePdcLoadConfigOutput structure contains private data and should only be accessed -using the provided API.

-

Since: 1.18

-
-
-
- - - \ No newline at end of file diff -Nru libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-PDC-Load-Config-indication.html libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-PDC-Load-Config-indication.html --- libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-PDC-Load-Config-indication.html 1970-01-01 01:00:00.000000000 +0100 +++ libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-PDC-Load-Config-indication.html 2019-01-08 15:19:02.000000000 +0100 @@ -0,0 +1,412 @@ + + + + +PDC Load Config indication: libqmi-glib Reference Manual + + + + + + + + + + + + + + + + +
+
+
+ + +
+

PDC Load Config indication

+

PDC Load Config indication

+
+ +
+

Types and Values

+ +
+
+

Object Hierarchy

+
    GBoxed
+    ╰── QmiIndicationPdcLoadConfigOutput
+
+
+
+

Description

+
+
+

Functions

+
+

qmi_indication_pdc_load_config_output_ref ()

+
QmiIndicationPdcLoadConfigOutput *
+qmi_indication_pdc_load_config_output_ref
+                               (QmiIndicationPdcLoadConfigOutput *self);
+

Atomically increments the reference count of self + by one.

+
+

Parameters

+
+++++ + + + + + +

self

a QmiIndicationPdcLoadConfigOutput.

 
+
+
+

Returns

+

the new reference to self +.

+
+

Since: 1.18

+
+
+
+

qmi_indication_pdc_load_config_output_unref ()

+
void
+qmi_indication_pdc_load_config_output_unref
+                               (QmiIndicationPdcLoadConfigOutput *self);
+

Atomically decrements the reference count of self + by one. +If the reference count drops to 0, self + is completely disposed.

+
+

Parameters

+
+++++ + + + + + +

self

a QmiIndicationPdcLoadConfigOutput.

 
+
+

Since: 1.18

+
+
+
+

qmi_indication_pdc_load_config_output_get_frame_reset ()

+
gboolean
+qmi_indication_pdc_load_config_output_get_frame_reset
+                               (QmiIndicationPdcLoadConfigOutput *self,
+                                gboolean *value_frame_reset,
+                                GError **error);
+

Get the 'Frame Reset' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiIndicationPdcLoadConfigOutput.

 

value_frame_reset

a placeholder for the output gboolean, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.18

+
+
+
+

qmi_indication_pdc_load_config_output_get_remaining_size ()

+
gboolean
+qmi_indication_pdc_load_config_output_get_remaining_size
+                               (QmiIndicationPdcLoadConfigOutput *self,
+                                guint32 *value_remaining_size,
+                                GError **error);
+

Get the 'Remaining Size' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiIndicationPdcLoadConfigOutput.

 

value_remaining_size

a placeholder for the output guint32, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.18

+
+
+
+

qmi_indication_pdc_load_config_output_get_received ()

+
gboolean
+qmi_indication_pdc_load_config_output_get_received
+                               (QmiIndicationPdcLoadConfigOutput *self,
+                                guint32 *value_received,
+                                GError **error);
+

Get the 'Received' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiIndicationPdcLoadConfigOutput.

 

value_received

a placeholder for the output guint32, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.18

+
+
+
+

qmi_indication_pdc_load_config_output_get_indication_result ()

+
gboolean
+qmi_indication_pdc_load_config_output_get_indication_result
+                               (QmiIndicationPdcLoadConfigOutput *self,
+                                guint16 *value_indication_result,
+                                GError **error);
+

Get the 'Indication Result' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiIndicationPdcLoadConfigOutput.

 

value_indication_result

a placeholder for the output guint16, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.18

+
+
+
+

qmi_indication_pdc_load_config_output_get_token ()

+
gboolean
+qmi_indication_pdc_load_config_output_get_token
+                               (QmiIndicationPdcLoadConfigOutput *self,
+                                guint32 *value_token,
+                                GError **error);
+

Get the 'Token' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiIndicationPdcLoadConfigOutput.

 

value_token

a placeholder for the output guint32, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.18

+
+
+
+

Types and Values

+
+

QmiIndicationPdcLoadConfigOutput

+
typedef struct _QmiIndicationPdcLoadConfigOutput QmiIndicationPdcLoadConfigOutput;
+

The QmiIndicationPdcLoadConfigOutput structure contains private data and should only be accessed +using the provided API.

+

Since: 1.18

+
+
+
+ + + \ No newline at end of file diff -Nru libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-PDC-Load-Config-request.html libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-PDC-Load-Config-request.html --- libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-PDC-Load-Config-request.html 1970-01-01 01:00:00.000000000 +0100 +++ libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-PDC-Load-Config-request.html 2019-01-08 15:19:02.000000000 +0100 @@ -0,0 +1,721 @@ + + + + +PDC Load Config request: libqmi-glib Reference Manual + + + + + + + + + + + + + + + + +
+
+
+ + +
+

PDC Load Config request

+

PDC Load Config request

+
+ +
+

Types and Values

+ +
+
+

Object Hierarchy

+
    GBoxed
+    ├── QmiMessagePdcLoadConfigInput
+    ╰── QmiMessagePdcLoadConfigOutput
+
+
+
+

Description

+
+
+

Functions

+
+

qmi_message_pdc_load_config_input_new ()

+
QmiMessagePdcLoadConfigInput *
+qmi_message_pdc_load_config_input_new (void);
+

Allocates a new QmiMessagePdcLoadConfigInput.

+
+

Returns

+

the newly created QmiMessagePdcLoadConfigInput. The returned value should be freed with qmi_message_pdc_load_config_input_unref().

+
+

Since: 1.18

+
+
+
+

qmi_message_pdc_load_config_input_ref ()

+
QmiMessagePdcLoadConfigInput *
+qmi_message_pdc_load_config_input_ref (QmiMessagePdcLoadConfigInput *self);
+

Atomically increments the reference count of self + by one.

+
+

Parameters

+
+++++ + + + + + +

self

a QmiMessagePdcLoadConfigInput.

 
+
+
+

Returns

+

the new reference to self +.

+
+

Since: 1.18

+
+
+
+

qmi_message_pdc_load_config_input_unref ()

+
void
+qmi_message_pdc_load_config_input_unref
+                               (QmiMessagePdcLoadConfigInput *self);
+

Atomically decrements the reference count of self + by one. +If the reference count drops to 0, self + is completely disposed.

+
+

Parameters

+
+++++ + + + + + +

self

a QmiMessagePdcLoadConfigInput.

 
+
+

Since: 1.18

+
+
+
+

qmi_message_pdc_load_config_input_get_token ()

+
gboolean
+qmi_message_pdc_load_config_input_get_token
+                               (QmiMessagePdcLoadConfigInput *self,
+                                guint32 *value_token,
+                                GError **error);
+

Get the 'Token' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessagePdcLoadConfigInput.

 

value_token

a placeholder for the output guint32, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.18

+
+
+
+

qmi_message_pdc_load_config_input_set_token ()

+
gboolean
+qmi_message_pdc_load_config_input_set_token
+                               (QmiMessagePdcLoadConfigInput *self,
+                                guint32 value_token,
+                                GError **error);
+

Set the 'Token' field in the message.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessagePdcLoadConfigInput.

 

value_token

a guint32.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if value +was successfully set, FALSE otherwise.

+
+

Since: 1.18

+
+
+
+

qmi_message_pdc_load_config_input_get_config_chunk ()

+
gboolean
+qmi_message_pdc_load_config_input_get_config_chunk
+                               (QmiMessagePdcLoadConfigInput *self,
+                                QmiPdcConfigurationType *value_config_chunk_type,
+                                GArray **value_config_chunk_id,
+                                guint32 *value_config_chunk_total_size,
+                                GArray **value_config_chunk_chunk,
+                                GError **error);
+

Get the 'Config Chunk' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

self

a QmiMessagePdcLoadConfigInput.

 

value_config_chunk_type

a placeholder for the output QmiPdcConfigurationType, or NULL if not required.

 

value_config_chunk_id

a placeholder for the output GArray of guint8 elements, or NULL if not required. Do not free it, it is owned by self +.

 

value_config_chunk_total_size

a placeholder for the output guint32, or NULL if not required.

 

value_config_chunk_chunk

a placeholder for the output GArray of guint8 elements, or NULL if not required. Do not free it, it is owned by self +.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.18

+
+
+
+

qmi_message_pdc_load_config_input_set_config_chunk ()

+
gboolean
+qmi_message_pdc_load_config_input_set_config_chunk
+                               (QmiMessagePdcLoadConfigInput *self,
+                                QmiPdcConfigurationType value_config_chunk_type,
+                                GArray *value_config_chunk_id,
+                                guint32 value_config_chunk_total_size,
+                                GArray *value_config_chunk_chunk,
+                                GError **error);
+

Set the 'Config Chunk' field in the message.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

self

a QmiMessagePdcLoadConfigInput.

 

value_config_chunk_type

a QmiPdcConfigurationType.

 

value_config_chunk_id

a GArray of guint8 elements. A new reference to value_config_chunk_id +will be taken.

 

value_config_chunk_total_size

a guint32.

 

value_config_chunk_chunk

a GArray of guint8 elements. A new reference to value_config_chunk_chunk +will be taken.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if value +was successfully set, FALSE otherwise.

+
+

Since: 1.18

+
+
+
+

qmi_message_pdc_load_config_output_ref ()

+
QmiMessagePdcLoadConfigOutput *
+qmi_message_pdc_load_config_output_ref
+                               (QmiMessagePdcLoadConfigOutput *self);
+

Atomically increments the reference count of self + by one.

+
+

Parameters

+
+++++ + + + + + +

self

a QmiMessagePdcLoadConfigOutput.

 
+
+
+

Returns

+

the new reference to self +.

+
+

Since: 1.18

+
+
+
+

qmi_message_pdc_load_config_output_unref ()

+
void
+qmi_message_pdc_load_config_output_unref
+                               (QmiMessagePdcLoadConfigOutput *self);
+

Atomically decrements the reference count of self + by one. +If the reference count drops to 0, self + is completely disposed.

+
+

Parameters

+
+++++ + + + + + +

self

a QmiMessagePdcLoadConfigOutput.

 
+
+

Since: 1.18

+
+
+
+

qmi_message_pdc_load_config_output_get_token ()

+
gboolean
+qmi_message_pdc_load_config_output_get_token
+                               (QmiMessagePdcLoadConfigOutput *self,
+                                guint32 *value_token,
+                                GError **error);
+

Get the 'Token' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessagePdcLoadConfigOutput.

 

value_token

a placeholder for the output guint32, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.18

+
+
+
+

qmi_message_pdc_load_config_output_get_result ()

+
gboolean
+qmi_message_pdc_load_config_output_get_result
+                               (QmiMessagePdcLoadConfigOutput *self,
+                                GError **error);
+

Get the result of the QMI operation.

+
+

Parameters

+
+++++ + + + + + + + + + + + + +

self

a QmiMessagePdcLoadConfigOutput.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the QMI operation succeeded, FALSE if error +is set.

+
+

Since: 1.18

+
+
+
+

qmi_client_pdc_load_config ()

+
void
+qmi_client_pdc_load_config (QmiClientPdc *self,
+                            QmiMessagePdcLoadConfigInput *input,
+                            guint timeout,
+                            GCancellable *cancellable,
+                            GAsyncReadyCallback callback,
+                            gpointer user_data);
+

Asynchronously sends a Load Config request to the device.

+

When the operation is finished, callback + will be invoked in the thread-default main loop of the thread you are calling this method from.

+

You can then call qmi_client_pdc_load_config_finish() to get the result of the operation.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

self

a QmiClientPdc.

 

input

a QmiMessagePdcLoadConfigInput.

 

timeout

maximum time to wait for the method to complete, in seconds.

 

cancellable

a GCancellable or NULL.

 

callback

a GAsyncReadyCallback to call when the request is satisfied.

 

user_data

user data to pass to callback +.

 
+
+

Since: 1.18

+
+
+
+

qmi_client_pdc_load_config_finish ()

+
QmiMessagePdcLoadConfigOutput *
+qmi_client_pdc_load_config_finish (QmiClientPdc *self,
+                                   GAsyncResult *res,
+                                   GError **error);
+

Finishes an async operation started with qmi_client_pdc_load_config().

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiClientPdc.

 

res

the GAsyncResult obtained from the GAsyncReadyCallback passed to qmi_client_pdc_load_config().

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

a QmiMessagePdcLoadConfigOutput, or NULL if error +is set. The returned value should be freed with qmi_message_pdc_load_config_output_unref().

+
+

Since: 1.18

+
+
+
+

Types and Values

+
+

QmiMessagePdcLoadConfigInput

+
typedef struct _QmiMessagePdcLoadConfigInput QmiMessagePdcLoadConfigInput;
+

The QmiMessagePdcLoadConfigInput structure contains private data and should only be accessed +using the provided API.

+

Since: 1.18

+
+
+
+

QmiMessagePdcLoadConfigOutput

+
typedef struct _QmiMessagePdcLoadConfigOutput QmiMessagePdcLoadConfigOutput;
+

The QmiMessagePdcLoadConfigOutput structure contains private data and should only be accessed +using the provided API.

+

Since: 1.18

+
+
+
+ + + \ No newline at end of file diff -Nru libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-PDC-Register.html libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-PDC-Register.html --- libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-PDC-Register.html 2017-03-22 12:28:29.000000000 +0100 +++ libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-PDC-Register.html 1970-01-01 01:00:00.000000000 +0100 @@ -1,525 +0,0 @@ - - - - -PDC Register: libqmi-glib Reference Manual - - - - - - - - - - - - - - - - -
-
-
- - -
-

PDC Register

-

PDC Register

-
- -
-

Types and Values

- -
-
-

Object Hierarchy

-
    GBoxed
-    ├── QmiMessagePdcRegisterInput
-    ╰── QmiMessagePdcRegisterOutput
-
-
-
-

Description

-
-
-

Functions

-
-

qmi_message_pdc_register_input_new ()

-
QmiMessagePdcRegisterInput *
-qmi_message_pdc_register_input_new (void);
-

Allocates a new QmiMessagePdcRegisterInput.

-
-

Returns

-

the newly created QmiMessagePdcRegisterInput. The returned value should be freed with qmi_message_pdc_register_input_unref().

-
-

Since: 1.18

-
-
-
-

qmi_message_pdc_register_input_ref ()

-
QmiMessagePdcRegisterInput *
-qmi_message_pdc_register_input_ref (QmiMessagePdcRegisterInput *self);
-

Atomically increments the reference count of self - by one.

-
-

Parameters

-
----- - - - - - -

self

a QmiMessagePdcRegisterInput.

 
-
-
-

Returns

-

the new reference to self -.

-
-

Since: 1.18

-
-
-
-

qmi_message_pdc_register_input_unref ()

-
void
-qmi_message_pdc_register_input_unref (QmiMessagePdcRegisterInput *self);
-

Atomically decrements the reference count of self - by one. -If the reference count drops to 0, self - is completely disposed.

-
-

Parameters

-
----- - - - - - -

self

a QmiMessagePdcRegisterInput.

 
-
-

Since: 1.18

-
-
-
-

qmi_message_pdc_register_input_get_enable_reporting ()

-
gboolean
-qmi_message_pdc_register_input_get_enable_reporting
-                               (QmiMessagePdcRegisterInput *self,
-                                gboolean *value_enable_reporting,
-                                GError **error);
-

Get the 'Enable Reporting' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessagePdcRegisterInput.

 

value_enable_reporting

a placeholder for the output gboolean, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.18

-
-
-
-

qmi_message_pdc_register_input_set_enable_reporting ()

-
gboolean
-qmi_message_pdc_register_input_set_enable_reporting
-                               (QmiMessagePdcRegisterInput *self,
-                                gboolean value_enable_reporting,
-                                GError **error);
-

Set the 'Enable Reporting' field in the message.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessagePdcRegisterInput.

 

value_enable_reporting

a gboolean.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if value -was successfully set, FALSE otherwise.

-
-

Since: 1.18

-
-
-
-

qmi_message_pdc_register_output_ref ()

-
QmiMessagePdcRegisterOutput *
-qmi_message_pdc_register_output_ref (QmiMessagePdcRegisterOutput *self);
-

Atomically increments the reference count of self - by one.

-
-

Parameters

-
----- - - - - - -

self

a QmiMessagePdcRegisterOutput.

 
-
-
-

Returns

-

the new reference to self -.

-
-

Since: 1.18

-
-
-
-

qmi_message_pdc_register_output_unref ()

-
void
-qmi_message_pdc_register_output_unref (QmiMessagePdcRegisterOutput *self);
-

Atomically decrements the reference count of self - by one. -If the reference count drops to 0, self - is completely disposed.

-
-

Parameters

-
----- - - - - - -

self

a QmiMessagePdcRegisterOutput.

 
-
-

Since: 1.18

-
-
-
-

qmi_message_pdc_register_output_get_result ()

-
gboolean
-qmi_message_pdc_register_output_get_result
-                               (QmiMessagePdcRegisterOutput *self,
-                                GError **error);
-

Get the result of the QMI operation.

-
-

Parameters

-
----- - - - - - - - - - - - - -

self

a QmiMessagePdcRegisterOutput.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the QMI operation succeeded, FALSE if error -is set.

-
-

Since: 1.18

-
-
-
-

qmi_client_pdc_register ()

-
void
-qmi_client_pdc_register (QmiClientPdc *self,
-                         QmiMessagePdcRegisterInput *input,
-                         guint timeout,
-                         GCancellable *cancellable,
-                         GAsyncReadyCallback callback,
-                         gpointer user_data);
-

Asynchronously sends a Register request to the device.

-

When the operation is finished, callback - will be invoked in the thread-default main loop of the thread you are calling this method from.

-

You can then call qmi_client_pdc_register_finish() to get the result of the operation.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

self

a QmiClientPdc.

 

input

a QmiMessagePdcRegisterInput.

 

timeout

maximum time to wait for the method to complete, in seconds.

 

cancellable

a GCancellable or NULL.

 

callback

a GAsyncReadyCallback to call when the request is satisfied.

 

user_data

user data to pass to callback -.

 
-
-

Since: 1.18

-
-
-
-

qmi_client_pdc_register_finish ()

-
QmiMessagePdcRegisterOutput *
-qmi_client_pdc_register_finish (QmiClientPdc *self,
-                                GAsyncResult *res,
-                                GError **error);
-

Finishes an async operation started with qmi_client_pdc_register().

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiClientPdc.

 

res

the GAsyncResult obtained from the GAsyncReadyCallback passed to qmi_client_pdc_register().

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

a QmiMessagePdcRegisterOutput, or NULL if error -is set. The returned value should be freed with qmi_message_pdc_register_output_unref().

-
-

Since: 1.18

-
-
-
-

Types and Values

-
-

QmiMessagePdcRegisterInput

-
typedef struct _QmiMessagePdcRegisterInput QmiMessagePdcRegisterInput;
-

The QmiMessagePdcRegisterInput structure contains private data and should only be accessed -using the provided API.

-

Since: 1.18

-
-
-
-

QmiMessagePdcRegisterOutput

-
typedef struct _QmiMessagePdcRegisterOutput QmiMessagePdcRegisterOutput;
-

The QmiMessagePdcRegisterOutput structure contains private data and should only be accessed -using the provided API.

-

Since: 1.18

-
-
-
- - - \ No newline at end of file diff -Nru libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-PDC-Register-request.html libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-PDC-Register-request.html --- libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-PDC-Register-request.html 1970-01-01 01:00:00.000000000 +0100 +++ libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-PDC-Register-request.html 2019-01-08 15:19:02.000000000 +0100 @@ -0,0 +1,525 @@ + + + + +PDC Register request: libqmi-glib Reference Manual + + + + + + + + + + + + + + + + +
+
+
+ + +
+

PDC Register request

+

PDC Register request

+
+ +
+

Types and Values

+ +
+
+

Object Hierarchy

+
    GBoxed
+    ├── QmiMessagePdcRegisterInput
+    ╰── QmiMessagePdcRegisterOutput
+
+
+
+

Description

+
+
+

Functions

+
+

qmi_message_pdc_register_input_new ()

+
QmiMessagePdcRegisterInput *
+qmi_message_pdc_register_input_new (void);
+

Allocates a new QmiMessagePdcRegisterInput.

+
+

Returns

+

the newly created QmiMessagePdcRegisterInput. The returned value should be freed with qmi_message_pdc_register_input_unref().

+
+

Since: 1.18

+
+
+
+

qmi_message_pdc_register_input_ref ()

+
QmiMessagePdcRegisterInput *
+qmi_message_pdc_register_input_ref (QmiMessagePdcRegisterInput *self);
+

Atomically increments the reference count of self + by one.

+
+

Parameters

+
+++++ + + + + + +

self

a QmiMessagePdcRegisterInput.

 
+
+
+

Returns

+

the new reference to self +.

+
+

Since: 1.18

+
+
+
+

qmi_message_pdc_register_input_unref ()

+
void
+qmi_message_pdc_register_input_unref (QmiMessagePdcRegisterInput *self);
+

Atomically decrements the reference count of self + by one. +If the reference count drops to 0, self + is completely disposed.

+
+

Parameters

+
+++++ + + + + + +

self

a QmiMessagePdcRegisterInput.

 
+
+

Since: 1.18

+
+
+
+

qmi_message_pdc_register_input_get_enable_reporting ()

+
gboolean
+qmi_message_pdc_register_input_get_enable_reporting
+                               (QmiMessagePdcRegisterInput *self,
+                                gboolean *value_enable_reporting,
+                                GError **error);
+

Get the 'Enable Reporting' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessagePdcRegisterInput.

 

value_enable_reporting

a placeholder for the output gboolean, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.18

+
+
+
+

qmi_message_pdc_register_input_set_enable_reporting ()

+
gboolean
+qmi_message_pdc_register_input_set_enable_reporting
+                               (QmiMessagePdcRegisterInput *self,
+                                gboolean value_enable_reporting,
+                                GError **error);
+

Set the 'Enable Reporting' field in the message.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessagePdcRegisterInput.

 

value_enable_reporting

a gboolean.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if value +was successfully set, FALSE otherwise.

+
+

Since: 1.18

+
+
+
+

qmi_message_pdc_register_output_ref ()

+
QmiMessagePdcRegisterOutput *
+qmi_message_pdc_register_output_ref (QmiMessagePdcRegisterOutput *self);
+

Atomically increments the reference count of self + by one.

+
+

Parameters

+
+++++ + + + + + +

self

a QmiMessagePdcRegisterOutput.

 
+
+
+

Returns

+

the new reference to self +.

+
+

Since: 1.18

+
+
+
+

qmi_message_pdc_register_output_unref ()

+
void
+qmi_message_pdc_register_output_unref (QmiMessagePdcRegisterOutput *self);
+

Atomically decrements the reference count of self + by one. +If the reference count drops to 0, self + is completely disposed.

+
+

Parameters

+
+++++ + + + + + +

self

a QmiMessagePdcRegisterOutput.

 
+
+

Since: 1.18

+
+
+
+

qmi_message_pdc_register_output_get_result ()

+
gboolean
+qmi_message_pdc_register_output_get_result
+                               (QmiMessagePdcRegisterOutput *self,
+                                GError **error);
+

Get the result of the QMI operation.

+
+

Parameters

+
+++++ + + + + + + + + + + + + +

self

a QmiMessagePdcRegisterOutput.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the QMI operation succeeded, FALSE if error +is set.

+
+

Since: 1.18

+
+
+
+

qmi_client_pdc_register ()

+
void
+qmi_client_pdc_register (QmiClientPdc *self,
+                         QmiMessagePdcRegisterInput *input,
+                         guint timeout,
+                         GCancellable *cancellable,
+                         GAsyncReadyCallback callback,
+                         gpointer user_data);
+

Asynchronously sends a Register request to the device.

+

When the operation is finished, callback + will be invoked in the thread-default main loop of the thread you are calling this method from.

+

You can then call qmi_client_pdc_register_finish() to get the result of the operation.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

self

a QmiClientPdc.

 

input

a QmiMessagePdcRegisterInput.

 

timeout

maximum time to wait for the method to complete, in seconds.

 

cancellable

a GCancellable or NULL.

 

callback

a GAsyncReadyCallback to call when the request is satisfied.

 

user_data

user data to pass to callback +.

 
+
+

Since: 1.18

+
+
+
+

qmi_client_pdc_register_finish ()

+
QmiMessagePdcRegisterOutput *
+qmi_client_pdc_register_finish (QmiClientPdc *self,
+                                GAsyncResult *res,
+                                GError **error);
+

Finishes an async operation started with qmi_client_pdc_register().

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiClientPdc.

 

res

the GAsyncResult obtained from the GAsyncReadyCallback passed to qmi_client_pdc_register().

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

a QmiMessagePdcRegisterOutput, or NULL if error +is set. The returned value should be freed with qmi_message_pdc_register_output_unref().

+
+

Since: 1.18

+
+
+
+

Types and Values

+
+

QmiMessagePdcRegisterInput

+
typedef struct _QmiMessagePdcRegisterInput QmiMessagePdcRegisterInput;
+

The QmiMessagePdcRegisterInput structure contains private data and should only be accessed +using the provided API.

+

Since: 1.18

+
+
+
+

QmiMessagePdcRegisterOutput

+
typedef struct _QmiMessagePdcRegisterOutput QmiMessagePdcRegisterOutput;
+

The QmiMessagePdcRegisterOutput structure contains private data and should only be accessed +using the provided API.

+

Since: 1.18

+
+
+
+ + + \ No newline at end of file diff -Nru libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-PDC-Reset.html libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-PDC-Reset.html --- libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-PDC-Reset.html 2017-03-22 12:28:29.000000000 +0100 +++ libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-PDC-Reset.html 1970-01-01 01:00:00.000000000 +0100 @@ -1,317 +0,0 @@ - - - - -PDC Reset: libqmi-glib Reference Manual - - - - - - - - - - - - - - - - -
-
-
- - -
-

PDC Reset

-

PDC Reset

-
-
-

Functions

- -
-
-

Types and Values

-
---- - - - - -
 QmiMessagePdcResetOutput
-
-
-

Object Hierarchy

-
    GBoxed
-    ╰── QmiMessagePdcResetOutput
-
-
-
-

Description

-
-
-

Functions

-
-

qmi_message_pdc_reset_output_ref ()

-
QmiMessagePdcResetOutput *
-qmi_message_pdc_reset_output_ref (QmiMessagePdcResetOutput *self);
-

Atomically increments the reference count of self - by one.

-
-

Parameters

-
----- - - - - - -

self

a QmiMessagePdcResetOutput.

 
-
-
-

Returns

-

the new reference to self -.

-
-

Since: 1.18

-
-
-
-

qmi_message_pdc_reset_output_unref ()

-
void
-qmi_message_pdc_reset_output_unref (QmiMessagePdcResetOutput *self);
-

Atomically decrements the reference count of self - by one. -If the reference count drops to 0, self - is completely disposed.

-
-

Parameters

-
----- - - - - - -

self

a QmiMessagePdcResetOutput.

 
-
-

Since: 1.18

-
-
-
-

qmi_message_pdc_reset_output_get_result ()

-
gboolean
-qmi_message_pdc_reset_output_get_result
-                               (QmiMessagePdcResetOutput *self,
-                                GError **error);
-

Get the result of the QMI operation.

-
-

Parameters

-
----- - - - - - - - - - - - - -

self

a QmiMessagePdcResetOutput.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the QMI operation succeeded, FALSE if error -is set.

-
-

Since: 1.18

-
-
-
-

qmi_client_pdc_reset ()

-
void
-qmi_client_pdc_reset (QmiClientPdc *self,
-                      gpointer unused,
-                      guint timeout,
-                      GCancellable *cancellable,
-                      GAsyncReadyCallback callback,
-                      gpointer user_data);
-

Asynchronously sends a Reset request to the device.

-

When the operation is finished, callback - will be invoked in the thread-default main loop of the thread you are calling this method from.

-

You can then call qmi_client_pdc_reset_finish() to get the result of the operation.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

self

a QmiClientPdc.

 

unused

NULL. This message doesn't have any input bundle.

 

timeout

maximum time to wait for the method to complete, in seconds.

 

cancellable

a GCancellable or NULL.

 

callback

a GAsyncReadyCallback to call when the request is satisfied.

 

user_data

user data to pass to callback -.

 
-
-

Since: 1.18

-
-
-
-

qmi_client_pdc_reset_finish ()

-
QmiMessagePdcResetOutput *
-qmi_client_pdc_reset_finish (QmiClientPdc *self,
-                             GAsyncResult *res,
-                             GError **error);
-

Finishes an async operation started with qmi_client_pdc_reset().

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiClientPdc.

 

res

the GAsyncResult obtained from the GAsyncReadyCallback passed to qmi_client_pdc_reset().

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

a QmiMessagePdcResetOutput, or NULL if error -is set. The returned value should be freed with qmi_message_pdc_reset_output_unref().

-
-

Since: 1.18

-
-
-
-

Types and Values

-
-

QmiMessagePdcResetOutput

-
typedef struct _QmiMessagePdcResetOutput QmiMessagePdcResetOutput;
-

The QmiMessagePdcResetOutput structure contains private data and should only be accessed -using the provided API.

-

Since: 1.18

-
-
-
- - - \ No newline at end of file diff -Nru libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-PDC-Reset-request.html libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-PDC-Reset-request.html --- libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-PDC-Reset-request.html 1970-01-01 01:00:00.000000000 +0100 +++ libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-PDC-Reset-request.html 2019-01-08 15:19:02.000000000 +0100 @@ -0,0 +1,317 @@ + + + + +PDC Reset request: libqmi-glib Reference Manual + + + + + + + + + + + + + + + + +
+
+
+ + +
+

PDC Reset request

+

PDC Reset request

+
+
+

Functions

+ +
+
+

Types and Values

+
++++ + + + + +
 QmiMessagePdcResetOutput
+
+
+

Object Hierarchy

+
    GBoxed
+    ╰── QmiMessagePdcResetOutput
+
+
+
+

Description

+
+
+

Functions

+
+

qmi_message_pdc_reset_output_ref ()

+
QmiMessagePdcResetOutput *
+qmi_message_pdc_reset_output_ref (QmiMessagePdcResetOutput *self);
+

Atomically increments the reference count of self + by one.

+
+

Parameters

+
+++++ + + + + + +

self

a QmiMessagePdcResetOutput.

 
+
+
+

Returns

+

the new reference to self +.

+
+

Since: 1.18

+
+
+
+

qmi_message_pdc_reset_output_unref ()

+
void
+qmi_message_pdc_reset_output_unref (QmiMessagePdcResetOutput *self);
+

Atomically decrements the reference count of self + by one. +If the reference count drops to 0, self + is completely disposed.

+
+

Parameters

+
+++++ + + + + + +

self

a QmiMessagePdcResetOutput.

 
+
+

Since: 1.18

+
+
+
+

qmi_message_pdc_reset_output_get_result ()

+
gboolean
+qmi_message_pdc_reset_output_get_result
+                               (QmiMessagePdcResetOutput *self,
+                                GError **error);
+

Get the result of the QMI operation.

+
+

Parameters

+
+++++ + + + + + + + + + + + + +

self

a QmiMessagePdcResetOutput.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the QMI operation succeeded, FALSE if error +is set.

+
+

Since: 1.18

+
+
+
+

qmi_client_pdc_reset ()

+
void
+qmi_client_pdc_reset (QmiClientPdc *self,
+                      gpointer unused,
+                      guint timeout,
+                      GCancellable *cancellable,
+                      GAsyncReadyCallback callback,
+                      gpointer user_data);
+

Asynchronously sends a Reset request to the device.

+

When the operation is finished, callback + will be invoked in the thread-default main loop of the thread you are calling this method from.

+

You can then call qmi_client_pdc_reset_finish() to get the result of the operation.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

self

a QmiClientPdc.

 

unused

NULL. This message doesn't have any input bundle.

 

timeout

maximum time to wait for the method to complete, in seconds.

 

cancellable

a GCancellable or NULL.

 

callback

a GAsyncReadyCallback to call when the request is satisfied.

 

user_data

user data to pass to callback +.

 
+
+

Since: 1.18

+
+
+
+

qmi_client_pdc_reset_finish ()

+
QmiMessagePdcResetOutput *
+qmi_client_pdc_reset_finish (QmiClientPdc *self,
+                             GAsyncResult *res,
+                             GError **error);
+

Finishes an async operation started with qmi_client_pdc_reset().

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiClientPdc.

 

res

the GAsyncResult obtained from the GAsyncReadyCallback passed to qmi_client_pdc_reset().

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

a QmiMessagePdcResetOutput, or NULL if error +is set. The returned value should be freed with qmi_message_pdc_reset_output_unref().

+
+

Since: 1.18

+
+
+
+

Types and Values

+
+

QmiMessagePdcResetOutput

+
typedef struct _QmiMessagePdcResetOutput QmiMessagePdcResetOutput;
+

The QmiMessagePdcResetOutput structure contains private data and should only be accessed +using the provided API.

+

Since: 1.18

+
+
+
+ + + \ No newline at end of file diff -Nru libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-PDC-Set-Selected-Config.html libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-PDC-Set-Selected-Config.html --- libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-PDC-Set-Selected-Config.html 2017-03-22 12:28:29.000000000 +0100 +++ libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-PDC-Set-Selected-Config.html 1970-01-01 01:00:00.000000000 +0100 @@ -1,684 +0,0 @@ - - - - -PDC Set Selected Config: libqmi-glib Reference Manual - - - - - - - - - - - - - - - - -
-
-
- - -
-

PDC Set Selected Config

-

PDC Set Selected Config

-
- -
-

Types and Values

- -
-
-

Object Hierarchy

-
    GBoxed
-    ├── QmiMessagePdcSetSelectedConfigInput
-    ╰── QmiMessagePdcSetSelectedConfigOutput
-
-
-
-

Description

-
-
-

Functions

-
-

qmi_message_pdc_set_selected_config_input_new ()

-
QmiMessagePdcSetSelectedConfigInput *
-qmi_message_pdc_set_selected_config_input_new
-                               (void);
-

Allocates a new QmiMessagePdcSetSelectedConfigInput.

-
-

Returns

-

the newly created QmiMessagePdcSetSelectedConfigInput. The returned value should be freed with qmi_message_pdc_set_selected_config_input_unref().

-
-

Since: 1.18

-
-
-
-

qmi_message_pdc_set_selected_config_input_ref ()

-
QmiMessagePdcSetSelectedConfigInput *
-qmi_message_pdc_set_selected_config_input_ref
-                               (QmiMessagePdcSetSelectedConfigInput *self);
-

Atomically increments the reference count of self - by one.

-
-

Parameters

-
----- - - - - - -

self

a QmiMessagePdcSetSelectedConfigInput.

 
-
-
-

Returns

-

the new reference to self -.

-
-

Since: 1.18

-
-
-
-

qmi_message_pdc_set_selected_config_input_unref ()

-
void
-qmi_message_pdc_set_selected_config_input_unref
-                               (QmiMessagePdcSetSelectedConfigInput *self);
-

Atomically decrements the reference count of self - by one. -If the reference count drops to 0, self - is completely disposed.

-
-

Parameters

-
----- - - - - - -

self

a QmiMessagePdcSetSelectedConfigInput.

 
-
-

Since: 1.18

-
-
-
-

qmi_message_pdc_set_selected_config_input_get_token ()

-
gboolean
-qmi_message_pdc_set_selected_config_input_get_token
-                               (QmiMessagePdcSetSelectedConfigInput *self,
-                                guint32 *value_token,
-                                GError **error);
-

Get the 'Token' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessagePdcSetSelectedConfigInput.

 

value_token

a placeholder for the output guint32, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.18

-
-
-
-

qmi_message_pdc_set_selected_config_input_set_token ()

-
gboolean
-qmi_message_pdc_set_selected_config_input_set_token
-                               (QmiMessagePdcSetSelectedConfigInput *self,
-                                guint32 value_token,
-                                GError **error);
-

Set the 'Token' field in the message.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessagePdcSetSelectedConfigInput.

 

value_token

a guint32.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if value -was successfully set, FALSE otherwise.

-
-

Since: 1.18

-
-
-
-

qmi_message_pdc_set_selected_config_input_get_type_with_id ()

-
gboolean
-qmi_message_pdc_set_selected_config_input_get_type_with_id
-                               (QmiMessagePdcSetSelectedConfigInput *self,
-                                QmiConfigTypeAndId *value_type_with_id,
-                                GError **error);
-

Get the 'Type With Id' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessagePdcSetSelectedConfigInput.

 

value_type_with_id

a placeholder for the output constant QmiConfigTypeAndId, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.18

-
-
-
-

qmi_message_pdc_set_selected_config_input_set_type_with_id ()

-
gboolean
-qmi_message_pdc_set_selected_config_input_set_type_with_id
-                               (QmiMessagePdcSetSelectedConfigInput *self,
-                                const QmiConfigTypeAndId *value_type_with_id,
-                                GError **error);
-

Set the 'Type With Id' field in the message.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessagePdcSetSelectedConfigInput.

 

value_type_with_id

the address of the QmiConfigTypeAndId to set.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if value -was successfully set, FALSE otherwise.

-
-

Since: 1.18

-
-
-
-

qmi_message_pdc_set_selected_config_output_ref ()

-
QmiMessagePdcSetSelectedConfigOutput *
-qmi_message_pdc_set_selected_config_output_ref
-                               (QmiMessagePdcSetSelectedConfigOutput *self);
-

Atomically increments the reference count of self - by one.

-
-

Parameters

-
----- - - - - - -

self

a QmiMessagePdcSetSelectedConfigOutput.

 
-
-
-

Returns

-

the new reference to self -.

-
-

Since: 1.18

-
-
-
-

qmi_message_pdc_set_selected_config_output_unref ()

-
void
-qmi_message_pdc_set_selected_config_output_unref
-                               (QmiMessagePdcSetSelectedConfigOutput *self);
-

Atomically decrements the reference count of self - by one. -If the reference count drops to 0, self - is completely disposed.

-
-

Parameters

-
----- - - - - - -

self

a QmiMessagePdcSetSelectedConfigOutput.

 
-
-

Since: 1.18

-
-
-
-

qmi_message_pdc_set_selected_config_output_get_token ()

-
gboolean
-qmi_message_pdc_set_selected_config_output_get_token
-                               (QmiMessagePdcSetSelectedConfigOutput *self,
-                                guint32 *value_token,
-                                GError **error);
-

Get the 'Token' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessagePdcSetSelectedConfigOutput.

 

value_token

a placeholder for the output guint32, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.18

-
-
-
-

qmi_message_pdc_set_selected_config_output_get_result ()

-
gboolean
-qmi_message_pdc_set_selected_config_output_get_result
-                               (QmiMessagePdcSetSelectedConfigOutput *self,
-                                GError **error);
-

Get the result of the QMI operation.

-
-

Parameters

-
----- - - - - - - - - - - - - -

self

a QmiMessagePdcSetSelectedConfigOutput.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the QMI operation succeeded, FALSE if error -is set.

-
-

Since: 1.18

-
-
-
-

qmi_client_pdc_set_selected_config ()

-
void
-qmi_client_pdc_set_selected_config (QmiClientPdc *self,
-                                    QmiMessagePdcSetSelectedConfigInput *input,
-                                    guint timeout,
-                                    GCancellable *cancellable,
-                                    GAsyncReadyCallback callback,
-                                    gpointer user_data);
-

Asynchronously sends a Set Selected Config request to the device.

-

When the operation is finished, callback - will be invoked in the thread-default main loop of the thread you are calling this method from.

-

You can then call qmi_client_pdc_set_selected_config_finish() to get the result of the operation.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

self

a QmiClientPdc.

 

input

a QmiMessagePdcSetSelectedConfigInput.

 

timeout

maximum time to wait for the method to complete, in seconds.

 

cancellable

a GCancellable or NULL.

 

callback

a GAsyncReadyCallback to call when the request is satisfied.

 

user_data

user data to pass to callback -.

 
-
-

Since: 1.18

-
-
-
-

qmi_client_pdc_set_selected_config_finish ()

-
QmiMessagePdcSetSelectedConfigOutput *
-qmi_client_pdc_set_selected_config_finish
-                               (QmiClientPdc *self,
-                                GAsyncResult *res,
-                                GError **error);
-

Finishes an async operation started with qmi_client_pdc_set_selected_config().

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiClientPdc.

 

res

the GAsyncResult obtained from the GAsyncReadyCallback passed to qmi_client_pdc_set_selected_config().

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

a QmiMessagePdcSetSelectedConfigOutput, or NULL if error -is set. The returned value should be freed with qmi_message_pdc_set_selected_config_output_unref().

-
-

Since: 1.18

-
-
-
-

Types and Values

-
-

QmiMessagePdcSetSelectedConfigInput

-
typedef struct _QmiMessagePdcSetSelectedConfigInput QmiMessagePdcSetSelectedConfigInput;
-

The QmiMessagePdcSetSelectedConfigInput structure contains private data and should only be accessed -using the provided API.

-

Since: 1.18

-
-
-
-

QmiMessagePdcSetSelectedConfigOutput

-
typedef struct _QmiMessagePdcSetSelectedConfigOutput QmiMessagePdcSetSelectedConfigOutput;
-

The QmiMessagePdcSetSelectedConfigOutput structure contains private data and should only be accessed -using the provided API.

-

Since: 1.18

-
-
-
- - - \ No newline at end of file diff -Nru libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-PDC-Set-Selected-Config-indication.html libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-PDC-Set-Selected-Config-indication.html --- libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-PDC-Set-Selected-Config-indication.html 1970-01-01 01:00:00.000000000 +0100 +++ libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-PDC-Set-Selected-Config-indication.html 2019-01-08 15:19:02.000000000 +0100 @@ -0,0 +1,259 @@ + + + + +PDC Set Selected Config indication: libqmi-glib Reference Manual + + + + + + + + + + + + + + + + +
+
+
+ + +
+

PDC Set Selected Config indication

+

PDC Set Selected Config indication

+
+ +
+

Types and Values

+ +
+
+

Object Hierarchy

+
    GBoxed
+    ╰── QmiIndicationPdcSetSelectedConfigOutput
+
+
+
+

Description

+
+
+

Functions

+
+

qmi_indication_pdc_set_selected_config_output_ref ()

+
QmiIndicationPdcSetSelectedConfigOutput *
+qmi_indication_pdc_set_selected_config_output_ref
+                               (QmiIndicationPdcSetSelectedConfigOutput *self);
+

Atomically increments the reference count of self + by one.

+
+

Parameters

+
+++++ + + + + + +

self

a QmiIndicationPdcSetSelectedConfigOutput.

 
+
+
+

Returns

+

the new reference to self +.

+
+

Since: 1.18

+
+
+
+

qmi_indication_pdc_set_selected_config_output_unref ()

+
void
+qmi_indication_pdc_set_selected_config_output_unref
+                               (QmiIndicationPdcSetSelectedConfigOutput *self);
+

Atomically decrements the reference count of self + by one. +If the reference count drops to 0, self + is completely disposed.

+
+

Parameters

+
+++++ + + + + + +

self

a QmiIndicationPdcSetSelectedConfigOutput.

 
+
+

Since: 1.18

+
+
+
+

qmi_indication_pdc_set_selected_config_output_get_token ()

+
gboolean
+qmi_indication_pdc_set_selected_config_output_get_token
+                               (QmiIndicationPdcSetSelectedConfigOutput *self,
+                                guint32 *value_token,
+                                GError **error);
+

Get the 'Token' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiIndicationPdcSetSelectedConfigOutput.

 

value_token

a placeholder for the output guint32, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.18

+
+
+
+

qmi_indication_pdc_set_selected_config_output_get_indication_result ()

+
gboolean
+qmi_indication_pdc_set_selected_config_output_get_indication_result
+                               (QmiIndicationPdcSetSelectedConfigOutput *self,
+                                guint16 *value_indication_result,
+                                GError **error);
+

Get the 'Indication Result' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiIndicationPdcSetSelectedConfigOutput.

 

value_indication_result

a placeholder for the output guint16, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.18

+
+
+
+

Types and Values

+
+

QmiIndicationPdcSetSelectedConfigOutput

+
typedef struct _QmiIndicationPdcSetSelectedConfigOutput QmiIndicationPdcSetSelectedConfigOutput;
+

The QmiIndicationPdcSetSelectedConfigOutput structure contains private data and should only be accessed +using the provided API.

+

Since: 1.18

+
+
+
+ + + \ No newline at end of file diff -Nru libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-PDC-Set-Selected-Config-request.html libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-PDC-Set-Selected-Config-request.html --- libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-PDC-Set-Selected-Config-request.html 1970-01-01 01:00:00.000000000 +0100 +++ libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-PDC-Set-Selected-Config-request.html 2019-01-08 15:19:02.000000000 +0100 @@ -0,0 +1,684 @@ + + + + +PDC Set Selected Config request: libqmi-glib Reference Manual + + + + + + + + + + + + + + + + +
+
+
+ + +
+

PDC Set Selected Config request

+

PDC Set Selected Config request

+
+ +
+

Types and Values

+ +
+
+

Object Hierarchy

+
    GBoxed
+    ├── QmiMessagePdcSetSelectedConfigInput
+    ╰── QmiMessagePdcSetSelectedConfigOutput
+
+
+
+

Description

+
+
+

Functions

+
+

qmi_message_pdc_set_selected_config_input_new ()

+
QmiMessagePdcSetSelectedConfigInput *
+qmi_message_pdc_set_selected_config_input_new
+                               (void);
+

Allocates a new QmiMessagePdcSetSelectedConfigInput.

+
+

Returns

+

the newly created QmiMessagePdcSetSelectedConfigInput. The returned value should be freed with qmi_message_pdc_set_selected_config_input_unref().

+
+

Since: 1.18

+
+
+
+

qmi_message_pdc_set_selected_config_input_ref ()

+
QmiMessagePdcSetSelectedConfigInput *
+qmi_message_pdc_set_selected_config_input_ref
+                               (QmiMessagePdcSetSelectedConfigInput *self);
+

Atomically increments the reference count of self + by one.

+
+

Parameters

+
+++++ + + + + + +

self

a QmiMessagePdcSetSelectedConfigInput.

 
+
+
+

Returns

+

the new reference to self +.

+
+

Since: 1.18

+
+
+
+

qmi_message_pdc_set_selected_config_input_unref ()

+
void
+qmi_message_pdc_set_selected_config_input_unref
+                               (QmiMessagePdcSetSelectedConfigInput *self);
+

Atomically decrements the reference count of self + by one. +If the reference count drops to 0, self + is completely disposed.

+
+

Parameters

+
+++++ + + + + + +

self

a QmiMessagePdcSetSelectedConfigInput.

 
+
+

Since: 1.18

+
+
+
+

qmi_message_pdc_set_selected_config_input_get_token ()

+
gboolean
+qmi_message_pdc_set_selected_config_input_get_token
+                               (QmiMessagePdcSetSelectedConfigInput *self,
+                                guint32 *value_token,
+                                GError **error);
+

Get the 'Token' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessagePdcSetSelectedConfigInput.

 

value_token

a placeholder for the output guint32, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.18

+
+
+
+

qmi_message_pdc_set_selected_config_input_set_token ()

+
gboolean
+qmi_message_pdc_set_selected_config_input_set_token
+                               (QmiMessagePdcSetSelectedConfigInput *self,
+                                guint32 value_token,
+                                GError **error);
+

Set the 'Token' field in the message.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessagePdcSetSelectedConfigInput.

 

value_token

a guint32.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if value +was successfully set, FALSE otherwise.

+
+

Since: 1.18

+
+
+
+

qmi_message_pdc_set_selected_config_input_get_type_with_id ()

+
gboolean
+qmi_message_pdc_set_selected_config_input_get_type_with_id
+                               (QmiMessagePdcSetSelectedConfigInput *self,
+                                QmiConfigTypeAndId *value_type_with_id,
+                                GError **error);
+

Get the 'Type With Id' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessagePdcSetSelectedConfigInput.

 

value_type_with_id

a placeholder for the output constant QmiConfigTypeAndId, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.18

+
+
+
+

qmi_message_pdc_set_selected_config_input_set_type_with_id ()

+
gboolean
+qmi_message_pdc_set_selected_config_input_set_type_with_id
+                               (QmiMessagePdcSetSelectedConfigInput *self,
+                                const QmiConfigTypeAndId *value_type_with_id,
+                                GError **error);
+

Set the 'Type With Id' field in the message.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessagePdcSetSelectedConfigInput.

 

value_type_with_id

the address of the QmiConfigTypeAndId to set.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if value +was successfully set, FALSE otherwise.

+
+

Since: 1.18

+
+
+
+

qmi_message_pdc_set_selected_config_output_ref ()

+
QmiMessagePdcSetSelectedConfigOutput *
+qmi_message_pdc_set_selected_config_output_ref
+                               (QmiMessagePdcSetSelectedConfigOutput *self);
+

Atomically increments the reference count of self + by one.

+
+

Parameters

+
+++++ + + + + + +

self

a QmiMessagePdcSetSelectedConfigOutput.

 
+
+
+

Returns

+

the new reference to self +.

+
+

Since: 1.18

+
+
+
+

qmi_message_pdc_set_selected_config_output_unref ()

+
void
+qmi_message_pdc_set_selected_config_output_unref
+                               (QmiMessagePdcSetSelectedConfigOutput *self);
+

Atomically decrements the reference count of self + by one. +If the reference count drops to 0, self + is completely disposed.

+
+

Parameters

+
+++++ + + + + + +

self

a QmiMessagePdcSetSelectedConfigOutput.

 
+
+

Since: 1.18

+
+
+
+

qmi_message_pdc_set_selected_config_output_get_token ()

+
gboolean
+qmi_message_pdc_set_selected_config_output_get_token
+                               (QmiMessagePdcSetSelectedConfigOutput *self,
+                                guint32 *value_token,
+                                GError **error);
+

Get the 'Token' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessagePdcSetSelectedConfigOutput.

 

value_token

a placeholder for the output guint32, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.18

+
+
+
+

qmi_message_pdc_set_selected_config_output_get_result ()

+
gboolean
+qmi_message_pdc_set_selected_config_output_get_result
+                               (QmiMessagePdcSetSelectedConfigOutput *self,
+                                GError **error);
+

Get the result of the QMI operation.

+
+

Parameters

+
+++++ + + + + + + + + + + + + +

self

a QmiMessagePdcSetSelectedConfigOutput.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the QMI operation succeeded, FALSE if error +is set.

+
+

Since: 1.18

+
+
+
+

qmi_client_pdc_set_selected_config ()

+
void
+qmi_client_pdc_set_selected_config (QmiClientPdc *self,
+                                    QmiMessagePdcSetSelectedConfigInput *input,
+                                    guint timeout,
+                                    GCancellable *cancellable,
+                                    GAsyncReadyCallback callback,
+                                    gpointer user_data);
+

Asynchronously sends a Set Selected Config request to the device.

+

When the operation is finished, callback + will be invoked in the thread-default main loop of the thread you are calling this method from.

+

You can then call qmi_client_pdc_set_selected_config_finish() to get the result of the operation.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

self

a QmiClientPdc.

 

input

a QmiMessagePdcSetSelectedConfigInput.

 

timeout

maximum time to wait for the method to complete, in seconds.

 

cancellable

a GCancellable or NULL.

 

callback

a GAsyncReadyCallback to call when the request is satisfied.

 

user_data

user data to pass to callback +.

 
+
+

Since: 1.18

+
+
+
+

qmi_client_pdc_set_selected_config_finish ()

+
QmiMessagePdcSetSelectedConfigOutput *
+qmi_client_pdc_set_selected_config_finish
+                               (QmiClientPdc *self,
+                                GAsyncResult *res,
+                                GError **error);
+

Finishes an async operation started with qmi_client_pdc_set_selected_config().

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiClientPdc.

 

res

the GAsyncResult obtained from the GAsyncReadyCallback passed to qmi_client_pdc_set_selected_config().

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

a QmiMessagePdcSetSelectedConfigOutput, or NULL if error +is set. The returned value should be freed with qmi_message_pdc_set_selected_config_output_unref().

+
+

Since: 1.18

+
+
+
+

Types and Values

+
+

QmiMessagePdcSetSelectedConfigInput

+
typedef struct _QmiMessagePdcSetSelectedConfigInput QmiMessagePdcSetSelectedConfigInput;
+

The QmiMessagePdcSetSelectedConfigInput structure contains private data and should only be accessed +using the provided API.

+

Since: 1.18

+
+
+
+

QmiMessagePdcSetSelectedConfigOutput

+
typedef struct _QmiMessagePdcSetSelectedConfigOutput QmiMessagePdcSetSelectedConfigOutput;
+

The QmiMessagePdcSetSelectedConfigOutput structure contains private data and should only be accessed +using the provided API.

+

Since: 1.18

+
+
+
+ + + \ No newline at end of file diff -Nru libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-PDS-enumerations-and-flags.html libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-PDS-enumerations-and-flags.html --- libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-PDS-enumerations-and-flags.html 2017-03-22 12:28:28.000000000 +0100 +++ libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-PDS-enumerations-and-flags.html 2019-01-08 15:19:02.000000000 +0100 @@ -3,12 +3,12 @@ PDS enumerations and flags: libqmi-glib Reference Manual - + - - + + @@ -21,7 +21,7 @@ Home Up Prev -Next +Next
@@ -123,13 +123,13 @@

Object Hierarchy

-
    GEnum
+
    GEnum
     ├── QmiPdsNetworkMode
     ├── QmiPdsOperatingMode
     ├── QmiPdsOperationMode
     ├── QmiPdsPositionSessionStatus
     ╰── QmiPdsTrackingSessionState
-    GFlags
+    GFlags
     ╰── QmiPdsDataValid
 
@@ -163,7 +163,7 @@

Returns

-

a string with the nickname, or NULL if not found. Do not free the returned value.

+

a string with the nickname, or NULL if not found. Do not free the returned value.

[transfer none]

Since: 1.0

@@ -193,7 +193,7 @@

Returns

-

a string with the nickname, or NULL if not found. Do not free the returned value.

+

a string with the nickname, or NULL if not found. Do not free the returned value.

[transfer none]

Since: 1.0

@@ -224,7 +224,7 @@

Returns

-

a string with the list of nicknames, or NULL if none given. The returned value should be freed with g_free().

+

a string with the list of nicknames, or NULL if none given. The returned value should be freed with g_free().

[transfer full]

@@ -253,7 +253,7 @@

Returns

-

a string with the nickname, or NULL if not found. Do not free the returned value.

+

a string with the nickname, or NULL if not found. Do not free the returned value.

[transfer none]

Since: 1.0

@@ -282,7 +282,7 @@

Returns

-

a string with the nickname, or NULL if not found. Do not free the returned value.

+

a string with the nickname, or NULL if not found. Do not free the returned value.

[transfer none]

Since: 1.12

@@ -311,7 +311,7 @@

Returns

-

a string with the nickname, or NULL if not found. Do not free the returned value.

+

a string with the nickname, or NULL if not found. Do not free the returned value.

[transfer none]

Since: 1.12

@@ -737,6 +737,6 @@ +
Generated by GTK-Doc V1.29 \ No newline at end of file diff -Nru libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-PDS-Event-Report.html libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-PDS-Event-Report.html --- libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-PDS-Event-Report.html 2017-03-22 12:28:29.000000000 +0100 +++ libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-PDS-Event-Report.html 1970-01-01 01:00:00.000000000 +0100 @@ -1,316 +0,0 @@ - - - - -PDS Event Report: libqmi-glib Reference Manual - - - - - - - - - - - - - - - - -
-
-
- - -
-

PDS Event Report

-

PDS Event Report

-
- -
-

Types and Values

- -
-
-

Object Hierarchy

-
    GBoxed
-    ╰── QmiIndicationPdsEventReportOutput
-
-
-
-

Description

-
-
-

Functions

-
-

qmi_indication_pds_event_report_output_ref ()

-
QmiIndicationPdsEventReportOutput *
-qmi_indication_pds_event_report_output_ref
-                               (QmiIndicationPdsEventReportOutput *self);
-

Atomically increments the reference count of self - by one.

-
-

Parameters

-
----- - - - - - -

self

a QmiIndicationPdsEventReportOutput.

 
-
-
-

Returns

-

the new reference to self -.

-
-

Since: 1.0

-
-
-
-

qmi_indication_pds_event_report_output_unref ()

-
void
-qmi_indication_pds_event_report_output_unref
-                               (QmiIndicationPdsEventReportOutput *self);
-

Atomically decrements the reference count of self - by one. -If the reference count drops to 0, self - is completely disposed.

-
-

Parameters

-
----- - - - - - -

self

a QmiIndicationPdsEventReportOutput.

 
-
-

Since: 1.0

-
-
-
-

qmi_indication_pds_event_report_output_get_position_session_status ()

-
gboolean
-qmi_indication_pds_event_report_output_get_position_session_status
-                               (QmiIndicationPdsEventReportOutput *self,
-                                QmiPdsPositionSessionStatus *value_position_session_status,
-                                GError **error);
-

Get the 'Position Session Status' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiIndicationPdsEventReportOutput.

 

value_position_session_status

a placeholder for the output QmiPdsPositionSessionStatus, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.0

-
-
-
-

qmi_indication_pds_event_report_output_get_extended_nmea_position ()

-
gboolean
-qmi_indication_pds_event_report_output_get_extended_nmea_position
-                               (QmiIndicationPdsEventReportOutput *self,
-                                QmiPdsOperationMode *value_extended_nmea_position_operation_mode,
-                                const gchar **value_extended_nmea_position_nmea,
-                                GError **error);
-

Get the 'Extended NMEA Position' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - - - - - - -

self

a QmiIndicationPdsEventReportOutput.

 

value_extended_nmea_position_operation_mode

a placeholder for the output QmiPdsOperationMode, or NULL if not required.

 

value_extended_nmea_position_nmea

a placeholder for the output constant string, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.0

-
-
-
-

qmi_indication_pds_event_report_output_get_nmea_position ()

-
gboolean
-qmi_indication_pds_event_report_output_get_nmea_position
-                               (QmiIndicationPdsEventReportOutput *self,
-                                const gchar **value_nmea_position,
-                                GError **error);
-

Get the 'NMEA Position' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiIndicationPdsEventReportOutput.

 

value_nmea_position

a placeholder for the output constant string, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.0

-
-
-
-

Types and Values

-
-

QmiIndicationPdsEventReportOutput

-
typedef struct _QmiIndicationPdsEventReportOutput QmiIndicationPdsEventReportOutput;
-

The QmiIndicationPdsEventReportOutput structure contains private data and should only be accessed -using the provided API.

-

Since: 1.0

-
-
-
- - - \ No newline at end of file diff -Nru libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-PDS-Event-Report-indication.html libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-PDS-Event-Report-indication.html --- libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-PDS-Event-Report-indication.html 1970-01-01 01:00:00.000000000 +0100 +++ libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-PDS-Event-Report-indication.html 2019-01-08 15:19:02.000000000 +0100 @@ -0,0 +1,316 @@ + + + + +PDS Event Report indication: libqmi-glib Reference Manual + + + + + + + + + + + + + + + + +
+
+
+ + +
+

PDS Event Report indication

+

PDS Event Report indication

+
+ +
+

Types and Values

+ +
+
+

Object Hierarchy

+
    GBoxed
+    ╰── QmiIndicationPdsEventReportOutput
+
+
+
+

Description

+
+
+

Functions

+
+

qmi_indication_pds_event_report_output_ref ()

+
QmiIndicationPdsEventReportOutput *
+qmi_indication_pds_event_report_output_ref
+                               (QmiIndicationPdsEventReportOutput *self);
+

Atomically increments the reference count of self + by one.

+
+

Parameters

+
+++++ + + + + + +

self

a QmiIndicationPdsEventReportOutput.

 
+
+
+

Returns

+

the new reference to self +.

+
+

Since: 1.0

+
+
+
+

qmi_indication_pds_event_report_output_unref ()

+
void
+qmi_indication_pds_event_report_output_unref
+                               (QmiIndicationPdsEventReportOutput *self);
+

Atomically decrements the reference count of self + by one. +If the reference count drops to 0, self + is completely disposed.

+
+

Parameters

+
+++++ + + + + + +

self

a QmiIndicationPdsEventReportOutput.

 
+
+

Since: 1.0

+
+
+
+

qmi_indication_pds_event_report_output_get_position_session_status ()

+
gboolean
+qmi_indication_pds_event_report_output_get_position_session_status
+                               (QmiIndicationPdsEventReportOutput *self,
+                                QmiPdsPositionSessionStatus *value_position_session_status,
+                                GError **error);
+

Get the 'Position Session Status' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiIndicationPdsEventReportOutput.

 

value_position_session_status

a placeholder for the output QmiPdsPositionSessionStatus, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.0

+
+
+
+

qmi_indication_pds_event_report_output_get_extended_nmea_position ()

+
gboolean
+qmi_indication_pds_event_report_output_get_extended_nmea_position
+                               (QmiIndicationPdsEventReportOutput *self,
+                                QmiPdsOperationMode *value_extended_nmea_position_operation_mode,
+                                const gchar **value_extended_nmea_position_nmea,
+                                GError **error);
+

Get the 'Extended NMEA Position' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + + + + + + +

self

a QmiIndicationPdsEventReportOutput.

 

value_extended_nmea_position_operation_mode

a placeholder for the output QmiPdsOperationMode, or NULL if not required.

 

value_extended_nmea_position_nmea

a placeholder for the output constant string, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.0

+
+
+
+

qmi_indication_pds_event_report_output_get_nmea_position ()

+
gboolean
+qmi_indication_pds_event_report_output_get_nmea_position
+                               (QmiIndicationPdsEventReportOutput *self,
+                                const gchar **value_nmea_position,
+                                GError **error);
+

Get the 'NMEA Position' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiIndicationPdsEventReportOutput.

 

value_nmea_position

a placeholder for the output constant string, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.0

+
+
+
+

Types and Values

+
+

QmiIndicationPdsEventReportOutput

+
typedef struct _QmiIndicationPdsEventReportOutput QmiIndicationPdsEventReportOutput;
+

The QmiIndicationPdsEventReportOutput structure contains private data and should only be accessed +using the provided API.

+

Since: 1.0

+
+
+
+ + + \ No newline at end of file diff -Nru libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-PDS-Get-AGPS-Config.html libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-PDS-Get-AGPS-Config.html --- libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-PDS-Get-AGPS-Config.html 2017-03-22 12:28:29.000000000 +0100 +++ libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-PDS-Get-AGPS-Config.html 1970-01-01 01:00:00.000000000 +0100 @@ -1,639 +0,0 @@ - - - - -PDS Get AGPS Config: libqmi-glib Reference Manual - - - - - - - - - - - - - - - - -
-
-
- - -
-

PDS Get AGPS Config

-

PDS Get AGPS Config

-
- -
-

Types and Values

- -
-
-

Object Hierarchy

-
    GBoxed
-    ├── QmiMessagePdsGetAgpsConfigInput
-    ╰── QmiMessagePdsGetAgpsConfigOutput
-
-
-
-

Description

-
-
-

Functions

-
-

qmi_message_pds_get_agps_config_input_new ()

-
QmiMessagePdsGetAgpsConfigInput *
-qmi_message_pds_get_agps_config_input_new
-                               (void);
-

Allocates a new QmiMessagePdsGetAgpsConfigInput.

-
-

Returns

-

the newly created QmiMessagePdsGetAgpsConfigInput. The returned value should be freed with qmi_message_pds_get_agps_config_input_unref().

-
-

Since: 1.12

-
-
-
-

qmi_message_pds_get_agps_config_input_ref ()

-
QmiMessagePdsGetAgpsConfigInput *
-qmi_message_pds_get_agps_config_input_ref
-                               (QmiMessagePdsGetAgpsConfigInput *self);
-

Atomically increments the reference count of self - by one.

-
-

Parameters

-
----- - - - - - -

self

a QmiMessagePdsGetAgpsConfigInput.

 
-
-
-

Returns

-

the new reference to self -.

-
-

Since: 1.12

-
-
-
-

qmi_message_pds_get_agps_config_input_unref ()

-
void
-qmi_message_pds_get_agps_config_input_unref
-                               (QmiMessagePdsGetAgpsConfigInput *self);
-

Atomically decrements the reference count of self - by one. -If the reference count drops to 0, self - is completely disposed.

-
-

Parameters

-
----- - - - - - -

self

a QmiMessagePdsGetAgpsConfigInput.

 
-
-

Since: 1.12

-
-
-
-

qmi_message_pds_get_agps_config_input_get_network_mode ()

-
gboolean
-qmi_message_pds_get_agps_config_input_get_network_mode
-                               (QmiMessagePdsGetAgpsConfigInput *self,
-                                QmiPdsNetworkMode *value_network_mode,
-                                GError **error);
-

Get the 'Network Mode' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessagePdsGetAgpsConfigInput.

 

value_network_mode

a placeholder for the output QmiPdsNetworkMode, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.12

-
-
-
-

qmi_message_pds_get_agps_config_input_set_network_mode ()

-
gboolean
-qmi_message_pds_get_agps_config_input_set_network_mode
-                               (QmiMessagePdsGetAgpsConfigInput *self,
-                                QmiPdsNetworkMode value_network_mode,
-                                GError **error);
-

Set the 'Network Mode' field in the message.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessagePdsGetAgpsConfigInput.

 

value_network_mode

a QmiPdsNetworkMode.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if value -was successfully set, FALSE otherwise.

-
-

Since: 1.12

-
-
-
-

qmi_message_pds_get_agps_config_output_ref ()

-
QmiMessagePdsGetAgpsConfigOutput *
-qmi_message_pds_get_agps_config_output_ref
-                               (QmiMessagePdsGetAgpsConfigOutput *self);
-

Atomically increments the reference count of self - by one.

-
-

Parameters

-
----- - - - - - -

self

a QmiMessagePdsGetAgpsConfigOutput.

 
-
-
-

Returns

-

the new reference to self -.

-
-

Since: 1.12

-
-
-
-

qmi_message_pds_get_agps_config_output_unref ()

-
void
-qmi_message_pds_get_agps_config_output_unref
-                               (QmiMessagePdsGetAgpsConfigOutput *self);
-

Atomically decrements the reference count of self - by one. -If the reference count drops to 0, self - is completely disposed.

-
-

Parameters

-
----- - - - - - -

self

a QmiMessagePdsGetAgpsConfigOutput.

 
-
-

Since: 1.12

-
-
-
-

qmi_message_pds_get_agps_config_output_get_result ()

-
gboolean
-qmi_message_pds_get_agps_config_output_get_result
-                               (QmiMessagePdsGetAgpsConfigOutput *self,
-                                GError **error);
-

Get the result of the QMI operation.

-
-

Parameters

-
----- - - - - - - - - - - - - -

self

a QmiMessagePdsGetAgpsConfigOutput.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the QMI operation succeeded, FALSE if error -is set.

-
-

Since: 1.12

-
-
-
-

qmi_message_pds_get_agps_config_output_get_location_server_address ()

-
gboolean
-qmi_message_pds_get_agps_config_output_get_location_server_address
-                               (QmiMessagePdsGetAgpsConfigOutput *self,
-                                guint32 *value_location_server_address_ip,
-                                guint32 *value_location_server_address_port,
-                                GError **error);
-

Get the 'Location Server Address' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - - - - - - -

self

a QmiMessagePdsGetAgpsConfigOutput.

 

value_location_server_address_ip

a placeholder for the output guint32, or NULL if not required.

 

value_location_server_address_port

a placeholder for the output guint32, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.12

-
-
-
-

qmi_message_pds_get_agps_config_output_get_location_server_url ()

-
gboolean
-qmi_message_pds_get_agps_config_output_get_location_server_url
-                               (QmiMessagePdsGetAgpsConfigOutput *self,
-                                GArray **value_location_server_url,
-                                GError **error);
-

Get the 'Location Server URL' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessagePdsGetAgpsConfigOutput.

 

value_location_server_url

a placeholder for the output GArray of guint8 elements, or NULL if not required. Do not free it, it is owned by self -.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.12

-
-
-
-

qmi_client_pds_get_agps_config ()

-
void
-qmi_client_pds_get_agps_config (QmiClientPds *self,
-                                QmiMessagePdsGetAgpsConfigInput *input,
-                                guint timeout,
-                                GCancellable *cancellable,
-                                GAsyncReadyCallback callback,
-                                gpointer user_data);
-

Asynchronously sends a Get AGPS Config request to the device.

-

When the operation is finished, callback - will be invoked in the thread-default main loop of the thread you are calling this method from.

-

You can then call qmi_client_pds_get_agps_config_finish() to get the result of the operation.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

self

a QmiClientPds.

 

input

a QmiMessagePdsGetAgpsConfigInput.

 

timeout

maximum time to wait for the method to complete, in seconds.

 

cancellable

a GCancellable or NULL.

 

callback

a GAsyncReadyCallback to call when the request is satisfied.

 

user_data

user data to pass to callback -.

 
-
-

Since: 1.12

-
-
-
-

qmi_client_pds_get_agps_config_finish ()

-
QmiMessagePdsGetAgpsConfigOutput *
-qmi_client_pds_get_agps_config_finish (QmiClientPds *self,
-                                       GAsyncResult *res,
-                                       GError **error);
-

Finishes an async operation started with qmi_client_pds_get_agps_config().

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiClientPds.

 

res

the GAsyncResult obtained from the GAsyncReadyCallback passed to qmi_client_pds_get_agps_config().

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

a QmiMessagePdsGetAgpsConfigOutput, or NULL if error -is set. The returned value should be freed with qmi_message_pds_get_agps_config_output_unref().

-
-

Since: 1.12

-
-
-
-

Types and Values

-
-

QmiMessagePdsGetAgpsConfigInput

-
typedef struct _QmiMessagePdsGetAgpsConfigInput QmiMessagePdsGetAgpsConfigInput;
-

The QmiMessagePdsGetAgpsConfigInput structure contains private data and should only be accessed -using the provided API.

-

Since: 1.12

-
-
-
-

QmiMessagePdsGetAgpsConfigOutput

-
typedef struct _QmiMessagePdsGetAgpsConfigOutput QmiMessagePdsGetAgpsConfigOutput;
-

The QmiMessagePdsGetAgpsConfigOutput structure contains private data and should only be accessed -using the provided API.

-

Since: 1.12

-
-
-
- - - \ No newline at end of file diff -Nru libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-PDS-Get-AGPS-Config-request.html libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-PDS-Get-AGPS-Config-request.html --- libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-PDS-Get-AGPS-Config-request.html 1970-01-01 01:00:00.000000000 +0100 +++ libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-PDS-Get-AGPS-Config-request.html 2019-01-08 15:19:02.000000000 +0100 @@ -0,0 +1,639 @@ + + + + +PDS Get AGPS Config request: libqmi-glib Reference Manual + + + + + + + + + + + + + + + + +
+
+
+ + +
+

PDS Get AGPS Config request

+

PDS Get AGPS Config request

+
+ +
+

Types and Values

+ +
+
+

Object Hierarchy

+
    GBoxed
+    ├── QmiMessagePdsGetAgpsConfigInput
+    ╰── QmiMessagePdsGetAgpsConfigOutput
+
+
+
+

Description

+
+
+

Functions

+
+

qmi_message_pds_get_agps_config_input_new ()

+
QmiMessagePdsGetAgpsConfigInput *
+qmi_message_pds_get_agps_config_input_new
+                               (void);
+

Allocates a new QmiMessagePdsGetAgpsConfigInput.

+
+

Returns

+

the newly created QmiMessagePdsGetAgpsConfigInput. The returned value should be freed with qmi_message_pds_get_agps_config_input_unref().

+
+

Since: 1.12

+
+
+
+

qmi_message_pds_get_agps_config_input_ref ()

+
QmiMessagePdsGetAgpsConfigInput *
+qmi_message_pds_get_agps_config_input_ref
+                               (QmiMessagePdsGetAgpsConfigInput *self);
+

Atomically increments the reference count of self + by one.

+
+

Parameters

+
+++++ + + + + + +

self

a QmiMessagePdsGetAgpsConfigInput.

 
+
+
+

Returns

+

the new reference to self +.

+
+

Since: 1.12

+
+
+
+

qmi_message_pds_get_agps_config_input_unref ()

+
void
+qmi_message_pds_get_agps_config_input_unref
+                               (QmiMessagePdsGetAgpsConfigInput *self);
+

Atomically decrements the reference count of self + by one. +If the reference count drops to 0, self + is completely disposed.

+
+

Parameters

+
+++++ + + + + + +

self

a QmiMessagePdsGetAgpsConfigInput.

 
+
+

Since: 1.12

+
+
+
+

qmi_message_pds_get_agps_config_input_get_network_mode ()

+
gboolean
+qmi_message_pds_get_agps_config_input_get_network_mode
+                               (QmiMessagePdsGetAgpsConfigInput *self,
+                                QmiPdsNetworkMode *value_network_mode,
+                                GError **error);
+

Get the 'Network Mode' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessagePdsGetAgpsConfigInput.

 

value_network_mode

a placeholder for the output QmiPdsNetworkMode, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.12

+
+
+
+

qmi_message_pds_get_agps_config_input_set_network_mode ()

+
gboolean
+qmi_message_pds_get_agps_config_input_set_network_mode
+                               (QmiMessagePdsGetAgpsConfigInput *self,
+                                QmiPdsNetworkMode value_network_mode,
+                                GError **error);
+

Set the 'Network Mode' field in the message.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessagePdsGetAgpsConfigInput.

 

value_network_mode

a QmiPdsNetworkMode.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if value +was successfully set, FALSE otherwise.

+
+

Since: 1.12

+
+
+
+

qmi_message_pds_get_agps_config_output_ref ()

+
QmiMessagePdsGetAgpsConfigOutput *
+qmi_message_pds_get_agps_config_output_ref
+                               (QmiMessagePdsGetAgpsConfigOutput *self);
+

Atomically increments the reference count of self + by one.

+
+

Parameters

+
+++++ + + + + + +

self

a QmiMessagePdsGetAgpsConfigOutput.

 
+
+
+

Returns

+

the new reference to self +.

+
+

Since: 1.12

+
+
+
+

qmi_message_pds_get_agps_config_output_unref ()

+
void
+qmi_message_pds_get_agps_config_output_unref
+                               (QmiMessagePdsGetAgpsConfigOutput *self);
+

Atomically decrements the reference count of self + by one. +If the reference count drops to 0, self + is completely disposed.

+
+

Parameters

+
+++++ + + + + + +

self

a QmiMessagePdsGetAgpsConfigOutput.

 
+
+

Since: 1.12

+
+
+
+

qmi_message_pds_get_agps_config_output_get_result ()

+
gboolean
+qmi_message_pds_get_agps_config_output_get_result
+                               (QmiMessagePdsGetAgpsConfigOutput *self,
+                                GError **error);
+

Get the result of the QMI operation.

+
+

Parameters

+
+++++ + + + + + + + + + + + + +

self

a QmiMessagePdsGetAgpsConfigOutput.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the QMI operation succeeded, FALSE if error +is set.

+
+

Since: 1.12

+
+
+
+

qmi_message_pds_get_agps_config_output_get_location_server_address ()

+
gboolean
+qmi_message_pds_get_agps_config_output_get_location_server_address
+                               (QmiMessagePdsGetAgpsConfigOutput *self,
+                                guint32 *value_location_server_address_ip,
+                                guint32 *value_location_server_address_port,
+                                GError **error);
+

Get the 'Location Server Address' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + + + + + + +

self

a QmiMessagePdsGetAgpsConfigOutput.

 

value_location_server_address_ip

a placeholder for the output guint32, or NULL if not required.

 

value_location_server_address_port

a placeholder for the output guint32, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.12

+
+
+
+

qmi_message_pds_get_agps_config_output_get_location_server_url ()

+
gboolean
+qmi_message_pds_get_agps_config_output_get_location_server_url
+                               (QmiMessagePdsGetAgpsConfigOutput *self,
+                                GArray **value_location_server_url,
+                                GError **error);
+

Get the 'Location Server URL' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessagePdsGetAgpsConfigOutput.

 

value_location_server_url

a placeholder for the output GArray of guint8 elements, or NULL if not required. Do not free it, it is owned by self +.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.12

+
+
+
+

qmi_client_pds_get_agps_config ()

+
void
+qmi_client_pds_get_agps_config (QmiClientPds *self,
+                                QmiMessagePdsGetAgpsConfigInput *input,
+                                guint timeout,
+                                GCancellable *cancellable,
+                                GAsyncReadyCallback callback,
+                                gpointer user_data);
+

Asynchronously sends a Get AGPS Config request to the device.

+

When the operation is finished, callback + will be invoked in the thread-default main loop of the thread you are calling this method from.

+

You can then call qmi_client_pds_get_agps_config_finish() to get the result of the operation.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

self

a QmiClientPds.

 

input

a QmiMessagePdsGetAgpsConfigInput.

 

timeout

maximum time to wait for the method to complete, in seconds.

 

cancellable

a GCancellable or NULL.

 

callback

a GAsyncReadyCallback to call when the request is satisfied.

 

user_data

user data to pass to callback +.

 
+
+

Since: 1.12

+
+
+
+

qmi_client_pds_get_agps_config_finish ()

+
QmiMessagePdsGetAgpsConfigOutput *
+qmi_client_pds_get_agps_config_finish (QmiClientPds *self,
+                                       GAsyncResult *res,
+                                       GError **error);
+

Finishes an async operation started with qmi_client_pds_get_agps_config().

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiClientPds.

 

res

the GAsyncResult obtained from the GAsyncReadyCallback passed to qmi_client_pds_get_agps_config().

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

a QmiMessagePdsGetAgpsConfigOutput, or NULL if error +is set. The returned value should be freed with qmi_message_pds_get_agps_config_output_unref().

+
+

Since: 1.12

+
+
+
+

Types and Values

+
+

QmiMessagePdsGetAgpsConfigInput

+
typedef struct _QmiMessagePdsGetAgpsConfigInput QmiMessagePdsGetAgpsConfigInput;
+

The QmiMessagePdsGetAgpsConfigInput structure contains private data and should only be accessed +using the provided API.

+

Since: 1.12

+
+
+
+

QmiMessagePdsGetAgpsConfigOutput

+
typedef struct _QmiMessagePdsGetAgpsConfigOutput QmiMessagePdsGetAgpsConfigOutput;
+

The QmiMessagePdsGetAgpsConfigOutput structure contains private data and should only be accessed +using the provided API.

+

Since: 1.12

+
+
+
+ + + \ No newline at end of file diff -Nru libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-PDS-Get-Auto-Tracking-State.html libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-PDS-Get-Auto-Tracking-State.html --- libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-PDS-Get-Auto-Tracking-State.html 2017-03-22 12:28:29.000000000 +0100 +++ libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-PDS-Get-Auto-Tracking-State.html 1970-01-01 01:00:00.000000000 +0100 @@ -1,372 +0,0 @@ - - - - -PDS Get Auto Tracking State: libqmi-glib Reference Manual - - - - - - - - - - - - - - - - -
-
-
- - -
-

PDS Get Auto Tracking State

-

PDS Get Auto Tracking State

-
- -
-

Types and Values

- -
-
-

Object Hierarchy

-
    GBoxed
-    ╰── QmiMessagePdsGetAutoTrackingStateOutput
-
-
-
-

Description

-
-
-

Functions

-
-

qmi_message_pds_get_auto_tracking_state_output_ref ()

-
QmiMessagePdsGetAutoTrackingStateOutput *
-qmi_message_pds_get_auto_tracking_state_output_ref
-                               (QmiMessagePdsGetAutoTrackingStateOutput *self);
-

Atomically increments the reference count of self - by one.

-
-

Parameters

-
----- - - - - - -

self

a QmiMessagePdsGetAutoTrackingStateOutput.

 
-
-
-

Returns

-

the new reference to self -.

-
-

Since: 1.0

-
-
-
-

qmi_message_pds_get_auto_tracking_state_output_unref ()

-
void
-qmi_message_pds_get_auto_tracking_state_output_unref
-                               (QmiMessagePdsGetAutoTrackingStateOutput *self);
-

Atomically decrements the reference count of self - by one. -If the reference count drops to 0, self - is completely disposed.

-
-

Parameters

-
----- - - - - - -

self

a QmiMessagePdsGetAutoTrackingStateOutput.

 
-
-

Since: 1.0

-
-
-
-

qmi_message_pds_get_auto_tracking_state_output_get_result ()

-
gboolean
-qmi_message_pds_get_auto_tracking_state_output_get_result
-                               (QmiMessagePdsGetAutoTrackingStateOutput *self,
-                                GError **error);
-

Get the result of the QMI operation.

-
-

Parameters

-
----- - - - - - - - - - - - - -

self

a QmiMessagePdsGetAutoTrackingStateOutput.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the QMI operation succeeded, FALSE if error -is set.

-
-

Since: 1.0

-
-
-
-

qmi_message_pds_get_auto_tracking_state_output_get_state ()

-
gboolean
-qmi_message_pds_get_auto_tracking_state_output_get_state
-                               (QmiMessagePdsGetAutoTrackingStateOutput *self,
-                                gboolean *value_state_auto_tracking_state,
-                                GError **error);
-

Get the 'State' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessagePdsGetAutoTrackingStateOutput.

 

value_state_auto_tracking_state

a placeholder for the output gboolean, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.0

-
-
-
-

qmi_client_pds_get_auto_tracking_state ()

-
void
-qmi_client_pds_get_auto_tracking_state
-                               (QmiClientPds *self,
-                                gpointer unused,
-                                guint timeout,
-                                GCancellable *cancellable,
-                                GAsyncReadyCallback callback,
-                                gpointer user_data);
-

Asynchronously sends a Get Auto Tracking State request to the device.

-

When the operation is finished, callback - will be invoked in the thread-default main loop of the thread you are calling this method from.

-

You can then call qmi_client_pds_get_auto_tracking_state_finish() to get the result of the operation.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

self

a QmiClientPds.

 

unused

NULL. This message doesn't have any input bundle.

 

timeout

maximum time to wait for the method to complete, in seconds.

 

cancellable

a GCancellable or NULL.

 

callback

a GAsyncReadyCallback to call when the request is satisfied.

 

user_data

user data to pass to callback -.

 
-
-

Since: 1.0

-
-
-
-

qmi_client_pds_get_auto_tracking_state_finish ()

-
QmiMessagePdsGetAutoTrackingStateOutput *
-qmi_client_pds_get_auto_tracking_state_finish
-                               (QmiClientPds *self,
-                                GAsyncResult *res,
-                                GError **error);
-

Finishes an async operation started with qmi_client_pds_get_auto_tracking_state().

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiClientPds.

 

res

the GAsyncResult obtained from the GAsyncReadyCallback passed to qmi_client_pds_get_auto_tracking_state().

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

a QmiMessagePdsGetAutoTrackingStateOutput, or NULL if error -is set. The returned value should be freed with qmi_message_pds_get_auto_tracking_state_output_unref().

-
-

Since: 1.0

-
-
-
-

Types and Values

-
-

QmiMessagePdsGetAutoTrackingStateOutput

-
typedef struct _QmiMessagePdsGetAutoTrackingStateOutput QmiMessagePdsGetAutoTrackingStateOutput;
-

The QmiMessagePdsGetAutoTrackingStateOutput structure contains private data and should only be accessed -using the provided API.

-

Since: 1.0

-
-
-
- - - \ No newline at end of file diff -Nru libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-PDS-Get-Auto-Tracking-State-request.html libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-PDS-Get-Auto-Tracking-State-request.html --- libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-PDS-Get-Auto-Tracking-State-request.html 1970-01-01 01:00:00.000000000 +0100 +++ libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-PDS-Get-Auto-Tracking-State-request.html 2019-01-08 15:19:02.000000000 +0100 @@ -0,0 +1,372 @@ + + + + +PDS Get Auto Tracking State request: libqmi-glib Reference Manual + + + + + + + + + + + + + + + + +
+
+
+ + +
+

PDS Get Auto Tracking State request

+

PDS Get Auto Tracking State request

+
+ +
+

Types and Values

+ +
+
+

Object Hierarchy

+
    GBoxed
+    ╰── QmiMessagePdsGetAutoTrackingStateOutput
+
+
+
+

Description

+
+
+

Functions

+
+

qmi_message_pds_get_auto_tracking_state_output_ref ()

+
QmiMessagePdsGetAutoTrackingStateOutput *
+qmi_message_pds_get_auto_tracking_state_output_ref
+                               (QmiMessagePdsGetAutoTrackingStateOutput *self);
+

Atomically increments the reference count of self + by one.

+
+

Parameters

+
+++++ + + + + + +

self

a QmiMessagePdsGetAutoTrackingStateOutput.

 
+
+
+

Returns

+

the new reference to self +.

+
+

Since: 1.0

+
+
+
+

qmi_message_pds_get_auto_tracking_state_output_unref ()

+
void
+qmi_message_pds_get_auto_tracking_state_output_unref
+                               (QmiMessagePdsGetAutoTrackingStateOutput *self);
+

Atomically decrements the reference count of self + by one. +If the reference count drops to 0, self + is completely disposed.

+
+

Parameters

+
+++++ + + + + + +

self

a QmiMessagePdsGetAutoTrackingStateOutput.

 
+
+

Since: 1.0

+
+
+
+

qmi_message_pds_get_auto_tracking_state_output_get_result ()

+
gboolean
+qmi_message_pds_get_auto_tracking_state_output_get_result
+                               (QmiMessagePdsGetAutoTrackingStateOutput *self,
+                                GError **error);
+

Get the result of the QMI operation.

+
+

Parameters

+
+++++ + + + + + + + + + + + + +

self

a QmiMessagePdsGetAutoTrackingStateOutput.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the QMI operation succeeded, FALSE if error +is set.

+
+

Since: 1.0

+
+
+
+

qmi_message_pds_get_auto_tracking_state_output_get_state ()

+
gboolean
+qmi_message_pds_get_auto_tracking_state_output_get_state
+                               (QmiMessagePdsGetAutoTrackingStateOutput *self,
+                                gboolean *value_state_auto_tracking_state,
+                                GError **error);
+

Get the 'State' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessagePdsGetAutoTrackingStateOutput.

 

value_state_auto_tracking_state

a placeholder for the output gboolean, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.0

+
+
+
+

qmi_client_pds_get_auto_tracking_state ()

+
void
+qmi_client_pds_get_auto_tracking_state
+                               (QmiClientPds *self,
+                                gpointer unused,
+                                guint timeout,
+                                GCancellable *cancellable,
+                                GAsyncReadyCallback callback,
+                                gpointer user_data);
+

Asynchronously sends a Get Auto Tracking State request to the device.

+

When the operation is finished, callback + will be invoked in the thread-default main loop of the thread you are calling this method from.

+

You can then call qmi_client_pds_get_auto_tracking_state_finish() to get the result of the operation.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

self

a QmiClientPds.

 

unused

NULL. This message doesn't have any input bundle.

 

timeout

maximum time to wait for the method to complete, in seconds.

 

cancellable

a GCancellable or NULL.

 

callback

a GAsyncReadyCallback to call when the request is satisfied.

 

user_data

user data to pass to callback +.

 
+
+

Since: 1.0

+
+
+
+

qmi_client_pds_get_auto_tracking_state_finish ()

+
QmiMessagePdsGetAutoTrackingStateOutput *
+qmi_client_pds_get_auto_tracking_state_finish
+                               (QmiClientPds *self,
+                                GAsyncResult *res,
+                                GError **error);
+

Finishes an async operation started with qmi_client_pds_get_auto_tracking_state().

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiClientPds.

 

res

the GAsyncResult obtained from the GAsyncReadyCallback passed to qmi_client_pds_get_auto_tracking_state().

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

a QmiMessagePdsGetAutoTrackingStateOutput, or NULL if error +is set. The returned value should be freed with qmi_message_pds_get_auto_tracking_state_output_unref().

+
+

Since: 1.0

+
+
+
+

Types and Values

+
+

QmiMessagePdsGetAutoTrackingStateOutput

+
typedef struct _QmiMessagePdsGetAutoTrackingStateOutput QmiMessagePdsGetAutoTrackingStateOutput;
+

The QmiMessagePdsGetAutoTrackingStateOutput structure contains private data and should only be accessed +using the provided API.

+

Since: 1.0

+
+
+
+ + + \ No newline at end of file diff -Nru libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-PDS-Get-Default-Tracking-Session.html libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-PDS-Get-Default-Tracking-Session.html --- libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-PDS-Get-Default-Tracking-Session.html 2017-03-22 12:28:29.000000000 +0100 +++ libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-PDS-Get-Default-Tracking-Session.html 1970-01-01 01:00:00.000000000 +0100 @@ -1,390 +0,0 @@ - - - - -PDS Get Default Tracking Session: libqmi-glib Reference Manual - - - - - - - - - - - - - - - - -
-
-
- - -
-

PDS Get Default Tracking Session

-

PDS Get Default Tracking Session

-
- -
-

Types and Values

- -
-
-

Object Hierarchy

-
    GBoxed
-    ╰── QmiMessagePdsGetDefaultTrackingSessionOutput
-
-
-
-

Description

-
-
-

Functions

-
-

qmi_message_pds_get_default_tracking_session_output_ref ()

-
QmiMessagePdsGetDefaultTrackingSessionOutput *
-qmi_message_pds_get_default_tracking_session_output_ref
-                               (QmiMessagePdsGetDefaultTrackingSessionOutput *self);
-

Atomically increments the reference count of self - by one.

-
-

Parameters

- -
-
-

Returns

-

the new reference to self -.

-
-

Since: 1.12

-
-
-
-

qmi_message_pds_get_default_tracking_session_output_unref ()

-
void
-qmi_message_pds_get_default_tracking_session_output_unref
-                               (QmiMessagePdsGetDefaultTrackingSessionOutput *self);
-

Atomically decrements the reference count of self - by one. -If the reference count drops to 0, self - is completely disposed.

-
-

Parameters

- -
-

Since: 1.12

-
-
-
-

qmi_message_pds_get_default_tracking_session_output_get_result ()

-
gboolean
-qmi_message_pds_get_default_tracking_session_output_get_result
-                               (QmiMessagePdsGetDefaultTrackingSessionOutput *self,
-                                GError **error);
-

Get the result of the QMI operation.

-
-

Parameters

-
----- - - - - - - - - - - - - -

self

a QmiMessagePdsGetDefaultTrackingSessionOutput.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the QMI operation succeeded, FALSE if error -is set.

-
-

Since: 1.12

-
-
-
-

qmi_message_pds_get_default_tracking_session_output_get_info ()

-
gboolean
-qmi_message_pds_get_default_tracking_session_output_get_info
-                               (QmiMessagePdsGetDefaultTrackingSessionOutput *self,
-                                QmiPdsOperatingMode *value_info_session_operation,
-                                guint8 *value_info_position_data_timeout,
-                                guint32 *value_info_interval,
-                                guint32 *value_info_accuracy_threshold,
-                                GError **error);
-

Get the 'Info' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

self

a QmiMessagePdsGetDefaultTrackingSessionOutput.

 

value_info_session_operation

a placeholder for the output QmiPdsOperatingMode, or NULL if not required.

 

value_info_position_data_timeout

a placeholder for the output guint8, or NULL if not required.

 

value_info_interval

a placeholder for the output guint32, or NULL if not required.

 

value_info_accuracy_threshold

a placeholder for the output guint32, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.12

-
-
-
-

qmi_client_pds_get_default_tracking_session ()

-
void
-qmi_client_pds_get_default_tracking_session
-                               (QmiClientPds *self,
-                                gpointer unused,
-                                guint timeout,
-                                GCancellable *cancellable,
-                                GAsyncReadyCallback callback,
-                                gpointer user_data);
-

Asynchronously sends a Get Default Tracking Session request to the device.

-

When the operation is finished, callback - will be invoked in the thread-default main loop of the thread you are calling this method from.

-

You can then call qmi_client_pds_get_default_tracking_session_finish() to get the result of the operation.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

self

a QmiClientPds.

 

unused

NULL. This message doesn't have any input bundle.

 

timeout

maximum time to wait for the method to complete, in seconds.

 

cancellable

a GCancellable or NULL.

 

callback

a GAsyncReadyCallback to call when the request is satisfied.

 

user_data

user data to pass to callback -.

 
-
-

Since: 1.12

-
-
-
-

qmi_client_pds_get_default_tracking_session_finish ()

-
QmiMessagePdsGetDefaultTrackingSessionOutput *
-qmi_client_pds_get_default_tracking_session_finish
-                               (QmiClientPds *self,
-                                GAsyncResult *res,
-                                GError **error);
-

Finishes an async operation started with qmi_client_pds_get_default_tracking_session().

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiClientPds.

 

res

the GAsyncResult obtained from the GAsyncReadyCallback passed to qmi_client_pds_get_default_tracking_session().

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

a QmiMessagePdsGetDefaultTrackingSessionOutput, or NULL if error -is set. The returned value should be freed with qmi_message_pds_get_default_tracking_session_output_unref().

-
-

Since: 1.12

-
-
-
-

Types and Values

-
-

QmiMessagePdsGetDefaultTrackingSessionOutput

-
typedef struct _QmiMessagePdsGetDefaultTrackingSessionOutput QmiMessagePdsGetDefaultTrackingSessionOutput;
-

The QmiMessagePdsGetDefaultTrackingSessionOutput structure contains private data and should only be accessed -using the provided API.

-

Since: 1.12

-
-
-
- - - \ No newline at end of file diff -Nru libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-PDS-Get-Default-Tracking-Session-request.html libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-PDS-Get-Default-Tracking-Session-request.html --- libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-PDS-Get-Default-Tracking-Session-request.html 1970-01-01 01:00:00.000000000 +0100 +++ libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-PDS-Get-Default-Tracking-Session-request.html 2019-01-08 15:19:02.000000000 +0100 @@ -0,0 +1,390 @@ + + + + +PDS Get Default Tracking Session request: libqmi-glib Reference Manual + + + + + + + + + + + + + + + + +
+
+
+ + +
+

PDS Get Default Tracking Session request

+

PDS Get Default Tracking Session request

+
+ +
+

Types and Values

+ +
+
+

Object Hierarchy

+
    GBoxed
+    ╰── QmiMessagePdsGetDefaultTrackingSessionOutput
+
+
+
+

Description

+
+
+

Functions

+
+

qmi_message_pds_get_default_tracking_session_output_ref ()

+
QmiMessagePdsGetDefaultTrackingSessionOutput *
+qmi_message_pds_get_default_tracking_session_output_ref
+                               (QmiMessagePdsGetDefaultTrackingSessionOutput *self);
+

Atomically increments the reference count of self + by one.

+
+

Parameters

+ +
+
+

Returns

+

the new reference to self +.

+
+

Since: 1.12

+
+
+
+

qmi_message_pds_get_default_tracking_session_output_unref ()

+
void
+qmi_message_pds_get_default_tracking_session_output_unref
+                               (QmiMessagePdsGetDefaultTrackingSessionOutput *self);
+

Atomically decrements the reference count of self + by one. +If the reference count drops to 0, self + is completely disposed.

+
+

Parameters

+ +
+

Since: 1.12

+
+
+
+

qmi_message_pds_get_default_tracking_session_output_get_result ()

+
gboolean
+qmi_message_pds_get_default_tracking_session_output_get_result
+                               (QmiMessagePdsGetDefaultTrackingSessionOutput *self,
+                                GError **error);
+

Get the result of the QMI operation.

+
+

Parameters

+
+++++ + + + + + + + + + + + + +

self

a QmiMessagePdsGetDefaultTrackingSessionOutput.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the QMI operation succeeded, FALSE if error +is set.

+
+

Since: 1.12

+
+
+
+

qmi_message_pds_get_default_tracking_session_output_get_info ()

+
gboolean
+qmi_message_pds_get_default_tracking_session_output_get_info
+                               (QmiMessagePdsGetDefaultTrackingSessionOutput *self,
+                                QmiPdsOperatingMode *value_info_session_operation,
+                                guint8 *value_info_position_data_timeout,
+                                guint32 *value_info_interval,
+                                guint32 *value_info_accuracy_threshold,
+                                GError **error);
+

Get the 'Info' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

self

a QmiMessagePdsGetDefaultTrackingSessionOutput.

 

value_info_session_operation

a placeholder for the output QmiPdsOperatingMode, or NULL if not required.

 

value_info_position_data_timeout

a placeholder for the output guint8, or NULL if not required.

 

value_info_interval

a placeholder for the output guint32, or NULL if not required.

 

value_info_accuracy_threshold

a placeholder for the output guint32, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.12

+
+
+
+

qmi_client_pds_get_default_tracking_session ()

+
void
+qmi_client_pds_get_default_tracking_session
+                               (QmiClientPds *self,
+                                gpointer unused,
+                                guint timeout,
+                                GCancellable *cancellable,
+                                GAsyncReadyCallback callback,
+                                gpointer user_data);
+

Asynchronously sends a Get Default Tracking Session request to the device.

+

When the operation is finished, callback + will be invoked in the thread-default main loop of the thread you are calling this method from.

+

You can then call qmi_client_pds_get_default_tracking_session_finish() to get the result of the operation.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

self

a QmiClientPds.

 

unused

NULL. This message doesn't have any input bundle.

 

timeout

maximum time to wait for the method to complete, in seconds.

 

cancellable

a GCancellable or NULL.

 

callback

a GAsyncReadyCallback to call when the request is satisfied.

 

user_data

user data to pass to callback +.

 
+
+

Since: 1.12

+
+
+
+

qmi_client_pds_get_default_tracking_session_finish ()

+
QmiMessagePdsGetDefaultTrackingSessionOutput *
+qmi_client_pds_get_default_tracking_session_finish
+                               (QmiClientPds *self,
+                                GAsyncResult *res,
+                                GError **error);
+

Finishes an async operation started with qmi_client_pds_get_default_tracking_session().

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiClientPds.

 

res

the GAsyncResult obtained from the GAsyncReadyCallback passed to qmi_client_pds_get_default_tracking_session().

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

a QmiMessagePdsGetDefaultTrackingSessionOutput, or NULL if error +is set. The returned value should be freed with qmi_message_pds_get_default_tracking_session_output_unref().

+
+

Since: 1.12

+
+
+
+

Types and Values

+
+

QmiMessagePdsGetDefaultTrackingSessionOutput

+
typedef struct _QmiMessagePdsGetDefaultTrackingSessionOutput QmiMessagePdsGetDefaultTrackingSessionOutput;
+

The QmiMessagePdsGetDefaultTrackingSessionOutput structure contains private data and should only be accessed +using the provided API.

+

Since: 1.12

+
+
+
+ + + \ No newline at end of file diff -Nru libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-PDS-Get-GPS-Service-State.html libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-PDS-Get-GPS-Service-State.html --- libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-PDS-Get-GPS-Service-State.html 2017-03-22 12:28:29.000000000 +0100 +++ libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-PDS-Get-GPS-Service-State.html 1970-01-01 01:00:00.000000000 +0100 @@ -1,377 +0,0 @@ - - - - -PDS Get GPS Service State: libqmi-glib Reference Manual - - - - - - - - - - - - - - - - -
-
-
- - -
-

PDS Get GPS Service State

-

PDS Get GPS Service State

-
- -
-

Types and Values

- -
-
-

Object Hierarchy

-
    GBoxed
-    ╰── QmiMessagePdsGetGpsServiceStateOutput
-
-
-
-

Description

-
-
-

Functions

-
-

qmi_message_pds_get_gps_service_state_output_ref ()

-
QmiMessagePdsGetGpsServiceStateOutput *
-qmi_message_pds_get_gps_service_state_output_ref
-                               (QmiMessagePdsGetGpsServiceStateOutput *self);
-

Atomically increments the reference count of self - by one.

-
-

Parameters

-
----- - - - - - -

self

a QmiMessagePdsGetGpsServiceStateOutput.

 
-
-
-

Returns

-

the new reference to self -.

-
-

Since: 1.0

-
-
-
-

qmi_message_pds_get_gps_service_state_output_unref ()

-
void
-qmi_message_pds_get_gps_service_state_output_unref
-                               (QmiMessagePdsGetGpsServiceStateOutput *self);
-

Atomically decrements the reference count of self - by one. -If the reference count drops to 0, self - is completely disposed.

-
-

Parameters

-
----- - - - - - -

self

a QmiMessagePdsGetGpsServiceStateOutput.

 
-
-

Since: 1.0

-
-
-
-

qmi_message_pds_get_gps_service_state_output_get_result ()

-
gboolean
-qmi_message_pds_get_gps_service_state_output_get_result
-                               (QmiMessagePdsGetGpsServiceStateOutput *self,
-                                GError **error);
-

Get the result of the QMI operation.

-
-

Parameters

-
----- - - - - - - - - - - - - -

self

a QmiMessagePdsGetGpsServiceStateOutput.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the QMI operation succeeded, FALSE if error -is set.

-
-

Since: 1.0

-
-
-
-

qmi_message_pds_get_gps_service_state_output_get_state ()

-
gboolean
-qmi_message_pds_get_gps_service_state_output_get_state
-                               (QmiMessagePdsGetGpsServiceStateOutput *self,
-                                gboolean *value_state_gps_service_state,
-                                QmiPdsTrackingSessionState *value_state_tracking_session_state,
-                                GError **error);
-

Get the 'State' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - - - - - - -

self

a QmiMessagePdsGetGpsServiceStateOutput.

 

value_state_gps_service_state

a placeholder for the output gboolean, or NULL if not required.

 

value_state_tracking_session_state

a placeholder for the output QmiPdsTrackingSessionState, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.0

-
-
-
-

qmi_client_pds_get_gps_service_state ()

-
void
-qmi_client_pds_get_gps_service_state (QmiClientPds *self,
-                                      gpointer unused,
-                                      guint timeout,
-                                      GCancellable *cancellable,
-                                      GAsyncReadyCallback callback,
-                                      gpointer user_data);
-

Asynchronously sends a Get GPS Service State request to the device.

-

When the operation is finished, callback - will be invoked in the thread-default main loop of the thread you are calling this method from.

-

You can then call qmi_client_pds_get_gps_service_state_finish() to get the result of the operation.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

self

a QmiClientPds.

 

unused

NULL. This message doesn't have any input bundle.

 

timeout

maximum time to wait for the method to complete, in seconds.

 

cancellable

a GCancellable or NULL.

 

callback

a GAsyncReadyCallback to call when the request is satisfied.

 

user_data

user data to pass to callback -.

 
-
-

Since: 1.0

-
-
-
-

qmi_client_pds_get_gps_service_state_finish ()

-
QmiMessagePdsGetGpsServiceStateOutput *
-qmi_client_pds_get_gps_service_state_finish
-                               (QmiClientPds *self,
-                                GAsyncResult *res,
-                                GError **error);
-

Finishes an async operation started with qmi_client_pds_get_gps_service_state().

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiClientPds.

 

res

the GAsyncResult obtained from the GAsyncReadyCallback passed to qmi_client_pds_get_gps_service_state().

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

a QmiMessagePdsGetGpsServiceStateOutput, or NULL if error -is set. The returned value should be freed with qmi_message_pds_get_gps_service_state_output_unref().

-
-

Since: 1.0

-
-
-
-

Types and Values

-
-

QmiMessagePdsGetGpsServiceStateOutput

-
typedef struct _QmiMessagePdsGetGpsServiceStateOutput QmiMessagePdsGetGpsServiceStateOutput;
-

The QmiMessagePdsGetGpsServiceStateOutput structure contains private data and should only be accessed -using the provided API.

-

Since: 1.0

-
-
-
- - - \ No newline at end of file diff -Nru libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-PDS-Get-GPS-Service-State-request.html libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-PDS-Get-GPS-Service-State-request.html --- libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-PDS-Get-GPS-Service-State-request.html 1970-01-01 01:00:00.000000000 +0100 +++ libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-PDS-Get-GPS-Service-State-request.html 2019-01-08 15:19:02.000000000 +0100 @@ -0,0 +1,377 @@ + + + + +PDS Get GPS Service State request: libqmi-glib Reference Manual + + + + + + + + + + + + + + + + +
+
+
+ + +
+

PDS Get GPS Service State request

+

PDS Get GPS Service State request

+
+ +
+

Types and Values

+ +
+
+

Object Hierarchy

+
    GBoxed
+    ╰── QmiMessagePdsGetGpsServiceStateOutput
+
+
+
+

Description

+
+
+

Functions

+
+

qmi_message_pds_get_gps_service_state_output_ref ()

+
QmiMessagePdsGetGpsServiceStateOutput *
+qmi_message_pds_get_gps_service_state_output_ref
+                               (QmiMessagePdsGetGpsServiceStateOutput *self);
+

Atomically increments the reference count of self + by one.

+
+

Parameters

+
+++++ + + + + + +

self

a QmiMessagePdsGetGpsServiceStateOutput.

 
+
+
+

Returns

+

the new reference to self +.

+
+

Since: 1.0

+
+
+
+

qmi_message_pds_get_gps_service_state_output_unref ()

+
void
+qmi_message_pds_get_gps_service_state_output_unref
+                               (QmiMessagePdsGetGpsServiceStateOutput *self);
+

Atomically decrements the reference count of self + by one. +If the reference count drops to 0, self + is completely disposed.

+
+

Parameters

+
+++++ + + + + + +

self

a QmiMessagePdsGetGpsServiceStateOutput.

 
+
+

Since: 1.0

+
+
+
+

qmi_message_pds_get_gps_service_state_output_get_result ()

+
gboolean
+qmi_message_pds_get_gps_service_state_output_get_result
+                               (QmiMessagePdsGetGpsServiceStateOutput *self,
+                                GError **error);
+

Get the result of the QMI operation.

+
+

Parameters

+
+++++ + + + + + + + + + + + + +

self

a QmiMessagePdsGetGpsServiceStateOutput.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the QMI operation succeeded, FALSE if error +is set.

+
+

Since: 1.0

+
+
+
+

qmi_message_pds_get_gps_service_state_output_get_state ()

+
gboolean
+qmi_message_pds_get_gps_service_state_output_get_state
+                               (QmiMessagePdsGetGpsServiceStateOutput *self,
+                                gboolean *value_state_gps_service_state,
+                                QmiPdsTrackingSessionState *value_state_tracking_session_state,
+                                GError **error);
+

Get the 'State' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + + + + + + +

self

a QmiMessagePdsGetGpsServiceStateOutput.

 

value_state_gps_service_state

a placeholder for the output gboolean, or NULL if not required.

 

value_state_tracking_session_state

a placeholder for the output QmiPdsTrackingSessionState, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.0

+
+
+
+

qmi_client_pds_get_gps_service_state ()

+
void
+qmi_client_pds_get_gps_service_state (QmiClientPds *self,
+                                      gpointer unused,
+                                      guint timeout,
+                                      GCancellable *cancellable,
+                                      GAsyncReadyCallback callback,
+                                      gpointer user_data);
+

Asynchronously sends a Get GPS Service State request to the device.

+

When the operation is finished, callback + will be invoked in the thread-default main loop of the thread you are calling this method from.

+

You can then call qmi_client_pds_get_gps_service_state_finish() to get the result of the operation.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

self

a QmiClientPds.

 

unused

NULL. This message doesn't have any input bundle.

 

timeout

maximum time to wait for the method to complete, in seconds.

 

cancellable

a GCancellable or NULL.

 

callback

a GAsyncReadyCallback to call when the request is satisfied.

 

user_data

user data to pass to callback +.

 
+
+

Since: 1.0

+
+
+
+

qmi_client_pds_get_gps_service_state_finish ()

+
QmiMessagePdsGetGpsServiceStateOutput *
+qmi_client_pds_get_gps_service_state_finish
+                               (QmiClientPds *self,
+                                GAsyncResult *res,
+                                GError **error);
+

Finishes an async operation started with qmi_client_pds_get_gps_service_state().

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiClientPds.

 

res

the GAsyncResult obtained from the GAsyncReadyCallback passed to qmi_client_pds_get_gps_service_state().

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

a QmiMessagePdsGetGpsServiceStateOutput, or NULL if error +is set. The returned value should be freed with qmi_message_pds_get_gps_service_state_output_unref().

+
+

Since: 1.0

+
+
+
+

Types and Values

+
+

QmiMessagePdsGetGpsServiceStateOutput

+
typedef struct _QmiMessagePdsGetGpsServiceStateOutput QmiMessagePdsGetGpsServiceStateOutput;
+

The QmiMessagePdsGetGpsServiceStateOutput structure contains private data and should only be accessed +using the provided API.

+

Since: 1.0

+
+
+
+ + + \ No newline at end of file diff -Nru libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-PDS-Reset.html libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-PDS-Reset.html --- libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-PDS-Reset.html 2017-03-22 12:28:28.000000000 +0100 +++ libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-PDS-Reset.html 1970-01-01 01:00:00.000000000 +0100 @@ -1,317 +0,0 @@ - - - - -PDS Reset: libqmi-glib Reference Manual - - - - - - - - - - - - - - - - -
-
-
- - -
-

PDS Reset

-

PDS Reset

-
-
-

Functions

- -
-
-

Types and Values

-
---- - - - - -
 QmiMessagePdsResetOutput
-
-
-

Object Hierarchy

-
    GBoxed
-    ╰── QmiMessagePdsResetOutput
-
-
-
-

Description

-
-
-

Functions

-
-

qmi_message_pds_reset_output_ref ()

-
QmiMessagePdsResetOutput *
-qmi_message_pds_reset_output_ref (QmiMessagePdsResetOutput *self);
-

Atomically increments the reference count of self - by one.

-
-

Parameters

-
----- - - - - - -

self

a QmiMessagePdsResetOutput.

 
-
-
-

Returns

-

the new reference to self -.

-
-

Since: 1.0

-
-
-
-

qmi_message_pds_reset_output_unref ()

-
void
-qmi_message_pds_reset_output_unref (QmiMessagePdsResetOutput *self);
-

Atomically decrements the reference count of self - by one. -If the reference count drops to 0, self - is completely disposed.

-
-

Parameters

-
----- - - - - - -

self

a QmiMessagePdsResetOutput.

 
-
-

Since: 1.0

-
-
-
-

qmi_message_pds_reset_output_get_result ()

-
gboolean
-qmi_message_pds_reset_output_get_result
-                               (QmiMessagePdsResetOutput *self,
-                                GError **error);
-

Get the result of the QMI operation.

-
-

Parameters

-
----- - - - - - - - - - - - - -

self

a QmiMessagePdsResetOutput.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the QMI operation succeeded, FALSE if error -is set.

-
-

Since: 1.0

-
-
-
-

qmi_client_pds_reset ()

-
void
-qmi_client_pds_reset (QmiClientPds *self,
-                      gpointer unused,
-                      guint timeout,
-                      GCancellable *cancellable,
-                      GAsyncReadyCallback callback,
-                      gpointer user_data);
-

Asynchronously sends a Reset request to the device.

-

When the operation is finished, callback - will be invoked in the thread-default main loop of the thread you are calling this method from.

-

You can then call qmi_client_pds_reset_finish() to get the result of the operation.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

self

a QmiClientPds.

 

unused

NULL. This message doesn't have any input bundle.

 

timeout

maximum time to wait for the method to complete, in seconds.

 

cancellable

a GCancellable or NULL.

 

callback

a GAsyncReadyCallback to call when the request is satisfied.

 

user_data

user data to pass to callback -.

 
-
-

Since: 1.0

-
-
-
-

qmi_client_pds_reset_finish ()

-
QmiMessagePdsResetOutput *
-qmi_client_pds_reset_finish (QmiClientPds *self,
-                             GAsyncResult *res,
-                             GError **error);
-

Finishes an async operation started with qmi_client_pds_reset().

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiClientPds.

 

res

the GAsyncResult obtained from the GAsyncReadyCallback passed to qmi_client_pds_reset().

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

a QmiMessagePdsResetOutput, or NULL if error -is set. The returned value should be freed with qmi_message_pds_reset_output_unref().

-
-

Since: 1.0

-
-
-
-

Types and Values

-
-

QmiMessagePdsResetOutput

-
typedef struct _QmiMessagePdsResetOutput QmiMessagePdsResetOutput;
-

The QmiMessagePdsResetOutput structure contains private data and should only be accessed -using the provided API.

-

Since: 1.0

-
-
-
- - - \ No newline at end of file diff -Nru libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-PDS-Reset-request.html libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-PDS-Reset-request.html --- libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-PDS-Reset-request.html 1970-01-01 01:00:00.000000000 +0100 +++ libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-PDS-Reset-request.html 2019-01-08 15:19:02.000000000 +0100 @@ -0,0 +1,317 @@ + + + + +PDS Reset request: libqmi-glib Reference Manual + + + + + + + + + + + + + + + + +
+
+
+ + +
+

PDS Reset request

+

PDS Reset request

+
+
+

Functions

+ +
+
+

Types and Values

+
++++ + + + + +
 QmiMessagePdsResetOutput
+
+
+

Object Hierarchy

+
    GBoxed
+    ╰── QmiMessagePdsResetOutput
+
+
+
+

Description

+
+
+

Functions

+
+

qmi_message_pds_reset_output_ref ()

+
QmiMessagePdsResetOutput *
+qmi_message_pds_reset_output_ref (QmiMessagePdsResetOutput *self);
+

Atomically increments the reference count of self + by one.

+
+

Parameters

+
+++++ + + + + + +

self

a QmiMessagePdsResetOutput.

 
+
+
+

Returns

+

the new reference to self +.

+
+

Since: 1.0

+
+
+
+

qmi_message_pds_reset_output_unref ()

+
void
+qmi_message_pds_reset_output_unref (QmiMessagePdsResetOutput *self);
+

Atomically decrements the reference count of self + by one. +If the reference count drops to 0, self + is completely disposed.

+
+

Parameters

+
+++++ + + + + + +

self

a QmiMessagePdsResetOutput.

 
+
+

Since: 1.0

+
+
+
+

qmi_message_pds_reset_output_get_result ()

+
gboolean
+qmi_message_pds_reset_output_get_result
+                               (QmiMessagePdsResetOutput *self,
+                                GError **error);
+

Get the result of the QMI operation.

+
+

Parameters

+
+++++ + + + + + + + + + + + + +

self

a QmiMessagePdsResetOutput.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the QMI operation succeeded, FALSE if error +is set.

+
+

Since: 1.0

+
+
+
+

qmi_client_pds_reset ()

+
void
+qmi_client_pds_reset (QmiClientPds *self,
+                      gpointer unused,
+                      guint timeout,
+                      GCancellable *cancellable,
+                      GAsyncReadyCallback callback,
+                      gpointer user_data);
+

Asynchronously sends a Reset request to the device.

+

When the operation is finished, callback + will be invoked in the thread-default main loop of the thread you are calling this method from.

+

You can then call qmi_client_pds_reset_finish() to get the result of the operation.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

self

a QmiClientPds.

 

unused

NULL. This message doesn't have any input bundle.

 

timeout

maximum time to wait for the method to complete, in seconds.

 

cancellable

a GCancellable or NULL.

 

callback

a GAsyncReadyCallback to call when the request is satisfied.

 

user_data

user data to pass to callback +.

 
+
+

Since: 1.0

+
+
+
+

qmi_client_pds_reset_finish ()

+
QmiMessagePdsResetOutput *
+qmi_client_pds_reset_finish (QmiClientPds *self,
+                             GAsyncResult *res,
+                             GError **error);
+

Finishes an async operation started with qmi_client_pds_reset().

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiClientPds.

 

res

the GAsyncResult obtained from the GAsyncReadyCallback passed to qmi_client_pds_reset().

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

a QmiMessagePdsResetOutput, or NULL if error +is set. The returned value should be freed with qmi_message_pds_reset_output_unref().

+
+

Since: 1.0

+
+
+
+

Types and Values

+
+

QmiMessagePdsResetOutput

+
typedef struct _QmiMessagePdsResetOutput QmiMessagePdsResetOutput;
+

The QmiMessagePdsResetOutput structure contains private data and should only be accessed +using the provided API.

+

Since: 1.0

+
+
+
+ + + \ No newline at end of file diff -Nru libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-PDS-Set-AGPS-Config.html libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-PDS-Set-AGPS-Config.html --- libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-PDS-Set-AGPS-Config.html 2017-03-22 12:28:29.000000000 +0100 +++ libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-PDS-Set-AGPS-Config.html 1970-01-01 01:00:00.000000000 +0100 @@ -1,748 +0,0 @@ - - - - -PDS Set AGPS Config: libqmi-glib Reference Manual - - - - - - - - - - - - - - - - -
-
-
- - -
-

PDS Set AGPS Config

-

PDS Set AGPS Config

-
- -
-

Types and Values

- -
-
-

Object Hierarchy

-
    GBoxed
-    ├── QmiMessagePdsSetAgpsConfigInput
-    ╰── QmiMessagePdsSetAgpsConfigOutput
-
-
-
-

Description

-
-
-

Functions

-
-

qmi_message_pds_set_agps_config_input_new ()

-
QmiMessagePdsSetAgpsConfigInput *
-qmi_message_pds_set_agps_config_input_new
-                               (void);
-

Allocates a new QmiMessagePdsSetAgpsConfigInput.

-
-

Returns

-

the newly created QmiMessagePdsSetAgpsConfigInput. The returned value should be freed with qmi_message_pds_set_agps_config_input_unref().

-
-

Since: 1.12

-
-
-
-

qmi_message_pds_set_agps_config_input_ref ()

-
QmiMessagePdsSetAgpsConfigInput *
-qmi_message_pds_set_agps_config_input_ref
-                               (QmiMessagePdsSetAgpsConfigInput *self);
-

Atomically increments the reference count of self - by one.

-
-

Parameters

-
----- - - - - - -

self

a QmiMessagePdsSetAgpsConfigInput.

 
-
-
-

Returns

-

the new reference to self -.

-
-

Since: 1.12

-
-
-
-

qmi_message_pds_set_agps_config_input_unref ()

-
void
-qmi_message_pds_set_agps_config_input_unref
-                               (QmiMessagePdsSetAgpsConfigInput *self);
-

Atomically decrements the reference count of self - by one. -If the reference count drops to 0, self - is completely disposed.

-
-

Parameters

-
----- - - - - - -

self

a QmiMessagePdsSetAgpsConfigInput.

 
-
-

Since: 1.12

-
-
-
-

qmi_message_pds_set_agps_config_input_get_network_mode ()

-
gboolean
-qmi_message_pds_set_agps_config_input_get_network_mode
-                               (QmiMessagePdsSetAgpsConfigInput *self,
-                                QmiPdsNetworkMode *value_network_mode,
-                                GError **error);
-

Get the 'Network Mode' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessagePdsSetAgpsConfigInput.

 

value_network_mode

a placeholder for the output QmiPdsNetworkMode, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.12

-
-
-
-

qmi_message_pds_set_agps_config_input_set_network_mode ()

-
gboolean
-qmi_message_pds_set_agps_config_input_set_network_mode
-                               (QmiMessagePdsSetAgpsConfigInput *self,
-                                QmiPdsNetworkMode value_network_mode,
-                                GError **error);
-

Set the 'Network Mode' field in the message.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessagePdsSetAgpsConfigInput.

 

value_network_mode

a QmiPdsNetworkMode.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if value -was successfully set, FALSE otherwise.

-
-

Since: 1.12

-
-
-
-

qmi_message_pds_set_agps_config_input_get_location_server_url ()

-
gboolean
-qmi_message_pds_set_agps_config_input_get_location_server_url
-                               (QmiMessagePdsSetAgpsConfigInput *self,
-                                GArray **value_location_server_url,
-                                GError **error);
-

Get the 'Location Server URL' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessagePdsSetAgpsConfigInput.

 

value_location_server_url

a placeholder for the output GArray of guint8 elements, or NULL if not required. Do not free it, it is owned by self -.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.12

-
-
-
-

qmi_message_pds_set_agps_config_input_set_location_server_url ()

-
gboolean
-qmi_message_pds_set_agps_config_input_set_location_server_url
-                               (QmiMessagePdsSetAgpsConfigInput *self,
-                                GArray *value_location_server_url,
-                                GError **error);
-

Set the 'Location Server URL' field in the message.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessagePdsSetAgpsConfigInput.

 

value_location_server_url

a GArray of guint8 elements. A new reference to value_location_server_url -will be taken.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if value -was successfully set, FALSE otherwise.

-
-

Since: 1.12

-
-
-
-

qmi_message_pds_set_agps_config_input_get_location_server_address ()

-
gboolean
-qmi_message_pds_set_agps_config_input_get_location_server_address
-                               (QmiMessagePdsSetAgpsConfigInput *self,
-                                guint32 *value_location_server_address_ip,
-                                guint32 *value_location_server_address_port,
-                                GError **error);
-

Get the 'Location Server Address' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - - - - - - -

self

a QmiMessagePdsSetAgpsConfigInput.

 

value_location_server_address_ip

a placeholder for the output guint32, or NULL if not required.

 

value_location_server_address_port

a placeholder for the output guint32, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.12

-
-
-
-

qmi_message_pds_set_agps_config_input_set_location_server_address ()

-
gboolean
-qmi_message_pds_set_agps_config_input_set_location_server_address
-                               (QmiMessagePdsSetAgpsConfigInput *self,
-                                guint32 value_location_server_address_ip,
-                                guint32 value_location_server_address_port,
-                                GError **error);
-

Set the 'Location Server Address' field in the message.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - - - - - - -

self

a QmiMessagePdsSetAgpsConfigInput.

 

value_location_server_address_ip

a guint32.

 

value_location_server_address_port

a guint32.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if value -was successfully set, FALSE otherwise.

-
-

Since: 1.12

-
-
-
-

qmi_message_pds_set_agps_config_output_ref ()

-
QmiMessagePdsSetAgpsConfigOutput *
-qmi_message_pds_set_agps_config_output_ref
-                               (QmiMessagePdsSetAgpsConfigOutput *self);
-

Atomically increments the reference count of self - by one.

-
-

Parameters

-
----- - - - - - -

self

a QmiMessagePdsSetAgpsConfigOutput.

 
-
-
-

Returns

-

the new reference to self -.

-
-

Since: 1.12

-
-
-
-

qmi_message_pds_set_agps_config_output_unref ()

-
void
-qmi_message_pds_set_agps_config_output_unref
-                               (QmiMessagePdsSetAgpsConfigOutput *self);
-

Atomically decrements the reference count of self - by one. -If the reference count drops to 0, self - is completely disposed.

-
-

Parameters

-
----- - - - - - -

self

a QmiMessagePdsSetAgpsConfigOutput.

 
-
-

Since: 1.12

-
-
-
-

qmi_message_pds_set_agps_config_output_get_result ()

-
gboolean
-qmi_message_pds_set_agps_config_output_get_result
-                               (QmiMessagePdsSetAgpsConfigOutput *self,
-                                GError **error);
-

Get the result of the QMI operation.

-
-

Parameters

-
----- - - - - - - - - - - - - -

self

a QmiMessagePdsSetAgpsConfigOutput.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the QMI operation succeeded, FALSE if error -is set.

-
-

Since: 1.12

-
-
-
-

qmi_client_pds_set_agps_config ()

-
void
-qmi_client_pds_set_agps_config (QmiClientPds *self,
-                                QmiMessagePdsSetAgpsConfigInput *input,
-                                guint timeout,
-                                GCancellable *cancellable,
-                                GAsyncReadyCallback callback,
-                                gpointer user_data);
-

Asynchronously sends a Set AGPS Config request to the device.

-

When the operation is finished, callback - will be invoked in the thread-default main loop of the thread you are calling this method from.

-

You can then call qmi_client_pds_set_agps_config_finish() to get the result of the operation.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

self

a QmiClientPds.

 

input

a QmiMessagePdsSetAgpsConfigInput.

 

timeout

maximum time to wait for the method to complete, in seconds.

 

cancellable

a GCancellable or NULL.

 

callback

a GAsyncReadyCallback to call when the request is satisfied.

 

user_data

user data to pass to callback -.

 
-
-

Since: 1.12

-
-
-
-

qmi_client_pds_set_agps_config_finish ()

-
QmiMessagePdsSetAgpsConfigOutput *
-qmi_client_pds_set_agps_config_finish (QmiClientPds *self,
-                                       GAsyncResult *res,
-                                       GError **error);
-

Finishes an async operation started with qmi_client_pds_set_agps_config().

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiClientPds.

 

res

the GAsyncResult obtained from the GAsyncReadyCallback passed to qmi_client_pds_set_agps_config().

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

a QmiMessagePdsSetAgpsConfigOutput, or NULL if error -is set. The returned value should be freed with qmi_message_pds_set_agps_config_output_unref().

-
-

Since: 1.12

-
-
-
-

Types and Values

-
-

QmiMessagePdsSetAgpsConfigInput

-
typedef struct _QmiMessagePdsSetAgpsConfigInput QmiMessagePdsSetAgpsConfigInput;
-

The QmiMessagePdsSetAgpsConfigInput structure contains private data and should only be accessed -using the provided API.

-

Since: 1.12

-
-
-
-

QmiMessagePdsSetAgpsConfigOutput

-
typedef struct _QmiMessagePdsSetAgpsConfigOutput QmiMessagePdsSetAgpsConfigOutput;
-

The QmiMessagePdsSetAgpsConfigOutput structure contains private data and should only be accessed -using the provided API.

-

Since: 1.12

-
-
-
- - - \ No newline at end of file diff -Nru libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-PDS-Set-AGPS-Config-request.html libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-PDS-Set-AGPS-Config-request.html --- libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-PDS-Set-AGPS-Config-request.html 1970-01-01 01:00:00.000000000 +0100 +++ libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-PDS-Set-AGPS-Config-request.html 2019-01-08 15:19:02.000000000 +0100 @@ -0,0 +1,748 @@ + + + + +PDS Set AGPS Config request: libqmi-glib Reference Manual + + + + + + + + + + + + + + + + +
+
+
+ + +
+

PDS Set AGPS Config request

+

PDS Set AGPS Config request

+
+ +
+

Types and Values

+ +
+
+

Object Hierarchy

+
    GBoxed
+    ├── QmiMessagePdsSetAgpsConfigInput
+    ╰── QmiMessagePdsSetAgpsConfigOutput
+
+
+
+

Description

+
+
+

Functions

+
+

qmi_message_pds_set_agps_config_input_new ()

+
QmiMessagePdsSetAgpsConfigInput *
+qmi_message_pds_set_agps_config_input_new
+                               (void);
+

Allocates a new QmiMessagePdsSetAgpsConfigInput.

+
+

Returns

+

the newly created QmiMessagePdsSetAgpsConfigInput. The returned value should be freed with qmi_message_pds_set_agps_config_input_unref().

+
+

Since: 1.12

+
+
+
+

qmi_message_pds_set_agps_config_input_ref ()

+
QmiMessagePdsSetAgpsConfigInput *
+qmi_message_pds_set_agps_config_input_ref
+                               (QmiMessagePdsSetAgpsConfigInput *self);
+

Atomically increments the reference count of self + by one.

+
+

Parameters

+
+++++ + + + + + +

self

a QmiMessagePdsSetAgpsConfigInput.

 
+
+
+

Returns

+

the new reference to self +.

+
+

Since: 1.12

+
+
+
+

qmi_message_pds_set_agps_config_input_unref ()

+
void
+qmi_message_pds_set_agps_config_input_unref
+                               (QmiMessagePdsSetAgpsConfigInput *self);
+

Atomically decrements the reference count of self + by one. +If the reference count drops to 0, self + is completely disposed.

+
+

Parameters

+
+++++ + + + + + +

self

a QmiMessagePdsSetAgpsConfigInput.

 
+
+

Since: 1.12

+
+
+
+

qmi_message_pds_set_agps_config_input_get_network_mode ()

+
gboolean
+qmi_message_pds_set_agps_config_input_get_network_mode
+                               (QmiMessagePdsSetAgpsConfigInput *self,
+                                QmiPdsNetworkMode *value_network_mode,
+                                GError **error);
+

Get the 'Network Mode' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessagePdsSetAgpsConfigInput.

 

value_network_mode

a placeholder for the output QmiPdsNetworkMode, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.12

+
+
+
+

qmi_message_pds_set_agps_config_input_set_network_mode ()

+
gboolean
+qmi_message_pds_set_agps_config_input_set_network_mode
+                               (QmiMessagePdsSetAgpsConfigInput *self,
+                                QmiPdsNetworkMode value_network_mode,
+                                GError **error);
+

Set the 'Network Mode' field in the message.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessagePdsSetAgpsConfigInput.

 

value_network_mode

a QmiPdsNetworkMode.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if value +was successfully set, FALSE otherwise.

+
+

Since: 1.12

+
+
+
+

qmi_message_pds_set_agps_config_input_get_location_server_url ()

+
gboolean
+qmi_message_pds_set_agps_config_input_get_location_server_url
+                               (QmiMessagePdsSetAgpsConfigInput *self,
+                                GArray **value_location_server_url,
+                                GError **error);
+

Get the 'Location Server URL' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessagePdsSetAgpsConfigInput.

 

value_location_server_url

a placeholder for the output GArray of guint8 elements, or NULL if not required. Do not free it, it is owned by self +.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.12

+
+
+
+

qmi_message_pds_set_agps_config_input_set_location_server_url ()

+
gboolean
+qmi_message_pds_set_agps_config_input_set_location_server_url
+                               (QmiMessagePdsSetAgpsConfigInput *self,
+                                GArray *value_location_server_url,
+                                GError **error);
+

Set the 'Location Server URL' field in the message.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessagePdsSetAgpsConfigInput.

 

value_location_server_url

a GArray of guint8 elements. A new reference to value_location_server_url +will be taken.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if value +was successfully set, FALSE otherwise.

+
+

Since: 1.12

+
+
+
+

qmi_message_pds_set_agps_config_input_get_location_server_address ()

+
gboolean
+qmi_message_pds_set_agps_config_input_get_location_server_address
+                               (QmiMessagePdsSetAgpsConfigInput *self,
+                                guint32 *value_location_server_address_ip,
+                                guint32 *value_location_server_address_port,
+                                GError **error);
+

Get the 'Location Server Address' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + + + + + + +

self

a QmiMessagePdsSetAgpsConfigInput.

 

value_location_server_address_ip

a placeholder for the output guint32, or NULL if not required.

 

value_location_server_address_port

a placeholder for the output guint32, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.12

+
+
+
+

qmi_message_pds_set_agps_config_input_set_location_server_address ()

+
gboolean
+qmi_message_pds_set_agps_config_input_set_location_server_address
+                               (QmiMessagePdsSetAgpsConfigInput *self,
+                                guint32 value_location_server_address_ip,
+                                guint32 value_location_server_address_port,
+                                GError **error);
+

Set the 'Location Server Address' field in the message.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + + + + + + +

self

a QmiMessagePdsSetAgpsConfigInput.

 

value_location_server_address_ip

a guint32.

 

value_location_server_address_port

a guint32.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if value +was successfully set, FALSE otherwise.

+
+

Since: 1.12

+
+
+
+

qmi_message_pds_set_agps_config_output_ref ()

+
QmiMessagePdsSetAgpsConfigOutput *
+qmi_message_pds_set_agps_config_output_ref
+                               (QmiMessagePdsSetAgpsConfigOutput *self);
+

Atomically increments the reference count of self + by one.

+
+

Parameters

+
+++++ + + + + + +

self

a QmiMessagePdsSetAgpsConfigOutput.

 
+
+
+

Returns

+

the new reference to self +.

+
+

Since: 1.12

+
+
+
+

qmi_message_pds_set_agps_config_output_unref ()

+
void
+qmi_message_pds_set_agps_config_output_unref
+                               (QmiMessagePdsSetAgpsConfigOutput *self);
+

Atomically decrements the reference count of self + by one. +If the reference count drops to 0, self + is completely disposed.

+
+

Parameters

+
+++++ + + + + + +

self

a QmiMessagePdsSetAgpsConfigOutput.

 
+
+

Since: 1.12

+
+
+
+

qmi_message_pds_set_agps_config_output_get_result ()

+
gboolean
+qmi_message_pds_set_agps_config_output_get_result
+                               (QmiMessagePdsSetAgpsConfigOutput *self,
+                                GError **error);
+

Get the result of the QMI operation.

+
+

Parameters

+
+++++ + + + + + + + + + + + + +

self

a QmiMessagePdsSetAgpsConfigOutput.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the QMI operation succeeded, FALSE if error +is set.

+
+

Since: 1.12

+
+
+
+

qmi_client_pds_set_agps_config ()

+
void
+qmi_client_pds_set_agps_config (QmiClientPds *self,
+                                QmiMessagePdsSetAgpsConfigInput *input,
+                                guint timeout,
+                                GCancellable *cancellable,
+                                GAsyncReadyCallback callback,
+                                gpointer user_data);
+

Asynchronously sends a Set AGPS Config request to the device.

+

When the operation is finished, callback + will be invoked in the thread-default main loop of the thread you are calling this method from.

+

You can then call qmi_client_pds_set_agps_config_finish() to get the result of the operation.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

self

a QmiClientPds.

 

input

a QmiMessagePdsSetAgpsConfigInput.

 

timeout

maximum time to wait for the method to complete, in seconds.

 

cancellable

a GCancellable or NULL.

 

callback

a GAsyncReadyCallback to call when the request is satisfied.

 

user_data

user data to pass to callback +.

 
+
+

Since: 1.12

+
+
+
+

qmi_client_pds_set_agps_config_finish ()

+
QmiMessagePdsSetAgpsConfigOutput *
+qmi_client_pds_set_agps_config_finish (QmiClientPds *self,
+                                       GAsyncResult *res,
+                                       GError **error);
+

Finishes an async operation started with qmi_client_pds_set_agps_config().

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiClientPds.

 

res

the GAsyncResult obtained from the GAsyncReadyCallback passed to qmi_client_pds_set_agps_config().

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

a QmiMessagePdsSetAgpsConfigOutput, or NULL if error +is set. The returned value should be freed with qmi_message_pds_set_agps_config_output_unref().

+
+

Since: 1.12

+
+
+
+

Types and Values

+
+

QmiMessagePdsSetAgpsConfigInput

+
typedef struct _QmiMessagePdsSetAgpsConfigInput QmiMessagePdsSetAgpsConfigInput;
+

The QmiMessagePdsSetAgpsConfigInput structure contains private data and should only be accessed +using the provided API.

+

Since: 1.12

+
+
+
+

QmiMessagePdsSetAgpsConfigOutput

+
typedef struct _QmiMessagePdsSetAgpsConfigOutput QmiMessagePdsSetAgpsConfigOutput;
+

The QmiMessagePdsSetAgpsConfigOutput structure contains private data and should only be accessed +using the provided API.

+

Since: 1.12

+
+
+
+ + + \ No newline at end of file diff -Nru libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-PDS-Set-Auto-Tracking-State.html libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-PDS-Set-Auto-Tracking-State.html --- libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-PDS-Set-Auto-Tracking-State.html 2017-03-22 12:28:28.000000000 +0100 +++ libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-PDS-Set-Auto-Tracking-State.html 1970-01-01 01:00:00.000000000 +0100 @@ -1,532 +0,0 @@ - - - - -PDS Set Auto Tracking State: libqmi-glib Reference Manual - - - - - - - - - - - - - - - - -
-
-
- - -
-

PDS Set Auto Tracking State

-

PDS Set Auto Tracking State

-
- -
-

Types and Values

- -
-
-

Object Hierarchy

-
    GBoxed
-    ├── QmiMessagePdsSetAutoTrackingStateInput
-    ╰── QmiMessagePdsSetAutoTrackingStateOutput
-
-
-
-

Description

-
-
-

Functions

-
-

qmi_message_pds_set_auto_tracking_state_input_new ()

-
QmiMessagePdsSetAutoTrackingStateInput *
-qmi_message_pds_set_auto_tracking_state_input_new
-                               (void);
-

Allocates a new QmiMessagePdsSetAutoTrackingStateInput.

-
-

Returns

-

the newly created QmiMessagePdsSetAutoTrackingStateInput. The returned value should be freed with qmi_message_pds_set_auto_tracking_state_input_unref().

-
-

Since: 1.0

-
-
-
-

qmi_message_pds_set_auto_tracking_state_input_ref ()

-
QmiMessagePdsSetAutoTrackingStateInput *
-qmi_message_pds_set_auto_tracking_state_input_ref
-                               (QmiMessagePdsSetAutoTrackingStateInput *self);
-

Atomically increments the reference count of self - by one.

-
-

Parameters

-
----- - - - - - -

self

a QmiMessagePdsSetAutoTrackingStateInput.

 
-
-
-

Returns

-

the new reference to self -.

-
-

Since: 1.0

-
-
-
-

qmi_message_pds_set_auto_tracking_state_input_unref ()

-
void
-qmi_message_pds_set_auto_tracking_state_input_unref
-                               (QmiMessagePdsSetAutoTrackingStateInput *self);
-

Atomically decrements the reference count of self - by one. -If the reference count drops to 0, self - is completely disposed.

-
-

Parameters

-
----- - - - - - -

self

a QmiMessagePdsSetAutoTrackingStateInput.

 
-
-

Since: 1.0

-
-
-
-

qmi_message_pds_set_auto_tracking_state_input_get_state ()

-
gboolean
-qmi_message_pds_set_auto_tracking_state_input_get_state
-                               (QmiMessagePdsSetAutoTrackingStateInput *self,
-                                gboolean *value_state_auto_tracking_state,
-                                GError **error);
-

Get the 'State' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessagePdsSetAutoTrackingStateInput.

 

value_state_auto_tracking_state

a placeholder for the output gboolean, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.0

-
-
-
-

qmi_message_pds_set_auto_tracking_state_input_set_state ()

-
gboolean
-qmi_message_pds_set_auto_tracking_state_input_set_state
-                               (QmiMessagePdsSetAutoTrackingStateInput *self,
-                                gboolean value_state_auto_tracking_state,
-                                GError **error);
-

Set the 'State' field in the message.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessagePdsSetAutoTrackingStateInput.

 

value_state_auto_tracking_state

a gboolean.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if value -was successfully set, FALSE otherwise.

-
-

Since: 1.0

-
-
-
-

qmi_message_pds_set_auto_tracking_state_output_ref ()

-
QmiMessagePdsSetAutoTrackingStateOutput *
-qmi_message_pds_set_auto_tracking_state_output_ref
-                               (QmiMessagePdsSetAutoTrackingStateOutput *self);
-

Atomically increments the reference count of self - by one.

-
-

Parameters

-
----- - - - - - -

self

a QmiMessagePdsSetAutoTrackingStateOutput.

 
-
-
-

Returns

-

the new reference to self -.

-
-

Since: 1.0

-
-
-
-

qmi_message_pds_set_auto_tracking_state_output_unref ()

-
void
-qmi_message_pds_set_auto_tracking_state_output_unref
-                               (QmiMessagePdsSetAutoTrackingStateOutput *self);
-

Atomically decrements the reference count of self - by one. -If the reference count drops to 0, self - is completely disposed.

-
-

Parameters

-
----- - - - - - -

self

a QmiMessagePdsSetAutoTrackingStateOutput.

 
-
-

Since: 1.0

-
-
-
-

qmi_message_pds_set_auto_tracking_state_output_get_result ()

-
gboolean
-qmi_message_pds_set_auto_tracking_state_output_get_result
-                               (QmiMessagePdsSetAutoTrackingStateOutput *self,
-                                GError **error);
-

Get the result of the QMI operation.

-
-

Parameters

-
----- - - - - - - - - - - - - -

self

a QmiMessagePdsSetAutoTrackingStateOutput.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the QMI operation succeeded, FALSE if error -is set.

-
-

Since: 1.0

-
-
-
-

qmi_client_pds_set_auto_tracking_state ()

-
void
-qmi_client_pds_set_auto_tracking_state
-                               (QmiClientPds *self,
-                                QmiMessagePdsSetAutoTrackingStateInput *input,
-                                guint timeout,
-                                GCancellable *cancellable,
-                                GAsyncReadyCallback callback,
-                                gpointer user_data);
-

Asynchronously sends a Set Auto Tracking State request to the device.

-

When the operation is finished, callback - will be invoked in the thread-default main loop of the thread you are calling this method from.

-

You can then call qmi_client_pds_set_auto_tracking_state_finish() to get the result of the operation.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

self

a QmiClientPds.

 

input

a QmiMessagePdsSetAutoTrackingStateInput.

 

timeout

maximum time to wait for the method to complete, in seconds.

 

cancellable

a GCancellable or NULL.

 

callback

a GAsyncReadyCallback to call when the request is satisfied.

 

user_data

user data to pass to callback -.

 
-
-

Since: 1.0

-
-
-
-

qmi_client_pds_set_auto_tracking_state_finish ()

-
QmiMessagePdsSetAutoTrackingStateOutput *
-qmi_client_pds_set_auto_tracking_state_finish
-                               (QmiClientPds *self,
-                                GAsyncResult *res,
-                                GError **error);
-

Finishes an async operation started with qmi_client_pds_set_auto_tracking_state().

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiClientPds.

 

res

the GAsyncResult obtained from the GAsyncReadyCallback passed to qmi_client_pds_set_auto_tracking_state().

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

a QmiMessagePdsSetAutoTrackingStateOutput, or NULL if error -is set. The returned value should be freed with qmi_message_pds_set_auto_tracking_state_output_unref().

-
-

Since: 1.0

-
-
-
-

Types and Values

-
-

QmiMessagePdsSetAutoTrackingStateInput

-
typedef struct _QmiMessagePdsSetAutoTrackingStateInput QmiMessagePdsSetAutoTrackingStateInput;
-

The QmiMessagePdsSetAutoTrackingStateInput structure contains private data and should only be accessed -using the provided API.

-

Since: 1.0

-
-
-
-

QmiMessagePdsSetAutoTrackingStateOutput

-
typedef struct _QmiMessagePdsSetAutoTrackingStateOutput QmiMessagePdsSetAutoTrackingStateOutput;
-

The QmiMessagePdsSetAutoTrackingStateOutput structure contains private data and should only be accessed -using the provided API.

-

Since: 1.0

-
-
-
- - - \ No newline at end of file diff -Nru libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-PDS-Set-Auto-Tracking-State-request.html libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-PDS-Set-Auto-Tracking-State-request.html --- libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-PDS-Set-Auto-Tracking-State-request.html 1970-01-01 01:00:00.000000000 +0100 +++ libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-PDS-Set-Auto-Tracking-State-request.html 2019-01-08 15:19:02.000000000 +0100 @@ -0,0 +1,532 @@ + + + + +PDS Set Auto Tracking State request: libqmi-glib Reference Manual + + + + + + + + + + + + + + + + +
+
+
+ + +
+

PDS Set Auto Tracking State request

+

PDS Set Auto Tracking State request

+
+ +
+

Types and Values

+ +
+
+

Object Hierarchy

+
    GBoxed
+    ├── QmiMessagePdsSetAutoTrackingStateInput
+    ╰── QmiMessagePdsSetAutoTrackingStateOutput
+
+
+
+

Description

+
+
+

Functions

+
+

qmi_message_pds_set_auto_tracking_state_input_new ()

+
QmiMessagePdsSetAutoTrackingStateInput *
+qmi_message_pds_set_auto_tracking_state_input_new
+                               (void);
+

Allocates a new QmiMessagePdsSetAutoTrackingStateInput.

+
+

Returns

+

the newly created QmiMessagePdsSetAutoTrackingStateInput. The returned value should be freed with qmi_message_pds_set_auto_tracking_state_input_unref().

+
+

Since: 1.0

+
+
+
+

qmi_message_pds_set_auto_tracking_state_input_ref ()

+
QmiMessagePdsSetAutoTrackingStateInput *
+qmi_message_pds_set_auto_tracking_state_input_ref
+                               (QmiMessagePdsSetAutoTrackingStateInput *self);
+

Atomically increments the reference count of self + by one.

+
+

Parameters

+
+++++ + + + + + +

self

a QmiMessagePdsSetAutoTrackingStateInput.

 
+
+
+

Returns

+

the new reference to self +.

+
+

Since: 1.0

+
+
+
+

qmi_message_pds_set_auto_tracking_state_input_unref ()

+
void
+qmi_message_pds_set_auto_tracking_state_input_unref
+                               (QmiMessagePdsSetAutoTrackingStateInput *self);
+

Atomically decrements the reference count of self + by one. +If the reference count drops to 0, self + is completely disposed.

+
+

Parameters

+
+++++ + + + + + +

self

a QmiMessagePdsSetAutoTrackingStateInput.

 
+
+

Since: 1.0

+
+
+
+

qmi_message_pds_set_auto_tracking_state_input_get_state ()

+
gboolean
+qmi_message_pds_set_auto_tracking_state_input_get_state
+                               (QmiMessagePdsSetAutoTrackingStateInput *self,
+                                gboolean *value_state_auto_tracking_state,
+                                GError **error);
+

Get the 'State' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessagePdsSetAutoTrackingStateInput.

 

value_state_auto_tracking_state

a placeholder for the output gboolean, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.0

+
+
+
+

qmi_message_pds_set_auto_tracking_state_input_set_state ()

+
gboolean
+qmi_message_pds_set_auto_tracking_state_input_set_state
+                               (QmiMessagePdsSetAutoTrackingStateInput *self,
+                                gboolean value_state_auto_tracking_state,
+                                GError **error);
+

Set the 'State' field in the message.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessagePdsSetAutoTrackingStateInput.

 

value_state_auto_tracking_state

a gboolean.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if value +was successfully set, FALSE otherwise.

+
+

Since: 1.0

+
+
+
+

qmi_message_pds_set_auto_tracking_state_output_ref ()

+
QmiMessagePdsSetAutoTrackingStateOutput *
+qmi_message_pds_set_auto_tracking_state_output_ref
+                               (QmiMessagePdsSetAutoTrackingStateOutput *self);
+

Atomically increments the reference count of self + by one.

+
+

Parameters

+
+++++ + + + + + +

self

a QmiMessagePdsSetAutoTrackingStateOutput.

 
+
+
+

Returns

+

the new reference to self +.

+
+

Since: 1.0

+
+
+
+

qmi_message_pds_set_auto_tracking_state_output_unref ()

+
void
+qmi_message_pds_set_auto_tracking_state_output_unref
+                               (QmiMessagePdsSetAutoTrackingStateOutput *self);
+

Atomically decrements the reference count of self + by one. +If the reference count drops to 0, self + is completely disposed.

+
+

Parameters

+
+++++ + + + + + +

self

a QmiMessagePdsSetAutoTrackingStateOutput.

 
+
+

Since: 1.0

+
+
+
+

qmi_message_pds_set_auto_tracking_state_output_get_result ()

+
gboolean
+qmi_message_pds_set_auto_tracking_state_output_get_result
+                               (QmiMessagePdsSetAutoTrackingStateOutput *self,
+                                GError **error);
+

Get the result of the QMI operation.

+
+

Parameters

+
+++++ + + + + + + + + + + + + +

self

a QmiMessagePdsSetAutoTrackingStateOutput.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the QMI operation succeeded, FALSE if error +is set.

+
+

Since: 1.0

+
+
+
+

qmi_client_pds_set_auto_tracking_state ()

+
void
+qmi_client_pds_set_auto_tracking_state
+                               (QmiClientPds *self,
+                                QmiMessagePdsSetAutoTrackingStateInput *input,
+                                guint timeout,
+                                GCancellable *cancellable,
+                                GAsyncReadyCallback callback,
+                                gpointer user_data);
+

Asynchronously sends a Set Auto Tracking State request to the device.

+

When the operation is finished, callback + will be invoked in the thread-default main loop of the thread you are calling this method from.

+

You can then call qmi_client_pds_set_auto_tracking_state_finish() to get the result of the operation.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

self

a QmiClientPds.

 

input

a QmiMessagePdsSetAutoTrackingStateInput.

 

timeout

maximum time to wait for the method to complete, in seconds.

 

cancellable

a GCancellable or NULL.

 

callback

a GAsyncReadyCallback to call when the request is satisfied.

 

user_data

user data to pass to callback +.

 
+
+

Since: 1.0

+
+
+
+

qmi_client_pds_set_auto_tracking_state_finish ()

+
QmiMessagePdsSetAutoTrackingStateOutput *
+qmi_client_pds_set_auto_tracking_state_finish
+                               (QmiClientPds *self,
+                                GAsyncResult *res,
+                                GError **error);
+

Finishes an async operation started with qmi_client_pds_set_auto_tracking_state().

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiClientPds.

 

res

the GAsyncResult obtained from the GAsyncReadyCallback passed to qmi_client_pds_set_auto_tracking_state().

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

a QmiMessagePdsSetAutoTrackingStateOutput, or NULL if error +is set. The returned value should be freed with qmi_message_pds_set_auto_tracking_state_output_unref().

+
+

Since: 1.0

+
+
+
+

Types and Values

+
+

QmiMessagePdsSetAutoTrackingStateInput

+
typedef struct _QmiMessagePdsSetAutoTrackingStateInput QmiMessagePdsSetAutoTrackingStateInput;
+

The QmiMessagePdsSetAutoTrackingStateInput structure contains private data and should only be accessed +using the provided API.

+

Since: 1.0

+
+
+
+

QmiMessagePdsSetAutoTrackingStateOutput

+
typedef struct _QmiMessagePdsSetAutoTrackingStateOutput QmiMessagePdsSetAutoTrackingStateOutput;
+

The QmiMessagePdsSetAutoTrackingStateOutput structure contains private data and should only be accessed +using the provided API.

+

Since: 1.0

+
+
+
+ + + \ No newline at end of file diff -Nru libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-PDS-Set-Default-Tracking-Session.html libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-PDS-Set-Default-Tracking-Session.html --- libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-PDS-Set-Default-Tracking-Session.html 2017-03-22 12:28:29.000000000 +0100 +++ libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-PDS-Set-Default-Tracking-Session.html 1970-01-01 01:00:00.000000000 +0100 @@ -1,568 +0,0 @@ - - - - -PDS Set Default Tracking Session: libqmi-glib Reference Manual - - - - - - - - - - - - - - - - -
-
-
- - -
-

PDS Set Default Tracking Session

-

PDS Set Default Tracking Session

-
- - -
-

Object Hierarchy

-
    GBoxed
-    ├── QmiMessagePdsSetDefaultTrackingSessionInput
-    ╰── QmiMessagePdsSetDefaultTrackingSessionOutput
-
-
-
-

Description

-
-
-

Functions

-
-

qmi_message_pds_set_default_tracking_session_input_new ()

-
QmiMessagePdsSetDefaultTrackingSessionInput *
-qmi_message_pds_set_default_tracking_session_input_new
-                               (void);
-

Allocates a new QmiMessagePdsSetDefaultTrackingSessionInput.

-
-

Returns

-

the newly created QmiMessagePdsSetDefaultTrackingSessionInput. The returned value should be freed with qmi_message_pds_set_default_tracking_session_input_unref().

-
-

Since: 1.12

-
-
-
-

qmi_message_pds_set_default_tracking_session_input_ref ()

-
QmiMessagePdsSetDefaultTrackingSessionInput *
-qmi_message_pds_set_default_tracking_session_input_ref
-                               (QmiMessagePdsSetDefaultTrackingSessionInput *self);
-

Atomically increments the reference count of self - by one.

-
-

Parameters

- -
-
-

Returns

-

the new reference to self -.

-
-

Since: 1.12

-
-
-
-

qmi_message_pds_set_default_tracking_session_input_unref ()

-
void
-qmi_message_pds_set_default_tracking_session_input_unref
-                               (QmiMessagePdsSetDefaultTrackingSessionInput *self);
-

Atomically decrements the reference count of self - by one. -If the reference count drops to 0, self - is completely disposed.

-
-

Parameters

- -
-

Since: 1.12

-
-
-
-

qmi_message_pds_set_default_tracking_session_input_get_info ()

-
gboolean
-qmi_message_pds_set_default_tracking_session_input_get_info
-                               (QmiMessagePdsSetDefaultTrackingSessionInput *self,
-                                QmiPdsOperatingMode *value_info_session_operation,
-                                guint8 *value_info_position_data_timeout,
-                                guint32 *value_info_interval,
-                                guint32 *value_info_accuracy_threshold,
-                                GError **error);
-

Get the 'Info' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

self

a QmiMessagePdsSetDefaultTrackingSessionInput.

 

value_info_session_operation

a placeholder for the output QmiPdsOperatingMode, or NULL if not required.

 

value_info_position_data_timeout

a placeholder for the output guint8, or NULL if not required.

 

value_info_interval

a placeholder for the output guint32, or NULL if not required.

 

value_info_accuracy_threshold

a placeholder for the output guint32, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.12

-
-
-
-

qmi_message_pds_set_default_tracking_session_input_set_info ()

-
gboolean
-qmi_message_pds_set_default_tracking_session_input_set_info
-                               (QmiMessagePdsSetDefaultTrackingSessionInput *self,
-                                QmiPdsOperatingMode value_info_session_operation,
-                                guint8 value_info_position_data_timeout,
-                                guint32 value_info_interval,
-                                guint32 value_info_accuracy_threshold,
-                                GError **error);
-

Set the 'Info' field in the message.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

self

a QmiMessagePdsSetDefaultTrackingSessionInput.

 

value_info_session_operation

a QmiPdsOperatingMode.

 

value_info_position_data_timeout

a guint8.

 

value_info_interval

a guint32.

 

value_info_accuracy_threshold

a guint32.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if value -was successfully set, FALSE otherwise.

-
-

Since: 1.12

-
-
-
-

qmi_message_pds_set_default_tracking_session_output_ref ()

-
QmiMessagePdsSetDefaultTrackingSessionOutput *
-qmi_message_pds_set_default_tracking_session_output_ref
-                               (QmiMessagePdsSetDefaultTrackingSessionOutput *self);
-

Atomically increments the reference count of self - by one.

-
-

Parameters

- -
-
-

Returns

-

the new reference to self -.

-
-

Since: 1.12

-
-
-
-

qmi_message_pds_set_default_tracking_session_output_unref ()

-
void
-qmi_message_pds_set_default_tracking_session_output_unref
-                               (QmiMessagePdsSetDefaultTrackingSessionOutput *self);
-

Atomically decrements the reference count of self - by one. -If the reference count drops to 0, self - is completely disposed.

-
-

Parameters

- -
-

Since: 1.12

-
-
-
-

qmi_message_pds_set_default_tracking_session_output_get_result ()

-
gboolean
-qmi_message_pds_set_default_tracking_session_output_get_result
-                               (QmiMessagePdsSetDefaultTrackingSessionOutput *self,
-                                GError **error);
-

Get the result of the QMI operation.

-
-

Parameters

-
----- - - - - - - - - - - - - -

self

a QmiMessagePdsSetDefaultTrackingSessionOutput.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the QMI operation succeeded, FALSE if error -is set.

-
-

Since: 1.12

-
-
-
-

qmi_client_pds_set_default_tracking_session ()

-
void
-qmi_client_pds_set_default_tracking_session
-                               (QmiClientPds *self,
-                                QmiMessagePdsSetDefaultTrackingSessionInput *input,
-                                guint timeout,
-                                GCancellable *cancellable,
-                                GAsyncReadyCallback callback,
-                                gpointer user_data);
-

Asynchronously sends a Set Default Tracking Session request to the device.

-

When the operation is finished, callback - will be invoked in the thread-default main loop of the thread you are calling this method from.

-

You can then call qmi_client_pds_set_default_tracking_session_finish() to get the result of the operation.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

self

a QmiClientPds.

 

input

a QmiMessagePdsSetDefaultTrackingSessionInput.

 

timeout

maximum time to wait for the method to complete, in seconds.

 

cancellable

a GCancellable or NULL.

 

callback

a GAsyncReadyCallback to call when the request is satisfied.

 

user_data

user data to pass to callback -.

 
-
-

Since: 1.12

-
-
-
-

qmi_client_pds_set_default_tracking_session_finish ()

-
QmiMessagePdsSetDefaultTrackingSessionOutput *
-qmi_client_pds_set_default_tracking_session_finish
-                               (QmiClientPds *self,
-                                GAsyncResult *res,
-                                GError **error);
-

Finishes an async operation started with qmi_client_pds_set_default_tracking_session().

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiClientPds.

 

res

the GAsyncResult obtained from the GAsyncReadyCallback passed to qmi_client_pds_set_default_tracking_session().

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

a QmiMessagePdsSetDefaultTrackingSessionOutput, or NULL if error -is set. The returned value should be freed with qmi_message_pds_set_default_tracking_session_output_unref().

-
-

Since: 1.12

-
-
-
-

Types and Values

-
-

QmiMessagePdsSetDefaultTrackingSessionInput

-
typedef struct _QmiMessagePdsSetDefaultTrackingSessionInput QmiMessagePdsSetDefaultTrackingSessionInput;
-

The QmiMessagePdsSetDefaultTrackingSessionInput structure contains private data and should only be accessed -using the provided API.

-

Since: 1.12

-
-
-
-

QmiMessagePdsSetDefaultTrackingSessionOutput

-
typedef struct _QmiMessagePdsSetDefaultTrackingSessionOutput QmiMessagePdsSetDefaultTrackingSessionOutput;
-

The QmiMessagePdsSetDefaultTrackingSessionOutput structure contains private data and should only be accessed -using the provided API.

-

Since: 1.12

-
-
-
- - - \ No newline at end of file diff -Nru libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-PDS-Set-Default-Tracking-Session-request.html libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-PDS-Set-Default-Tracking-Session-request.html --- libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-PDS-Set-Default-Tracking-Session-request.html 1970-01-01 01:00:00.000000000 +0100 +++ libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-PDS-Set-Default-Tracking-Session-request.html 2019-01-08 15:19:02.000000000 +0100 @@ -0,0 +1,568 @@ + + + + +PDS Set Default Tracking Session request: libqmi-glib Reference Manual + + + + + + + + + + + + + + + + +
+
+
+ + +
+

PDS Set Default Tracking Session request

+

PDS Set Default Tracking Session request

+
+ + +
+

Object Hierarchy

+
    GBoxed
+    ├── QmiMessagePdsSetDefaultTrackingSessionInput
+    ╰── QmiMessagePdsSetDefaultTrackingSessionOutput
+
+
+
+

Description

+
+
+

Functions

+
+

qmi_message_pds_set_default_tracking_session_input_new ()

+
QmiMessagePdsSetDefaultTrackingSessionInput *
+qmi_message_pds_set_default_tracking_session_input_new
+                               (void);
+

Allocates a new QmiMessagePdsSetDefaultTrackingSessionInput.

+
+

Returns

+

the newly created QmiMessagePdsSetDefaultTrackingSessionInput. The returned value should be freed with qmi_message_pds_set_default_tracking_session_input_unref().

+
+

Since: 1.12

+
+
+
+

qmi_message_pds_set_default_tracking_session_input_ref ()

+
QmiMessagePdsSetDefaultTrackingSessionInput *
+qmi_message_pds_set_default_tracking_session_input_ref
+                               (QmiMessagePdsSetDefaultTrackingSessionInput *self);
+

Atomically increments the reference count of self + by one.

+
+

Parameters

+ +
+
+

Returns

+

the new reference to self +.

+
+

Since: 1.12

+
+
+
+

qmi_message_pds_set_default_tracking_session_input_unref ()

+
void
+qmi_message_pds_set_default_tracking_session_input_unref
+                               (QmiMessagePdsSetDefaultTrackingSessionInput *self);
+

Atomically decrements the reference count of self + by one. +If the reference count drops to 0, self + is completely disposed.

+
+

Parameters

+ +
+

Since: 1.12

+
+
+
+

qmi_message_pds_set_default_tracking_session_input_get_info ()

+
gboolean
+qmi_message_pds_set_default_tracking_session_input_get_info
+                               (QmiMessagePdsSetDefaultTrackingSessionInput *self,
+                                QmiPdsOperatingMode *value_info_session_operation,
+                                guint8 *value_info_position_data_timeout,
+                                guint32 *value_info_interval,
+                                guint32 *value_info_accuracy_threshold,
+                                GError **error);
+

Get the 'Info' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

self

a QmiMessagePdsSetDefaultTrackingSessionInput.

 

value_info_session_operation

a placeholder for the output QmiPdsOperatingMode, or NULL if not required.

 

value_info_position_data_timeout

a placeholder for the output guint8, or NULL if not required.

 

value_info_interval

a placeholder for the output guint32, or NULL if not required.

 

value_info_accuracy_threshold

a placeholder for the output guint32, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.12

+
+
+
+

qmi_message_pds_set_default_tracking_session_input_set_info ()

+
gboolean
+qmi_message_pds_set_default_tracking_session_input_set_info
+                               (QmiMessagePdsSetDefaultTrackingSessionInput *self,
+                                QmiPdsOperatingMode value_info_session_operation,
+                                guint8 value_info_position_data_timeout,
+                                guint32 value_info_interval,
+                                guint32 value_info_accuracy_threshold,
+                                GError **error);
+

Set the 'Info' field in the message.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

self

a QmiMessagePdsSetDefaultTrackingSessionInput.

 

value_info_session_operation

a QmiPdsOperatingMode.

 

value_info_position_data_timeout

a guint8.

 

value_info_interval

a guint32.

 

value_info_accuracy_threshold

a guint32.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if value +was successfully set, FALSE otherwise.

+
+

Since: 1.12

+
+
+
+

qmi_message_pds_set_default_tracking_session_output_ref ()

+
QmiMessagePdsSetDefaultTrackingSessionOutput *
+qmi_message_pds_set_default_tracking_session_output_ref
+                               (QmiMessagePdsSetDefaultTrackingSessionOutput *self);
+

Atomically increments the reference count of self + by one.

+
+

Parameters

+ +
+
+

Returns

+

the new reference to self +.

+
+

Since: 1.12

+
+
+
+

qmi_message_pds_set_default_tracking_session_output_unref ()

+
void
+qmi_message_pds_set_default_tracking_session_output_unref
+                               (QmiMessagePdsSetDefaultTrackingSessionOutput *self);
+

Atomically decrements the reference count of self + by one. +If the reference count drops to 0, self + is completely disposed.

+
+

Parameters

+ +
+

Since: 1.12

+
+
+
+

qmi_message_pds_set_default_tracking_session_output_get_result ()

+
gboolean
+qmi_message_pds_set_default_tracking_session_output_get_result
+                               (QmiMessagePdsSetDefaultTrackingSessionOutput *self,
+                                GError **error);
+

Get the result of the QMI operation.

+
+

Parameters

+
+++++ + + + + + + + + + + + + +

self

a QmiMessagePdsSetDefaultTrackingSessionOutput.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the QMI operation succeeded, FALSE if error +is set.

+
+

Since: 1.12

+
+
+
+

qmi_client_pds_set_default_tracking_session ()

+
void
+qmi_client_pds_set_default_tracking_session
+                               (QmiClientPds *self,
+                                QmiMessagePdsSetDefaultTrackingSessionInput *input,
+                                guint timeout,
+                                GCancellable *cancellable,
+                                GAsyncReadyCallback callback,
+                                gpointer user_data);
+

Asynchronously sends a Set Default Tracking Session request to the device.

+

When the operation is finished, callback + will be invoked in the thread-default main loop of the thread you are calling this method from.

+

You can then call qmi_client_pds_set_default_tracking_session_finish() to get the result of the operation.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

self

a QmiClientPds.

 

input

a QmiMessagePdsSetDefaultTrackingSessionInput.

 

timeout

maximum time to wait for the method to complete, in seconds.

 

cancellable

a GCancellable or NULL.

 

callback

a GAsyncReadyCallback to call when the request is satisfied.

 

user_data

user data to pass to callback +.

 
+
+

Since: 1.12

+
+
+
+

qmi_client_pds_set_default_tracking_session_finish ()

+
QmiMessagePdsSetDefaultTrackingSessionOutput *
+qmi_client_pds_set_default_tracking_session_finish
+                               (QmiClientPds *self,
+                                GAsyncResult *res,
+                                GError **error);
+

Finishes an async operation started with qmi_client_pds_set_default_tracking_session().

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiClientPds.

 

res

the GAsyncResult obtained from the GAsyncReadyCallback passed to qmi_client_pds_set_default_tracking_session().

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

a QmiMessagePdsSetDefaultTrackingSessionOutput, or NULL if error +is set. The returned value should be freed with qmi_message_pds_set_default_tracking_session_output_unref().

+
+

Since: 1.12

+
+
+
+

Types and Values

+
+

QmiMessagePdsSetDefaultTrackingSessionInput

+
typedef struct _QmiMessagePdsSetDefaultTrackingSessionInput QmiMessagePdsSetDefaultTrackingSessionInput;
+

The QmiMessagePdsSetDefaultTrackingSessionInput structure contains private data and should only be accessed +using the provided API.

+

Since: 1.12

+
+
+
+

QmiMessagePdsSetDefaultTrackingSessionOutput

+
typedef struct _QmiMessagePdsSetDefaultTrackingSessionOutput QmiMessagePdsSetDefaultTrackingSessionOutput;
+

The QmiMessagePdsSetDefaultTrackingSessionOutput structure contains private data and should only be accessed +using the provided API.

+

Since: 1.12

+
+
+
+ + + \ No newline at end of file diff -Nru libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-PDS-Set-Event-Report.html libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-PDS-Set-Event-Report.html --- libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-PDS-Set-Event-Report.html 2017-03-22 12:28:29.000000000 +0100 +++ libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-PDS-Set-Event-Report.html 1970-01-01 01:00:00.000000000 +0100 @@ -1,2469 +0,0 @@ - - - - -PDS Set Event Report: libqmi-glib Reference Manual - - - - - - - - - - - - - - - - -
-
-
- - -
-

PDS Set Event Report

-

PDS Set Event Report

-
-
-

Functions

-
---- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
-QmiMessagePdsSetEventReportInput * - -qmi_message_pds_set_event_report_input_new () -
-QmiMessagePdsSetEventReportInput * - -qmi_message_pds_set_event_report_input_ref () -
-void - -qmi_message_pds_set_event_report_input_unref () -
-gboolean - -qmi_message_pds_set_event_report_input_get_extended_external_xtra_data_request_reporting () -
-gboolean - -qmi_message_pds_set_event_report_input_set_extended_external_xtra_data_request_reporting () -
-gboolean - -qmi_message_pds_set_event_report_input_get_nmea_debug_strings_reporting () -
-gboolean - -qmi_message_pds_set_event_report_input_set_nmea_debug_strings_reporting () -
-gboolean - -qmi_message_pds_set_event_report_input_get_heading_uncertainty_reporting () -
-gboolean - -qmi_message_pds_set_event_report_input_set_heading_uncertainty_reporting () -
-gboolean - -qmi_message_pds_set_event_report_input_get_time_source_information_reporting () -
-gboolean - -qmi_message_pds_set_event_report_input_set_time_source_information_reporting () -
-gboolean - -qmi_message_pds_set_event_report_input_get_sensor_data_usage_indicator_reporting () -
-gboolean - -qmi_message_pds_set_event_report_input_set_sensor_data_usage_indicator_reporting () -
-gboolean - -qmi_message_pds_set_event_report_input_get_position_reliability_indicator_reporting () -
-gboolean - -qmi_message_pds_set_event_report_input_set_position_reliability_indicator_reporting () -
-gboolean - -qmi_message_pds_set_event_report_input_get_time_sync_request_reporting () -
-gboolean - -qmi_message_pds_set_event_report_input_set_time_sync_request_reporting () -
-gboolean - -qmi_message_pds_set_event_report_input_get_gyro_data_streaming_ready_reporting () -
-gboolean - -qmi_message_pds_set_event_report_input_set_gyro_data_streaming_ready_reporting () -
-gboolean - -qmi_message_pds_set_event_report_input_get_accelerometer_data_streaming_ready_reporting () -
-gboolean - -qmi_message_pds_set_event_report_input_set_accelerometer_data_streaming_ready_reporting () -
-gboolean - -qmi_message_pds_set_event_report_input_get_pds_comm_event_reporting () -
-gboolean - -qmi_message_pds_set_event_report_input_set_pds_comm_event_reporting () -
-gboolean - -qmi_message_pds_set_event_report_input_get_umts_cp_network_initiated_prompt_reporting () -
-gboolean - -qmi_message_pds_set_event_report_input_set_umts_cp_network_initiated_prompt_reporting () -
-gboolean - -qmi_message_pds_set_event_report_input_get_supl_network_initiated_prompt_reporting () -
-gboolean - -qmi_message_pds_set_event_report_input_set_supl_network_initiated_prompt_reporting () -
-gboolean - -qmi_message_pds_set_event_report_input_get_vx_network_initiated_request_reporting () -
-gboolean - -qmi_message_pds_set_event_report_input_set_vx_network_initiated_request_reporting () -
-gboolean - -qmi_message_pds_set_event_report_input_get_satellite_information_reporting () -
-gboolean - -qmi_message_pds_set_event_report_input_set_satellite_information_reporting () -
-gboolean - -qmi_message_pds_set_event_report_input_get_external_wifi_position_request_reporting () -
-gboolean - -qmi_message_pds_set_event_report_input_set_external_wifi_position_request_reporting () -
-gboolean - -qmi_message_pds_set_event_report_input_get_external_time_injection_request_reporting () -
-gboolean - -qmi_message_pds_set_event_report_input_set_external_time_injection_request_reporting () -
-gboolean - -qmi_message_pds_set_event_report_input_get_external_xtra_data_request_reporting () -
-gboolean - -qmi_message_pds_set_event_report_input_set_external_xtra_data_request_reporting () -
-gboolean - -qmi_message_pds_set_event_report_input_get_parsed_position_reporting () -
-gboolean - -qmi_message_pds_set_event_report_input_set_parsed_position_reporting () -
-gboolean - -qmi_message_pds_set_event_report_input_get_extended_nmea_position_reporting () -
-gboolean - -qmi_message_pds_set_event_report_input_set_extended_nmea_position_reporting () -
-gboolean - -qmi_message_pds_set_event_report_input_get_nmea_position_reporting () -
-gboolean - -qmi_message_pds_set_event_report_input_set_nmea_position_reporting () -
-QmiMessagePdsSetEventReportOutput * - -qmi_message_pds_set_event_report_output_ref () -
-void - -qmi_message_pds_set_event_report_output_unref () -
-gboolean - -qmi_message_pds_set_event_report_output_get_result () -
-void - -qmi_client_pds_set_event_report () -
-QmiMessagePdsSetEventReportOutput * - -qmi_client_pds_set_event_report_finish () -
-
-
-

Types and Values

- -
-
-

Object Hierarchy

-
    GBoxed
-    ├── QmiMessagePdsSetEventReportInput
-    ╰── QmiMessagePdsSetEventReportOutput
-
-
-
-

Description

-
-
-

Functions

-
-

qmi_message_pds_set_event_report_input_new ()

-
QmiMessagePdsSetEventReportInput *
-qmi_message_pds_set_event_report_input_new
-                               (void);
-

Allocates a new QmiMessagePdsSetEventReportInput.

-
-

Returns

-

the newly created QmiMessagePdsSetEventReportInput. The returned value should be freed with qmi_message_pds_set_event_report_input_unref().

-
-

Since: 1.0

-
-
-
-

qmi_message_pds_set_event_report_input_ref ()

-
QmiMessagePdsSetEventReportInput *
-qmi_message_pds_set_event_report_input_ref
-                               (QmiMessagePdsSetEventReportInput *self);
-

Atomically increments the reference count of self - by one.

-
-

Parameters

-
----- - - - - - -

self

a QmiMessagePdsSetEventReportInput.

 
-
-
-

Returns

-

the new reference to self -.

-
-

Since: 1.0

-
-
-
-

qmi_message_pds_set_event_report_input_unref ()

-
void
-qmi_message_pds_set_event_report_input_unref
-                               (QmiMessagePdsSetEventReportInput *self);
-

Atomically decrements the reference count of self - by one. -If the reference count drops to 0, self - is completely disposed.

-
-

Parameters

-
----- - - - - - -

self

a QmiMessagePdsSetEventReportInput.

 
-
-

Since: 1.0

-
-
-
-

qmi_message_pds_set_event_report_input_get_extended_external_xtra_data_request_reporting ()

-
gboolean
-qmi_message_pds_set_event_report_input_get_extended_external_xtra_data_request_reporting
-                               (QmiMessagePdsSetEventReportInput *self,
-                                gboolean *value_extended_external_xtra_data_request_reporting,
-                                GError **error);
-

Get the 'Extended External XTRA Data Request Reporting' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessagePdsSetEventReportInput.

 

value_extended_external_xtra_data_request_reporting

a placeholder for the output gboolean, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.0

-
-
-
-

qmi_message_pds_set_event_report_input_set_extended_external_xtra_data_request_reporting ()

-
gboolean
-qmi_message_pds_set_event_report_input_set_extended_external_xtra_data_request_reporting
-                               (QmiMessagePdsSetEventReportInput *self,
-                                gboolean value_extended_external_xtra_data_request_reporting,
-                                GError **error);
-

Set the 'Extended External XTRA Data Request Reporting' field in the message.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessagePdsSetEventReportInput.

 

value_extended_external_xtra_data_request_reporting

a gboolean.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if value -was successfully set, FALSE otherwise.

-
-

Since: 1.0

-
-
-
-

qmi_message_pds_set_event_report_input_get_nmea_debug_strings_reporting ()

-
gboolean
-qmi_message_pds_set_event_report_input_get_nmea_debug_strings_reporting
-                               (QmiMessagePdsSetEventReportInput *self,
-                                gboolean *value_nmea_debug_strings_reporting,
-                                GError **error);
-

Get the 'NMEA Debug Strings Reporting' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessagePdsSetEventReportInput.

 

value_nmea_debug_strings_reporting

a placeholder for the output gboolean, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.0

-
-
-
-

qmi_message_pds_set_event_report_input_set_nmea_debug_strings_reporting ()

-
gboolean
-qmi_message_pds_set_event_report_input_set_nmea_debug_strings_reporting
-                               (QmiMessagePdsSetEventReportInput *self,
-                                gboolean value_nmea_debug_strings_reporting,
-                                GError **error);
-

Set the 'NMEA Debug Strings Reporting' field in the message.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessagePdsSetEventReportInput.

 

value_nmea_debug_strings_reporting

a gboolean.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if value -was successfully set, FALSE otherwise.

-
-

Since: 1.0

-
-
-
-

qmi_message_pds_set_event_report_input_get_heading_uncertainty_reporting ()

-
gboolean
-qmi_message_pds_set_event_report_input_get_heading_uncertainty_reporting
-                               (QmiMessagePdsSetEventReportInput *self,
-                                gboolean *value_heading_uncertainty_reporting,
-                                GError **error);
-

Get the 'Heading Uncertainty Reporting' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessagePdsSetEventReportInput.

 

value_heading_uncertainty_reporting

a placeholder for the output gboolean, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.0

-
-
-
-

qmi_message_pds_set_event_report_input_set_heading_uncertainty_reporting ()

-
gboolean
-qmi_message_pds_set_event_report_input_set_heading_uncertainty_reporting
-                               (QmiMessagePdsSetEventReportInput *self,
-                                gboolean value_heading_uncertainty_reporting,
-                                GError **error);
-

Set the 'Heading Uncertainty Reporting' field in the message.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessagePdsSetEventReportInput.

 

value_heading_uncertainty_reporting

a gboolean.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if value -was successfully set, FALSE otherwise.

-
-

Since: 1.0

-
-
-
-

qmi_message_pds_set_event_report_input_get_time_source_information_reporting ()

-
gboolean
-qmi_message_pds_set_event_report_input_get_time_source_information_reporting
-                               (QmiMessagePdsSetEventReportInput *self,
-                                gboolean *value_time_source_information_reporting,
-                                GError **error);
-

Get the 'Time Source Information Reporting' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessagePdsSetEventReportInput.

 

value_time_source_information_reporting

a placeholder for the output gboolean, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.0

-
-
-
-

qmi_message_pds_set_event_report_input_set_time_source_information_reporting ()

-
gboolean
-qmi_message_pds_set_event_report_input_set_time_source_information_reporting
-                               (QmiMessagePdsSetEventReportInput *self,
-                                gboolean value_time_source_information_reporting,
-                                GError **error);
-

Set the 'Time Source Information Reporting' field in the message.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessagePdsSetEventReportInput.

 

value_time_source_information_reporting

a gboolean.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if value -was successfully set, FALSE otherwise.

-
-

Since: 1.0

-
-
-
-

qmi_message_pds_set_event_report_input_get_sensor_data_usage_indicator_reporting ()

-
gboolean
-qmi_message_pds_set_event_report_input_get_sensor_data_usage_indicator_reporting
-                               (QmiMessagePdsSetEventReportInput *self,
-                                gboolean *value_sensor_data_usage_indicator_reporting,
-                                GError **error);
-

Get the 'Sensor Data Usage Indicator Reporting' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessagePdsSetEventReportInput.

 

value_sensor_data_usage_indicator_reporting

a placeholder for the output gboolean, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.0

-
-
-
-

qmi_message_pds_set_event_report_input_set_sensor_data_usage_indicator_reporting ()

-
gboolean
-qmi_message_pds_set_event_report_input_set_sensor_data_usage_indicator_reporting
-                               (QmiMessagePdsSetEventReportInput *self,
-                                gboolean value_sensor_data_usage_indicator_reporting,
-                                GError **error);
-

Set the 'Sensor Data Usage Indicator Reporting' field in the message.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessagePdsSetEventReportInput.

 

value_sensor_data_usage_indicator_reporting

a gboolean.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if value -was successfully set, FALSE otherwise.

-
-

Since: 1.0

-
-
-
-

qmi_message_pds_set_event_report_input_get_position_reliability_indicator_reporting ()

-
gboolean
-qmi_message_pds_set_event_report_input_get_position_reliability_indicator_reporting
-                               (QmiMessagePdsSetEventReportInput *self,
-                                gboolean *value_position_reliability_indicator_reporting,
-                                GError **error);
-

Get the 'Position Reliability Indicator Reporting' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessagePdsSetEventReportInput.

 

value_position_reliability_indicator_reporting

a placeholder for the output gboolean, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.0

-
-
-
-

qmi_message_pds_set_event_report_input_set_position_reliability_indicator_reporting ()

-
gboolean
-qmi_message_pds_set_event_report_input_set_position_reliability_indicator_reporting
-                               (QmiMessagePdsSetEventReportInput *self,
-                                gboolean value_position_reliability_indicator_reporting,
-                                GError **error);
-

Set the 'Position Reliability Indicator Reporting' field in the message.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessagePdsSetEventReportInput.

 

value_position_reliability_indicator_reporting

a gboolean.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if value -was successfully set, FALSE otherwise.

-
-

Since: 1.0

-
-
-
-

qmi_message_pds_set_event_report_input_get_time_sync_request_reporting ()

-
gboolean
-qmi_message_pds_set_event_report_input_get_time_sync_request_reporting
-                               (QmiMessagePdsSetEventReportInput *self,
-                                gboolean *value_time_sync_request_reporting,
-                                GError **error);
-

Get the 'Time Sync Request Reporting' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessagePdsSetEventReportInput.

 

value_time_sync_request_reporting

a placeholder for the output gboolean, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.0

-
-
-
-

qmi_message_pds_set_event_report_input_set_time_sync_request_reporting ()

-
gboolean
-qmi_message_pds_set_event_report_input_set_time_sync_request_reporting
-                               (QmiMessagePdsSetEventReportInput *self,
-                                gboolean value_time_sync_request_reporting,
-                                GError **error);
-

Set the 'Time Sync Request Reporting' field in the message.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessagePdsSetEventReportInput.

 

value_time_sync_request_reporting

a gboolean.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if value -was successfully set, FALSE otherwise.

-
-

Since: 1.0

-
-
-
-

qmi_message_pds_set_event_report_input_get_gyro_data_streaming_ready_reporting ()

-
gboolean
-qmi_message_pds_set_event_report_input_get_gyro_data_streaming_ready_reporting
-                               (QmiMessagePdsSetEventReportInput *self,
-                                gboolean *value_gyro_data_streaming_ready_reporting,
-                                GError **error);
-

Get the 'Gyro Data Streaming Ready Reporting' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessagePdsSetEventReportInput.

 

value_gyro_data_streaming_ready_reporting

a placeholder for the output gboolean, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.0

-
-
-
-

qmi_message_pds_set_event_report_input_set_gyro_data_streaming_ready_reporting ()

-
gboolean
-qmi_message_pds_set_event_report_input_set_gyro_data_streaming_ready_reporting
-                               (QmiMessagePdsSetEventReportInput *self,
-                                gboolean value_gyro_data_streaming_ready_reporting,
-                                GError **error);
-

Set the 'Gyro Data Streaming Ready Reporting' field in the message.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessagePdsSetEventReportInput.

 

value_gyro_data_streaming_ready_reporting

a gboolean.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if value -was successfully set, FALSE otherwise.

-
-

Since: 1.0

-
-
-
-

qmi_message_pds_set_event_report_input_get_accelerometer_data_streaming_ready_reporting ()

-
gboolean
-qmi_message_pds_set_event_report_input_get_accelerometer_data_streaming_ready_reporting
-                               (QmiMessagePdsSetEventReportInput *self,
-                                gboolean *value_accelerometer_data_streaming_ready_reporting,
-                                GError **error);
-

Get the 'Accelerometer Data Streaming Ready Reporting' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessagePdsSetEventReportInput.

 

value_accelerometer_data_streaming_ready_reporting

a placeholder for the output gboolean, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.0

-
-
-
-

qmi_message_pds_set_event_report_input_set_accelerometer_data_streaming_ready_reporting ()

-
gboolean
-qmi_message_pds_set_event_report_input_set_accelerometer_data_streaming_ready_reporting
-                               (QmiMessagePdsSetEventReportInput *self,
-                                gboolean value_accelerometer_data_streaming_ready_reporting,
-                                GError **error);
-

Set the 'Accelerometer Data Streaming Ready Reporting' field in the message.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessagePdsSetEventReportInput.

 

value_accelerometer_data_streaming_ready_reporting

a gboolean.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if value -was successfully set, FALSE otherwise.

-
-

Since: 1.0

-
-
-
-

qmi_message_pds_set_event_report_input_get_pds_comm_event_reporting ()

-
gboolean
-qmi_message_pds_set_event_report_input_get_pds_comm_event_reporting
-                               (QmiMessagePdsSetEventReportInput *self,
-                                gboolean *value_pds_comm_event_reporting,
-                                GError **error);
-

Get the 'PDS Comm Event Reporting' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessagePdsSetEventReportInput.

 

value_pds_comm_event_reporting

a placeholder for the output gboolean, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.0

-
-
-
-

qmi_message_pds_set_event_report_input_set_pds_comm_event_reporting ()

-
gboolean
-qmi_message_pds_set_event_report_input_set_pds_comm_event_reporting
-                               (QmiMessagePdsSetEventReportInput *self,
-                                gboolean value_pds_comm_event_reporting,
-                                GError **error);
-

Set the 'PDS Comm Event Reporting' field in the message.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessagePdsSetEventReportInput.

 

value_pds_comm_event_reporting

a gboolean.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if value -was successfully set, FALSE otherwise.

-
-

Since: 1.0

-
-
-
-

qmi_message_pds_set_event_report_input_get_umts_cp_network_initiated_prompt_reporting ()

-
gboolean
-qmi_message_pds_set_event_report_input_get_umts_cp_network_initiated_prompt_reporting
-                               (QmiMessagePdsSetEventReportInput *self,
-                                gboolean *value_umts_cp_network_initiated_prompt_reporting,
-                                GError **error);
-

Get the 'UMTS CP Network Initiated Prompt Reporting' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessagePdsSetEventReportInput.

 

value_umts_cp_network_initiated_prompt_reporting

a placeholder for the output gboolean, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.0

-
-
-
-

qmi_message_pds_set_event_report_input_set_umts_cp_network_initiated_prompt_reporting ()

-
gboolean
-qmi_message_pds_set_event_report_input_set_umts_cp_network_initiated_prompt_reporting
-                               (QmiMessagePdsSetEventReportInput *self,
-                                gboolean value_umts_cp_network_initiated_prompt_reporting,
-                                GError **error);
-

Set the 'UMTS CP Network Initiated Prompt Reporting' field in the message.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessagePdsSetEventReportInput.

 

value_umts_cp_network_initiated_prompt_reporting

a gboolean.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if value -was successfully set, FALSE otherwise.

-
-

Since: 1.0

-
-
-
-

qmi_message_pds_set_event_report_input_get_supl_network_initiated_prompt_reporting ()

-
gboolean
-qmi_message_pds_set_event_report_input_get_supl_network_initiated_prompt_reporting
-                               (QmiMessagePdsSetEventReportInput *self,
-                                gboolean *value_supl_network_initiated_prompt_reporting,
-                                GError **error);
-

Get the 'SUPL Network Initiated Prompt Reporting' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessagePdsSetEventReportInput.

 

value_supl_network_initiated_prompt_reporting

a placeholder for the output gboolean, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.0

-
-
-
-

qmi_message_pds_set_event_report_input_set_supl_network_initiated_prompt_reporting ()

-
gboolean
-qmi_message_pds_set_event_report_input_set_supl_network_initiated_prompt_reporting
-                               (QmiMessagePdsSetEventReportInput *self,
-                                gboolean value_supl_network_initiated_prompt_reporting,
-                                GError **error);
-

Set the 'SUPL Network Initiated Prompt Reporting' field in the message.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessagePdsSetEventReportInput.

 

value_supl_network_initiated_prompt_reporting

a gboolean.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if value -was successfully set, FALSE otherwise.

-
-

Since: 1.0

-
-
-
-

qmi_message_pds_set_event_report_input_get_vx_network_initiated_request_reporting ()

-
gboolean
-qmi_message_pds_set_event_report_input_get_vx_network_initiated_request_reporting
-                               (QmiMessagePdsSetEventReportInput *self,
-                                gboolean *value_vx_network_initiated_request_reporting,
-                                GError **error);
-

Get the 'VX Network Initiated Request Reporting' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessagePdsSetEventReportInput.

 

value_vx_network_initiated_request_reporting

a placeholder for the output gboolean, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.0

-
-
-
-

qmi_message_pds_set_event_report_input_set_vx_network_initiated_request_reporting ()

-
gboolean
-qmi_message_pds_set_event_report_input_set_vx_network_initiated_request_reporting
-                               (QmiMessagePdsSetEventReportInput *self,
-                                gboolean value_vx_network_initiated_request_reporting,
-                                GError **error);
-

Set the 'VX Network Initiated Request Reporting' field in the message.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessagePdsSetEventReportInput.

 

value_vx_network_initiated_request_reporting

a gboolean.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if value -was successfully set, FALSE otherwise.

-
-

Since: 1.0

-
-
-
-

qmi_message_pds_set_event_report_input_get_satellite_information_reporting ()

-
gboolean
-qmi_message_pds_set_event_report_input_get_satellite_information_reporting
-                               (QmiMessagePdsSetEventReportInput *self,
-                                gboolean *value_satellite_information_reporting,
-                                GError **error);
-

Get the 'Satellite Information Reporting' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessagePdsSetEventReportInput.

 

value_satellite_information_reporting

a placeholder for the output gboolean, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.0

-
-
-
-

qmi_message_pds_set_event_report_input_set_satellite_information_reporting ()

-
gboolean
-qmi_message_pds_set_event_report_input_set_satellite_information_reporting
-                               (QmiMessagePdsSetEventReportInput *self,
-                                gboolean value_satellite_information_reporting,
-                                GError **error);
-

Set the 'Satellite Information Reporting' field in the message.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessagePdsSetEventReportInput.

 

value_satellite_information_reporting

a gboolean.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if value -was successfully set, FALSE otherwise.

-
-

Since: 1.0

-
-
-
-

qmi_message_pds_set_event_report_input_get_external_wifi_position_request_reporting ()

-
gboolean
-qmi_message_pds_set_event_report_input_get_external_wifi_position_request_reporting
-                               (QmiMessagePdsSetEventReportInput *self,
-                                gboolean *value_external_wifi_position_request_reporting,
-                                GError **error);
-

Get the 'External WIFI Position Request Reporting' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessagePdsSetEventReportInput.

 

value_external_wifi_position_request_reporting

a placeholder for the output gboolean, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.0

-
-
-
-

qmi_message_pds_set_event_report_input_set_external_wifi_position_request_reporting ()

-
gboolean
-qmi_message_pds_set_event_report_input_set_external_wifi_position_request_reporting
-                               (QmiMessagePdsSetEventReportInput *self,
-                                gboolean value_external_wifi_position_request_reporting,
-                                GError **error);
-

Set the 'External WIFI Position Request Reporting' field in the message.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessagePdsSetEventReportInput.

 

value_external_wifi_position_request_reporting

a gboolean.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if value -was successfully set, FALSE otherwise.

-
-

Since: 1.0

-
-
-
-

qmi_message_pds_set_event_report_input_get_external_time_injection_request_reporting ()

-
gboolean
-qmi_message_pds_set_event_report_input_get_external_time_injection_request_reporting
-                               (QmiMessagePdsSetEventReportInput *self,
-                                gboolean *value_external_time_injection_request_reporting,
-                                GError **error);
-

Get the 'External Time Injection Request Reporting' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessagePdsSetEventReportInput.

 

value_external_time_injection_request_reporting

a placeholder for the output gboolean, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.0

-
-
-
-

qmi_message_pds_set_event_report_input_set_external_time_injection_request_reporting ()

-
gboolean
-qmi_message_pds_set_event_report_input_set_external_time_injection_request_reporting
-                               (QmiMessagePdsSetEventReportInput *self,
-                                gboolean value_external_time_injection_request_reporting,
-                                GError **error);
-

Set the 'External Time Injection Request Reporting' field in the message.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessagePdsSetEventReportInput.

 

value_external_time_injection_request_reporting

a gboolean.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if value -was successfully set, FALSE otherwise.

-
-

Since: 1.0

-
-
-
-

qmi_message_pds_set_event_report_input_get_external_xtra_data_request_reporting ()

-
gboolean
-qmi_message_pds_set_event_report_input_get_external_xtra_data_request_reporting
-                               (QmiMessagePdsSetEventReportInput *self,
-                                gboolean *value_external_xtra_data_request_reporting,
-                                GError **error);
-

Get the 'External XTRA Data Request Reporting' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessagePdsSetEventReportInput.

 

value_external_xtra_data_request_reporting

a placeholder for the output gboolean, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.0

-
-
-
-

qmi_message_pds_set_event_report_input_set_external_xtra_data_request_reporting ()

-
gboolean
-qmi_message_pds_set_event_report_input_set_external_xtra_data_request_reporting
-                               (QmiMessagePdsSetEventReportInput *self,
-                                gboolean value_external_xtra_data_request_reporting,
-                                GError **error);
-

Set the 'External XTRA Data Request Reporting' field in the message.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessagePdsSetEventReportInput.

 

value_external_xtra_data_request_reporting

a gboolean.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if value -was successfully set, FALSE otherwise.

-
-

Since: 1.0

-
-
-
-

qmi_message_pds_set_event_report_input_get_parsed_position_reporting ()

-
gboolean
-qmi_message_pds_set_event_report_input_get_parsed_position_reporting
-                               (QmiMessagePdsSetEventReportInput *self,
-                                gboolean *value_parsed_position_reporting,
-                                GError **error);
-

Get the 'Parsed Position Reporting' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessagePdsSetEventReportInput.

 

value_parsed_position_reporting

a placeholder for the output gboolean, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.0

-
-
-
-

qmi_message_pds_set_event_report_input_set_parsed_position_reporting ()

-
gboolean
-qmi_message_pds_set_event_report_input_set_parsed_position_reporting
-                               (QmiMessagePdsSetEventReportInput *self,
-                                gboolean value_parsed_position_reporting,
-                                GError **error);
-

Set the 'Parsed Position Reporting' field in the message.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessagePdsSetEventReportInput.

 

value_parsed_position_reporting

a gboolean.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if value -was successfully set, FALSE otherwise.

-
-

Since: 1.0

-
-
-
-

qmi_message_pds_set_event_report_input_get_extended_nmea_position_reporting ()

-
gboolean
-qmi_message_pds_set_event_report_input_get_extended_nmea_position_reporting
-                               (QmiMessagePdsSetEventReportInput *self,
-                                gboolean *value_extended_nmea_position_reporting,
-                                GError **error);
-

Get the 'Extended NMEA Position Reporting' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessagePdsSetEventReportInput.

 

value_extended_nmea_position_reporting

a placeholder for the output gboolean, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.0

-
-
-
-

qmi_message_pds_set_event_report_input_set_extended_nmea_position_reporting ()

-
gboolean
-qmi_message_pds_set_event_report_input_set_extended_nmea_position_reporting
-                               (QmiMessagePdsSetEventReportInput *self,
-                                gboolean value_extended_nmea_position_reporting,
-                                GError **error);
-

Set the 'Extended NMEA Position Reporting' field in the message.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessagePdsSetEventReportInput.

 

value_extended_nmea_position_reporting

a gboolean.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if value -was successfully set, FALSE otherwise.

-
-

Since: 1.0

-
-
-
-

qmi_message_pds_set_event_report_input_get_nmea_position_reporting ()

-
gboolean
-qmi_message_pds_set_event_report_input_get_nmea_position_reporting
-                               (QmiMessagePdsSetEventReportInput *self,
-                                gboolean *value_nmea_position_reporting,
-                                GError **error);
-

Get the 'NMEA Position Reporting' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessagePdsSetEventReportInput.

 

value_nmea_position_reporting

a placeholder for the output gboolean, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.0

-
-
-
-

qmi_message_pds_set_event_report_input_set_nmea_position_reporting ()

-
gboolean
-qmi_message_pds_set_event_report_input_set_nmea_position_reporting
-                               (QmiMessagePdsSetEventReportInput *self,
-                                gboolean value_nmea_position_reporting,
-                                GError **error);
-

Set the 'NMEA Position Reporting' field in the message.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessagePdsSetEventReportInput.

 

value_nmea_position_reporting

a gboolean.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if value -was successfully set, FALSE otherwise.

-
-

Since: 1.0

-
-
-
-

qmi_message_pds_set_event_report_output_ref ()

-
QmiMessagePdsSetEventReportOutput *
-qmi_message_pds_set_event_report_output_ref
-                               (QmiMessagePdsSetEventReportOutput *self);
-

Atomically increments the reference count of self - by one.

-
-

Parameters

-
----- - - - - - -

self

a QmiMessagePdsSetEventReportOutput.

 
-
-
-

Returns

-

the new reference to self -.

-
-

Since: 1.0

-
-
-
-

qmi_message_pds_set_event_report_output_unref ()

-
void
-qmi_message_pds_set_event_report_output_unref
-                               (QmiMessagePdsSetEventReportOutput *self);
-

Atomically decrements the reference count of self - by one. -If the reference count drops to 0, self - is completely disposed.

-
-

Parameters

-
----- - - - - - -

self

a QmiMessagePdsSetEventReportOutput.

 
-
-

Since: 1.0

-
-
-
-

qmi_message_pds_set_event_report_output_get_result ()

-
gboolean
-qmi_message_pds_set_event_report_output_get_result
-                               (QmiMessagePdsSetEventReportOutput *self,
-                                GError **error);
-

Get the result of the QMI operation.

-
-

Parameters

-
----- - - - - - - - - - - - - -

self

a QmiMessagePdsSetEventReportOutput.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the QMI operation succeeded, FALSE if error -is set.

-
-

Since: 1.0

-
-
-
-

qmi_client_pds_set_event_report ()

-
void
-qmi_client_pds_set_event_report (QmiClientPds *self,
-                                 QmiMessagePdsSetEventReportInput *input,
-                                 guint timeout,
-                                 GCancellable *cancellable,
-                                 GAsyncReadyCallback callback,
-                                 gpointer user_data);
-

Asynchronously sends a Set Event Report request to the device.

-

When the operation is finished, callback - will be invoked in the thread-default main loop of the thread you are calling this method from.

-

You can then call qmi_client_pds_set_event_report_finish() to get the result of the operation.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

self

a QmiClientPds.

 

input

a QmiMessagePdsSetEventReportInput.

 

timeout

maximum time to wait for the method to complete, in seconds.

 

cancellable

a GCancellable or NULL.

 

callback

a GAsyncReadyCallback to call when the request is satisfied.

 

user_data

user data to pass to callback -.

 
-
-

Since: 1.0

-
-
-
-

qmi_client_pds_set_event_report_finish ()

-
QmiMessagePdsSetEventReportOutput *
-qmi_client_pds_set_event_report_finish
-                               (QmiClientPds *self,
-                                GAsyncResult *res,
-                                GError **error);
-

Finishes an async operation started with qmi_client_pds_set_event_report().

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiClientPds.

 

res

the GAsyncResult obtained from the GAsyncReadyCallback passed to qmi_client_pds_set_event_report().

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

a QmiMessagePdsSetEventReportOutput, or NULL if error -is set. The returned value should be freed with qmi_message_pds_set_event_report_output_unref().

-
-

Since: 1.0

-
-
-
-

Types and Values

-
-

QmiMessagePdsSetEventReportInput

-
typedef struct _QmiMessagePdsSetEventReportInput QmiMessagePdsSetEventReportInput;
-

The QmiMessagePdsSetEventReportInput structure contains private data and should only be accessed -using the provided API.

-

Since: 1.0

-
-
-
-

QmiMessagePdsSetEventReportOutput

-
typedef struct _QmiMessagePdsSetEventReportOutput QmiMessagePdsSetEventReportOutput;
-

The QmiMessagePdsSetEventReportOutput structure contains private data and should only be accessed -using the provided API.

-

Since: 1.0

-
-
-
- - - \ No newline at end of file diff -Nru libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-PDS-Set-Event-Report-request.html libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-PDS-Set-Event-Report-request.html --- libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-PDS-Set-Event-Report-request.html 1970-01-01 01:00:00.000000000 +0100 +++ libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-PDS-Set-Event-Report-request.html 2019-01-08 15:19:02.000000000 +0100 @@ -0,0 +1,2469 @@ + + + + +PDS Set Event Report request: libqmi-glib Reference Manual + + + + + + + + + + + + + + + + +
+
+
+ + +
+

PDS Set Event Report request

+

PDS Set Event Report request

+
+
+

Functions

+
++++ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+QmiMessagePdsSetEventReportInput * + +qmi_message_pds_set_event_report_input_new () +
+QmiMessagePdsSetEventReportInput * + +qmi_message_pds_set_event_report_input_ref () +
+void + +qmi_message_pds_set_event_report_input_unref () +
+gboolean + +qmi_message_pds_set_event_report_input_get_extended_external_xtra_data_request_reporting () +
+gboolean + +qmi_message_pds_set_event_report_input_set_extended_external_xtra_data_request_reporting () +
+gboolean + +qmi_message_pds_set_event_report_input_get_nmea_debug_strings_reporting () +
+gboolean + +qmi_message_pds_set_event_report_input_set_nmea_debug_strings_reporting () +
+gboolean + +qmi_message_pds_set_event_report_input_get_heading_uncertainty_reporting () +
+gboolean + +qmi_message_pds_set_event_report_input_set_heading_uncertainty_reporting () +
+gboolean + +qmi_message_pds_set_event_report_input_get_time_source_information_reporting () +
+gboolean + +qmi_message_pds_set_event_report_input_set_time_source_information_reporting () +
+gboolean + +qmi_message_pds_set_event_report_input_get_sensor_data_usage_indicator_reporting () +
+gboolean + +qmi_message_pds_set_event_report_input_set_sensor_data_usage_indicator_reporting () +
+gboolean + +qmi_message_pds_set_event_report_input_get_position_reliability_indicator_reporting () +
+gboolean + +qmi_message_pds_set_event_report_input_set_position_reliability_indicator_reporting () +
+gboolean + +qmi_message_pds_set_event_report_input_get_time_sync_request_reporting () +
+gboolean + +qmi_message_pds_set_event_report_input_set_time_sync_request_reporting () +
+gboolean + +qmi_message_pds_set_event_report_input_get_gyro_data_streaming_ready_reporting () +
+gboolean + +qmi_message_pds_set_event_report_input_set_gyro_data_streaming_ready_reporting () +
+gboolean + +qmi_message_pds_set_event_report_input_get_accelerometer_data_streaming_ready_reporting () +
+gboolean + +qmi_message_pds_set_event_report_input_set_accelerometer_data_streaming_ready_reporting () +
+gboolean + +qmi_message_pds_set_event_report_input_get_pds_comm_event_reporting () +
+gboolean + +qmi_message_pds_set_event_report_input_set_pds_comm_event_reporting () +
+gboolean + +qmi_message_pds_set_event_report_input_get_umts_cp_network_initiated_prompt_reporting () +
+gboolean + +qmi_message_pds_set_event_report_input_set_umts_cp_network_initiated_prompt_reporting () +
+gboolean + +qmi_message_pds_set_event_report_input_get_supl_network_initiated_prompt_reporting () +
+gboolean + +qmi_message_pds_set_event_report_input_set_supl_network_initiated_prompt_reporting () +
+gboolean + +qmi_message_pds_set_event_report_input_get_vx_network_initiated_request_reporting () +
+gboolean + +qmi_message_pds_set_event_report_input_set_vx_network_initiated_request_reporting () +
+gboolean + +qmi_message_pds_set_event_report_input_get_satellite_information_reporting () +
+gboolean + +qmi_message_pds_set_event_report_input_set_satellite_information_reporting () +
+gboolean + +qmi_message_pds_set_event_report_input_get_external_wifi_position_request_reporting () +
+gboolean + +qmi_message_pds_set_event_report_input_set_external_wifi_position_request_reporting () +
+gboolean + +qmi_message_pds_set_event_report_input_get_external_time_injection_request_reporting () +
+gboolean + +qmi_message_pds_set_event_report_input_set_external_time_injection_request_reporting () +
+gboolean + +qmi_message_pds_set_event_report_input_get_external_xtra_data_request_reporting () +
+gboolean + +qmi_message_pds_set_event_report_input_set_external_xtra_data_request_reporting () +
+gboolean + +qmi_message_pds_set_event_report_input_get_parsed_position_reporting () +
+gboolean + +qmi_message_pds_set_event_report_input_set_parsed_position_reporting () +
+gboolean + +qmi_message_pds_set_event_report_input_get_extended_nmea_position_reporting () +
+gboolean + +qmi_message_pds_set_event_report_input_set_extended_nmea_position_reporting () +
+gboolean + +qmi_message_pds_set_event_report_input_get_nmea_position_reporting () +
+gboolean + +qmi_message_pds_set_event_report_input_set_nmea_position_reporting () +
+QmiMessagePdsSetEventReportOutput * + +qmi_message_pds_set_event_report_output_ref () +
+void + +qmi_message_pds_set_event_report_output_unref () +
+gboolean + +qmi_message_pds_set_event_report_output_get_result () +
+void + +qmi_client_pds_set_event_report () +
+QmiMessagePdsSetEventReportOutput * + +qmi_client_pds_set_event_report_finish () +
+
+
+

Types and Values

+ +
+
+

Object Hierarchy

+
    GBoxed
+    ├── QmiMessagePdsSetEventReportInput
+    ╰── QmiMessagePdsSetEventReportOutput
+
+
+
+

Description

+
+
+

Functions

+
+

qmi_message_pds_set_event_report_input_new ()

+
QmiMessagePdsSetEventReportInput *
+qmi_message_pds_set_event_report_input_new
+                               (void);
+

Allocates a new QmiMessagePdsSetEventReportInput.

+
+

Returns

+

the newly created QmiMessagePdsSetEventReportInput. The returned value should be freed with qmi_message_pds_set_event_report_input_unref().

+
+

Since: 1.0

+
+
+
+

qmi_message_pds_set_event_report_input_ref ()

+
QmiMessagePdsSetEventReportInput *
+qmi_message_pds_set_event_report_input_ref
+                               (QmiMessagePdsSetEventReportInput *self);
+

Atomically increments the reference count of self + by one.

+
+

Parameters

+
+++++ + + + + + +

self

a QmiMessagePdsSetEventReportInput.

 
+
+
+

Returns

+

the new reference to self +.

+
+

Since: 1.0

+
+
+
+

qmi_message_pds_set_event_report_input_unref ()

+
void
+qmi_message_pds_set_event_report_input_unref
+                               (QmiMessagePdsSetEventReportInput *self);
+

Atomically decrements the reference count of self + by one. +If the reference count drops to 0, self + is completely disposed.

+
+

Parameters

+
+++++ + + + + + +

self

a QmiMessagePdsSetEventReportInput.

 
+
+

Since: 1.0

+
+
+
+

qmi_message_pds_set_event_report_input_get_extended_external_xtra_data_request_reporting ()

+
gboolean
+qmi_message_pds_set_event_report_input_get_extended_external_xtra_data_request_reporting
+                               (QmiMessagePdsSetEventReportInput *self,
+                                gboolean *value_extended_external_xtra_data_request_reporting,
+                                GError **error);
+

Get the 'Extended External XTRA Data Request Reporting' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessagePdsSetEventReportInput.

 

value_extended_external_xtra_data_request_reporting

a placeholder for the output gboolean, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.0

+
+
+
+

qmi_message_pds_set_event_report_input_set_extended_external_xtra_data_request_reporting ()

+
gboolean
+qmi_message_pds_set_event_report_input_set_extended_external_xtra_data_request_reporting
+                               (QmiMessagePdsSetEventReportInput *self,
+                                gboolean value_extended_external_xtra_data_request_reporting,
+                                GError **error);
+

Set the 'Extended External XTRA Data Request Reporting' field in the message.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessagePdsSetEventReportInput.

 

value_extended_external_xtra_data_request_reporting

a gboolean.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if value +was successfully set, FALSE otherwise.

+
+

Since: 1.0

+
+
+
+

qmi_message_pds_set_event_report_input_get_nmea_debug_strings_reporting ()

+
gboolean
+qmi_message_pds_set_event_report_input_get_nmea_debug_strings_reporting
+                               (QmiMessagePdsSetEventReportInput *self,
+                                gboolean *value_nmea_debug_strings_reporting,
+                                GError **error);
+

Get the 'NMEA Debug Strings Reporting' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessagePdsSetEventReportInput.

 

value_nmea_debug_strings_reporting

a placeholder for the output gboolean, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.0

+
+
+
+

qmi_message_pds_set_event_report_input_set_nmea_debug_strings_reporting ()

+
gboolean
+qmi_message_pds_set_event_report_input_set_nmea_debug_strings_reporting
+                               (QmiMessagePdsSetEventReportInput *self,
+                                gboolean value_nmea_debug_strings_reporting,
+                                GError **error);
+

Set the 'NMEA Debug Strings Reporting' field in the message.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessagePdsSetEventReportInput.

 

value_nmea_debug_strings_reporting

a gboolean.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if value +was successfully set, FALSE otherwise.

+
+

Since: 1.0

+
+
+
+

qmi_message_pds_set_event_report_input_get_heading_uncertainty_reporting ()

+
gboolean
+qmi_message_pds_set_event_report_input_get_heading_uncertainty_reporting
+                               (QmiMessagePdsSetEventReportInput *self,
+                                gboolean *value_heading_uncertainty_reporting,
+                                GError **error);
+

Get the 'Heading Uncertainty Reporting' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessagePdsSetEventReportInput.

 

value_heading_uncertainty_reporting

a placeholder for the output gboolean, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.0

+
+
+
+

qmi_message_pds_set_event_report_input_set_heading_uncertainty_reporting ()

+
gboolean
+qmi_message_pds_set_event_report_input_set_heading_uncertainty_reporting
+                               (QmiMessagePdsSetEventReportInput *self,
+                                gboolean value_heading_uncertainty_reporting,
+                                GError **error);
+

Set the 'Heading Uncertainty Reporting' field in the message.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessagePdsSetEventReportInput.

 

value_heading_uncertainty_reporting

a gboolean.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if value +was successfully set, FALSE otherwise.

+
+

Since: 1.0

+
+
+
+

qmi_message_pds_set_event_report_input_get_time_source_information_reporting ()

+
gboolean
+qmi_message_pds_set_event_report_input_get_time_source_information_reporting
+                               (QmiMessagePdsSetEventReportInput *self,
+                                gboolean *value_time_source_information_reporting,
+                                GError **error);
+

Get the 'Time Source Information Reporting' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessagePdsSetEventReportInput.

 

value_time_source_information_reporting

a placeholder for the output gboolean, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.0

+
+
+
+

qmi_message_pds_set_event_report_input_set_time_source_information_reporting ()

+
gboolean
+qmi_message_pds_set_event_report_input_set_time_source_information_reporting
+                               (QmiMessagePdsSetEventReportInput *self,
+                                gboolean value_time_source_information_reporting,
+                                GError **error);
+

Set the 'Time Source Information Reporting' field in the message.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessagePdsSetEventReportInput.

 

value_time_source_information_reporting

a gboolean.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if value +was successfully set, FALSE otherwise.

+
+

Since: 1.0

+
+
+
+

qmi_message_pds_set_event_report_input_get_sensor_data_usage_indicator_reporting ()

+
gboolean
+qmi_message_pds_set_event_report_input_get_sensor_data_usage_indicator_reporting
+                               (QmiMessagePdsSetEventReportInput *self,
+                                gboolean *value_sensor_data_usage_indicator_reporting,
+                                GError **error);
+

Get the 'Sensor Data Usage Indicator Reporting' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessagePdsSetEventReportInput.

 

value_sensor_data_usage_indicator_reporting

a placeholder for the output gboolean, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.0

+
+
+
+

qmi_message_pds_set_event_report_input_set_sensor_data_usage_indicator_reporting ()

+
gboolean
+qmi_message_pds_set_event_report_input_set_sensor_data_usage_indicator_reporting
+                               (QmiMessagePdsSetEventReportInput *self,
+                                gboolean value_sensor_data_usage_indicator_reporting,
+                                GError **error);
+

Set the 'Sensor Data Usage Indicator Reporting' field in the message.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessagePdsSetEventReportInput.

 

value_sensor_data_usage_indicator_reporting

a gboolean.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if value +was successfully set, FALSE otherwise.

+
+

Since: 1.0

+
+
+
+

qmi_message_pds_set_event_report_input_get_position_reliability_indicator_reporting ()

+
gboolean
+qmi_message_pds_set_event_report_input_get_position_reliability_indicator_reporting
+                               (QmiMessagePdsSetEventReportInput *self,
+                                gboolean *value_position_reliability_indicator_reporting,
+                                GError **error);
+

Get the 'Position Reliability Indicator Reporting' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessagePdsSetEventReportInput.

 

value_position_reliability_indicator_reporting

a placeholder for the output gboolean, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.0

+
+
+
+

qmi_message_pds_set_event_report_input_set_position_reliability_indicator_reporting ()

+
gboolean
+qmi_message_pds_set_event_report_input_set_position_reliability_indicator_reporting
+                               (QmiMessagePdsSetEventReportInput *self,
+                                gboolean value_position_reliability_indicator_reporting,
+                                GError **error);
+

Set the 'Position Reliability Indicator Reporting' field in the message.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessagePdsSetEventReportInput.

 

value_position_reliability_indicator_reporting

a gboolean.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if value +was successfully set, FALSE otherwise.

+
+

Since: 1.0

+
+
+
+

qmi_message_pds_set_event_report_input_get_time_sync_request_reporting ()

+
gboolean
+qmi_message_pds_set_event_report_input_get_time_sync_request_reporting
+                               (QmiMessagePdsSetEventReportInput *self,
+                                gboolean *value_time_sync_request_reporting,
+                                GError **error);
+

Get the 'Time Sync Request Reporting' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessagePdsSetEventReportInput.

 

value_time_sync_request_reporting

a placeholder for the output gboolean, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.0

+
+
+
+

qmi_message_pds_set_event_report_input_set_time_sync_request_reporting ()

+
gboolean
+qmi_message_pds_set_event_report_input_set_time_sync_request_reporting
+                               (QmiMessagePdsSetEventReportInput *self,
+                                gboolean value_time_sync_request_reporting,
+                                GError **error);
+

Set the 'Time Sync Request Reporting' field in the message.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessagePdsSetEventReportInput.

 

value_time_sync_request_reporting

a gboolean.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if value +was successfully set, FALSE otherwise.

+
+

Since: 1.0

+
+
+
+

qmi_message_pds_set_event_report_input_get_gyro_data_streaming_ready_reporting ()

+
gboolean
+qmi_message_pds_set_event_report_input_get_gyro_data_streaming_ready_reporting
+                               (QmiMessagePdsSetEventReportInput *self,
+                                gboolean *value_gyro_data_streaming_ready_reporting,
+                                GError **error);
+

Get the 'Gyro Data Streaming Ready Reporting' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessagePdsSetEventReportInput.

 

value_gyro_data_streaming_ready_reporting

a placeholder for the output gboolean, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.0

+
+
+
+

qmi_message_pds_set_event_report_input_set_gyro_data_streaming_ready_reporting ()

+
gboolean
+qmi_message_pds_set_event_report_input_set_gyro_data_streaming_ready_reporting
+                               (QmiMessagePdsSetEventReportInput *self,
+                                gboolean value_gyro_data_streaming_ready_reporting,
+                                GError **error);
+

Set the 'Gyro Data Streaming Ready Reporting' field in the message.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessagePdsSetEventReportInput.

 

value_gyro_data_streaming_ready_reporting

a gboolean.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if value +was successfully set, FALSE otherwise.

+
+

Since: 1.0

+
+
+
+

qmi_message_pds_set_event_report_input_get_accelerometer_data_streaming_ready_reporting ()

+
gboolean
+qmi_message_pds_set_event_report_input_get_accelerometer_data_streaming_ready_reporting
+                               (QmiMessagePdsSetEventReportInput *self,
+                                gboolean *value_accelerometer_data_streaming_ready_reporting,
+                                GError **error);
+

Get the 'Accelerometer Data Streaming Ready Reporting' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessagePdsSetEventReportInput.

 

value_accelerometer_data_streaming_ready_reporting

a placeholder for the output gboolean, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.0

+
+
+
+

qmi_message_pds_set_event_report_input_set_accelerometer_data_streaming_ready_reporting ()

+
gboolean
+qmi_message_pds_set_event_report_input_set_accelerometer_data_streaming_ready_reporting
+                               (QmiMessagePdsSetEventReportInput *self,
+                                gboolean value_accelerometer_data_streaming_ready_reporting,
+                                GError **error);
+

Set the 'Accelerometer Data Streaming Ready Reporting' field in the message.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessagePdsSetEventReportInput.

 

value_accelerometer_data_streaming_ready_reporting

a gboolean.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if value +was successfully set, FALSE otherwise.

+
+

Since: 1.0

+
+
+
+

qmi_message_pds_set_event_report_input_get_pds_comm_event_reporting ()

+
gboolean
+qmi_message_pds_set_event_report_input_get_pds_comm_event_reporting
+                               (QmiMessagePdsSetEventReportInput *self,
+                                gboolean *value_pds_comm_event_reporting,
+                                GError **error);
+

Get the 'PDS Comm Event Reporting' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessagePdsSetEventReportInput.

 

value_pds_comm_event_reporting

a placeholder for the output gboolean, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.0

+
+
+
+

qmi_message_pds_set_event_report_input_set_pds_comm_event_reporting ()

+
gboolean
+qmi_message_pds_set_event_report_input_set_pds_comm_event_reporting
+                               (QmiMessagePdsSetEventReportInput *self,
+                                gboolean value_pds_comm_event_reporting,
+                                GError **error);
+

Set the 'PDS Comm Event Reporting' field in the message.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessagePdsSetEventReportInput.

 

value_pds_comm_event_reporting

a gboolean.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if value +was successfully set, FALSE otherwise.

+
+

Since: 1.0

+
+
+
+

qmi_message_pds_set_event_report_input_get_umts_cp_network_initiated_prompt_reporting ()

+
gboolean
+qmi_message_pds_set_event_report_input_get_umts_cp_network_initiated_prompt_reporting
+                               (QmiMessagePdsSetEventReportInput *self,
+                                gboolean *value_umts_cp_network_initiated_prompt_reporting,
+                                GError **error);
+

Get the 'UMTS CP Network Initiated Prompt Reporting' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessagePdsSetEventReportInput.

 

value_umts_cp_network_initiated_prompt_reporting

a placeholder for the output gboolean, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.0

+
+
+
+

qmi_message_pds_set_event_report_input_set_umts_cp_network_initiated_prompt_reporting ()

+
gboolean
+qmi_message_pds_set_event_report_input_set_umts_cp_network_initiated_prompt_reporting
+                               (QmiMessagePdsSetEventReportInput *self,
+                                gboolean value_umts_cp_network_initiated_prompt_reporting,
+                                GError **error);
+

Set the 'UMTS CP Network Initiated Prompt Reporting' field in the message.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessagePdsSetEventReportInput.

 

value_umts_cp_network_initiated_prompt_reporting

a gboolean.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if value +was successfully set, FALSE otherwise.

+
+

Since: 1.0

+
+
+
+

qmi_message_pds_set_event_report_input_get_supl_network_initiated_prompt_reporting ()

+
gboolean
+qmi_message_pds_set_event_report_input_get_supl_network_initiated_prompt_reporting
+                               (QmiMessagePdsSetEventReportInput *self,
+                                gboolean *value_supl_network_initiated_prompt_reporting,
+                                GError **error);
+

Get the 'SUPL Network Initiated Prompt Reporting' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessagePdsSetEventReportInput.

 

value_supl_network_initiated_prompt_reporting

a placeholder for the output gboolean, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.0

+
+
+
+

qmi_message_pds_set_event_report_input_set_supl_network_initiated_prompt_reporting ()

+
gboolean
+qmi_message_pds_set_event_report_input_set_supl_network_initiated_prompt_reporting
+                               (QmiMessagePdsSetEventReportInput *self,
+                                gboolean value_supl_network_initiated_prompt_reporting,
+                                GError **error);
+

Set the 'SUPL Network Initiated Prompt Reporting' field in the message.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessagePdsSetEventReportInput.

 

value_supl_network_initiated_prompt_reporting

a gboolean.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if value +was successfully set, FALSE otherwise.

+
+

Since: 1.0

+
+
+
+

qmi_message_pds_set_event_report_input_get_vx_network_initiated_request_reporting ()

+
gboolean
+qmi_message_pds_set_event_report_input_get_vx_network_initiated_request_reporting
+                               (QmiMessagePdsSetEventReportInput *self,
+                                gboolean *value_vx_network_initiated_request_reporting,
+                                GError **error);
+

Get the 'VX Network Initiated Request Reporting' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessagePdsSetEventReportInput.

 

value_vx_network_initiated_request_reporting

a placeholder for the output gboolean, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.0

+
+
+
+

qmi_message_pds_set_event_report_input_set_vx_network_initiated_request_reporting ()

+
gboolean
+qmi_message_pds_set_event_report_input_set_vx_network_initiated_request_reporting
+                               (QmiMessagePdsSetEventReportInput *self,
+                                gboolean value_vx_network_initiated_request_reporting,
+                                GError **error);
+

Set the 'VX Network Initiated Request Reporting' field in the message.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessagePdsSetEventReportInput.

 

value_vx_network_initiated_request_reporting

a gboolean.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if value +was successfully set, FALSE otherwise.

+
+

Since: 1.0

+
+
+
+

qmi_message_pds_set_event_report_input_get_satellite_information_reporting ()

+
gboolean
+qmi_message_pds_set_event_report_input_get_satellite_information_reporting
+                               (QmiMessagePdsSetEventReportInput *self,
+                                gboolean *value_satellite_information_reporting,
+                                GError **error);
+

Get the 'Satellite Information Reporting' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessagePdsSetEventReportInput.

 

value_satellite_information_reporting

a placeholder for the output gboolean, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.0

+
+
+
+

qmi_message_pds_set_event_report_input_set_satellite_information_reporting ()

+
gboolean
+qmi_message_pds_set_event_report_input_set_satellite_information_reporting
+                               (QmiMessagePdsSetEventReportInput *self,
+                                gboolean value_satellite_information_reporting,
+                                GError **error);
+

Set the 'Satellite Information Reporting' field in the message.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessagePdsSetEventReportInput.

 

value_satellite_information_reporting

a gboolean.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if value +was successfully set, FALSE otherwise.

+
+

Since: 1.0

+
+
+
+

qmi_message_pds_set_event_report_input_get_external_wifi_position_request_reporting ()

+
gboolean
+qmi_message_pds_set_event_report_input_get_external_wifi_position_request_reporting
+                               (QmiMessagePdsSetEventReportInput *self,
+                                gboolean *value_external_wifi_position_request_reporting,
+                                GError **error);
+

Get the 'External WIFI Position Request Reporting' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessagePdsSetEventReportInput.

 

value_external_wifi_position_request_reporting

a placeholder for the output gboolean, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.0

+
+
+
+

qmi_message_pds_set_event_report_input_set_external_wifi_position_request_reporting ()

+
gboolean
+qmi_message_pds_set_event_report_input_set_external_wifi_position_request_reporting
+                               (QmiMessagePdsSetEventReportInput *self,
+                                gboolean value_external_wifi_position_request_reporting,
+                                GError **error);
+

Set the 'External WIFI Position Request Reporting' field in the message.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessagePdsSetEventReportInput.

 

value_external_wifi_position_request_reporting

a gboolean.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if value +was successfully set, FALSE otherwise.

+
+

Since: 1.0

+
+
+
+

qmi_message_pds_set_event_report_input_get_external_time_injection_request_reporting ()

+
gboolean
+qmi_message_pds_set_event_report_input_get_external_time_injection_request_reporting
+                               (QmiMessagePdsSetEventReportInput *self,
+                                gboolean *value_external_time_injection_request_reporting,
+                                GError **error);
+

Get the 'External Time Injection Request Reporting' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessagePdsSetEventReportInput.

 

value_external_time_injection_request_reporting

a placeholder for the output gboolean, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.0

+
+
+
+

qmi_message_pds_set_event_report_input_set_external_time_injection_request_reporting ()

+
gboolean
+qmi_message_pds_set_event_report_input_set_external_time_injection_request_reporting
+                               (QmiMessagePdsSetEventReportInput *self,
+                                gboolean value_external_time_injection_request_reporting,
+                                GError **error);
+

Set the 'External Time Injection Request Reporting' field in the message.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessagePdsSetEventReportInput.

 

value_external_time_injection_request_reporting

a gboolean.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if value +was successfully set, FALSE otherwise.

+
+

Since: 1.0

+
+
+
+

qmi_message_pds_set_event_report_input_get_external_xtra_data_request_reporting ()

+
gboolean
+qmi_message_pds_set_event_report_input_get_external_xtra_data_request_reporting
+                               (QmiMessagePdsSetEventReportInput *self,
+                                gboolean *value_external_xtra_data_request_reporting,
+                                GError **error);
+

Get the 'External XTRA Data Request Reporting' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessagePdsSetEventReportInput.

 

value_external_xtra_data_request_reporting

a placeholder for the output gboolean, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.0

+
+
+
+

qmi_message_pds_set_event_report_input_set_external_xtra_data_request_reporting ()

+
gboolean
+qmi_message_pds_set_event_report_input_set_external_xtra_data_request_reporting
+                               (QmiMessagePdsSetEventReportInput *self,
+                                gboolean value_external_xtra_data_request_reporting,
+                                GError **error);
+

Set the 'External XTRA Data Request Reporting' field in the message.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessagePdsSetEventReportInput.

 

value_external_xtra_data_request_reporting

a gboolean.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if value +was successfully set, FALSE otherwise.

+
+

Since: 1.0

+
+
+
+

qmi_message_pds_set_event_report_input_get_parsed_position_reporting ()

+
gboolean
+qmi_message_pds_set_event_report_input_get_parsed_position_reporting
+                               (QmiMessagePdsSetEventReportInput *self,
+                                gboolean *value_parsed_position_reporting,
+                                GError **error);
+

Get the 'Parsed Position Reporting' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessagePdsSetEventReportInput.

 

value_parsed_position_reporting

a placeholder for the output gboolean, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.0

+
+
+
+

qmi_message_pds_set_event_report_input_set_parsed_position_reporting ()

+
gboolean
+qmi_message_pds_set_event_report_input_set_parsed_position_reporting
+                               (QmiMessagePdsSetEventReportInput *self,
+                                gboolean value_parsed_position_reporting,
+                                GError **error);
+

Set the 'Parsed Position Reporting' field in the message.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessagePdsSetEventReportInput.

 

value_parsed_position_reporting

a gboolean.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if value +was successfully set, FALSE otherwise.

+
+

Since: 1.0

+
+
+
+

qmi_message_pds_set_event_report_input_get_extended_nmea_position_reporting ()

+
gboolean
+qmi_message_pds_set_event_report_input_get_extended_nmea_position_reporting
+                               (QmiMessagePdsSetEventReportInput *self,
+                                gboolean *value_extended_nmea_position_reporting,
+                                GError **error);
+

Get the 'Extended NMEA Position Reporting' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessagePdsSetEventReportInput.

 

value_extended_nmea_position_reporting

a placeholder for the output gboolean, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.0

+
+
+
+

qmi_message_pds_set_event_report_input_set_extended_nmea_position_reporting ()

+
gboolean
+qmi_message_pds_set_event_report_input_set_extended_nmea_position_reporting
+                               (QmiMessagePdsSetEventReportInput *self,
+                                gboolean value_extended_nmea_position_reporting,
+                                GError **error);
+

Set the 'Extended NMEA Position Reporting' field in the message.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessagePdsSetEventReportInput.

 

value_extended_nmea_position_reporting

a gboolean.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if value +was successfully set, FALSE otherwise.

+
+

Since: 1.0

+
+
+
+

qmi_message_pds_set_event_report_input_get_nmea_position_reporting ()

+
gboolean
+qmi_message_pds_set_event_report_input_get_nmea_position_reporting
+                               (QmiMessagePdsSetEventReportInput *self,
+                                gboolean *value_nmea_position_reporting,
+                                GError **error);
+

Get the 'NMEA Position Reporting' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessagePdsSetEventReportInput.

 

value_nmea_position_reporting

a placeholder for the output gboolean, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.0

+
+
+
+

qmi_message_pds_set_event_report_input_set_nmea_position_reporting ()

+
gboolean
+qmi_message_pds_set_event_report_input_set_nmea_position_reporting
+                               (QmiMessagePdsSetEventReportInput *self,
+                                gboolean value_nmea_position_reporting,
+                                GError **error);
+

Set the 'NMEA Position Reporting' field in the message.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessagePdsSetEventReportInput.

 

value_nmea_position_reporting

a gboolean.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if value +was successfully set, FALSE otherwise.

+
+

Since: 1.0

+
+
+
+

qmi_message_pds_set_event_report_output_ref ()

+
QmiMessagePdsSetEventReportOutput *
+qmi_message_pds_set_event_report_output_ref
+                               (QmiMessagePdsSetEventReportOutput *self);
+

Atomically increments the reference count of self + by one.

+
+

Parameters

+
+++++ + + + + + +

self

a QmiMessagePdsSetEventReportOutput.

 
+
+
+

Returns

+

the new reference to self +.

+
+

Since: 1.0

+
+
+
+

qmi_message_pds_set_event_report_output_unref ()

+
void
+qmi_message_pds_set_event_report_output_unref
+                               (QmiMessagePdsSetEventReportOutput *self);
+

Atomically decrements the reference count of self + by one. +If the reference count drops to 0, self + is completely disposed.

+
+

Parameters

+
+++++ + + + + + +

self

a QmiMessagePdsSetEventReportOutput.

 
+
+

Since: 1.0

+
+
+
+

qmi_message_pds_set_event_report_output_get_result ()

+
gboolean
+qmi_message_pds_set_event_report_output_get_result
+                               (QmiMessagePdsSetEventReportOutput *self,
+                                GError **error);
+

Get the result of the QMI operation.

+
+

Parameters

+
+++++ + + + + + + + + + + + + +

self

a QmiMessagePdsSetEventReportOutput.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the QMI operation succeeded, FALSE if error +is set.

+
+

Since: 1.0

+
+
+
+

qmi_client_pds_set_event_report ()

+
void
+qmi_client_pds_set_event_report (QmiClientPds *self,
+                                 QmiMessagePdsSetEventReportInput *input,
+                                 guint timeout,
+                                 GCancellable *cancellable,
+                                 GAsyncReadyCallback callback,
+                                 gpointer user_data);
+

Asynchronously sends a Set Event Report request to the device.

+

When the operation is finished, callback + will be invoked in the thread-default main loop of the thread you are calling this method from.

+

You can then call qmi_client_pds_set_event_report_finish() to get the result of the operation.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

self

a QmiClientPds.

 

input

a QmiMessagePdsSetEventReportInput.

 

timeout

maximum time to wait for the method to complete, in seconds.

 

cancellable

a GCancellable or NULL.

 

callback

a GAsyncReadyCallback to call when the request is satisfied.

 

user_data

user data to pass to callback +.

 
+
+

Since: 1.0

+
+
+
+

qmi_client_pds_set_event_report_finish ()

+
QmiMessagePdsSetEventReportOutput *
+qmi_client_pds_set_event_report_finish
+                               (QmiClientPds *self,
+                                GAsyncResult *res,
+                                GError **error);
+

Finishes an async operation started with qmi_client_pds_set_event_report().

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiClientPds.

 

res

the GAsyncResult obtained from the GAsyncReadyCallback passed to qmi_client_pds_set_event_report().

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

a QmiMessagePdsSetEventReportOutput, or NULL if error +is set. The returned value should be freed with qmi_message_pds_set_event_report_output_unref().

+
+

Since: 1.0

+
+
+
+

Types and Values

+
+

QmiMessagePdsSetEventReportInput

+
typedef struct _QmiMessagePdsSetEventReportInput QmiMessagePdsSetEventReportInput;
+

The QmiMessagePdsSetEventReportInput structure contains private data and should only be accessed +using the provided API.

+

Since: 1.0

+
+
+
+

QmiMessagePdsSetEventReportOutput

+
typedef struct _QmiMessagePdsSetEventReportOutput QmiMessagePdsSetEventReportOutput;
+

The QmiMessagePdsSetEventReportOutput structure contains private data and should only be accessed +using the provided API.

+

Since: 1.0

+
+
+
+ + + \ No newline at end of file diff -Nru libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-PDS-Set-GPS-Service-State.html libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-PDS-Set-GPS-Service-State.html --- libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-PDS-Set-GPS-Service-State.html 2017-03-22 12:28:29.000000000 +0100 +++ libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-PDS-Set-GPS-Service-State.html 1970-01-01 01:00:00.000000000 +0100 @@ -1,531 +0,0 @@ - - - - -PDS Set GPS Service State: libqmi-glib Reference Manual - - - - - - - - - - - - - - - - -
-
-
- - -
-

PDS Set GPS Service State

-

PDS Set GPS Service State

-
- -
-

Types and Values

- -
-
-

Object Hierarchy

-
    GBoxed
-    ├── QmiMessagePdsSetGpsServiceStateInput
-    ╰── QmiMessagePdsSetGpsServiceStateOutput
-
-
-
-

Description

-
-
-

Functions

-
-

qmi_message_pds_set_gps_service_state_input_new ()

-
QmiMessagePdsSetGpsServiceStateInput *
-qmi_message_pds_set_gps_service_state_input_new
-                               (void);
-

Allocates a new QmiMessagePdsSetGpsServiceStateInput.

-
-

Returns

-

the newly created QmiMessagePdsSetGpsServiceStateInput. The returned value should be freed with qmi_message_pds_set_gps_service_state_input_unref().

-
-

Since: 1.0

-
-
-
-

qmi_message_pds_set_gps_service_state_input_ref ()

-
QmiMessagePdsSetGpsServiceStateInput *
-qmi_message_pds_set_gps_service_state_input_ref
-                               (QmiMessagePdsSetGpsServiceStateInput *self);
-

Atomically increments the reference count of self - by one.

-
-

Parameters

-
----- - - - - - -

self

a QmiMessagePdsSetGpsServiceStateInput.

 
-
-
-

Returns

-

the new reference to self -.

-
-

Since: 1.0

-
-
-
-

qmi_message_pds_set_gps_service_state_input_unref ()

-
void
-qmi_message_pds_set_gps_service_state_input_unref
-                               (QmiMessagePdsSetGpsServiceStateInput *self);
-

Atomically decrements the reference count of self - by one. -If the reference count drops to 0, self - is completely disposed.

-
-

Parameters

-
----- - - - - - -

self

a QmiMessagePdsSetGpsServiceStateInput.

 
-
-

Since: 1.0

-
-
-
-

qmi_message_pds_set_gps_service_state_input_get_state ()

-
gboolean
-qmi_message_pds_set_gps_service_state_input_get_state
-                               (QmiMessagePdsSetGpsServiceStateInput *self,
-                                gboolean *value_state_gps_service_state,
-                                GError **error);
-

Get the 'State' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessagePdsSetGpsServiceStateInput.

 

value_state_gps_service_state

a placeholder for the output gboolean, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.0

-
-
-
-

qmi_message_pds_set_gps_service_state_input_set_state ()

-
gboolean
-qmi_message_pds_set_gps_service_state_input_set_state
-                               (QmiMessagePdsSetGpsServiceStateInput *self,
-                                gboolean value_state_gps_service_state,
-                                GError **error);
-

Set the 'State' field in the message.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessagePdsSetGpsServiceStateInput.

 

value_state_gps_service_state

a gboolean.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if value -was successfully set, FALSE otherwise.

-
-

Since: 1.0

-
-
-
-

qmi_message_pds_set_gps_service_state_output_ref ()

-
QmiMessagePdsSetGpsServiceStateOutput *
-qmi_message_pds_set_gps_service_state_output_ref
-                               (QmiMessagePdsSetGpsServiceStateOutput *self);
-

Atomically increments the reference count of self - by one.

-
-

Parameters

-
----- - - - - - -

self

a QmiMessagePdsSetGpsServiceStateOutput.

 
-
-
-

Returns

-

the new reference to self -.

-
-

Since: 1.0

-
-
-
-

qmi_message_pds_set_gps_service_state_output_unref ()

-
void
-qmi_message_pds_set_gps_service_state_output_unref
-                               (QmiMessagePdsSetGpsServiceStateOutput *self);
-

Atomically decrements the reference count of self - by one. -If the reference count drops to 0, self - is completely disposed.

-
-

Parameters

-
----- - - - - - -

self

a QmiMessagePdsSetGpsServiceStateOutput.

 
-
-

Since: 1.0

-
-
-
-

qmi_message_pds_set_gps_service_state_output_get_result ()

-
gboolean
-qmi_message_pds_set_gps_service_state_output_get_result
-                               (QmiMessagePdsSetGpsServiceStateOutput *self,
-                                GError **error);
-

Get the result of the QMI operation.

-
-

Parameters

-
----- - - - - - - - - - - - - -

self

a QmiMessagePdsSetGpsServiceStateOutput.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the QMI operation succeeded, FALSE if error -is set.

-
-

Since: 1.0

-
-
-
-

qmi_client_pds_set_gps_service_state ()

-
void
-qmi_client_pds_set_gps_service_state (QmiClientPds *self,
-                                      QmiMessagePdsSetGpsServiceStateInput *input,
-                                      guint timeout,
-                                      GCancellable *cancellable,
-                                      GAsyncReadyCallback callback,
-                                      gpointer user_data);
-

Asynchronously sends a Set GPS Service State request to the device.

-

When the operation is finished, callback - will be invoked in the thread-default main loop of the thread you are calling this method from.

-

You can then call qmi_client_pds_set_gps_service_state_finish() to get the result of the operation.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

self

a QmiClientPds.

 

input

a QmiMessagePdsSetGpsServiceStateInput.

 

timeout

maximum time to wait for the method to complete, in seconds.

 

cancellable

a GCancellable or NULL.

 

callback

a GAsyncReadyCallback to call when the request is satisfied.

 

user_data

user data to pass to callback -.

 
-
-

Since: 1.0

-
-
-
-

qmi_client_pds_set_gps_service_state_finish ()

-
QmiMessagePdsSetGpsServiceStateOutput *
-qmi_client_pds_set_gps_service_state_finish
-                               (QmiClientPds *self,
-                                GAsyncResult *res,
-                                GError **error);
-

Finishes an async operation started with qmi_client_pds_set_gps_service_state().

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiClientPds.

 

res

the GAsyncResult obtained from the GAsyncReadyCallback passed to qmi_client_pds_set_gps_service_state().

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

a QmiMessagePdsSetGpsServiceStateOutput, or NULL if error -is set. The returned value should be freed with qmi_message_pds_set_gps_service_state_output_unref().

-
-

Since: 1.0

-
-
-
-

Types and Values

-
-

QmiMessagePdsSetGpsServiceStateInput

-
typedef struct _QmiMessagePdsSetGpsServiceStateInput QmiMessagePdsSetGpsServiceStateInput;
-

The QmiMessagePdsSetGpsServiceStateInput structure contains private data and should only be accessed -using the provided API.

-

Since: 1.0

-
-
-
-

QmiMessagePdsSetGpsServiceStateOutput

-
typedef struct _QmiMessagePdsSetGpsServiceStateOutput QmiMessagePdsSetGpsServiceStateOutput;
-

The QmiMessagePdsSetGpsServiceStateOutput structure contains private data and should only be accessed -using the provided API.

-

Since: 1.0

-
-
-
- - - \ No newline at end of file diff -Nru libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-PDS-Set-GPS-Service-State-request.html libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-PDS-Set-GPS-Service-State-request.html --- libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-PDS-Set-GPS-Service-State-request.html 1970-01-01 01:00:00.000000000 +0100 +++ libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-PDS-Set-GPS-Service-State-request.html 2019-01-08 15:19:02.000000000 +0100 @@ -0,0 +1,531 @@ + + + + +PDS Set GPS Service State request: libqmi-glib Reference Manual + + + + + + + + + + + + + + + + +
+
+
+ + +
+

PDS Set GPS Service State request

+

PDS Set GPS Service State request

+
+ +
+

Types and Values

+ +
+
+

Object Hierarchy

+
    GBoxed
+    ├── QmiMessagePdsSetGpsServiceStateInput
+    ╰── QmiMessagePdsSetGpsServiceStateOutput
+
+
+
+

Description

+
+
+

Functions

+
+

qmi_message_pds_set_gps_service_state_input_new ()

+
QmiMessagePdsSetGpsServiceStateInput *
+qmi_message_pds_set_gps_service_state_input_new
+                               (void);
+

Allocates a new QmiMessagePdsSetGpsServiceStateInput.

+
+

Returns

+

the newly created QmiMessagePdsSetGpsServiceStateInput. The returned value should be freed with qmi_message_pds_set_gps_service_state_input_unref().

+
+

Since: 1.0

+
+
+
+

qmi_message_pds_set_gps_service_state_input_ref ()

+
QmiMessagePdsSetGpsServiceStateInput *
+qmi_message_pds_set_gps_service_state_input_ref
+                               (QmiMessagePdsSetGpsServiceStateInput *self);
+

Atomically increments the reference count of self + by one.

+
+

Parameters

+
+++++ + + + + + +

self

a QmiMessagePdsSetGpsServiceStateInput.

 
+
+
+

Returns

+

the new reference to self +.

+
+

Since: 1.0

+
+
+
+

qmi_message_pds_set_gps_service_state_input_unref ()

+
void
+qmi_message_pds_set_gps_service_state_input_unref
+                               (QmiMessagePdsSetGpsServiceStateInput *self);
+

Atomically decrements the reference count of self + by one. +If the reference count drops to 0, self + is completely disposed.

+
+

Parameters

+
+++++ + + + + + +

self

a QmiMessagePdsSetGpsServiceStateInput.

 
+
+

Since: 1.0

+
+
+
+

qmi_message_pds_set_gps_service_state_input_get_state ()

+
gboolean
+qmi_message_pds_set_gps_service_state_input_get_state
+                               (QmiMessagePdsSetGpsServiceStateInput *self,
+                                gboolean *value_state_gps_service_state,
+                                GError **error);
+

Get the 'State' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessagePdsSetGpsServiceStateInput.

 

value_state_gps_service_state

a placeholder for the output gboolean, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.0

+
+
+
+

qmi_message_pds_set_gps_service_state_input_set_state ()

+
gboolean
+qmi_message_pds_set_gps_service_state_input_set_state
+                               (QmiMessagePdsSetGpsServiceStateInput *self,
+                                gboolean value_state_gps_service_state,
+                                GError **error);
+

Set the 'State' field in the message.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessagePdsSetGpsServiceStateInput.

 

value_state_gps_service_state

a gboolean.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if value +was successfully set, FALSE otherwise.

+
+

Since: 1.0

+
+
+
+

qmi_message_pds_set_gps_service_state_output_ref ()

+
QmiMessagePdsSetGpsServiceStateOutput *
+qmi_message_pds_set_gps_service_state_output_ref
+                               (QmiMessagePdsSetGpsServiceStateOutput *self);
+

Atomically increments the reference count of self + by one.

+
+

Parameters

+
+++++ + + + + + +

self

a QmiMessagePdsSetGpsServiceStateOutput.

 
+
+
+

Returns

+

the new reference to self +.

+
+

Since: 1.0

+
+
+
+

qmi_message_pds_set_gps_service_state_output_unref ()

+
void
+qmi_message_pds_set_gps_service_state_output_unref
+                               (QmiMessagePdsSetGpsServiceStateOutput *self);
+

Atomically decrements the reference count of self + by one. +If the reference count drops to 0, self + is completely disposed.

+
+

Parameters

+
+++++ + + + + + +

self

a QmiMessagePdsSetGpsServiceStateOutput.

 
+
+

Since: 1.0

+
+
+
+

qmi_message_pds_set_gps_service_state_output_get_result ()

+
gboolean
+qmi_message_pds_set_gps_service_state_output_get_result
+                               (QmiMessagePdsSetGpsServiceStateOutput *self,
+                                GError **error);
+

Get the result of the QMI operation.

+
+

Parameters

+
+++++ + + + + + + + + + + + + +

self

a QmiMessagePdsSetGpsServiceStateOutput.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the QMI operation succeeded, FALSE if error +is set.

+
+

Since: 1.0

+
+
+
+

qmi_client_pds_set_gps_service_state ()

+
void
+qmi_client_pds_set_gps_service_state (QmiClientPds *self,
+                                      QmiMessagePdsSetGpsServiceStateInput *input,
+                                      guint timeout,
+                                      GCancellable *cancellable,
+                                      GAsyncReadyCallback callback,
+                                      gpointer user_data);
+

Asynchronously sends a Set GPS Service State request to the device.

+

When the operation is finished, callback + will be invoked in the thread-default main loop of the thread you are calling this method from.

+

You can then call qmi_client_pds_set_gps_service_state_finish() to get the result of the operation.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

self

a QmiClientPds.

 

input

a QmiMessagePdsSetGpsServiceStateInput.

 

timeout

maximum time to wait for the method to complete, in seconds.

 

cancellable

a GCancellable or NULL.

 

callback

a GAsyncReadyCallback to call when the request is satisfied.

 

user_data

user data to pass to callback +.

 
+
+

Since: 1.0

+
+
+
+

qmi_client_pds_set_gps_service_state_finish ()

+
QmiMessagePdsSetGpsServiceStateOutput *
+qmi_client_pds_set_gps_service_state_finish
+                               (QmiClientPds *self,
+                                GAsyncResult *res,
+                                GError **error);
+

Finishes an async operation started with qmi_client_pds_set_gps_service_state().

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiClientPds.

 

res

the GAsyncResult obtained from the GAsyncReadyCallback passed to qmi_client_pds_set_gps_service_state().

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

a QmiMessagePdsSetGpsServiceStateOutput, or NULL if error +is set. The returned value should be freed with qmi_message_pds_set_gps_service_state_output_unref().

+
+

Since: 1.0

+
+
+
+

Types and Values

+
+

QmiMessagePdsSetGpsServiceStateInput

+
typedef struct _QmiMessagePdsSetGpsServiceStateInput QmiMessagePdsSetGpsServiceStateInput;
+

The QmiMessagePdsSetGpsServiceStateInput structure contains private data and should only be accessed +using the provided API.

+

Since: 1.0

+
+
+
+

QmiMessagePdsSetGpsServiceStateOutput

+
typedef struct _QmiMessagePdsSetGpsServiceStateOutput QmiMessagePdsSetGpsServiceStateOutput;
+

The QmiMessagePdsSetGpsServiceStateOutput structure contains private data and should only be accessed +using the provided API.

+

Since: 1.0

+
+
+
+ + + \ No newline at end of file diff -Nru libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-QmiMessage.html libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-QmiMessage.html --- libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-QmiMessage.html 2017-03-22 12:28:28.000000000 +0100 +++ libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-QmiMessage.html 2019-01-08 15:19:02.000000000 +0100 @@ -3,12 +3,12 @@ QmiMessage: libqmi-glib Reference Manual - + - + @@ -155,14 +155,6 @@ gboolean -qmi_message_get_version_introduced () - - - - -gboolean - - qmi_message_get_version_introduced_full () @@ -355,7 +347,15 @@ gboolean -qmi_message_tlv_read_gfloat () +qmi_message_tlv_read_gfloat_endian () + + + + +gboolean + + +qmi_message_tlv_read_gdouble () @@ -418,14 +418,6 @@ gchar * -qmi_message_get_printable () - - - - -gchar * - - qmi_message_get_printable_full () @@ -514,7 +506,7 @@

Returns

-

a newly created QmiMessage. The returned value should be freed with qmi_message_unref().

+

a newly created QmiMessage. The returned value should be freed with qmi_message_unref().

[transfer full]

Since: 1.0

@@ -539,7 +531,7 @@

raw

-

raw data buffer.

+

raw data buffer.

[inout] @@ -552,7 +544,7 @@

Returns

-

a newly created QmiMessage, which should be freed with qmi_message_unref(). If raw +

a newly created QmiMessage, which should be freed with qmi_message_unref(). If raw doesn't contain a complete QMI message NULL is returned. If there is a complete QMI message but it appears not to be valid, NULL is returned and error is set.

[transfer full]

@@ -591,7 +583,7 @@

Returns

-

a newly created QmiMessage. The returned value should be freed with qmi_message_unref().

+

a newly created QmiMessage. The returned value should be freed with qmi_message_unref().

[transfer full]

Since: 1.8

@@ -894,7 +886,7 @@

length

-

return location for the size of the output buffer.

+

return location for the size of the output buffer.

[out] @@ -907,7 +899,7 @@

Returns

-

The raw data buffer, or NULL if error +

The raw data buffer, or NULL if error is set.

[transfer none]

@@ -915,54 +907,6 @@
-

qmi_message_get_version_introduced ()

-
gboolean
-qmi_message_get_version_introduced (QmiMessage *self,
-                                    guint *major,
-                                    guint *minor);
-
-

qmi_message_get_version_introduced has been deprecated since version 1.18 and should not be used in newly-written code.

-

Use qmi_message_get_version_introduced_full() instead.

-
-

Gets, if known, the service version in which the given message was first -introduced.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessage.

 

major

(out) return location for the major version.

 

minor

(out) return location for the minor version.

 
-
-
-

Returns

-

TRUE if major -and minor -are set, FALSE otherwise.

-
-

Since: 1.0

-
-
-

qmi_message_get_version_introduced_full ()

gboolean
 qmi_message_get_version_introduced_full
@@ -976,7 +920,7 @@
  provided, e.g. for
 vendor-specific messages.

If no context - given, the behavior is the same as qmi_message_get_version_introduced().

+ given, the behavior is the same as qmi_message_get_version_introduced().

Parameters

@@ -2284,13 +2228,14 @@
-

qmi_message_tlv_read_gfloat ()

+

qmi_message_tlv_read_gfloat_endian ()

gboolean
-qmi_message_tlv_read_gfloat (QmiMessage *self,
-                             gsize tlv_offset,
-                             gsize *offset,
-                             gfloat *out,
-                             GError **error);
+qmi_message_tlv_read_gfloat_endian (QmiMessage *self, + gsize tlv_offset, + gsize *offset, + QmiEndian endian, + gfloat *out, + GError **error);

Reads a 32-bit floating-point number from the TLV.

offset needs to point to a valid gsize @@ -2299,7 +2244,7 @@ is successfully read, offset will be updated to point past the read item.

-

Parameters

+

Parameters

@@ -2323,6 +2268,11 @@ + + + + + @@ -2336,7 +2286,7 @@
 

endian

source endianness, which will be swapped to host byte order if necessary.

 

out

return location for the read gfloat.

 
-

Returns

+

Returns

TRUE if the variable is successfully read, otherwise FALSE is returned and error is set.

@@ -2344,6 +2294,72 @@

+

qmi_message_tlv_read_gdouble ()

+
gboolean
+qmi_message_tlv_read_gdouble (QmiMessage *self,
+                              gsize tlv_offset,
+                              gsize *offset,
+                              QmiEndian endian,
+                              gdouble *out,
+                              GError **error);
+

Reads a 64-bit floating-point number from the TLV.

+

offset + needs to point to a valid gsize + specifying the index to start +reading from within the TLV value (0 for the first item). If the variable +is successfully read, offset + will be updated to point past the read item.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

self

a QmiMessage.

 

tlv_offset

offset that was returned by qmi_message_tlv_read_init().

 

offset

address of a the offset within the TLV value.

 

endian

source endianness, which will be swapped to host byte order if necessary.

 

out

return location for the read gdouble.

 

error

return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the variable is successfully read, otherwise FALSE is returned and error +is set.

+
+

Since: 1.22

+
+
+

qmi_message_tlv_read_string ()

gboolean
 qmi_message_tlv_read_string (QmiMessage *self,
@@ -2594,7 +2610,7 @@
 
 
 

length

-

return location for the length of the TLV.

+

return location for the length of the TLV.

[out] @@ -2602,7 +2618,7 @@

Returns

-

The raw data buffer of the TLV, or NULL if not found.

+

The raw data buffer of the TLV, or NULL if not found.

[transfer none]

Since: 1.0

@@ -2696,48 +2712,6 @@
-

qmi_message_get_printable ()

-
gchar *
-qmi_message_get_printable (QmiMessage *self,
-                           const gchar *line_prefix);
-
-

qmi_message_get_printable has been deprecated since version 1.18 and should not be used in newly-written code.

-

Use qmi_message_get_printable_full() instead.

-
-

Gets a printable string with the contents of the whole QMI message.

-

If known, the printable string will contain translated TLV values as well as the raw -data buffer contents.

-
-

Parameters

-
----- - - - - - - - - - - - - -

self

a QmiMessage.

 

line_prefix

prefix string to use in each new generated line.

 
-
-
-

Returns

-

a newly allocated string, which should be freed with g_free().

-

[transfer full]

-
-

Since: 1.0

-
-
-

qmi_message_get_printable_full ()

gchar *
 qmi_message_get_printable_full (QmiMessage *self,
@@ -2750,7 +2724,7 @@
  provided,
 e.g. for vendor-specific messages.

If no context - given, the behavior is the same as qmi_message_get_printable().

+ given, the behavior is the same as qmi_message_get_printable().

Parameters

@@ -2780,7 +2754,7 @@

Returns

-

a newly allocated string, which should be freed with g_free().

+

a newly allocated string, which should be freed with g_free().

[transfer full]

Since: 1.18

@@ -2835,7 +2809,7 @@

Returns

-

a newly allocated string, which should be freed with g_free().

+

a newly allocated string, which should be freed with g_free().

[transfer full]

Since: 1.0

@@ -2861,6 +2835,6 @@ +
Generated by GTK-Doc V1.29 \ No newline at end of file diff -Nru libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-QOS-enumerations-and-flags.html libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-QOS-enumerations-and-flags.html --- libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-QOS-enumerations-and-flags.html 1970-01-01 01:00:00.000000000 +0100 +++ libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-QOS-enumerations-and-flags.html 2019-01-08 15:19:02.000000000 +0100 @@ -0,0 +1,270 @@ + + + + +QOS enumerations and flags: libqmi-glib Reference Manual + + + + + + + + + +
+ + + + + + +
+
+
+ + +
+

QOS enumerations and flags

+

QOS enumerations and flags

+
+
+

Functions

+
++++ + + + + + + + + + + +
const gchar * + +qmi_qos_status_get_string () +
const gchar * + +qmi_qos_event_get_string () +
+
+
+

Types and Values

+
++++ + + + + + + + + + + +
enumQmiQosStatus
enumQmiQosEvent
+
+
+

Object Hierarchy

+
    GEnum
+    ├── QmiQosEvent
+    ╰── QmiQosStatus
+
+
+
+

Description

+

This section defines enumerations and flags used in the QOS service +interface.

+
+
+

Functions

+
+

qmi_qos_status_get_string ()

+
const gchar *
+qmi_qos_status_get_string (QmiQosStatus val);
+

Gets the nickname string for the QmiQosStatus specified at val +.

+
+

Parameters

+
+++++ + + + + + +

val

a QmiQosStatus.

 
+
+
+

Returns

+

a string with the nickname, or NULL if not found. Do not free the returned value.

+

[transfer none]

+
+

Since: 1.22

+
+
+
+

qmi_qos_event_get_string ()

+
const gchar *
+qmi_qos_event_get_string (QmiQosEvent val);
+

Gets the nickname string for the QmiQosEvent specified at val +.

+
+

Parameters

+
+++++ + + + + + +

val

a QmiQosEvent.

 
+
+
+

Returns

+

a string with the nickname, or NULL if not found. Do not free the returned value.

+

[transfer none]

+
+

Since: 1.22

+
+
+
+

Types and Values

+
+

enum QmiQosStatus

+

QoS flow status.

+
+

Members

+
+++++ + + + + + + + + + + + + + + + + + + + + + + +

QMI_QOS_STATUS_UNKNOWN

+

Unknown.

+
 

QMI_QOS_STATUS_ACTIVATED

+

Activated.

+
 

QMI_QOS_STATUS_SUSPENDED

+

Suspended.

+
 

QMI_QOS_STATUS_GONE

+

Gone.

+
 
+
+

Since: 1.22

+
+
+
+

enum QmiQosEvent

+

QoS event.

+
+

Members

+
+++++ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

QMI_QOS_EVENT_UNKNOWN

+

Unknown.

+
 

QMI_QOS_EVENT_ACTIVATED

+

Activated.

+
 

QMI_QOS_EVENT_SUSPENDED

+

Suspended.

+
 

QMI_QOS_EVENT_GONE

+

Gone.

+
 

QMI_QOS_EVENT_MODIFY_ACCEPTED

+

Modify accepted.

+
 

QMI_QOS_EVENT_MODIFY_REJECTED

+

Modify rejected.

+
 

QMI_QOS_EVENT_INFO_CODE_UPDATED

+

Information code updated.

+
 
+
+

Since: 1.22

+
+
+
+ + + \ No newline at end of file diff -Nru libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-QOS-Flow-Status-indication.html libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-QOS-Flow-Status-indication.html --- libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-QOS-Flow-Status-indication.html 1970-01-01 01:00:00.000000000 +0100 +++ libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-QOS-Flow-Status-indication.html 2019-01-08 15:19:02.000000000 +0100 @@ -0,0 +1,220 @@ + + + + +QOS Flow Status indication: libqmi-glib Reference Manual + + + + + + + + + + + + + + + + +
+
+
+ + +
+

QOS Flow Status indication

+

QOS Flow Status indication

+
+ +
+

Types and Values

+ +
+
+

Object Hierarchy

+
    GBoxed
+    ╰── QmiIndicationQosFlowStatusOutput
+
+
+
+

Description

+
+
+

Functions

+
+

qmi_indication_qos_flow_status_output_ref ()

+
QmiIndicationQosFlowStatusOutput *
+qmi_indication_qos_flow_status_output_ref
+                               (QmiIndicationQosFlowStatusOutput *self);
+

Atomically increments the reference count of self + by one.

+
+

Parameters

+
+++++ + + + + + +

self

a QmiIndicationQosFlowStatusOutput.

 
+
+
+

Returns

+

the new reference to self +.

+
+

Since: 1.22

+
+
+
+

qmi_indication_qos_flow_status_output_unref ()

+
void
+qmi_indication_qos_flow_status_output_unref
+                               (QmiIndicationQosFlowStatusOutput *self);
+

Atomically decrements the reference count of self + by one. +If the reference count drops to 0, self + is completely disposed.

+
+

Parameters

+
+++++ + + + + + +

self

a QmiIndicationQosFlowStatusOutput.

 
+
+

Since: 1.22

+
+
+
+

qmi_indication_qos_flow_status_output_get_value ()

+
gboolean
+qmi_indication_qos_flow_status_output_get_value
+                               (QmiIndicationQosFlowStatusOutput *self,
+                                guint32 *value_value_qos_id,
+                                QmiQosStatus *value_value_status,
+                                QmiQosEvent *value_value_event,
+                                GError **error);
+

Get the 'Value' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + + + + + + + + + + + +

self

a QmiIndicationQosFlowStatusOutput.

 

value_value_qos_id

a placeholder for the output guint32, or NULL if not required.

 

value_value_status

a placeholder for the output QmiQosStatus, or NULL if not required.

 

value_value_event

a placeholder for the output QmiQosEvent, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.22

+
+
+
+

Types and Values

+
+

QmiIndicationQosFlowStatusOutput

+
typedef struct _QmiIndicationQosFlowStatusOutput QmiIndicationQosFlowStatusOutput;
+

The QmiIndicationQosFlowStatusOutput structure contains private data and should only be accessed +using the provided API.

+

Since: 1.22

+
+
+
+ + + \ No newline at end of file diff -Nru libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-QOS-Get-Flow-Status-request.html libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-QOS-Get-Flow-Status-request.html --- libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-QOS-Get-Flow-Status-request.html 1970-01-01 01:00:00.000000000 +0100 +++ libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-QOS-Get-Flow-Status-request.html 2019-01-08 15:19:02.000000000 +0100 @@ -0,0 +1,581 @@ + + + + +QOS Get Flow Status request: libqmi-glib Reference Manual + + + + + + + + + + + + + + + + +
+
+
+ + +
+

QOS Get Flow Status request

+

QOS Get Flow Status request

+
+ +
+

Types and Values

+ +
+
+

Object Hierarchy

+
    GBoxed
+    ├── QmiMessageQosGetFlowStatusInput
+    ╰── QmiMessageQosGetFlowStatusOutput
+
+
+
+

Description

+
+
+

Functions

+
+

qmi_message_qos_get_flow_status_input_new ()

+
QmiMessageQosGetFlowStatusInput *
+qmi_message_qos_get_flow_status_input_new
+                               (void);
+

Allocates a new QmiMessageQosGetFlowStatusInput.

+
+

Returns

+

the newly created QmiMessageQosGetFlowStatusInput. The returned value should be freed with qmi_message_qos_get_flow_status_input_unref().

+
+

Since: 1.22

+
+
+
+

qmi_message_qos_get_flow_status_input_ref ()

+
QmiMessageQosGetFlowStatusInput *
+qmi_message_qos_get_flow_status_input_ref
+                               (QmiMessageQosGetFlowStatusInput *self);
+

Atomically increments the reference count of self + by one.

+
+

Parameters

+
+++++ + + + + + +

self

a QmiMessageQosGetFlowStatusInput.

 
+
+
+

Returns

+

the new reference to self +.

+
+

Since: 1.22

+
+
+
+

qmi_message_qos_get_flow_status_input_unref ()

+
void
+qmi_message_qos_get_flow_status_input_unref
+                               (QmiMessageQosGetFlowStatusInput *self);
+

Atomically decrements the reference count of self + by one. +If the reference count drops to 0, self + is completely disposed.

+
+

Parameters

+
+++++ + + + + + +

self

a QmiMessageQosGetFlowStatusInput.

 
+
+

Since: 1.22

+
+
+
+

qmi_message_qos_get_flow_status_input_get_qos_id ()

+
gboolean
+qmi_message_qos_get_flow_status_input_get_qos_id
+                               (QmiMessageQosGetFlowStatusInput *self,
+                                guint32 *value_qos_id,
+                                GError **error);
+

Get the 'Qos Id' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageQosGetFlowStatusInput.

 

value_qos_id

a placeholder for the output guint32, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.22

+
+
+
+

qmi_message_qos_get_flow_status_input_set_qos_id ()

+
gboolean
+qmi_message_qos_get_flow_status_input_set_qos_id
+                               (QmiMessageQosGetFlowStatusInput *self,
+                                guint32 value_qos_id,
+                                GError **error);
+

Set the 'Qos Id' field in the message.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageQosGetFlowStatusInput.

 

value_qos_id

a guint32.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if value +was successfully set, FALSE otherwise.

+
+

Since: 1.22

+
+
+
+

qmi_message_qos_get_flow_status_output_ref ()

+
QmiMessageQosGetFlowStatusOutput *
+qmi_message_qos_get_flow_status_output_ref
+                               (QmiMessageQosGetFlowStatusOutput *self);
+

Atomically increments the reference count of self + by one.

+
+

Parameters

+
+++++ + + + + + +

self

a QmiMessageQosGetFlowStatusOutput.

 
+
+
+

Returns

+

the new reference to self +.

+
+

Since: 1.22

+
+
+
+

qmi_message_qos_get_flow_status_output_unref ()

+
void
+qmi_message_qos_get_flow_status_output_unref
+                               (QmiMessageQosGetFlowStatusOutput *self);
+

Atomically decrements the reference count of self + by one. +If the reference count drops to 0, self + is completely disposed.

+
+

Parameters

+
+++++ + + + + + +

self

a QmiMessageQosGetFlowStatusOutput.

 
+
+

Since: 1.22

+
+
+
+

qmi_message_qos_get_flow_status_output_get_result ()

+
gboolean
+qmi_message_qos_get_flow_status_output_get_result
+                               (QmiMessageQosGetFlowStatusOutput *self,
+                                GError **error);
+

Get the result of the QMI operation.

+
+

Parameters

+
+++++ + + + + + + + + + + + + +

self

a QmiMessageQosGetFlowStatusOutput.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the QMI operation succeeded, FALSE if error +is set.

+
+

Since: 1.22

+
+
+
+

qmi_message_qos_get_flow_status_output_get_value ()

+
gboolean
+qmi_message_qos_get_flow_status_output_get_value
+                               (QmiMessageQosGetFlowStatusOutput *self,
+                                QmiQosStatus *value_value,
+                                GError **error);
+

Get the 'Value' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageQosGetFlowStatusOutput.

 

value_value

a placeholder for the output QmiQosStatus, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.22

+
+
+
+

qmi_client_qos_get_flow_status ()

+
void
+qmi_client_qos_get_flow_status (QmiClientQos *self,
+                                QmiMessageQosGetFlowStatusInput *input,
+                                guint timeout,
+                                GCancellable *cancellable,
+                                GAsyncReadyCallback callback,
+                                gpointer user_data);
+

Asynchronously sends a Get Flow Status request to the device.

+

When the operation is finished, callback + will be invoked in the thread-default main loop of the thread you are calling this method from.

+

You can then call qmi_client_qos_get_flow_status_finish() to get the result of the operation.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

self

a QmiClientQos.

 

input

a QmiMessageQosGetFlowStatusInput.

 

timeout

maximum time to wait for the method to complete, in seconds.

 

cancellable

a GCancellable or NULL.

 

callback

a GAsyncReadyCallback to call when the request is satisfied.

 

user_data

user data to pass to callback +.

 
+
+

Since: 1.22

+
+
+
+

qmi_client_qos_get_flow_status_finish ()

+
QmiMessageQosGetFlowStatusOutput *
+qmi_client_qos_get_flow_status_finish (QmiClientQos *self,
+                                       GAsyncResult *res,
+                                       GError **error);
+

Finishes an async operation started with qmi_client_qos_get_flow_status().

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiClientQos.

 

res

the GAsyncResult obtained from the GAsyncReadyCallback passed to qmi_client_qos_get_flow_status().

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

a QmiMessageQosGetFlowStatusOutput, or NULL if error +is set. The returned value should be freed with qmi_message_qos_get_flow_status_output_unref().

+
+

Since: 1.22

+
+
+
+

Types and Values

+
+

QmiMessageQosGetFlowStatusInput

+
typedef struct _QmiMessageQosGetFlowStatusInput QmiMessageQosGetFlowStatusInput;
+

The QmiMessageQosGetFlowStatusInput structure contains private data and should only be accessed +using the provided API.

+

Since: 1.22

+
+
+
+

QmiMessageQosGetFlowStatusOutput

+
typedef struct _QmiMessageQosGetFlowStatusOutput QmiMessageQosGetFlowStatusOutput;
+

The QmiMessageQosGetFlowStatusOutput structure contains private data and should only be accessed +using the provided API.

+

Since: 1.22

+
+
+
+ + + \ No newline at end of file diff -Nru libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-QOS-Get-Network-Status-request.html libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-QOS-Get-Network-Status-request.html --- libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-QOS-Get-Network-Status-request.html 1970-01-01 01:00:00.000000000 +0100 +++ libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-QOS-Get-Network-Status-request.html 2019-01-08 15:19:02.000000000 +0100 @@ -0,0 +1,371 @@ + + + + +QOS Get Network Status request: libqmi-glib Reference Manual + + + + + + + + + + + + + + + + +
+
+
+ + +
+

QOS Get Network Status request

+

QOS Get Network Status request

+
+ +
+

Types and Values

+ +
+
+

Object Hierarchy

+
    GBoxed
+    ╰── QmiMessageQosGetNetworkStatusOutput
+
+
+
+

Description

+
+
+

Functions

+
+

qmi_message_qos_get_network_status_output_ref ()

+
QmiMessageQosGetNetworkStatusOutput *
+qmi_message_qos_get_network_status_output_ref
+                               (QmiMessageQosGetNetworkStatusOutput *self);
+

Atomically increments the reference count of self + by one.

+
+

Parameters

+
+++++ + + + + + +

self

a QmiMessageQosGetNetworkStatusOutput.

 
+
+
+

Returns

+

the new reference to self +.

+
+

Since: 1.22

+
+
+
+

qmi_message_qos_get_network_status_output_unref ()

+
void
+qmi_message_qos_get_network_status_output_unref
+                               (QmiMessageQosGetNetworkStatusOutput *self);
+

Atomically decrements the reference count of self + by one. +If the reference count drops to 0, self + is completely disposed.

+
+

Parameters

+
+++++ + + + + + +

self

a QmiMessageQosGetNetworkStatusOutput.

 
+
+

Since: 1.22

+
+
+
+

qmi_message_qos_get_network_status_output_get_result ()

+
gboolean
+qmi_message_qos_get_network_status_output_get_result
+                               (QmiMessageQosGetNetworkStatusOutput *self,
+                                GError **error);
+

Get the result of the QMI operation.

+
+

Parameters

+
+++++ + + + + + + + + + + + + +

self

a QmiMessageQosGetNetworkStatusOutput.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the QMI operation succeeded, FALSE if error +is set.

+
+

Since: 1.22

+
+
+
+

qmi_message_qos_get_network_status_output_get_qos_supported ()

+
gboolean
+qmi_message_qos_get_network_status_output_get_qos_supported
+                               (QmiMessageQosGetNetworkStatusOutput *self,
+                                gboolean *value_qos_supported,
+                                GError **error);
+

Get the 'QoS Supported' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageQosGetNetworkStatusOutput.

 

value_qos_supported

a placeholder for the output gboolean, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.22

+
+
+
+

qmi_client_qos_get_network_status ()

+
void
+qmi_client_qos_get_network_status (QmiClientQos *self,
+                                   gpointer unused,
+                                   guint timeout,
+                                   GCancellable *cancellable,
+                                   GAsyncReadyCallback callback,
+                                   gpointer user_data);
+

Asynchronously sends a Get Network Status request to the device.

+

When the operation is finished, callback + will be invoked in the thread-default main loop of the thread you are calling this method from.

+

You can then call qmi_client_qos_get_network_status_finish() to get the result of the operation.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

self

a QmiClientQos.

 

unused

NULL. This message doesn't have any input bundle.

 

timeout

maximum time to wait for the method to complete, in seconds.

 

cancellable

a GCancellable or NULL.

 

callback

a GAsyncReadyCallback to call when the request is satisfied.

 

user_data

user data to pass to callback +.

 
+
+

Since: 1.22

+
+
+
+

qmi_client_qos_get_network_status_finish ()

+
QmiMessageQosGetNetworkStatusOutput *
+qmi_client_qos_get_network_status_finish
+                               (QmiClientQos *self,
+                                GAsyncResult *res,
+                                GError **error);
+

Finishes an async operation started with qmi_client_qos_get_network_status().

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiClientQos.

 

res

the GAsyncResult obtained from the GAsyncReadyCallback passed to qmi_client_qos_get_network_status().

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

a QmiMessageQosGetNetworkStatusOutput, or NULL if error +is set. The returned value should be freed with qmi_message_qos_get_network_status_output_unref().

+
+

Since: 1.22

+
+
+
+

Types and Values

+
+

QmiMessageQosGetNetworkStatusOutput

+
typedef struct _QmiMessageQosGetNetworkStatusOutput QmiMessageQosGetNetworkStatusOutput;
+

The QmiMessageQosGetNetworkStatusOutput structure contains private data and should only be accessed +using the provided API.

+

Since: 1.22

+
+
+
+ + + \ No newline at end of file diff -Nru libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-QOS-Network-Status-indication.html libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-QOS-Network-Status-indication.html --- libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-QOS-Network-Status-indication.html 1970-01-01 01:00:00.000000000 +0100 +++ libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-QOS-Network-Status-indication.html 2019-01-08 15:19:02.000000000 +0100 @@ -0,0 +1,208 @@ + + + + +QOS Network Status indication: libqmi-glib Reference Manual + + + + + + + + + + + + + + + + +
+
+
+ + +
+

QOS Network Status indication

+

QOS Network Status indication

+
+ +
+

Types and Values

+ +
+
+

Object Hierarchy

+
    GBoxed
+    ╰── QmiIndicationQosNetworkStatusOutput
+
+
+
+

Description

+
+
+

Functions

+
+

qmi_indication_qos_network_status_output_ref ()

+
QmiIndicationQosNetworkStatusOutput *
+qmi_indication_qos_network_status_output_ref
+                               (QmiIndicationQosNetworkStatusOutput *self);
+

Atomically increments the reference count of self + by one.

+
+

Parameters

+
+++++ + + + + + +

self

a QmiIndicationQosNetworkStatusOutput.

 
+
+
+

Returns

+

the new reference to self +.

+
+

Since: 1.22

+
+
+
+

qmi_indication_qos_network_status_output_unref ()

+
void
+qmi_indication_qos_network_status_output_unref
+                               (QmiIndicationQosNetworkStatusOutput *self);
+

Atomically decrements the reference count of self + by one. +If the reference count drops to 0, self + is completely disposed.

+
+

Parameters

+
+++++ + + + + + +

self

a QmiIndicationQosNetworkStatusOutput.

 
+
+

Since: 1.22

+
+
+
+

qmi_indication_qos_network_status_output_get_qos_supported ()

+
gboolean
+qmi_indication_qos_network_status_output_get_qos_supported
+                               (QmiIndicationQosNetworkStatusOutput *self,
+                                gboolean *value_qos_supported,
+                                GError **error);
+

Get the 'QoS Supported' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiIndicationQosNetworkStatusOutput.

 

value_qos_supported

a placeholder for the output gboolean, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.22

+
+
+
+

Types and Values

+
+

QmiIndicationQosNetworkStatusOutput

+
typedef struct _QmiIndicationQosNetworkStatusOutput QmiIndicationQosNetworkStatusOutput;
+

The QmiIndicationQosNetworkStatusOutput structure contains private data and should only be accessed +using the provided API.

+

Since: 1.22

+
+
+
+ + + \ No newline at end of file diff -Nru libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-QOS-Reset-request.html libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-QOS-Reset-request.html --- libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-QOS-Reset-request.html 1970-01-01 01:00:00.000000000 +0100 +++ libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-QOS-Reset-request.html 2019-01-08 15:19:02.000000000 +0100 @@ -0,0 +1,317 @@ + + + + +QOS Reset request: libqmi-glib Reference Manual + + + + + + + + + + + + + + + + +
+
+
+ + +
+

QOS Reset request

+

QOS Reset request

+
+
+

Functions

+ +
+
+

Types and Values

+
++++ + + + + +
 QmiMessageQosResetOutput
+
+
+

Object Hierarchy

+
    GBoxed
+    ╰── QmiMessageQosResetOutput
+
+
+
+

Description

+
+
+

Functions

+
+

qmi_message_qos_reset_output_ref ()

+
QmiMessageQosResetOutput *
+qmi_message_qos_reset_output_ref (QmiMessageQosResetOutput *self);
+

Atomically increments the reference count of self + by one.

+
+

Parameters

+
+++++ + + + + + +

self

a QmiMessageQosResetOutput.

 
+
+
+

Returns

+

the new reference to self +.

+
+

Since: 1.22

+
+
+
+

qmi_message_qos_reset_output_unref ()

+
void
+qmi_message_qos_reset_output_unref (QmiMessageQosResetOutput *self);
+

Atomically decrements the reference count of self + by one. +If the reference count drops to 0, self + is completely disposed.

+
+

Parameters

+
+++++ + + + + + +

self

a QmiMessageQosResetOutput.

 
+
+

Since: 1.22

+
+
+
+

qmi_message_qos_reset_output_get_result ()

+
gboolean
+qmi_message_qos_reset_output_get_result
+                               (QmiMessageQosResetOutput *self,
+                                GError **error);
+

Get the result of the QMI operation.

+
+

Parameters

+
+++++ + + + + + + + + + + + + +

self

a QmiMessageQosResetOutput.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the QMI operation succeeded, FALSE if error +is set.

+
+

Since: 1.22

+
+
+
+

qmi_client_qos_reset ()

+
void
+qmi_client_qos_reset (QmiClientQos *self,
+                      gpointer unused,
+                      guint timeout,
+                      GCancellable *cancellable,
+                      GAsyncReadyCallback callback,
+                      gpointer user_data);
+

Asynchronously sends a Reset request to the device.

+

When the operation is finished, callback + will be invoked in the thread-default main loop of the thread you are calling this method from.

+

You can then call qmi_client_qos_reset_finish() to get the result of the operation.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

self

a QmiClientQos.

 

unused

NULL. This message doesn't have any input bundle.

 

timeout

maximum time to wait for the method to complete, in seconds.

 

cancellable

a GCancellable or NULL.

 

callback

a GAsyncReadyCallback to call when the request is satisfied.

 

user_data

user data to pass to callback +.

 
+
+

Since: 1.22

+
+
+
+

qmi_client_qos_reset_finish ()

+
QmiMessageQosResetOutput *
+qmi_client_qos_reset_finish (QmiClientQos *self,
+                             GAsyncResult *res,
+                             GError **error);
+

Finishes an async operation started with qmi_client_qos_reset().

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiClientQos.

 

res

the GAsyncResult obtained from the GAsyncReadyCallback passed to qmi_client_qos_reset().

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

a QmiMessageQosResetOutput, or NULL if error +is set. The returned value should be freed with qmi_message_qos_reset_output_unref().

+
+

Since: 1.22

+
+
+
+

Types and Values

+
+

QmiMessageQosResetOutput

+
typedef struct _QmiMessageQosResetOutput QmiMessageQosResetOutput;
+

The QmiMessageQosResetOutput structure contains private data and should only be accessed +using the provided API.

+

Since: 1.22

+
+
+
+ + + \ No newline at end of file diff -Nru libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-QOS-Swi-Read-Data-Stats-request.html libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-QOS-Swi-Read-Data-Stats-request.html --- libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-QOS-Swi-Read-Data-Stats-request.html 1970-01-01 01:00:00.000000000 +0100 +++ libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-QOS-Swi-Read-Data-Stats-request.html 2019-01-08 15:19:02.000000000 +0100 @@ -0,0 +1,725 @@ + + + + +QOS Swi Read Data Stats request: libqmi-glib Reference Manual + + + + + + + + + + + + + + + + +
+
+
+ + +
+

QOS Swi Read Data Stats request

+

QOS Swi Read Data Stats request

+
+ + +
+

Object Hierarchy

+
    GBoxed
+    ├── QmiMessageQosSwiReadDataStatsInput
+    ╰── QmiMessageQosSwiReadDataStatsOutput
+
+
+
+

Description

+
+
+

Functions

+
+

qmi_message_qos_swi_read_data_stats_input_new ()

+
QmiMessageQosSwiReadDataStatsInput *
+qmi_message_qos_swi_read_data_stats_input_new
+                               (void);
+

Allocates a new QmiMessageQosSwiReadDataStatsInput.

+
+

Returns

+

the newly created QmiMessageQosSwiReadDataStatsInput. The returned value should be freed with qmi_message_qos_swi_read_data_stats_input_unref().

+
+

Since: 1.22

+
+
+
+

qmi_message_qos_swi_read_data_stats_input_ref ()

+
QmiMessageQosSwiReadDataStatsInput *
+qmi_message_qos_swi_read_data_stats_input_ref
+                               (QmiMessageQosSwiReadDataStatsInput *self);
+

Atomically increments the reference count of self + by one.

+
+

Parameters

+
+++++ + + + + + +

self

a QmiMessageQosSwiReadDataStatsInput.

 
+
+
+

Returns

+

the new reference to self +.

+
+

Since: 1.22

+
+
+
+

qmi_message_qos_swi_read_data_stats_input_unref ()

+
void
+qmi_message_qos_swi_read_data_stats_input_unref
+                               (QmiMessageQosSwiReadDataStatsInput *self);
+

Atomically decrements the reference count of self + by one. +If the reference count drops to 0, self + is completely disposed.

+
+

Parameters

+
+++++ + + + + + +

self

a QmiMessageQosSwiReadDataStatsInput.

 
+
+

Since: 1.22

+
+
+
+

qmi_message_qos_swi_read_data_stats_input_get_apn_id ()

+
gboolean
+qmi_message_qos_swi_read_data_stats_input_get_apn_id
+                               (QmiMessageQosSwiReadDataStatsInput *self,
+                                guint32 *value_apn_id,
+                                GError **error);
+

Get the 'Apn Id' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageQosSwiReadDataStatsInput.

 

value_apn_id

a placeholder for the output guint32, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.22

+
+
+
+

qmi_message_qos_swi_read_data_stats_input_set_apn_id ()

+
gboolean
+qmi_message_qos_swi_read_data_stats_input_set_apn_id
+                               (QmiMessageQosSwiReadDataStatsInput *self,
+                                guint32 value_apn_id,
+                                GError **error);
+

Set the 'Apn Id' field in the message.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageQosSwiReadDataStatsInput.

 

value_apn_id

a guint32.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if value +was successfully set, FALSE otherwise.

+
+

Since: 1.22

+
+
+
+

qmi_message_qos_swi_read_data_stats_output_ref ()

+
QmiMessageQosSwiReadDataStatsOutput *
+qmi_message_qos_swi_read_data_stats_output_ref
+                               (QmiMessageQosSwiReadDataStatsOutput *self);
+

Atomically increments the reference count of self + by one.

+
+

Parameters

+
+++++ + + + + + +

self

a QmiMessageQosSwiReadDataStatsOutput.

 
+
+
+

Returns

+

the new reference to self +.

+
+

Since: 1.22

+
+
+
+

qmi_message_qos_swi_read_data_stats_output_unref ()

+
void
+qmi_message_qos_swi_read_data_stats_output_unref
+                               (QmiMessageQosSwiReadDataStatsOutput *self);
+

Atomically decrements the reference count of self + by one. +If the reference count drops to 0, self + is completely disposed.

+
+

Parameters

+
+++++ + + + + + +

self

a QmiMessageQosSwiReadDataStatsOutput.

 
+
+

Since: 1.22

+
+
+
+

qmi_message_qos_swi_read_data_stats_output_get_result ()

+
gboolean
+qmi_message_qos_swi_read_data_stats_output_get_result
+                               (QmiMessageQosSwiReadDataStatsOutput *self,
+                                GError **error);
+

Get the result of the QMI operation.

+
+

Parameters

+
+++++ + + + + + + + + + + + + +

self

a QmiMessageQosSwiReadDataStatsOutput.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the QMI operation succeeded, FALSE if error +is set.

+
+

Since: 1.22

+
+
+
+

qmi_message_qos_swi_read_data_stats_output_get_apn ()

+
gboolean
+qmi_message_qos_swi_read_data_stats_output_get_apn
+                               (QmiMessageQosSwiReadDataStatsOutput *self,
+                                guint32 *value_apn_apn_id,
+                                guint32 *value_apn_tx_packets,
+                                guint32 *value_apn_tx_packets_dropped,
+                                guint32 *value_apn_rx_packets,
+                                guint64 *value_apn_tx_bytes,
+                                guint64 *value_apn_tx_bytes_dropped,
+                                guint64 *value_apn_rx_bytes,
+                                GError **error);
+

Get the 'Apn' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

self

a QmiMessageQosSwiReadDataStatsOutput.

 

value_apn_apn_id

a placeholder for the output guint32, or NULL if not required.

 

value_apn_tx_packets

a placeholder for the output guint32, or NULL if not required.

 

value_apn_tx_packets_dropped

a placeholder for the output guint32, or NULL if not required.

 

value_apn_rx_packets

a placeholder for the output guint32, or NULL if not required.

 

value_apn_tx_bytes

a placeholder for the output guint64, or NULL if not required.

 

value_apn_tx_bytes_dropped

a placeholder for the output guint64, or NULL if not required.

 

value_apn_rx_bytes

a placeholder for the output guint64, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.22

+
+
+
+

qmi_message_qos_swi_read_data_stats_output_get_flow ()

+
gboolean
+qmi_message_qos_swi_read_data_stats_output_get_flow
+                               (QmiMessageQosSwiReadDataStatsOutput *self,
+                                GArray **value_flow,
+                                GError **error);
+

Get the 'Flow' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageQosSwiReadDataStatsOutput.

 

value_flow

a placeholder for the output GArray of QmiMessageQosSwiReadDataStatsOutputFlowElement elements, or NULL if not required. Do not free it, it is owned by self +.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.22

+
+
+
+

qmi_client_qos_swi_read_data_stats ()

+
void
+qmi_client_qos_swi_read_data_stats (QmiClientQos *self,
+                                    QmiMessageQosSwiReadDataStatsInput *input,
+                                    guint timeout,
+                                    GCancellable *cancellable,
+                                    GAsyncReadyCallback callback,
+                                    gpointer user_data);
+

Asynchronously sends a Swi Read Data Stats request to the device.

+

When the operation is finished, callback + will be invoked in the thread-default main loop of the thread you are calling this method from.

+

You can then call qmi_client_qos_swi_read_data_stats_finish() to get the result of the operation.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

self

a QmiClientQos.

 

input

a QmiMessageQosSwiReadDataStatsInput.

 

timeout

maximum time to wait for the method to complete, in seconds.

 

cancellable

a GCancellable or NULL.

 

callback

a GAsyncReadyCallback to call when the request is satisfied.

 

user_data

user data to pass to callback +.

 
+
+

Since: 1.22

+
+
+
+

qmi_client_qos_swi_read_data_stats_finish ()

+
QmiMessageQosSwiReadDataStatsOutput *
+qmi_client_qos_swi_read_data_stats_finish
+                               (QmiClientQos *self,
+                                GAsyncResult *res,
+                                GError **error);
+

Finishes an async operation started with qmi_client_qos_swi_read_data_stats().

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiClientQos.

 

res

the GAsyncResult obtained from the GAsyncReadyCallback passed to qmi_client_qos_swi_read_data_stats().

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

a QmiMessageQosSwiReadDataStatsOutput, or NULL if error +is set. The returned value should be freed with qmi_message_qos_swi_read_data_stats_output_unref().

+
+

Since: 1.22

+
+
+
+

Types and Values

+
+

QmiMessageQosSwiReadDataStatsInput

+
typedef struct _QmiMessageQosSwiReadDataStatsInput QmiMessageQosSwiReadDataStatsInput;
+

The QmiMessageQosSwiReadDataStatsInput structure contains private data and should only be accessed +using the provided API.

+

Since: 1.22

+
+
+
+

QmiMessageQosSwiReadDataStatsOutput

+
typedef struct _QmiMessageQosSwiReadDataStatsOutput QmiMessageQosSwiReadDataStatsOutput;
+

The QmiMessageQosSwiReadDataStatsOutput structure contains private data and should only be accessed +using the provided API.

+

Since: 1.22

+
+
+
+

QmiMessageQosSwiReadDataStatsOutputFlowElement

+
typedef struct {
+    guint32 bearer_id;
+    guint32 tx_packets;
+    guint32 tx_packets_dropped;
+    guint64 tx_bytes;
+    guint64 tx_bytes_dropped;
+} QmiMessageQosSwiReadDataStatsOutputFlowElement;
+
+

A QmiMessageQosSwiReadDataStatsOutputFlowElement struct.

+
+

Members

+
+++++ + + + + + + + + + + + + + + + + + + + + + + + + + + + +

guint32 bearer_id;

a guint32.

 

guint32 tx_packets;

a guint32.

 

guint32 tx_packets_dropped;

a guint32.

 

guint64 tx_bytes;

a guint64.

 

guint64 tx_bytes_dropped;

a guint64.

 
+
+

Since: 1.22

+
+
+
+ + + \ No newline at end of file diff -Nru libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-UIM-Card-Status-indication.html libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-UIM-Card-Status-indication.html --- libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-UIM-Card-Status-indication.html 1970-01-01 01:00:00.000000000 +0100 +++ libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-UIM-Card-Status-indication.html 2019-01-08 15:19:02.000000000 +0100 @@ -0,0 +1,405 @@ + + + + +UIM Card Status indication: libqmi-glib Reference Manual + + + + + + + + + + + + + + + + +
+
+
+ + +
+

UIM Card Status indication

+

UIM Card Status indication

+
+ + +
+

Object Hierarchy

+
    GBoxed
+    ╰── QmiIndicationUimCardStatusOutput
+
+
+
+

Description

+
+
+

Functions

+
+

qmi_indication_uim_card_status_output_ref ()

+
QmiIndicationUimCardStatusOutput *
+qmi_indication_uim_card_status_output_ref
+                               (QmiIndicationUimCardStatusOutput *self);
+

Atomically increments the reference count of self + by one.

+
+

Parameters

+
+++++ + + + + + +

self

a QmiIndicationUimCardStatusOutput.

 
+
+
+

Returns

+

the new reference to self +.

+
+

Since: 1.22

+
+
+
+

qmi_indication_uim_card_status_output_unref ()

+
void
+qmi_indication_uim_card_status_output_unref
+                               (QmiIndicationUimCardStatusOutput *self);
+

Atomically decrements the reference count of self + by one. +If the reference count drops to 0, self + is completely disposed.

+
+

Parameters

+
+++++ + + + + + +

self

a QmiIndicationUimCardStatusOutput.

 
+
+

Since: 1.22

+
+
+
+

qmi_indication_uim_card_status_output_get_card_status ()

+
gboolean
+qmi_indication_uim_card_status_output_get_card_status
+                               (QmiIndicationUimCardStatusOutput *self,
+                                guint16 *value_card_status_index_gw_primary,
+                                guint16 *value_card_status_index_1x_primary,
+                                guint16 *value_card_status_index_gw_secondary,
+                                guint16 *value_card_status_index_1x_secondary,
+                                GArray **value_card_status_cards,
+                                GError **error);
+

Get the 'Card Status' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

self

a QmiIndicationUimCardStatusOutput.

 

value_card_status_index_gw_primary

a placeholder for the output guint16, or NULL if not required.

 

value_card_status_index_1x_primary

a placeholder for the output guint16, or NULL if not required.

 

value_card_status_index_gw_secondary

a placeholder for the output guint16, or NULL if not required.

 

value_card_status_index_1x_secondary

a placeholder for the output guint16, or NULL if not required.

 

value_card_status_cards

a placeholder for the output GArray of QmiIndicationUimCardStatusOutputCardStatusCardsElement elements, or NULL if not required. Do not free it, it is owned by self +.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.22

+
+
+
+

Types and Values

+
+

QmiIndicationUimCardStatusOutput

+
typedef struct _QmiIndicationUimCardStatusOutput QmiIndicationUimCardStatusOutput;
+

The QmiIndicationUimCardStatusOutput structure contains private data and should only be accessed +using the provided API.

+

Since: 1.22

+
+
+
+

QmiIndicationUimCardStatusOutputCardStatusCardsElementApplicationsElement

+
typedef struct {
+    QmiUimCardApplicationType type;
+    QmiUimCardApplicationState state;
+    QmiUimCardApplicationPersonalizationState personalization_state;
+    QmiUimCardApplicationPersonalizationFeature personalization_feature;
+    guint8 personalization_retries;
+    guint8 personalization_unblock_retries;
+    GArray *application_identifier_value;
+    gboolean upin_replaces_pin1;
+    QmiUimPinState pin1_state;
+    guint8 pin1_retries;
+    guint8 puk1_retries;
+    QmiUimPinState pin2_state;
+    guint8 pin2_retries;
+    guint8 puk2_retries;
+} QmiIndicationUimCardStatusOutputCardStatusCardsElementApplicationsElement;
+
+

A QmiIndicationUimCardStatusOutputCardStatusCardsElementApplicationsElement struct.

+
+

Members

+
+++++ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

QmiUimCardApplicationType type;

a QmiUimCardApplicationType.

 

QmiUimCardApplicationState state;

a QmiUimCardApplicationState.

 

QmiUimCardApplicationPersonalizationState personalization_state;

a QmiUimCardApplicationPersonalizationState.

 

QmiUimCardApplicationPersonalizationFeature personalization_feature;

a QmiUimCardApplicationPersonalizationFeature.

 

guint8 personalization_retries;

a guint8.

 

guint8 personalization_unblock_retries;

a guint8.

 

GArray *application_identifier_value;

a GArray of guint8 elements.

 

gboolean upin_replaces_pin1;

a gboolean.

 

QmiUimPinState pin1_state;

a QmiUimPinState.

 

guint8 pin1_retries;

a guint8.

 

guint8 puk1_retries;

a guint8.

 

QmiUimPinState pin2_state;

a QmiUimPinState.

 

guint8 pin2_retries;

a guint8.

 

guint8 puk2_retries;

a guint8.

 
+
+

Since: 1.22

+
+
+
+

QmiIndicationUimCardStatusOutputCardStatusCardsElement

+
typedef struct {
+    QmiUimCardState card_state;
+    QmiUimPinState upin_state;
+    guint8 upin_retries;
+    guint8 upuk_retries;
+    QmiUimCardError error_code;
+    GArray *applications;
+} QmiIndicationUimCardStatusOutputCardStatusCardsElement;
+
+

A QmiIndicationUimCardStatusOutputCardStatusCardsElement struct.

+
+

Members

+
+++++ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

QmiUimCardState card_state;

a QmiUimCardState.

 

QmiUimPinState upin_state;

a QmiUimPinState.

 

guint8 upin_retries;

a guint8.

 

guint8 upuk_retries;

a guint8.

 

QmiUimCardError error_code;

a QmiUimCardError.

 

GArray *applications;

a GArray of QmiIndicationUimCardStatusOutputCardStatusCardsElementApplicationsElement elements.

 
+
+

Since: 1.22

+
+
+
+ + + \ No newline at end of file diff -Nru libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-UIM-Change-PIN.html libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-UIM-Change-PIN.html --- libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-UIM-Change-PIN.html 2017-03-22 12:28:29.000000000 +0100 +++ libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-UIM-Change-PIN.html 1970-01-01 01:00:00.000000000 +0100 @@ -1,932 +0,0 @@ - - - - -UIM Change PIN: libqmi-glib Reference Manual - - - - - - - - - - - - - - - - -
-
-
- - -
-

UIM Change PIN

-

UIM Change PIN

-
- -
-

Types and Values

- -
-
-

Object Hierarchy

-
    GBoxed
-    ├── QmiMessageUimChangePinInput
-    ╰── QmiMessageUimChangePinOutput
-
-
-
-

Description

-
-
-

Functions

-
-

qmi_message_uim_change_pin_input_new ()

-
QmiMessageUimChangePinInput *
-qmi_message_uim_change_pin_input_new (void);
-

Allocates a new QmiMessageUimChangePinInput.

-
-

Returns

-

the newly created QmiMessageUimChangePinInput. The returned value should be freed with qmi_message_uim_change_pin_input_unref().

-
-

Since: 1.14

-
-
-
-

qmi_message_uim_change_pin_input_ref ()

-
QmiMessageUimChangePinInput *
-qmi_message_uim_change_pin_input_ref (QmiMessageUimChangePinInput *self);
-

Atomically increments the reference count of self - by one.

-
-

Parameters

-
----- - - - - - -

self

a QmiMessageUimChangePinInput.

 
-
-
-

Returns

-

the new reference to self -.

-
-

Since: 1.14

-
-
-
-

qmi_message_uim_change_pin_input_unref ()

-
void
-qmi_message_uim_change_pin_input_unref
-                               (QmiMessageUimChangePinInput *self);
-

Atomically decrements the reference count of self - by one. -If the reference count drops to 0, self - is completely disposed.

-
-

Parameters

-
----- - - - - - -

self

a QmiMessageUimChangePinInput.

 
-
-

Since: 1.14

-
-
-
-

qmi_message_uim_change_pin_input_get_response_in_indication_token ()

-
gboolean
-qmi_message_uim_change_pin_input_get_response_in_indication_token
-                               (QmiMessageUimChangePinInput *self,
-                                guint32 *value_response_in_indication_token,
-                                GError **error);
-

Get the 'Response In Indication Token' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessageUimChangePinInput.

 

value_response_in_indication_token

a placeholder for the output guint32, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.14

-
-
-
-

qmi_message_uim_change_pin_input_set_response_in_indication_token ()

-
gboolean
-qmi_message_uim_change_pin_input_set_response_in_indication_token
-                               (QmiMessageUimChangePinInput *self,
-                                guint32 value_response_in_indication_token,
-                                GError **error);
-

Set the 'Response In Indication Token' field in the message.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessageUimChangePinInput.

 

value_response_in_indication_token

a guint32.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if value -was successfully set, FALSE otherwise.

-
-

Since: 1.14

-
-
-
-

qmi_message_uim_change_pin_input_get_info ()

-
gboolean
-qmi_message_uim_change_pin_input_get_info
-                               (QmiMessageUimChangePinInput *self,
-                                QmiUimPinId *value_info_pin_id,
-                                const gchar **value_info_old_pin,
-                                const gchar **value_info_new_pin,
-                                GError **error);
-

Get the 'Info' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - - - - - - - - - - - -

self

a QmiMessageUimChangePinInput.

 

value_info_pin_id

a placeholder for the output QmiUimPinId, or NULL if not required.

 

value_info_old_pin

a placeholder for the output constant string, or NULL if not required.

 

value_info_new_pin

a placeholder for the output constant string, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.14

-
-
-
-

qmi_message_uim_change_pin_input_set_info ()

-
gboolean
-qmi_message_uim_change_pin_input_set_info
-                               (QmiMessageUimChangePinInput *self,
-                                QmiUimPinId value_info_pin_id,
-                                const gchar *value_info_old_pin,
-                                const gchar *value_info_new_pin,
-                                GError **error);
-

Set the 'Info' field in the message.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - - - - - - - - - - - -

self

a QmiMessageUimChangePinInput.

 

value_info_pin_id

a QmiUimPinId.

 

value_info_old_pin

a constant string.

 

value_info_new_pin

a constant string.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if value -was successfully set, FALSE otherwise.

-
-

Since: 1.14

-
-
-
-

qmi_message_uim_change_pin_input_get_session_information ()

-
gboolean
-qmi_message_uim_change_pin_input_get_session_information
-                               (QmiMessageUimChangePinInput *self,
-                                QmiUimSessionType *value_session_information_session_type,
-                                const gchar **value_session_information_application_identifier,
-                                GError **error);
-

Get the 'Session Information' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - - - - - - -

self

a QmiMessageUimChangePinInput.

 

value_session_information_session_type

a placeholder for the output QmiUimSessionType, or NULL if not required.

 

value_session_information_application_identifier

a placeholder for the output constant string, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.14

-
-
-
-

qmi_message_uim_change_pin_input_set_session_information ()

-
gboolean
-qmi_message_uim_change_pin_input_set_session_information
-                               (QmiMessageUimChangePinInput *self,
-                                QmiUimSessionType value_session_information_session_type,
-                                const gchar *value_session_information_application_identifier,
-                                GError **error);
-

Set the 'Session Information' field in the message.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - - - - - - -

self

a QmiMessageUimChangePinInput.

 

value_session_information_session_type

a QmiUimSessionType.

 

value_session_information_application_identifier

a constant string.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if value -was successfully set, FALSE otherwise.

-
-

Since: 1.14

-
-
-
-

qmi_message_uim_change_pin_output_ref ()

-
QmiMessageUimChangePinOutput *
-qmi_message_uim_change_pin_output_ref (QmiMessageUimChangePinOutput *self);
-

Atomically increments the reference count of self - by one.

-
-

Parameters

-
----- - - - - - -

self

a QmiMessageUimChangePinOutput.

 
-
-
-

Returns

-

the new reference to self -.

-
-

Since: 1.14

-
-
-
-

qmi_message_uim_change_pin_output_unref ()

-
void
-qmi_message_uim_change_pin_output_unref
-                               (QmiMessageUimChangePinOutput *self);
-

Atomically decrements the reference count of self - by one. -If the reference count drops to 0, self - is completely disposed.

-
-

Parameters

-
----- - - - - - -

self

a QmiMessageUimChangePinOutput.

 
-
-

Since: 1.14

-
-
-
-

qmi_message_uim_change_pin_output_get_card_result ()

-
gboolean
-qmi_message_uim_change_pin_output_get_card_result
-                               (QmiMessageUimChangePinOutput *self,
-                                guint8 *value_card_result_sw1,
-                                guint8 *value_card_result_sw2,
-                                GError **error);
-

Get the 'Card Result' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - - - - - - -

self

a QmiMessageUimChangePinOutput.

 

value_card_result_sw1

a placeholder for the output guint8, or NULL if not required.

 

value_card_result_sw2

a placeholder for the output guint8, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.14

-
-
-
-

qmi_message_uim_change_pin_output_get_result ()

-
gboolean
-qmi_message_uim_change_pin_output_get_result
-                               (QmiMessageUimChangePinOutput *self,
-                                GError **error);
-

Get the result of the QMI operation.

-
-

Parameters

-
----- - - - - - - - - - - - - -

self

a QmiMessageUimChangePinOutput.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the QMI operation succeeded, FALSE if error -is set.

-
-

Since: 1.14

-
-
-
-

qmi_message_uim_change_pin_output_get_retries_remaining ()

-
gboolean
-qmi_message_uim_change_pin_output_get_retries_remaining
-                               (QmiMessageUimChangePinOutput *self,
-                                guint8 *value_retries_remaining_verify_retries_left,
-                                guint8 *value_retries_remaining_unblock_retries_left,
-                                GError **error);
-

Get the 'Retries Remaining' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - - - - - - -

self

a QmiMessageUimChangePinOutput.

 

value_retries_remaining_verify_retries_left

a placeholder for the output guint8, or NULL if not required.

 

value_retries_remaining_unblock_retries_left

a placeholder for the output guint8, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.14

-
-
-
-

qmi_message_uim_change_pin_output_get_response_in_indication_token ()

-
gboolean
-qmi_message_uim_change_pin_output_get_response_in_indication_token
-                               (QmiMessageUimChangePinOutput *self,
-                                guint32 *value_response_in_indication_token,
-                                GError **error);
-

Get the 'Response In Indication Token' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessageUimChangePinOutput.

 

value_response_in_indication_token

a placeholder for the output guint32, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.14

-
-
-
-

qmi_client_uim_change_pin ()

-
void
-qmi_client_uim_change_pin (QmiClientUim *self,
-                           QmiMessageUimChangePinInput *input,
-                           guint timeout,
-                           GCancellable *cancellable,
-                           GAsyncReadyCallback callback,
-                           gpointer user_data);
-

Asynchronously sends a Change PIN request to the device.

-

When the operation is finished, callback - will be invoked in the thread-default main loop of the thread you are calling this method from.

-

You can then call qmi_client_uim_change_pin_finish() to get the result of the operation.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

self

a QmiClientUim.

 

input

a QmiMessageUimChangePinInput.

 

timeout

maximum time to wait for the method to complete, in seconds.

 

cancellable

a GCancellable or NULL.

 

callback

a GAsyncReadyCallback to call when the request is satisfied.

 

user_data

user data to pass to callback -.

 
-
-

Since: 1.14

-
-
-
-

qmi_client_uim_change_pin_finish ()

-
QmiMessageUimChangePinOutput *
-qmi_client_uim_change_pin_finish (QmiClientUim *self,
-                                  GAsyncResult *res,
-                                  GError **error);
-

Finishes an async operation started with qmi_client_uim_change_pin().

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiClientUim.

 

res

the GAsyncResult obtained from the GAsyncReadyCallback passed to qmi_client_uim_change_pin().

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

a QmiMessageUimChangePinOutput, or NULL if error -is set. The returned value should be freed with qmi_message_uim_change_pin_output_unref().

-
-

Since: 1.14

-
-
-
-

Types and Values

-
-

QmiMessageUimChangePinInput

-
typedef struct _QmiMessageUimChangePinInput QmiMessageUimChangePinInput;
-

The QmiMessageUimChangePinInput structure contains private data and should only be accessed -using the provided API.

-

Since: 1.14

-
-
-
-

QmiMessageUimChangePinOutput

-
typedef struct _QmiMessageUimChangePinOutput QmiMessageUimChangePinOutput;
-

The QmiMessageUimChangePinOutput structure contains private data and should only be accessed -using the provided API.

-

Since: 1.14

-
-
-
- - - \ No newline at end of file diff -Nru libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-UIM-Change-PIN-request.html libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-UIM-Change-PIN-request.html --- libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-UIM-Change-PIN-request.html 1970-01-01 01:00:00.000000000 +0100 +++ libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-UIM-Change-PIN-request.html 2019-01-08 15:19:02.000000000 +0100 @@ -0,0 +1,934 @@ + + + + +UIM Change PIN request: libqmi-glib Reference Manual + + + + + + + + + + + + + + + + +
+
+
+ + +
+

UIM Change PIN request

+

UIM Change PIN request

+
+ +
+

Types and Values

+ +
+
+

Object Hierarchy

+
    GBoxed
+    ├── QmiMessageUimChangePinInput
+    ╰── QmiMessageUimChangePinOutput
+
+
+
+

Description

+
+
+

Functions

+
+

qmi_message_uim_change_pin_input_new ()

+
QmiMessageUimChangePinInput *
+qmi_message_uim_change_pin_input_new (void);
+

Allocates a new QmiMessageUimChangePinInput.

+
+

Returns

+

the newly created QmiMessageUimChangePinInput. The returned value should be freed with qmi_message_uim_change_pin_input_unref().

+
+

Since: 1.14

+
+
+
+

qmi_message_uim_change_pin_input_ref ()

+
QmiMessageUimChangePinInput *
+qmi_message_uim_change_pin_input_ref (QmiMessageUimChangePinInput *self);
+

Atomically increments the reference count of self + by one.

+
+

Parameters

+
+++++ + + + + + +

self

a QmiMessageUimChangePinInput.

 
+
+
+

Returns

+

the new reference to self +.

+
+

Since: 1.14

+
+
+
+

qmi_message_uim_change_pin_input_unref ()

+
void
+qmi_message_uim_change_pin_input_unref
+                               (QmiMessageUimChangePinInput *self);
+

Atomically decrements the reference count of self + by one. +If the reference count drops to 0, self + is completely disposed.

+
+

Parameters

+
+++++ + + + + + +

self

a QmiMessageUimChangePinInput.

 
+
+

Since: 1.14

+
+
+
+

qmi_message_uim_change_pin_input_get_response_in_indication_token ()

+
gboolean
+qmi_message_uim_change_pin_input_get_response_in_indication_token
+                               (QmiMessageUimChangePinInput *self,
+                                guint32 *value_response_in_indication_token,
+                                GError **error);
+

Get the 'Response In Indication Token' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageUimChangePinInput.

 

value_response_in_indication_token

a placeholder for the output guint32, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.14

+
+
+
+

qmi_message_uim_change_pin_input_set_response_in_indication_token ()

+
gboolean
+qmi_message_uim_change_pin_input_set_response_in_indication_token
+                               (QmiMessageUimChangePinInput *self,
+                                guint32 value_response_in_indication_token,
+                                GError **error);
+

Set the 'Response In Indication Token' field in the message.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageUimChangePinInput.

 

value_response_in_indication_token

a guint32.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if value +was successfully set, FALSE otherwise.

+
+

Since: 1.14

+
+
+
+

qmi_message_uim_change_pin_input_get_info ()

+
gboolean
+qmi_message_uim_change_pin_input_get_info
+                               (QmiMessageUimChangePinInput *self,
+                                QmiUimPinId *value_info_pin_id,
+                                const gchar **value_info_old_pin,
+                                const gchar **value_info_new_pin,
+                                GError **error);
+

Get the 'Info' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + + + + + + + + + + + +

self

a QmiMessageUimChangePinInput.

 

value_info_pin_id

a placeholder for the output QmiUimPinId, or NULL if not required.

 

value_info_old_pin

a placeholder for the output constant string, or NULL if not required.

 

value_info_new_pin

a placeholder for the output constant string, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.14

+
+
+
+

qmi_message_uim_change_pin_input_set_info ()

+
gboolean
+qmi_message_uim_change_pin_input_set_info
+                               (QmiMessageUimChangePinInput *self,
+                                QmiUimPinId value_info_pin_id,
+                                const gchar *value_info_old_pin,
+                                const gchar *value_info_new_pin,
+                                GError **error);
+

Set the 'Info' field in the message.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + + + + + + + + + + + +

self

a QmiMessageUimChangePinInput.

 

value_info_pin_id

a QmiUimPinId.

 

value_info_old_pin

a constant string.

 

value_info_new_pin

a constant string.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if value +was successfully set, FALSE otherwise.

+
+

Since: 1.14

+
+
+
+

qmi_message_uim_change_pin_input_get_session ()

+
gboolean
+qmi_message_uim_change_pin_input_get_session
+                               (QmiMessageUimChangePinInput *self,
+                                QmiUimSessionType *value_session_session_type,
+                                GArray **value_session_application_identifier,
+                                GError **error);
+

Get the 'Session' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + + + + + + +

self

a QmiMessageUimChangePinInput.

 

value_session_session_type

a placeholder for the output QmiUimSessionType, or NULL if not required.

 

value_session_application_identifier

a placeholder for the output GArray of guint8 elements, or NULL if not required. Do not free it, it is owned by self +.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.14

+
+
+
+

qmi_message_uim_change_pin_input_set_session ()

+
gboolean
+qmi_message_uim_change_pin_input_set_session
+                               (QmiMessageUimChangePinInput *self,
+                                QmiUimSessionType value_session_session_type,
+                                GArray *value_session_application_identifier,
+                                GError **error);
+

Set the 'Session' field in the message.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + + + + + + +

self

a QmiMessageUimChangePinInput.

 

value_session_session_type

a QmiUimSessionType.

 

value_session_application_identifier

a GArray of guint8 elements. A new reference to value_session_application_identifier +will be taken.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if value +was successfully set, FALSE otherwise.

+
+

Since: 1.14

+
+
+
+

qmi_message_uim_change_pin_output_ref ()

+
QmiMessageUimChangePinOutput *
+qmi_message_uim_change_pin_output_ref (QmiMessageUimChangePinOutput *self);
+

Atomically increments the reference count of self + by one.

+
+

Parameters

+
+++++ + + + + + +

self

a QmiMessageUimChangePinOutput.

 
+
+
+

Returns

+

the new reference to self +.

+
+

Since: 1.14

+
+
+
+

qmi_message_uim_change_pin_output_unref ()

+
void
+qmi_message_uim_change_pin_output_unref
+                               (QmiMessageUimChangePinOutput *self);
+

Atomically decrements the reference count of self + by one. +If the reference count drops to 0, self + is completely disposed.

+
+

Parameters

+
+++++ + + + + + +

self

a QmiMessageUimChangePinOutput.

 
+
+

Since: 1.14

+
+
+
+

qmi_message_uim_change_pin_output_get_card_result ()

+
gboolean
+qmi_message_uim_change_pin_output_get_card_result
+                               (QmiMessageUimChangePinOutput *self,
+                                guint8 *value_card_result_sw1,
+                                guint8 *value_card_result_sw2,
+                                GError **error);
+

Get the 'Card Result' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + + + + + + +

self

a QmiMessageUimChangePinOutput.

 

value_card_result_sw1

a placeholder for the output guint8, or NULL if not required.

 

value_card_result_sw2

a placeholder for the output guint8, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.14

+
+
+
+

qmi_message_uim_change_pin_output_get_result ()

+
gboolean
+qmi_message_uim_change_pin_output_get_result
+                               (QmiMessageUimChangePinOutput *self,
+                                GError **error);
+

Get the result of the QMI operation.

+
+

Parameters

+
+++++ + + + + + + + + + + + + +

self

a QmiMessageUimChangePinOutput.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the QMI operation succeeded, FALSE if error +is set.

+
+

Since: 1.14

+
+
+
+

qmi_message_uim_change_pin_output_get_retries_remaining ()

+
gboolean
+qmi_message_uim_change_pin_output_get_retries_remaining
+                               (QmiMessageUimChangePinOutput *self,
+                                guint8 *value_retries_remaining_verify_retries_left,
+                                guint8 *value_retries_remaining_unblock_retries_left,
+                                GError **error);
+

Get the 'Retries Remaining' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + + + + + + +

self

a QmiMessageUimChangePinOutput.

 

value_retries_remaining_verify_retries_left

a placeholder for the output guint8, or NULL if not required.

 

value_retries_remaining_unblock_retries_left

a placeholder for the output guint8, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.14

+
+
+
+

qmi_message_uim_change_pin_output_get_response_in_indication_token ()

+
gboolean
+qmi_message_uim_change_pin_output_get_response_in_indication_token
+                               (QmiMessageUimChangePinOutput *self,
+                                guint32 *value_response_in_indication_token,
+                                GError **error);
+

Get the 'Response In Indication Token' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageUimChangePinOutput.

 

value_response_in_indication_token

a placeholder for the output guint32, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.14

+
+
+
+

qmi_client_uim_change_pin ()

+
void
+qmi_client_uim_change_pin (QmiClientUim *self,
+                           QmiMessageUimChangePinInput *input,
+                           guint timeout,
+                           GCancellable *cancellable,
+                           GAsyncReadyCallback callback,
+                           gpointer user_data);
+

Asynchronously sends a Change PIN request to the device.

+

When the operation is finished, callback + will be invoked in the thread-default main loop of the thread you are calling this method from.

+

You can then call qmi_client_uim_change_pin_finish() to get the result of the operation.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

self

a QmiClientUim.

 

input

a QmiMessageUimChangePinInput.

 

timeout

maximum time to wait for the method to complete, in seconds.

 

cancellable

a GCancellable or NULL.

 

callback

a GAsyncReadyCallback to call when the request is satisfied.

 

user_data

user data to pass to callback +.

 
+
+

Since: 1.14

+
+
+
+

qmi_client_uim_change_pin_finish ()

+
QmiMessageUimChangePinOutput *
+qmi_client_uim_change_pin_finish (QmiClientUim *self,
+                                  GAsyncResult *res,
+                                  GError **error);
+

Finishes an async operation started with qmi_client_uim_change_pin().

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiClientUim.

 

res

the GAsyncResult obtained from the GAsyncReadyCallback passed to qmi_client_uim_change_pin().

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

a QmiMessageUimChangePinOutput, or NULL if error +is set. The returned value should be freed with qmi_message_uim_change_pin_output_unref().

+
+

Since: 1.14

+
+
+
+

Types and Values

+
+

QmiMessageUimChangePinInput

+
typedef struct _QmiMessageUimChangePinInput QmiMessageUimChangePinInput;
+

The QmiMessageUimChangePinInput structure contains private data and should only be accessed +using the provided API.

+

Since: 1.14

+
+
+
+

QmiMessageUimChangePinOutput

+
typedef struct _QmiMessageUimChangePinOutput QmiMessageUimChangePinOutput;
+

The QmiMessageUimChangePinOutput structure contains private data and should only be accessed +using the provided API.

+

Since: 1.14

+
+
+
+ + + \ No newline at end of file diff -Nru libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-UIM-enumerations-and-flags.html libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-UIM-enumerations-and-flags.html --- libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-UIM-enumerations-and-flags.html 2017-03-22 12:28:29.000000000 +0100 +++ libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-UIM-enumerations-and-flags.html 2019-01-08 15:19:02.000000000 +0100 @@ -3,12 +3,12 @@ UIM enumerations and flags: libqmi-glib Reference Manual - + - - + + @@ -21,7 +21,7 @@ Home Up Prev -Next +Next
@@ -189,7 +189,7 @@

Object Hierarchy

-
    GEnum
+
    GEnum
     ├── QmiUimCardApplicationPersonalizationFeature
     ├── QmiUimCardApplicationPersonalizationState
     ├── QmiUimCardApplicationState
@@ -201,7 +201,7 @@
     ├── QmiUimPinState
     ├── QmiUimSecurityAttributeLogic
     ╰── QmiUimSessionType
-    GFlags
+    GFlags
     ╰── QmiUimSecurityAttribute
 
@@ -235,7 +235,7 @@

Returns

-

a string with the nickname, or NULL if not found. Do not free the returned value.

+

a string with the nickname, or NULL if not found. Do not free the returned value.

[transfer none]

Since: 1.6

@@ -264,7 +264,7 @@

Returns

-

a string with the nickname, or NULL if not found. Do not free the returned value.

+

a string with the nickname, or NULL if not found. Do not free the returned value.

[transfer none]

Since: 1.6

@@ -294,7 +294,7 @@

Returns

-

a string with the nickname, or NULL if not found. Do not free the returned value.

+

a string with the nickname, or NULL if not found. Do not free the returned value.

[transfer none]

Since: 1.6

@@ -325,7 +325,7 @@

Returns

-

a string with the list of nicknames, or NULL if none given. The returned value should be freed with g_free().

+

a string with the list of nicknames, or NULL if none given. The returned value should be freed with g_free().

[transfer full]

Since: 1.6

@@ -354,7 +354,7 @@

Returns

-

a string with the nickname, or NULL if not found. Do not free the returned value.

+

a string with the nickname, or NULL if not found. Do not free the returned value.

[transfer none]

Since: 1.10

@@ -383,7 +383,7 @@

Returns

-

a string with the nickname, or NULL if not found. Do not free the returned value.

+

a string with the nickname, or NULL if not found. Do not free the returned value.

[transfer none]

Since: 1.10

@@ -412,7 +412,7 @@

Returns

-

a string with the nickname, or NULL if not found. Do not free the returned value.

+

a string with the nickname, or NULL if not found. Do not free the returned value.

[transfer none]

Since: 1.10

@@ -442,7 +442,7 @@

Returns

-

a string with the nickname, or NULL if not found. Do not free the returned value.

+

a string with the nickname, or NULL if not found. Do not free the returned value.

[transfer none]

Since: 1.10

@@ -472,7 +472,7 @@

Returns

-

a string with the nickname, or NULL if not found. Do not free the returned value.

+

a string with the nickname, or NULL if not found. Do not free the returned value.

[transfer none]

Since: 1.10

@@ -502,7 +502,7 @@

Returns

-

a string with the nickname, or NULL if not found. Do not free the returned value.

+

a string with the nickname, or NULL if not found. Do not free the returned value.

[transfer none]

Since: 1.10

@@ -532,7 +532,7 @@

Returns

-

a string with the nickname, or NULL if not found. Do not free the returned value.

+

a string with the nickname, or NULL if not found. Do not free the returned value.

[transfer none]

Since: 1.10

@@ -561,7 +561,7 @@

Returns

-

a string with the nickname, or NULL if not found. Do not free the returned value.

+

a string with the nickname, or NULL if not found. Do not free the returned value.

[transfer none]

Since: 1.14

@@ -1333,6 +1333,6 @@ +
Generated by GTK-Doc V1.29 \ No newline at end of file diff -Nru libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-UIM-Get-Card-Status.html libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-UIM-Get-Card-Status.html --- libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-UIM-Get-Card-Status.html 2017-03-22 12:28:29.000000000 +0100 +++ libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-UIM-Get-Card-Status.html 1970-01-01 01:00:00.000000000 +0100 @@ -1,567 +0,0 @@ - - - - -UIM Get Card Status: libqmi-glib Reference Manual - - - - - - - - - - - - - - - - -
-
-
- - -
-

UIM Get Card Status

-

UIM Get Card Status

-
- - -
-

Object Hierarchy

-
    GBoxed
-    ╰── QmiMessageUimGetCardStatusOutput
-
-
-
-

Description

-
-
-

Functions

-
-

qmi_message_uim_get_card_status_output_ref ()

-
QmiMessageUimGetCardStatusOutput *
-qmi_message_uim_get_card_status_output_ref
-                               (QmiMessageUimGetCardStatusOutput *self);
-

Atomically increments the reference count of self - by one.

-
-

Parameters

-
----- - - - - - -

self

a QmiMessageUimGetCardStatusOutput.

 
-
-
-

Returns

-

the new reference to self -.

-
-

Since: 1.10

-
-
-
-

qmi_message_uim_get_card_status_output_unref ()

-
void
-qmi_message_uim_get_card_status_output_unref
-                               (QmiMessageUimGetCardStatusOutput *self);
-

Atomically decrements the reference count of self - by one. -If the reference count drops to 0, self - is completely disposed.

-
-

Parameters

-
----- - - - - - -

self

a QmiMessageUimGetCardStatusOutput.

 
-
-

Since: 1.10

-
-
-
-

qmi_message_uim_get_card_status_output_get_card_status ()

-
gboolean
-qmi_message_uim_get_card_status_output_get_card_status
-                               (QmiMessageUimGetCardStatusOutput *self,
-                                guint16 *value_card_status_index_gw_primary,
-                                guint16 *value_card_status_index_1x_primary,
-                                guint16 *value_card_status_index_gw_secondary_,
-                                guint16 *value_card_status_index_1x_secondary,
-                                GArray **value_card_status_cards,
-                                GError **error);
-

Get the 'Card Status' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

self

a QmiMessageUimGetCardStatusOutput.

 

value_card_status_index_gw_primary

a placeholder for the output guint16, or NULL if not required.

 

value_card_status_index_1x_primary

a placeholder for the output guint16, or NULL if not required.

 

value_card_status_index_gw_secondary_

a placeholder for the output guint16, or NULL if not required.

 

value_card_status_index_1x_secondary

a placeholder for the output guint16, or NULL if not required.

 

value_card_status_cards

a placeholder for the output GArray of QmiMessageUimGetCardStatusOutputCardStatusCardsElement elements, or NULL if not required. Do not free it, it is owned by self -.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.10

-
-
-
-

qmi_message_uim_get_card_status_output_get_result ()

-
gboolean
-qmi_message_uim_get_card_status_output_get_result
-                               (QmiMessageUimGetCardStatusOutput *self,
-                                GError **error);
-

Get the result of the QMI operation.

-
-

Parameters

-
----- - - - - - - - - - - - - -

self

a QmiMessageUimGetCardStatusOutput.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the QMI operation succeeded, FALSE if error -is set.

-
-

Since: 1.10

-
-
-
-

qmi_client_uim_get_card_status ()

-
void
-qmi_client_uim_get_card_status (QmiClientUim *self,
-                                gpointer unused,
-                                guint timeout,
-                                GCancellable *cancellable,
-                                GAsyncReadyCallback callback,
-                                gpointer user_data);
-

Asynchronously sends a Get Card Status request to the device.

-

When the operation is finished, callback - will be invoked in the thread-default main loop of the thread you are calling this method from.

-

You can then call qmi_client_uim_get_card_status_finish() to get the result of the operation.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

self

a QmiClientUim.

 

unused

NULL. This message doesn't have any input bundle.

 

timeout

maximum time to wait for the method to complete, in seconds.

 

cancellable

a GCancellable or NULL.

 

callback

a GAsyncReadyCallback to call when the request is satisfied.

 

user_data

user data to pass to callback -.

 
-
-

Since: 1.10

-
-
-
-

qmi_client_uim_get_card_status_finish ()

-
QmiMessageUimGetCardStatusOutput *
-qmi_client_uim_get_card_status_finish (QmiClientUim *self,
-                                       GAsyncResult *res,
-                                       GError **error);
-

Finishes an async operation started with qmi_client_uim_get_card_status().

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiClientUim.

 

res

the GAsyncResult obtained from the GAsyncReadyCallback passed to qmi_client_uim_get_card_status().

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

a QmiMessageUimGetCardStatusOutput, or NULL if error -is set. The returned value should be freed with qmi_message_uim_get_card_status_output_unref().

-
-

Since: 1.10

-
-
-
-

Types and Values

-
-

QmiMessageUimGetCardStatusOutput

-
typedef struct _QmiMessageUimGetCardStatusOutput QmiMessageUimGetCardStatusOutput;
-

The QmiMessageUimGetCardStatusOutput structure contains private data and should only be accessed -using the provided API.

-

Since: 1.10

-
-
-
-

QmiMessageUimGetCardStatusOutputCardStatusCardsElementApplicationsElement

-
typedef struct {
-    QmiUimCardApplicationType type;
-    QmiUimCardApplicationState state;
-    QmiUimCardApplicationPersonalizationState personalization_state;
-    QmiUimCardApplicationPersonalizationFeature personalization_feature;
-    guint8 personalization_retries;
-    guint8 personalization_unblock_retries;
-    GArray *application_identifier_value;
-    gboolean upin_replaces_pin1;
-    QmiUimPinState pin1_state;
-    guint8 pin1_retries;
-    guint8 puk1_retries;
-    QmiUimPinState pin2_state;
-    guint8 pin2_retries;
-    guint8 puk2_retries;
-} QmiMessageUimGetCardStatusOutputCardStatusCardsElementApplicationsElement;
-
-

A QmiMessageUimGetCardStatusOutputCardStatusCardsElementApplicationsElement struct.

-
-

Members

-
----- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

QmiUimCardApplicationType type;

a QmiUimCardApplicationType.

 

QmiUimCardApplicationState state;

a QmiUimCardApplicationState.

 

QmiUimCardApplicationPersonalizationState personalization_state;

a QmiUimCardApplicationPersonalizationState.

 

QmiUimCardApplicationPersonalizationFeature personalization_feature;

a QmiUimCardApplicationPersonalizationFeature.

 

guint8 personalization_retries;

a guint8.

 

guint8 personalization_unblock_retries;

a guint8.

 

GArray *application_identifier_value;

a GArray of guint8 elements.

 

gboolean upin_replaces_pin1;

a gboolean.

 

QmiUimPinState pin1_state;

a QmiUimPinState.

 

guint8 pin1_retries;

a guint8.

 

guint8 puk1_retries;

a guint8.

 

QmiUimPinState pin2_state;

a QmiUimPinState.

 

guint8 pin2_retries;

a guint8.

 

guint8 puk2_retries;

a guint8.

 
-
-

Since: 1.10

-
-
-
-

QmiMessageUimGetCardStatusOutputCardStatusCardsElement

-
typedef struct {
-    QmiUimCardState card_state;
-    QmiUimPinState upin_state;
-    guint8 upin_retries;
-    guint8 upuk_retries;
-    QmiUimCardError error_code;
-    GArray *applications;
-} QmiMessageUimGetCardStatusOutputCardStatusCardsElement;
-
-

A QmiMessageUimGetCardStatusOutputCardStatusCardsElement struct.

-
-

Members

-
----- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

QmiUimCardState card_state;

a QmiUimCardState.

 

QmiUimPinState upin_state;

a QmiUimPinState.

 

guint8 upin_retries;

a guint8.

 

guint8 upuk_retries;

a guint8.

 

QmiUimCardError error_code;

a QmiUimCardError.

 

GArray *applications;

a GArray of QmiMessageUimGetCardStatusOutputCardStatusCardsElementApplicationsElement elements.

 
-
-

Since: 1.10

-
-
-
- - - \ No newline at end of file diff -Nru libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-UIM-Get-Card-Status-request.html libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-UIM-Get-Card-Status-request.html --- libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-UIM-Get-Card-Status-request.html 1970-01-01 01:00:00.000000000 +0100 +++ libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-UIM-Get-Card-Status-request.html 2019-01-08 15:19:02.000000000 +0100 @@ -0,0 +1,567 @@ + + + + +UIM Get Card Status request: libqmi-glib Reference Manual + + + + + + + + + + + + + + + + +
+
+
+ + +
+

UIM Get Card Status request

+

UIM Get Card Status request

+
+ + +
+

Object Hierarchy

+
    GBoxed
+    ╰── QmiMessageUimGetCardStatusOutput
+
+
+
+

Description

+
+
+

Functions

+
+

qmi_message_uim_get_card_status_output_ref ()

+
QmiMessageUimGetCardStatusOutput *
+qmi_message_uim_get_card_status_output_ref
+                               (QmiMessageUimGetCardStatusOutput *self);
+

Atomically increments the reference count of self + by one.

+
+

Parameters

+
+++++ + + + + + +

self

a QmiMessageUimGetCardStatusOutput.

 
+
+
+

Returns

+

the new reference to self +.

+
+

Since: 1.10

+
+
+
+

qmi_message_uim_get_card_status_output_unref ()

+
void
+qmi_message_uim_get_card_status_output_unref
+                               (QmiMessageUimGetCardStatusOutput *self);
+

Atomically decrements the reference count of self + by one. +If the reference count drops to 0, self + is completely disposed.

+
+

Parameters

+
+++++ + + + + + +

self

a QmiMessageUimGetCardStatusOutput.

 
+
+

Since: 1.10

+
+
+
+

qmi_message_uim_get_card_status_output_get_card_status ()

+
gboolean
+qmi_message_uim_get_card_status_output_get_card_status
+                               (QmiMessageUimGetCardStatusOutput *self,
+                                guint16 *value_card_status_index_gw_primary,
+                                guint16 *value_card_status_index_1x_primary,
+                                guint16 *value_card_status_index_gw_secondary,
+                                guint16 *value_card_status_index_1x_secondary,
+                                GArray **value_card_status_cards,
+                                GError **error);
+

Get the 'Card Status' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

self

a QmiMessageUimGetCardStatusOutput.

 

value_card_status_index_gw_primary

a placeholder for the output guint16, or NULL if not required.

 

value_card_status_index_1x_primary

a placeholder for the output guint16, or NULL if not required.

 

value_card_status_index_gw_secondary

a placeholder for the output guint16, or NULL if not required.

 

value_card_status_index_1x_secondary

a placeholder for the output guint16, or NULL if not required.

 

value_card_status_cards

a placeholder for the output GArray of QmiMessageUimGetCardStatusOutputCardStatusCardsElement elements, or NULL if not required. Do not free it, it is owned by self +.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.10

+
+
+
+

qmi_message_uim_get_card_status_output_get_result ()

+
gboolean
+qmi_message_uim_get_card_status_output_get_result
+                               (QmiMessageUimGetCardStatusOutput *self,
+                                GError **error);
+

Get the result of the QMI operation.

+
+

Parameters

+
+++++ + + + + + + + + + + + + +

self

a QmiMessageUimGetCardStatusOutput.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the QMI operation succeeded, FALSE if error +is set.

+
+

Since: 1.10

+
+
+
+

qmi_client_uim_get_card_status ()

+
void
+qmi_client_uim_get_card_status (QmiClientUim *self,
+                                gpointer unused,
+                                guint timeout,
+                                GCancellable *cancellable,
+                                GAsyncReadyCallback callback,
+                                gpointer user_data);
+

Asynchronously sends a Get Card Status request to the device.

+

When the operation is finished, callback + will be invoked in the thread-default main loop of the thread you are calling this method from.

+

You can then call qmi_client_uim_get_card_status_finish() to get the result of the operation.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

self

a QmiClientUim.

 

unused

NULL. This message doesn't have any input bundle.

 

timeout

maximum time to wait for the method to complete, in seconds.

 

cancellable

a GCancellable or NULL.

 

callback

a GAsyncReadyCallback to call when the request is satisfied.

 

user_data

user data to pass to callback +.

 
+
+

Since: 1.10

+
+
+
+

qmi_client_uim_get_card_status_finish ()

+
QmiMessageUimGetCardStatusOutput *
+qmi_client_uim_get_card_status_finish (QmiClientUim *self,
+                                       GAsyncResult *res,
+                                       GError **error);
+

Finishes an async operation started with qmi_client_uim_get_card_status().

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiClientUim.

 

res

the GAsyncResult obtained from the GAsyncReadyCallback passed to qmi_client_uim_get_card_status().

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

a QmiMessageUimGetCardStatusOutput, or NULL if error +is set. The returned value should be freed with qmi_message_uim_get_card_status_output_unref().

+
+

Since: 1.10

+
+
+
+

Types and Values

+
+

QmiMessageUimGetCardStatusOutput

+
typedef struct _QmiMessageUimGetCardStatusOutput QmiMessageUimGetCardStatusOutput;
+

The QmiMessageUimGetCardStatusOutput structure contains private data and should only be accessed +using the provided API.

+

Since: 1.10

+
+
+
+

QmiMessageUimGetCardStatusOutputCardStatusCardsElementApplicationsElement

+
typedef struct {
+    QmiUimCardApplicationType type;
+    QmiUimCardApplicationState state;
+    QmiUimCardApplicationPersonalizationState personalization_state;
+    QmiUimCardApplicationPersonalizationFeature personalization_feature;
+    guint8 personalization_retries;
+    guint8 personalization_unblock_retries;
+    GArray *application_identifier_value;
+    gboolean upin_replaces_pin1;
+    QmiUimPinState pin1_state;
+    guint8 pin1_retries;
+    guint8 puk1_retries;
+    QmiUimPinState pin2_state;
+    guint8 pin2_retries;
+    guint8 puk2_retries;
+} QmiMessageUimGetCardStatusOutputCardStatusCardsElementApplicationsElement;
+
+

A QmiMessageUimGetCardStatusOutputCardStatusCardsElementApplicationsElement struct.

+
+

Members

+
+++++ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

QmiUimCardApplicationType type;

a QmiUimCardApplicationType.

 

QmiUimCardApplicationState state;

a QmiUimCardApplicationState.

 

QmiUimCardApplicationPersonalizationState personalization_state;

a QmiUimCardApplicationPersonalizationState.

 

QmiUimCardApplicationPersonalizationFeature personalization_feature;

a QmiUimCardApplicationPersonalizationFeature.

 

guint8 personalization_retries;

a guint8.

 

guint8 personalization_unblock_retries;

a guint8.

 

GArray *application_identifier_value;

a GArray of guint8 elements.

 

gboolean upin_replaces_pin1;

a gboolean.

 

QmiUimPinState pin1_state;

a QmiUimPinState.

 

guint8 pin1_retries;

a guint8.

 

guint8 puk1_retries;

a guint8.

 

QmiUimPinState pin2_state;

a QmiUimPinState.

 

guint8 pin2_retries;

a guint8.

 

guint8 puk2_retries;

a guint8.

 
+
+

Since: 1.10

+
+
+
+

QmiMessageUimGetCardStatusOutputCardStatusCardsElement

+
typedef struct {
+    QmiUimCardState card_state;
+    QmiUimPinState upin_state;
+    guint8 upin_retries;
+    guint8 upuk_retries;
+    QmiUimCardError error_code;
+    GArray *applications;
+} QmiMessageUimGetCardStatusOutputCardStatusCardsElement;
+
+

A QmiMessageUimGetCardStatusOutputCardStatusCardsElement struct.

+
+

Members

+
+++++ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

QmiUimCardState card_state;

a QmiUimCardState.

 

QmiUimPinState upin_state;

a QmiUimPinState.

 

guint8 upin_retries;

a guint8.

 

guint8 upuk_retries;

a guint8.

 

QmiUimCardError error_code;

a QmiUimCardError.

 

GArray *applications;

a GArray of QmiMessageUimGetCardStatusOutputCardStatusCardsElementApplicationsElement elements.

 
+
+

Since: 1.10

+
+
+
+ + + \ No newline at end of file diff -Nru libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-UIM-Get-File-Attributes.html libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-UIM-Get-File-Attributes.html --- libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-UIM-Get-File-Attributes.html 2017-03-22 12:28:28.000000000 +0100 +++ libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-UIM-Get-File-Attributes.html 1970-01-01 01:00:00.000000000 +0100 @@ -1,1011 +0,0 @@ - - - - -UIM Get File Attributes: libqmi-glib Reference Manual - - - - - - - - - - - - - - - - -
-
-
- - -
-

UIM Get File Attributes

-

UIM Get File Attributes

-
-
-

Functions

-
---- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
-QmiMessageUimGetFileAttributesInput * - -qmi_message_uim_get_file_attributes_input_new () -
-QmiMessageUimGetFileAttributesInput * - -qmi_message_uim_get_file_attributes_input_ref () -
-void - -qmi_message_uim_get_file_attributes_input_unref () -
-gboolean - -qmi_message_uim_get_file_attributes_input_get_response_in_indication_token () -
-gboolean - -qmi_message_uim_get_file_attributes_input_set_response_in_indication_token () -
-gboolean - -qmi_message_uim_get_file_attributes_input_get_file () -
-gboolean - -qmi_message_uim_get_file_attributes_input_set_file () -
-gboolean - -qmi_message_uim_get_file_attributes_input_get_session_information () -
-gboolean - -qmi_message_uim_get_file_attributes_input_set_session_information () -
-QmiMessageUimGetFileAttributesOutput * - -qmi_message_uim_get_file_attributes_output_ref () -
-void - -qmi_message_uim_get_file_attributes_output_unref () -
-gboolean - -qmi_message_uim_get_file_attributes_output_get_card_result () -
-gboolean - -qmi_message_uim_get_file_attributes_output_get_result () -
-gboolean - -qmi_message_uim_get_file_attributes_output_get_file_attributes () -
-gboolean - -qmi_message_uim_get_file_attributes_output_get_response_in_indication_token () -
-void - -qmi_client_uim_get_file_attributes () -
-QmiMessageUimGetFileAttributesOutput * - -qmi_client_uim_get_file_attributes_finish () -
-
-
-

Types and Values

- -
-
-

Object Hierarchy

-
    GBoxed
-    ├── QmiMessageUimGetFileAttributesInput
-    ╰── QmiMessageUimGetFileAttributesOutput
-
-
-
-

Description

-
-
-

Functions

-
-

qmi_message_uim_get_file_attributes_input_new ()

-
QmiMessageUimGetFileAttributesInput *
-qmi_message_uim_get_file_attributes_input_new
-                               (void);
-

Allocates a new QmiMessageUimGetFileAttributesInput.

-
-

Returns

-

the newly created QmiMessageUimGetFileAttributesInput. The returned value should be freed with qmi_message_uim_get_file_attributes_input_unref().

-
-

Since: 1.6

-
-
-
-

qmi_message_uim_get_file_attributes_input_ref ()

-
QmiMessageUimGetFileAttributesInput *
-qmi_message_uim_get_file_attributes_input_ref
-                               (QmiMessageUimGetFileAttributesInput *self);
-

Atomically increments the reference count of self - by one.

-
-

Parameters

-
----- - - - - - -

self

a QmiMessageUimGetFileAttributesInput.

 
-
-
-

Returns

-

the new reference to self -.

-
-

Since: 1.6

-
-
-
-

qmi_message_uim_get_file_attributes_input_unref ()

-
void
-qmi_message_uim_get_file_attributes_input_unref
-                               (QmiMessageUimGetFileAttributesInput *self);
-

Atomically decrements the reference count of self - by one. -If the reference count drops to 0, self - is completely disposed.

-
-

Parameters

-
----- - - - - - -

self

a QmiMessageUimGetFileAttributesInput.

 
-
-

Since: 1.6

-
-
-
-

qmi_message_uim_get_file_attributes_input_get_response_in_indication_token ()

-
gboolean
-qmi_message_uim_get_file_attributes_input_get_response_in_indication_token
-                               (QmiMessageUimGetFileAttributesInput *self,
-                                guint32 *value_response_in_indication_token,
-                                GError **error);
-

Get the 'Response In Indication Token' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessageUimGetFileAttributesInput.

 

value_response_in_indication_token

a placeholder for the output guint32, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.6

-
-
-
-

qmi_message_uim_get_file_attributes_input_set_response_in_indication_token ()

-
gboolean
-qmi_message_uim_get_file_attributes_input_set_response_in_indication_token
-                               (QmiMessageUimGetFileAttributesInput *self,
-                                guint32 value_response_in_indication_token,
-                                GError **error);
-

Set the 'Response In Indication Token' field in the message.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessageUimGetFileAttributesInput.

 

value_response_in_indication_token

a guint32.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if value -was successfully set, FALSE otherwise.

-
-

Since: 1.6

-
-
-
-

qmi_message_uim_get_file_attributes_input_get_file ()

-
gboolean
-qmi_message_uim_get_file_attributes_input_get_file
-                               (QmiMessageUimGetFileAttributesInput *self,
-                                guint16 *value_file_file_id,
-                                GArray **value_file_file_path,
-                                GError **error);
-

Get the 'File' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - - - - - - -

self

a QmiMessageUimGetFileAttributesInput.

 

value_file_file_id

a placeholder for the output guint16, or NULL if not required.

 

value_file_file_path

a placeholder for the output GArray of guint8 elements, or NULL if not required. Do not free it, it is owned by self -.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.6

-
-
-
-

qmi_message_uim_get_file_attributes_input_set_file ()

-
gboolean
-qmi_message_uim_get_file_attributes_input_set_file
-                               (QmiMessageUimGetFileAttributesInput *self,
-                                guint16 value_file_file_id,
-                                GArray *value_file_file_path,
-                                GError **error);
-

Set the 'File' field in the message.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - - - - - - -

self

a QmiMessageUimGetFileAttributesInput.

 

value_file_file_id

a guint16.

 

value_file_file_path

a GArray of guint8 elements. A new reference to value_file_file_path -will be taken.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if value -was successfully set, FALSE otherwise.

-
-

Since: 1.6

-
-
-
-

qmi_message_uim_get_file_attributes_input_get_session_information ()

-
gboolean
-qmi_message_uim_get_file_attributes_input_get_session_information
-                               (QmiMessageUimGetFileAttributesInput *self,
-                                QmiUimSessionType *value_session_information_session_type,
-                                const gchar **value_session_information_application_identifier,
-                                GError **error);
-

Get the 'Session Information' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - - - - - - -

self

a QmiMessageUimGetFileAttributesInput.

 

value_session_information_session_type

a placeholder for the output QmiUimSessionType, or NULL if not required.

 

value_session_information_application_identifier

a placeholder for the output constant string, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.6

-
-
-
-

qmi_message_uim_get_file_attributes_input_set_session_information ()

-
gboolean
-qmi_message_uim_get_file_attributes_input_set_session_information
-                               (QmiMessageUimGetFileAttributesInput *self,
-                                QmiUimSessionType value_session_information_session_type,
-                                const gchar *value_session_information_application_identifier,
-                                GError **error);
-

Set the 'Session Information' field in the message.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - - - - - - -

self

a QmiMessageUimGetFileAttributesInput.

 

value_session_information_session_type

a QmiUimSessionType.

 

value_session_information_application_identifier

a constant string.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if value -was successfully set, FALSE otherwise.

-
-

Since: 1.6

-
-
-
-

qmi_message_uim_get_file_attributes_output_ref ()

-
QmiMessageUimGetFileAttributesOutput *
-qmi_message_uim_get_file_attributes_output_ref
-                               (QmiMessageUimGetFileAttributesOutput *self);
-

Atomically increments the reference count of self - by one.

-
-

Parameters

-
----- - - - - - -

self

a QmiMessageUimGetFileAttributesOutput.

 
-
-
-

Returns

-

the new reference to self -.

-
-

Since: 1.6

-
-
-
-

qmi_message_uim_get_file_attributes_output_unref ()

-
void
-qmi_message_uim_get_file_attributes_output_unref
-                               (QmiMessageUimGetFileAttributesOutput *self);
-

Atomically decrements the reference count of self - by one. -If the reference count drops to 0, self - is completely disposed.

-
-

Parameters

-
----- - - - - - -

self

a QmiMessageUimGetFileAttributesOutput.

 
-
-

Since: 1.6

-
-
-
-

qmi_message_uim_get_file_attributes_output_get_card_result ()

-
gboolean
-qmi_message_uim_get_file_attributes_output_get_card_result
-                               (QmiMessageUimGetFileAttributesOutput *self,
-                                guint8 *value_card_result_sw1,
-                                guint8 *value_card_result_sw2,
-                                GError **error);
-

Get the 'Card result' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - - - - - - -

self

a QmiMessageUimGetFileAttributesOutput.

 

value_card_result_sw1

a placeholder for the output guint8, or NULL if not required.

 

value_card_result_sw2

a placeholder for the output guint8, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.6

-
-
-
-

qmi_message_uim_get_file_attributes_output_get_result ()

-
gboolean
-qmi_message_uim_get_file_attributes_output_get_result
-                               (QmiMessageUimGetFileAttributesOutput *self,
-                                GError **error);
-

Get the result of the QMI operation.

-
-

Parameters

-
----- - - - - - - - - - - - - -

self

a QmiMessageUimGetFileAttributesOutput.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the QMI operation succeeded, FALSE if error -is set.

-
-

Since: 1.6

-
-
-
-

qmi_message_uim_get_file_attributes_output_get_file_attributes ()

-
gboolean
-qmi_message_uim_get_file_attributes_output_get_file_attributes
-                               (QmiMessageUimGetFileAttributesOutput *self,
-                                guint16 *value_file_attributes_file_size,
-                                guint16 *value_file_attributes_file_id,
-                                QmiUimFileType *value_file_attributes_file_type,
-                                guint16 *value_file_attributes_record_size,
-                                guint16 *value_file_attributes_record_count,
-                                QmiUimSecurityAttributeLogic *value_file_attributes_read_security_attributes_logic,
-                                QmiUimSecurityAttribute *value_file_attributes_read_security_attributes,
-                                QmiUimSecurityAttributeLogic *value_file_attributes_write_security_attributes_logic,
-                                QmiUimSecurityAttribute *value_file_attributes_write_security_attributes,
-                                QmiUimSecurityAttributeLogic *value_file_attributes_increase_security_attributes_logic,
-                                QmiUimSecurityAttribute *value_file_attributes_increase_security_attributes,
-                                QmiUimSecurityAttributeLogic *value_file_attributes_deactivate_security_attributes_logic,
-                                QmiUimSecurityAttribute *value_file_attributes_deactivate_security_attributes,
-                                QmiUimSecurityAttributeLogic *value_file_attributes_activate_security_attributes_logic,
-                                QmiUimSecurityAttribute *value_file_attributes_activate_security_attributes,
-                                GArray **value_file_attributes_raw_data,
-                                GError **error);
-

Get the 'File Attributes' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

self

a QmiMessageUimGetFileAttributesOutput.

 

value_file_attributes_file_size

a placeholder for the output guint16, or NULL if not required.

 

value_file_attributes_file_id

a placeholder for the output guint16, or NULL if not required.

 

value_file_attributes_file_type

a placeholder for the output QmiUimFileType, or NULL if not required.

 

value_file_attributes_record_size

a placeholder for the output guint16, or NULL if not required.

 

value_file_attributes_record_count

a placeholder for the output guint16, or NULL if not required.

 

value_file_attributes_read_security_attributes_logic

a placeholder for the output QmiUimSecurityAttributeLogic, or NULL if not required.

 

value_file_attributes_read_security_attributes

a placeholder for the output QmiUimSecurityAttribute, or NULL if not required.

 

value_file_attributes_write_security_attributes_logic

a placeholder for the output QmiUimSecurityAttributeLogic, or NULL if not required.

 

value_file_attributes_write_security_attributes

a placeholder for the output QmiUimSecurityAttribute, or NULL if not required.

 

value_file_attributes_increase_security_attributes_logic

a placeholder for the output QmiUimSecurityAttributeLogic, or NULL if not required.

 

value_file_attributes_increase_security_attributes

a placeholder for the output QmiUimSecurityAttribute, or NULL if not required.

 

value_file_attributes_deactivate_security_attributes_logic

a placeholder for the output QmiUimSecurityAttributeLogic, or NULL if not required.

 

value_file_attributes_deactivate_security_attributes

a placeholder for the output QmiUimSecurityAttribute, or NULL if not required.

 

value_file_attributes_activate_security_attributes_logic

a placeholder for the output QmiUimSecurityAttributeLogic, or NULL if not required.

 

value_file_attributes_activate_security_attributes

a placeholder for the output QmiUimSecurityAttribute, or NULL if not required.

 

value_file_attributes_raw_data

a placeholder for the output GArray of guint8 elements, or NULL if not required. Do not free it, it is owned by self -.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.6

-
-
-
-

qmi_message_uim_get_file_attributes_output_get_response_in_indication_token ()

-
gboolean
-qmi_message_uim_get_file_attributes_output_get_response_in_indication_token
-                               (QmiMessageUimGetFileAttributesOutput *self,
-                                guint32 *value_response_in_indication_token,
-                                GError **error);
-

Get the 'Response In Indication Token' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessageUimGetFileAttributesOutput.

 

value_response_in_indication_token

a placeholder for the output guint32, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.6

-
-
-
-

qmi_client_uim_get_file_attributes ()

-
void
-qmi_client_uim_get_file_attributes (QmiClientUim *self,
-                                    QmiMessageUimGetFileAttributesInput *input,
-                                    guint timeout,
-                                    GCancellable *cancellable,
-                                    GAsyncReadyCallback callback,
-                                    gpointer user_data);
-

Asynchronously sends a Get File Attributes request to the device.

-

When the operation is finished, callback - will be invoked in the thread-default main loop of the thread you are calling this method from.

-

You can then call qmi_client_uim_get_file_attributes_finish() to get the result of the operation.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

self

a QmiClientUim.

 

input

a QmiMessageUimGetFileAttributesInput.

 

timeout

maximum time to wait for the method to complete, in seconds.

 

cancellable

a GCancellable or NULL.

 

callback

a GAsyncReadyCallback to call when the request is satisfied.

 

user_data

user data to pass to callback -.

 
-
-

Since: 1.6

-
-
-
-

qmi_client_uim_get_file_attributes_finish ()

-
QmiMessageUimGetFileAttributesOutput *
-qmi_client_uim_get_file_attributes_finish
-                               (QmiClientUim *self,
-                                GAsyncResult *res,
-                                GError **error);
-

Finishes an async operation started with qmi_client_uim_get_file_attributes().

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiClientUim.

 

res

the GAsyncResult obtained from the GAsyncReadyCallback passed to qmi_client_uim_get_file_attributes().

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

a QmiMessageUimGetFileAttributesOutput, or NULL if error -is set. The returned value should be freed with qmi_message_uim_get_file_attributes_output_unref().

-
-

Since: 1.6

-
-
-
-

Types and Values

-
-

QmiMessageUimGetFileAttributesInput

-
typedef struct _QmiMessageUimGetFileAttributesInput QmiMessageUimGetFileAttributesInput;
-

The QmiMessageUimGetFileAttributesInput structure contains private data and should only be accessed -using the provided API.

-

Since: 1.6

-
-
-
-

QmiMessageUimGetFileAttributesOutput

-
typedef struct _QmiMessageUimGetFileAttributesOutput QmiMessageUimGetFileAttributesOutput;
-

The QmiMessageUimGetFileAttributesOutput structure contains private data and should only be accessed -using the provided API.

-

Since: 1.6

-
-
-
- - - \ No newline at end of file diff -Nru libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-UIM-Get-File-Attributes-request.html libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-UIM-Get-File-Attributes-request.html --- libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-UIM-Get-File-Attributes-request.html 1970-01-01 01:00:00.000000000 +0100 +++ libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-UIM-Get-File-Attributes-request.html 2019-01-08 15:19:02.000000000 +0100 @@ -0,0 +1,1013 @@ + + + + +UIM Get File Attributes request: libqmi-glib Reference Manual + + + + + + + + + + + + + + + + +
+
+
+ + +
+

UIM Get File Attributes request

+

UIM Get File Attributes request

+
+
+

Functions

+
++++ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+QmiMessageUimGetFileAttributesInput * + +qmi_message_uim_get_file_attributes_input_new () +
+QmiMessageUimGetFileAttributesInput * + +qmi_message_uim_get_file_attributes_input_ref () +
+void + +qmi_message_uim_get_file_attributes_input_unref () +
+gboolean + +qmi_message_uim_get_file_attributes_input_get_response_in_indication_token () +
+gboolean + +qmi_message_uim_get_file_attributes_input_set_response_in_indication_token () +
+gboolean + +qmi_message_uim_get_file_attributes_input_get_file () +
+gboolean + +qmi_message_uim_get_file_attributes_input_set_file () +
+gboolean + +qmi_message_uim_get_file_attributes_input_get_session () +
+gboolean + +qmi_message_uim_get_file_attributes_input_set_session () +
+QmiMessageUimGetFileAttributesOutput * + +qmi_message_uim_get_file_attributes_output_ref () +
+void + +qmi_message_uim_get_file_attributes_output_unref () +
+gboolean + +qmi_message_uim_get_file_attributes_output_get_card_result () +
+gboolean + +qmi_message_uim_get_file_attributes_output_get_result () +
+gboolean + +qmi_message_uim_get_file_attributes_output_get_file_attributes () +
+gboolean + +qmi_message_uim_get_file_attributes_output_get_response_in_indication_token () +
+void + +qmi_client_uim_get_file_attributes () +
+QmiMessageUimGetFileAttributesOutput * + +qmi_client_uim_get_file_attributes_finish () +
+
+
+

Types and Values

+ +
+
+

Object Hierarchy

+
    GBoxed
+    ├── QmiMessageUimGetFileAttributesInput
+    ╰── QmiMessageUimGetFileAttributesOutput
+
+
+
+

Description

+
+
+

Functions

+
+

qmi_message_uim_get_file_attributes_input_new ()

+
QmiMessageUimGetFileAttributesInput *
+qmi_message_uim_get_file_attributes_input_new
+                               (void);
+

Allocates a new QmiMessageUimGetFileAttributesInput.

+
+

Returns

+

the newly created QmiMessageUimGetFileAttributesInput. The returned value should be freed with qmi_message_uim_get_file_attributes_input_unref().

+
+

Since: 1.6

+
+
+
+

qmi_message_uim_get_file_attributes_input_ref ()

+
QmiMessageUimGetFileAttributesInput *
+qmi_message_uim_get_file_attributes_input_ref
+                               (QmiMessageUimGetFileAttributesInput *self);
+

Atomically increments the reference count of self + by one.

+
+

Parameters

+
+++++ + + + + + +

self

a QmiMessageUimGetFileAttributesInput.

 
+
+
+

Returns

+

the new reference to self +.

+
+

Since: 1.6

+
+
+
+

qmi_message_uim_get_file_attributes_input_unref ()

+
void
+qmi_message_uim_get_file_attributes_input_unref
+                               (QmiMessageUimGetFileAttributesInput *self);
+

Atomically decrements the reference count of self + by one. +If the reference count drops to 0, self + is completely disposed.

+
+

Parameters

+
+++++ + + + + + +

self

a QmiMessageUimGetFileAttributesInput.

 
+
+

Since: 1.6

+
+
+
+

qmi_message_uim_get_file_attributes_input_get_response_in_indication_token ()

+
gboolean
+qmi_message_uim_get_file_attributes_input_get_response_in_indication_token
+                               (QmiMessageUimGetFileAttributesInput *self,
+                                guint32 *value_response_in_indication_token,
+                                GError **error);
+

Get the 'Response In Indication Token' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageUimGetFileAttributesInput.

 

value_response_in_indication_token

a placeholder for the output guint32, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.6

+
+
+
+

qmi_message_uim_get_file_attributes_input_set_response_in_indication_token ()

+
gboolean
+qmi_message_uim_get_file_attributes_input_set_response_in_indication_token
+                               (QmiMessageUimGetFileAttributesInput *self,
+                                guint32 value_response_in_indication_token,
+                                GError **error);
+

Set the 'Response In Indication Token' field in the message.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageUimGetFileAttributesInput.

 

value_response_in_indication_token

a guint32.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if value +was successfully set, FALSE otherwise.

+
+

Since: 1.6

+
+
+
+

qmi_message_uim_get_file_attributes_input_get_file ()

+
gboolean
+qmi_message_uim_get_file_attributes_input_get_file
+                               (QmiMessageUimGetFileAttributesInput *self,
+                                guint16 *value_file_file_id,
+                                GArray **value_file_file_path,
+                                GError **error);
+

Get the 'File' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + + + + + + +

self

a QmiMessageUimGetFileAttributesInput.

 

value_file_file_id

a placeholder for the output guint16, or NULL if not required.

 

value_file_file_path

a placeholder for the output GArray of guint8 elements, or NULL if not required. Do not free it, it is owned by self +.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.6

+
+
+
+

qmi_message_uim_get_file_attributes_input_set_file ()

+
gboolean
+qmi_message_uim_get_file_attributes_input_set_file
+                               (QmiMessageUimGetFileAttributesInput *self,
+                                guint16 value_file_file_id,
+                                GArray *value_file_file_path,
+                                GError **error);
+

Set the 'File' field in the message.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + + + + + + +

self

a QmiMessageUimGetFileAttributesInput.

 

value_file_file_id

a guint16.

 

value_file_file_path

a GArray of guint8 elements. A new reference to value_file_file_path +will be taken.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if value +was successfully set, FALSE otherwise.

+
+

Since: 1.6

+
+
+
+

qmi_message_uim_get_file_attributes_input_get_session ()

+
gboolean
+qmi_message_uim_get_file_attributes_input_get_session
+                               (QmiMessageUimGetFileAttributesInput *self,
+                                QmiUimSessionType *value_session_session_type,
+                                GArray **value_session_application_identifier,
+                                GError **error);
+

Get the 'Session' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + + + + + + +

self

a QmiMessageUimGetFileAttributesInput.

 

value_session_session_type

a placeholder for the output QmiUimSessionType, or NULL if not required.

 

value_session_application_identifier

a placeholder for the output GArray of guint8 elements, or NULL if not required. Do not free it, it is owned by self +.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.6

+
+
+
+

qmi_message_uim_get_file_attributes_input_set_session ()

+
gboolean
+qmi_message_uim_get_file_attributes_input_set_session
+                               (QmiMessageUimGetFileAttributesInput *self,
+                                QmiUimSessionType value_session_session_type,
+                                GArray *value_session_application_identifier,
+                                GError **error);
+

Set the 'Session' field in the message.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + + + + + + +

self

a QmiMessageUimGetFileAttributesInput.

 

value_session_session_type

a QmiUimSessionType.

 

value_session_application_identifier

a GArray of guint8 elements. A new reference to value_session_application_identifier +will be taken.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if value +was successfully set, FALSE otherwise.

+
+

Since: 1.6

+
+
+
+

qmi_message_uim_get_file_attributes_output_ref ()

+
QmiMessageUimGetFileAttributesOutput *
+qmi_message_uim_get_file_attributes_output_ref
+                               (QmiMessageUimGetFileAttributesOutput *self);
+

Atomically increments the reference count of self + by one.

+
+

Parameters

+
+++++ + + + + + +

self

a QmiMessageUimGetFileAttributesOutput.

 
+
+
+

Returns

+

the new reference to self +.

+
+

Since: 1.6

+
+
+
+

qmi_message_uim_get_file_attributes_output_unref ()

+
void
+qmi_message_uim_get_file_attributes_output_unref
+                               (QmiMessageUimGetFileAttributesOutput *self);
+

Atomically decrements the reference count of self + by one. +If the reference count drops to 0, self + is completely disposed.

+
+

Parameters

+
+++++ + + + + + +

self

a QmiMessageUimGetFileAttributesOutput.

 
+
+

Since: 1.6

+
+
+
+

qmi_message_uim_get_file_attributes_output_get_card_result ()

+
gboolean
+qmi_message_uim_get_file_attributes_output_get_card_result
+                               (QmiMessageUimGetFileAttributesOutput *self,
+                                guint8 *value_card_result_sw1,
+                                guint8 *value_card_result_sw2,
+                                GError **error);
+

Get the 'Card result' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + + + + + + +

self

a QmiMessageUimGetFileAttributesOutput.

 

value_card_result_sw1

a placeholder for the output guint8, or NULL if not required.

 

value_card_result_sw2

a placeholder for the output guint8, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.6

+
+
+
+

qmi_message_uim_get_file_attributes_output_get_result ()

+
gboolean
+qmi_message_uim_get_file_attributes_output_get_result
+                               (QmiMessageUimGetFileAttributesOutput *self,
+                                GError **error);
+

Get the result of the QMI operation.

+
+

Parameters

+
+++++ + + + + + + + + + + + + +

self

a QmiMessageUimGetFileAttributesOutput.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the QMI operation succeeded, FALSE if error +is set.

+
+

Since: 1.6

+
+
+
+

qmi_message_uim_get_file_attributes_output_get_file_attributes ()

+
gboolean
+qmi_message_uim_get_file_attributes_output_get_file_attributes
+                               (QmiMessageUimGetFileAttributesOutput *self,
+                                guint16 *value_file_attributes_file_size,
+                                guint16 *value_file_attributes_file_id,
+                                QmiUimFileType *value_file_attributes_file_type,
+                                guint16 *value_file_attributes_record_size,
+                                guint16 *value_file_attributes_record_count,
+                                QmiUimSecurityAttributeLogic *value_file_attributes_read_security_attributes_logic,
+                                QmiUimSecurityAttribute *value_file_attributes_read_security_attributes,
+                                QmiUimSecurityAttributeLogic *value_file_attributes_write_security_attributes_logic,
+                                QmiUimSecurityAttribute *value_file_attributes_write_security_attributes,
+                                QmiUimSecurityAttributeLogic *value_file_attributes_increase_security_attributes_logic,
+                                QmiUimSecurityAttribute *value_file_attributes_increase_security_attributes,
+                                QmiUimSecurityAttributeLogic *value_file_attributes_deactivate_security_attributes_logic,
+                                QmiUimSecurityAttribute *value_file_attributes_deactivate_security_attributes,
+                                QmiUimSecurityAttributeLogic *value_file_attributes_activate_security_attributes_logic,
+                                QmiUimSecurityAttribute *value_file_attributes_activate_security_attributes,
+                                GArray **value_file_attributes_raw_data,
+                                GError **error);
+

Get the 'File Attributes' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

self

a QmiMessageUimGetFileAttributesOutput.

 

value_file_attributes_file_size

a placeholder for the output guint16, or NULL if not required.

 

value_file_attributes_file_id

a placeholder for the output guint16, or NULL if not required.

 

value_file_attributes_file_type

a placeholder for the output QmiUimFileType, or NULL if not required.

 

value_file_attributes_record_size

a placeholder for the output guint16, or NULL if not required.

 

value_file_attributes_record_count

a placeholder for the output guint16, or NULL if not required.

 

value_file_attributes_read_security_attributes_logic

a placeholder for the output QmiUimSecurityAttributeLogic, or NULL if not required.

 

value_file_attributes_read_security_attributes

a placeholder for the output QmiUimSecurityAttribute, or NULL if not required.

 

value_file_attributes_write_security_attributes_logic

a placeholder for the output QmiUimSecurityAttributeLogic, or NULL if not required.

 

value_file_attributes_write_security_attributes

a placeholder for the output QmiUimSecurityAttribute, or NULL if not required.

 

value_file_attributes_increase_security_attributes_logic

a placeholder for the output QmiUimSecurityAttributeLogic, or NULL if not required.

 

value_file_attributes_increase_security_attributes

a placeholder for the output QmiUimSecurityAttribute, or NULL if not required.

 

value_file_attributes_deactivate_security_attributes_logic

a placeholder for the output QmiUimSecurityAttributeLogic, or NULL if not required.

 

value_file_attributes_deactivate_security_attributes

a placeholder for the output QmiUimSecurityAttribute, or NULL if not required.

 

value_file_attributes_activate_security_attributes_logic

a placeholder for the output QmiUimSecurityAttributeLogic, or NULL if not required.

 

value_file_attributes_activate_security_attributes

a placeholder for the output QmiUimSecurityAttribute, or NULL if not required.

 

value_file_attributes_raw_data

a placeholder for the output GArray of guint8 elements, or NULL if not required. Do not free it, it is owned by self +.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.6

+
+
+
+

qmi_message_uim_get_file_attributes_output_get_response_in_indication_token ()

+
gboolean
+qmi_message_uim_get_file_attributes_output_get_response_in_indication_token
+                               (QmiMessageUimGetFileAttributesOutput *self,
+                                guint32 *value_response_in_indication_token,
+                                GError **error);
+

Get the 'Response In Indication Token' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageUimGetFileAttributesOutput.

 

value_response_in_indication_token

a placeholder for the output guint32, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.6

+
+
+
+

qmi_client_uim_get_file_attributes ()

+
void
+qmi_client_uim_get_file_attributes (QmiClientUim *self,
+                                    QmiMessageUimGetFileAttributesInput *input,
+                                    guint timeout,
+                                    GCancellable *cancellable,
+                                    GAsyncReadyCallback callback,
+                                    gpointer user_data);
+

Asynchronously sends a Get File Attributes request to the device.

+

When the operation is finished, callback + will be invoked in the thread-default main loop of the thread you are calling this method from.

+

You can then call qmi_client_uim_get_file_attributes_finish() to get the result of the operation.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

self

a QmiClientUim.

 

input

a QmiMessageUimGetFileAttributesInput.

 

timeout

maximum time to wait for the method to complete, in seconds.

 

cancellable

a GCancellable or NULL.

 

callback

a GAsyncReadyCallback to call when the request is satisfied.

 

user_data

user data to pass to callback +.

 
+
+

Since: 1.6

+
+
+
+

qmi_client_uim_get_file_attributes_finish ()

+
QmiMessageUimGetFileAttributesOutput *
+qmi_client_uim_get_file_attributes_finish
+                               (QmiClientUim *self,
+                                GAsyncResult *res,
+                                GError **error);
+

Finishes an async operation started with qmi_client_uim_get_file_attributes().

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiClientUim.

 

res

the GAsyncResult obtained from the GAsyncReadyCallback passed to qmi_client_uim_get_file_attributes().

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

a QmiMessageUimGetFileAttributesOutput, or NULL if error +is set. The returned value should be freed with qmi_message_uim_get_file_attributes_output_unref().

+
+

Since: 1.6

+
+
+
+

Types and Values

+
+

QmiMessageUimGetFileAttributesInput

+
typedef struct _QmiMessageUimGetFileAttributesInput QmiMessageUimGetFileAttributesInput;
+

The QmiMessageUimGetFileAttributesInput structure contains private data and should only be accessed +using the provided API.

+

Since: 1.6

+
+
+
+

QmiMessageUimGetFileAttributesOutput

+
typedef struct _QmiMessageUimGetFileAttributesOutput QmiMessageUimGetFileAttributesOutput;
+

The QmiMessageUimGetFileAttributesOutput structure contains private data and should only be accessed +using the provided API.

+

Since: 1.6

+
+
+
+ + + \ No newline at end of file diff -Nru libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-UIM-Get-Supported-Messages.html libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-UIM-Get-Supported-Messages.html --- libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-UIM-Get-Supported-Messages.html 2017-03-22 12:28:29.000000000 +0100 +++ libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-UIM-Get-Supported-Messages.html 1970-01-01 01:00:00.000000000 +0100 @@ -1,372 +0,0 @@ - - - - -UIM Get Supported Messages: libqmi-glib Reference Manual - - - - - - - - - - - - - - - - -
-
-
- - -
-

UIM Get Supported Messages

-

UIM Get Supported Messages

-
- -
-

Types and Values

- -
-
-

Object Hierarchy

-
    GBoxed
-    ╰── QmiMessageUimGetSupportedMessagesOutput
-
-
-
-

Description

-
-
-

Functions

-
-

qmi_message_uim_get_supported_messages_output_ref ()

-
QmiMessageUimGetSupportedMessagesOutput *
-qmi_message_uim_get_supported_messages_output_ref
-                               (QmiMessageUimGetSupportedMessagesOutput *self);
-

Atomically increments the reference count of self - by one.

-
-

Parameters

-
----- - - - - - -

self

a QmiMessageUimGetSupportedMessagesOutput.

 
-
-
-

Returns

-

the new reference to self -.

-
-

Since: 1.14

-
-
-
-

qmi_message_uim_get_supported_messages_output_unref ()

-
void
-qmi_message_uim_get_supported_messages_output_unref
-                               (QmiMessageUimGetSupportedMessagesOutput *self);
-

Atomically decrements the reference count of self - by one. -If the reference count drops to 0, self - is completely disposed.

-
-

Parameters

-
----- - - - - - -

self

a QmiMessageUimGetSupportedMessagesOutput.

 
-
-

Since: 1.14

-
-
-
-

qmi_message_uim_get_supported_messages_output_get_result ()

-
gboolean
-qmi_message_uim_get_supported_messages_output_get_result
-                               (QmiMessageUimGetSupportedMessagesOutput *self,
-                                GError **error);
-

Get the result of the QMI operation.

-
-

Parameters

-
----- - - - - - - - - - - - - -

self

a QmiMessageUimGetSupportedMessagesOutput.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the QMI operation succeeded, FALSE if error -is set.

-
-

Since: 1.14

-
-
-
-

qmi_message_uim_get_supported_messages_output_get_list ()

-
gboolean
-qmi_message_uim_get_supported_messages_output_get_list
-                               (QmiMessageUimGetSupportedMessagesOutput *self,
-                                GArray **value_list,
-                                GError **error);
-

Get the 'List' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessageUimGetSupportedMessagesOutput.

 

value_list

a placeholder for the output GArray of guint8 elements, or NULL if not required. Do not free it, it is owned by self -.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.14

-
-
-
-

qmi_client_uim_get_supported_messages ()

-
void
-qmi_client_uim_get_supported_messages (QmiClientUim *self,
-                                       gpointer unused,
-                                       guint timeout,
-                                       GCancellable *cancellable,
-                                       GAsyncReadyCallback callback,
-                                       gpointer user_data);
-

Asynchronously sends a Get Supported Messages request to the device.

-

When the operation is finished, callback - will be invoked in the thread-default main loop of the thread you are calling this method from.

-

You can then call qmi_client_uim_get_supported_messages_finish() to get the result of the operation.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

self

a QmiClientUim.

 

unused

NULL. This message doesn't have any input bundle.

 

timeout

maximum time to wait for the method to complete, in seconds.

 

cancellable

a GCancellable or NULL.

 

callback

a GAsyncReadyCallback to call when the request is satisfied.

 

user_data

user data to pass to callback -.

 
-
-

Since: 1.14

-
-
-
-

qmi_client_uim_get_supported_messages_finish ()

-
QmiMessageUimGetSupportedMessagesOutput *
-qmi_client_uim_get_supported_messages_finish
-                               (QmiClientUim *self,
-                                GAsyncResult *res,
-                                GError **error);
-

Finishes an async operation started with qmi_client_uim_get_supported_messages().

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiClientUim.

 

res

the GAsyncResult obtained from the GAsyncReadyCallback passed to qmi_client_uim_get_supported_messages().

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

a QmiMessageUimGetSupportedMessagesOutput, or NULL if error -is set. The returned value should be freed with qmi_message_uim_get_supported_messages_output_unref().

-
-

Since: 1.14

-
-
-
-

Types and Values

-
-

QmiMessageUimGetSupportedMessagesOutput

-
typedef struct _QmiMessageUimGetSupportedMessagesOutput QmiMessageUimGetSupportedMessagesOutput;
-

The QmiMessageUimGetSupportedMessagesOutput structure contains private data and should only be accessed -using the provided API.

-

Since: 1.14

-
-
-
- - - \ No newline at end of file diff -Nru libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-UIM-Get-Supported-Messages-request.html libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-UIM-Get-Supported-Messages-request.html --- libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-UIM-Get-Supported-Messages-request.html 1970-01-01 01:00:00.000000000 +0100 +++ libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-UIM-Get-Supported-Messages-request.html 2019-01-08 15:19:02.000000000 +0100 @@ -0,0 +1,372 @@ + + + + +UIM Get Supported Messages request: libqmi-glib Reference Manual + + + + + + + + + + + + + + + + +
+
+
+ + +
+

UIM Get Supported Messages request

+

UIM Get Supported Messages request

+
+ +
+

Types and Values

+ +
+
+

Object Hierarchy

+
    GBoxed
+    ╰── QmiMessageUimGetSupportedMessagesOutput
+
+
+
+

Description

+
+
+

Functions

+
+

qmi_message_uim_get_supported_messages_output_ref ()

+
QmiMessageUimGetSupportedMessagesOutput *
+qmi_message_uim_get_supported_messages_output_ref
+                               (QmiMessageUimGetSupportedMessagesOutput *self);
+

Atomically increments the reference count of self + by one.

+
+

Parameters

+
+++++ + + + + + +

self

a QmiMessageUimGetSupportedMessagesOutput.

 
+
+
+

Returns

+

the new reference to self +.

+
+

Since: 1.14

+
+
+
+

qmi_message_uim_get_supported_messages_output_unref ()

+
void
+qmi_message_uim_get_supported_messages_output_unref
+                               (QmiMessageUimGetSupportedMessagesOutput *self);
+

Atomically decrements the reference count of self + by one. +If the reference count drops to 0, self + is completely disposed.

+
+

Parameters

+
+++++ + + + + + +

self

a QmiMessageUimGetSupportedMessagesOutput.

 
+
+

Since: 1.14

+
+
+
+

qmi_message_uim_get_supported_messages_output_get_result ()

+
gboolean
+qmi_message_uim_get_supported_messages_output_get_result
+                               (QmiMessageUimGetSupportedMessagesOutput *self,
+                                GError **error);
+

Get the result of the QMI operation.

+
+

Parameters

+
+++++ + + + + + + + + + + + + +

self

a QmiMessageUimGetSupportedMessagesOutput.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the QMI operation succeeded, FALSE if error +is set.

+
+

Since: 1.14

+
+
+
+

qmi_message_uim_get_supported_messages_output_get_list ()

+
gboolean
+qmi_message_uim_get_supported_messages_output_get_list
+                               (QmiMessageUimGetSupportedMessagesOutput *self,
+                                GArray **value_list,
+                                GError **error);
+

Get the 'List' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageUimGetSupportedMessagesOutput.

 

value_list

a placeholder for the output GArray of guint8 elements, or NULL if not required. Do not free it, it is owned by self +.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.14

+
+
+
+

qmi_client_uim_get_supported_messages ()

+
void
+qmi_client_uim_get_supported_messages (QmiClientUim *self,
+                                       gpointer unused,
+                                       guint timeout,
+                                       GCancellable *cancellable,
+                                       GAsyncReadyCallback callback,
+                                       gpointer user_data);
+

Asynchronously sends a Get Supported Messages request to the device.

+

When the operation is finished, callback + will be invoked in the thread-default main loop of the thread you are calling this method from.

+

You can then call qmi_client_uim_get_supported_messages_finish() to get the result of the operation.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

self

a QmiClientUim.

 

unused

NULL. This message doesn't have any input bundle.

 

timeout

maximum time to wait for the method to complete, in seconds.

 

cancellable

a GCancellable or NULL.

 

callback

a GAsyncReadyCallback to call when the request is satisfied.

 

user_data

user data to pass to callback +.

 
+
+

Since: 1.14

+
+
+
+

qmi_client_uim_get_supported_messages_finish ()

+
QmiMessageUimGetSupportedMessagesOutput *
+qmi_client_uim_get_supported_messages_finish
+                               (QmiClientUim *self,
+                                GAsyncResult *res,
+                                GError **error);
+

Finishes an async operation started with qmi_client_uim_get_supported_messages().

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiClientUim.

 

res

the GAsyncResult obtained from the GAsyncReadyCallback passed to qmi_client_uim_get_supported_messages().

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

a QmiMessageUimGetSupportedMessagesOutput, or NULL if error +is set. The returned value should be freed with qmi_message_uim_get_supported_messages_output_unref().

+
+

Since: 1.14

+
+
+
+

Types and Values

+
+

QmiMessageUimGetSupportedMessagesOutput

+
typedef struct _QmiMessageUimGetSupportedMessagesOutput QmiMessageUimGetSupportedMessagesOutput;
+

The QmiMessageUimGetSupportedMessagesOutput structure contains private data and should only be accessed +using the provided API.

+

Since: 1.14

+
+
+
+ + + \ No newline at end of file diff -Nru libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-UIM-Power-Off-SIM.html libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-UIM-Power-Off-SIM.html --- libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-UIM-Power-Off-SIM.html 2017-03-22 12:28:29.000000000 +0100 +++ libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-UIM-Power-Off-SIM.html 1970-01-01 01:00:00.000000000 +0100 @@ -1,530 +0,0 @@ - - - - -UIM Power Off SIM: libqmi-glib Reference Manual - - - - - - - - - - - - - - - - -
-
-
- - -
-

UIM Power Off SIM

-

UIM Power Off SIM

-
- -
-

Types and Values

- -
-
-

Object Hierarchy

-
    GBoxed
-    ├── QmiMessageUimPowerOffSimInput
-    ╰── QmiMessageUimPowerOffSimOutput
-
-
-
-

Description

-
-
-

Functions

-
-

qmi_message_uim_power_off_sim_input_new ()

-
QmiMessageUimPowerOffSimInput *
-qmi_message_uim_power_off_sim_input_new
-                               (void);
-

Allocates a new QmiMessageUimPowerOffSimInput.

-
-

Returns

-

the newly created QmiMessageUimPowerOffSimInput. The returned value should be freed with qmi_message_uim_power_off_sim_input_unref().

-
-

Since: 1.18

-
-
-
-

qmi_message_uim_power_off_sim_input_ref ()

-
QmiMessageUimPowerOffSimInput *
-qmi_message_uim_power_off_sim_input_ref
-                               (QmiMessageUimPowerOffSimInput *self);
-

Atomically increments the reference count of self - by one.

-
-

Parameters

-
----- - - - - - -

self

a QmiMessageUimPowerOffSimInput.

 
-
-
-

Returns

-

the new reference to self -.

-
-

Since: 1.18

-
-
-
-

qmi_message_uim_power_off_sim_input_unref ()

-
void
-qmi_message_uim_power_off_sim_input_unref
-                               (QmiMessageUimPowerOffSimInput *self);
-

Atomically decrements the reference count of self - by one. -If the reference count drops to 0, self - is completely disposed.

-
-

Parameters

-
----- - - - - - -

self

a QmiMessageUimPowerOffSimInput.

 
-
-

Since: 1.18

-
-
-
-

qmi_message_uim_power_off_sim_input_get_slot ()

-
gboolean
-qmi_message_uim_power_off_sim_input_get_slot
-                               (QmiMessageUimPowerOffSimInput *self,
-                                guint8 *value_slot_slot,
-                                GError **error);
-

Get the 'Slot' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessageUimPowerOffSimInput.

 

value_slot_slot

a placeholder for the output guint8, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.18

-
-
-
-

qmi_message_uim_power_off_sim_input_set_slot ()

-
gboolean
-qmi_message_uim_power_off_sim_input_set_slot
-                               (QmiMessageUimPowerOffSimInput *self,
-                                guint8 value_slot_slot,
-                                GError **error);
-

Set the 'Slot' field in the message.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessageUimPowerOffSimInput.

 

value_slot_slot

a guint8.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if value -was successfully set, FALSE otherwise.

-
-

Since: 1.18

-
-
-
-

qmi_message_uim_power_off_sim_output_ref ()

-
QmiMessageUimPowerOffSimOutput *
-qmi_message_uim_power_off_sim_output_ref
-                               (QmiMessageUimPowerOffSimOutput *self);
-

Atomically increments the reference count of self - by one.

-
-

Parameters

-
----- - - - - - -

self

a QmiMessageUimPowerOffSimOutput.

 
-
-
-

Returns

-

the new reference to self -.

-
-

Since: 1.18

-
-
-
-

qmi_message_uim_power_off_sim_output_unref ()

-
void
-qmi_message_uim_power_off_sim_output_unref
-                               (QmiMessageUimPowerOffSimOutput *self);
-

Atomically decrements the reference count of self - by one. -If the reference count drops to 0, self - is completely disposed.

-
-

Parameters

-
----- - - - - - -

self

a QmiMessageUimPowerOffSimOutput.

 
-
-

Since: 1.18

-
-
-
-

qmi_message_uim_power_off_sim_output_get_result ()

-
gboolean
-qmi_message_uim_power_off_sim_output_get_result
-                               (QmiMessageUimPowerOffSimOutput *self,
-                                GError **error);
-

Get the result of the QMI operation.

-
-

Parameters

-
----- - - - - - - - - - - - - -

self

a QmiMessageUimPowerOffSimOutput.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the QMI operation succeeded, FALSE if error -is set.

-
-

Since: 1.18

-
-
-
-

qmi_client_uim_power_off_sim ()

-
void
-qmi_client_uim_power_off_sim (QmiClientUim *self,
-                              QmiMessageUimPowerOffSimInput *input,
-                              guint timeout,
-                              GCancellable *cancellable,
-                              GAsyncReadyCallback callback,
-                              gpointer user_data);
-

Asynchronously sends a Power Off SIM request to the device.

-

When the operation is finished, callback - will be invoked in the thread-default main loop of the thread you are calling this method from.

-

You can then call qmi_client_uim_power_off_sim_finish() to get the result of the operation.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

self

a QmiClientUim.

 

input

a QmiMessageUimPowerOffSimInput.

 

timeout

maximum time to wait for the method to complete, in seconds.

 

cancellable

a GCancellable or NULL.

 

callback

a GAsyncReadyCallback to call when the request is satisfied.

 

user_data

user data to pass to callback -.

 
-
-

Since: 1.18

-
-
-
-

qmi_client_uim_power_off_sim_finish ()

-
QmiMessageUimPowerOffSimOutput *
-qmi_client_uim_power_off_sim_finish (QmiClientUim *self,
-                                     GAsyncResult *res,
-                                     GError **error);
-

Finishes an async operation started with qmi_client_uim_power_off_sim().

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiClientUim.

 

res

the GAsyncResult obtained from the GAsyncReadyCallback passed to qmi_client_uim_power_off_sim().

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

a QmiMessageUimPowerOffSimOutput, or NULL if error -is set. The returned value should be freed with qmi_message_uim_power_off_sim_output_unref().

-
-

Since: 1.18

-
-
-
-

Types and Values

-
-

QmiMessageUimPowerOffSimInput

-
typedef struct _QmiMessageUimPowerOffSimInput QmiMessageUimPowerOffSimInput;
-

The QmiMessageUimPowerOffSimInput structure contains private data and should only be accessed -using the provided API.

-

Since: 1.18

-
-
-
-

QmiMessageUimPowerOffSimOutput

-
typedef struct _QmiMessageUimPowerOffSimOutput QmiMessageUimPowerOffSimOutput;
-

The QmiMessageUimPowerOffSimOutput structure contains private data and should only be accessed -using the provided API.

-

Since: 1.18

-
-
-
- - - \ No newline at end of file diff -Nru libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-UIM-Power-Off-SIM-request.html libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-UIM-Power-Off-SIM-request.html --- libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-UIM-Power-Off-SIM-request.html 1970-01-01 01:00:00.000000000 +0100 +++ libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-UIM-Power-Off-SIM-request.html 2019-01-08 15:19:02.000000000 +0100 @@ -0,0 +1,530 @@ + + + + +UIM Power Off SIM request: libqmi-glib Reference Manual + + + + + + + + + + + + + + + + +
+
+
+ + +
+

UIM Power Off SIM request

+

UIM Power Off SIM request

+
+ +
+

Types and Values

+ +
+
+

Object Hierarchy

+
    GBoxed
+    ├── QmiMessageUimPowerOffSimInput
+    ╰── QmiMessageUimPowerOffSimOutput
+
+
+
+

Description

+
+
+

Functions

+
+

qmi_message_uim_power_off_sim_input_new ()

+
QmiMessageUimPowerOffSimInput *
+qmi_message_uim_power_off_sim_input_new
+                               (void);
+

Allocates a new QmiMessageUimPowerOffSimInput.

+
+

Returns

+

the newly created QmiMessageUimPowerOffSimInput. The returned value should be freed with qmi_message_uim_power_off_sim_input_unref().

+
+

Since: 1.18

+
+
+
+

qmi_message_uim_power_off_sim_input_ref ()

+
QmiMessageUimPowerOffSimInput *
+qmi_message_uim_power_off_sim_input_ref
+                               (QmiMessageUimPowerOffSimInput *self);
+

Atomically increments the reference count of self + by one.

+
+

Parameters

+
+++++ + + + + + +

self

a QmiMessageUimPowerOffSimInput.

 
+
+
+

Returns

+

the new reference to self +.

+
+

Since: 1.18

+
+
+
+

qmi_message_uim_power_off_sim_input_unref ()

+
void
+qmi_message_uim_power_off_sim_input_unref
+                               (QmiMessageUimPowerOffSimInput *self);
+

Atomically decrements the reference count of self + by one. +If the reference count drops to 0, self + is completely disposed.

+
+

Parameters

+
+++++ + + + + + +

self

a QmiMessageUimPowerOffSimInput.

 
+
+

Since: 1.18

+
+
+
+

qmi_message_uim_power_off_sim_input_get_slot ()

+
gboolean
+qmi_message_uim_power_off_sim_input_get_slot
+                               (QmiMessageUimPowerOffSimInput *self,
+                                guint8 *value_slot,
+                                GError **error);
+

Get the 'Slot' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageUimPowerOffSimInput.

 

value_slot

a placeholder for the output guint8, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.18

+
+
+
+

qmi_message_uim_power_off_sim_input_set_slot ()

+
gboolean
+qmi_message_uim_power_off_sim_input_set_slot
+                               (QmiMessageUimPowerOffSimInput *self,
+                                guint8 value_slot,
+                                GError **error);
+

Set the 'Slot' field in the message.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageUimPowerOffSimInput.

 

value_slot

a guint8.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if value +was successfully set, FALSE otherwise.

+
+

Since: 1.18

+
+
+
+

qmi_message_uim_power_off_sim_output_ref ()

+
QmiMessageUimPowerOffSimOutput *
+qmi_message_uim_power_off_sim_output_ref
+                               (QmiMessageUimPowerOffSimOutput *self);
+

Atomically increments the reference count of self + by one.

+
+

Parameters

+
+++++ + + + + + +

self

a QmiMessageUimPowerOffSimOutput.

 
+
+
+

Returns

+

the new reference to self +.

+
+

Since: 1.18

+
+
+
+

qmi_message_uim_power_off_sim_output_unref ()

+
void
+qmi_message_uim_power_off_sim_output_unref
+                               (QmiMessageUimPowerOffSimOutput *self);
+

Atomically decrements the reference count of self + by one. +If the reference count drops to 0, self + is completely disposed.

+
+

Parameters

+
+++++ + + + + + +

self

a QmiMessageUimPowerOffSimOutput.

 
+
+

Since: 1.18

+
+
+
+

qmi_message_uim_power_off_sim_output_get_result ()

+
gboolean
+qmi_message_uim_power_off_sim_output_get_result
+                               (QmiMessageUimPowerOffSimOutput *self,
+                                GError **error);
+

Get the result of the QMI operation.

+
+

Parameters

+
+++++ + + + + + + + + + + + + +

self

a QmiMessageUimPowerOffSimOutput.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the QMI operation succeeded, FALSE if error +is set.

+
+

Since: 1.18

+
+
+
+

qmi_client_uim_power_off_sim ()

+
void
+qmi_client_uim_power_off_sim (QmiClientUim *self,
+                              QmiMessageUimPowerOffSimInput *input,
+                              guint timeout,
+                              GCancellable *cancellable,
+                              GAsyncReadyCallback callback,
+                              gpointer user_data);
+

Asynchronously sends a Power Off SIM request to the device.

+

When the operation is finished, callback + will be invoked in the thread-default main loop of the thread you are calling this method from.

+

You can then call qmi_client_uim_power_off_sim_finish() to get the result of the operation.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

self

a QmiClientUim.

 

input

a QmiMessageUimPowerOffSimInput.

 

timeout

maximum time to wait for the method to complete, in seconds.

 

cancellable

a GCancellable or NULL.

 

callback

a GAsyncReadyCallback to call when the request is satisfied.

 

user_data

user data to pass to callback +.

 
+
+

Since: 1.18

+
+
+
+

qmi_client_uim_power_off_sim_finish ()

+
QmiMessageUimPowerOffSimOutput *
+qmi_client_uim_power_off_sim_finish (QmiClientUim *self,
+                                     GAsyncResult *res,
+                                     GError **error);
+

Finishes an async operation started with qmi_client_uim_power_off_sim().

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiClientUim.

 

res

the GAsyncResult obtained from the GAsyncReadyCallback passed to qmi_client_uim_power_off_sim().

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

a QmiMessageUimPowerOffSimOutput, or NULL if error +is set. The returned value should be freed with qmi_message_uim_power_off_sim_output_unref().

+
+

Since: 1.18

+
+
+
+

Types and Values

+
+

QmiMessageUimPowerOffSimInput

+
typedef struct _QmiMessageUimPowerOffSimInput QmiMessageUimPowerOffSimInput;
+

The QmiMessageUimPowerOffSimInput structure contains private data and should only be accessed +using the provided API.

+

Since: 1.18

+
+
+
+

QmiMessageUimPowerOffSimOutput

+
typedef struct _QmiMessageUimPowerOffSimOutput QmiMessageUimPowerOffSimOutput;
+

The QmiMessageUimPowerOffSimOutput structure contains private data and should only be accessed +using the provided API.

+

Since: 1.18

+
+
+
+ + + \ No newline at end of file diff -Nru libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-UIM-Power-On-SIM.html libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-UIM-Power-On-SIM.html --- libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-UIM-Power-On-SIM.html 2017-03-22 12:28:29.000000000 +0100 +++ libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-UIM-Power-On-SIM.html 1970-01-01 01:00:00.000000000 +0100 @@ -1,530 +0,0 @@ - - - - -UIM Power On SIM: libqmi-glib Reference Manual - - - - - - - - - - - - - - - - -
-
-
- - -
-

UIM Power On SIM

-

UIM Power On SIM

-
- -
-

Types and Values

- -
-
-

Object Hierarchy

-
    GBoxed
-    ├── QmiMessageUimPowerOnSimInput
-    ╰── QmiMessageUimPowerOnSimOutput
-
-
-
-

Description

-
-
-

Functions

-
-

qmi_message_uim_power_on_sim_input_new ()

-
QmiMessageUimPowerOnSimInput *
-qmi_message_uim_power_on_sim_input_new
-                               (void);
-

Allocates a new QmiMessageUimPowerOnSimInput.

-
-

Returns

-

the newly created QmiMessageUimPowerOnSimInput. The returned value should be freed with qmi_message_uim_power_on_sim_input_unref().

-
-

Since: 1.18

-
-
-
-

qmi_message_uim_power_on_sim_input_ref ()

-
QmiMessageUimPowerOnSimInput *
-qmi_message_uim_power_on_sim_input_ref
-                               (QmiMessageUimPowerOnSimInput *self);
-

Atomically increments the reference count of self - by one.

-
-

Parameters

-
----- - - - - - -

self

a QmiMessageUimPowerOnSimInput.

 
-
-
-

Returns

-

the new reference to self -.

-
-

Since: 1.18

-
-
-
-

qmi_message_uim_power_on_sim_input_unref ()

-
void
-qmi_message_uim_power_on_sim_input_unref
-                               (QmiMessageUimPowerOnSimInput *self);
-

Atomically decrements the reference count of self - by one. -If the reference count drops to 0, self - is completely disposed.

-
-

Parameters

-
----- - - - - - -

self

a QmiMessageUimPowerOnSimInput.

 
-
-

Since: 1.18

-
-
-
-

qmi_message_uim_power_on_sim_input_get_slot ()

-
gboolean
-qmi_message_uim_power_on_sim_input_get_slot
-                               (QmiMessageUimPowerOnSimInput *self,
-                                guint8 *value_slot_slot,
-                                GError **error);
-

Get the 'Slot' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessageUimPowerOnSimInput.

 

value_slot_slot

a placeholder for the output guint8, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.18

-
-
-
-

qmi_message_uim_power_on_sim_input_set_slot ()

-
gboolean
-qmi_message_uim_power_on_sim_input_set_slot
-                               (QmiMessageUimPowerOnSimInput *self,
-                                guint8 value_slot_slot,
-                                GError **error);
-

Set the 'Slot' field in the message.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessageUimPowerOnSimInput.

 

value_slot_slot

a guint8.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if value -was successfully set, FALSE otherwise.

-
-

Since: 1.18

-
-
-
-

qmi_message_uim_power_on_sim_output_ref ()

-
QmiMessageUimPowerOnSimOutput *
-qmi_message_uim_power_on_sim_output_ref
-                               (QmiMessageUimPowerOnSimOutput *self);
-

Atomically increments the reference count of self - by one.

-
-

Parameters

-
----- - - - - - -

self

a QmiMessageUimPowerOnSimOutput.

 
-
-
-

Returns

-

the new reference to self -.

-
-

Since: 1.18

-
-
-
-

qmi_message_uim_power_on_sim_output_unref ()

-
void
-qmi_message_uim_power_on_sim_output_unref
-                               (QmiMessageUimPowerOnSimOutput *self);
-

Atomically decrements the reference count of self - by one. -If the reference count drops to 0, self - is completely disposed.

-
-

Parameters

-
----- - - - - - -

self

a QmiMessageUimPowerOnSimOutput.

 
-
-

Since: 1.18

-
-
-
-

qmi_message_uim_power_on_sim_output_get_result ()

-
gboolean
-qmi_message_uim_power_on_sim_output_get_result
-                               (QmiMessageUimPowerOnSimOutput *self,
-                                GError **error);
-

Get the result of the QMI operation.

-
-

Parameters

-
----- - - - - - - - - - - - - -

self

a QmiMessageUimPowerOnSimOutput.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the QMI operation succeeded, FALSE if error -is set.

-
-

Since: 1.18

-
-
-
-

qmi_client_uim_power_on_sim ()

-
void
-qmi_client_uim_power_on_sim (QmiClientUim *self,
-                             QmiMessageUimPowerOnSimInput *input,
-                             guint timeout,
-                             GCancellable *cancellable,
-                             GAsyncReadyCallback callback,
-                             gpointer user_data);
-

Asynchronously sends a Power On SIM request to the device.

-

When the operation is finished, callback - will be invoked in the thread-default main loop of the thread you are calling this method from.

-

You can then call qmi_client_uim_power_on_sim_finish() to get the result of the operation.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

self

a QmiClientUim.

 

input

a QmiMessageUimPowerOnSimInput.

 

timeout

maximum time to wait for the method to complete, in seconds.

 

cancellable

a GCancellable or NULL.

 

callback

a GAsyncReadyCallback to call when the request is satisfied.

 

user_data

user data to pass to callback -.

 
-
-

Since: 1.18

-
-
-
-

qmi_client_uim_power_on_sim_finish ()

-
QmiMessageUimPowerOnSimOutput *
-qmi_client_uim_power_on_sim_finish (QmiClientUim *self,
-                                    GAsyncResult *res,
-                                    GError **error);
-

Finishes an async operation started with qmi_client_uim_power_on_sim().

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiClientUim.

 

res

the GAsyncResult obtained from the GAsyncReadyCallback passed to qmi_client_uim_power_on_sim().

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

a QmiMessageUimPowerOnSimOutput, or NULL if error -is set. The returned value should be freed with qmi_message_uim_power_on_sim_output_unref().

-
-

Since: 1.18

-
-
-
-

Types and Values

-
-

QmiMessageUimPowerOnSimInput

-
typedef struct _QmiMessageUimPowerOnSimInput QmiMessageUimPowerOnSimInput;
-

The QmiMessageUimPowerOnSimInput structure contains private data and should only be accessed -using the provided API.

-

Since: 1.18

-
-
-
-

QmiMessageUimPowerOnSimOutput

-
typedef struct _QmiMessageUimPowerOnSimOutput QmiMessageUimPowerOnSimOutput;
-

The QmiMessageUimPowerOnSimOutput structure contains private data and should only be accessed -using the provided API.

-

Since: 1.18

-
-
-
- - - \ No newline at end of file diff -Nru libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-UIM-Power-On-SIM-request.html libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-UIM-Power-On-SIM-request.html --- libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-UIM-Power-On-SIM-request.html 1970-01-01 01:00:00.000000000 +0100 +++ libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-UIM-Power-On-SIM-request.html 2019-01-08 15:19:02.000000000 +0100 @@ -0,0 +1,530 @@ + + + + +UIM Power On SIM request: libqmi-glib Reference Manual + + + + + + + + + + + + + + + + +
+
+
+ + +
+

UIM Power On SIM request

+

UIM Power On SIM request

+
+ +
+

Types and Values

+ +
+
+

Object Hierarchy

+
    GBoxed
+    ├── QmiMessageUimPowerOnSimInput
+    ╰── QmiMessageUimPowerOnSimOutput
+
+
+
+

Description

+
+
+

Functions

+
+

qmi_message_uim_power_on_sim_input_new ()

+
QmiMessageUimPowerOnSimInput *
+qmi_message_uim_power_on_sim_input_new
+                               (void);
+

Allocates a new QmiMessageUimPowerOnSimInput.

+
+

Returns

+

the newly created QmiMessageUimPowerOnSimInput. The returned value should be freed with qmi_message_uim_power_on_sim_input_unref().

+
+

Since: 1.18

+
+
+
+

qmi_message_uim_power_on_sim_input_ref ()

+
QmiMessageUimPowerOnSimInput *
+qmi_message_uim_power_on_sim_input_ref
+                               (QmiMessageUimPowerOnSimInput *self);
+

Atomically increments the reference count of self + by one.

+
+

Parameters

+
+++++ + + + + + +

self

a QmiMessageUimPowerOnSimInput.

 
+
+
+

Returns

+

the new reference to self +.

+
+

Since: 1.18

+
+
+
+

qmi_message_uim_power_on_sim_input_unref ()

+
void
+qmi_message_uim_power_on_sim_input_unref
+                               (QmiMessageUimPowerOnSimInput *self);
+

Atomically decrements the reference count of self + by one. +If the reference count drops to 0, self + is completely disposed.

+
+

Parameters

+
+++++ + + + + + +

self

a QmiMessageUimPowerOnSimInput.

 
+
+

Since: 1.18

+
+
+
+

qmi_message_uim_power_on_sim_input_get_slot ()

+
gboolean
+qmi_message_uim_power_on_sim_input_get_slot
+                               (QmiMessageUimPowerOnSimInput *self,
+                                guint8 *value_slot,
+                                GError **error);
+

Get the 'Slot' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageUimPowerOnSimInput.

 

value_slot

a placeholder for the output guint8, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.18

+
+
+
+

qmi_message_uim_power_on_sim_input_set_slot ()

+
gboolean
+qmi_message_uim_power_on_sim_input_set_slot
+                               (QmiMessageUimPowerOnSimInput *self,
+                                guint8 value_slot,
+                                GError **error);
+

Set the 'Slot' field in the message.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageUimPowerOnSimInput.

 

value_slot

a guint8.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if value +was successfully set, FALSE otherwise.

+
+

Since: 1.18

+
+
+
+

qmi_message_uim_power_on_sim_output_ref ()

+
QmiMessageUimPowerOnSimOutput *
+qmi_message_uim_power_on_sim_output_ref
+                               (QmiMessageUimPowerOnSimOutput *self);
+

Atomically increments the reference count of self + by one.

+
+

Parameters

+
+++++ + + + + + +

self

a QmiMessageUimPowerOnSimOutput.

 
+
+
+

Returns

+

the new reference to self +.

+
+

Since: 1.18

+
+
+
+

qmi_message_uim_power_on_sim_output_unref ()

+
void
+qmi_message_uim_power_on_sim_output_unref
+                               (QmiMessageUimPowerOnSimOutput *self);
+

Atomically decrements the reference count of self + by one. +If the reference count drops to 0, self + is completely disposed.

+
+

Parameters

+
+++++ + + + + + +

self

a QmiMessageUimPowerOnSimOutput.

 
+
+

Since: 1.18

+
+
+
+

qmi_message_uim_power_on_sim_output_get_result ()

+
gboolean
+qmi_message_uim_power_on_sim_output_get_result
+                               (QmiMessageUimPowerOnSimOutput *self,
+                                GError **error);
+

Get the result of the QMI operation.

+
+

Parameters

+
+++++ + + + + + + + + + + + + +

self

a QmiMessageUimPowerOnSimOutput.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the QMI operation succeeded, FALSE if error +is set.

+
+

Since: 1.18

+
+
+
+

qmi_client_uim_power_on_sim ()

+
void
+qmi_client_uim_power_on_sim (QmiClientUim *self,
+                             QmiMessageUimPowerOnSimInput *input,
+                             guint timeout,
+                             GCancellable *cancellable,
+                             GAsyncReadyCallback callback,
+                             gpointer user_data);
+

Asynchronously sends a Power On SIM request to the device.

+

When the operation is finished, callback + will be invoked in the thread-default main loop of the thread you are calling this method from.

+

You can then call qmi_client_uim_power_on_sim_finish() to get the result of the operation.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

self

a QmiClientUim.

 

input

a QmiMessageUimPowerOnSimInput.

 

timeout

maximum time to wait for the method to complete, in seconds.

 

cancellable

a GCancellable or NULL.

 

callback

a GAsyncReadyCallback to call when the request is satisfied.

 

user_data

user data to pass to callback +.

 
+
+

Since: 1.18

+
+
+
+

qmi_client_uim_power_on_sim_finish ()

+
QmiMessageUimPowerOnSimOutput *
+qmi_client_uim_power_on_sim_finish (QmiClientUim *self,
+                                    GAsyncResult *res,
+                                    GError **error);
+

Finishes an async operation started with qmi_client_uim_power_on_sim().

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiClientUim.

 

res

the GAsyncResult obtained from the GAsyncReadyCallback passed to qmi_client_uim_power_on_sim().

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

a QmiMessageUimPowerOnSimOutput, or NULL if error +is set. The returned value should be freed with qmi_message_uim_power_on_sim_output_unref().

+
+

Since: 1.18

+
+
+
+

Types and Values

+
+

QmiMessageUimPowerOnSimInput

+
typedef struct _QmiMessageUimPowerOnSimInput QmiMessageUimPowerOnSimInput;
+

The QmiMessageUimPowerOnSimInput structure contains private data and should only be accessed +using the provided API.

+

Since: 1.18

+
+
+
+

QmiMessageUimPowerOnSimOutput

+
typedef struct _QmiMessageUimPowerOnSimOutput QmiMessageUimPowerOnSimOutput;
+

The QmiMessageUimPowerOnSimOutput structure contains private data and should only be accessed +using the provided API.

+

Since: 1.18

+
+
+
+ + + \ No newline at end of file diff -Nru libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-UIM-Read-Record.html libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-UIM-Read-Record.html --- libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-UIM-Read-Record.html 2017-03-22 12:28:29.000000000 +0100 +++ libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-UIM-Read-Record.html 1970-01-01 01:00:00.000000000 +0100 @@ -1,1186 +0,0 @@ - - - - -UIM Read Record: libqmi-glib Reference Manual - - - - - - - - - - - - - - - - -
-
-
- - -
-

UIM Read Record

-

UIM Read Record

-
-
-

Functions

-
---- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
-QmiMessageUimReadRecordInput * - -qmi_message_uim_read_record_input_new () -
-QmiMessageUimReadRecordInput * - -qmi_message_uim_read_record_input_ref () -
-void - -qmi_message_uim_read_record_input_unref () -
-gboolean - -qmi_message_uim_read_record_input_get_response_in_indication_token () -
-gboolean - -qmi_message_uim_read_record_input_set_response_in_indication_token () -
-gboolean - -qmi_message_uim_read_record_input_get_last_record () -
-gboolean - -qmi_message_uim_read_record_input_set_last_record () -
-gboolean - -qmi_message_uim_read_record_input_get_record () -
-gboolean - -qmi_message_uim_read_record_input_set_record () -
-gboolean - -qmi_message_uim_read_record_input_get_file () -
-gboolean - -qmi_message_uim_read_record_input_set_file () -
-gboolean - -qmi_message_uim_read_record_input_get_session_information () -
-gboolean - -qmi_message_uim_read_record_input_set_session_information () -
-QmiMessageUimReadRecordOutput * - -qmi_message_uim_read_record_output_ref () -
-void - -qmi_message_uim_read_record_output_unref () -
-gboolean - -qmi_message_uim_read_record_output_get_card_result () -
-gboolean - -qmi_message_uim_read_record_output_get_result () -
-gboolean - -qmi_message_uim_read_record_output_get_read_result () -
-gboolean - -qmi_message_uim_read_record_output_get_additional_read_result () -
-gboolean - -qmi_message_uim_read_record_output_get_response_in_indication_token () -
-void - -qmi_client_uim_read_record () -
-QmiMessageUimReadRecordOutput * - -qmi_client_uim_read_record_finish () -
-
-
-

Types and Values

- -
-
-

Object Hierarchy

-
    GBoxed
-    ├── QmiMessageUimReadRecordInput
-    ╰── QmiMessageUimReadRecordOutput
-
-
-
-

Description

-
-
-

Functions

-
-

qmi_message_uim_read_record_input_new ()

-
QmiMessageUimReadRecordInput *
-qmi_message_uim_read_record_input_new (void);
-

Allocates a new QmiMessageUimReadRecordInput.

-
-

Returns

-

the newly created QmiMessageUimReadRecordInput. The returned value should be freed with qmi_message_uim_read_record_input_unref().

-
-

Since: 1.6

-
-
-
-

qmi_message_uim_read_record_input_ref ()

-
QmiMessageUimReadRecordInput *
-qmi_message_uim_read_record_input_ref (QmiMessageUimReadRecordInput *self);
-

Atomically increments the reference count of self - by one.

-
-

Parameters

-
----- - - - - - -

self

a QmiMessageUimReadRecordInput.

 
-
-
-

Returns

-

the new reference to self -.

-
-

Since: 1.6

-
-
-
-

qmi_message_uim_read_record_input_unref ()

-
void
-qmi_message_uim_read_record_input_unref
-                               (QmiMessageUimReadRecordInput *self);
-

Atomically decrements the reference count of self - by one. -If the reference count drops to 0, self - is completely disposed.

-
-

Parameters

-
----- - - - - - -

self

a QmiMessageUimReadRecordInput.

 
-
-

Since: 1.6

-
-
-
-

qmi_message_uim_read_record_input_get_response_in_indication_token ()

-
gboolean
-qmi_message_uim_read_record_input_get_response_in_indication_token
-                               (QmiMessageUimReadRecordInput *self,
-                                guint32 *value_response_in_indication_token,
-                                GError **error);
-

Get the 'Response In Indication Token' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessageUimReadRecordInput.

 

value_response_in_indication_token

a placeholder for the output guint32, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.6

-
-
-
-

qmi_message_uim_read_record_input_set_response_in_indication_token ()

-
gboolean
-qmi_message_uim_read_record_input_set_response_in_indication_token
-                               (QmiMessageUimReadRecordInput *self,
-                                guint32 value_response_in_indication_token,
-                                GError **error);
-

Set the 'Response In Indication Token' field in the message.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessageUimReadRecordInput.

 

value_response_in_indication_token

a guint32.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if value -was successfully set, FALSE otherwise.

-
-

Since: 1.6

-
-
-
-

qmi_message_uim_read_record_input_get_last_record ()

-
gboolean
-qmi_message_uim_read_record_input_get_last_record
-                               (QmiMessageUimReadRecordInput *self,
-                                guint16 *value_last_record,
-                                GError **error);
-

Get the 'Last Record' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessageUimReadRecordInput.

 

value_last_record

a placeholder for the output guint16, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.6

-
-
-
-

qmi_message_uim_read_record_input_set_last_record ()

-
gboolean
-qmi_message_uim_read_record_input_set_last_record
-                               (QmiMessageUimReadRecordInput *self,
-                                guint16 value_last_record,
-                                GError **error);
-

Set the 'Last Record' field in the message.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessageUimReadRecordInput.

 

value_last_record

a guint16.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if value -was successfully set, FALSE otherwise.

-
-

Since: 1.6

-
-
-
-

qmi_message_uim_read_record_input_get_record ()

-
gboolean
-qmi_message_uim_read_record_input_get_record
-                               (QmiMessageUimReadRecordInput *self,
-                                guint16 *value_record_record_number,
-                                guint16 *value_record_record_length,
-                                GError **error);
-

Get the 'Record' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - - - - - - -

self

a QmiMessageUimReadRecordInput.

 

value_record_record_number

a placeholder for the output guint16, or NULL if not required.

 

value_record_record_length

a placeholder for the output guint16, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.6

-
-
-
-

qmi_message_uim_read_record_input_set_record ()

-
gboolean
-qmi_message_uim_read_record_input_set_record
-                               (QmiMessageUimReadRecordInput *self,
-                                guint16 value_record_record_number,
-                                guint16 value_record_record_length,
-                                GError **error);
-

Set the 'Record' field in the message.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - - - - - - -

self

a QmiMessageUimReadRecordInput.

 

value_record_record_number

a guint16.

 

value_record_record_length

a guint16.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if value -was successfully set, FALSE otherwise.

-
-

Since: 1.6

-
-
-
-

qmi_message_uim_read_record_input_get_file ()

-
gboolean
-qmi_message_uim_read_record_input_get_file
-                               (QmiMessageUimReadRecordInput *self,
-                                guint16 *value_file_file_id,
-                                GArray **value_file_file_path,
-                                GError **error);
-

Get the 'File' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - - - - - - -

self

a QmiMessageUimReadRecordInput.

 

value_file_file_id

a placeholder for the output guint16, or NULL if not required.

 

value_file_file_path

a placeholder for the output GArray of guint8 elements, or NULL if not required. Do not free it, it is owned by self -.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.6

-
-
-
-

qmi_message_uim_read_record_input_set_file ()

-
gboolean
-qmi_message_uim_read_record_input_set_file
-                               (QmiMessageUimReadRecordInput *self,
-                                guint16 value_file_file_id,
-                                GArray *value_file_file_path,
-                                GError **error);
-

Set the 'File' field in the message.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - - - - - - -

self

a QmiMessageUimReadRecordInput.

 

value_file_file_id

a guint16.

 

value_file_file_path

a GArray of guint8 elements. A new reference to value_file_file_path -will be taken.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if value -was successfully set, FALSE otherwise.

-
-

Since: 1.6

-
-
-
-

qmi_message_uim_read_record_input_get_session_information ()

-
gboolean
-qmi_message_uim_read_record_input_get_session_information
-                               (QmiMessageUimReadRecordInput *self,
-                                QmiUimSessionType *value_session_information_session_type,
-                                const gchar **value_session_information_application_identifier,
-                                GError **error);
-

Get the 'Session Information' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - - - - - - -

self

a QmiMessageUimReadRecordInput.

 

value_session_information_session_type

a placeholder for the output QmiUimSessionType, or NULL if not required.

 

value_session_information_application_identifier

a placeholder for the output constant string, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.6

-
-
-
-

qmi_message_uim_read_record_input_set_session_information ()

-
gboolean
-qmi_message_uim_read_record_input_set_session_information
-                               (QmiMessageUimReadRecordInput *self,
-                                QmiUimSessionType value_session_information_session_type,
-                                const gchar *value_session_information_application_identifier,
-                                GError **error);
-

Set the 'Session Information' field in the message.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - - - - - - -

self

a QmiMessageUimReadRecordInput.

 

value_session_information_session_type

a QmiUimSessionType.

 

value_session_information_application_identifier

a constant string.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if value -was successfully set, FALSE otherwise.

-
-

Since: 1.6

-
-
-
-

qmi_message_uim_read_record_output_ref ()

-
QmiMessageUimReadRecordOutput *
-qmi_message_uim_read_record_output_ref
-                               (QmiMessageUimReadRecordOutput *self);
-

Atomically increments the reference count of self - by one.

-
-

Parameters

-
----- - - - - - -

self

a QmiMessageUimReadRecordOutput.

 
-
-
-

Returns

-

the new reference to self -.

-
-

Since: 1.6

-
-
-
-

qmi_message_uim_read_record_output_unref ()

-
void
-qmi_message_uim_read_record_output_unref
-                               (QmiMessageUimReadRecordOutput *self);
-

Atomically decrements the reference count of self - by one. -If the reference count drops to 0, self - is completely disposed.

-
-

Parameters

-
----- - - - - - -

self

a QmiMessageUimReadRecordOutput.

 
-
-

Since: 1.6

-
-
-
-

qmi_message_uim_read_record_output_get_card_result ()

-
gboolean
-qmi_message_uim_read_record_output_get_card_result
-                               (QmiMessageUimReadRecordOutput *self,
-                                guint8 *value_card_result_sw1,
-                                guint8 *value_card_result_sw2,
-                                GError **error);
-

Get the 'Card result' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - - - - - - -

self

a QmiMessageUimReadRecordOutput.

 

value_card_result_sw1

a placeholder for the output guint8, or NULL if not required.

 

value_card_result_sw2

a placeholder for the output guint8, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.6

-
-
-
-

qmi_message_uim_read_record_output_get_result ()

-
gboolean
-qmi_message_uim_read_record_output_get_result
-                               (QmiMessageUimReadRecordOutput *self,
-                                GError **error);
-

Get the result of the QMI operation.

-
-

Parameters

-
----- - - - - - - - - - - - - -

self

a QmiMessageUimReadRecordOutput.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the QMI operation succeeded, FALSE if error -is set.

-
-

Since: 1.6

-
-
-
-

qmi_message_uim_read_record_output_get_read_result ()

-
gboolean
-qmi_message_uim_read_record_output_get_read_result
-                               (QmiMessageUimReadRecordOutput *self,
-                                GArray **value_read_result,
-                                GError **error);
-

Get the 'Read Result' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessageUimReadRecordOutput.

 

value_read_result

a placeholder for the output GArray of guint8 elements, or NULL if not required. Do not free it, it is owned by self -.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.6

-
-
-
-

qmi_message_uim_read_record_output_get_additional_read_result ()

-
gboolean
-qmi_message_uim_read_record_output_get_additional_read_result
-                               (QmiMessageUimReadRecordOutput *self,
-                                GArray **value_additional_read_result,
-                                GError **error);
-

Get the 'Additional Read Result' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessageUimReadRecordOutput.

 

value_additional_read_result

a placeholder for the output GArray of guint8 elements, or NULL if not required. Do not free it, it is owned by self -.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.6

-
-
-
-

qmi_message_uim_read_record_output_get_response_in_indication_token ()

-
gboolean
-qmi_message_uim_read_record_output_get_response_in_indication_token
-                               (QmiMessageUimReadRecordOutput *self,
-                                guint32 *value_response_in_indication_token,
-                                GError **error);
-

Get the 'Response In Indication Token' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessageUimReadRecordOutput.

 

value_response_in_indication_token

a placeholder for the output guint32, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.6

-
-
-
-

qmi_client_uim_read_record ()

-
void
-qmi_client_uim_read_record (QmiClientUim *self,
-                            QmiMessageUimReadRecordInput *input,
-                            guint timeout,
-                            GCancellable *cancellable,
-                            GAsyncReadyCallback callback,
-                            gpointer user_data);
-

Asynchronously sends a Read Record request to the device.

-

When the operation is finished, callback - will be invoked in the thread-default main loop of the thread you are calling this method from.

-

You can then call qmi_client_uim_read_record_finish() to get the result of the operation.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

self

a QmiClientUim.

 

input

a QmiMessageUimReadRecordInput.

 

timeout

maximum time to wait for the method to complete, in seconds.

 

cancellable

a GCancellable or NULL.

 

callback

a GAsyncReadyCallback to call when the request is satisfied.

 

user_data

user data to pass to callback -.

 
-
-

Since: 1.6

-
-
-
-

qmi_client_uim_read_record_finish ()

-
QmiMessageUimReadRecordOutput *
-qmi_client_uim_read_record_finish (QmiClientUim *self,
-                                   GAsyncResult *res,
-                                   GError **error);
-

Finishes an async operation started with qmi_client_uim_read_record().

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiClientUim.

 

res

the GAsyncResult obtained from the GAsyncReadyCallback passed to qmi_client_uim_read_record().

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

a QmiMessageUimReadRecordOutput, or NULL if error -is set. The returned value should be freed with qmi_message_uim_read_record_output_unref().

-
-

Since: 1.6

-
-
-
-

Types and Values

-
-

QmiMessageUimReadRecordInput

-
typedef struct _QmiMessageUimReadRecordInput QmiMessageUimReadRecordInput;
-

The QmiMessageUimReadRecordInput structure contains private data and should only be accessed -using the provided API.

-

Since: 1.6

-
-
-
-

QmiMessageUimReadRecordOutput

-
typedef struct _QmiMessageUimReadRecordOutput QmiMessageUimReadRecordOutput;
-

The QmiMessageUimReadRecordOutput structure contains private data and should only be accessed -using the provided API.

-

Since: 1.6

-
-
-
- - - \ No newline at end of file diff -Nru libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-UIM-Read-Record-request.html libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-UIM-Read-Record-request.html --- libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-UIM-Read-Record-request.html 1970-01-01 01:00:00.000000000 +0100 +++ libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-UIM-Read-Record-request.html 2019-01-08 15:19:02.000000000 +0100 @@ -0,0 +1,1188 @@ + + + + +UIM Read Record request: libqmi-glib Reference Manual + + + + + + + + + + + + + + + + +
+
+
+ + +
+

UIM Read Record request

+

UIM Read Record request

+
+
+

Functions

+
++++ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+QmiMessageUimReadRecordInput * + +qmi_message_uim_read_record_input_new () +
+QmiMessageUimReadRecordInput * + +qmi_message_uim_read_record_input_ref () +
+void + +qmi_message_uim_read_record_input_unref () +
+gboolean + +qmi_message_uim_read_record_input_get_response_in_indication_token () +
+gboolean + +qmi_message_uim_read_record_input_set_response_in_indication_token () +
+gboolean + +qmi_message_uim_read_record_input_get_last_record () +
+gboolean + +qmi_message_uim_read_record_input_set_last_record () +
+gboolean + +qmi_message_uim_read_record_input_get_record () +
+gboolean + +qmi_message_uim_read_record_input_set_record () +
+gboolean + +qmi_message_uim_read_record_input_get_file () +
+gboolean + +qmi_message_uim_read_record_input_set_file () +
+gboolean + +qmi_message_uim_read_record_input_get_session () +
+gboolean + +qmi_message_uim_read_record_input_set_session () +
+QmiMessageUimReadRecordOutput * + +qmi_message_uim_read_record_output_ref () +
+void + +qmi_message_uim_read_record_output_unref () +
+gboolean + +qmi_message_uim_read_record_output_get_card_result () +
+gboolean + +qmi_message_uim_read_record_output_get_result () +
+gboolean + +qmi_message_uim_read_record_output_get_read_result () +
+gboolean + +qmi_message_uim_read_record_output_get_additional_read_result () +
+gboolean + +qmi_message_uim_read_record_output_get_response_in_indication_token () +
+void + +qmi_client_uim_read_record () +
+QmiMessageUimReadRecordOutput * + +qmi_client_uim_read_record_finish () +
+
+
+

Types and Values

+ +
+
+

Object Hierarchy

+
    GBoxed
+    ├── QmiMessageUimReadRecordInput
+    ╰── QmiMessageUimReadRecordOutput
+
+
+
+

Description

+
+
+

Functions

+
+

qmi_message_uim_read_record_input_new ()

+
QmiMessageUimReadRecordInput *
+qmi_message_uim_read_record_input_new (void);
+

Allocates a new QmiMessageUimReadRecordInput.

+
+

Returns

+

the newly created QmiMessageUimReadRecordInput. The returned value should be freed with qmi_message_uim_read_record_input_unref().

+
+

Since: 1.6

+
+
+
+

qmi_message_uim_read_record_input_ref ()

+
QmiMessageUimReadRecordInput *
+qmi_message_uim_read_record_input_ref (QmiMessageUimReadRecordInput *self);
+

Atomically increments the reference count of self + by one.

+
+

Parameters

+
+++++ + + + + + +

self

a QmiMessageUimReadRecordInput.

 
+
+
+

Returns

+

the new reference to self +.

+
+

Since: 1.6

+
+
+
+

qmi_message_uim_read_record_input_unref ()

+
void
+qmi_message_uim_read_record_input_unref
+                               (QmiMessageUimReadRecordInput *self);
+

Atomically decrements the reference count of self + by one. +If the reference count drops to 0, self + is completely disposed.

+
+

Parameters

+
+++++ + + + + + +

self

a QmiMessageUimReadRecordInput.

 
+
+

Since: 1.6

+
+
+
+

qmi_message_uim_read_record_input_get_response_in_indication_token ()

+
gboolean
+qmi_message_uim_read_record_input_get_response_in_indication_token
+                               (QmiMessageUimReadRecordInput *self,
+                                guint32 *value_response_in_indication_token,
+                                GError **error);
+

Get the 'Response In Indication Token' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageUimReadRecordInput.

 

value_response_in_indication_token

a placeholder for the output guint32, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.6

+
+
+
+

qmi_message_uim_read_record_input_set_response_in_indication_token ()

+
gboolean
+qmi_message_uim_read_record_input_set_response_in_indication_token
+                               (QmiMessageUimReadRecordInput *self,
+                                guint32 value_response_in_indication_token,
+                                GError **error);
+

Set the 'Response In Indication Token' field in the message.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageUimReadRecordInput.

 

value_response_in_indication_token

a guint32.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if value +was successfully set, FALSE otherwise.

+
+

Since: 1.6

+
+
+
+

qmi_message_uim_read_record_input_get_last_record ()

+
gboolean
+qmi_message_uim_read_record_input_get_last_record
+                               (QmiMessageUimReadRecordInput *self,
+                                guint16 *value_last_record,
+                                GError **error);
+

Get the 'Last Record' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageUimReadRecordInput.

 

value_last_record

a placeholder for the output guint16, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.6

+
+
+
+

qmi_message_uim_read_record_input_set_last_record ()

+
gboolean
+qmi_message_uim_read_record_input_set_last_record
+                               (QmiMessageUimReadRecordInput *self,
+                                guint16 value_last_record,
+                                GError **error);
+

Set the 'Last Record' field in the message.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageUimReadRecordInput.

 

value_last_record

a guint16.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if value +was successfully set, FALSE otherwise.

+
+

Since: 1.6

+
+
+
+

qmi_message_uim_read_record_input_get_record ()

+
gboolean
+qmi_message_uim_read_record_input_get_record
+                               (QmiMessageUimReadRecordInput *self,
+                                guint16 *value_record_record_number,
+                                guint16 *value_record_record_length,
+                                GError **error);
+

Get the 'Record' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + + + + + + +

self

a QmiMessageUimReadRecordInput.

 

value_record_record_number

a placeholder for the output guint16, or NULL if not required.

 

value_record_record_length

a placeholder for the output guint16, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.6

+
+
+
+

qmi_message_uim_read_record_input_set_record ()

+
gboolean
+qmi_message_uim_read_record_input_set_record
+                               (QmiMessageUimReadRecordInput *self,
+                                guint16 value_record_record_number,
+                                guint16 value_record_record_length,
+                                GError **error);
+

Set the 'Record' field in the message.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + + + + + + +

self

a QmiMessageUimReadRecordInput.

 

value_record_record_number

a guint16.

 

value_record_record_length

a guint16.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if value +was successfully set, FALSE otherwise.

+
+

Since: 1.6

+
+
+
+

qmi_message_uim_read_record_input_get_file ()

+
gboolean
+qmi_message_uim_read_record_input_get_file
+                               (QmiMessageUimReadRecordInput *self,
+                                guint16 *value_file_file_id,
+                                GArray **value_file_file_path,
+                                GError **error);
+

Get the 'File' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + + + + + + +

self

a QmiMessageUimReadRecordInput.

 

value_file_file_id

a placeholder for the output guint16, or NULL if not required.

 

value_file_file_path

a placeholder for the output GArray of guint8 elements, or NULL if not required. Do not free it, it is owned by self +.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.6

+
+
+
+

qmi_message_uim_read_record_input_set_file ()

+
gboolean
+qmi_message_uim_read_record_input_set_file
+                               (QmiMessageUimReadRecordInput *self,
+                                guint16 value_file_file_id,
+                                GArray *value_file_file_path,
+                                GError **error);
+

Set the 'File' field in the message.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + + + + + + +

self

a QmiMessageUimReadRecordInput.

 

value_file_file_id

a guint16.

 

value_file_file_path

a GArray of guint8 elements. A new reference to value_file_file_path +will be taken.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if value +was successfully set, FALSE otherwise.

+
+

Since: 1.6

+
+
+
+

qmi_message_uim_read_record_input_get_session ()

+
gboolean
+qmi_message_uim_read_record_input_get_session
+                               (QmiMessageUimReadRecordInput *self,
+                                QmiUimSessionType *value_session_session_type,
+                                GArray **value_session_application_identifier,
+                                GError **error);
+

Get the 'Session' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + + + + + + +

self

a QmiMessageUimReadRecordInput.

 

value_session_session_type

a placeholder for the output QmiUimSessionType, or NULL if not required.

 

value_session_application_identifier

a placeholder for the output GArray of guint8 elements, or NULL if not required. Do not free it, it is owned by self +.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.6

+
+
+
+

qmi_message_uim_read_record_input_set_session ()

+
gboolean
+qmi_message_uim_read_record_input_set_session
+                               (QmiMessageUimReadRecordInput *self,
+                                QmiUimSessionType value_session_session_type,
+                                GArray *value_session_application_identifier,
+                                GError **error);
+

Set the 'Session' field in the message.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + + + + + + +

self

a QmiMessageUimReadRecordInput.

 

value_session_session_type

a QmiUimSessionType.

 

value_session_application_identifier

a GArray of guint8 elements. A new reference to value_session_application_identifier +will be taken.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if value +was successfully set, FALSE otherwise.

+
+

Since: 1.6

+
+
+
+

qmi_message_uim_read_record_output_ref ()

+
QmiMessageUimReadRecordOutput *
+qmi_message_uim_read_record_output_ref
+                               (QmiMessageUimReadRecordOutput *self);
+

Atomically increments the reference count of self + by one.

+
+

Parameters

+
+++++ + + + + + +

self

a QmiMessageUimReadRecordOutput.

 
+
+
+

Returns

+

the new reference to self +.

+
+

Since: 1.6

+
+
+
+

qmi_message_uim_read_record_output_unref ()

+
void
+qmi_message_uim_read_record_output_unref
+                               (QmiMessageUimReadRecordOutput *self);
+

Atomically decrements the reference count of self + by one. +If the reference count drops to 0, self + is completely disposed.

+
+

Parameters

+
+++++ + + + + + +

self

a QmiMessageUimReadRecordOutput.

 
+
+

Since: 1.6

+
+
+
+

qmi_message_uim_read_record_output_get_card_result ()

+
gboolean
+qmi_message_uim_read_record_output_get_card_result
+                               (QmiMessageUimReadRecordOutput *self,
+                                guint8 *value_card_result_sw1,
+                                guint8 *value_card_result_sw2,
+                                GError **error);
+

Get the 'Card result' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + + + + + + +

self

a QmiMessageUimReadRecordOutput.

 

value_card_result_sw1

a placeholder for the output guint8, or NULL if not required.

 

value_card_result_sw2

a placeholder for the output guint8, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.6

+
+
+
+

qmi_message_uim_read_record_output_get_result ()

+
gboolean
+qmi_message_uim_read_record_output_get_result
+                               (QmiMessageUimReadRecordOutput *self,
+                                GError **error);
+

Get the result of the QMI operation.

+
+

Parameters

+
+++++ + + + + + + + + + + + + +

self

a QmiMessageUimReadRecordOutput.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the QMI operation succeeded, FALSE if error +is set.

+
+

Since: 1.6

+
+
+
+

qmi_message_uim_read_record_output_get_read_result ()

+
gboolean
+qmi_message_uim_read_record_output_get_read_result
+                               (QmiMessageUimReadRecordOutput *self,
+                                GArray **value_read_result,
+                                GError **error);
+

Get the 'Read Result' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageUimReadRecordOutput.

 

value_read_result

a placeholder for the output GArray of guint8 elements, or NULL if not required. Do not free it, it is owned by self +.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.6

+
+
+
+

qmi_message_uim_read_record_output_get_additional_read_result ()

+
gboolean
+qmi_message_uim_read_record_output_get_additional_read_result
+                               (QmiMessageUimReadRecordOutput *self,
+                                GArray **value_additional_read_result,
+                                GError **error);
+

Get the 'Additional Read Result' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageUimReadRecordOutput.

 

value_additional_read_result

a placeholder for the output GArray of guint8 elements, or NULL if not required. Do not free it, it is owned by self +.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.6

+
+
+
+

qmi_message_uim_read_record_output_get_response_in_indication_token ()

+
gboolean
+qmi_message_uim_read_record_output_get_response_in_indication_token
+                               (QmiMessageUimReadRecordOutput *self,
+                                guint32 *value_response_in_indication_token,
+                                GError **error);
+

Get the 'Response In Indication Token' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageUimReadRecordOutput.

 

value_response_in_indication_token

a placeholder for the output guint32, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.6

+
+
+
+

qmi_client_uim_read_record ()

+
void
+qmi_client_uim_read_record (QmiClientUim *self,
+                            QmiMessageUimReadRecordInput *input,
+                            guint timeout,
+                            GCancellable *cancellable,
+                            GAsyncReadyCallback callback,
+                            gpointer user_data);
+

Asynchronously sends a Read Record request to the device.

+

When the operation is finished, callback + will be invoked in the thread-default main loop of the thread you are calling this method from.

+

You can then call qmi_client_uim_read_record_finish() to get the result of the operation.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

self

a QmiClientUim.

 

input

a QmiMessageUimReadRecordInput.

 

timeout

maximum time to wait for the method to complete, in seconds.

 

cancellable

a GCancellable or NULL.

 

callback

a GAsyncReadyCallback to call when the request is satisfied.

 

user_data

user data to pass to callback +.

 
+
+

Since: 1.6

+
+
+
+

qmi_client_uim_read_record_finish ()

+
QmiMessageUimReadRecordOutput *
+qmi_client_uim_read_record_finish (QmiClientUim *self,
+                                   GAsyncResult *res,
+                                   GError **error);
+

Finishes an async operation started with qmi_client_uim_read_record().

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiClientUim.

 

res

the GAsyncResult obtained from the GAsyncReadyCallback passed to qmi_client_uim_read_record().

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

a QmiMessageUimReadRecordOutput, or NULL if error +is set. The returned value should be freed with qmi_message_uim_read_record_output_unref().

+
+

Since: 1.6

+
+
+
+

Types and Values

+
+

QmiMessageUimReadRecordInput

+
typedef struct _QmiMessageUimReadRecordInput QmiMessageUimReadRecordInput;
+

The QmiMessageUimReadRecordInput structure contains private data and should only be accessed +using the provided API.

+

Since: 1.6

+
+
+
+

QmiMessageUimReadRecordOutput

+
typedef struct _QmiMessageUimReadRecordOutput QmiMessageUimReadRecordOutput;
+

The QmiMessageUimReadRecordOutput structure contains private data and should only be accessed +using the provided API.

+

Since: 1.6

+
+
+
+ + + \ No newline at end of file diff -Nru libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-UIM-Read-Transparent.html libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-UIM-Read-Transparent.html --- libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-UIM-Read-Transparent.html 2017-03-22 12:28:28.000000000 +0100 +++ libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-UIM-Read-Transparent.html 1970-01-01 01:00:00.000000000 +0100 @@ -1,1188 +0,0 @@ - - - - -UIM Read Transparent: libqmi-glib Reference Manual - - - - - - - - - - - - - - - - -
-
-
- - -
-

UIM Read Transparent

-

UIM Read Transparent

-
-
-

Functions

-
---- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
-QmiMessageUimReadTransparentInput * - -qmi_message_uim_read_transparent_input_new () -
-QmiMessageUimReadTransparentInput * - -qmi_message_uim_read_transparent_input_ref () -
-void - -qmi_message_uim_read_transparent_input_unref () -
-gboolean - -qmi_message_uim_read_transparent_input_get_encrypt_data () -
-gboolean - -qmi_message_uim_read_transparent_input_set_encrypt_data () -
-gboolean - -qmi_message_uim_read_transparent_input_get_response_in_indication_token () -
-gboolean - -qmi_message_uim_read_transparent_input_set_response_in_indication_token () -
-gboolean - -qmi_message_uim_read_transparent_input_get_read_information () -
-gboolean - -qmi_message_uim_read_transparent_input_set_read_information () -
-gboolean - -qmi_message_uim_read_transparent_input_get_file () -
-gboolean - -qmi_message_uim_read_transparent_input_set_file () -
-gboolean - -qmi_message_uim_read_transparent_input_get_session_information () -
-gboolean - -qmi_message_uim_read_transparent_input_set_session_information () -
-QmiMessageUimReadTransparentOutput * - -qmi_message_uim_read_transparent_output_ref () -
-void - -qmi_message_uim_read_transparent_output_unref () -
-gboolean - -qmi_message_uim_read_transparent_output_get_card_result () -
-gboolean - -qmi_message_uim_read_transparent_output_get_result () -
-gboolean - -qmi_message_uim_read_transparent_output_get_read_result () -
-gboolean - -qmi_message_uim_read_transparent_output_get_response_in_indication_token () -
-gboolean - -qmi_message_uim_read_transparent_output_get_encrypted_data () -
-void - -qmi_client_uim_read_transparent () -
-QmiMessageUimReadTransparentOutput * - -qmi_client_uim_read_transparent_finish () -
-
-
-

Types and Values

- -
-
-

Object Hierarchy

-
    GBoxed
-    ├── QmiMessageUimReadTransparentInput
-    ╰── QmiMessageUimReadTransparentOutput
-
-
-
-

Description

-
-
-

Functions

-
-

qmi_message_uim_read_transparent_input_new ()

-
QmiMessageUimReadTransparentInput *
-qmi_message_uim_read_transparent_input_new
-                               (void);
-

Allocates a new QmiMessageUimReadTransparentInput.

-
-

Returns

-

the newly created QmiMessageUimReadTransparentInput. The returned value should be freed with qmi_message_uim_read_transparent_input_unref().

-
-

Since: 1.6

-
-
-
-

qmi_message_uim_read_transparent_input_ref ()

-
QmiMessageUimReadTransparentInput *
-qmi_message_uim_read_transparent_input_ref
-                               (QmiMessageUimReadTransparentInput *self);
-

Atomically increments the reference count of self - by one.

-
-

Parameters

-
----- - - - - - -

self

a QmiMessageUimReadTransparentInput.

 
-
-
-

Returns

-

the new reference to self -.

-
-

Since: 1.6

-
-
-
-

qmi_message_uim_read_transparent_input_unref ()

-
void
-qmi_message_uim_read_transparent_input_unref
-                               (QmiMessageUimReadTransparentInput *self);
-

Atomically decrements the reference count of self - by one. -If the reference count drops to 0, self - is completely disposed.

-
-

Parameters

-
----- - - - - - -

self

a QmiMessageUimReadTransparentInput.

 
-
-

Since: 1.6

-
-
-
-

qmi_message_uim_read_transparent_input_get_encrypt_data ()

-
gboolean
-qmi_message_uim_read_transparent_input_get_encrypt_data
-                               (QmiMessageUimReadTransparentInput *self,
-                                gboolean *value_encrypt_data,
-                                GError **error);
-

Get the 'Encrypt Data' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessageUimReadTransparentInput.

 

value_encrypt_data

a placeholder for the output gboolean, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.6

-
-
-
-

qmi_message_uim_read_transparent_input_set_encrypt_data ()

-
gboolean
-qmi_message_uim_read_transparent_input_set_encrypt_data
-                               (QmiMessageUimReadTransparentInput *self,
-                                gboolean value_encrypt_data,
-                                GError **error);
-

Set the 'Encrypt Data' field in the message.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessageUimReadTransparentInput.

 

value_encrypt_data

a gboolean.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if value -was successfully set, FALSE otherwise.

-
-

Since: 1.6

-
-
-
-

qmi_message_uim_read_transparent_input_get_response_in_indication_token ()

-
gboolean
-qmi_message_uim_read_transparent_input_get_response_in_indication_token
-                               (QmiMessageUimReadTransparentInput *self,
-                                guint32 *value_response_in_indication_token,
-                                GError **error);
-

Get the 'Response In Indication Token' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessageUimReadTransparentInput.

 

value_response_in_indication_token

a placeholder for the output guint32, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.6

-
-
-
-

qmi_message_uim_read_transparent_input_set_response_in_indication_token ()

-
gboolean
-qmi_message_uim_read_transparent_input_set_response_in_indication_token
-                               (QmiMessageUimReadTransparentInput *self,
-                                guint32 value_response_in_indication_token,
-                                GError **error);
-

Set the 'Response In Indication Token' field in the message.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessageUimReadTransparentInput.

 

value_response_in_indication_token

a guint32.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if value -was successfully set, FALSE otherwise.

-
-

Since: 1.6

-
-
-
-

qmi_message_uim_read_transparent_input_get_read_information ()

-
gboolean
-qmi_message_uim_read_transparent_input_get_read_information
-                               (QmiMessageUimReadTransparentInput *self,
-                                guint16 *value_read_information_offset,
-                                guint16 *value_read_information_length,
-                                GError **error);
-

Get the 'Read Information' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - - - - - - -

self

a QmiMessageUimReadTransparentInput.

 

value_read_information_offset

a placeholder for the output guint16, or NULL if not required.

 

value_read_information_length

a placeholder for the output guint16, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.6

-
-
-
-

qmi_message_uim_read_transparent_input_set_read_information ()

-
gboolean
-qmi_message_uim_read_transparent_input_set_read_information
-                               (QmiMessageUimReadTransparentInput *self,
-                                guint16 value_read_information_offset,
-                                guint16 value_read_information_length,
-                                GError **error);
-

Set the 'Read Information' field in the message.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - - - - - - -

self

a QmiMessageUimReadTransparentInput.

 

value_read_information_offset

a guint16.

 

value_read_information_length

a guint16.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if value -was successfully set, FALSE otherwise.

-
-

Since: 1.6

-
-
-
-

qmi_message_uim_read_transparent_input_get_file ()

-
gboolean
-qmi_message_uim_read_transparent_input_get_file
-                               (QmiMessageUimReadTransparentInput *self,
-                                guint16 *value_file_file_id,
-                                GArray **value_file_file_path,
-                                GError **error);
-

Get the 'File' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - - - - - - -

self

a QmiMessageUimReadTransparentInput.

 

value_file_file_id

a placeholder for the output guint16, or NULL if not required.

 

value_file_file_path

a placeholder for the output GArray of guint8 elements, or NULL if not required. Do not free it, it is owned by self -.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.6

-
-
-
-

qmi_message_uim_read_transparent_input_set_file ()

-
gboolean
-qmi_message_uim_read_transparent_input_set_file
-                               (QmiMessageUimReadTransparentInput *self,
-                                guint16 value_file_file_id,
-                                GArray *value_file_file_path,
-                                GError **error);
-

Set the 'File' field in the message.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - - - - - - -

self

a QmiMessageUimReadTransparentInput.

 

value_file_file_id

a guint16.

 

value_file_file_path

a GArray of guint8 elements. A new reference to value_file_file_path -will be taken.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if value -was successfully set, FALSE otherwise.

-
-

Since: 1.6

-
-
-
-

qmi_message_uim_read_transparent_input_get_session_information ()

-
gboolean
-qmi_message_uim_read_transparent_input_get_session_information
-                               (QmiMessageUimReadTransparentInput *self,
-                                QmiUimSessionType *value_session_information_session_type,
-                                const gchar **value_session_information_application_identifier,
-                                GError **error);
-

Get the 'Session Information' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - - - - - - -

self

a QmiMessageUimReadTransparentInput.

 

value_session_information_session_type

a placeholder for the output QmiUimSessionType, or NULL if not required.

 

value_session_information_application_identifier

a placeholder for the output constant string, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.6

-
-
-
-

qmi_message_uim_read_transparent_input_set_session_information ()

-
gboolean
-qmi_message_uim_read_transparent_input_set_session_information
-                               (QmiMessageUimReadTransparentInput *self,
-                                QmiUimSessionType value_session_information_session_type,
-                                const gchar *value_session_information_application_identifier,
-                                GError **error);
-

Set the 'Session Information' field in the message.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - - - - - - -

self

a QmiMessageUimReadTransparentInput.

 

value_session_information_session_type

a QmiUimSessionType.

 

value_session_information_application_identifier

a constant string.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if value -was successfully set, FALSE otherwise.

-
-

Since: 1.6

-
-
-
-

qmi_message_uim_read_transparent_output_ref ()

-
QmiMessageUimReadTransparentOutput *
-qmi_message_uim_read_transparent_output_ref
-                               (QmiMessageUimReadTransparentOutput *self);
-

Atomically increments the reference count of self - by one.

-
-

Parameters

-
----- - - - - - -

self

a QmiMessageUimReadTransparentOutput.

 
-
-
-

Returns

-

the new reference to self -.

-
-

Since: 1.6

-
-
-
-

qmi_message_uim_read_transparent_output_unref ()

-
void
-qmi_message_uim_read_transparent_output_unref
-                               (QmiMessageUimReadTransparentOutput *self);
-

Atomically decrements the reference count of self - by one. -If the reference count drops to 0, self - is completely disposed.

-
-

Parameters

-
----- - - - - - -

self

a QmiMessageUimReadTransparentOutput.

 
-
-

Since: 1.6

-
-
-
-

qmi_message_uim_read_transparent_output_get_card_result ()

-
gboolean
-qmi_message_uim_read_transparent_output_get_card_result
-                               (QmiMessageUimReadTransparentOutput *self,
-                                guint8 *value_card_result_sw1,
-                                guint8 *value_card_result_sw2,
-                                GError **error);
-

Get the 'Card result' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - - - - - - -

self

a QmiMessageUimReadTransparentOutput.

 

value_card_result_sw1

a placeholder for the output guint8, or NULL if not required.

 

value_card_result_sw2

a placeholder for the output guint8, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.6

-
-
-
-

qmi_message_uim_read_transparent_output_get_result ()

-
gboolean
-qmi_message_uim_read_transparent_output_get_result
-                               (QmiMessageUimReadTransparentOutput *self,
-                                GError **error);
-

Get the result of the QMI operation.

-
-

Parameters

-
----- - - - - - - - - - - - - -

self

a QmiMessageUimReadTransparentOutput.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the QMI operation succeeded, FALSE if error -is set.

-
-

Since: 1.6

-
-
-
-

qmi_message_uim_read_transparent_output_get_read_result ()

-
gboolean
-qmi_message_uim_read_transparent_output_get_read_result
-                               (QmiMessageUimReadTransparentOutput *self,
-                                GArray **value_read_result,
-                                GError **error);
-

Get the 'Read result' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessageUimReadTransparentOutput.

 

value_read_result

a placeholder for the output GArray of guint8 elements, or NULL if not required. Do not free it, it is owned by self -.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.6

-
-
-
-

qmi_message_uim_read_transparent_output_get_response_in_indication_token ()

-
gboolean
-qmi_message_uim_read_transparent_output_get_response_in_indication_token
-                               (QmiMessageUimReadTransparentOutput *self,
-                                guint32 *value_response_in_indication_token,
-                                GError **error);
-

Get the 'Response In Indication Token' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessageUimReadTransparentOutput.

 

value_response_in_indication_token

a placeholder for the output guint32, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.6

-
-
-
-

qmi_message_uim_read_transparent_output_get_encrypted_data ()

-
gboolean
-qmi_message_uim_read_transparent_output_get_encrypted_data
-                               (QmiMessageUimReadTransparentOutput *self,
-                                gboolean *value_encrypted_data,
-                                GError **error);
-

Get the 'Encrypted Data' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessageUimReadTransparentOutput.

 

value_encrypted_data

a placeholder for the output gboolean, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.6

-
-
-
-

qmi_client_uim_read_transparent ()

-
void
-qmi_client_uim_read_transparent (QmiClientUim *self,
-                                 QmiMessageUimReadTransparentInput *input,
-                                 guint timeout,
-                                 GCancellable *cancellable,
-                                 GAsyncReadyCallback callback,
-                                 gpointer user_data);
-

Asynchronously sends a Read Transparent request to the device.

-

When the operation is finished, callback - will be invoked in the thread-default main loop of the thread you are calling this method from.

-

You can then call qmi_client_uim_read_transparent_finish() to get the result of the operation.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

self

a QmiClientUim.

 

input

a QmiMessageUimReadTransparentInput.

 

timeout

maximum time to wait for the method to complete, in seconds.

 

cancellable

a GCancellable or NULL.

 

callback

a GAsyncReadyCallback to call when the request is satisfied.

 

user_data

user data to pass to callback -.

 
-
-

Since: 1.6

-
-
-
-

qmi_client_uim_read_transparent_finish ()

-
QmiMessageUimReadTransparentOutput *
-qmi_client_uim_read_transparent_finish
-                               (QmiClientUim *self,
-                                GAsyncResult *res,
-                                GError **error);
-

Finishes an async operation started with qmi_client_uim_read_transparent().

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiClientUim.

 

res

the GAsyncResult obtained from the GAsyncReadyCallback passed to qmi_client_uim_read_transparent().

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

a QmiMessageUimReadTransparentOutput, or NULL if error -is set. The returned value should be freed with qmi_message_uim_read_transparent_output_unref().

-
-

Since: 1.6

-
-
-
-

Types and Values

-
-

QmiMessageUimReadTransparentInput

-
typedef struct _QmiMessageUimReadTransparentInput QmiMessageUimReadTransparentInput;
-

The QmiMessageUimReadTransparentInput structure contains private data and should only be accessed -using the provided API.

-

Since: 1.6

-
-
-
-

QmiMessageUimReadTransparentOutput

-
typedef struct _QmiMessageUimReadTransparentOutput QmiMessageUimReadTransparentOutput;
-

The QmiMessageUimReadTransparentOutput structure contains private data and should only be accessed -using the provided API.

-

Since: 1.6

-
-
-
- - - \ No newline at end of file diff -Nru libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-UIM-Read-Transparent-request.html libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-UIM-Read-Transparent-request.html --- libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-UIM-Read-Transparent-request.html 1970-01-01 01:00:00.000000000 +0100 +++ libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-UIM-Read-Transparent-request.html 2019-01-08 15:19:02.000000000 +0100 @@ -0,0 +1,1190 @@ + + + + +UIM Read Transparent request: libqmi-glib Reference Manual + + + + + + + + + + + + + + + + +
+
+
+ + +
+

UIM Read Transparent request

+

UIM Read Transparent request

+
+
+

Functions

+
++++ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+QmiMessageUimReadTransparentInput * + +qmi_message_uim_read_transparent_input_new () +
+QmiMessageUimReadTransparentInput * + +qmi_message_uim_read_transparent_input_ref () +
+void + +qmi_message_uim_read_transparent_input_unref () +
+gboolean + +qmi_message_uim_read_transparent_input_get_encrypt_data () +
+gboolean + +qmi_message_uim_read_transparent_input_set_encrypt_data () +
+gboolean + +qmi_message_uim_read_transparent_input_get_response_in_indication_token () +
+gboolean + +qmi_message_uim_read_transparent_input_set_response_in_indication_token () +
+gboolean + +qmi_message_uim_read_transparent_input_get_read_information () +
+gboolean + +qmi_message_uim_read_transparent_input_set_read_information () +
+gboolean + +qmi_message_uim_read_transparent_input_get_file () +
+gboolean + +qmi_message_uim_read_transparent_input_set_file () +
+gboolean + +qmi_message_uim_read_transparent_input_get_session () +
+gboolean + +qmi_message_uim_read_transparent_input_set_session () +
+QmiMessageUimReadTransparentOutput * + +qmi_message_uim_read_transparent_output_ref () +
+void + +qmi_message_uim_read_transparent_output_unref () +
+gboolean + +qmi_message_uim_read_transparent_output_get_card_result () +
+gboolean + +qmi_message_uim_read_transparent_output_get_result () +
+gboolean + +qmi_message_uim_read_transparent_output_get_read_result () +
+gboolean + +qmi_message_uim_read_transparent_output_get_response_in_indication_token () +
+gboolean + +qmi_message_uim_read_transparent_output_get_encrypted_data () +
+void + +qmi_client_uim_read_transparent () +
+QmiMessageUimReadTransparentOutput * + +qmi_client_uim_read_transparent_finish () +
+
+
+

Types and Values

+ +
+
+

Object Hierarchy

+
    GBoxed
+    ├── QmiMessageUimReadTransparentInput
+    ╰── QmiMessageUimReadTransparentOutput
+
+
+
+

Description

+
+
+

Functions

+
+

qmi_message_uim_read_transparent_input_new ()

+
QmiMessageUimReadTransparentInput *
+qmi_message_uim_read_transparent_input_new
+                               (void);
+

Allocates a new QmiMessageUimReadTransparentInput.

+
+

Returns

+

the newly created QmiMessageUimReadTransparentInput. The returned value should be freed with qmi_message_uim_read_transparent_input_unref().

+
+

Since: 1.6

+
+
+
+

qmi_message_uim_read_transparent_input_ref ()

+
QmiMessageUimReadTransparentInput *
+qmi_message_uim_read_transparent_input_ref
+                               (QmiMessageUimReadTransparentInput *self);
+

Atomically increments the reference count of self + by one.

+
+

Parameters

+
+++++ + + + + + +

self

a QmiMessageUimReadTransparentInput.

 
+
+
+

Returns

+

the new reference to self +.

+
+

Since: 1.6

+
+
+
+

qmi_message_uim_read_transparent_input_unref ()

+
void
+qmi_message_uim_read_transparent_input_unref
+                               (QmiMessageUimReadTransparentInput *self);
+

Atomically decrements the reference count of self + by one. +If the reference count drops to 0, self + is completely disposed.

+
+

Parameters

+
+++++ + + + + + +

self

a QmiMessageUimReadTransparentInput.

 
+
+

Since: 1.6

+
+
+
+

qmi_message_uim_read_transparent_input_get_encrypt_data ()

+
gboolean
+qmi_message_uim_read_transparent_input_get_encrypt_data
+                               (QmiMessageUimReadTransparentInput *self,
+                                gboolean *value_encrypt_data,
+                                GError **error);
+

Get the 'Encrypt Data' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageUimReadTransparentInput.

 

value_encrypt_data

a placeholder for the output gboolean, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.6

+
+
+
+

qmi_message_uim_read_transparent_input_set_encrypt_data ()

+
gboolean
+qmi_message_uim_read_transparent_input_set_encrypt_data
+                               (QmiMessageUimReadTransparentInput *self,
+                                gboolean value_encrypt_data,
+                                GError **error);
+

Set the 'Encrypt Data' field in the message.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageUimReadTransparentInput.

 

value_encrypt_data

a gboolean.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if value +was successfully set, FALSE otherwise.

+
+

Since: 1.6

+
+
+
+

qmi_message_uim_read_transparent_input_get_response_in_indication_token ()

+
gboolean
+qmi_message_uim_read_transparent_input_get_response_in_indication_token
+                               (QmiMessageUimReadTransparentInput *self,
+                                guint32 *value_response_in_indication_token,
+                                GError **error);
+

Get the 'Response In Indication Token' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageUimReadTransparentInput.

 

value_response_in_indication_token

a placeholder for the output guint32, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.6

+
+
+
+

qmi_message_uim_read_transparent_input_set_response_in_indication_token ()

+
gboolean
+qmi_message_uim_read_transparent_input_set_response_in_indication_token
+                               (QmiMessageUimReadTransparentInput *self,
+                                guint32 value_response_in_indication_token,
+                                GError **error);
+

Set the 'Response In Indication Token' field in the message.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageUimReadTransparentInput.

 

value_response_in_indication_token

a guint32.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if value +was successfully set, FALSE otherwise.

+
+

Since: 1.6

+
+
+
+

qmi_message_uim_read_transparent_input_get_read_information ()

+
gboolean
+qmi_message_uim_read_transparent_input_get_read_information
+                               (QmiMessageUimReadTransparentInput *self,
+                                guint16 *value_read_information_offset,
+                                guint16 *value_read_information_length,
+                                GError **error);
+

Get the 'Read Information' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + + + + + + +

self

a QmiMessageUimReadTransparentInput.

 

value_read_information_offset

a placeholder for the output guint16, or NULL if not required.

 

value_read_information_length

a placeholder for the output guint16, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.6

+
+
+
+

qmi_message_uim_read_transparent_input_set_read_information ()

+
gboolean
+qmi_message_uim_read_transparent_input_set_read_information
+                               (QmiMessageUimReadTransparentInput *self,
+                                guint16 value_read_information_offset,
+                                guint16 value_read_information_length,
+                                GError **error);
+

Set the 'Read Information' field in the message.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + + + + + + +

self

a QmiMessageUimReadTransparentInput.

 

value_read_information_offset

a guint16.

 

value_read_information_length

a guint16.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if value +was successfully set, FALSE otherwise.

+
+

Since: 1.6

+
+
+
+

qmi_message_uim_read_transparent_input_get_file ()

+
gboolean
+qmi_message_uim_read_transparent_input_get_file
+                               (QmiMessageUimReadTransparentInput *self,
+                                guint16 *value_file_file_id,
+                                GArray **value_file_file_path,
+                                GError **error);
+

Get the 'File' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + + + + + + +

self

a QmiMessageUimReadTransparentInput.

 

value_file_file_id

a placeholder for the output guint16, or NULL if not required.

 

value_file_file_path

a placeholder for the output GArray of guint8 elements, or NULL if not required. Do not free it, it is owned by self +.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.6

+
+
+
+

qmi_message_uim_read_transparent_input_set_file ()

+
gboolean
+qmi_message_uim_read_transparent_input_set_file
+                               (QmiMessageUimReadTransparentInput *self,
+                                guint16 value_file_file_id,
+                                GArray *value_file_file_path,
+                                GError **error);
+

Set the 'File' field in the message.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + + + + + + +

self

a QmiMessageUimReadTransparentInput.

 

value_file_file_id

a guint16.

 

value_file_file_path

a GArray of guint8 elements. A new reference to value_file_file_path +will be taken.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if value +was successfully set, FALSE otherwise.

+
+

Since: 1.6

+
+
+
+

qmi_message_uim_read_transparent_input_get_session ()

+
gboolean
+qmi_message_uim_read_transparent_input_get_session
+                               (QmiMessageUimReadTransparentInput *self,
+                                QmiUimSessionType *value_session_session_type,
+                                GArray **value_session_application_identifier,
+                                GError **error);
+

Get the 'Session' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + + + + + + +

self

a QmiMessageUimReadTransparentInput.

 

value_session_session_type

a placeholder for the output QmiUimSessionType, or NULL if not required.

 

value_session_application_identifier

a placeholder for the output GArray of guint8 elements, or NULL if not required. Do not free it, it is owned by self +.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.6

+
+
+
+

qmi_message_uim_read_transparent_input_set_session ()

+
gboolean
+qmi_message_uim_read_transparent_input_set_session
+                               (QmiMessageUimReadTransparentInput *self,
+                                QmiUimSessionType value_session_session_type,
+                                GArray *value_session_application_identifier,
+                                GError **error);
+

Set the 'Session' field in the message.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + + + + + + +

self

a QmiMessageUimReadTransparentInput.

 

value_session_session_type

a QmiUimSessionType.

 

value_session_application_identifier

a GArray of guint8 elements. A new reference to value_session_application_identifier +will be taken.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if value +was successfully set, FALSE otherwise.

+
+

Since: 1.6

+
+
+
+

qmi_message_uim_read_transparent_output_ref ()

+
QmiMessageUimReadTransparentOutput *
+qmi_message_uim_read_transparent_output_ref
+                               (QmiMessageUimReadTransparentOutput *self);
+

Atomically increments the reference count of self + by one.

+
+

Parameters

+
+++++ + + + + + +

self

a QmiMessageUimReadTransparentOutput.

 
+
+
+

Returns

+

the new reference to self +.

+
+

Since: 1.6

+
+
+
+

qmi_message_uim_read_transparent_output_unref ()

+
void
+qmi_message_uim_read_transparent_output_unref
+                               (QmiMessageUimReadTransparentOutput *self);
+

Atomically decrements the reference count of self + by one. +If the reference count drops to 0, self + is completely disposed.

+
+

Parameters

+
+++++ + + + + + +

self

a QmiMessageUimReadTransparentOutput.

 
+
+

Since: 1.6

+
+
+
+

qmi_message_uim_read_transparent_output_get_card_result ()

+
gboolean
+qmi_message_uim_read_transparent_output_get_card_result
+                               (QmiMessageUimReadTransparentOutput *self,
+                                guint8 *value_card_result_sw1,
+                                guint8 *value_card_result_sw2,
+                                GError **error);
+

Get the 'Card result' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + + + + + + +

self

a QmiMessageUimReadTransparentOutput.

 

value_card_result_sw1

a placeholder for the output guint8, or NULL if not required.

 

value_card_result_sw2

a placeholder for the output guint8, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.6

+
+
+
+

qmi_message_uim_read_transparent_output_get_result ()

+
gboolean
+qmi_message_uim_read_transparent_output_get_result
+                               (QmiMessageUimReadTransparentOutput *self,
+                                GError **error);
+

Get the result of the QMI operation.

+
+

Parameters

+
+++++ + + + + + + + + + + + + +

self

a QmiMessageUimReadTransparentOutput.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the QMI operation succeeded, FALSE if error +is set.

+
+

Since: 1.6

+
+
+
+

qmi_message_uim_read_transparent_output_get_read_result ()

+
gboolean
+qmi_message_uim_read_transparent_output_get_read_result
+                               (QmiMessageUimReadTransparentOutput *self,
+                                GArray **value_read_result,
+                                GError **error);
+

Get the 'Read result' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageUimReadTransparentOutput.

 

value_read_result

a placeholder for the output GArray of guint8 elements, or NULL if not required. Do not free it, it is owned by self +.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.6

+
+
+
+

qmi_message_uim_read_transparent_output_get_response_in_indication_token ()

+
gboolean
+qmi_message_uim_read_transparent_output_get_response_in_indication_token
+                               (QmiMessageUimReadTransparentOutput *self,
+                                guint32 *value_response_in_indication_token,
+                                GError **error);
+

Get the 'Response In Indication Token' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageUimReadTransparentOutput.

 

value_response_in_indication_token

a placeholder for the output guint32, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.6

+
+
+
+

qmi_message_uim_read_transparent_output_get_encrypted_data ()

+
gboolean
+qmi_message_uim_read_transparent_output_get_encrypted_data
+                               (QmiMessageUimReadTransparentOutput *self,
+                                gboolean *value_encrypted_data,
+                                GError **error);
+

Get the 'Encrypted Data' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageUimReadTransparentOutput.

 

value_encrypted_data

a placeholder for the output gboolean, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.6

+
+
+
+

qmi_client_uim_read_transparent ()

+
void
+qmi_client_uim_read_transparent (QmiClientUim *self,
+                                 QmiMessageUimReadTransparentInput *input,
+                                 guint timeout,
+                                 GCancellable *cancellable,
+                                 GAsyncReadyCallback callback,
+                                 gpointer user_data);
+

Asynchronously sends a Read Transparent request to the device.

+

When the operation is finished, callback + will be invoked in the thread-default main loop of the thread you are calling this method from.

+

You can then call qmi_client_uim_read_transparent_finish() to get the result of the operation.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

self

a QmiClientUim.

 

input

a QmiMessageUimReadTransparentInput.

 

timeout

maximum time to wait for the method to complete, in seconds.

 

cancellable

a GCancellable or NULL.

 

callback

a GAsyncReadyCallback to call when the request is satisfied.

 

user_data

user data to pass to callback +.

 
+
+

Since: 1.6

+
+
+
+

qmi_client_uim_read_transparent_finish ()

+
QmiMessageUimReadTransparentOutput *
+qmi_client_uim_read_transparent_finish
+                               (QmiClientUim *self,
+                                GAsyncResult *res,
+                                GError **error);
+

Finishes an async operation started with qmi_client_uim_read_transparent().

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiClientUim.

 

res

the GAsyncResult obtained from the GAsyncReadyCallback passed to qmi_client_uim_read_transparent().

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

a QmiMessageUimReadTransparentOutput, or NULL if error +is set. The returned value should be freed with qmi_message_uim_read_transparent_output_unref().

+
+

Since: 1.6

+
+
+
+

Types and Values

+
+

QmiMessageUimReadTransparentInput

+
typedef struct _QmiMessageUimReadTransparentInput QmiMessageUimReadTransparentInput;
+

The QmiMessageUimReadTransparentInput structure contains private data and should only be accessed +using the provided API.

+

Since: 1.6

+
+
+
+

QmiMessageUimReadTransparentOutput

+
typedef struct _QmiMessageUimReadTransparentOutput QmiMessageUimReadTransparentOutput;
+

The QmiMessageUimReadTransparentOutput structure contains private data and should only be accessed +using the provided API.

+

Since: 1.6

+
+
+
+ + + \ No newline at end of file diff -Nru libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-UIM-Reset.html libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-UIM-Reset.html --- libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-UIM-Reset.html 2017-03-22 12:28:28.000000000 +0100 +++ libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-UIM-Reset.html 1970-01-01 01:00:00.000000000 +0100 @@ -1,317 +0,0 @@ - - - - -UIM Reset: libqmi-glib Reference Manual - - - - - - - - - - - - - - - - -
-
-
- - -
-

UIM Reset

-

UIM Reset

-
-
-

Functions

- -
-
-

Types and Values

-
---- - - - - -
 QmiMessageUimResetOutput
-
-
-

Object Hierarchy

-
    GBoxed
-    ╰── QmiMessageUimResetOutput
-
-
-
-

Description

-
-
-

Functions

-
-

qmi_message_uim_reset_output_ref ()

-
QmiMessageUimResetOutput *
-qmi_message_uim_reset_output_ref (QmiMessageUimResetOutput *self);
-

Atomically increments the reference count of self - by one.

-
-

Parameters

-
----- - - - - - -

self

a QmiMessageUimResetOutput.

 
-
-
-

Returns

-

the new reference to self -.

-
-

Since: 1.6

-
-
-
-

qmi_message_uim_reset_output_unref ()

-
void
-qmi_message_uim_reset_output_unref (QmiMessageUimResetOutput *self);
-

Atomically decrements the reference count of self - by one. -If the reference count drops to 0, self - is completely disposed.

-
-

Parameters

-
----- - - - - - -

self

a QmiMessageUimResetOutput.

 
-
-

Since: 1.6

-
-
-
-

qmi_message_uim_reset_output_get_result ()

-
gboolean
-qmi_message_uim_reset_output_get_result
-                               (QmiMessageUimResetOutput *self,
-                                GError **error);
-

Get the result of the QMI operation.

-
-

Parameters

-
----- - - - - - - - - - - - - -

self

a QmiMessageUimResetOutput.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the QMI operation succeeded, FALSE if error -is set.

-
-

Since: 1.6

-
-
-
-

qmi_client_uim_reset ()

-
void
-qmi_client_uim_reset (QmiClientUim *self,
-                      gpointer unused,
-                      guint timeout,
-                      GCancellable *cancellable,
-                      GAsyncReadyCallback callback,
-                      gpointer user_data);
-

Asynchronously sends a Reset request to the device.

-

When the operation is finished, callback - will be invoked in the thread-default main loop of the thread you are calling this method from.

-

You can then call qmi_client_uim_reset_finish() to get the result of the operation.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

self

a QmiClientUim.

 

unused

NULL. This message doesn't have any input bundle.

 

timeout

maximum time to wait for the method to complete, in seconds.

 

cancellable

a GCancellable or NULL.

 

callback

a GAsyncReadyCallback to call when the request is satisfied.

 

user_data

user data to pass to callback -.

 
-
-

Since: 1.6

-
-
-
-

qmi_client_uim_reset_finish ()

-
QmiMessageUimResetOutput *
-qmi_client_uim_reset_finish (QmiClientUim *self,
-                             GAsyncResult *res,
-                             GError **error);
-

Finishes an async operation started with qmi_client_uim_reset().

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiClientUim.

 

res

the GAsyncResult obtained from the GAsyncReadyCallback passed to qmi_client_uim_reset().

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

a QmiMessageUimResetOutput, or NULL if error -is set. The returned value should be freed with qmi_message_uim_reset_output_unref().

-
-

Since: 1.6

-
-
-
-

Types and Values

-
-

QmiMessageUimResetOutput

-
typedef struct _QmiMessageUimResetOutput QmiMessageUimResetOutput;
-

The QmiMessageUimResetOutput structure contains private data and should only be accessed -using the provided API.

-

Since: 1.6

-
-
-
- - - \ No newline at end of file diff -Nru libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-UIM-Reset-request.html libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-UIM-Reset-request.html --- libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-UIM-Reset-request.html 1970-01-01 01:00:00.000000000 +0100 +++ libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-UIM-Reset-request.html 2019-01-08 15:19:02.000000000 +0100 @@ -0,0 +1,317 @@ + + + + +UIM Reset request: libqmi-glib Reference Manual + + + + + + + + + + + + + + + + +
+
+
+ + +
+

UIM Reset request

+

UIM Reset request

+
+
+

Functions

+ +
+
+

Types and Values

+
++++ + + + + +
 QmiMessageUimResetOutput
+
+
+

Object Hierarchy

+
    GBoxed
+    ╰── QmiMessageUimResetOutput
+
+
+
+

Description

+
+
+

Functions

+
+

qmi_message_uim_reset_output_ref ()

+
QmiMessageUimResetOutput *
+qmi_message_uim_reset_output_ref (QmiMessageUimResetOutput *self);
+

Atomically increments the reference count of self + by one.

+
+

Parameters

+
+++++ + + + + + +

self

a QmiMessageUimResetOutput.

 
+
+
+

Returns

+

the new reference to self +.

+
+

Since: 1.6

+
+
+
+

qmi_message_uim_reset_output_unref ()

+
void
+qmi_message_uim_reset_output_unref (QmiMessageUimResetOutput *self);
+

Atomically decrements the reference count of self + by one. +If the reference count drops to 0, self + is completely disposed.

+
+

Parameters

+
+++++ + + + + + +

self

a QmiMessageUimResetOutput.

 
+
+

Since: 1.6

+
+
+
+

qmi_message_uim_reset_output_get_result ()

+
gboolean
+qmi_message_uim_reset_output_get_result
+                               (QmiMessageUimResetOutput *self,
+                                GError **error);
+

Get the result of the QMI operation.

+
+

Parameters

+
+++++ + + + + + + + + + + + + +

self

a QmiMessageUimResetOutput.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the QMI operation succeeded, FALSE if error +is set.

+
+

Since: 1.6

+
+
+
+

qmi_client_uim_reset ()

+
void
+qmi_client_uim_reset (QmiClientUim *self,
+                      gpointer unused,
+                      guint timeout,
+                      GCancellable *cancellable,
+                      GAsyncReadyCallback callback,
+                      gpointer user_data);
+

Asynchronously sends a Reset request to the device.

+

When the operation is finished, callback + will be invoked in the thread-default main loop of the thread you are calling this method from.

+

You can then call qmi_client_uim_reset_finish() to get the result of the operation.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

self

a QmiClientUim.

 

unused

NULL. This message doesn't have any input bundle.

 

timeout

maximum time to wait for the method to complete, in seconds.

 

cancellable

a GCancellable or NULL.

 

callback

a GAsyncReadyCallback to call when the request is satisfied.

 

user_data

user data to pass to callback +.

 
+
+

Since: 1.6

+
+
+
+

qmi_client_uim_reset_finish ()

+
QmiMessageUimResetOutput *
+qmi_client_uim_reset_finish (QmiClientUim *self,
+                             GAsyncResult *res,
+                             GError **error);
+

Finishes an async operation started with qmi_client_uim_reset().

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiClientUim.

 

res

the GAsyncResult obtained from the GAsyncReadyCallback passed to qmi_client_uim_reset().

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

a QmiMessageUimResetOutput, or NULL if error +is set. The returned value should be freed with qmi_message_uim_reset_output_unref().

+
+

Since: 1.6

+
+
+
+

Types and Values

+
+

QmiMessageUimResetOutput

+
typedef struct _QmiMessageUimResetOutput QmiMessageUimResetOutput;
+

The QmiMessageUimResetOutput structure contains private data and should only be accessed +using the provided API.

+

Since: 1.6

+
+
+
+ + + \ No newline at end of file diff -Nru libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-UIM-Set-PIN-Protection.html libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-UIM-Set-PIN-Protection.html --- libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-UIM-Set-PIN-Protection.html 2017-03-22 12:28:28.000000000 +0100 +++ libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-UIM-Set-PIN-Protection.html 1970-01-01 01:00:00.000000000 +0100 @@ -1,879 +0,0 @@ - - - - -UIM Set PIN Protection: libqmi-glib Reference Manual - - - - - - - - - - - - - - - - -
-
-
- - -
-

UIM Set PIN Protection

-

UIM Set PIN Protection

-
- -
-

Types and Values

- -
-
-

Object Hierarchy

-
    GBoxed
-    ├── QmiMessageUimSetPinProtectionInput
-    ╰── QmiMessageUimSetPinProtectionOutput
-
-
-
-

Description

-
-
-

Functions

-
-

qmi_message_uim_set_pin_protection_input_new ()

-
QmiMessageUimSetPinProtectionInput *
-qmi_message_uim_set_pin_protection_input_new
-                               (void);
-

Allocates a new QmiMessageUimSetPinProtectionInput.

-
-

Returns

-

the newly created QmiMessageUimSetPinProtectionInput. The returned value should be freed with qmi_message_uim_set_pin_protection_input_unref().

-
-

Since: 1.14

-
-
-
-

qmi_message_uim_set_pin_protection_input_ref ()

-
QmiMessageUimSetPinProtectionInput *
-qmi_message_uim_set_pin_protection_input_ref
-                               (QmiMessageUimSetPinProtectionInput *self);
-

Atomically increments the reference count of self - by one.

-
-

Parameters

-
----- - - - - - -

self

a QmiMessageUimSetPinProtectionInput.

 
-
-
-

Returns

-

the new reference to self -.

-
-

Since: 1.14

-
-
-
-

qmi_message_uim_set_pin_protection_input_unref ()

-
void
-qmi_message_uim_set_pin_protection_input_unref
-                               (QmiMessageUimSetPinProtectionInput *self);
-

Atomically decrements the reference count of self - by one. -If the reference count drops to 0, self - is completely disposed.

-
-

Parameters

-
----- - - - - - -

self

a QmiMessageUimSetPinProtectionInput.

 
-
-

Since: 1.14

-
-
-
-

qmi_message_uim_set_pin_protection_input_get_response_in_indication_token ()

-
gboolean
-qmi_message_uim_set_pin_protection_input_get_response_in_indication_token
-                               (QmiMessageUimSetPinProtectionInput *self,
-                                guint32 *value_response_in_indication_token,
-                                GError **error);
-

Get the 'Response In Indication Token' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessageUimSetPinProtectionInput.

 

value_response_in_indication_token

a placeholder for the output guint32, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.14

-
-
-
-

qmi_message_uim_set_pin_protection_input_set_response_in_indication_token ()

-
gboolean
-qmi_message_uim_set_pin_protection_input_set_response_in_indication_token
-                               (QmiMessageUimSetPinProtectionInput *self,
-                                guint32 value_response_in_indication_token,
-                                GError **error);
-

Set the 'Response In Indication Token' field in the message.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessageUimSetPinProtectionInput.

 

value_response_in_indication_token

a guint32.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if value -was successfully set, FALSE otherwise.

-
-

Since: 1.14

-
-
-
-

qmi_message_uim_set_pin_protection_input_get_info ()

-
gboolean
-qmi_message_uim_set_pin_protection_input_get_info
-                               (QmiMessageUimSetPinProtectionInput *self,
-                                QmiUimPinId *value_info_pin_id,
-                                gboolean *value_info_pin_enabled,
-                                const gchar **value_info_pin_value,
-                                GError **error);
-

Get the 'Info' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - - - - - - - - - - - -

self

a QmiMessageUimSetPinProtectionInput.

 

value_info_pin_id

a placeholder for the output QmiUimPinId, or NULL if not required.

 

value_info_pin_enabled

a placeholder for the output gboolean, or NULL if not required.

 

value_info_pin_value

a placeholder for the output constant string, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.14

-
-
-
-

qmi_message_uim_set_pin_protection_input_set_info ()

-
gboolean
-qmi_message_uim_set_pin_protection_input_set_info
-                               (QmiMessageUimSetPinProtectionInput *self,
-                                QmiUimPinId value_info_pin_id,
-                                gboolean value_info_pin_enabled,
-                                const gchar *value_info_pin_value,
-                                GError **error);
-

Set the 'Info' field in the message.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - - - - - - - - - - - -

self

a QmiMessageUimSetPinProtectionInput.

 

value_info_pin_id

a QmiUimPinId.

 

value_info_pin_enabled

a gboolean.

 

value_info_pin_value

a constant string.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if value -was successfully set, FALSE otherwise.

-
-

Since: 1.14

-
-
-
-

qmi_message_uim_set_pin_protection_input_get_session_information ()

-
gboolean
-qmi_message_uim_set_pin_protection_input_get_session_information
-                               (QmiMessageUimSetPinProtectionInput *self,
-                                QmiUimSessionType *value_session_information_session_type,
-                                const gchar **value_session_information_application_identifier,
-                                GError **error);
-

Get the 'Session Information' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - - - - - - -

self

a QmiMessageUimSetPinProtectionInput.

 

value_session_information_session_type

a placeholder for the output QmiUimSessionType, or NULL if not required.

 

value_session_information_application_identifier

a placeholder for the output constant string, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.14

-
-
-
-

qmi_message_uim_set_pin_protection_input_set_session_information ()

-
gboolean
-qmi_message_uim_set_pin_protection_input_set_session_information
-                               (QmiMessageUimSetPinProtectionInput *self,
-                                QmiUimSessionType value_session_information_session_type,
-                                const gchar *value_session_information_application_identifier,
-                                GError **error);
-

Set the 'Session Information' field in the message.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - - - - - - -

self

a QmiMessageUimSetPinProtectionInput.

 

value_session_information_session_type

a QmiUimSessionType.

 

value_session_information_application_identifier

a constant string.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if value -was successfully set, FALSE otherwise.

-
-

Since: 1.14

-
-
-
-

qmi_message_uim_set_pin_protection_output_ref ()

-
QmiMessageUimSetPinProtectionOutput *
-qmi_message_uim_set_pin_protection_output_ref
-                               (QmiMessageUimSetPinProtectionOutput *self);
-

Atomically increments the reference count of self - by one.

-
-

Parameters

-
----- - - - - - -

self

a QmiMessageUimSetPinProtectionOutput.

 
-
-
-

Returns

-

the new reference to self -.

-
-

Since: 1.14

-
-
-
-

qmi_message_uim_set_pin_protection_output_unref ()

-
void
-qmi_message_uim_set_pin_protection_output_unref
-                               (QmiMessageUimSetPinProtectionOutput *self);
-

Atomically decrements the reference count of self - by one. -If the reference count drops to 0, self - is completely disposed.

-
-

Parameters

-
----- - - - - - -

self

a QmiMessageUimSetPinProtectionOutput.

 
-
-

Since: 1.14

-
-
-
-

qmi_message_uim_set_pin_protection_output_get_result ()

-
gboolean
-qmi_message_uim_set_pin_protection_output_get_result
-                               (QmiMessageUimSetPinProtectionOutput *self,
-                                GError **error);
-

Get the result of the QMI operation.

-
-

Parameters

-
----- - - - - - - - - - - - - -

self

a QmiMessageUimSetPinProtectionOutput.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the QMI operation succeeded, FALSE if error -is set.

-
-

Since: 1.14

-
-
-
-

qmi_message_uim_set_pin_protection_output_get_retries_remaining ()

-
gboolean
-qmi_message_uim_set_pin_protection_output_get_retries_remaining
-                               (QmiMessageUimSetPinProtectionOutput *self,
-                                guint8 *value_retries_remaining_verify_retries_left,
-                                guint8 *value_retries_remaining_unblock_retries_left,
-                                GError **error);
-

Get the 'Retries Remaining' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - - - - - - -

self

a QmiMessageUimSetPinProtectionOutput.

 

value_retries_remaining_verify_retries_left

a placeholder for the output guint8, or NULL if not required.

 

value_retries_remaining_unblock_retries_left

a placeholder for the output guint8, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.14

-
-
-
-

qmi_message_uim_set_pin_protection_output_get_response_in_indication_token ()

-
gboolean
-qmi_message_uim_set_pin_protection_output_get_response_in_indication_token
-                               (QmiMessageUimSetPinProtectionOutput *self,
-                                guint32 *value_response_in_indication_token,
-                                GError **error);
-

Get the 'Response In Indication Token' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessageUimSetPinProtectionOutput.

 

value_response_in_indication_token

a placeholder for the output guint32, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.14

-
-
-
-

qmi_client_uim_set_pin_protection ()

-
void
-qmi_client_uim_set_pin_protection (QmiClientUim *self,
-                                   QmiMessageUimSetPinProtectionInput *input,
-                                   guint timeout,
-                                   GCancellable *cancellable,
-                                   GAsyncReadyCallback callback,
-                                   gpointer user_data);
-

Asynchronously sends a Set PIN Protection request to the device.

-

When the operation is finished, callback - will be invoked in the thread-default main loop of the thread you are calling this method from.

-

You can then call qmi_client_uim_set_pin_protection_finish() to get the result of the operation.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

self

a QmiClientUim.

 

input

a QmiMessageUimSetPinProtectionInput.

 

timeout

maximum time to wait for the method to complete, in seconds.

 

cancellable

a GCancellable or NULL.

 

callback

a GAsyncReadyCallback to call when the request is satisfied.

 

user_data

user data to pass to callback -.

 
-
-

Since: 1.14

-
-
-
-

qmi_client_uim_set_pin_protection_finish ()

-
QmiMessageUimSetPinProtectionOutput *
-qmi_client_uim_set_pin_protection_finish
-                               (QmiClientUim *self,
-                                GAsyncResult *res,
-                                GError **error);
-

Finishes an async operation started with qmi_client_uim_set_pin_protection().

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiClientUim.

 

res

the GAsyncResult obtained from the GAsyncReadyCallback passed to qmi_client_uim_set_pin_protection().

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

a QmiMessageUimSetPinProtectionOutput, or NULL if error -is set. The returned value should be freed with qmi_message_uim_set_pin_protection_output_unref().

-
-

Since: 1.14

-
-
-
-

Types and Values

-
-

QmiMessageUimSetPinProtectionInput

-
typedef struct _QmiMessageUimSetPinProtectionInput QmiMessageUimSetPinProtectionInput;
-

The QmiMessageUimSetPinProtectionInput structure contains private data and should only be accessed -using the provided API.

-

Since: 1.14

-
-
-
-

QmiMessageUimSetPinProtectionOutput

-
typedef struct _QmiMessageUimSetPinProtectionOutput QmiMessageUimSetPinProtectionOutput;
-

The QmiMessageUimSetPinProtectionOutput structure contains private data and should only be accessed -using the provided API.

-

Since: 1.14

-
-
-
- - - \ No newline at end of file diff -Nru libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-UIM-Set-PIN-Protection-request.html libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-UIM-Set-PIN-Protection-request.html --- libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-UIM-Set-PIN-Protection-request.html 1970-01-01 01:00:00.000000000 +0100 +++ libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-UIM-Set-PIN-Protection-request.html 2019-01-08 15:19:02.000000000 +0100 @@ -0,0 +1,881 @@ + + + + +UIM Set PIN Protection request: libqmi-glib Reference Manual + + + + + + + + + + + + + + + + +
+
+
+ + +
+

UIM Set PIN Protection request

+

UIM Set PIN Protection request

+
+ +
+

Types and Values

+ +
+
+

Object Hierarchy

+
    GBoxed
+    ├── QmiMessageUimSetPinProtectionInput
+    ╰── QmiMessageUimSetPinProtectionOutput
+
+
+
+

Description

+
+
+

Functions

+
+

qmi_message_uim_set_pin_protection_input_new ()

+
QmiMessageUimSetPinProtectionInput *
+qmi_message_uim_set_pin_protection_input_new
+                               (void);
+

Allocates a new QmiMessageUimSetPinProtectionInput.

+
+

Returns

+

the newly created QmiMessageUimSetPinProtectionInput. The returned value should be freed with qmi_message_uim_set_pin_protection_input_unref().

+
+

Since: 1.14

+
+
+
+

qmi_message_uim_set_pin_protection_input_ref ()

+
QmiMessageUimSetPinProtectionInput *
+qmi_message_uim_set_pin_protection_input_ref
+                               (QmiMessageUimSetPinProtectionInput *self);
+

Atomically increments the reference count of self + by one.

+
+

Parameters

+
+++++ + + + + + +

self

a QmiMessageUimSetPinProtectionInput.

 
+
+
+

Returns

+

the new reference to self +.

+
+

Since: 1.14

+
+
+
+

qmi_message_uim_set_pin_protection_input_unref ()

+
void
+qmi_message_uim_set_pin_protection_input_unref
+                               (QmiMessageUimSetPinProtectionInput *self);
+

Atomically decrements the reference count of self + by one. +If the reference count drops to 0, self + is completely disposed.

+
+

Parameters

+
+++++ + + + + + +

self

a QmiMessageUimSetPinProtectionInput.

 
+
+

Since: 1.14

+
+
+
+

qmi_message_uim_set_pin_protection_input_get_response_in_indication_token ()

+
gboolean
+qmi_message_uim_set_pin_protection_input_get_response_in_indication_token
+                               (QmiMessageUimSetPinProtectionInput *self,
+                                guint32 *value_response_in_indication_token,
+                                GError **error);
+

Get the 'Response In Indication Token' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageUimSetPinProtectionInput.

 

value_response_in_indication_token

a placeholder for the output guint32, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.14

+
+
+
+

qmi_message_uim_set_pin_protection_input_set_response_in_indication_token ()

+
gboolean
+qmi_message_uim_set_pin_protection_input_set_response_in_indication_token
+                               (QmiMessageUimSetPinProtectionInput *self,
+                                guint32 value_response_in_indication_token,
+                                GError **error);
+

Set the 'Response In Indication Token' field in the message.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageUimSetPinProtectionInput.

 

value_response_in_indication_token

a guint32.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if value +was successfully set, FALSE otherwise.

+
+

Since: 1.14

+
+
+
+

qmi_message_uim_set_pin_protection_input_get_info ()

+
gboolean
+qmi_message_uim_set_pin_protection_input_get_info
+                               (QmiMessageUimSetPinProtectionInput *self,
+                                QmiUimPinId *value_info_pin_id,
+                                gboolean *value_info_pin_enabled,
+                                const gchar **value_info_pin_value,
+                                GError **error);
+

Get the 'Info' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + + + + + + + + + + + +

self

a QmiMessageUimSetPinProtectionInput.

 

value_info_pin_id

a placeholder for the output QmiUimPinId, or NULL if not required.

 

value_info_pin_enabled

a placeholder for the output gboolean, or NULL if not required.

 

value_info_pin_value

a placeholder for the output constant string, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.14

+
+
+
+

qmi_message_uim_set_pin_protection_input_set_info ()

+
gboolean
+qmi_message_uim_set_pin_protection_input_set_info
+                               (QmiMessageUimSetPinProtectionInput *self,
+                                QmiUimPinId value_info_pin_id,
+                                gboolean value_info_pin_enabled,
+                                const gchar *value_info_pin_value,
+                                GError **error);
+

Set the 'Info' field in the message.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + + + + + + + + + + + +

self

a QmiMessageUimSetPinProtectionInput.

 

value_info_pin_id

a QmiUimPinId.

 

value_info_pin_enabled

a gboolean.

 

value_info_pin_value

a constant string.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if value +was successfully set, FALSE otherwise.

+
+

Since: 1.14

+
+
+
+

qmi_message_uim_set_pin_protection_input_get_session ()

+
gboolean
+qmi_message_uim_set_pin_protection_input_get_session
+                               (QmiMessageUimSetPinProtectionInput *self,
+                                QmiUimSessionType *value_session_session_type,
+                                GArray **value_session_application_identifier,
+                                GError **error);
+

Get the 'Session' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + + + + + + +

self

a QmiMessageUimSetPinProtectionInput.

 

value_session_session_type

a placeholder for the output QmiUimSessionType, or NULL if not required.

 

value_session_application_identifier

a placeholder for the output GArray of guint8 elements, or NULL if not required. Do not free it, it is owned by self +.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.14

+
+
+
+

qmi_message_uim_set_pin_protection_input_set_session ()

+
gboolean
+qmi_message_uim_set_pin_protection_input_set_session
+                               (QmiMessageUimSetPinProtectionInput *self,
+                                QmiUimSessionType value_session_session_type,
+                                GArray *value_session_application_identifier,
+                                GError **error);
+

Set the 'Session' field in the message.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + + + + + + +

self

a QmiMessageUimSetPinProtectionInput.

 

value_session_session_type

a QmiUimSessionType.

 

value_session_application_identifier

a GArray of guint8 elements. A new reference to value_session_application_identifier +will be taken.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if value +was successfully set, FALSE otherwise.

+
+

Since: 1.14

+
+
+
+

qmi_message_uim_set_pin_protection_output_ref ()

+
QmiMessageUimSetPinProtectionOutput *
+qmi_message_uim_set_pin_protection_output_ref
+                               (QmiMessageUimSetPinProtectionOutput *self);
+

Atomically increments the reference count of self + by one.

+
+

Parameters

+
+++++ + + + + + +

self

a QmiMessageUimSetPinProtectionOutput.

 
+
+
+

Returns

+

the new reference to self +.

+
+

Since: 1.14

+
+
+
+

qmi_message_uim_set_pin_protection_output_unref ()

+
void
+qmi_message_uim_set_pin_protection_output_unref
+                               (QmiMessageUimSetPinProtectionOutput *self);
+

Atomically decrements the reference count of self + by one. +If the reference count drops to 0, self + is completely disposed.

+
+

Parameters

+
+++++ + + + + + +

self

a QmiMessageUimSetPinProtectionOutput.

 
+
+

Since: 1.14

+
+
+
+

qmi_message_uim_set_pin_protection_output_get_result ()

+
gboolean
+qmi_message_uim_set_pin_protection_output_get_result
+                               (QmiMessageUimSetPinProtectionOutput *self,
+                                GError **error);
+

Get the result of the QMI operation.

+
+

Parameters

+
+++++ + + + + + + + + + + + + +

self

a QmiMessageUimSetPinProtectionOutput.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the QMI operation succeeded, FALSE if error +is set.

+
+

Since: 1.14

+
+
+
+

qmi_message_uim_set_pin_protection_output_get_retries_remaining ()

+
gboolean
+qmi_message_uim_set_pin_protection_output_get_retries_remaining
+                               (QmiMessageUimSetPinProtectionOutput *self,
+                                guint8 *value_retries_remaining_verify_retries_left,
+                                guint8 *value_retries_remaining_unblock_retries_left,
+                                GError **error);
+

Get the 'Retries Remaining' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + + + + + + +

self

a QmiMessageUimSetPinProtectionOutput.

 

value_retries_remaining_verify_retries_left

a placeholder for the output guint8, or NULL if not required.

 

value_retries_remaining_unblock_retries_left

a placeholder for the output guint8, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.14

+
+
+
+

qmi_message_uim_set_pin_protection_output_get_response_in_indication_token ()

+
gboolean
+qmi_message_uim_set_pin_protection_output_get_response_in_indication_token
+                               (QmiMessageUimSetPinProtectionOutput *self,
+                                guint32 *value_response_in_indication_token,
+                                GError **error);
+

Get the 'Response In Indication Token' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageUimSetPinProtectionOutput.

 

value_response_in_indication_token

a placeholder for the output guint32, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.14

+
+
+
+

qmi_client_uim_set_pin_protection ()

+
void
+qmi_client_uim_set_pin_protection (QmiClientUim *self,
+                                   QmiMessageUimSetPinProtectionInput *input,
+                                   guint timeout,
+                                   GCancellable *cancellable,
+                                   GAsyncReadyCallback callback,
+                                   gpointer user_data);
+

Asynchronously sends a Set PIN Protection request to the device.

+

When the operation is finished, callback + will be invoked in the thread-default main loop of the thread you are calling this method from.

+

You can then call qmi_client_uim_set_pin_protection_finish() to get the result of the operation.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

self

a QmiClientUim.

 

input

a QmiMessageUimSetPinProtectionInput.

 

timeout

maximum time to wait for the method to complete, in seconds.

 

cancellable

a GCancellable or NULL.

 

callback

a GAsyncReadyCallback to call when the request is satisfied.

 

user_data

user data to pass to callback +.

 
+
+

Since: 1.14

+
+
+
+

qmi_client_uim_set_pin_protection_finish ()

+
QmiMessageUimSetPinProtectionOutput *
+qmi_client_uim_set_pin_protection_finish
+                               (QmiClientUim *self,
+                                GAsyncResult *res,
+                                GError **error);
+

Finishes an async operation started with qmi_client_uim_set_pin_protection().

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiClientUim.

 

res

the GAsyncResult obtained from the GAsyncReadyCallback passed to qmi_client_uim_set_pin_protection().

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

a QmiMessageUimSetPinProtectionOutput, or NULL if error +is set. The returned value should be freed with qmi_message_uim_set_pin_protection_output_unref().

+
+

Since: 1.14

+
+
+
+

Types and Values

+
+

QmiMessageUimSetPinProtectionInput

+
typedef struct _QmiMessageUimSetPinProtectionInput QmiMessageUimSetPinProtectionInput;
+

The QmiMessageUimSetPinProtectionInput structure contains private data and should only be accessed +using the provided API.

+

Since: 1.14

+
+
+
+

QmiMessageUimSetPinProtectionOutput

+
typedef struct _QmiMessageUimSetPinProtectionOutput QmiMessageUimSetPinProtectionOutput;
+

The QmiMessageUimSetPinProtectionOutput structure contains private data and should only be accessed +using the provided API.

+

Since: 1.14

+
+
+
+ + + \ No newline at end of file diff -Nru libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-UIM-Unblock-PIN.html libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-UIM-Unblock-PIN.html --- libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-UIM-Unblock-PIN.html 2017-03-22 12:28:29.000000000 +0100 +++ libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-UIM-Unblock-PIN.html 1970-01-01 01:00:00.000000000 +0100 @@ -1,933 +0,0 @@ - - - - -UIM Unblock PIN: libqmi-glib Reference Manual - - - - - - - - - - - - - - - - -
-
-
- - -
-

UIM Unblock PIN

-

UIM Unblock PIN

-
- -
-

Types and Values

- -
-
-

Object Hierarchy

-
    GBoxed
-    ├── QmiMessageUimUnblockPinInput
-    ╰── QmiMessageUimUnblockPinOutput
-
-
-
-

Description

-
-
-

Functions

-
-

qmi_message_uim_unblock_pin_input_new ()

-
QmiMessageUimUnblockPinInput *
-qmi_message_uim_unblock_pin_input_new (void);
-

Allocates a new QmiMessageUimUnblockPinInput.

-
-

Returns

-

the newly created QmiMessageUimUnblockPinInput. The returned value should be freed with qmi_message_uim_unblock_pin_input_unref().

-
-

Since: 1.14

-
-
-
-

qmi_message_uim_unblock_pin_input_ref ()

-
QmiMessageUimUnblockPinInput *
-qmi_message_uim_unblock_pin_input_ref (QmiMessageUimUnblockPinInput *self);
-

Atomically increments the reference count of self - by one.

-
-

Parameters

-
----- - - - - - -

self

a QmiMessageUimUnblockPinInput.

 
-
-
-

Returns

-

the new reference to self -.

-
-

Since: 1.14

-
-
-
-

qmi_message_uim_unblock_pin_input_unref ()

-
void
-qmi_message_uim_unblock_pin_input_unref
-                               (QmiMessageUimUnblockPinInput *self);
-

Atomically decrements the reference count of self - by one. -If the reference count drops to 0, self - is completely disposed.

-
-

Parameters

-
----- - - - - - -

self

a QmiMessageUimUnblockPinInput.

 
-
-

Since: 1.14

-
-
-
-

qmi_message_uim_unblock_pin_input_get_response_in_indication_token ()

-
gboolean
-qmi_message_uim_unblock_pin_input_get_response_in_indication_token
-                               (QmiMessageUimUnblockPinInput *self,
-                                guint32 *value_response_in_indication_token,
-                                GError **error);
-

Get the 'Response In Indication Token' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessageUimUnblockPinInput.

 

value_response_in_indication_token

a placeholder for the output guint32, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.14

-
-
-
-

qmi_message_uim_unblock_pin_input_set_response_in_indication_token ()

-
gboolean
-qmi_message_uim_unblock_pin_input_set_response_in_indication_token
-                               (QmiMessageUimUnblockPinInput *self,
-                                guint32 value_response_in_indication_token,
-                                GError **error);
-

Set the 'Response In Indication Token' field in the message.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessageUimUnblockPinInput.

 

value_response_in_indication_token

a guint32.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if value -was successfully set, FALSE otherwise.

-
-

Since: 1.14

-
-
-
-

qmi_message_uim_unblock_pin_input_get_info ()

-
gboolean
-qmi_message_uim_unblock_pin_input_get_info
-                               (QmiMessageUimUnblockPinInput *self,
-                                QmiUimPinId *value_info_pin_id,
-                                const gchar **value_info_puk,
-                                const gchar **value_info_new_pin,
-                                GError **error);
-

Get the 'Info' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - - - - - - - - - - - -

self

a QmiMessageUimUnblockPinInput.

 

value_info_pin_id

a placeholder for the output QmiUimPinId, or NULL if not required.

 

value_info_puk

a placeholder for the output constant string, or NULL if not required.

 

value_info_new_pin

a placeholder for the output constant string, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.14

-
-
-
-

qmi_message_uim_unblock_pin_input_set_info ()

-
gboolean
-qmi_message_uim_unblock_pin_input_set_info
-                               (QmiMessageUimUnblockPinInput *self,
-                                QmiUimPinId value_info_pin_id,
-                                const gchar *value_info_puk,
-                                const gchar *value_info_new_pin,
-                                GError **error);
-

Set the 'Info' field in the message.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - - - - - - - - - - - -

self

a QmiMessageUimUnblockPinInput.

 

value_info_pin_id

a QmiUimPinId.

 

value_info_puk

a constant string.

 

value_info_new_pin

a constant string.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if value -was successfully set, FALSE otherwise.

-
-

Since: 1.14

-
-
-
-

qmi_message_uim_unblock_pin_input_get_session_information ()

-
gboolean
-qmi_message_uim_unblock_pin_input_get_session_information
-                               (QmiMessageUimUnblockPinInput *self,
-                                QmiUimSessionType *value_session_information_session_type,
-                                const gchar **value_session_information_application_identifier,
-                                GError **error);
-

Get the 'Session Information' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - - - - - - -

self

a QmiMessageUimUnblockPinInput.

 

value_session_information_session_type

a placeholder for the output QmiUimSessionType, or NULL if not required.

 

value_session_information_application_identifier

a placeholder for the output constant string, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.14

-
-
-
-

qmi_message_uim_unblock_pin_input_set_session_information ()

-
gboolean
-qmi_message_uim_unblock_pin_input_set_session_information
-                               (QmiMessageUimUnblockPinInput *self,
-                                QmiUimSessionType value_session_information_session_type,
-                                const gchar *value_session_information_application_identifier,
-                                GError **error);
-

Set the 'Session Information' field in the message.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - - - - - - -

self

a QmiMessageUimUnblockPinInput.

 

value_session_information_session_type

a QmiUimSessionType.

 

value_session_information_application_identifier

a constant string.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if value -was successfully set, FALSE otherwise.

-
-

Since: 1.14

-
-
-
-

qmi_message_uim_unblock_pin_output_ref ()

-
QmiMessageUimUnblockPinOutput *
-qmi_message_uim_unblock_pin_output_ref
-                               (QmiMessageUimUnblockPinOutput *self);
-

Atomically increments the reference count of self - by one.

-
-

Parameters

-
----- - - - - - -

self

a QmiMessageUimUnblockPinOutput.

 
-
-
-

Returns

-

the new reference to self -.

-
-

Since: 1.14

-
-
-
-

qmi_message_uim_unblock_pin_output_unref ()

-
void
-qmi_message_uim_unblock_pin_output_unref
-                               (QmiMessageUimUnblockPinOutput *self);
-

Atomically decrements the reference count of self - by one. -If the reference count drops to 0, self - is completely disposed.

-
-

Parameters

-
----- - - - - - -

self

a QmiMessageUimUnblockPinOutput.

 
-
-

Since: 1.14

-
-
-
-

qmi_message_uim_unblock_pin_output_get_card_result ()

-
gboolean
-qmi_message_uim_unblock_pin_output_get_card_result
-                               (QmiMessageUimUnblockPinOutput *self,
-                                guint8 *value_card_result_sw1,
-                                guint8 *value_card_result_sw2,
-                                GError **error);
-

Get the 'Card Result' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - - - - - - -

self

a QmiMessageUimUnblockPinOutput.

 

value_card_result_sw1

a placeholder for the output guint8, or NULL if not required.

 

value_card_result_sw2

a placeholder for the output guint8, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.14

-
-
-
-

qmi_message_uim_unblock_pin_output_get_result ()

-
gboolean
-qmi_message_uim_unblock_pin_output_get_result
-                               (QmiMessageUimUnblockPinOutput *self,
-                                GError **error);
-

Get the result of the QMI operation.

-
-

Parameters

-
----- - - - - - - - - - - - - -

self

a QmiMessageUimUnblockPinOutput.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the QMI operation succeeded, FALSE if error -is set.

-
-

Since: 1.14

-
-
-
-

qmi_message_uim_unblock_pin_output_get_retries_remaining ()

-
gboolean
-qmi_message_uim_unblock_pin_output_get_retries_remaining
-                               (QmiMessageUimUnblockPinOutput *self,
-                                guint8 *value_retries_remaining_verify_retries_left,
-                                guint8 *value_retries_remaining_unblock_retries_left,
-                                GError **error);
-

Get the 'Retries Remaining' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - - - - - - -

self

a QmiMessageUimUnblockPinOutput.

 

value_retries_remaining_verify_retries_left

a placeholder for the output guint8, or NULL if not required.

 

value_retries_remaining_unblock_retries_left

a placeholder for the output guint8, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.14

-
-
-
-

qmi_message_uim_unblock_pin_output_get_response_in_indication_token ()

-
gboolean
-qmi_message_uim_unblock_pin_output_get_response_in_indication_token
-                               (QmiMessageUimUnblockPinOutput *self,
-                                guint32 *value_response_in_indication_token,
-                                GError **error);
-

Get the 'Response In Indication Token' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessageUimUnblockPinOutput.

 

value_response_in_indication_token

a placeholder for the output guint32, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.14

-
-
-
-

qmi_client_uim_unblock_pin ()

-
void
-qmi_client_uim_unblock_pin (QmiClientUim *self,
-                            QmiMessageUimUnblockPinInput *input,
-                            guint timeout,
-                            GCancellable *cancellable,
-                            GAsyncReadyCallback callback,
-                            gpointer user_data);
-

Asynchronously sends a Unblock PIN request to the device.

-

When the operation is finished, callback - will be invoked in the thread-default main loop of the thread you are calling this method from.

-

You can then call qmi_client_uim_unblock_pin_finish() to get the result of the operation.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

self

a QmiClientUim.

 

input

a QmiMessageUimUnblockPinInput.

 

timeout

maximum time to wait for the method to complete, in seconds.

 

cancellable

a GCancellable or NULL.

 

callback

a GAsyncReadyCallback to call when the request is satisfied.

 

user_data

user data to pass to callback -.

 
-
-

Since: 1.14

-
-
-
-

qmi_client_uim_unblock_pin_finish ()

-
QmiMessageUimUnblockPinOutput *
-qmi_client_uim_unblock_pin_finish (QmiClientUim *self,
-                                   GAsyncResult *res,
-                                   GError **error);
-

Finishes an async operation started with qmi_client_uim_unblock_pin().

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiClientUim.

 

res

the GAsyncResult obtained from the GAsyncReadyCallback passed to qmi_client_uim_unblock_pin().

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

a QmiMessageUimUnblockPinOutput, or NULL if error -is set. The returned value should be freed with qmi_message_uim_unblock_pin_output_unref().

-
-

Since: 1.14

-
-
-
-

Types and Values

-
-

QmiMessageUimUnblockPinInput

-
typedef struct _QmiMessageUimUnblockPinInput QmiMessageUimUnblockPinInput;
-

The QmiMessageUimUnblockPinInput structure contains private data and should only be accessed -using the provided API.

-

Since: 1.14

-
-
-
-

QmiMessageUimUnblockPinOutput

-
typedef struct _QmiMessageUimUnblockPinOutput QmiMessageUimUnblockPinOutput;
-

The QmiMessageUimUnblockPinOutput structure contains private data and should only be accessed -using the provided API.

-

Since: 1.14

-
-
-
- - - \ No newline at end of file diff -Nru libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-UIM-Unblock-PIN-request.html libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-UIM-Unblock-PIN-request.html --- libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-UIM-Unblock-PIN-request.html 1970-01-01 01:00:00.000000000 +0100 +++ libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-UIM-Unblock-PIN-request.html 2019-01-08 15:19:02.000000000 +0100 @@ -0,0 +1,935 @@ + + + + +UIM Unblock PIN request: libqmi-glib Reference Manual + + + + + + + + + + + + + + + + +
+
+
+ + +
+

UIM Unblock PIN request

+

UIM Unblock PIN request

+
+ +
+

Types and Values

+ +
+
+

Object Hierarchy

+
    GBoxed
+    ├── QmiMessageUimUnblockPinInput
+    ╰── QmiMessageUimUnblockPinOutput
+
+
+
+

Description

+
+
+

Functions

+
+

qmi_message_uim_unblock_pin_input_new ()

+
QmiMessageUimUnblockPinInput *
+qmi_message_uim_unblock_pin_input_new (void);
+

Allocates a new QmiMessageUimUnblockPinInput.

+
+

Returns

+

the newly created QmiMessageUimUnblockPinInput. The returned value should be freed with qmi_message_uim_unblock_pin_input_unref().

+
+

Since: 1.14

+
+
+
+

qmi_message_uim_unblock_pin_input_ref ()

+
QmiMessageUimUnblockPinInput *
+qmi_message_uim_unblock_pin_input_ref (QmiMessageUimUnblockPinInput *self);
+

Atomically increments the reference count of self + by one.

+
+

Parameters

+
+++++ + + + + + +

self

a QmiMessageUimUnblockPinInput.

 
+
+
+

Returns

+

the new reference to self +.

+
+

Since: 1.14

+
+
+
+

qmi_message_uim_unblock_pin_input_unref ()

+
void
+qmi_message_uim_unblock_pin_input_unref
+                               (QmiMessageUimUnblockPinInput *self);
+

Atomically decrements the reference count of self + by one. +If the reference count drops to 0, self + is completely disposed.

+
+

Parameters

+
+++++ + + + + + +

self

a QmiMessageUimUnblockPinInput.

 
+
+

Since: 1.14

+
+
+
+

qmi_message_uim_unblock_pin_input_get_response_in_indication_token ()

+
gboolean
+qmi_message_uim_unblock_pin_input_get_response_in_indication_token
+                               (QmiMessageUimUnblockPinInput *self,
+                                guint32 *value_response_in_indication_token,
+                                GError **error);
+

Get the 'Response In Indication Token' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageUimUnblockPinInput.

 

value_response_in_indication_token

a placeholder for the output guint32, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.14

+
+
+
+

qmi_message_uim_unblock_pin_input_set_response_in_indication_token ()

+
gboolean
+qmi_message_uim_unblock_pin_input_set_response_in_indication_token
+                               (QmiMessageUimUnblockPinInput *self,
+                                guint32 value_response_in_indication_token,
+                                GError **error);
+

Set the 'Response In Indication Token' field in the message.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageUimUnblockPinInput.

 

value_response_in_indication_token

a guint32.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if value +was successfully set, FALSE otherwise.

+
+

Since: 1.14

+
+
+
+

qmi_message_uim_unblock_pin_input_get_info ()

+
gboolean
+qmi_message_uim_unblock_pin_input_get_info
+                               (QmiMessageUimUnblockPinInput *self,
+                                QmiUimPinId *value_info_pin_id,
+                                const gchar **value_info_puk,
+                                const gchar **value_info_new_pin,
+                                GError **error);
+

Get the 'Info' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + + + + + + + + + + + +

self

a QmiMessageUimUnblockPinInput.

 

value_info_pin_id

a placeholder for the output QmiUimPinId, or NULL if not required.

 

value_info_puk

a placeholder for the output constant string, or NULL if not required.

 

value_info_new_pin

a placeholder for the output constant string, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.14

+
+
+
+

qmi_message_uim_unblock_pin_input_set_info ()

+
gboolean
+qmi_message_uim_unblock_pin_input_set_info
+                               (QmiMessageUimUnblockPinInput *self,
+                                QmiUimPinId value_info_pin_id,
+                                const gchar *value_info_puk,
+                                const gchar *value_info_new_pin,
+                                GError **error);
+

Set the 'Info' field in the message.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + + + + + + + + + + + +

self

a QmiMessageUimUnblockPinInput.

 

value_info_pin_id

a QmiUimPinId.

 

value_info_puk

a constant string.

 

value_info_new_pin

a constant string.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if value +was successfully set, FALSE otherwise.

+
+

Since: 1.14

+
+
+
+

qmi_message_uim_unblock_pin_input_get_session ()

+
gboolean
+qmi_message_uim_unblock_pin_input_get_session
+                               (QmiMessageUimUnblockPinInput *self,
+                                QmiUimSessionType *value_session_session_type,
+                                GArray **value_session_application_identifier,
+                                GError **error);
+

Get the 'Session' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + + + + + + +

self

a QmiMessageUimUnblockPinInput.

 

value_session_session_type

a placeholder for the output QmiUimSessionType, or NULL if not required.

 

value_session_application_identifier

a placeholder for the output GArray of guint8 elements, or NULL if not required. Do not free it, it is owned by self +.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.14

+
+
+
+

qmi_message_uim_unblock_pin_input_set_session ()

+
gboolean
+qmi_message_uim_unblock_pin_input_set_session
+                               (QmiMessageUimUnblockPinInput *self,
+                                QmiUimSessionType value_session_session_type,
+                                GArray *value_session_application_identifier,
+                                GError **error);
+

Set the 'Session' field in the message.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + + + + + + +

self

a QmiMessageUimUnblockPinInput.

 

value_session_session_type

a QmiUimSessionType.

 

value_session_application_identifier

a GArray of guint8 elements. A new reference to value_session_application_identifier +will be taken.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if value +was successfully set, FALSE otherwise.

+
+

Since: 1.14

+
+
+
+

qmi_message_uim_unblock_pin_output_ref ()

+
QmiMessageUimUnblockPinOutput *
+qmi_message_uim_unblock_pin_output_ref
+                               (QmiMessageUimUnblockPinOutput *self);
+

Atomically increments the reference count of self + by one.

+
+

Parameters

+
+++++ + + + + + +

self

a QmiMessageUimUnblockPinOutput.

 
+
+
+

Returns

+

the new reference to self +.

+
+

Since: 1.14

+
+
+
+

qmi_message_uim_unblock_pin_output_unref ()

+
void
+qmi_message_uim_unblock_pin_output_unref
+                               (QmiMessageUimUnblockPinOutput *self);
+

Atomically decrements the reference count of self + by one. +If the reference count drops to 0, self + is completely disposed.

+
+

Parameters

+
+++++ + + + + + +

self

a QmiMessageUimUnblockPinOutput.

 
+
+

Since: 1.14

+
+
+
+

qmi_message_uim_unblock_pin_output_get_card_result ()

+
gboolean
+qmi_message_uim_unblock_pin_output_get_card_result
+                               (QmiMessageUimUnblockPinOutput *self,
+                                guint8 *value_card_result_sw1,
+                                guint8 *value_card_result_sw2,
+                                GError **error);
+

Get the 'Card Result' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + + + + + + +

self

a QmiMessageUimUnblockPinOutput.

 

value_card_result_sw1

a placeholder for the output guint8, or NULL if not required.

 

value_card_result_sw2

a placeholder for the output guint8, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.14

+
+
+
+

qmi_message_uim_unblock_pin_output_get_result ()

+
gboolean
+qmi_message_uim_unblock_pin_output_get_result
+                               (QmiMessageUimUnblockPinOutput *self,
+                                GError **error);
+

Get the result of the QMI operation.

+
+

Parameters

+
+++++ + + + + + + + + + + + + +

self

a QmiMessageUimUnblockPinOutput.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the QMI operation succeeded, FALSE if error +is set.

+
+

Since: 1.14

+
+
+
+

qmi_message_uim_unblock_pin_output_get_retries_remaining ()

+
gboolean
+qmi_message_uim_unblock_pin_output_get_retries_remaining
+                               (QmiMessageUimUnblockPinOutput *self,
+                                guint8 *value_retries_remaining_verify_retries_left,
+                                guint8 *value_retries_remaining_unblock_retries_left,
+                                GError **error);
+

Get the 'Retries Remaining' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + + + + + + +

self

a QmiMessageUimUnblockPinOutput.

 

value_retries_remaining_verify_retries_left

a placeholder for the output guint8, or NULL if not required.

 

value_retries_remaining_unblock_retries_left

a placeholder for the output guint8, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.14

+
+
+
+

qmi_message_uim_unblock_pin_output_get_response_in_indication_token ()

+
gboolean
+qmi_message_uim_unblock_pin_output_get_response_in_indication_token
+                               (QmiMessageUimUnblockPinOutput *self,
+                                guint32 *value_response_in_indication_token,
+                                GError **error);
+

Get the 'Response In Indication Token' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageUimUnblockPinOutput.

 

value_response_in_indication_token

a placeholder for the output guint32, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.14

+
+
+
+

qmi_client_uim_unblock_pin ()

+
void
+qmi_client_uim_unblock_pin (QmiClientUim *self,
+                            QmiMessageUimUnblockPinInput *input,
+                            guint timeout,
+                            GCancellable *cancellable,
+                            GAsyncReadyCallback callback,
+                            gpointer user_data);
+

Asynchronously sends a Unblock PIN request to the device.

+

When the operation is finished, callback + will be invoked in the thread-default main loop of the thread you are calling this method from.

+

You can then call qmi_client_uim_unblock_pin_finish() to get the result of the operation.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

self

a QmiClientUim.

 

input

a QmiMessageUimUnblockPinInput.

 

timeout

maximum time to wait for the method to complete, in seconds.

 

cancellable

a GCancellable or NULL.

 

callback

a GAsyncReadyCallback to call when the request is satisfied.

 

user_data

user data to pass to callback +.

 
+
+

Since: 1.14

+
+
+
+

qmi_client_uim_unblock_pin_finish ()

+
QmiMessageUimUnblockPinOutput *
+qmi_client_uim_unblock_pin_finish (QmiClientUim *self,
+                                   GAsyncResult *res,
+                                   GError **error);
+

Finishes an async operation started with qmi_client_uim_unblock_pin().

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiClientUim.

 

res

the GAsyncResult obtained from the GAsyncReadyCallback passed to qmi_client_uim_unblock_pin().

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

a QmiMessageUimUnblockPinOutput, or NULL if error +is set. The returned value should be freed with qmi_message_uim_unblock_pin_output_unref().

+
+

Since: 1.14

+
+
+
+

Types and Values

+
+

QmiMessageUimUnblockPinInput

+
typedef struct _QmiMessageUimUnblockPinInput QmiMessageUimUnblockPinInput;
+

The QmiMessageUimUnblockPinInput structure contains private data and should only be accessed +using the provided API.

+

Since: 1.14

+
+
+
+

QmiMessageUimUnblockPinOutput

+
typedef struct _QmiMessageUimUnblockPinOutput QmiMessageUimUnblockPinOutput;
+

The QmiMessageUimUnblockPinOutput structure contains private data and should only be accessed +using the provided API.

+

Since: 1.14

+
+
+
+ + + \ No newline at end of file diff -Nru libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-UIM-Verify-PIN.html libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-UIM-Verify-PIN.html --- libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-UIM-Verify-PIN.html 2017-03-22 12:28:28.000000000 +0100 +++ libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-UIM-Verify-PIN.html 1970-01-01 01:00:00.000000000 +0100 @@ -1,920 +0,0 @@ - - - - -UIM Verify PIN: libqmi-glib Reference Manual - - - - - - - - - - - - - - - - -
-
-
- - -
-

UIM Verify PIN

-

UIM Verify PIN

-
- -
-

Types and Values

- -
-
-

Object Hierarchy

-
    GBoxed
-    ├── QmiMessageUimVerifyPinInput
-    ╰── QmiMessageUimVerifyPinOutput
-
-
-
-

Description

-
-
-

Functions

-
-

qmi_message_uim_verify_pin_input_new ()

-
QmiMessageUimVerifyPinInput *
-qmi_message_uim_verify_pin_input_new (void);
-

Allocates a new QmiMessageUimVerifyPinInput.

-
-

Returns

-

the newly created QmiMessageUimVerifyPinInput. The returned value should be freed with qmi_message_uim_verify_pin_input_unref().

-
-

Since: 1.14

-
-
-
-

qmi_message_uim_verify_pin_input_ref ()

-
QmiMessageUimVerifyPinInput *
-qmi_message_uim_verify_pin_input_ref (QmiMessageUimVerifyPinInput *self);
-

Atomically increments the reference count of self - by one.

-
-

Parameters

-
----- - - - - - -

self

a QmiMessageUimVerifyPinInput.

 
-
-
-

Returns

-

the new reference to self -.

-
-

Since: 1.14

-
-
-
-

qmi_message_uim_verify_pin_input_unref ()

-
void
-qmi_message_uim_verify_pin_input_unref
-                               (QmiMessageUimVerifyPinInput *self);
-

Atomically decrements the reference count of self - by one. -If the reference count drops to 0, self - is completely disposed.

-
-

Parameters

-
----- - - - - - -

self

a QmiMessageUimVerifyPinInput.

 
-
-

Since: 1.14

-
-
-
-

qmi_message_uim_verify_pin_input_get_response_in_indication_token ()

-
gboolean
-qmi_message_uim_verify_pin_input_get_response_in_indication_token
-                               (QmiMessageUimVerifyPinInput *self,
-                                guint32 *value_response_in_indication_token,
-                                GError **error);
-

Get the 'Response In Indication Token' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessageUimVerifyPinInput.

 

value_response_in_indication_token

a placeholder for the output guint32, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.14

-
-
-
-

qmi_message_uim_verify_pin_input_set_response_in_indication_token ()

-
gboolean
-qmi_message_uim_verify_pin_input_set_response_in_indication_token
-                               (QmiMessageUimVerifyPinInput *self,
-                                guint32 value_response_in_indication_token,
-                                GError **error);
-

Set the 'Response In Indication Token' field in the message.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessageUimVerifyPinInput.

 

value_response_in_indication_token

a guint32.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if value -was successfully set, FALSE otherwise.

-
-

Since: 1.14

-
-
-
-

qmi_message_uim_verify_pin_input_get_info ()

-
gboolean
-qmi_message_uim_verify_pin_input_get_info
-                               (QmiMessageUimVerifyPinInput *self,
-                                QmiUimPinId *value_info_pin_id,
-                                const gchar **value_info_pin_value,
-                                GError **error);
-

Get the 'Info' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - - - - - - -

self

a QmiMessageUimVerifyPinInput.

 

value_info_pin_id

a placeholder for the output QmiUimPinId, or NULL if not required.

 

value_info_pin_value

a placeholder for the output constant string, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.14

-
-
-
-

qmi_message_uim_verify_pin_input_set_info ()

-
gboolean
-qmi_message_uim_verify_pin_input_set_info
-                               (QmiMessageUimVerifyPinInput *self,
-                                QmiUimPinId value_info_pin_id,
-                                const gchar *value_info_pin_value,
-                                GError **error);
-

Set the 'Info' field in the message.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - - - - - - -

self

a QmiMessageUimVerifyPinInput.

 

value_info_pin_id

a QmiUimPinId.

 

value_info_pin_value

a constant string.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if value -was successfully set, FALSE otherwise.

-
-

Since: 1.14

-
-
-
-

qmi_message_uim_verify_pin_input_get_session_information ()

-
gboolean
-qmi_message_uim_verify_pin_input_get_session_information
-                               (QmiMessageUimVerifyPinInput *self,
-                                QmiUimSessionType *value_session_information_session_type,
-                                const gchar **value_session_information_application_identifier,
-                                GError **error);
-

Get the 'Session Information' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - - - - - - -

self

a QmiMessageUimVerifyPinInput.

 

value_session_information_session_type

a placeholder for the output QmiUimSessionType, or NULL if not required.

 

value_session_information_application_identifier

a placeholder for the output constant string, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.14

-
-
-
-

qmi_message_uim_verify_pin_input_set_session_information ()

-
gboolean
-qmi_message_uim_verify_pin_input_set_session_information
-                               (QmiMessageUimVerifyPinInput *self,
-                                QmiUimSessionType value_session_information_session_type,
-                                const gchar *value_session_information_application_identifier,
-                                GError **error);
-

Set the 'Session Information' field in the message.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - - - - - - -

self

a QmiMessageUimVerifyPinInput.

 

value_session_information_session_type

a QmiUimSessionType.

 

value_session_information_application_identifier

a constant string.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if value -was successfully set, FALSE otherwise.

-
-

Since: 1.14

-
-
-
-

qmi_message_uim_verify_pin_output_ref ()

-
QmiMessageUimVerifyPinOutput *
-qmi_message_uim_verify_pin_output_ref (QmiMessageUimVerifyPinOutput *self);
-

Atomically increments the reference count of self - by one.

-
-

Parameters

-
----- - - - - - -

self

a QmiMessageUimVerifyPinOutput.

 
-
-
-

Returns

-

the new reference to self -.

-
-

Since: 1.14

-
-
-
-

qmi_message_uim_verify_pin_output_unref ()

-
void
-qmi_message_uim_verify_pin_output_unref
-                               (QmiMessageUimVerifyPinOutput *self);
-

Atomically decrements the reference count of self - by one. -If the reference count drops to 0, self - is completely disposed.

-
-

Parameters

-
----- - - - - - -

self

a QmiMessageUimVerifyPinOutput.

 
-
-

Since: 1.14

-
-
-
-

qmi_message_uim_verify_pin_output_get_card_result ()

-
gboolean
-qmi_message_uim_verify_pin_output_get_card_result
-                               (QmiMessageUimVerifyPinOutput *self,
-                                guint8 *value_card_result_sw1,
-                                guint8 *value_card_result_sw2,
-                                GError **error);
-

Get the 'Card Result' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - - - - - - -

self

a QmiMessageUimVerifyPinOutput.

 

value_card_result_sw1

a placeholder for the output guint8, or NULL if not required.

 

value_card_result_sw2

a placeholder for the output guint8, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.14

-
-
-
-

qmi_message_uim_verify_pin_output_get_result ()

-
gboolean
-qmi_message_uim_verify_pin_output_get_result
-                               (QmiMessageUimVerifyPinOutput *self,
-                                GError **error);
-

Get the result of the QMI operation.

-
-

Parameters

-
----- - - - - - - - - - - - - -

self

a QmiMessageUimVerifyPinOutput.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the QMI operation succeeded, FALSE if error -is set.

-
-

Since: 1.14

-
-
-
-

qmi_message_uim_verify_pin_output_get_retries_remaining ()

-
gboolean
-qmi_message_uim_verify_pin_output_get_retries_remaining
-                               (QmiMessageUimVerifyPinOutput *self,
-                                guint8 *value_retries_remaining_verify_retries_left,
-                                guint8 *value_retries_remaining_unblock_retries_left,
-                                GError **error);
-

Get the 'Retries Remaining' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - - - - - - -

self

a QmiMessageUimVerifyPinOutput.

 

value_retries_remaining_verify_retries_left

a placeholder for the output guint8, or NULL if not required.

 

value_retries_remaining_unblock_retries_left

a placeholder for the output guint8, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.14

-
-
-
-

qmi_message_uim_verify_pin_output_get_response_in_indication_token ()

-
gboolean
-qmi_message_uim_verify_pin_output_get_response_in_indication_token
-                               (QmiMessageUimVerifyPinOutput *self,
-                                guint32 *value_response_in_indication_token,
-                                GError **error);
-

Get the 'Response In Indication Token' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessageUimVerifyPinOutput.

 

value_response_in_indication_token

a placeholder for the output guint32, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.14

-
-
-
-

qmi_client_uim_verify_pin ()

-
void
-qmi_client_uim_verify_pin (QmiClientUim *self,
-                           QmiMessageUimVerifyPinInput *input,
-                           guint timeout,
-                           GCancellable *cancellable,
-                           GAsyncReadyCallback callback,
-                           gpointer user_data);
-

Asynchronously sends a Verify PIN request to the device.

-

When the operation is finished, callback - will be invoked in the thread-default main loop of the thread you are calling this method from.

-

You can then call qmi_client_uim_verify_pin_finish() to get the result of the operation.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

self

a QmiClientUim.

 

input

a QmiMessageUimVerifyPinInput.

 

timeout

maximum time to wait for the method to complete, in seconds.

 

cancellable

a GCancellable or NULL.

 

callback

a GAsyncReadyCallback to call when the request is satisfied.

 

user_data

user data to pass to callback -.

 
-
-

Since: 1.14

-
-
-
-

qmi_client_uim_verify_pin_finish ()

-
QmiMessageUimVerifyPinOutput *
-qmi_client_uim_verify_pin_finish (QmiClientUim *self,
-                                  GAsyncResult *res,
-                                  GError **error);
-

Finishes an async operation started with qmi_client_uim_verify_pin().

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiClientUim.

 

res

the GAsyncResult obtained from the GAsyncReadyCallback passed to qmi_client_uim_verify_pin().

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

a QmiMessageUimVerifyPinOutput, or NULL if error -is set. The returned value should be freed with qmi_message_uim_verify_pin_output_unref().

-
-

Since: 1.14

-
-
-
-

Types and Values

-
-

QmiMessageUimVerifyPinInput

-
typedef struct _QmiMessageUimVerifyPinInput QmiMessageUimVerifyPinInput;
-

The QmiMessageUimVerifyPinInput structure contains private data and should only be accessed -using the provided API.

-

Since: 1.14

-
-
-
-

QmiMessageUimVerifyPinOutput

-
typedef struct _QmiMessageUimVerifyPinOutput QmiMessageUimVerifyPinOutput;
-

The QmiMessageUimVerifyPinOutput structure contains private data and should only be accessed -using the provided API.

-

Since: 1.14

-
-
-
- - - \ No newline at end of file diff -Nru libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-UIM-Verify-PIN-request.html libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-UIM-Verify-PIN-request.html --- libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-UIM-Verify-PIN-request.html 1970-01-01 01:00:00.000000000 +0100 +++ libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-UIM-Verify-PIN-request.html 2019-01-08 15:19:02.000000000 +0100 @@ -0,0 +1,922 @@ + + + + +UIM Verify PIN request: libqmi-glib Reference Manual + + + + + + + + + + + + + + + + +
+
+
+ + +
+

UIM Verify PIN request

+

UIM Verify PIN request

+
+ +
+

Types and Values

+ +
+
+

Object Hierarchy

+
    GBoxed
+    ├── QmiMessageUimVerifyPinInput
+    ╰── QmiMessageUimVerifyPinOutput
+
+
+
+

Description

+
+
+

Functions

+
+

qmi_message_uim_verify_pin_input_new ()

+
QmiMessageUimVerifyPinInput *
+qmi_message_uim_verify_pin_input_new (void);
+

Allocates a new QmiMessageUimVerifyPinInput.

+
+

Returns

+

the newly created QmiMessageUimVerifyPinInput. The returned value should be freed with qmi_message_uim_verify_pin_input_unref().

+
+

Since: 1.14

+
+
+
+

qmi_message_uim_verify_pin_input_ref ()

+
QmiMessageUimVerifyPinInput *
+qmi_message_uim_verify_pin_input_ref (QmiMessageUimVerifyPinInput *self);
+

Atomically increments the reference count of self + by one.

+
+

Parameters

+
+++++ + + + + + +

self

a QmiMessageUimVerifyPinInput.

 
+
+
+

Returns

+

the new reference to self +.

+
+

Since: 1.14

+
+
+
+

qmi_message_uim_verify_pin_input_unref ()

+
void
+qmi_message_uim_verify_pin_input_unref
+                               (QmiMessageUimVerifyPinInput *self);
+

Atomically decrements the reference count of self + by one. +If the reference count drops to 0, self + is completely disposed.

+
+

Parameters

+
+++++ + + + + + +

self

a QmiMessageUimVerifyPinInput.

 
+
+

Since: 1.14

+
+
+
+

qmi_message_uim_verify_pin_input_get_response_in_indication_token ()

+
gboolean
+qmi_message_uim_verify_pin_input_get_response_in_indication_token
+                               (QmiMessageUimVerifyPinInput *self,
+                                guint32 *value_response_in_indication_token,
+                                GError **error);
+

Get the 'Response In Indication Token' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageUimVerifyPinInput.

 

value_response_in_indication_token

a placeholder for the output guint32, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.14

+
+
+
+

qmi_message_uim_verify_pin_input_set_response_in_indication_token ()

+
gboolean
+qmi_message_uim_verify_pin_input_set_response_in_indication_token
+                               (QmiMessageUimVerifyPinInput *self,
+                                guint32 value_response_in_indication_token,
+                                GError **error);
+

Set the 'Response In Indication Token' field in the message.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageUimVerifyPinInput.

 

value_response_in_indication_token

a guint32.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if value +was successfully set, FALSE otherwise.

+
+

Since: 1.14

+
+
+
+

qmi_message_uim_verify_pin_input_get_info ()

+
gboolean
+qmi_message_uim_verify_pin_input_get_info
+                               (QmiMessageUimVerifyPinInput *self,
+                                QmiUimPinId *value_info_pin_id,
+                                const gchar **value_info_pin_value,
+                                GError **error);
+

Get the 'Info' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + + + + + + +

self

a QmiMessageUimVerifyPinInput.

 

value_info_pin_id

a placeholder for the output QmiUimPinId, or NULL if not required.

 

value_info_pin_value

a placeholder for the output constant string, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.14

+
+
+
+

qmi_message_uim_verify_pin_input_set_info ()

+
gboolean
+qmi_message_uim_verify_pin_input_set_info
+                               (QmiMessageUimVerifyPinInput *self,
+                                QmiUimPinId value_info_pin_id,
+                                const gchar *value_info_pin_value,
+                                GError **error);
+

Set the 'Info' field in the message.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + + + + + + +

self

a QmiMessageUimVerifyPinInput.

 

value_info_pin_id

a QmiUimPinId.

 

value_info_pin_value

a constant string.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if value +was successfully set, FALSE otherwise.

+
+

Since: 1.14

+
+
+
+

qmi_message_uim_verify_pin_input_get_session ()

+
gboolean
+qmi_message_uim_verify_pin_input_get_session
+                               (QmiMessageUimVerifyPinInput *self,
+                                QmiUimSessionType *value_session_session_type,
+                                GArray **value_session_application_identifier,
+                                GError **error);
+

Get the 'Session' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + + + + + + +

self

a QmiMessageUimVerifyPinInput.

 

value_session_session_type

a placeholder for the output QmiUimSessionType, or NULL if not required.

 

value_session_application_identifier

a placeholder for the output GArray of guint8 elements, or NULL if not required. Do not free it, it is owned by self +.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.14

+
+
+
+

qmi_message_uim_verify_pin_input_set_session ()

+
gboolean
+qmi_message_uim_verify_pin_input_set_session
+                               (QmiMessageUimVerifyPinInput *self,
+                                QmiUimSessionType value_session_session_type,
+                                GArray *value_session_application_identifier,
+                                GError **error);
+

Set the 'Session' field in the message.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + + + + + + +

self

a QmiMessageUimVerifyPinInput.

 

value_session_session_type

a QmiUimSessionType.

 

value_session_application_identifier

a GArray of guint8 elements. A new reference to value_session_application_identifier +will be taken.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if value +was successfully set, FALSE otherwise.

+
+

Since: 1.14

+
+
+
+

qmi_message_uim_verify_pin_output_ref ()

+
QmiMessageUimVerifyPinOutput *
+qmi_message_uim_verify_pin_output_ref (QmiMessageUimVerifyPinOutput *self);
+

Atomically increments the reference count of self + by one.

+
+

Parameters

+
+++++ + + + + + +

self

a QmiMessageUimVerifyPinOutput.

 
+
+
+

Returns

+

the new reference to self +.

+
+

Since: 1.14

+
+
+
+

qmi_message_uim_verify_pin_output_unref ()

+
void
+qmi_message_uim_verify_pin_output_unref
+                               (QmiMessageUimVerifyPinOutput *self);
+

Atomically decrements the reference count of self + by one. +If the reference count drops to 0, self + is completely disposed.

+
+

Parameters

+
+++++ + + + + + +

self

a QmiMessageUimVerifyPinOutput.

 
+
+

Since: 1.14

+
+
+
+

qmi_message_uim_verify_pin_output_get_card_result ()

+
gboolean
+qmi_message_uim_verify_pin_output_get_card_result
+                               (QmiMessageUimVerifyPinOutput *self,
+                                guint8 *value_card_result_sw1,
+                                guint8 *value_card_result_sw2,
+                                GError **error);
+

Get the 'Card Result' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + + + + + + +

self

a QmiMessageUimVerifyPinOutput.

 

value_card_result_sw1

a placeholder for the output guint8, or NULL if not required.

 

value_card_result_sw2

a placeholder for the output guint8, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.14

+
+
+
+

qmi_message_uim_verify_pin_output_get_result ()

+
gboolean
+qmi_message_uim_verify_pin_output_get_result
+                               (QmiMessageUimVerifyPinOutput *self,
+                                GError **error);
+

Get the result of the QMI operation.

+
+

Parameters

+
+++++ + + + + + + + + + + + + +

self

a QmiMessageUimVerifyPinOutput.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the QMI operation succeeded, FALSE if error +is set.

+
+

Since: 1.14

+
+
+
+

qmi_message_uim_verify_pin_output_get_retries_remaining ()

+
gboolean
+qmi_message_uim_verify_pin_output_get_retries_remaining
+                               (QmiMessageUimVerifyPinOutput *self,
+                                guint8 *value_retries_remaining_verify_retries_left,
+                                guint8 *value_retries_remaining_unblock_retries_left,
+                                GError **error);
+

Get the 'Retries Remaining' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + + + + + + +

self

a QmiMessageUimVerifyPinOutput.

 

value_retries_remaining_verify_retries_left

a placeholder for the output guint8, or NULL if not required.

 

value_retries_remaining_unblock_retries_left

a placeholder for the output guint8, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.14

+
+
+
+

qmi_message_uim_verify_pin_output_get_response_in_indication_token ()

+
gboolean
+qmi_message_uim_verify_pin_output_get_response_in_indication_token
+                               (QmiMessageUimVerifyPinOutput *self,
+                                guint32 *value_response_in_indication_token,
+                                GError **error);
+

Get the 'Response In Indication Token' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageUimVerifyPinOutput.

 

value_response_in_indication_token

a placeholder for the output guint32, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.14

+
+
+
+

qmi_client_uim_verify_pin ()

+
void
+qmi_client_uim_verify_pin (QmiClientUim *self,
+                           QmiMessageUimVerifyPinInput *input,
+                           guint timeout,
+                           GCancellable *cancellable,
+                           GAsyncReadyCallback callback,
+                           gpointer user_data);
+

Asynchronously sends a Verify PIN request to the device.

+

When the operation is finished, callback + will be invoked in the thread-default main loop of the thread you are calling this method from.

+

You can then call qmi_client_uim_verify_pin_finish() to get the result of the operation.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

self

a QmiClientUim.

 

input

a QmiMessageUimVerifyPinInput.

 

timeout

maximum time to wait for the method to complete, in seconds.

 

cancellable

a GCancellable or NULL.

 

callback

a GAsyncReadyCallback to call when the request is satisfied.

 

user_data

user data to pass to callback +.

 
+
+

Since: 1.14

+
+
+
+

qmi_client_uim_verify_pin_finish ()

+
QmiMessageUimVerifyPinOutput *
+qmi_client_uim_verify_pin_finish (QmiClientUim *self,
+                                  GAsyncResult *res,
+                                  GError **error);
+

Finishes an async operation started with qmi_client_uim_verify_pin().

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiClientUim.

 

res

the GAsyncResult obtained from the GAsyncReadyCallback passed to qmi_client_uim_verify_pin().

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

a QmiMessageUimVerifyPinOutput, or NULL if error +is set. The returned value should be freed with qmi_message_uim_verify_pin_output_unref().

+
+

Since: 1.14

+
+
+
+

Types and Values

+
+

QmiMessageUimVerifyPinInput

+
typedef struct _QmiMessageUimVerifyPinInput QmiMessageUimVerifyPinInput;
+

The QmiMessageUimVerifyPinInput structure contains private data and should only be accessed +using the provided API.

+

Since: 1.14

+
+
+
+

QmiMessageUimVerifyPinOutput

+
typedef struct _QmiMessageUimVerifyPinOutput QmiMessageUimVerifyPinOutput;
+

The QmiMessageUimVerifyPinOutput structure contains private data and should only be accessed +using the provided API.

+

Since: 1.14

+
+
+
+ + + \ No newline at end of file diff -Nru libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-Version-and-feature-checks.html libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-Version-and-feature-checks.html --- libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-Version-and-feature-checks.html 2017-03-22 12:28:29.000000000 +0100 +++ libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-Version-and-feature-checks.html 2019-01-08 15:19:02.000000000 +0100 @@ -3,12 +3,12 @@ Version and feature checks: libqmi-glib Reference Manual - + - + @@ -131,7 +131,7 @@

QMI_MINOR_VERSION

-
#define QMI_MINOR_VERSION (18)
+
#define QMI_MINOR_VERSION (22)
 

Evaluates to the minor version number of libqmi-glib which this source is compiled against.

@@ -175,6 +175,6 @@
+
Generated by GTK-Doc V1.29 \ No newline at end of file diff -Nru libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-VOICE-All-Call-Status.html libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-VOICE-All-Call-Status.html --- libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-VOICE-All-Call-Status.html 2017-03-22 12:28:29.000000000 +0100 +++ libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-VOICE-All-Call-Status.html 1970-01-01 01:00:00.000000000 +0100 @@ -1,373 +0,0 @@ - - - - -VOICE All Call Status: libqmi-glib Reference Manual - - - - - - - - - - - - - - - - -
-
-
- - -
-

VOICE All Call Status

-

VOICE All Call Status

-
- - -
-

Object Hierarchy

-
    GBoxed
-    ╰── QmiIndicationVoiceAllCallStatusOutput
-
-
-
-

Description

-
-
-

Functions

-
-

qmi_indication_voice_all_call_status_output_ref ()

-
QmiIndicationVoiceAllCallStatusOutput *
-qmi_indication_voice_all_call_status_output_ref
-                               (QmiIndicationVoiceAllCallStatusOutput *self);
-

Atomically increments the reference count of self - by one.

-
-

Parameters

-
----- - - - - - -

self

a QmiIndicationVoiceAllCallStatusOutput.

 
-
-
-

Returns

-

the new reference to self -.

-
-

Since: 1.14

-
-
-
-

qmi_indication_voice_all_call_status_output_unref ()

-
void
-qmi_indication_voice_all_call_status_output_unref
-                               (QmiIndicationVoiceAllCallStatusOutput *self);
-

Atomically decrements the reference count of self - by one. -If the reference count drops to 0, self - is completely disposed.

-
-

Parameters

-
----- - - - - - -

self

a QmiIndicationVoiceAllCallStatusOutput.

 
-
-

Since: 1.14

-
-
-
-

qmi_indication_voice_all_call_status_output_get_remote_party_number ()

-
gboolean
-qmi_indication_voice_all_call_status_output_get_remote_party_number
-                               (QmiIndicationVoiceAllCallStatusOutput *self,
-                                GArray **value_remote_party_number,
-                                GError **error);
-

Get the 'Remote Party Number' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiIndicationVoiceAllCallStatusOutput.

 

value_remote_party_number

a placeholder for the output GArray of QmiIndicationVoiceAllCallStatusOutputRemotePartyNumberCall elements, or NULL if not required. Do not free it, it is owned by self -.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.14

-
-
-
-

qmi_indication_voice_all_call_status_output_get_call_information ()

-
gboolean
-qmi_indication_voice_all_call_status_output_get_call_information
-                               (QmiIndicationVoiceAllCallStatusOutput *self,
-                                GArray **value_call_information,
-                                GError **error);
-

Get the 'Call Information' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiIndicationVoiceAllCallStatusOutput.

 

value_call_information

a placeholder for the output GArray of QmiIndicationVoiceAllCallStatusOutputCallInformationCall elements, or NULL if not required. Do not free it, it is owned by self -.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.14

-
-
-
-

Types and Values

-
-

QmiIndicationVoiceAllCallStatusOutput

-
typedef struct _QmiIndicationVoiceAllCallStatusOutput QmiIndicationVoiceAllCallStatusOutput;
-

The QmiIndicationVoiceAllCallStatusOutput structure contains private data and should only be accessed -using the provided API.

-

Since: 1.14

-
-
-
-

QmiIndicationVoiceAllCallStatusOutputRemotePartyNumberCall

-
typedef struct {
-    guint8 id;
-    QmiVoicePresentation presentation_indicator;
-    gchar *type;
-} QmiIndicationVoiceAllCallStatusOutputRemotePartyNumberCall;
-
-

A QmiIndicationVoiceAllCallStatusOutputRemotePartyNumberCall struct.

-
-

Members

-
----- - - - - - - - - - - - - - - - - - -

guint8 id;

a guint8.

 

QmiVoicePresentation presentation_indicator;

a QmiVoicePresentation.

 

gchar *type;

a string.

 
-
-

Since: 1.14

-
-
-
-

QmiIndicationVoiceAllCallStatusOutputCallInformationCall

-
typedef struct {
-    guint8 id;
-    QmiVoiceCallState state;
-    QmiVoiceCallType type;
-    QmiVoiceCallDirection direction;
-    QmiVoiceCallMode mode;
-    gboolean multipart_indicator;
-    QmiVoiceAls als;
-} QmiIndicationVoiceAllCallStatusOutputCallInformationCall;
-
-

A QmiIndicationVoiceAllCallStatusOutputCallInformationCall struct.

-
-

Members

-
----- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

guint8 id;

a guint8.

 

QmiVoiceCallState state;

a QmiVoiceCallState.

 

QmiVoiceCallType type;

a QmiVoiceCallType.

 

QmiVoiceCallDirection direction;

a QmiVoiceCallDirection.

 

QmiVoiceCallMode mode;

a QmiVoiceCallMode.

 

gboolean multipart_indicator;

a gboolean.

 

QmiVoiceAls als;

a QmiVoiceAls.

 
-
-

Since: 1.14

-
-
-
- - - \ No newline at end of file diff -Nru libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-VOICE-All-Call-Status-indication.html libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-VOICE-All-Call-Status-indication.html --- libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-VOICE-All-Call-Status-indication.html 1970-01-01 01:00:00.000000000 +0100 +++ libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-VOICE-All-Call-Status-indication.html 2019-01-08 15:19:02.000000000 +0100 @@ -0,0 +1,373 @@ + + + + +VOICE All Call Status indication: libqmi-glib Reference Manual + + + + + + + + + + + + + + + + +
+
+
+ + +
+

VOICE All Call Status indication

+

VOICE All Call Status indication

+
+ + +
+

Object Hierarchy

+
    GBoxed
+    ╰── QmiIndicationVoiceAllCallStatusOutput
+
+
+
+

Description

+
+
+

Functions

+
+

qmi_indication_voice_all_call_status_output_ref ()

+
QmiIndicationVoiceAllCallStatusOutput *
+qmi_indication_voice_all_call_status_output_ref
+                               (QmiIndicationVoiceAllCallStatusOutput *self);
+

Atomically increments the reference count of self + by one.

+
+

Parameters

+
+++++ + + + + + +

self

a QmiIndicationVoiceAllCallStatusOutput.

 
+
+
+

Returns

+

the new reference to self +.

+
+

Since: 1.14

+
+
+
+

qmi_indication_voice_all_call_status_output_unref ()

+
void
+qmi_indication_voice_all_call_status_output_unref
+                               (QmiIndicationVoiceAllCallStatusOutput *self);
+

Atomically decrements the reference count of self + by one. +If the reference count drops to 0, self + is completely disposed.

+
+

Parameters

+
+++++ + + + + + +

self

a QmiIndicationVoiceAllCallStatusOutput.

 
+
+

Since: 1.14

+
+
+
+

qmi_indication_voice_all_call_status_output_get_remote_party_number ()

+
gboolean
+qmi_indication_voice_all_call_status_output_get_remote_party_number
+                               (QmiIndicationVoiceAllCallStatusOutput *self,
+                                GArray **value_remote_party_number,
+                                GError **error);
+

Get the 'Remote Party Number' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiIndicationVoiceAllCallStatusOutput.

 

value_remote_party_number

a placeholder for the output GArray of QmiIndicationVoiceAllCallStatusOutputRemotePartyNumberCall elements, or NULL if not required. Do not free it, it is owned by self +.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.14

+
+
+
+

qmi_indication_voice_all_call_status_output_get_call_information ()

+
gboolean
+qmi_indication_voice_all_call_status_output_get_call_information
+                               (QmiIndicationVoiceAllCallStatusOutput *self,
+                                GArray **value_call_information,
+                                GError **error);
+

Get the 'Call Information' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiIndicationVoiceAllCallStatusOutput.

 

value_call_information

a placeholder for the output GArray of QmiIndicationVoiceAllCallStatusOutputCallInformationCall elements, or NULL if not required. Do not free it, it is owned by self +.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.14

+
+
+
+

Types and Values

+
+

QmiIndicationVoiceAllCallStatusOutput

+
typedef struct _QmiIndicationVoiceAllCallStatusOutput QmiIndicationVoiceAllCallStatusOutput;
+

The QmiIndicationVoiceAllCallStatusOutput structure contains private data and should only be accessed +using the provided API.

+

Since: 1.14

+
+
+
+

QmiIndicationVoiceAllCallStatusOutputRemotePartyNumberCall

+
typedef struct {
+    guint8 id;
+    QmiVoicePresentation presentation_indicator;
+    gchar *type;
+} QmiIndicationVoiceAllCallStatusOutputRemotePartyNumberCall;
+
+

A QmiIndicationVoiceAllCallStatusOutputRemotePartyNumberCall struct.

+
+

Members

+
+++++ + + + + + + + + + + + + + + + + + +

guint8 id;

a guint8.

 

QmiVoicePresentation presentation_indicator;

a QmiVoicePresentation.

 

gchar *type;

a string.

 
+
+

Since: 1.14

+
+
+
+

QmiIndicationVoiceAllCallStatusOutputCallInformationCall

+
typedef struct {
+    guint8 id;
+    QmiVoiceCallState state;
+    QmiVoiceCallType type;
+    QmiVoiceCallDirection direction;
+    QmiVoiceCallMode mode;
+    gboolean multipart_indicator;
+    QmiVoiceAls als;
+} QmiIndicationVoiceAllCallStatusOutputCallInformationCall;
+
+

A QmiIndicationVoiceAllCallStatusOutputCallInformationCall struct.

+
+

Members

+
+++++ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

guint8 id;

a guint8.

 

QmiVoiceCallState state;

a QmiVoiceCallState.

 

QmiVoiceCallType type;

a QmiVoiceCallType.

 

QmiVoiceCallDirection direction;

a QmiVoiceCallDirection.

 

QmiVoiceCallMode mode;

a QmiVoiceCallMode.

 

gboolean multipart_indicator;

a gboolean.

 

QmiVoiceAls als;

a QmiVoiceAls.

 
+
+

Since: 1.14

+
+
+
+ + + \ No newline at end of file diff -Nru libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-VOICE-Answer-Call.html libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-VOICE-Answer-Call.html --- libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-VOICE-Answer-Call.html 2017-03-22 12:28:28.000000000 +0100 +++ libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-VOICE-Answer-Call.html 1970-01-01 01:00:00.000000000 +0100 @@ -1,581 +0,0 @@ - - - - -VOICE Answer Call: libqmi-glib Reference Manual - - - - - - - - - - - - - - - - -
-
-
- - -
-

VOICE Answer Call

-

VOICE Answer Call

-
- -
-

Types and Values

- -
-
-

Object Hierarchy

-
    GBoxed
-    ├── QmiMessageVoiceAnswerCallInput
-    ╰── QmiMessageVoiceAnswerCallOutput
-
-
-
-

Description

-
-
-

Functions

-
-

qmi_message_voice_answer_call_input_new ()

-
QmiMessageVoiceAnswerCallInput *
-qmi_message_voice_answer_call_input_new
-                               (void);
-

Allocates a new QmiMessageVoiceAnswerCallInput.

-
-

Returns

-

the newly created QmiMessageVoiceAnswerCallInput. The returned value should be freed with qmi_message_voice_answer_call_input_unref().

-
-

Since: 1.14

-
-
-
-

qmi_message_voice_answer_call_input_ref ()

-
QmiMessageVoiceAnswerCallInput *
-qmi_message_voice_answer_call_input_ref
-                               (QmiMessageVoiceAnswerCallInput *self);
-

Atomically increments the reference count of self - by one.

-
-

Parameters

-
----- - - - - - -

self

a QmiMessageVoiceAnswerCallInput.

 
-
-
-

Returns

-

the new reference to self -.

-
-

Since: 1.14

-
-
-
-

qmi_message_voice_answer_call_input_unref ()

-
void
-qmi_message_voice_answer_call_input_unref
-                               (QmiMessageVoiceAnswerCallInput *self);
-

Atomically decrements the reference count of self - by one. -If the reference count drops to 0, self - is completely disposed.

-
-

Parameters

-
----- - - - - - -

self

a QmiMessageVoiceAnswerCallInput.

 
-
-

Since: 1.14

-
-
-
-

qmi_message_voice_answer_call_input_get_call_id ()

-
gboolean
-qmi_message_voice_answer_call_input_get_call_id
-                               (QmiMessageVoiceAnswerCallInput *self,
-                                guint8 *value_call_id,
-                                GError **error);
-

Get the 'Call ID' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessageVoiceAnswerCallInput.

 

value_call_id

a placeholder for the output guint8, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.14

-
-
-
-

qmi_message_voice_answer_call_input_set_call_id ()

-
gboolean
-qmi_message_voice_answer_call_input_set_call_id
-                               (QmiMessageVoiceAnswerCallInput *self,
-                                guint8 value_call_id,
-                                GError **error);
-

Set the 'Call ID' field in the message.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessageVoiceAnswerCallInput.

 

value_call_id

a guint8.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if value -was successfully set, FALSE otherwise.

-
-

Since: 1.14

-
-
-
-

qmi_message_voice_answer_call_output_ref ()

-
QmiMessageVoiceAnswerCallOutput *
-qmi_message_voice_answer_call_output_ref
-                               (QmiMessageVoiceAnswerCallOutput *self);
-

Atomically increments the reference count of self - by one.

-
-

Parameters

-
----- - - - - - -

self

a QmiMessageVoiceAnswerCallOutput.

 
-
-
-

Returns

-

the new reference to self -.

-
-

Since: 1.14

-
-
-
-

qmi_message_voice_answer_call_output_unref ()

-
void
-qmi_message_voice_answer_call_output_unref
-                               (QmiMessageVoiceAnswerCallOutput *self);
-

Atomically decrements the reference count of self - by one. -If the reference count drops to 0, self - is completely disposed.

-
-

Parameters

-
----- - - - - - -

self

a QmiMessageVoiceAnswerCallOutput.

 
-
-

Since: 1.14

-
-
-
-

qmi_message_voice_answer_call_output_get_call_id ()

-
gboolean
-qmi_message_voice_answer_call_output_get_call_id
-                               (QmiMessageVoiceAnswerCallOutput *self,
-                                guint8 *value_call_id,
-                                GError **error);
-

Get the 'Call ID' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessageVoiceAnswerCallOutput.

 

value_call_id

a placeholder for the output guint8, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.14

-
-
-
-

qmi_message_voice_answer_call_output_get_result ()

-
gboolean
-qmi_message_voice_answer_call_output_get_result
-                               (QmiMessageVoiceAnswerCallOutput *self,
-                                GError **error);
-

Get the result of the QMI operation.

-
-

Parameters

-
----- - - - - - - - - - - - - -

self

a QmiMessageVoiceAnswerCallOutput.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the QMI operation succeeded, FALSE if error -is set.

-
-

Since: 1.14

-
-
-
-

qmi_client_voice_answer_call ()

-
void
-qmi_client_voice_answer_call (QmiClientVoice *self,
-                              QmiMessageVoiceAnswerCallInput *input,
-                              guint timeout,
-                              GCancellable *cancellable,
-                              GAsyncReadyCallback callback,
-                              gpointer user_data);
-

Asynchronously sends a Answer Call request to the device.

-

When the operation is finished, callback - will be invoked in the thread-default main loop of the thread you are calling this method from.

-

You can then call qmi_client_voice_answer_call_finish() to get the result of the operation.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

self

a QmiClientVoice.

 

input

a QmiMessageVoiceAnswerCallInput.

 

timeout

maximum time to wait for the method to complete, in seconds.

 

cancellable

a GCancellable or NULL.

 

callback

a GAsyncReadyCallback to call when the request is satisfied.

 

user_data

user data to pass to callback -.

 
-
-

Since: 1.14

-
-
-
-

qmi_client_voice_answer_call_finish ()

-
QmiMessageVoiceAnswerCallOutput *
-qmi_client_voice_answer_call_finish (QmiClientVoice *self,
-                                     GAsyncResult *res,
-                                     GError **error);
-

Finishes an async operation started with qmi_client_voice_answer_call().

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiClientVoice.

 

res

the GAsyncResult obtained from the GAsyncReadyCallback passed to qmi_client_voice_answer_call().

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

a QmiMessageVoiceAnswerCallOutput, or NULL if error -is set. The returned value should be freed with qmi_message_voice_answer_call_output_unref().

-
-

Since: 1.14

-
-
-
-

Types and Values

-
-

QmiMessageVoiceAnswerCallInput

-
typedef struct _QmiMessageVoiceAnswerCallInput QmiMessageVoiceAnswerCallInput;
-

The QmiMessageVoiceAnswerCallInput structure contains private data and should only be accessed -using the provided API.

-

Since: 1.14

-
-
-
-

QmiMessageVoiceAnswerCallOutput

-
typedef struct _QmiMessageVoiceAnswerCallOutput QmiMessageVoiceAnswerCallOutput;
-

The QmiMessageVoiceAnswerCallOutput structure contains private data and should only be accessed -using the provided API.

-

Since: 1.14

-
-
-
- - - \ No newline at end of file diff -Nru libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-VOICE-Answer-Call-request.html libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-VOICE-Answer-Call-request.html --- libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-VOICE-Answer-Call-request.html 1970-01-01 01:00:00.000000000 +0100 +++ libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-VOICE-Answer-Call-request.html 2019-01-08 15:19:02.000000000 +0100 @@ -0,0 +1,581 @@ + + + + +VOICE Answer Call request: libqmi-glib Reference Manual + + + + + + + + + + + + + + + + +
+
+
+ + +
+

VOICE Answer Call request

+

VOICE Answer Call request

+
+ +
+

Types and Values

+ +
+
+

Object Hierarchy

+
    GBoxed
+    ├── QmiMessageVoiceAnswerCallInput
+    ╰── QmiMessageVoiceAnswerCallOutput
+
+
+
+

Description

+
+
+

Functions

+
+

qmi_message_voice_answer_call_input_new ()

+
QmiMessageVoiceAnswerCallInput *
+qmi_message_voice_answer_call_input_new
+                               (void);
+

Allocates a new QmiMessageVoiceAnswerCallInput.

+
+

Returns

+

the newly created QmiMessageVoiceAnswerCallInput. The returned value should be freed with qmi_message_voice_answer_call_input_unref().

+
+

Since: 1.14

+
+
+
+

qmi_message_voice_answer_call_input_ref ()

+
QmiMessageVoiceAnswerCallInput *
+qmi_message_voice_answer_call_input_ref
+                               (QmiMessageVoiceAnswerCallInput *self);
+

Atomically increments the reference count of self + by one.

+
+

Parameters

+
+++++ + + + + + +

self

a QmiMessageVoiceAnswerCallInput.

 
+
+
+

Returns

+

the new reference to self +.

+
+

Since: 1.14

+
+
+
+

qmi_message_voice_answer_call_input_unref ()

+
void
+qmi_message_voice_answer_call_input_unref
+                               (QmiMessageVoiceAnswerCallInput *self);
+

Atomically decrements the reference count of self + by one. +If the reference count drops to 0, self + is completely disposed.

+
+

Parameters

+
+++++ + + + + + +

self

a QmiMessageVoiceAnswerCallInput.

 
+
+

Since: 1.14

+
+
+
+

qmi_message_voice_answer_call_input_get_call_id ()

+
gboolean
+qmi_message_voice_answer_call_input_get_call_id
+                               (QmiMessageVoiceAnswerCallInput *self,
+                                guint8 *value_call_id,
+                                GError **error);
+

Get the 'Call ID' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageVoiceAnswerCallInput.

 

value_call_id

a placeholder for the output guint8, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.14

+
+
+
+

qmi_message_voice_answer_call_input_set_call_id ()

+
gboolean
+qmi_message_voice_answer_call_input_set_call_id
+                               (QmiMessageVoiceAnswerCallInput *self,
+                                guint8 value_call_id,
+                                GError **error);
+

Set the 'Call ID' field in the message.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageVoiceAnswerCallInput.

 

value_call_id

a guint8.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if value +was successfully set, FALSE otherwise.

+
+

Since: 1.14

+
+
+
+

qmi_message_voice_answer_call_output_ref ()

+
QmiMessageVoiceAnswerCallOutput *
+qmi_message_voice_answer_call_output_ref
+                               (QmiMessageVoiceAnswerCallOutput *self);
+

Atomically increments the reference count of self + by one.

+
+

Parameters

+
+++++ + + + + + +

self

a QmiMessageVoiceAnswerCallOutput.

 
+
+
+

Returns

+

the new reference to self +.

+
+

Since: 1.14

+
+
+
+

qmi_message_voice_answer_call_output_unref ()

+
void
+qmi_message_voice_answer_call_output_unref
+                               (QmiMessageVoiceAnswerCallOutput *self);
+

Atomically decrements the reference count of self + by one. +If the reference count drops to 0, self + is completely disposed.

+
+

Parameters

+
+++++ + + + + + +

self

a QmiMessageVoiceAnswerCallOutput.

 
+
+

Since: 1.14

+
+
+
+

qmi_message_voice_answer_call_output_get_call_id ()

+
gboolean
+qmi_message_voice_answer_call_output_get_call_id
+                               (QmiMessageVoiceAnswerCallOutput *self,
+                                guint8 *value_call_id,
+                                GError **error);
+

Get the 'Call ID' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageVoiceAnswerCallOutput.

 

value_call_id

a placeholder for the output guint8, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.14

+
+
+
+

qmi_message_voice_answer_call_output_get_result ()

+
gboolean
+qmi_message_voice_answer_call_output_get_result
+                               (QmiMessageVoiceAnswerCallOutput *self,
+                                GError **error);
+

Get the result of the QMI operation.

+
+

Parameters

+
+++++ + + + + + + + + + + + + +

self

a QmiMessageVoiceAnswerCallOutput.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the QMI operation succeeded, FALSE if error +is set.

+
+

Since: 1.14

+
+
+
+

qmi_client_voice_answer_call ()

+
void
+qmi_client_voice_answer_call (QmiClientVoice *self,
+                              QmiMessageVoiceAnswerCallInput *input,
+                              guint timeout,
+                              GCancellable *cancellable,
+                              GAsyncReadyCallback callback,
+                              gpointer user_data);
+

Asynchronously sends a Answer Call request to the device.

+

When the operation is finished, callback + will be invoked in the thread-default main loop of the thread you are calling this method from.

+

You can then call qmi_client_voice_answer_call_finish() to get the result of the operation.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

self

a QmiClientVoice.

 

input

a QmiMessageVoiceAnswerCallInput.

 

timeout

maximum time to wait for the method to complete, in seconds.

 

cancellable

a GCancellable or NULL.

 

callback

a GAsyncReadyCallback to call when the request is satisfied.

 

user_data

user data to pass to callback +.

 
+
+

Since: 1.14

+
+
+
+

qmi_client_voice_answer_call_finish ()

+
QmiMessageVoiceAnswerCallOutput *
+qmi_client_voice_answer_call_finish (QmiClientVoice *self,
+                                     GAsyncResult *res,
+                                     GError **error);
+

Finishes an async operation started with qmi_client_voice_answer_call().

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiClientVoice.

 

res

the GAsyncResult obtained from the GAsyncReadyCallback passed to qmi_client_voice_answer_call().

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

a QmiMessageVoiceAnswerCallOutput, or NULL if error +is set. The returned value should be freed with qmi_message_voice_answer_call_output_unref().

+
+

Since: 1.14

+
+
+
+

Types and Values

+
+

QmiMessageVoiceAnswerCallInput

+
typedef struct _QmiMessageVoiceAnswerCallInput QmiMessageVoiceAnswerCallInput;
+

The QmiMessageVoiceAnswerCallInput structure contains private data and should only be accessed +using the provided API.

+

Since: 1.14

+
+
+
+

QmiMessageVoiceAnswerCallOutput

+
typedef struct _QmiMessageVoiceAnswerCallOutput QmiMessageVoiceAnswerCallOutput;
+

The QmiMessageVoiceAnswerCallOutput structure contains private data and should only be accessed +using the provided API.

+

Since: 1.14

+
+
+
+ + + \ No newline at end of file diff -Nru libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-VOICE-Dial-Call.html libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-VOICE-Dial-Call.html --- libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-VOICE-Dial-Call.html 2017-03-22 12:28:29.000000000 +0100 +++ libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-VOICE-Dial-Call.html 1970-01-01 01:00:00.000000000 +0100 @@ -1,579 +0,0 @@ - - - - -VOICE Dial Call: libqmi-glib Reference Manual - - - - - - - - - - - - - - - - -
-
-
- - -
-

VOICE Dial Call

-

VOICE Dial Call

-
- -
-

Types and Values

- -
-
-

Object Hierarchy

-
    GBoxed
-    ├── QmiMessageVoiceDialCallInput
-    ╰── QmiMessageVoiceDialCallOutput
-
-
-
-

Description

-
-
-

Functions

-
-

qmi_message_voice_dial_call_input_new ()

-
QmiMessageVoiceDialCallInput *
-qmi_message_voice_dial_call_input_new (void);
-

Allocates a new QmiMessageVoiceDialCallInput.

-
-

Returns

-

the newly created QmiMessageVoiceDialCallInput. The returned value should be freed with qmi_message_voice_dial_call_input_unref().

-
-

Since: 1.14

-
-
-
-

qmi_message_voice_dial_call_input_ref ()

-
QmiMessageVoiceDialCallInput *
-qmi_message_voice_dial_call_input_ref (QmiMessageVoiceDialCallInput *self);
-

Atomically increments the reference count of self - by one.

-
-

Parameters

-
----- - - - - - -

self

a QmiMessageVoiceDialCallInput.

 
-
-
-

Returns

-

the new reference to self -.

-
-

Since: 1.14

-
-
-
-

qmi_message_voice_dial_call_input_unref ()

-
void
-qmi_message_voice_dial_call_input_unref
-                               (QmiMessageVoiceDialCallInput *self);
-

Atomically decrements the reference count of self - by one. -If the reference count drops to 0, self - is completely disposed.

-
-

Parameters

-
----- - - - - - -

self

a QmiMessageVoiceDialCallInput.

 
-
-

Since: 1.14

-
-
-
-

qmi_message_voice_dial_call_input_get_calling_number ()

-
gboolean
-qmi_message_voice_dial_call_input_get_calling_number
-                               (QmiMessageVoiceDialCallInput *self,
-                                const gchar **value_calling_number,
-                                GError **error);
-

Get the 'Calling Number' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessageVoiceDialCallInput.

 

value_calling_number

a placeholder for the output constant string, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.14

-
-
-
-

qmi_message_voice_dial_call_input_set_calling_number ()

-
gboolean
-qmi_message_voice_dial_call_input_set_calling_number
-                               (QmiMessageVoiceDialCallInput *self,
-                                const gchar *value_calling_number,
-                                GError **error);
-

Set the 'Calling Number' field in the message.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessageVoiceDialCallInput.

 

value_calling_number

a constant string.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if value -was successfully set, FALSE otherwise.

-
-

Since: 1.14

-
-
-
-

qmi_message_voice_dial_call_output_ref ()

-
QmiMessageVoiceDialCallOutput *
-qmi_message_voice_dial_call_output_ref
-                               (QmiMessageVoiceDialCallOutput *self);
-

Atomically increments the reference count of self - by one.

-
-

Parameters

-
----- - - - - - -

self

a QmiMessageVoiceDialCallOutput.

 
-
-
-

Returns

-

the new reference to self -.

-
-

Since: 1.14

-
-
-
-

qmi_message_voice_dial_call_output_unref ()

-
void
-qmi_message_voice_dial_call_output_unref
-                               (QmiMessageVoiceDialCallOutput *self);
-

Atomically decrements the reference count of self - by one. -If the reference count drops to 0, self - is completely disposed.

-
-

Parameters

-
----- - - - - - -

self

a QmiMessageVoiceDialCallOutput.

 
-
-

Since: 1.14

-
-
-
-

qmi_message_voice_dial_call_output_get_call_id ()

-
gboolean
-qmi_message_voice_dial_call_output_get_call_id
-                               (QmiMessageVoiceDialCallOutput *self,
-                                guint8 *value_call_id,
-                                GError **error);
-

Get the 'Call ID' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessageVoiceDialCallOutput.

 

value_call_id

a placeholder for the output guint8, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.14

-
-
-
-

qmi_message_voice_dial_call_output_get_result ()

-
gboolean
-qmi_message_voice_dial_call_output_get_result
-                               (QmiMessageVoiceDialCallOutput *self,
-                                GError **error);
-

Get the result of the QMI operation.

-
-

Parameters

-
----- - - - - - - - - - - - - -

self

a QmiMessageVoiceDialCallOutput.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the QMI operation succeeded, FALSE if error -is set.

-
-

Since: 1.14

-
-
-
-

qmi_client_voice_dial_call ()

-
void
-qmi_client_voice_dial_call (QmiClientVoice *self,
-                            QmiMessageVoiceDialCallInput *input,
-                            guint timeout,
-                            GCancellable *cancellable,
-                            GAsyncReadyCallback callback,
-                            gpointer user_data);
-

Asynchronously sends a Dial Call request to the device.

-

When the operation is finished, callback - will be invoked in the thread-default main loop of the thread you are calling this method from.

-

You can then call qmi_client_voice_dial_call_finish() to get the result of the operation.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

self

a QmiClientVoice.

 

input

a QmiMessageVoiceDialCallInput.

 

timeout

maximum time to wait for the method to complete, in seconds.

 

cancellable

a GCancellable or NULL.

 

callback

a GAsyncReadyCallback to call when the request is satisfied.

 

user_data

user data to pass to callback -.

 
-
-

Since: 1.14

-
-
-
-

qmi_client_voice_dial_call_finish ()

-
QmiMessageVoiceDialCallOutput *
-qmi_client_voice_dial_call_finish (QmiClientVoice *self,
-                                   GAsyncResult *res,
-                                   GError **error);
-

Finishes an async operation started with qmi_client_voice_dial_call().

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiClientVoice.

 

res

the GAsyncResult obtained from the GAsyncReadyCallback passed to qmi_client_voice_dial_call().

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

a QmiMessageVoiceDialCallOutput, or NULL if error -is set. The returned value should be freed with qmi_message_voice_dial_call_output_unref().

-
-

Since: 1.14

-
-
-
-

Types and Values

-
-

QmiMessageVoiceDialCallInput

-
typedef struct _QmiMessageVoiceDialCallInput QmiMessageVoiceDialCallInput;
-

The QmiMessageVoiceDialCallInput structure contains private data and should only be accessed -using the provided API.

-

Since: 1.14

-
-
-
-

QmiMessageVoiceDialCallOutput

-
typedef struct _QmiMessageVoiceDialCallOutput QmiMessageVoiceDialCallOutput;
-

The QmiMessageVoiceDialCallOutput structure contains private data and should only be accessed -using the provided API.

-

Since: 1.14

-
-
-
- - - \ No newline at end of file diff -Nru libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-VOICE-Dial-Call-request.html libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-VOICE-Dial-Call-request.html --- libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-VOICE-Dial-Call-request.html 1970-01-01 01:00:00.000000000 +0100 +++ libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-VOICE-Dial-Call-request.html 2019-01-08 15:19:02.000000000 +0100 @@ -0,0 +1,579 @@ + + + + +VOICE Dial Call request: libqmi-glib Reference Manual + + + + + + + + + + + + + + + + +
+
+
+ + +
+

VOICE Dial Call request

+

VOICE Dial Call request

+
+ +
+

Types and Values

+ +
+
+

Object Hierarchy

+
    GBoxed
+    ├── QmiMessageVoiceDialCallInput
+    ╰── QmiMessageVoiceDialCallOutput
+
+
+
+

Description

+
+
+

Functions

+
+

qmi_message_voice_dial_call_input_new ()

+
QmiMessageVoiceDialCallInput *
+qmi_message_voice_dial_call_input_new (void);
+

Allocates a new QmiMessageVoiceDialCallInput.

+
+

Returns

+

the newly created QmiMessageVoiceDialCallInput. The returned value should be freed with qmi_message_voice_dial_call_input_unref().

+
+

Since: 1.14

+
+
+
+

qmi_message_voice_dial_call_input_ref ()

+
QmiMessageVoiceDialCallInput *
+qmi_message_voice_dial_call_input_ref (QmiMessageVoiceDialCallInput *self);
+

Atomically increments the reference count of self + by one.

+
+

Parameters

+
+++++ + + + + + +

self

a QmiMessageVoiceDialCallInput.

 
+
+
+

Returns

+

the new reference to self +.

+
+

Since: 1.14

+
+
+
+

qmi_message_voice_dial_call_input_unref ()

+
void
+qmi_message_voice_dial_call_input_unref
+                               (QmiMessageVoiceDialCallInput *self);
+

Atomically decrements the reference count of self + by one. +If the reference count drops to 0, self + is completely disposed.

+
+

Parameters

+
+++++ + + + + + +

self

a QmiMessageVoiceDialCallInput.

 
+
+

Since: 1.14

+
+
+
+

qmi_message_voice_dial_call_input_get_calling_number ()

+
gboolean
+qmi_message_voice_dial_call_input_get_calling_number
+                               (QmiMessageVoiceDialCallInput *self,
+                                const gchar **value_calling_number,
+                                GError **error);
+

Get the 'Calling Number' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageVoiceDialCallInput.

 

value_calling_number

a placeholder for the output constant string, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.14

+
+
+
+

qmi_message_voice_dial_call_input_set_calling_number ()

+
gboolean
+qmi_message_voice_dial_call_input_set_calling_number
+                               (QmiMessageVoiceDialCallInput *self,
+                                const gchar *value_calling_number,
+                                GError **error);
+

Set the 'Calling Number' field in the message.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageVoiceDialCallInput.

 

value_calling_number

a constant string.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if value +was successfully set, FALSE otherwise.

+
+

Since: 1.14

+
+
+
+

qmi_message_voice_dial_call_output_ref ()

+
QmiMessageVoiceDialCallOutput *
+qmi_message_voice_dial_call_output_ref
+                               (QmiMessageVoiceDialCallOutput *self);
+

Atomically increments the reference count of self + by one.

+
+

Parameters

+
+++++ + + + + + +

self

a QmiMessageVoiceDialCallOutput.

 
+
+
+

Returns

+

the new reference to self +.

+
+

Since: 1.14

+
+
+
+

qmi_message_voice_dial_call_output_unref ()

+
void
+qmi_message_voice_dial_call_output_unref
+                               (QmiMessageVoiceDialCallOutput *self);
+

Atomically decrements the reference count of self + by one. +If the reference count drops to 0, self + is completely disposed.

+
+

Parameters

+
+++++ + + + + + +

self

a QmiMessageVoiceDialCallOutput.

 
+
+

Since: 1.14

+
+
+
+

qmi_message_voice_dial_call_output_get_call_id ()

+
gboolean
+qmi_message_voice_dial_call_output_get_call_id
+                               (QmiMessageVoiceDialCallOutput *self,
+                                guint8 *value_call_id,
+                                GError **error);
+

Get the 'Call ID' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageVoiceDialCallOutput.

 

value_call_id

a placeholder for the output guint8, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.14

+
+
+
+

qmi_message_voice_dial_call_output_get_result ()

+
gboolean
+qmi_message_voice_dial_call_output_get_result
+                               (QmiMessageVoiceDialCallOutput *self,
+                                GError **error);
+

Get the result of the QMI operation.

+
+

Parameters

+
+++++ + + + + + + + + + + + + +

self

a QmiMessageVoiceDialCallOutput.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the QMI operation succeeded, FALSE if error +is set.

+
+

Since: 1.14

+
+
+
+

qmi_client_voice_dial_call ()

+
void
+qmi_client_voice_dial_call (QmiClientVoice *self,
+                            QmiMessageVoiceDialCallInput *input,
+                            guint timeout,
+                            GCancellable *cancellable,
+                            GAsyncReadyCallback callback,
+                            gpointer user_data);
+

Asynchronously sends a Dial Call request to the device.

+

When the operation is finished, callback + will be invoked in the thread-default main loop of the thread you are calling this method from.

+

You can then call qmi_client_voice_dial_call_finish() to get the result of the operation.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

self

a QmiClientVoice.

 

input

a QmiMessageVoiceDialCallInput.

 

timeout

maximum time to wait for the method to complete, in seconds.

 

cancellable

a GCancellable or NULL.

 

callback

a GAsyncReadyCallback to call when the request is satisfied.

 

user_data

user data to pass to callback +.

 
+
+

Since: 1.14

+
+
+
+

qmi_client_voice_dial_call_finish ()

+
QmiMessageVoiceDialCallOutput *
+qmi_client_voice_dial_call_finish (QmiClientVoice *self,
+                                   GAsyncResult *res,
+                                   GError **error);
+

Finishes an async operation started with qmi_client_voice_dial_call().

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiClientVoice.

 

res

the GAsyncResult obtained from the GAsyncReadyCallback passed to qmi_client_voice_dial_call().

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

a QmiMessageVoiceDialCallOutput, or NULL if error +is set. The returned value should be freed with qmi_message_voice_dial_call_output_unref().

+
+

Since: 1.14

+
+
+
+

Types and Values

+
+

QmiMessageVoiceDialCallInput

+
typedef struct _QmiMessageVoiceDialCallInput QmiMessageVoiceDialCallInput;
+

The QmiMessageVoiceDialCallInput structure contains private data and should only be accessed +using the provided API.

+

Since: 1.14

+
+
+
+

QmiMessageVoiceDialCallOutput

+
typedef struct _QmiMessageVoiceDialCallOutput QmiMessageVoiceDialCallOutput;
+

The QmiMessageVoiceDialCallOutput structure contains private data and should only be accessed +using the provided API.

+

Since: 1.14

+
+
+
+ + + \ No newline at end of file diff -Nru libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-VOICE-End-Call.html libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-VOICE-End-Call.html --- libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-VOICE-End-Call.html 2017-03-22 12:28:29.000000000 +0100 +++ libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-VOICE-End-Call.html 1970-01-01 01:00:00.000000000 +0100 @@ -1,578 +0,0 @@ - - - - -VOICE End Call: libqmi-glib Reference Manual - - - - - - - - - - - - - - - - -
-
-
- - -
-

VOICE End Call

-

VOICE End Call

-
- -
-

Types and Values

- -
-
-

Object Hierarchy

-
    GBoxed
-    ├── QmiMessageVoiceEndCallInput
-    ╰── QmiMessageVoiceEndCallOutput
-
-
-
-

Description

-
-
-

Functions

-
-

qmi_message_voice_end_call_input_new ()

-
QmiMessageVoiceEndCallInput *
-qmi_message_voice_end_call_input_new (void);
-

Allocates a new QmiMessageVoiceEndCallInput.

-
-

Returns

-

the newly created QmiMessageVoiceEndCallInput. The returned value should be freed with qmi_message_voice_end_call_input_unref().

-
-

Since: 1.14

-
-
-
-

qmi_message_voice_end_call_input_ref ()

-
QmiMessageVoiceEndCallInput *
-qmi_message_voice_end_call_input_ref (QmiMessageVoiceEndCallInput *self);
-

Atomically increments the reference count of self - by one.

-
-

Parameters

-
----- - - - - - -

self

a QmiMessageVoiceEndCallInput.

 
-
-
-

Returns

-

the new reference to self -.

-
-

Since: 1.14

-
-
-
-

qmi_message_voice_end_call_input_unref ()

-
void
-qmi_message_voice_end_call_input_unref
-                               (QmiMessageVoiceEndCallInput *self);
-

Atomically decrements the reference count of self - by one. -If the reference count drops to 0, self - is completely disposed.

-
-

Parameters

-
----- - - - - - -

self

a QmiMessageVoiceEndCallInput.

 
-
-

Since: 1.14

-
-
-
-

qmi_message_voice_end_call_input_get_call_id ()

-
gboolean
-qmi_message_voice_end_call_input_get_call_id
-                               (QmiMessageVoiceEndCallInput *self,
-                                guint8 *value_call_id,
-                                GError **error);
-

Get the 'Call ID' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessageVoiceEndCallInput.

 

value_call_id

a placeholder for the output guint8, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.14

-
-
-
-

qmi_message_voice_end_call_input_set_call_id ()

-
gboolean
-qmi_message_voice_end_call_input_set_call_id
-                               (QmiMessageVoiceEndCallInput *self,
-                                guint8 value_call_id,
-                                GError **error);
-

Set the 'Call ID' field in the message.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessageVoiceEndCallInput.

 

value_call_id

a guint8.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if value -was successfully set, FALSE otherwise.

-
-

Since: 1.14

-
-
-
-

qmi_message_voice_end_call_output_ref ()

-
QmiMessageVoiceEndCallOutput *
-qmi_message_voice_end_call_output_ref (QmiMessageVoiceEndCallOutput *self);
-

Atomically increments the reference count of self - by one.

-
-

Parameters

-
----- - - - - - -

self

a QmiMessageVoiceEndCallOutput.

 
-
-
-

Returns

-

the new reference to self -.

-
-

Since: 1.14

-
-
-
-

qmi_message_voice_end_call_output_unref ()

-
void
-qmi_message_voice_end_call_output_unref
-                               (QmiMessageVoiceEndCallOutput *self);
-

Atomically decrements the reference count of self - by one. -If the reference count drops to 0, self - is completely disposed.

-
-

Parameters

-
----- - - - - - -

self

a QmiMessageVoiceEndCallOutput.

 
-
-

Since: 1.14

-
-
-
-

qmi_message_voice_end_call_output_get_call_id ()

-
gboolean
-qmi_message_voice_end_call_output_get_call_id
-                               (QmiMessageVoiceEndCallOutput *self,
-                                guint8 *value_call_id,
-                                GError **error);
-

Get the 'Call ID' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessageVoiceEndCallOutput.

 

value_call_id

a placeholder for the output guint8, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.14

-
-
-
-

qmi_message_voice_end_call_output_get_result ()

-
gboolean
-qmi_message_voice_end_call_output_get_result
-                               (QmiMessageVoiceEndCallOutput *self,
-                                GError **error);
-

Get the result of the QMI operation.

-
-

Parameters

-
----- - - - - - - - - - - - - -

self

a QmiMessageVoiceEndCallOutput.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the QMI operation succeeded, FALSE if error -is set.

-
-

Since: 1.14

-
-
-
-

qmi_client_voice_end_call ()

-
void
-qmi_client_voice_end_call (QmiClientVoice *self,
-                           QmiMessageVoiceEndCallInput *input,
-                           guint timeout,
-                           GCancellable *cancellable,
-                           GAsyncReadyCallback callback,
-                           gpointer user_data);
-

Asynchronously sends a End Call request to the device.

-

When the operation is finished, callback - will be invoked in the thread-default main loop of the thread you are calling this method from.

-

You can then call qmi_client_voice_end_call_finish() to get the result of the operation.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

self

a QmiClientVoice.

 

input

a QmiMessageVoiceEndCallInput.

 

timeout

maximum time to wait for the method to complete, in seconds.

 

cancellable

a GCancellable or NULL.

 

callback

a GAsyncReadyCallback to call when the request is satisfied.

 

user_data

user data to pass to callback -.

 
-
-

Since: 1.14

-
-
-
-

qmi_client_voice_end_call_finish ()

-
QmiMessageVoiceEndCallOutput *
-qmi_client_voice_end_call_finish (QmiClientVoice *self,
-                                  GAsyncResult *res,
-                                  GError **error);
-

Finishes an async operation started with qmi_client_voice_end_call().

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiClientVoice.

 

res

the GAsyncResult obtained from the GAsyncReadyCallback passed to qmi_client_voice_end_call().

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

a QmiMessageVoiceEndCallOutput, or NULL if error -is set. The returned value should be freed with qmi_message_voice_end_call_output_unref().

-
-

Since: 1.14

-
-
-
-

Types and Values

-
-

QmiMessageVoiceEndCallInput

-
typedef struct _QmiMessageVoiceEndCallInput QmiMessageVoiceEndCallInput;
-

The QmiMessageVoiceEndCallInput structure contains private data and should only be accessed -using the provided API.

-

Since: 1.14

-
-
-
-

QmiMessageVoiceEndCallOutput

-
typedef struct _QmiMessageVoiceEndCallOutput QmiMessageVoiceEndCallOutput;
-

The QmiMessageVoiceEndCallOutput structure contains private data and should only be accessed -using the provided API.

-

Since: 1.14

-
-
-
- - - \ No newline at end of file diff -Nru libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-VOICE-End-Call-request.html libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-VOICE-End-Call-request.html --- libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-VOICE-End-Call-request.html 1970-01-01 01:00:00.000000000 +0100 +++ libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-VOICE-End-Call-request.html 2019-01-08 15:19:02.000000000 +0100 @@ -0,0 +1,578 @@ + + + + +VOICE End Call request: libqmi-glib Reference Manual + + + + + + + + + + + + + + + + +
+
+
+ + +
+

VOICE End Call request

+

VOICE End Call request

+
+ +
+

Types and Values

+ +
+
+

Object Hierarchy

+
    GBoxed
+    ├── QmiMessageVoiceEndCallInput
+    ╰── QmiMessageVoiceEndCallOutput
+
+
+
+

Description

+
+
+

Functions

+
+

qmi_message_voice_end_call_input_new ()

+
QmiMessageVoiceEndCallInput *
+qmi_message_voice_end_call_input_new (void);
+

Allocates a new QmiMessageVoiceEndCallInput.

+
+

Returns

+

the newly created QmiMessageVoiceEndCallInput. The returned value should be freed with qmi_message_voice_end_call_input_unref().

+
+

Since: 1.14

+
+
+
+

qmi_message_voice_end_call_input_ref ()

+
QmiMessageVoiceEndCallInput *
+qmi_message_voice_end_call_input_ref (QmiMessageVoiceEndCallInput *self);
+

Atomically increments the reference count of self + by one.

+
+

Parameters

+
+++++ + + + + + +

self

a QmiMessageVoiceEndCallInput.

 
+
+
+

Returns

+

the new reference to self +.

+
+

Since: 1.14

+
+
+
+

qmi_message_voice_end_call_input_unref ()

+
void
+qmi_message_voice_end_call_input_unref
+                               (QmiMessageVoiceEndCallInput *self);
+

Atomically decrements the reference count of self + by one. +If the reference count drops to 0, self + is completely disposed.

+
+

Parameters

+
+++++ + + + + + +

self

a QmiMessageVoiceEndCallInput.

 
+
+

Since: 1.14

+
+
+
+

qmi_message_voice_end_call_input_get_call_id ()

+
gboolean
+qmi_message_voice_end_call_input_get_call_id
+                               (QmiMessageVoiceEndCallInput *self,
+                                guint8 *value_call_id,
+                                GError **error);
+

Get the 'Call ID' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageVoiceEndCallInput.

 

value_call_id

a placeholder for the output guint8, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.14

+
+
+
+

qmi_message_voice_end_call_input_set_call_id ()

+
gboolean
+qmi_message_voice_end_call_input_set_call_id
+                               (QmiMessageVoiceEndCallInput *self,
+                                guint8 value_call_id,
+                                GError **error);
+

Set the 'Call ID' field in the message.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageVoiceEndCallInput.

 

value_call_id

a guint8.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if value +was successfully set, FALSE otherwise.

+
+

Since: 1.14

+
+
+
+

qmi_message_voice_end_call_output_ref ()

+
QmiMessageVoiceEndCallOutput *
+qmi_message_voice_end_call_output_ref (QmiMessageVoiceEndCallOutput *self);
+

Atomically increments the reference count of self + by one.

+
+

Parameters

+
+++++ + + + + + +

self

a QmiMessageVoiceEndCallOutput.

 
+
+
+

Returns

+

the new reference to self +.

+
+

Since: 1.14

+
+
+
+

qmi_message_voice_end_call_output_unref ()

+
void
+qmi_message_voice_end_call_output_unref
+                               (QmiMessageVoiceEndCallOutput *self);
+

Atomically decrements the reference count of self + by one. +If the reference count drops to 0, self + is completely disposed.

+
+

Parameters

+
+++++ + + + + + +

self

a QmiMessageVoiceEndCallOutput.

 
+
+

Since: 1.14

+
+
+
+

qmi_message_voice_end_call_output_get_call_id ()

+
gboolean
+qmi_message_voice_end_call_output_get_call_id
+                               (QmiMessageVoiceEndCallOutput *self,
+                                guint8 *value_call_id,
+                                GError **error);
+

Get the 'Call ID' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageVoiceEndCallOutput.

 

value_call_id

a placeholder for the output guint8, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.14

+
+
+
+

qmi_message_voice_end_call_output_get_result ()

+
gboolean
+qmi_message_voice_end_call_output_get_result
+                               (QmiMessageVoiceEndCallOutput *self,
+                                GError **error);
+

Get the result of the QMI operation.

+
+

Parameters

+
+++++ + + + + + + + + + + + + +

self

a QmiMessageVoiceEndCallOutput.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the QMI operation succeeded, FALSE if error +is set.

+
+

Since: 1.14

+
+
+
+

qmi_client_voice_end_call ()

+
void
+qmi_client_voice_end_call (QmiClientVoice *self,
+                           QmiMessageVoiceEndCallInput *input,
+                           guint timeout,
+                           GCancellable *cancellable,
+                           GAsyncReadyCallback callback,
+                           gpointer user_data);
+

Asynchronously sends a End Call request to the device.

+

When the operation is finished, callback + will be invoked in the thread-default main loop of the thread you are calling this method from.

+

You can then call qmi_client_voice_end_call_finish() to get the result of the operation.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

self

a QmiClientVoice.

 

input

a QmiMessageVoiceEndCallInput.

 

timeout

maximum time to wait for the method to complete, in seconds.

 

cancellable

a GCancellable or NULL.

 

callback

a GAsyncReadyCallback to call when the request is satisfied.

 

user_data

user data to pass to callback +.

 
+
+

Since: 1.14

+
+
+
+

qmi_client_voice_end_call_finish ()

+
QmiMessageVoiceEndCallOutput *
+qmi_client_voice_end_call_finish (QmiClientVoice *self,
+                                  GAsyncResult *res,
+                                  GError **error);
+

Finishes an async operation started with qmi_client_voice_end_call().

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiClientVoice.

 

res

the GAsyncResult obtained from the GAsyncReadyCallback passed to qmi_client_voice_end_call().

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

a QmiMessageVoiceEndCallOutput, or NULL if error +is set. The returned value should be freed with qmi_message_voice_end_call_output_unref().

+
+

Since: 1.14

+
+
+
+

Types and Values

+
+

QmiMessageVoiceEndCallInput

+
typedef struct _QmiMessageVoiceEndCallInput QmiMessageVoiceEndCallInput;
+

The QmiMessageVoiceEndCallInput structure contains private data and should only be accessed +using the provided API.

+

Since: 1.14

+
+
+
+

QmiMessageVoiceEndCallOutput

+
typedef struct _QmiMessageVoiceEndCallOutput QmiMessageVoiceEndCallOutput;
+

The QmiMessageVoiceEndCallOutput structure contains private data and should only be accessed +using the provided API.

+

Since: 1.14

+
+
+
+ + + \ No newline at end of file diff -Nru libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-VOICE-enumerations-and-flags.html libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-VOICE-enumerations-and-flags.html --- libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-VOICE-enumerations-and-flags.html 2017-03-22 12:28:29.000000000 +0100 +++ libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-VOICE-enumerations-and-flags.html 2019-01-08 15:19:02.000000000 +0100 @@ -3,12 +3,12 @@ VOICE enumerations and flags: libqmi-glib Reference Manual - + - - + + @@ -21,7 +21,7 @@ Home Up Prev -Next +Next
@@ -178,7 +178,7 @@

Object Hierarchy

-
    GEnum
+
    GEnum
     ├── QmiVoiceAls
     ├── QmiVoiceCallDirection
     ├── QmiVoiceCallMode
@@ -189,7 +189,7 @@
     ├── QmiVoicePrivacy
     ├── QmiVoiceServiceOption
     ╰── QmiVoiceTtyMode
-    GFlags
+    GFlags
     ╰── QmiVoiceWcdmaAmrStatus
 
@@ -223,7 +223,7 @@

Returns

-

a string with the nickname, or NULL if not found. Do not free the returned value.

+

a string with the nickname, or NULL if not found. Do not free the returned value.

[transfer none]

Since: 1.14

@@ -252,7 +252,7 @@

Returns

-

a string with the nickname, or NULL if not found. Do not free the returned value.

+

a string with the nickname, or NULL if not found. Do not free the returned value.

[transfer none]

Since: 1.14

@@ -281,7 +281,7 @@

Returns

-

a string with the nickname, or NULL if not found. Do not free the returned value.

+

a string with the nickname, or NULL if not found. Do not free the returned value.

[transfer none]

Since: 1.14

@@ -310,7 +310,7 @@

Returns

-

a string with the nickname, or NULL if not found. Do not free the returned value.

+

a string with the nickname, or NULL if not found. Do not free the returned value.

[transfer none]

Since: 1.14

@@ -339,7 +339,7 @@

Returns

-

a string with the nickname, or NULL if not found. Do not free the returned value.

+

a string with the nickname, or NULL if not found. Do not free the returned value.

[transfer none]

Since: 1.14

@@ -368,7 +368,7 @@

Returns

-

a string with the nickname, or NULL if not found. Do not free the returned value.

+

a string with the nickname, or NULL if not found. Do not free the returned value.

[transfer none]

Since: 1.14

@@ -397,7 +397,7 @@

Returns

-

a string with the nickname, or NULL if not found. Do not free the returned value.

+

a string with the nickname, or NULL if not found. Do not free the returned value.

[transfer none]

Since: 1.14

@@ -426,7 +426,7 @@

Returns

-

a string with the nickname, or NULL if not found. Do not free the returned value.

+

a string with the nickname, or NULL if not found. Do not free the returned value.

[transfer none]

Since: 1.14

@@ -455,7 +455,7 @@

Returns

-

a string with the nickname, or NULL if not found. Do not free the returned value.

+

a string with the nickname, or NULL if not found. Do not free the returned value.

[transfer none]

Since: 1.14

@@ -484,7 +484,7 @@

Returns

-

a string with the nickname, or NULL if not found. Do not free the returned value.

+

a string with the nickname, or NULL if not found. Do not free the returned value.

[transfer none]

Since: 1.14

@@ -515,7 +515,7 @@

Returns

-

a string with the list of nicknames, or NULL if none given. The returned value should be freed with g_free().

+

a string with the list of nicknames, or NULL if none given. The returned value should be freed with g_free().

[transfer full]

Since: 1.14

@@ -1115,6 +1115,6 @@ +
Generated by GTK-Doc V1.29 \ No newline at end of file diff -Nru libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-VOICE-Get-Config.html libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-VOICE-Get-Config.html --- libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-VOICE-Get-Config.html 2017-03-22 12:28:29.000000000 +0100 +++ libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-VOICE-Get-Config.html 1970-01-01 01:00:00.000000000 +0100 @@ -1,1796 +0,0 @@ - - - - -VOICE Get Config: libqmi-glib Reference Manual - - - - - - - - - - - - - - - - -
-
-
- - -
-

VOICE Get Config

-

VOICE Get Config

-
-
-

Functions

-
---- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
-QmiMessageVoiceGetConfigInput * - -qmi_message_voice_get_config_input_new () -
-QmiMessageVoiceGetConfigInput * - -qmi_message_voice_get_config_input_ref () -
-void - -qmi_message_voice_get_config_input_unref () -
-gboolean - -qmi_message_voice_get_config_input_get_voice_domain_preference () -
-gboolean - -qmi_message_voice_get_config_input_set_voice_domain_preference () -
-gboolean - -qmi_message_voice_get_config_input_get_nam_index () -
-gboolean - -qmi_message_voice_get_config_input_set_nam_index () -
-gboolean - -qmi_message_voice_get_config_input_get_preferred_voice_privacy () -
-gboolean - -qmi_message_voice_get_config_input_set_preferred_voice_privacy () -
-gboolean - -qmi_message_voice_get_config_input_get_amr_status () -
-gboolean - -qmi_message_voice_get_config_input_set_amr_status () -
-gboolean - -qmi_message_voice_get_config_input_get_preferred_voice_service_option () -
-gboolean - -qmi_message_voice_get_config_input_set_preferred_voice_service_option () -
-gboolean - -qmi_message_voice_get_config_input_get_tty_mode () -
-gboolean - -qmi_message_voice_get_config_input_set_tty_mode () -
-gboolean - -qmi_message_voice_get_config_input_get_roam_timer () -
-gboolean - -qmi_message_voice_get_config_input_set_roam_timer () -
-gboolean - -qmi_message_voice_get_config_input_get_air_timer () -
-gboolean - -qmi_message_voice_get_config_input_set_air_timer () -
-gboolean - -qmi_message_voice_get_config_input_get_auto_answer () -
-gboolean - -qmi_message_voice_get_config_input_set_auto_answer () -
-QmiMessageVoiceGetConfigOutput * - -qmi_message_voice_get_config_output_ref () -
-void - -qmi_message_voice_get_config_output_unref () -
-gboolean - -qmi_message_voice_get_config_output_get_current_voice_domain_preference () -
-gboolean - -qmi_message_voice_get_config_output_get_current_voice_privacy_preference () -
-gboolean - -qmi_message_voice_get_config_output_get_current_amr_status () -
-gboolean - -qmi_message_voice_get_config_output_get_current_preferred_voice_so () -
-gboolean - -qmi_message_voice_get_config_output_get_current_tty_mode () -
-gboolean - -qmi_message_voice_get_config_output_get_roam_timer_count () -
-gboolean - -qmi_message_voice_get_config_output_get_air_timer_count () -
-gboolean - -qmi_message_voice_get_config_output_get_auto_answer_status () -
-gboolean - -qmi_message_voice_get_config_output_get_result () -
-void - -qmi_client_voice_get_config () -
-QmiMessageVoiceGetConfigOutput * - -qmi_client_voice_get_config_finish () -
-
-
-

Types and Values

- -
-
-

Object Hierarchy

-
    GBoxed
-    ├── QmiMessageVoiceGetConfigInput
-    ╰── QmiMessageVoiceGetConfigOutput
-
-
-
-

Description

-
-
-

Functions

-
-

qmi_message_voice_get_config_input_new ()

-
QmiMessageVoiceGetConfigInput *
-qmi_message_voice_get_config_input_new
-                               (void);
-

Allocates a new QmiMessageVoiceGetConfigInput.

-
-

Returns

-

the newly created QmiMessageVoiceGetConfigInput. The returned value should be freed with qmi_message_voice_get_config_input_unref().

-
-

Since: 1.14

-
-
-
-

qmi_message_voice_get_config_input_ref ()

-
QmiMessageVoiceGetConfigInput *
-qmi_message_voice_get_config_input_ref
-                               (QmiMessageVoiceGetConfigInput *self);
-

Atomically increments the reference count of self - by one.

-
-

Parameters

-
----- - - - - - -

self

a QmiMessageVoiceGetConfigInput.

 
-
-
-

Returns

-

the new reference to self -.

-
-

Since: 1.14

-
-
-
-

qmi_message_voice_get_config_input_unref ()

-
void
-qmi_message_voice_get_config_input_unref
-                               (QmiMessageVoiceGetConfigInput *self);
-

Atomically decrements the reference count of self - by one. -If the reference count drops to 0, self - is completely disposed.

-
-

Parameters

-
----- - - - - - -

self

a QmiMessageVoiceGetConfigInput.

 
-
-

Since: 1.14

-
-
-
-

qmi_message_voice_get_config_input_get_voice_domain_preference ()

-
gboolean
-qmi_message_voice_get_config_input_get_voice_domain_preference
-                               (QmiMessageVoiceGetConfigInput *self,
-                                gboolean *value_voice_domain_preference,
-                                GError **error);
-

Get the 'Voice Domain Preference' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessageVoiceGetConfigInput.

 

value_voice_domain_preference

a placeholder for the output gboolean, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.14

-
-
-
-

qmi_message_voice_get_config_input_set_voice_domain_preference ()

-
gboolean
-qmi_message_voice_get_config_input_set_voice_domain_preference
-                               (QmiMessageVoiceGetConfigInput *self,
-                                gboolean value_voice_domain_preference,
-                                GError **error);
-

Set the 'Voice Domain Preference' field in the message.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessageVoiceGetConfigInput.

 

value_voice_domain_preference

a gboolean.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if value -was successfully set, FALSE otherwise.

-
-

Since: 1.14

-
-
-
-

qmi_message_voice_get_config_input_get_nam_index ()

-
gboolean
-qmi_message_voice_get_config_input_get_nam_index
-                               (QmiMessageVoiceGetConfigInput *self,
-                                gboolean *value_nam_index,
-                                GError **error);
-

Get the 'NAM Index' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessageVoiceGetConfigInput.

 

value_nam_index

a placeholder for the output gboolean, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.14

-
-
-
-

qmi_message_voice_get_config_input_set_nam_index ()

-
gboolean
-qmi_message_voice_get_config_input_set_nam_index
-                               (QmiMessageVoiceGetConfigInput *self,
-                                gboolean value_nam_index,
-                                GError **error);
-

Set the 'NAM Index' field in the message.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessageVoiceGetConfigInput.

 

value_nam_index

a gboolean.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if value -was successfully set, FALSE otherwise.

-
-

Since: 1.14

-
-
-
-

qmi_message_voice_get_config_input_get_preferred_voice_privacy ()

-
gboolean
-qmi_message_voice_get_config_input_get_preferred_voice_privacy
-                               (QmiMessageVoiceGetConfigInput *self,
-                                gboolean *value_preferred_voice_privacy,
-                                GError **error);
-

Get the 'Preferred Voice Privacy' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessageVoiceGetConfigInput.

 

value_preferred_voice_privacy

a placeholder for the output gboolean, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.14

-
-
-
-

qmi_message_voice_get_config_input_set_preferred_voice_privacy ()

-
gboolean
-qmi_message_voice_get_config_input_set_preferred_voice_privacy
-                               (QmiMessageVoiceGetConfigInput *self,
-                                gboolean value_preferred_voice_privacy,
-                                GError **error);
-

Set the 'Preferred Voice Privacy' field in the message.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessageVoiceGetConfigInput.

 

value_preferred_voice_privacy

a gboolean.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if value -was successfully set, FALSE otherwise.

-
-

Since: 1.14

-
-
-
-

qmi_message_voice_get_config_input_get_amr_status ()

-
gboolean
-qmi_message_voice_get_config_input_get_amr_status
-                               (QmiMessageVoiceGetConfigInput *self,
-                                gboolean *value_amr_status,
-                                GError **error);
-

Get the 'AMR Status' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessageVoiceGetConfigInput.

 

value_amr_status

a placeholder for the output gboolean, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.14

-
-
-
-

qmi_message_voice_get_config_input_set_amr_status ()

-
gboolean
-qmi_message_voice_get_config_input_set_amr_status
-                               (QmiMessageVoiceGetConfigInput *self,
-                                gboolean value_amr_status,
-                                GError **error);
-

Set the 'AMR Status' field in the message.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessageVoiceGetConfigInput.

 

value_amr_status

a gboolean.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if value -was successfully set, FALSE otherwise.

-
-

Since: 1.14

-
-
-
-

qmi_message_voice_get_config_input_get_preferred_voice_service_option ()

-
gboolean
-qmi_message_voice_get_config_input_get_preferred_voice_service_option
-                               (QmiMessageVoiceGetConfigInput *self,
-                                gboolean *value_preferred_voice_service_option,
-                                GError **error);
-

Get the 'Preferred Voice Service Option' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessageVoiceGetConfigInput.

 

value_preferred_voice_service_option

a placeholder for the output gboolean, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.14

-
-
-
-

qmi_message_voice_get_config_input_set_preferred_voice_service_option ()

-
gboolean
-qmi_message_voice_get_config_input_set_preferred_voice_service_option
-                               (QmiMessageVoiceGetConfigInput *self,
-                                gboolean value_preferred_voice_service_option,
-                                GError **error);
-

Set the 'Preferred Voice Service Option' field in the message.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessageVoiceGetConfigInput.

 

value_preferred_voice_service_option

a gboolean.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if value -was successfully set, FALSE otherwise.

-
-

Since: 1.14

-
-
-
-

qmi_message_voice_get_config_input_get_tty_mode ()

-
gboolean
-qmi_message_voice_get_config_input_get_tty_mode
-                               (QmiMessageVoiceGetConfigInput *self,
-                                gboolean *value_tty_mode,
-                                GError **error);
-

Get the 'TTY Mode' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessageVoiceGetConfigInput.

 

value_tty_mode

a placeholder for the output gboolean, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.14

-
-
-
-

qmi_message_voice_get_config_input_set_tty_mode ()

-
gboolean
-qmi_message_voice_get_config_input_set_tty_mode
-                               (QmiMessageVoiceGetConfigInput *self,
-                                gboolean value_tty_mode,
-                                GError **error);
-

Set the 'TTY Mode' field in the message.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessageVoiceGetConfigInput.

 

value_tty_mode

a gboolean.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if value -was successfully set, FALSE otherwise.

-
-

Since: 1.14

-
-
-
-

qmi_message_voice_get_config_input_get_roam_timer ()

-
gboolean
-qmi_message_voice_get_config_input_get_roam_timer
-                               (QmiMessageVoiceGetConfigInput *self,
-                                gboolean *value_roam_timer,
-                                GError **error);
-

Get the 'Roam Timer' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessageVoiceGetConfigInput.

 

value_roam_timer

a placeholder for the output gboolean, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.14

-
-
-
-

qmi_message_voice_get_config_input_set_roam_timer ()

-
gboolean
-qmi_message_voice_get_config_input_set_roam_timer
-                               (QmiMessageVoiceGetConfigInput *self,
-                                gboolean value_roam_timer,
-                                GError **error);
-

Set the 'Roam Timer' field in the message.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessageVoiceGetConfigInput.

 

value_roam_timer

a gboolean.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if value -was successfully set, FALSE otherwise.

-
-

Since: 1.14

-
-
-
-

qmi_message_voice_get_config_input_get_air_timer ()

-
gboolean
-qmi_message_voice_get_config_input_get_air_timer
-                               (QmiMessageVoiceGetConfigInput *self,
-                                gboolean *value_air_timer,
-                                GError **error);
-

Get the 'Air Timer' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessageVoiceGetConfigInput.

 

value_air_timer

a placeholder for the output gboolean, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.14

-
-
-
-

qmi_message_voice_get_config_input_set_air_timer ()

-
gboolean
-qmi_message_voice_get_config_input_set_air_timer
-                               (QmiMessageVoiceGetConfigInput *self,
-                                gboolean value_air_timer,
-                                GError **error);
-

Set the 'Air Timer' field in the message.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessageVoiceGetConfigInput.

 

value_air_timer

a gboolean.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if value -was successfully set, FALSE otherwise.

-
-

Since: 1.14

-
-
-
-

qmi_message_voice_get_config_input_get_auto_answer ()

-
gboolean
-qmi_message_voice_get_config_input_get_auto_answer
-                               (QmiMessageVoiceGetConfigInput *self,
-                                gboolean *value_auto_answer,
-                                GError **error);
-

Get the 'Auto Answer' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessageVoiceGetConfigInput.

 

value_auto_answer

a placeholder for the output gboolean, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.14

-
-
-
-

qmi_message_voice_get_config_input_set_auto_answer ()

-
gboolean
-qmi_message_voice_get_config_input_set_auto_answer
-                               (QmiMessageVoiceGetConfigInput *self,
-                                gboolean value_auto_answer,
-                                GError **error);
-

Set the 'Auto Answer' field in the message.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessageVoiceGetConfigInput.

 

value_auto_answer

a gboolean.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if value -was successfully set, FALSE otherwise.

-
-

Since: 1.14

-
-
-
-

qmi_message_voice_get_config_output_ref ()

-
QmiMessageVoiceGetConfigOutput *
-qmi_message_voice_get_config_output_ref
-                               (QmiMessageVoiceGetConfigOutput *self);
-

Atomically increments the reference count of self - by one.

-
-

Parameters

-
----- - - - - - -

self

a QmiMessageVoiceGetConfigOutput.

 
-
-
-

Returns

-

the new reference to self -.

-
-

Since: 1.14

-
-
-
-

qmi_message_voice_get_config_output_unref ()

-
void
-qmi_message_voice_get_config_output_unref
-                               (QmiMessageVoiceGetConfigOutput *self);
-

Atomically decrements the reference count of self - by one. -If the reference count drops to 0, self - is completely disposed.

-
-

Parameters

-
----- - - - - - -

self

a QmiMessageVoiceGetConfigOutput.

 
-
-

Since: 1.14

-
-
-
-

qmi_message_voice_get_config_output_get_current_voice_domain_preference ()

-
gboolean
-qmi_message_voice_get_config_output_get_current_voice_domain_preference
-                               (QmiMessageVoiceGetConfigOutput *self,
-                                QmiVoiceDomain *value_current_voice_domain_preference,
-                                GError **error);
-

Get the 'Current Voice Domain Preference' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessageVoiceGetConfigOutput.

 

value_current_voice_domain_preference

a placeholder for the output QmiVoiceDomain, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.14

-
-
-
-

qmi_message_voice_get_config_output_get_current_voice_privacy_preference ()

-
gboolean
-qmi_message_voice_get_config_output_get_current_voice_privacy_preference
-                               (QmiMessageVoiceGetConfigOutput *self,
-                                QmiVoicePrivacy *value_current_voice_privacy_preference,
-                                GError **error);
-

Get the 'Current Voice Privacy Preference' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessageVoiceGetConfigOutput.

 

value_current_voice_privacy_preference

a placeholder for the output QmiVoicePrivacy, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.14

-
-
-
-

qmi_message_voice_get_config_output_get_current_amr_status ()

-
gboolean
-qmi_message_voice_get_config_output_get_current_amr_status
-                               (QmiMessageVoiceGetConfigOutput *self,
-                                gboolean *value_current_amr_status_gsm,
-                                QmiVoiceWcdmaAmrStatus *value_current_amr_status_wcdma,
-                                GError **error);
-

Get the 'Current AMR Status' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - - - - - - -

self

a QmiMessageVoiceGetConfigOutput.

 

value_current_amr_status_gsm

a placeholder for the output gboolean, or NULL if not required.

 

value_current_amr_status_wcdma

a placeholder for the output QmiVoiceWcdmaAmrStatus, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.14

-
-
-
-

qmi_message_voice_get_config_output_get_current_preferred_voice_so ()

-
gboolean
-qmi_message_voice_get_config_output_get_current_preferred_voice_so
-                               (QmiMessageVoiceGetConfigOutput *self,
-                                guint8 *value_current_preferred_voice_so_nam_id,
-                                gboolean *value_current_preferred_voice_so_evrc_capability,
-                                QmiVoiceServiceOption *value_current_preferred_voice_so_home_page_voice_service_option,
-                                QmiVoiceServiceOption *value_current_preferred_voice_so_home_origination_voice_service_option,
-                                QmiVoiceServiceOption *value_current_preferred_voice_so_roaming_origination_voice_service_option,
-                                GError **error);
-

Get the 'Current Preferred Voice SO' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

self

a QmiMessageVoiceGetConfigOutput.

 

value_current_preferred_voice_so_nam_id

a placeholder for the output guint8, or NULL if not required.

 

value_current_preferred_voice_so_evrc_capability

a placeholder for the output gboolean, or NULL if not required.

 

value_current_preferred_voice_so_home_page_voice_service_option

a placeholder for the output QmiVoiceServiceOption, or NULL if not required.

 

value_current_preferred_voice_so_home_origination_voice_service_option

a placeholder for the output QmiVoiceServiceOption, or NULL if not required.

 

value_current_preferred_voice_so_roaming_origination_voice_service_option

a placeholder for the output QmiVoiceServiceOption, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.14

-
-
-
-

qmi_message_voice_get_config_output_get_current_tty_mode ()

-
gboolean
-qmi_message_voice_get_config_output_get_current_tty_mode
-                               (QmiMessageVoiceGetConfigOutput *self,
-                                QmiVoiceTtyMode *value_current_tty_mode,
-                                GError **error);
-

Get the 'Current TTY Mode' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessageVoiceGetConfigOutput.

 

value_current_tty_mode

a placeholder for the output QmiVoiceTtyMode, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.14

-
-
-
-

qmi_message_voice_get_config_output_get_roam_timer_count ()

-
gboolean
-qmi_message_voice_get_config_output_get_roam_timer_count
-                               (QmiMessageVoiceGetConfigOutput *self,
-                                guint8 *value_roam_timer_count_nam_id,
-                                guint32 *value_roam_timer_count_roam_timer,
-                                GError **error);
-

Get the 'Roam Timer Count' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - - - - - - -

self

a QmiMessageVoiceGetConfigOutput.

 

value_roam_timer_count_nam_id

a placeholder for the output guint8, or NULL if not required.

 

value_roam_timer_count_roam_timer

a placeholder for the output guint32, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.14

-
-
-
-

qmi_message_voice_get_config_output_get_air_timer_count ()

-
gboolean
-qmi_message_voice_get_config_output_get_air_timer_count
-                               (QmiMessageVoiceGetConfigOutput *self,
-                                guint8 *value_air_timer_count_nam_id,
-                                guint32 *value_air_timer_count_air_timer,
-                                GError **error);
-

Get the 'Air Timer Count' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - - - - - - -

self

a QmiMessageVoiceGetConfigOutput.

 

value_air_timer_count_nam_id

a placeholder for the output guint8, or NULL if not required.

 

value_air_timer_count_air_timer

a placeholder for the output guint32, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.14

-
-
-
-

qmi_message_voice_get_config_output_get_auto_answer_status ()

-
gboolean
-qmi_message_voice_get_config_output_get_auto_answer_status
-                               (QmiMessageVoiceGetConfigOutput *self,
-                                gboolean *value_auto_answer_status,
-                                GError **error);
-

Get the 'Auto Answer Status' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessageVoiceGetConfigOutput.

 

value_auto_answer_status

a placeholder for the output gboolean, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.14

-
-
-
-

qmi_message_voice_get_config_output_get_result ()

-
gboolean
-qmi_message_voice_get_config_output_get_result
-                               (QmiMessageVoiceGetConfigOutput *self,
-                                GError **error);
-

Get the result of the QMI operation.

-
-

Parameters

-
----- - - - - - - - - - - - - -

self

a QmiMessageVoiceGetConfigOutput.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the QMI operation succeeded, FALSE if error -is set.

-
-

Since: 1.14

-
-
-
-

qmi_client_voice_get_config ()

-
void
-qmi_client_voice_get_config (QmiClientVoice *self,
-                             QmiMessageVoiceGetConfigInput *input,
-                             guint timeout,
-                             GCancellable *cancellable,
-                             GAsyncReadyCallback callback,
-                             gpointer user_data);
-

Asynchronously sends a Get Config request to the device.

-

When the operation is finished, callback - will be invoked in the thread-default main loop of the thread you are calling this method from.

-

You can then call qmi_client_voice_get_config_finish() to get the result of the operation.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

self

a QmiClientVoice.

 

input

a QmiMessageVoiceGetConfigInput.

 

timeout

maximum time to wait for the method to complete, in seconds.

 

cancellable

a GCancellable or NULL.

 

callback

a GAsyncReadyCallback to call when the request is satisfied.

 

user_data

user data to pass to callback -.

 
-
-

Since: 1.14

-
-
-
-

qmi_client_voice_get_config_finish ()

-
QmiMessageVoiceGetConfigOutput *
-qmi_client_voice_get_config_finish (QmiClientVoice *self,
-                                    GAsyncResult *res,
-                                    GError **error);
-

Finishes an async operation started with qmi_client_voice_get_config().

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiClientVoice.

 

res

the GAsyncResult obtained from the GAsyncReadyCallback passed to qmi_client_voice_get_config().

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

a QmiMessageVoiceGetConfigOutput, or NULL if error -is set. The returned value should be freed with qmi_message_voice_get_config_output_unref().

-
-

Since: 1.14

-
-
-
-

Types and Values

-
-

QmiMessageVoiceGetConfigInput

-
typedef struct _QmiMessageVoiceGetConfigInput QmiMessageVoiceGetConfigInput;
-

The QmiMessageVoiceGetConfigInput structure contains private data and should only be accessed -using the provided API.

-

Since: 1.14

-
-
-
-

QmiMessageVoiceGetConfigOutput

-
typedef struct _QmiMessageVoiceGetConfigOutput QmiMessageVoiceGetConfigOutput;
-

The QmiMessageVoiceGetConfigOutput structure contains private data and should only be accessed -using the provided API.

-

Since: 1.14

-
-
-
- - - \ No newline at end of file diff -Nru libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-VOICE-Get-Config-request.html libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-VOICE-Get-Config-request.html --- libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-VOICE-Get-Config-request.html 1970-01-01 01:00:00.000000000 +0100 +++ libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-VOICE-Get-Config-request.html 2019-01-08 15:19:02.000000000 +0100 @@ -0,0 +1,1796 @@ + + + + +VOICE Get Config request: libqmi-glib Reference Manual + + + + + + + + + + + + + + + + +
+
+
+ + +
+

VOICE Get Config request

+

VOICE Get Config request

+
+
+

Functions

+
++++ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+QmiMessageVoiceGetConfigInput * + +qmi_message_voice_get_config_input_new () +
+QmiMessageVoiceGetConfigInput * + +qmi_message_voice_get_config_input_ref () +
+void + +qmi_message_voice_get_config_input_unref () +
+gboolean + +qmi_message_voice_get_config_input_get_voice_domain_preference () +
+gboolean + +qmi_message_voice_get_config_input_set_voice_domain_preference () +
+gboolean + +qmi_message_voice_get_config_input_get_nam_index () +
+gboolean + +qmi_message_voice_get_config_input_set_nam_index () +
+gboolean + +qmi_message_voice_get_config_input_get_preferred_voice_privacy () +
+gboolean + +qmi_message_voice_get_config_input_set_preferred_voice_privacy () +
+gboolean + +qmi_message_voice_get_config_input_get_amr_status () +
+gboolean + +qmi_message_voice_get_config_input_set_amr_status () +
+gboolean + +qmi_message_voice_get_config_input_get_preferred_voice_service_option () +
+gboolean + +qmi_message_voice_get_config_input_set_preferred_voice_service_option () +
+gboolean + +qmi_message_voice_get_config_input_get_tty_mode () +
+gboolean + +qmi_message_voice_get_config_input_set_tty_mode () +
+gboolean + +qmi_message_voice_get_config_input_get_roam_timer () +
+gboolean + +qmi_message_voice_get_config_input_set_roam_timer () +
+gboolean + +qmi_message_voice_get_config_input_get_air_timer () +
+gboolean + +qmi_message_voice_get_config_input_set_air_timer () +
+gboolean + +qmi_message_voice_get_config_input_get_auto_answer () +
+gboolean + +qmi_message_voice_get_config_input_set_auto_answer () +
+QmiMessageVoiceGetConfigOutput * + +qmi_message_voice_get_config_output_ref () +
+void + +qmi_message_voice_get_config_output_unref () +
+gboolean + +qmi_message_voice_get_config_output_get_current_voice_domain_preference () +
+gboolean + +qmi_message_voice_get_config_output_get_current_voice_privacy_preference () +
+gboolean + +qmi_message_voice_get_config_output_get_current_amr_status () +
+gboolean + +qmi_message_voice_get_config_output_get_current_preferred_voice_so () +
+gboolean + +qmi_message_voice_get_config_output_get_current_tty_mode () +
+gboolean + +qmi_message_voice_get_config_output_get_roam_timer_count () +
+gboolean + +qmi_message_voice_get_config_output_get_air_timer_count () +
+gboolean + +qmi_message_voice_get_config_output_get_auto_answer_status () +
+gboolean + +qmi_message_voice_get_config_output_get_result () +
+void + +qmi_client_voice_get_config () +
+QmiMessageVoiceGetConfigOutput * + +qmi_client_voice_get_config_finish () +
+
+
+

Types and Values

+ +
+
+

Object Hierarchy

+
    GBoxed
+    ├── QmiMessageVoiceGetConfigInput
+    ╰── QmiMessageVoiceGetConfigOutput
+
+
+
+

Description

+
+
+

Functions

+
+

qmi_message_voice_get_config_input_new ()

+
QmiMessageVoiceGetConfigInput *
+qmi_message_voice_get_config_input_new
+                               (void);
+

Allocates a new QmiMessageVoiceGetConfigInput.

+
+

Returns

+

the newly created QmiMessageVoiceGetConfigInput. The returned value should be freed with qmi_message_voice_get_config_input_unref().

+
+

Since: 1.14

+
+
+
+

qmi_message_voice_get_config_input_ref ()

+
QmiMessageVoiceGetConfigInput *
+qmi_message_voice_get_config_input_ref
+                               (QmiMessageVoiceGetConfigInput *self);
+

Atomically increments the reference count of self + by one.

+
+

Parameters

+
+++++ + + + + + +

self

a QmiMessageVoiceGetConfigInput.

 
+
+
+

Returns

+

the new reference to self +.

+
+

Since: 1.14

+
+
+
+

qmi_message_voice_get_config_input_unref ()

+
void
+qmi_message_voice_get_config_input_unref
+                               (QmiMessageVoiceGetConfigInput *self);
+

Atomically decrements the reference count of self + by one. +If the reference count drops to 0, self + is completely disposed.

+
+

Parameters

+
+++++ + + + + + +

self

a QmiMessageVoiceGetConfigInput.

 
+
+

Since: 1.14

+
+
+
+

qmi_message_voice_get_config_input_get_voice_domain_preference ()

+
gboolean
+qmi_message_voice_get_config_input_get_voice_domain_preference
+                               (QmiMessageVoiceGetConfigInput *self,
+                                gboolean *value_voice_domain_preference,
+                                GError **error);
+

Get the 'Voice Domain Preference' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageVoiceGetConfigInput.

 

value_voice_domain_preference

a placeholder for the output gboolean, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.14

+
+
+
+

qmi_message_voice_get_config_input_set_voice_domain_preference ()

+
gboolean
+qmi_message_voice_get_config_input_set_voice_domain_preference
+                               (QmiMessageVoiceGetConfigInput *self,
+                                gboolean value_voice_domain_preference,
+                                GError **error);
+

Set the 'Voice Domain Preference' field in the message.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageVoiceGetConfigInput.

 

value_voice_domain_preference

a gboolean.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if value +was successfully set, FALSE otherwise.

+
+

Since: 1.14

+
+
+
+

qmi_message_voice_get_config_input_get_nam_index ()

+
gboolean
+qmi_message_voice_get_config_input_get_nam_index
+                               (QmiMessageVoiceGetConfigInput *self,
+                                gboolean *value_nam_index,
+                                GError **error);
+

Get the 'NAM Index' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageVoiceGetConfigInput.

 

value_nam_index

a placeholder for the output gboolean, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.14

+
+
+
+

qmi_message_voice_get_config_input_set_nam_index ()

+
gboolean
+qmi_message_voice_get_config_input_set_nam_index
+                               (QmiMessageVoiceGetConfigInput *self,
+                                gboolean value_nam_index,
+                                GError **error);
+

Set the 'NAM Index' field in the message.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageVoiceGetConfigInput.

 

value_nam_index

a gboolean.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if value +was successfully set, FALSE otherwise.

+
+

Since: 1.14

+
+
+
+

qmi_message_voice_get_config_input_get_preferred_voice_privacy ()

+
gboolean
+qmi_message_voice_get_config_input_get_preferred_voice_privacy
+                               (QmiMessageVoiceGetConfigInput *self,
+                                gboolean *value_preferred_voice_privacy,
+                                GError **error);
+

Get the 'Preferred Voice Privacy' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageVoiceGetConfigInput.

 

value_preferred_voice_privacy

a placeholder for the output gboolean, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.14

+
+
+
+

qmi_message_voice_get_config_input_set_preferred_voice_privacy ()

+
gboolean
+qmi_message_voice_get_config_input_set_preferred_voice_privacy
+                               (QmiMessageVoiceGetConfigInput *self,
+                                gboolean value_preferred_voice_privacy,
+                                GError **error);
+

Set the 'Preferred Voice Privacy' field in the message.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageVoiceGetConfigInput.

 

value_preferred_voice_privacy

a gboolean.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if value +was successfully set, FALSE otherwise.

+
+

Since: 1.14

+
+
+
+

qmi_message_voice_get_config_input_get_amr_status ()

+
gboolean
+qmi_message_voice_get_config_input_get_amr_status
+                               (QmiMessageVoiceGetConfigInput *self,
+                                gboolean *value_amr_status,
+                                GError **error);
+

Get the 'AMR Status' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageVoiceGetConfigInput.

 

value_amr_status

a placeholder for the output gboolean, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.14

+
+
+
+

qmi_message_voice_get_config_input_set_amr_status ()

+
gboolean
+qmi_message_voice_get_config_input_set_amr_status
+                               (QmiMessageVoiceGetConfigInput *self,
+                                gboolean value_amr_status,
+                                GError **error);
+

Set the 'AMR Status' field in the message.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageVoiceGetConfigInput.

 

value_amr_status

a gboolean.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if value +was successfully set, FALSE otherwise.

+
+

Since: 1.14

+
+
+
+

qmi_message_voice_get_config_input_get_preferred_voice_service_option ()

+
gboolean
+qmi_message_voice_get_config_input_get_preferred_voice_service_option
+                               (QmiMessageVoiceGetConfigInput *self,
+                                gboolean *value_preferred_voice_service_option,
+                                GError **error);
+

Get the 'Preferred Voice Service Option' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageVoiceGetConfigInput.

 

value_preferred_voice_service_option

a placeholder for the output gboolean, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.14

+
+
+
+

qmi_message_voice_get_config_input_set_preferred_voice_service_option ()

+
gboolean
+qmi_message_voice_get_config_input_set_preferred_voice_service_option
+                               (QmiMessageVoiceGetConfigInput *self,
+                                gboolean value_preferred_voice_service_option,
+                                GError **error);
+

Set the 'Preferred Voice Service Option' field in the message.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageVoiceGetConfigInput.

 

value_preferred_voice_service_option

a gboolean.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if value +was successfully set, FALSE otherwise.

+
+

Since: 1.14

+
+
+
+

qmi_message_voice_get_config_input_get_tty_mode ()

+
gboolean
+qmi_message_voice_get_config_input_get_tty_mode
+                               (QmiMessageVoiceGetConfigInput *self,
+                                gboolean *value_tty_mode,
+                                GError **error);
+

Get the 'TTY Mode' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageVoiceGetConfigInput.

 

value_tty_mode

a placeholder for the output gboolean, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.14

+
+
+
+

qmi_message_voice_get_config_input_set_tty_mode ()

+
gboolean
+qmi_message_voice_get_config_input_set_tty_mode
+                               (QmiMessageVoiceGetConfigInput *self,
+                                gboolean value_tty_mode,
+                                GError **error);
+

Set the 'TTY Mode' field in the message.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageVoiceGetConfigInput.

 

value_tty_mode

a gboolean.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if value +was successfully set, FALSE otherwise.

+
+

Since: 1.14

+
+
+
+

qmi_message_voice_get_config_input_get_roam_timer ()

+
gboolean
+qmi_message_voice_get_config_input_get_roam_timer
+                               (QmiMessageVoiceGetConfigInput *self,
+                                gboolean *value_roam_timer,
+                                GError **error);
+

Get the 'Roam Timer' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageVoiceGetConfigInput.

 

value_roam_timer

a placeholder for the output gboolean, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.14

+
+
+
+

qmi_message_voice_get_config_input_set_roam_timer ()

+
gboolean
+qmi_message_voice_get_config_input_set_roam_timer
+                               (QmiMessageVoiceGetConfigInput *self,
+                                gboolean value_roam_timer,
+                                GError **error);
+

Set the 'Roam Timer' field in the message.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageVoiceGetConfigInput.

 

value_roam_timer

a gboolean.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if value +was successfully set, FALSE otherwise.

+
+

Since: 1.14

+
+
+
+

qmi_message_voice_get_config_input_get_air_timer ()

+
gboolean
+qmi_message_voice_get_config_input_get_air_timer
+                               (QmiMessageVoiceGetConfigInput *self,
+                                gboolean *value_air_timer,
+                                GError **error);
+

Get the 'Air Timer' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageVoiceGetConfigInput.

 

value_air_timer

a placeholder for the output gboolean, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.14

+
+
+
+

qmi_message_voice_get_config_input_set_air_timer ()

+
gboolean
+qmi_message_voice_get_config_input_set_air_timer
+                               (QmiMessageVoiceGetConfigInput *self,
+                                gboolean value_air_timer,
+                                GError **error);
+

Set the 'Air Timer' field in the message.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageVoiceGetConfigInput.

 

value_air_timer

a gboolean.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if value +was successfully set, FALSE otherwise.

+
+

Since: 1.14

+
+
+
+

qmi_message_voice_get_config_input_get_auto_answer ()

+
gboolean
+qmi_message_voice_get_config_input_get_auto_answer
+                               (QmiMessageVoiceGetConfigInput *self,
+                                gboolean *value_auto_answer,
+                                GError **error);
+

Get the 'Auto Answer' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageVoiceGetConfigInput.

 

value_auto_answer

a placeholder for the output gboolean, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.14

+
+
+
+

qmi_message_voice_get_config_input_set_auto_answer ()

+
gboolean
+qmi_message_voice_get_config_input_set_auto_answer
+                               (QmiMessageVoiceGetConfigInput *self,
+                                gboolean value_auto_answer,
+                                GError **error);
+

Set the 'Auto Answer' field in the message.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageVoiceGetConfigInput.

 

value_auto_answer

a gboolean.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if value +was successfully set, FALSE otherwise.

+
+

Since: 1.14

+
+
+
+

qmi_message_voice_get_config_output_ref ()

+
QmiMessageVoiceGetConfigOutput *
+qmi_message_voice_get_config_output_ref
+                               (QmiMessageVoiceGetConfigOutput *self);
+

Atomically increments the reference count of self + by one.

+
+

Parameters

+
+++++ + + + + + +

self

a QmiMessageVoiceGetConfigOutput.

 
+
+
+

Returns

+

the new reference to self +.

+
+

Since: 1.14

+
+
+
+

qmi_message_voice_get_config_output_unref ()

+
void
+qmi_message_voice_get_config_output_unref
+                               (QmiMessageVoiceGetConfigOutput *self);
+

Atomically decrements the reference count of self + by one. +If the reference count drops to 0, self + is completely disposed.

+
+

Parameters

+
+++++ + + + + + +

self

a QmiMessageVoiceGetConfigOutput.

 
+
+

Since: 1.14

+
+
+
+

qmi_message_voice_get_config_output_get_current_voice_domain_preference ()

+
gboolean
+qmi_message_voice_get_config_output_get_current_voice_domain_preference
+                               (QmiMessageVoiceGetConfigOutput *self,
+                                QmiVoiceDomain *value_current_voice_domain_preference,
+                                GError **error);
+

Get the 'Current Voice Domain Preference' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageVoiceGetConfigOutput.

 

value_current_voice_domain_preference

a placeholder for the output QmiVoiceDomain, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.14

+
+
+
+

qmi_message_voice_get_config_output_get_current_voice_privacy_preference ()

+
gboolean
+qmi_message_voice_get_config_output_get_current_voice_privacy_preference
+                               (QmiMessageVoiceGetConfigOutput *self,
+                                QmiVoicePrivacy *value_current_voice_privacy_preference,
+                                GError **error);
+

Get the 'Current Voice Privacy Preference' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageVoiceGetConfigOutput.

 

value_current_voice_privacy_preference

a placeholder for the output QmiVoicePrivacy, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.14

+
+
+
+

qmi_message_voice_get_config_output_get_current_amr_status ()

+
gboolean
+qmi_message_voice_get_config_output_get_current_amr_status
+                               (QmiMessageVoiceGetConfigOutput *self,
+                                gboolean *value_current_amr_status_gsm,
+                                QmiVoiceWcdmaAmrStatus *value_current_amr_status_wcdma,
+                                GError **error);
+

Get the 'Current AMR Status' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + + + + + + +

self

a QmiMessageVoiceGetConfigOutput.

 

value_current_amr_status_gsm

a placeholder for the output gboolean, or NULL if not required.

 

value_current_amr_status_wcdma

a placeholder for the output QmiVoiceWcdmaAmrStatus, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.14

+
+
+
+

qmi_message_voice_get_config_output_get_current_preferred_voice_so ()

+
gboolean
+qmi_message_voice_get_config_output_get_current_preferred_voice_so
+                               (QmiMessageVoiceGetConfigOutput *self,
+                                guint8 *value_current_preferred_voice_so_nam_id,
+                                gboolean *value_current_preferred_voice_so_evrc_capability,
+                                QmiVoiceServiceOption *value_current_preferred_voice_so_home_page_voice_service_option,
+                                QmiVoiceServiceOption *value_current_preferred_voice_so_home_origination_voice_service_option,
+                                QmiVoiceServiceOption *value_current_preferred_voice_so_roaming_origination_voice_service_option,
+                                GError **error);
+

Get the 'Current Preferred Voice SO' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

self

a QmiMessageVoiceGetConfigOutput.

 

value_current_preferred_voice_so_nam_id

a placeholder for the output guint8, or NULL if not required.

 

value_current_preferred_voice_so_evrc_capability

a placeholder for the output gboolean, or NULL if not required.

 

value_current_preferred_voice_so_home_page_voice_service_option

a placeholder for the output QmiVoiceServiceOption, or NULL if not required.

 

value_current_preferred_voice_so_home_origination_voice_service_option

a placeholder for the output QmiVoiceServiceOption, or NULL if not required.

 

value_current_preferred_voice_so_roaming_origination_voice_service_option

a placeholder for the output QmiVoiceServiceOption, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.14

+
+
+
+

qmi_message_voice_get_config_output_get_current_tty_mode ()

+
gboolean
+qmi_message_voice_get_config_output_get_current_tty_mode
+                               (QmiMessageVoiceGetConfigOutput *self,
+                                QmiVoiceTtyMode *value_current_tty_mode,
+                                GError **error);
+

Get the 'Current TTY Mode' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageVoiceGetConfigOutput.

 

value_current_tty_mode

a placeholder for the output QmiVoiceTtyMode, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.14

+
+
+
+

qmi_message_voice_get_config_output_get_roam_timer_count ()

+
gboolean
+qmi_message_voice_get_config_output_get_roam_timer_count
+                               (QmiMessageVoiceGetConfigOutput *self,
+                                guint8 *value_roam_timer_count_nam_id,
+                                guint32 *value_roam_timer_count_roam_timer,
+                                GError **error);
+

Get the 'Roam Timer Count' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + + + + + + +

self

a QmiMessageVoiceGetConfigOutput.

 

value_roam_timer_count_nam_id

a placeholder for the output guint8, or NULL if not required.

 

value_roam_timer_count_roam_timer

a placeholder for the output guint32, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.14

+
+
+
+

qmi_message_voice_get_config_output_get_air_timer_count ()

+
gboolean
+qmi_message_voice_get_config_output_get_air_timer_count
+                               (QmiMessageVoiceGetConfigOutput *self,
+                                guint8 *value_air_timer_count_nam_id,
+                                guint32 *value_air_timer_count_air_timer,
+                                GError **error);
+

Get the 'Air Timer Count' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + + + + + + +

self

a QmiMessageVoiceGetConfigOutput.

 

value_air_timer_count_nam_id

a placeholder for the output guint8, or NULL if not required.

 

value_air_timer_count_air_timer

a placeholder for the output guint32, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.14

+
+
+
+

qmi_message_voice_get_config_output_get_auto_answer_status ()

+
gboolean
+qmi_message_voice_get_config_output_get_auto_answer_status
+                               (QmiMessageVoiceGetConfigOutput *self,
+                                gboolean *value_auto_answer_status,
+                                GError **error);
+

Get the 'Auto Answer Status' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageVoiceGetConfigOutput.

 

value_auto_answer_status

a placeholder for the output gboolean, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.14

+
+
+
+

qmi_message_voice_get_config_output_get_result ()

+
gboolean
+qmi_message_voice_get_config_output_get_result
+                               (QmiMessageVoiceGetConfigOutput *self,
+                                GError **error);
+

Get the result of the QMI operation.

+
+

Parameters

+
+++++ + + + + + + + + + + + + +

self

a QmiMessageVoiceGetConfigOutput.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the QMI operation succeeded, FALSE if error +is set.

+
+

Since: 1.14

+
+
+
+

qmi_client_voice_get_config ()

+
void
+qmi_client_voice_get_config (QmiClientVoice *self,
+                             QmiMessageVoiceGetConfigInput *input,
+                             guint timeout,
+                             GCancellable *cancellable,
+                             GAsyncReadyCallback callback,
+                             gpointer user_data);
+

Asynchronously sends a Get Config request to the device.

+

When the operation is finished, callback + will be invoked in the thread-default main loop of the thread you are calling this method from.

+

You can then call qmi_client_voice_get_config_finish() to get the result of the operation.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

self

a QmiClientVoice.

 

input

a QmiMessageVoiceGetConfigInput.

 

timeout

maximum time to wait for the method to complete, in seconds.

 

cancellable

a GCancellable or NULL.

 

callback

a GAsyncReadyCallback to call when the request is satisfied.

 

user_data

user data to pass to callback +.

 
+
+

Since: 1.14

+
+
+
+

qmi_client_voice_get_config_finish ()

+
QmiMessageVoiceGetConfigOutput *
+qmi_client_voice_get_config_finish (QmiClientVoice *self,
+                                    GAsyncResult *res,
+                                    GError **error);
+

Finishes an async operation started with qmi_client_voice_get_config().

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiClientVoice.

 

res

the GAsyncResult obtained from the GAsyncReadyCallback passed to qmi_client_voice_get_config().

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

a QmiMessageVoiceGetConfigOutput, or NULL if error +is set. The returned value should be freed with qmi_message_voice_get_config_output_unref().

+
+

Since: 1.14

+
+
+
+

Types and Values

+
+

QmiMessageVoiceGetConfigInput

+
typedef struct _QmiMessageVoiceGetConfigInput QmiMessageVoiceGetConfigInput;
+

The QmiMessageVoiceGetConfigInput structure contains private data and should only be accessed +using the provided API.

+

Since: 1.14

+
+
+
+

QmiMessageVoiceGetConfigOutput

+
typedef struct _QmiMessageVoiceGetConfigOutput QmiMessageVoiceGetConfigOutput;
+

The QmiMessageVoiceGetConfigOutput structure contains private data and should only be accessed +using the provided API.

+

Since: 1.14

+
+
+
+ + + \ No newline at end of file diff -Nru libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-VOICE-Get-Supported-Messages.html libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-VOICE-Get-Supported-Messages.html --- libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-VOICE-Get-Supported-Messages.html 2017-03-22 12:28:29.000000000 +0100 +++ libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-VOICE-Get-Supported-Messages.html 1970-01-01 01:00:00.000000000 +0100 @@ -1,373 +0,0 @@ - - - - -VOICE Get Supported Messages: libqmi-glib Reference Manual - - - - - - - - - - - - - - - - -
-
-
- - -
-

VOICE Get Supported Messages

-

VOICE Get Supported Messages

-
- -
-

Types and Values

- -
-
-

Object Hierarchy

-
    GBoxed
-    ╰── QmiMessageVoiceGetSupportedMessagesOutput
-
-
-
-

Description

-
-
-

Functions

-
-

qmi_message_voice_get_supported_messages_output_ref ()

-
QmiMessageVoiceGetSupportedMessagesOutput *
-qmi_message_voice_get_supported_messages_output_ref
-                               (QmiMessageVoiceGetSupportedMessagesOutput *self);
-

Atomically increments the reference count of self - by one.

-
-

Parameters

-
----- - - - - - -

self

a QmiMessageVoiceGetSupportedMessagesOutput.

 
-
-
-

Returns

-

the new reference to self -.

-
-

Since: 1.14

-
-
-
-

qmi_message_voice_get_supported_messages_output_unref ()

-
void
-qmi_message_voice_get_supported_messages_output_unref
-                               (QmiMessageVoiceGetSupportedMessagesOutput *self);
-

Atomically decrements the reference count of self - by one. -If the reference count drops to 0, self - is completely disposed.

-
-

Parameters

-
----- - - - - - -

self

a QmiMessageVoiceGetSupportedMessagesOutput.

 
-
-

Since: 1.14

-
-
-
-

qmi_message_voice_get_supported_messages_output_get_result ()

-
gboolean
-qmi_message_voice_get_supported_messages_output_get_result
-                               (QmiMessageVoiceGetSupportedMessagesOutput *self,
-                                GError **error);
-

Get the result of the QMI operation.

-
-

Parameters

-
----- - - - - - - - - - - - - -

self

a QmiMessageVoiceGetSupportedMessagesOutput.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the QMI operation succeeded, FALSE if error -is set.

-
-

Since: 1.14

-
-
-
-

qmi_message_voice_get_supported_messages_output_get_list ()

-
gboolean
-qmi_message_voice_get_supported_messages_output_get_list
-                               (QmiMessageVoiceGetSupportedMessagesOutput *self,
-                                GArray **value_list,
-                                GError **error);
-

Get the 'List' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessageVoiceGetSupportedMessagesOutput.

 

value_list

a placeholder for the output GArray of guint8 elements, or NULL if not required. Do not free it, it is owned by self -.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.14

-
-
-
-

qmi_client_voice_get_supported_messages ()

-
void
-qmi_client_voice_get_supported_messages
-                               (QmiClientVoice *self,
-                                gpointer unused,
-                                guint timeout,
-                                GCancellable *cancellable,
-                                GAsyncReadyCallback callback,
-                                gpointer user_data);
-

Asynchronously sends a Get Supported Messages request to the device.

-

When the operation is finished, callback - will be invoked in the thread-default main loop of the thread you are calling this method from.

-

You can then call qmi_client_voice_get_supported_messages_finish() to get the result of the operation.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

self

a QmiClientVoice.

 

unused

NULL. This message doesn't have any input bundle.

 

timeout

maximum time to wait for the method to complete, in seconds.

 

cancellable

a GCancellable or NULL.

 

callback

a GAsyncReadyCallback to call when the request is satisfied.

 

user_data

user data to pass to callback -.

 
-
-

Since: 1.14

-
-
-
-

qmi_client_voice_get_supported_messages_finish ()

-
QmiMessageVoiceGetSupportedMessagesOutput *
-qmi_client_voice_get_supported_messages_finish
-                               (QmiClientVoice *self,
-                                GAsyncResult *res,
-                                GError **error);
-

Finishes an async operation started with qmi_client_voice_get_supported_messages().

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiClientVoice.

 

res

the GAsyncResult obtained from the GAsyncReadyCallback passed to qmi_client_voice_get_supported_messages().

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

a QmiMessageVoiceGetSupportedMessagesOutput, or NULL if error -is set. The returned value should be freed with qmi_message_voice_get_supported_messages_output_unref().

-
-

Since: 1.14

-
-
-
-

Types and Values

-
-

QmiMessageVoiceGetSupportedMessagesOutput

-
typedef struct _QmiMessageVoiceGetSupportedMessagesOutput QmiMessageVoiceGetSupportedMessagesOutput;
-

The QmiMessageVoiceGetSupportedMessagesOutput structure contains private data and should only be accessed -using the provided API.

-

Since: 1.14

-
-
-
- - - \ No newline at end of file diff -Nru libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-VOICE-Get-Supported-Messages-request.html libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-VOICE-Get-Supported-Messages-request.html --- libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-VOICE-Get-Supported-Messages-request.html 1970-01-01 01:00:00.000000000 +0100 +++ libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-VOICE-Get-Supported-Messages-request.html 2019-01-08 15:19:02.000000000 +0100 @@ -0,0 +1,373 @@ + + + + +VOICE Get Supported Messages request: libqmi-glib Reference Manual + + + + + + + + + + + + + + + + +
+
+
+ + +
+

VOICE Get Supported Messages request

+

VOICE Get Supported Messages request

+
+ +
+

Types and Values

+ +
+
+

Object Hierarchy

+
    GBoxed
+    ╰── QmiMessageVoiceGetSupportedMessagesOutput
+
+
+
+

Description

+
+
+

Functions

+
+

qmi_message_voice_get_supported_messages_output_ref ()

+
QmiMessageVoiceGetSupportedMessagesOutput *
+qmi_message_voice_get_supported_messages_output_ref
+                               (QmiMessageVoiceGetSupportedMessagesOutput *self);
+

Atomically increments the reference count of self + by one.

+
+

Parameters

+
+++++ + + + + + +

self

a QmiMessageVoiceGetSupportedMessagesOutput.

 
+
+
+

Returns

+

the new reference to self +.

+
+

Since: 1.14

+
+
+
+

qmi_message_voice_get_supported_messages_output_unref ()

+
void
+qmi_message_voice_get_supported_messages_output_unref
+                               (QmiMessageVoiceGetSupportedMessagesOutput *self);
+

Atomically decrements the reference count of self + by one. +If the reference count drops to 0, self + is completely disposed.

+
+

Parameters

+
+++++ + + + + + +

self

a QmiMessageVoiceGetSupportedMessagesOutput.

 
+
+

Since: 1.14

+
+
+
+

qmi_message_voice_get_supported_messages_output_get_result ()

+
gboolean
+qmi_message_voice_get_supported_messages_output_get_result
+                               (QmiMessageVoiceGetSupportedMessagesOutput *self,
+                                GError **error);
+

Get the result of the QMI operation.

+
+

Parameters

+
+++++ + + + + + + + + + + + + +

self

a QmiMessageVoiceGetSupportedMessagesOutput.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the QMI operation succeeded, FALSE if error +is set.

+
+

Since: 1.14

+
+
+
+

qmi_message_voice_get_supported_messages_output_get_list ()

+
gboolean
+qmi_message_voice_get_supported_messages_output_get_list
+                               (QmiMessageVoiceGetSupportedMessagesOutput *self,
+                                GArray **value_list,
+                                GError **error);
+

Get the 'List' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageVoiceGetSupportedMessagesOutput.

 

value_list

a placeholder for the output GArray of guint8 elements, or NULL if not required. Do not free it, it is owned by self +.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.14

+
+
+
+

qmi_client_voice_get_supported_messages ()

+
void
+qmi_client_voice_get_supported_messages
+                               (QmiClientVoice *self,
+                                gpointer unused,
+                                guint timeout,
+                                GCancellable *cancellable,
+                                GAsyncReadyCallback callback,
+                                gpointer user_data);
+

Asynchronously sends a Get Supported Messages request to the device.

+

When the operation is finished, callback + will be invoked in the thread-default main loop of the thread you are calling this method from.

+

You can then call qmi_client_voice_get_supported_messages_finish() to get the result of the operation.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

self

a QmiClientVoice.

 

unused

NULL. This message doesn't have any input bundle.

 

timeout

maximum time to wait for the method to complete, in seconds.

 

cancellable

a GCancellable or NULL.

 

callback

a GAsyncReadyCallback to call when the request is satisfied.

 

user_data

user data to pass to callback +.

 
+
+

Since: 1.14

+
+
+
+

qmi_client_voice_get_supported_messages_finish ()

+
QmiMessageVoiceGetSupportedMessagesOutput *
+qmi_client_voice_get_supported_messages_finish
+                               (QmiClientVoice *self,
+                                GAsyncResult *res,
+                                GError **error);
+

Finishes an async operation started with qmi_client_voice_get_supported_messages().

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiClientVoice.

 

res

the GAsyncResult obtained from the GAsyncReadyCallback passed to qmi_client_voice_get_supported_messages().

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

a QmiMessageVoiceGetSupportedMessagesOutput, or NULL if error +is set. The returned value should be freed with qmi_message_voice_get_supported_messages_output_unref().

+
+

Since: 1.14

+
+
+
+

Types and Values

+
+

QmiMessageVoiceGetSupportedMessagesOutput

+
typedef struct _QmiMessageVoiceGetSupportedMessagesOutput QmiMessageVoiceGetSupportedMessagesOutput;
+

The QmiMessageVoiceGetSupportedMessagesOutput structure contains private data and should only be accessed +using the provided API.

+

Since: 1.14

+
+
+
+ + + \ No newline at end of file diff -Nru libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-WDA-enumerations-and-flags.html libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-WDA-enumerations-and-flags.html --- libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-WDA-enumerations-and-flags.html 2017-03-22 12:28:29.000000000 +0100 +++ libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-WDA-enumerations-and-flags.html 2019-01-08 15:19:02.000000000 +0100 @@ -3,12 +3,12 @@ WDA enumerations and flags: libqmi-glib Reference Manual - + - - + + @@ -21,7 +21,7 @@ Home Up Prev -Next +Next
@@ -78,7 +78,7 @@

Object Hierarchy

-
    GEnum
+
    GEnum
     ├── QmiWdaDataAggregationProtocol
     ╰── QmiWdaLinkLayerProtocol
 
@@ -114,7 +114,7 @@

Returns

-

a string with the nickname, or NULL if not found. Do not free the returned value.

+

a string with the nickname, or NULL if not found. Do not free the returned value.

[transfer none]

Since: 1.10

@@ -144,7 +144,7 @@

Returns

-

a string with the nickname, or NULL if not found. Do not free the returned value.

+

a string with the nickname, or NULL if not found. Do not free the returned value.

[transfer none]

Since: 1.10

@@ -253,6 +253,6 @@ +
Generated by GTK-Doc V1.29 \ No newline at end of file diff -Nru libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-WDA-Get-Data-Format.html libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-WDA-Get-Data-Format.html --- libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-WDA-Get-Data-Format.html 2017-03-22 12:28:29.000000000 +0100 +++ libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-WDA-Get-Data-Format.html 1970-01-01 01:00:00.000000000 +0100 @@ -1,676 +0,0 @@ - - - - -WDA Get Data Format: libqmi-glib Reference Manual - - - - - - - - - - - - - - - - -
-
-
- - -
-

WDA Get Data Format

-

WDA Get Data Format

-
- -
-

Types and Values

- -
-
-

Object Hierarchy

-
    GBoxed
-    ╰── QmiMessageWdaGetDataFormatOutput
-
-
-
-

Description

-
-
-

Functions

-
-

qmi_message_wda_get_data_format_output_ref ()

-
QmiMessageWdaGetDataFormatOutput *
-qmi_message_wda_get_data_format_output_ref
-                               (QmiMessageWdaGetDataFormatOutput *self);
-

Atomically increments the reference count of self - by one.

-
-

Parameters

-
----- - - - - - -

self

a QmiMessageWdaGetDataFormatOutput.

 
-
-
-

Returns

-

the new reference to self -.

-
-

Since: 1.10

-
-
-
-

qmi_message_wda_get_data_format_output_unref ()

-
void
-qmi_message_wda_get_data_format_output_unref
-                               (QmiMessageWdaGetDataFormatOutput *self);
-

Atomically decrements the reference count of self - by one. -If the reference count drops to 0, self - is completely disposed.

-
-

Parameters

-
----- - - - - - -

self

a QmiMessageWdaGetDataFormatOutput.

 
-
-

Since: 1.10

-
-
-
-

qmi_message_wda_get_data_format_output_get_result ()

-
gboolean
-qmi_message_wda_get_data_format_output_get_result
-                               (QmiMessageWdaGetDataFormatOutput *self,
-                                GError **error);
-

Get the result of the QMI operation.

-
-

Parameters

-
----- - - - - - - - - - - - - -

self

a QmiMessageWdaGetDataFormatOutput.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the QMI operation succeeded, FALSE if error -is set.

-
-

Since: 1.10

-
-
-
-

qmi_message_wda_get_data_format_output_get_qos_format ()

-
gboolean
-qmi_message_wda_get_data_format_output_get_qos_format
-                               (QmiMessageWdaGetDataFormatOutput *self,
-                                gboolean *value_qos_format,
-                                GError **error);
-

Get the 'QoS Format' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessageWdaGetDataFormatOutput.

 

value_qos_format

a placeholder for the output gboolean, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.10

-
-
-
-

qmi_message_wda_get_data_format_output_get_link_layer_protocol ()

-
gboolean
-qmi_message_wda_get_data_format_output_get_link_layer_protocol
-                               (QmiMessageWdaGetDataFormatOutput *self,
-                                QmiWdaLinkLayerProtocol *value_link_layer_protocol,
-                                GError **error);
-

Get the 'Link Layer Protocol' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessageWdaGetDataFormatOutput.

 

value_link_layer_protocol

a placeholder for the output QmiWdaLinkLayerProtocol, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.10

-
-
-
-

qmi_message_wda_get_data_format_output_get_uplink_data_aggregation_protocol ()

-
gboolean
-qmi_message_wda_get_data_format_output_get_uplink_data_aggregation_protocol
-                               (QmiMessageWdaGetDataFormatOutput *self,
-                                QmiWdaDataAggregationProtocol *value_uplink_data_aggregation_protocol,
-                                GError **error);
-

Get the 'Uplink Data Aggregation Protocol' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessageWdaGetDataFormatOutput.

 

value_uplink_data_aggregation_protocol

a placeholder for the output QmiWdaDataAggregationProtocol, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.10

-
-
-
-

qmi_message_wda_get_data_format_output_get_downlink_data_aggregation_protocol ()

-
gboolean
-qmi_message_wda_get_data_format_output_get_downlink_data_aggregation_protocol
-                               (QmiMessageWdaGetDataFormatOutput *self,
-                                QmiWdaDataAggregationProtocol *value_downlink_data_aggregation_protocol,
-                                GError **error);
-

Get the 'Downlink Data Aggregation Protocol' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessageWdaGetDataFormatOutput.

 

value_downlink_data_aggregation_protocol

a placeholder for the output QmiWdaDataAggregationProtocol, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.10

-
-
-
-

qmi_message_wda_get_data_format_output_get_ndp_signature ()

-
gboolean
-qmi_message_wda_get_data_format_output_get_ndp_signature
-                               (QmiMessageWdaGetDataFormatOutput *self,
-                                guint32 *value_ndp_signature,
-                                GError **error);
-

Get the 'NDP Signature' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessageWdaGetDataFormatOutput.

 

value_ndp_signature

a placeholder for the output guint32, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.10

-
-
-
-

qmi_message_wda_get_data_format_output_get_uplink_data_aggregation_max_size ()

-
gboolean
-qmi_message_wda_get_data_format_output_get_uplink_data_aggregation_max_size
-                               (QmiMessageWdaGetDataFormatOutput *self,
-                                guint32 *value_uplink_data_aggregation_max_size,
-                                GError **error);
-

Get the 'Uplink Data Aggregation Max Size' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessageWdaGetDataFormatOutput.

 

value_uplink_data_aggregation_max_size

a placeholder for the output guint32, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.10

-
-
-
-

qmi_message_wda_get_data_format_output_get_downlink_data_aggregation_max_size ()

-
gboolean
-qmi_message_wda_get_data_format_output_get_downlink_data_aggregation_max_size
-                               (QmiMessageWdaGetDataFormatOutput *self,
-                                guint32 *value_downlink_data_aggregation_max_size,
-                                GError **error);
-

Get the 'Downlink Data Aggregation Max Size' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessageWdaGetDataFormatOutput.

 

value_downlink_data_aggregation_max_size

a placeholder for the output guint32, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.10

-
-
-
-

qmi_client_wda_get_data_format ()

-
void
-qmi_client_wda_get_data_format (QmiClientWda *self,
-                                gpointer unused,
-                                guint timeout,
-                                GCancellable *cancellable,
-                                GAsyncReadyCallback callback,
-                                gpointer user_data);
-

Asynchronously sends a Get Data Format request to the device.

-

When the operation is finished, callback - will be invoked in the thread-default main loop of the thread you are calling this method from.

-

You can then call qmi_client_wda_get_data_format_finish() to get the result of the operation.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

self

a QmiClientWda.

 

unused

NULL. This message doesn't have any input bundle.

 

timeout

maximum time to wait for the method to complete, in seconds.

 

cancellable

a GCancellable or NULL.

 

callback

a GAsyncReadyCallback to call when the request is satisfied.

 

user_data

user data to pass to callback -.

 
-
-

Since: 1.10

-
-
-
-

qmi_client_wda_get_data_format_finish ()

-
QmiMessageWdaGetDataFormatOutput *
-qmi_client_wda_get_data_format_finish (QmiClientWda *self,
-                                       GAsyncResult *res,
-                                       GError **error);
-

Finishes an async operation started with qmi_client_wda_get_data_format().

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiClientWda.

 

res

the GAsyncResult obtained from the GAsyncReadyCallback passed to qmi_client_wda_get_data_format().

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

a QmiMessageWdaGetDataFormatOutput, or NULL if error -is set. The returned value should be freed with qmi_message_wda_get_data_format_output_unref().

-
-

Since: 1.10

-
-
-
-

Types and Values

-
-

QmiMessageWdaGetDataFormatOutput

-
typedef struct _QmiMessageWdaGetDataFormatOutput QmiMessageWdaGetDataFormatOutput;
-

The QmiMessageWdaGetDataFormatOutput structure contains private data and should only be accessed -using the provided API.

-

Since: 1.10

-
-
-
- - - \ No newline at end of file diff -Nru libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-WDA-Get-Data-Format-request.html libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-WDA-Get-Data-Format-request.html --- libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-WDA-Get-Data-Format-request.html 1970-01-01 01:00:00.000000000 +0100 +++ libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-WDA-Get-Data-Format-request.html 2019-01-08 15:19:02.000000000 +0100 @@ -0,0 +1,676 @@ + + + + +WDA Get Data Format request: libqmi-glib Reference Manual + + + + + + + + + + + + + + + + +
+
+
+ + +
+

WDA Get Data Format request

+

WDA Get Data Format request

+
+ +
+

Types and Values

+ +
+
+

Object Hierarchy

+
    GBoxed
+    ╰── QmiMessageWdaGetDataFormatOutput
+
+
+
+

Description

+
+
+

Functions

+
+

qmi_message_wda_get_data_format_output_ref ()

+
QmiMessageWdaGetDataFormatOutput *
+qmi_message_wda_get_data_format_output_ref
+                               (QmiMessageWdaGetDataFormatOutput *self);
+

Atomically increments the reference count of self + by one.

+
+

Parameters

+
+++++ + + + + + +

self

a QmiMessageWdaGetDataFormatOutput.

 
+
+
+

Returns

+

the new reference to self +.

+
+

Since: 1.10

+
+
+
+

qmi_message_wda_get_data_format_output_unref ()

+
void
+qmi_message_wda_get_data_format_output_unref
+                               (QmiMessageWdaGetDataFormatOutput *self);
+

Atomically decrements the reference count of self + by one. +If the reference count drops to 0, self + is completely disposed.

+
+

Parameters

+
+++++ + + + + + +

self

a QmiMessageWdaGetDataFormatOutput.

 
+
+

Since: 1.10

+
+
+
+

qmi_message_wda_get_data_format_output_get_result ()

+
gboolean
+qmi_message_wda_get_data_format_output_get_result
+                               (QmiMessageWdaGetDataFormatOutput *self,
+                                GError **error);
+

Get the result of the QMI operation.

+
+

Parameters

+
+++++ + + + + + + + + + + + + +

self

a QmiMessageWdaGetDataFormatOutput.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the QMI operation succeeded, FALSE if error +is set.

+
+

Since: 1.10

+
+
+
+

qmi_message_wda_get_data_format_output_get_qos_format ()

+
gboolean
+qmi_message_wda_get_data_format_output_get_qos_format
+                               (QmiMessageWdaGetDataFormatOutput *self,
+                                gboolean *value_qos_format,
+                                GError **error);
+

Get the 'QoS Format' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageWdaGetDataFormatOutput.

 

value_qos_format

a placeholder for the output gboolean, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.10

+
+
+
+

qmi_message_wda_get_data_format_output_get_link_layer_protocol ()

+
gboolean
+qmi_message_wda_get_data_format_output_get_link_layer_protocol
+                               (QmiMessageWdaGetDataFormatOutput *self,
+                                QmiWdaLinkLayerProtocol *value_link_layer_protocol,
+                                GError **error);
+

Get the 'Link Layer Protocol' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageWdaGetDataFormatOutput.

 

value_link_layer_protocol

a placeholder for the output QmiWdaLinkLayerProtocol, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.10

+
+
+
+

qmi_message_wda_get_data_format_output_get_uplink_data_aggregation_protocol ()

+
gboolean
+qmi_message_wda_get_data_format_output_get_uplink_data_aggregation_protocol
+                               (QmiMessageWdaGetDataFormatOutput *self,
+                                QmiWdaDataAggregationProtocol *value_uplink_data_aggregation_protocol,
+                                GError **error);
+

Get the 'Uplink Data Aggregation Protocol' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageWdaGetDataFormatOutput.

 

value_uplink_data_aggregation_protocol

a placeholder for the output QmiWdaDataAggregationProtocol, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.10

+
+
+
+

qmi_message_wda_get_data_format_output_get_downlink_data_aggregation_protocol ()

+
gboolean
+qmi_message_wda_get_data_format_output_get_downlink_data_aggregation_protocol
+                               (QmiMessageWdaGetDataFormatOutput *self,
+                                QmiWdaDataAggregationProtocol *value_downlink_data_aggregation_protocol,
+                                GError **error);
+

Get the 'Downlink Data Aggregation Protocol' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageWdaGetDataFormatOutput.

 

value_downlink_data_aggregation_protocol

a placeholder for the output QmiWdaDataAggregationProtocol, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.10

+
+
+
+

qmi_message_wda_get_data_format_output_get_ndp_signature ()

+
gboolean
+qmi_message_wda_get_data_format_output_get_ndp_signature
+                               (QmiMessageWdaGetDataFormatOutput *self,
+                                guint32 *value_ndp_signature,
+                                GError **error);
+

Get the 'NDP Signature' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageWdaGetDataFormatOutput.

 

value_ndp_signature

a placeholder for the output guint32, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.10

+
+
+
+

qmi_message_wda_get_data_format_output_get_uplink_data_aggregation_max_size ()

+
gboolean
+qmi_message_wda_get_data_format_output_get_uplink_data_aggregation_max_size
+                               (QmiMessageWdaGetDataFormatOutput *self,
+                                guint32 *value_uplink_data_aggregation_max_size,
+                                GError **error);
+

Get the 'Uplink Data Aggregation Max Size' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageWdaGetDataFormatOutput.

 

value_uplink_data_aggregation_max_size

a placeholder for the output guint32, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.10

+
+
+
+

qmi_message_wda_get_data_format_output_get_downlink_data_aggregation_max_size ()

+
gboolean
+qmi_message_wda_get_data_format_output_get_downlink_data_aggregation_max_size
+                               (QmiMessageWdaGetDataFormatOutput *self,
+                                guint32 *value_downlink_data_aggregation_max_size,
+                                GError **error);
+

Get the 'Downlink Data Aggregation Max Size' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageWdaGetDataFormatOutput.

 

value_downlink_data_aggregation_max_size

a placeholder for the output guint32, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.10

+
+
+
+

qmi_client_wda_get_data_format ()

+
void
+qmi_client_wda_get_data_format (QmiClientWda *self,
+                                gpointer unused,
+                                guint timeout,
+                                GCancellable *cancellable,
+                                GAsyncReadyCallback callback,
+                                gpointer user_data);
+

Asynchronously sends a Get Data Format request to the device.

+

When the operation is finished, callback + will be invoked in the thread-default main loop of the thread you are calling this method from.

+

You can then call qmi_client_wda_get_data_format_finish() to get the result of the operation.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

self

a QmiClientWda.

 

unused

NULL. This message doesn't have any input bundle.

 

timeout

maximum time to wait for the method to complete, in seconds.

 

cancellable

a GCancellable or NULL.

 

callback

a GAsyncReadyCallback to call when the request is satisfied.

 

user_data

user data to pass to callback +.

 
+
+

Since: 1.10

+
+
+
+

qmi_client_wda_get_data_format_finish ()

+
QmiMessageWdaGetDataFormatOutput *
+qmi_client_wda_get_data_format_finish (QmiClientWda *self,
+                                       GAsyncResult *res,
+                                       GError **error);
+

Finishes an async operation started with qmi_client_wda_get_data_format().

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiClientWda.

 

res

the GAsyncResult obtained from the GAsyncReadyCallback passed to qmi_client_wda_get_data_format().

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

a QmiMessageWdaGetDataFormatOutput, or NULL if error +is set. The returned value should be freed with qmi_message_wda_get_data_format_output_unref().

+
+

Since: 1.10

+
+
+
+

Types and Values

+
+

QmiMessageWdaGetDataFormatOutput

+
typedef struct _QmiMessageWdaGetDataFormatOutput QmiMessageWdaGetDataFormatOutput;
+

The QmiMessageWdaGetDataFormatOutput structure contains private data and should only be accessed +using the provided API.

+

Since: 1.10

+
+
+
+ + + \ No newline at end of file diff -Nru libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-WDA-Get-Supported-Messages.html libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-WDA-Get-Supported-Messages.html --- libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-WDA-Get-Supported-Messages.html 2017-03-22 12:28:29.000000000 +0100 +++ libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-WDA-Get-Supported-Messages.html 1970-01-01 01:00:00.000000000 +0100 @@ -1,372 +0,0 @@ - - - - -WDA Get Supported Messages: libqmi-glib Reference Manual - - - - - - - - - - - - - - - - -
-
-
- - -
-

WDA Get Supported Messages

-

WDA Get Supported Messages

-
- -
-

Types and Values

- -
-
-

Object Hierarchy

-
    GBoxed
-    ╰── QmiMessageWdaGetSupportedMessagesOutput
-
-
-
-

Description

-
-
-

Functions

-
-

qmi_message_wda_get_supported_messages_output_ref ()

-
QmiMessageWdaGetSupportedMessagesOutput *
-qmi_message_wda_get_supported_messages_output_ref
-                               (QmiMessageWdaGetSupportedMessagesOutput *self);
-

Atomically increments the reference count of self - by one.

-
-

Parameters

-
----- - - - - - -

self

a QmiMessageWdaGetSupportedMessagesOutput.

 
-
-
-

Returns

-

the new reference to self -.

-
-

Since: 1.14

-
-
-
-

qmi_message_wda_get_supported_messages_output_unref ()

-
void
-qmi_message_wda_get_supported_messages_output_unref
-                               (QmiMessageWdaGetSupportedMessagesOutput *self);
-

Atomically decrements the reference count of self - by one. -If the reference count drops to 0, self - is completely disposed.

-
-

Parameters

-
----- - - - - - -

self

a QmiMessageWdaGetSupportedMessagesOutput.

 
-
-

Since: 1.14

-
-
-
-

qmi_message_wda_get_supported_messages_output_get_result ()

-
gboolean
-qmi_message_wda_get_supported_messages_output_get_result
-                               (QmiMessageWdaGetSupportedMessagesOutput *self,
-                                GError **error);
-

Get the result of the QMI operation.

-
-

Parameters

-
----- - - - - - - - - - - - - -

self

a QmiMessageWdaGetSupportedMessagesOutput.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the QMI operation succeeded, FALSE if error -is set.

-
-

Since: 1.14

-
-
-
-

qmi_message_wda_get_supported_messages_output_get_list ()

-
gboolean
-qmi_message_wda_get_supported_messages_output_get_list
-                               (QmiMessageWdaGetSupportedMessagesOutput *self,
-                                GArray **value_list,
-                                GError **error);
-

Get the 'List' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessageWdaGetSupportedMessagesOutput.

 

value_list

a placeholder for the output GArray of guint8 elements, or NULL if not required. Do not free it, it is owned by self -.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.14

-
-
-
-

qmi_client_wda_get_supported_messages ()

-
void
-qmi_client_wda_get_supported_messages (QmiClientWda *self,
-                                       gpointer unused,
-                                       guint timeout,
-                                       GCancellable *cancellable,
-                                       GAsyncReadyCallback callback,
-                                       gpointer user_data);
-

Asynchronously sends a Get Supported Messages request to the device.

-

When the operation is finished, callback - will be invoked in the thread-default main loop of the thread you are calling this method from.

-

You can then call qmi_client_wda_get_supported_messages_finish() to get the result of the operation.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

self

a QmiClientWda.

 

unused

NULL. This message doesn't have any input bundle.

 

timeout

maximum time to wait for the method to complete, in seconds.

 

cancellable

a GCancellable or NULL.

 

callback

a GAsyncReadyCallback to call when the request is satisfied.

 

user_data

user data to pass to callback -.

 
-
-

Since: 1.14

-
-
-
-

qmi_client_wda_get_supported_messages_finish ()

-
QmiMessageWdaGetSupportedMessagesOutput *
-qmi_client_wda_get_supported_messages_finish
-                               (QmiClientWda *self,
-                                GAsyncResult *res,
-                                GError **error);
-

Finishes an async operation started with qmi_client_wda_get_supported_messages().

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiClientWda.

 

res

the GAsyncResult obtained from the GAsyncReadyCallback passed to qmi_client_wda_get_supported_messages().

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

a QmiMessageWdaGetSupportedMessagesOutput, or NULL if error -is set. The returned value should be freed with qmi_message_wda_get_supported_messages_output_unref().

-
-

Since: 1.14

-
-
-
-

Types and Values

-
-

QmiMessageWdaGetSupportedMessagesOutput

-
typedef struct _QmiMessageWdaGetSupportedMessagesOutput QmiMessageWdaGetSupportedMessagesOutput;
-

The QmiMessageWdaGetSupportedMessagesOutput structure contains private data and should only be accessed -using the provided API.

-

Since: 1.14

-
-
-
- - - \ No newline at end of file diff -Nru libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-WDA-Get-Supported-Messages-request.html libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-WDA-Get-Supported-Messages-request.html --- libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-WDA-Get-Supported-Messages-request.html 1970-01-01 01:00:00.000000000 +0100 +++ libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-WDA-Get-Supported-Messages-request.html 2019-01-08 15:19:02.000000000 +0100 @@ -0,0 +1,372 @@ + + + + +WDA Get Supported Messages request: libqmi-glib Reference Manual + + + + + + + + + + + + + + + + +
+
+
+ + +
+

WDA Get Supported Messages request

+

WDA Get Supported Messages request

+
+ +
+

Types and Values

+ +
+
+

Object Hierarchy

+
    GBoxed
+    ╰── QmiMessageWdaGetSupportedMessagesOutput
+
+
+
+

Description

+
+
+

Functions

+
+

qmi_message_wda_get_supported_messages_output_ref ()

+
QmiMessageWdaGetSupportedMessagesOutput *
+qmi_message_wda_get_supported_messages_output_ref
+                               (QmiMessageWdaGetSupportedMessagesOutput *self);
+

Atomically increments the reference count of self + by one.

+
+

Parameters

+
+++++ + + + + + +

self

a QmiMessageWdaGetSupportedMessagesOutput.

 
+
+
+

Returns

+

the new reference to self +.

+
+

Since: 1.14

+
+
+
+

qmi_message_wda_get_supported_messages_output_unref ()

+
void
+qmi_message_wda_get_supported_messages_output_unref
+                               (QmiMessageWdaGetSupportedMessagesOutput *self);
+

Atomically decrements the reference count of self + by one. +If the reference count drops to 0, self + is completely disposed.

+
+

Parameters

+
+++++ + + + + + +

self

a QmiMessageWdaGetSupportedMessagesOutput.

 
+
+

Since: 1.14

+
+
+
+

qmi_message_wda_get_supported_messages_output_get_result ()

+
gboolean
+qmi_message_wda_get_supported_messages_output_get_result
+                               (QmiMessageWdaGetSupportedMessagesOutput *self,
+                                GError **error);
+

Get the result of the QMI operation.

+
+

Parameters

+
+++++ + + + + + + + + + + + + +

self

a QmiMessageWdaGetSupportedMessagesOutput.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the QMI operation succeeded, FALSE if error +is set.

+
+

Since: 1.14

+
+
+
+

qmi_message_wda_get_supported_messages_output_get_list ()

+
gboolean
+qmi_message_wda_get_supported_messages_output_get_list
+                               (QmiMessageWdaGetSupportedMessagesOutput *self,
+                                GArray **value_list,
+                                GError **error);
+

Get the 'List' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageWdaGetSupportedMessagesOutput.

 

value_list

a placeholder for the output GArray of guint8 elements, or NULL if not required. Do not free it, it is owned by self +.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.14

+
+
+
+

qmi_client_wda_get_supported_messages ()

+
void
+qmi_client_wda_get_supported_messages (QmiClientWda *self,
+                                       gpointer unused,
+                                       guint timeout,
+                                       GCancellable *cancellable,
+                                       GAsyncReadyCallback callback,
+                                       gpointer user_data);
+

Asynchronously sends a Get Supported Messages request to the device.

+

When the operation is finished, callback + will be invoked in the thread-default main loop of the thread you are calling this method from.

+

You can then call qmi_client_wda_get_supported_messages_finish() to get the result of the operation.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

self

a QmiClientWda.

 

unused

NULL. This message doesn't have any input bundle.

 

timeout

maximum time to wait for the method to complete, in seconds.

 

cancellable

a GCancellable or NULL.

 

callback

a GAsyncReadyCallback to call when the request is satisfied.

 

user_data

user data to pass to callback +.

 
+
+

Since: 1.14

+
+
+
+

qmi_client_wda_get_supported_messages_finish ()

+
QmiMessageWdaGetSupportedMessagesOutput *
+qmi_client_wda_get_supported_messages_finish
+                               (QmiClientWda *self,
+                                GAsyncResult *res,
+                                GError **error);
+

Finishes an async operation started with qmi_client_wda_get_supported_messages().

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiClientWda.

 

res

the GAsyncResult obtained from the GAsyncReadyCallback passed to qmi_client_wda_get_supported_messages().

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

a QmiMessageWdaGetSupportedMessagesOutput, or NULL if error +is set. The returned value should be freed with qmi_message_wda_get_supported_messages_output_unref().

+
+

Since: 1.14

+
+
+
+

Types and Values

+
+

QmiMessageWdaGetSupportedMessagesOutput

+
typedef struct _QmiMessageWdaGetSupportedMessagesOutput QmiMessageWdaGetSupportedMessagesOutput;
+

The QmiMessageWdaGetSupportedMessagesOutput structure contains private data and should only be accessed +using the provided API.

+

Since: 1.14

+
+
+
+ + + \ No newline at end of file diff -Nru libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-WDA-Set-Data-Format.html libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-WDA-Set-Data-Format.html --- libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-WDA-Set-Data-Format.html 2017-03-22 12:28:29.000000000 +0100 +++ libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-WDA-Set-Data-Format.html 1970-01-01 01:00:00.000000000 +0100 @@ -1,1613 +0,0 @@ - - - - -WDA Set Data Format: libqmi-glib Reference Manual - - - - - - - - - - - - - - - - -
-
-
- - -
-

WDA Set Data Format

-

WDA Set Data Format

-
-
-

Functions

-
---- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
-QmiMessageWdaSetDataFormatInput * - -qmi_message_wda_set_data_format_input_new () -
-QmiMessageWdaSetDataFormatInput * - -qmi_message_wda_set_data_format_input_ref () -
-void - -qmi_message_wda_set_data_format_input_unref () -
-gboolean - -qmi_message_wda_set_data_format_input_get_endpoint_info () -
-gboolean - -qmi_message_wda_set_data_format_input_set_endpoint_info () -
-gboolean - -qmi_message_wda_set_data_format_input_get_downlink_data_aggregation_max_size () -
-gboolean - -qmi_message_wda_set_data_format_input_set_downlink_data_aggregation_max_size () -
-gboolean - -qmi_message_wda_set_data_format_input_get_downlink_data_aggregation_max_datagrams () -
-gboolean - -qmi_message_wda_set_data_format_input_set_downlink_data_aggregation_max_datagrams () -
-gboolean - -qmi_message_wda_set_data_format_input_get_ndp_signature () -
-gboolean - -qmi_message_wda_set_data_format_input_set_ndp_signature () -
-gboolean - -qmi_message_wda_set_data_format_input_get_downlink_data_aggregation_protocol () -
-gboolean - -qmi_message_wda_set_data_format_input_set_downlink_data_aggregation_protocol () -
-gboolean - -qmi_message_wda_set_data_format_input_get_uplink_data_aggregation_protocol () -
-gboolean - -qmi_message_wda_set_data_format_input_set_uplink_data_aggregation_protocol () -
-gboolean - -qmi_message_wda_set_data_format_input_get_link_layer_protocol () -
-gboolean - -qmi_message_wda_set_data_format_input_set_link_layer_protocol () -
-gboolean - -qmi_message_wda_set_data_format_input_get_qos_format () -
-gboolean - -qmi_message_wda_set_data_format_input_set_qos_format () -
-QmiMessageWdaSetDataFormatOutput * - -qmi_message_wda_set_data_format_output_ref () -
-void - -qmi_message_wda_set_data_format_output_unref () -
-gboolean - -qmi_message_wda_set_data_format_output_get_result () -
-gboolean - -qmi_message_wda_set_data_format_output_get_qos_format () -
-gboolean - -qmi_message_wda_set_data_format_output_get_link_layer_protocol () -
-gboolean - -qmi_message_wda_set_data_format_output_get_uplink_data_aggregation_protocol () -
-gboolean - -qmi_message_wda_set_data_format_output_get_downlink_data_aggregation_protocol () -
-gboolean - -qmi_message_wda_set_data_format_output_get_ndp_signature () -
-gboolean - -qmi_message_wda_set_data_format_output_get_downlink_data_aggregation_max_datagrams () -
-gboolean - -qmi_message_wda_set_data_format_output_get_downlink_data_aggregation_max_size () -
-void - -qmi_client_wda_set_data_format () -
-QmiMessageWdaSetDataFormatOutput * - -qmi_client_wda_set_data_format_finish () -
-
-
-

Types and Values

- -
-
-

Object Hierarchy

-
    GBoxed
-    ├── QmiMessageWdaSetDataFormatInput
-    ╰── QmiMessageWdaSetDataFormatOutput
-
-
-
-

Description

-
-
-

Functions

-
-

qmi_message_wda_set_data_format_input_new ()

-
QmiMessageWdaSetDataFormatInput *
-qmi_message_wda_set_data_format_input_new
-                               (void);
-

Allocates a new QmiMessageWdaSetDataFormatInput.

-
-

Returns

-

the newly created QmiMessageWdaSetDataFormatInput. The returned value should be freed with qmi_message_wda_set_data_format_input_unref().

-
-

Since: 1.10

-
-
-
-

qmi_message_wda_set_data_format_input_ref ()

-
QmiMessageWdaSetDataFormatInput *
-qmi_message_wda_set_data_format_input_ref
-                               (QmiMessageWdaSetDataFormatInput *self);
-

Atomically increments the reference count of self - by one.

-
-

Parameters

-
----- - - - - - -

self

a QmiMessageWdaSetDataFormatInput.

 
-
-
-

Returns

-

the new reference to self -.

-
-

Since: 1.10

-
-
-
-

qmi_message_wda_set_data_format_input_unref ()

-
void
-qmi_message_wda_set_data_format_input_unref
-                               (QmiMessageWdaSetDataFormatInput *self);
-

Atomically decrements the reference count of self - by one. -If the reference count drops to 0, self - is completely disposed.

-
-

Parameters

-
----- - - - - - -

self

a QmiMessageWdaSetDataFormatInput.

 
-
-

Since: 1.10

-
-
-
-

qmi_message_wda_set_data_format_input_get_endpoint_info ()

-
gboolean
-qmi_message_wda_set_data_format_input_get_endpoint_info
-                               (QmiMessageWdaSetDataFormatInput *self,
-                                QmiDataEndpointType *value_endpoint_info_endpoint_type,
-                                guint32 *value_endpoint_info_interface_number,
-                                GError **error);
-

Get the 'Endpoint Info' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - - - - - - -

self

a QmiMessageWdaSetDataFormatInput.

 

value_endpoint_info_endpoint_type

a placeholder for the output QmiDataEndpointType, or NULL if not required.

 

value_endpoint_info_interface_number

a placeholder for the output guint32, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.18

-
-
-
-

qmi_message_wda_set_data_format_input_set_endpoint_info ()

-
gboolean
-qmi_message_wda_set_data_format_input_set_endpoint_info
-                               (QmiMessageWdaSetDataFormatInput *self,
-                                QmiDataEndpointType value_endpoint_info_endpoint_type,
-                                guint32 value_endpoint_info_interface_number,
-                                GError **error);
-

Set the 'Endpoint Info' field in the message.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - - - - - - -

self

a QmiMessageWdaSetDataFormatInput.

 

value_endpoint_info_endpoint_type

a QmiDataEndpointType.

 

value_endpoint_info_interface_number

a guint32.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if value -was successfully set, FALSE otherwise.

-
-

Since: 1.18

-
-
-
-

qmi_message_wda_set_data_format_input_get_downlink_data_aggregation_max_size ()

-
gboolean
-qmi_message_wda_set_data_format_input_get_downlink_data_aggregation_max_size
-                               (QmiMessageWdaSetDataFormatInput *self,
-                                guint32 *value_downlink_data_aggregation_max_size,
-                                GError **error);
-

Get the 'Downlink Data Aggregation Max Size' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessageWdaSetDataFormatInput.

 

value_downlink_data_aggregation_max_size

a placeholder for the output guint32, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.10

-
-
-
-

qmi_message_wda_set_data_format_input_set_downlink_data_aggregation_max_size ()

-
gboolean
-qmi_message_wda_set_data_format_input_set_downlink_data_aggregation_max_size
-                               (QmiMessageWdaSetDataFormatInput *self,
-                                guint32 value_downlink_data_aggregation_max_size,
-                                GError **error);
-

Set the 'Downlink Data Aggregation Max Size' field in the message.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessageWdaSetDataFormatInput.

 

value_downlink_data_aggregation_max_size

a guint32.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if value -was successfully set, FALSE otherwise.

-
-

Since: 1.10

-
-
-
-

qmi_message_wda_set_data_format_input_get_downlink_data_aggregation_max_datagrams ()

-
gboolean
-qmi_message_wda_set_data_format_input_get_downlink_data_aggregation_max_datagrams
-                               (QmiMessageWdaSetDataFormatInput *self,
-                                guint32 *value_downlink_data_aggregation_max_datagrams,
-                                GError **error);
-

Get the 'Downlink Data Aggregation Max Datagrams' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessageWdaSetDataFormatInput.

 

value_downlink_data_aggregation_max_datagrams

a placeholder for the output guint32, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.10

-
-
-
-

qmi_message_wda_set_data_format_input_set_downlink_data_aggregation_max_datagrams ()

-
gboolean
-qmi_message_wda_set_data_format_input_set_downlink_data_aggregation_max_datagrams
-                               (QmiMessageWdaSetDataFormatInput *self,
-                                guint32 value_downlink_data_aggregation_max_datagrams,
-                                GError **error);
-

Set the 'Downlink Data Aggregation Max Datagrams' field in the message.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessageWdaSetDataFormatInput.

 

value_downlink_data_aggregation_max_datagrams

a guint32.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if value -was successfully set, FALSE otherwise.

-
-

Since: 1.10

-
-
-
-

qmi_message_wda_set_data_format_input_get_ndp_signature ()

-
gboolean
-qmi_message_wda_set_data_format_input_get_ndp_signature
-                               (QmiMessageWdaSetDataFormatInput *self,
-                                guint32 *value_ndp_signature,
-                                GError **error);
-

Get the 'NDP Signature' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessageWdaSetDataFormatInput.

 

value_ndp_signature

a placeholder for the output guint32, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.10

-
-
-
-

qmi_message_wda_set_data_format_input_set_ndp_signature ()

-
gboolean
-qmi_message_wda_set_data_format_input_set_ndp_signature
-                               (QmiMessageWdaSetDataFormatInput *self,
-                                guint32 value_ndp_signature,
-                                GError **error);
-

Set the 'NDP Signature' field in the message.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessageWdaSetDataFormatInput.

 

value_ndp_signature

a guint32.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if value -was successfully set, FALSE otherwise.

-
-

Since: 1.10

-
-
-
-

qmi_message_wda_set_data_format_input_get_downlink_data_aggregation_protocol ()

-
gboolean
-qmi_message_wda_set_data_format_input_get_downlink_data_aggregation_protocol
-                               (QmiMessageWdaSetDataFormatInput *self,
-                                QmiWdaDataAggregationProtocol *value_downlink_data_aggregation_protocol,
-                                GError **error);
-

Get the 'Downlink Data Aggregation Protocol' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessageWdaSetDataFormatInput.

 

value_downlink_data_aggregation_protocol

a placeholder for the output QmiWdaDataAggregationProtocol, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.10

-
-
-
-

qmi_message_wda_set_data_format_input_set_downlink_data_aggregation_protocol ()

-
gboolean
-qmi_message_wda_set_data_format_input_set_downlink_data_aggregation_protocol
-                               (QmiMessageWdaSetDataFormatInput *self,
-                                QmiWdaDataAggregationProtocol value_downlink_data_aggregation_protocol,
-                                GError **error);
-

Set the 'Downlink Data Aggregation Protocol' field in the message.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessageWdaSetDataFormatInput.

 

value_downlink_data_aggregation_protocol

a QmiWdaDataAggregationProtocol.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if value -was successfully set, FALSE otherwise.

-
-

Since: 1.10

-
-
-
-

qmi_message_wda_set_data_format_input_get_uplink_data_aggregation_protocol ()

-
gboolean
-qmi_message_wda_set_data_format_input_get_uplink_data_aggregation_protocol
-                               (QmiMessageWdaSetDataFormatInput *self,
-                                QmiWdaDataAggregationProtocol *value_uplink_data_aggregation_protocol,
-                                GError **error);
-

Get the 'Uplink Data Aggregation Protocol' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessageWdaSetDataFormatInput.

 

value_uplink_data_aggregation_protocol

a placeholder for the output QmiWdaDataAggregationProtocol, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.10

-
-
-
-

qmi_message_wda_set_data_format_input_set_uplink_data_aggregation_protocol ()

-
gboolean
-qmi_message_wda_set_data_format_input_set_uplink_data_aggregation_protocol
-                               (QmiMessageWdaSetDataFormatInput *self,
-                                QmiWdaDataAggregationProtocol value_uplink_data_aggregation_protocol,
-                                GError **error);
-

Set the 'Uplink Data Aggregation Protocol' field in the message.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessageWdaSetDataFormatInput.

 

value_uplink_data_aggregation_protocol

a QmiWdaDataAggregationProtocol.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if value -was successfully set, FALSE otherwise.

-
-

Since: 1.10

-
-
-
-

qmi_message_wda_set_data_format_input_get_link_layer_protocol ()

-
gboolean
-qmi_message_wda_set_data_format_input_get_link_layer_protocol
-                               (QmiMessageWdaSetDataFormatInput *self,
-                                QmiWdaLinkLayerProtocol *value_link_layer_protocol,
-                                GError **error);
-

Get the 'Link Layer Protocol' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessageWdaSetDataFormatInput.

 

value_link_layer_protocol

a placeholder for the output QmiWdaLinkLayerProtocol, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.10

-
-
-
-

qmi_message_wda_set_data_format_input_set_link_layer_protocol ()

-
gboolean
-qmi_message_wda_set_data_format_input_set_link_layer_protocol
-                               (QmiMessageWdaSetDataFormatInput *self,
-                                QmiWdaLinkLayerProtocol value_link_layer_protocol,
-                                GError **error);
-

Set the 'Link Layer Protocol' field in the message.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessageWdaSetDataFormatInput.

 

value_link_layer_protocol

a QmiWdaLinkLayerProtocol.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if value -was successfully set, FALSE otherwise.

-
-

Since: 1.10

-
-
-
-

qmi_message_wda_set_data_format_input_get_qos_format ()

-
gboolean
-qmi_message_wda_set_data_format_input_get_qos_format
-                               (QmiMessageWdaSetDataFormatInput *self,
-                                gboolean *value_qos_format,
-                                GError **error);
-

Get the 'QoS Format' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessageWdaSetDataFormatInput.

 

value_qos_format

a placeholder for the output gboolean, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.10

-
-
-
-

qmi_message_wda_set_data_format_input_set_qos_format ()

-
gboolean
-qmi_message_wda_set_data_format_input_set_qos_format
-                               (QmiMessageWdaSetDataFormatInput *self,
-                                gboolean value_qos_format,
-                                GError **error);
-

Set the 'QoS Format' field in the message.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessageWdaSetDataFormatInput.

 

value_qos_format

a gboolean.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if value -was successfully set, FALSE otherwise.

-
-

Since: 1.10

-
-
-
-

qmi_message_wda_set_data_format_output_ref ()

-
QmiMessageWdaSetDataFormatOutput *
-qmi_message_wda_set_data_format_output_ref
-                               (QmiMessageWdaSetDataFormatOutput *self);
-

Atomically increments the reference count of self - by one.

-
-

Parameters

-
----- - - - - - -

self

a QmiMessageWdaSetDataFormatOutput.

 
-
-
-

Returns

-

the new reference to self -.

-
-

Since: 1.10

-
-
-
-

qmi_message_wda_set_data_format_output_unref ()

-
void
-qmi_message_wda_set_data_format_output_unref
-                               (QmiMessageWdaSetDataFormatOutput *self);
-

Atomically decrements the reference count of self - by one. -If the reference count drops to 0, self - is completely disposed.

-
-

Parameters

-
----- - - - - - -

self

a QmiMessageWdaSetDataFormatOutput.

 
-
-

Since: 1.10

-
-
-
-

qmi_message_wda_set_data_format_output_get_result ()

-
gboolean
-qmi_message_wda_set_data_format_output_get_result
-                               (QmiMessageWdaSetDataFormatOutput *self,
-                                GError **error);
-

Get the result of the QMI operation.

-
-

Parameters

-
----- - - - - - - - - - - - - -

self

a QmiMessageWdaSetDataFormatOutput.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the QMI operation succeeded, FALSE if error -is set.

-
-

Since: 1.10

-
-
-
-

qmi_message_wda_set_data_format_output_get_qos_format ()

-
gboolean
-qmi_message_wda_set_data_format_output_get_qos_format
-                               (QmiMessageWdaSetDataFormatOutput *self,
-                                gboolean *value_qos_format,
-                                GError **error);
-

Get the 'QoS Format' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessageWdaSetDataFormatOutput.

 

value_qos_format

a placeholder for the output gboolean, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.10

-
-
-
-

qmi_message_wda_set_data_format_output_get_link_layer_protocol ()

-
gboolean
-qmi_message_wda_set_data_format_output_get_link_layer_protocol
-                               (QmiMessageWdaSetDataFormatOutput *self,
-                                QmiWdaLinkLayerProtocol *value_link_layer_protocol,
-                                GError **error);
-

Get the 'Link Layer Protocol' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessageWdaSetDataFormatOutput.

 

value_link_layer_protocol

a placeholder for the output QmiWdaLinkLayerProtocol, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.10

-
-
-
-

qmi_message_wda_set_data_format_output_get_uplink_data_aggregation_protocol ()

-
gboolean
-qmi_message_wda_set_data_format_output_get_uplink_data_aggregation_protocol
-                               (QmiMessageWdaSetDataFormatOutput *self,
-                                QmiWdaDataAggregationProtocol *value_uplink_data_aggregation_protocol,
-                                GError **error);
-

Get the 'Uplink Data Aggregation Protocol' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessageWdaSetDataFormatOutput.

 

value_uplink_data_aggregation_protocol

a placeholder for the output QmiWdaDataAggregationProtocol, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.10

-
-
-
-

qmi_message_wda_set_data_format_output_get_downlink_data_aggregation_protocol ()

-
gboolean
-qmi_message_wda_set_data_format_output_get_downlink_data_aggregation_protocol
-                               (QmiMessageWdaSetDataFormatOutput *self,
-                                QmiWdaDataAggregationProtocol *value_downlink_data_aggregation_protocol,
-                                GError **error);
-

Get the 'Downlink Data Aggregation Protocol' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessageWdaSetDataFormatOutput.

 

value_downlink_data_aggregation_protocol

a placeholder for the output QmiWdaDataAggregationProtocol, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.10

-
-
-
-

qmi_message_wda_set_data_format_output_get_ndp_signature ()

-
gboolean
-qmi_message_wda_set_data_format_output_get_ndp_signature
-                               (QmiMessageWdaSetDataFormatOutput *self,
-                                guint32 *value_ndp_signature,
-                                GError **error);
-

Get the 'NDP Signature' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessageWdaSetDataFormatOutput.

 

value_ndp_signature

a placeholder for the output guint32, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.10

-
-
-
-

qmi_message_wda_set_data_format_output_get_downlink_data_aggregation_max_datagrams ()

-
gboolean
-qmi_message_wda_set_data_format_output_get_downlink_data_aggregation_max_datagrams
-                               (QmiMessageWdaSetDataFormatOutput *self,
-                                guint32 *value_downlink_data_aggregation_max_datagrams,
-                                GError **error);
-

Get the 'Downlink Data Aggregation Max Datagrams' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessageWdaSetDataFormatOutput.

 

value_downlink_data_aggregation_max_datagrams

a placeholder for the output guint32, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.10

-
-
-
-

qmi_message_wda_set_data_format_output_get_downlink_data_aggregation_max_size ()

-
gboolean
-qmi_message_wda_set_data_format_output_get_downlink_data_aggregation_max_size
-                               (QmiMessageWdaSetDataFormatOutput *self,
-                                guint32 *value_downlink_data_aggregation_max_size,
-                                GError **error);
-

Get the 'Downlink Data Aggregation Max Size' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessageWdaSetDataFormatOutput.

 

value_downlink_data_aggregation_max_size

a placeholder for the output guint32, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.10

-
-
-
-

qmi_client_wda_set_data_format ()

-
void
-qmi_client_wda_set_data_format (QmiClientWda *self,
-                                QmiMessageWdaSetDataFormatInput *input,
-                                guint timeout,
-                                GCancellable *cancellable,
-                                GAsyncReadyCallback callback,
-                                gpointer user_data);
-

Asynchronously sends a Set Data Format request to the device.

-

When the operation is finished, callback - will be invoked in the thread-default main loop of the thread you are calling this method from.

-

You can then call qmi_client_wda_set_data_format_finish() to get the result of the operation.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

self

a QmiClientWda.

 

input

a QmiMessageWdaSetDataFormatInput.

 

timeout

maximum time to wait for the method to complete, in seconds.

 

cancellable

a GCancellable or NULL.

 

callback

a GAsyncReadyCallback to call when the request is satisfied.

 

user_data

user data to pass to callback -.

 
-
-

Since: 1.10

-
-
-
-

qmi_client_wda_set_data_format_finish ()

-
QmiMessageWdaSetDataFormatOutput *
-qmi_client_wda_set_data_format_finish (QmiClientWda *self,
-                                       GAsyncResult *res,
-                                       GError **error);
-

Finishes an async operation started with qmi_client_wda_set_data_format().

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiClientWda.

 

res

the GAsyncResult obtained from the GAsyncReadyCallback passed to qmi_client_wda_set_data_format().

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

a QmiMessageWdaSetDataFormatOutput, or NULL if error -is set. The returned value should be freed with qmi_message_wda_set_data_format_output_unref().

-
-

Since: 1.10

-
-
-
-

Types and Values

-
-

QmiMessageWdaSetDataFormatInput

-
typedef struct _QmiMessageWdaSetDataFormatInput QmiMessageWdaSetDataFormatInput;
-

The QmiMessageWdaSetDataFormatInput structure contains private data and should only be accessed -using the provided API.

-

Since: 1.10

-
-
-
-

QmiMessageWdaSetDataFormatOutput

-
typedef struct _QmiMessageWdaSetDataFormatOutput QmiMessageWdaSetDataFormatOutput;
-

The QmiMessageWdaSetDataFormatOutput structure contains private data and should only be accessed -using the provided API.

-

Since: 1.10

-
-
-
- - - \ No newline at end of file diff -Nru libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-WDA-Set-Data-Format-request.html libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-WDA-Set-Data-Format-request.html --- libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-WDA-Set-Data-Format-request.html 1970-01-01 01:00:00.000000000 +0100 +++ libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-WDA-Set-Data-Format-request.html 2019-01-08 15:19:02.000000000 +0100 @@ -0,0 +1,1613 @@ + + + + +WDA Set Data Format request: libqmi-glib Reference Manual + + + + + + + + + + + + + + + + +
+
+
+ + +
+

WDA Set Data Format request

+

WDA Set Data Format request

+
+
+

Functions

+
++++ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+QmiMessageWdaSetDataFormatInput * + +qmi_message_wda_set_data_format_input_new () +
+QmiMessageWdaSetDataFormatInput * + +qmi_message_wda_set_data_format_input_ref () +
+void + +qmi_message_wda_set_data_format_input_unref () +
+gboolean + +qmi_message_wda_set_data_format_input_get_endpoint_info () +
+gboolean + +qmi_message_wda_set_data_format_input_set_endpoint_info () +
+gboolean + +qmi_message_wda_set_data_format_input_get_downlink_data_aggregation_max_size () +
+gboolean + +qmi_message_wda_set_data_format_input_set_downlink_data_aggregation_max_size () +
+gboolean + +qmi_message_wda_set_data_format_input_get_downlink_data_aggregation_max_datagrams () +
+gboolean + +qmi_message_wda_set_data_format_input_set_downlink_data_aggregation_max_datagrams () +
+gboolean + +qmi_message_wda_set_data_format_input_get_ndp_signature () +
+gboolean + +qmi_message_wda_set_data_format_input_set_ndp_signature () +
+gboolean + +qmi_message_wda_set_data_format_input_get_downlink_data_aggregation_protocol () +
+gboolean + +qmi_message_wda_set_data_format_input_set_downlink_data_aggregation_protocol () +
+gboolean + +qmi_message_wda_set_data_format_input_get_uplink_data_aggregation_protocol () +
+gboolean + +qmi_message_wda_set_data_format_input_set_uplink_data_aggregation_protocol () +
+gboolean + +qmi_message_wda_set_data_format_input_get_link_layer_protocol () +
+gboolean + +qmi_message_wda_set_data_format_input_set_link_layer_protocol () +
+gboolean + +qmi_message_wda_set_data_format_input_get_qos_format () +
+gboolean + +qmi_message_wda_set_data_format_input_set_qos_format () +
+QmiMessageWdaSetDataFormatOutput * + +qmi_message_wda_set_data_format_output_ref () +
+void + +qmi_message_wda_set_data_format_output_unref () +
+gboolean + +qmi_message_wda_set_data_format_output_get_result () +
+gboolean + +qmi_message_wda_set_data_format_output_get_qos_format () +
+gboolean + +qmi_message_wda_set_data_format_output_get_link_layer_protocol () +
+gboolean + +qmi_message_wda_set_data_format_output_get_uplink_data_aggregation_protocol () +
+gboolean + +qmi_message_wda_set_data_format_output_get_downlink_data_aggregation_protocol () +
+gboolean + +qmi_message_wda_set_data_format_output_get_ndp_signature () +
+gboolean + +qmi_message_wda_set_data_format_output_get_downlink_data_aggregation_max_datagrams () +
+gboolean + +qmi_message_wda_set_data_format_output_get_downlink_data_aggregation_max_size () +
+void + +qmi_client_wda_set_data_format () +
+QmiMessageWdaSetDataFormatOutput * + +qmi_client_wda_set_data_format_finish () +
+
+
+

Types and Values

+ +
+
+

Object Hierarchy

+
    GBoxed
+    ├── QmiMessageWdaSetDataFormatInput
+    ╰── QmiMessageWdaSetDataFormatOutput
+
+
+
+

Description

+
+
+

Functions

+
+

qmi_message_wda_set_data_format_input_new ()

+
QmiMessageWdaSetDataFormatInput *
+qmi_message_wda_set_data_format_input_new
+                               (void);
+

Allocates a new QmiMessageWdaSetDataFormatInput.

+
+

Returns

+

the newly created QmiMessageWdaSetDataFormatInput. The returned value should be freed with qmi_message_wda_set_data_format_input_unref().

+
+

Since: 1.10

+
+
+
+

qmi_message_wda_set_data_format_input_ref ()

+
QmiMessageWdaSetDataFormatInput *
+qmi_message_wda_set_data_format_input_ref
+                               (QmiMessageWdaSetDataFormatInput *self);
+

Atomically increments the reference count of self + by one.

+
+

Parameters

+
+++++ + + + + + +

self

a QmiMessageWdaSetDataFormatInput.

 
+
+
+

Returns

+

the new reference to self +.

+
+

Since: 1.10

+
+
+
+

qmi_message_wda_set_data_format_input_unref ()

+
void
+qmi_message_wda_set_data_format_input_unref
+                               (QmiMessageWdaSetDataFormatInput *self);
+

Atomically decrements the reference count of self + by one. +If the reference count drops to 0, self + is completely disposed.

+
+

Parameters

+
+++++ + + + + + +

self

a QmiMessageWdaSetDataFormatInput.

 
+
+

Since: 1.10

+
+
+
+

qmi_message_wda_set_data_format_input_get_endpoint_info ()

+
gboolean
+qmi_message_wda_set_data_format_input_get_endpoint_info
+                               (QmiMessageWdaSetDataFormatInput *self,
+                                QmiDataEndpointType *value_endpoint_info_endpoint_type,
+                                guint32 *value_endpoint_info_interface_number,
+                                GError **error);
+

Get the 'Endpoint Info' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + + + + + + +

self

a QmiMessageWdaSetDataFormatInput.

 

value_endpoint_info_endpoint_type

a placeholder for the output QmiDataEndpointType, or NULL if not required.

 

value_endpoint_info_interface_number

a placeholder for the output guint32, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.18

+
+
+
+

qmi_message_wda_set_data_format_input_set_endpoint_info ()

+
gboolean
+qmi_message_wda_set_data_format_input_set_endpoint_info
+                               (QmiMessageWdaSetDataFormatInput *self,
+                                QmiDataEndpointType value_endpoint_info_endpoint_type,
+                                guint32 value_endpoint_info_interface_number,
+                                GError **error);
+

Set the 'Endpoint Info' field in the message.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + + + + + + +

self

a QmiMessageWdaSetDataFormatInput.

 

value_endpoint_info_endpoint_type

a QmiDataEndpointType.

 

value_endpoint_info_interface_number

a guint32.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if value +was successfully set, FALSE otherwise.

+
+

Since: 1.18

+
+
+
+

qmi_message_wda_set_data_format_input_get_downlink_data_aggregation_max_size ()

+
gboolean
+qmi_message_wda_set_data_format_input_get_downlink_data_aggregation_max_size
+                               (QmiMessageWdaSetDataFormatInput *self,
+                                guint32 *value_downlink_data_aggregation_max_size,
+                                GError **error);
+

Get the 'Downlink Data Aggregation Max Size' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageWdaSetDataFormatInput.

 

value_downlink_data_aggregation_max_size

a placeholder for the output guint32, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.10

+
+
+
+

qmi_message_wda_set_data_format_input_set_downlink_data_aggregation_max_size ()

+
gboolean
+qmi_message_wda_set_data_format_input_set_downlink_data_aggregation_max_size
+                               (QmiMessageWdaSetDataFormatInput *self,
+                                guint32 value_downlink_data_aggregation_max_size,
+                                GError **error);
+

Set the 'Downlink Data Aggregation Max Size' field in the message.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageWdaSetDataFormatInput.

 

value_downlink_data_aggregation_max_size

a guint32.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if value +was successfully set, FALSE otherwise.

+
+

Since: 1.10

+
+
+
+

qmi_message_wda_set_data_format_input_get_downlink_data_aggregation_max_datagrams ()

+
gboolean
+qmi_message_wda_set_data_format_input_get_downlink_data_aggregation_max_datagrams
+                               (QmiMessageWdaSetDataFormatInput *self,
+                                guint32 *value_downlink_data_aggregation_max_datagrams,
+                                GError **error);
+

Get the 'Downlink Data Aggregation Max Datagrams' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageWdaSetDataFormatInput.

 

value_downlink_data_aggregation_max_datagrams

a placeholder for the output guint32, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.10

+
+
+
+

qmi_message_wda_set_data_format_input_set_downlink_data_aggregation_max_datagrams ()

+
gboolean
+qmi_message_wda_set_data_format_input_set_downlink_data_aggregation_max_datagrams
+                               (QmiMessageWdaSetDataFormatInput *self,
+                                guint32 value_downlink_data_aggregation_max_datagrams,
+                                GError **error);
+

Set the 'Downlink Data Aggregation Max Datagrams' field in the message.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageWdaSetDataFormatInput.

 

value_downlink_data_aggregation_max_datagrams

a guint32.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if value +was successfully set, FALSE otherwise.

+
+

Since: 1.10

+
+
+
+

qmi_message_wda_set_data_format_input_get_ndp_signature ()

+
gboolean
+qmi_message_wda_set_data_format_input_get_ndp_signature
+                               (QmiMessageWdaSetDataFormatInput *self,
+                                guint32 *value_ndp_signature,
+                                GError **error);
+

Get the 'NDP Signature' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageWdaSetDataFormatInput.

 

value_ndp_signature

a placeholder for the output guint32, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.10

+
+
+
+

qmi_message_wda_set_data_format_input_set_ndp_signature ()

+
gboolean
+qmi_message_wda_set_data_format_input_set_ndp_signature
+                               (QmiMessageWdaSetDataFormatInput *self,
+                                guint32 value_ndp_signature,
+                                GError **error);
+

Set the 'NDP Signature' field in the message.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageWdaSetDataFormatInput.

 

value_ndp_signature

a guint32.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if value +was successfully set, FALSE otherwise.

+
+

Since: 1.10

+
+
+
+

qmi_message_wda_set_data_format_input_get_downlink_data_aggregation_protocol ()

+
gboolean
+qmi_message_wda_set_data_format_input_get_downlink_data_aggregation_protocol
+                               (QmiMessageWdaSetDataFormatInput *self,
+                                QmiWdaDataAggregationProtocol *value_downlink_data_aggregation_protocol,
+                                GError **error);
+

Get the 'Downlink Data Aggregation Protocol' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageWdaSetDataFormatInput.

 

value_downlink_data_aggregation_protocol

a placeholder for the output QmiWdaDataAggregationProtocol, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.10

+
+
+
+

qmi_message_wda_set_data_format_input_set_downlink_data_aggregation_protocol ()

+
gboolean
+qmi_message_wda_set_data_format_input_set_downlink_data_aggregation_protocol
+                               (QmiMessageWdaSetDataFormatInput *self,
+                                QmiWdaDataAggregationProtocol value_downlink_data_aggregation_protocol,
+                                GError **error);
+

Set the 'Downlink Data Aggregation Protocol' field in the message.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageWdaSetDataFormatInput.

 

value_downlink_data_aggregation_protocol

a QmiWdaDataAggregationProtocol.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if value +was successfully set, FALSE otherwise.

+
+

Since: 1.10

+
+
+
+

qmi_message_wda_set_data_format_input_get_uplink_data_aggregation_protocol ()

+
gboolean
+qmi_message_wda_set_data_format_input_get_uplink_data_aggregation_protocol
+                               (QmiMessageWdaSetDataFormatInput *self,
+                                QmiWdaDataAggregationProtocol *value_uplink_data_aggregation_protocol,
+                                GError **error);
+

Get the 'Uplink Data Aggregation Protocol' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageWdaSetDataFormatInput.

 

value_uplink_data_aggregation_protocol

a placeholder for the output QmiWdaDataAggregationProtocol, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.10

+
+
+
+

qmi_message_wda_set_data_format_input_set_uplink_data_aggregation_protocol ()

+
gboolean
+qmi_message_wda_set_data_format_input_set_uplink_data_aggregation_protocol
+                               (QmiMessageWdaSetDataFormatInput *self,
+                                QmiWdaDataAggregationProtocol value_uplink_data_aggregation_protocol,
+                                GError **error);
+

Set the 'Uplink Data Aggregation Protocol' field in the message.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageWdaSetDataFormatInput.

 

value_uplink_data_aggregation_protocol

a QmiWdaDataAggregationProtocol.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if value +was successfully set, FALSE otherwise.

+
+

Since: 1.10

+
+
+
+

qmi_message_wda_set_data_format_input_get_link_layer_protocol ()

+
gboolean
+qmi_message_wda_set_data_format_input_get_link_layer_protocol
+                               (QmiMessageWdaSetDataFormatInput *self,
+                                QmiWdaLinkLayerProtocol *value_link_layer_protocol,
+                                GError **error);
+

Get the 'Link Layer Protocol' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageWdaSetDataFormatInput.

 

value_link_layer_protocol

a placeholder for the output QmiWdaLinkLayerProtocol, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.10

+
+
+
+

qmi_message_wda_set_data_format_input_set_link_layer_protocol ()

+
gboolean
+qmi_message_wda_set_data_format_input_set_link_layer_protocol
+                               (QmiMessageWdaSetDataFormatInput *self,
+                                QmiWdaLinkLayerProtocol value_link_layer_protocol,
+                                GError **error);
+

Set the 'Link Layer Protocol' field in the message.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageWdaSetDataFormatInput.

 

value_link_layer_protocol

a QmiWdaLinkLayerProtocol.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if value +was successfully set, FALSE otherwise.

+
+

Since: 1.10

+
+
+
+

qmi_message_wda_set_data_format_input_get_qos_format ()

+
gboolean
+qmi_message_wda_set_data_format_input_get_qos_format
+                               (QmiMessageWdaSetDataFormatInput *self,
+                                gboolean *value_qos_format,
+                                GError **error);
+

Get the 'QoS Format' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageWdaSetDataFormatInput.

 

value_qos_format

a placeholder for the output gboolean, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.10

+
+
+
+

qmi_message_wda_set_data_format_input_set_qos_format ()

+
gboolean
+qmi_message_wda_set_data_format_input_set_qos_format
+                               (QmiMessageWdaSetDataFormatInput *self,
+                                gboolean value_qos_format,
+                                GError **error);
+

Set the 'QoS Format' field in the message.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageWdaSetDataFormatInput.

 

value_qos_format

a gboolean.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if value +was successfully set, FALSE otherwise.

+
+

Since: 1.10

+
+
+
+

qmi_message_wda_set_data_format_output_ref ()

+
QmiMessageWdaSetDataFormatOutput *
+qmi_message_wda_set_data_format_output_ref
+                               (QmiMessageWdaSetDataFormatOutput *self);
+

Atomically increments the reference count of self + by one.

+
+

Parameters

+
+++++ + + + + + +

self

a QmiMessageWdaSetDataFormatOutput.

 
+
+
+

Returns

+

the new reference to self +.

+
+

Since: 1.10

+
+
+
+

qmi_message_wda_set_data_format_output_unref ()

+
void
+qmi_message_wda_set_data_format_output_unref
+                               (QmiMessageWdaSetDataFormatOutput *self);
+

Atomically decrements the reference count of self + by one. +If the reference count drops to 0, self + is completely disposed.

+
+

Parameters

+
+++++ + + + + + +

self

a QmiMessageWdaSetDataFormatOutput.

 
+
+

Since: 1.10

+
+
+
+

qmi_message_wda_set_data_format_output_get_result ()

+
gboolean
+qmi_message_wda_set_data_format_output_get_result
+                               (QmiMessageWdaSetDataFormatOutput *self,
+                                GError **error);
+

Get the result of the QMI operation.

+
+

Parameters

+
+++++ + + + + + + + + + + + + +

self

a QmiMessageWdaSetDataFormatOutput.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the QMI operation succeeded, FALSE if error +is set.

+
+

Since: 1.10

+
+
+
+

qmi_message_wda_set_data_format_output_get_qos_format ()

+
gboolean
+qmi_message_wda_set_data_format_output_get_qos_format
+                               (QmiMessageWdaSetDataFormatOutput *self,
+                                gboolean *value_qos_format,
+                                GError **error);
+

Get the 'QoS Format' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageWdaSetDataFormatOutput.

 

value_qos_format

a placeholder for the output gboolean, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.10

+
+
+
+

qmi_message_wda_set_data_format_output_get_link_layer_protocol ()

+
gboolean
+qmi_message_wda_set_data_format_output_get_link_layer_protocol
+                               (QmiMessageWdaSetDataFormatOutput *self,
+                                QmiWdaLinkLayerProtocol *value_link_layer_protocol,
+                                GError **error);
+

Get the 'Link Layer Protocol' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageWdaSetDataFormatOutput.

 

value_link_layer_protocol

a placeholder for the output QmiWdaLinkLayerProtocol, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.10

+
+
+
+

qmi_message_wda_set_data_format_output_get_uplink_data_aggregation_protocol ()

+
gboolean
+qmi_message_wda_set_data_format_output_get_uplink_data_aggregation_protocol
+                               (QmiMessageWdaSetDataFormatOutput *self,
+                                QmiWdaDataAggregationProtocol *value_uplink_data_aggregation_protocol,
+                                GError **error);
+

Get the 'Uplink Data Aggregation Protocol' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageWdaSetDataFormatOutput.

 

value_uplink_data_aggregation_protocol

a placeholder for the output QmiWdaDataAggregationProtocol, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.10

+
+
+
+

qmi_message_wda_set_data_format_output_get_downlink_data_aggregation_protocol ()

+
gboolean
+qmi_message_wda_set_data_format_output_get_downlink_data_aggregation_protocol
+                               (QmiMessageWdaSetDataFormatOutput *self,
+                                QmiWdaDataAggregationProtocol *value_downlink_data_aggregation_protocol,
+                                GError **error);
+

Get the 'Downlink Data Aggregation Protocol' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageWdaSetDataFormatOutput.

 

value_downlink_data_aggregation_protocol

a placeholder for the output QmiWdaDataAggregationProtocol, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.10

+
+
+
+

qmi_message_wda_set_data_format_output_get_ndp_signature ()

+
gboolean
+qmi_message_wda_set_data_format_output_get_ndp_signature
+                               (QmiMessageWdaSetDataFormatOutput *self,
+                                guint32 *value_ndp_signature,
+                                GError **error);
+

Get the 'NDP Signature' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageWdaSetDataFormatOutput.

 

value_ndp_signature

a placeholder for the output guint32, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.10

+
+
+
+

qmi_message_wda_set_data_format_output_get_downlink_data_aggregation_max_datagrams ()

+
gboolean
+qmi_message_wda_set_data_format_output_get_downlink_data_aggregation_max_datagrams
+                               (QmiMessageWdaSetDataFormatOutput *self,
+                                guint32 *value_downlink_data_aggregation_max_datagrams,
+                                GError **error);
+

Get the 'Downlink Data Aggregation Max Datagrams' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageWdaSetDataFormatOutput.

 

value_downlink_data_aggregation_max_datagrams

a placeholder for the output guint32, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.10

+
+
+
+

qmi_message_wda_set_data_format_output_get_downlink_data_aggregation_max_size ()

+
gboolean
+qmi_message_wda_set_data_format_output_get_downlink_data_aggregation_max_size
+                               (QmiMessageWdaSetDataFormatOutput *self,
+                                guint32 *value_downlink_data_aggregation_max_size,
+                                GError **error);
+

Get the 'Downlink Data Aggregation Max Size' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageWdaSetDataFormatOutput.

 

value_downlink_data_aggregation_max_size

a placeholder for the output guint32, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.10

+
+
+
+

qmi_client_wda_set_data_format ()

+
void
+qmi_client_wda_set_data_format (QmiClientWda *self,
+                                QmiMessageWdaSetDataFormatInput *input,
+                                guint timeout,
+                                GCancellable *cancellable,
+                                GAsyncReadyCallback callback,
+                                gpointer user_data);
+

Asynchronously sends a Set Data Format request to the device.

+

When the operation is finished, callback + will be invoked in the thread-default main loop of the thread you are calling this method from.

+

You can then call qmi_client_wda_set_data_format_finish() to get the result of the operation.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

self

a QmiClientWda.

 

input

a QmiMessageWdaSetDataFormatInput.

 

timeout

maximum time to wait for the method to complete, in seconds.

 

cancellable

a GCancellable or NULL.

 

callback

a GAsyncReadyCallback to call when the request is satisfied.

 

user_data

user data to pass to callback +.

 
+
+

Since: 1.10

+
+
+
+

qmi_client_wda_set_data_format_finish ()

+
QmiMessageWdaSetDataFormatOutput *
+qmi_client_wda_set_data_format_finish (QmiClientWda *self,
+                                       GAsyncResult *res,
+                                       GError **error);
+

Finishes an async operation started with qmi_client_wda_set_data_format().

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiClientWda.

 

res

the GAsyncResult obtained from the GAsyncReadyCallback passed to qmi_client_wda_set_data_format().

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

a QmiMessageWdaSetDataFormatOutput, or NULL if error +is set. The returned value should be freed with qmi_message_wda_set_data_format_output_unref().

+
+

Since: 1.10

+
+
+
+

Types and Values

+
+

QmiMessageWdaSetDataFormatInput

+
typedef struct _QmiMessageWdaSetDataFormatInput QmiMessageWdaSetDataFormatInput;
+

The QmiMessageWdaSetDataFormatInput structure contains private data and should only be accessed +using the provided API.

+

Since: 1.10

+
+
+
+

QmiMessageWdaSetDataFormatOutput

+
typedef struct _QmiMessageWdaSetDataFormatOutput QmiMessageWdaSetDataFormatOutput;
+

The QmiMessageWdaSetDataFormatOutput structure contains private data and should only be accessed +using the provided API.

+

Since: 1.10

+
+
+
+ + + \ No newline at end of file diff -Nru libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-WDS-Bind-Mux-Data-Port.html libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-WDS-Bind-Mux-Data-Port.html --- libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-WDS-Bind-Mux-Data-Port.html 2017-03-22 12:28:29.000000000 +0100 +++ libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-WDS-Bind-Mux-Data-Port.html 1970-01-01 01:00:00.000000000 +0100 @@ -1,747 +0,0 @@ - - - - -WDS Bind Mux Data Port: libqmi-glib Reference Manual - - - - - - - - - - - - - - - - -
-
-
- - -
-

WDS Bind Mux Data Port

-

WDS Bind Mux Data Port

-
- -
-

Types and Values

- -
-
-

Object Hierarchy

-
    GBoxed
-    ├── QmiMessageWdsBindMuxDataPortInput
-    ╰── QmiMessageWdsBindMuxDataPortOutput
-
-
-
-

Description

-
-
-

Functions

-
-

qmi_message_wds_bind_mux_data_port_input_new ()

-
QmiMessageWdsBindMuxDataPortInput *
-qmi_message_wds_bind_mux_data_port_input_new
-                               (void);
-

Allocates a new QmiMessageWdsBindMuxDataPortInput.

-
-

Returns

-

the newly created QmiMessageWdsBindMuxDataPortInput. The returned value should be freed with qmi_message_wds_bind_mux_data_port_input_unref().

-
-

Since: 1.18

-
-
-
-

qmi_message_wds_bind_mux_data_port_input_ref ()

-
QmiMessageWdsBindMuxDataPortInput *
-qmi_message_wds_bind_mux_data_port_input_ref
-                               (QmiMessageWdsBindMuxDataPortInput *self);
-

Atomically increments the reference count of self - by one.

-
-

Parameters

-
----- - - - - - -

self

a QmiMessageWdsBindMuxDataPortInput.

 
-
-
-

Returns

-

the new reference to self -.

-
-

Since: 1.18

-
-
-
-

qmi_message_wds_bind_mux_data_port_input_unref ()

-
void
-qmi_message_wds_bind_mux_data_port_input_unref
-                               (QmiMessageWdsBindMuxDataPortInput *self);
-

Atomically decrements the reference count of self - by one. -If the reference count drops to 0, self - is completely disposed.

-
-

Parameters

-
----- - - - - - -

self

a QmiMessageWdsBindMuxDataPortInput.

 
-
-

Since: 1.18

-
-
-
-

qmi_message_wds_bind_mux_data_port_input_get_client_type ()

-
gboolean
-qmi_message_wds_bind_mux_data_port_input_get_client_type
-                               (QmiMessageWdsBindMuxDataPortInput *self,
-                                QmiWdsClientType *value_client_type,
-                                GError **error);
-

Get the 'Client Type' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessageWdsBindMuxDataPortInput.

 

value_client_type

a placeholder for the output QmiWdsClientType, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.18

-
-
-
-

qmi_message_wds_bind_mux_data_port_input_set_client_type ()

-
gboolean
-qmi_message_wds_bind_mux_data_port_input_set_client_type
-                               (QmiMessageWdsBindMuxDataPortInput *self,
-                                QmiWdsClientType value_client_type,
-                                GError **error);
-

Set the 'Client Type' field in the message.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessageWdsBindMuxDataPortInput.

 

value_client_type

a QmiWdsClientType.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if value -was successfully set, FALSE otherwise.

-
-

Since: 1.18

-
-
-
-

qmi_message_wds_bind_mux_data_port_input_get_mux_id ()

-
gboolean
-qmi_message_wds_bind_mux_data_port_input_get_mux_id
-                               (QmiMessageWdsBindMuxDataPortInput *self,
-                                guint8 *value_mux_id,
-                                GError **error);
-

Get the 'Mux ID' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessageWdsBindMuxDataPortInput.

 

value_mux_id

a placeholder for the output guint8, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.18

-
-
-
-

qmi_message_wds_bind_mux_data_port_input_set_mux_id ()

-
gboolean
-qmi_message_wds_bind_mux_data_port_input_set_mux_id
-                               (QmiMessageWdsBindMuxDataPortInput *self,
-                                guint8 value_mux_id,
-                                GError **error);
-

Set the 'Mux ID' field in the message.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessageWdsBindMuxDataPortInput.

 

value_mux_id

a guint8.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if value -was successfully set, FALSE otherwise.

-
-

Since: 1.18

-
-
-
-

qmi_message_wds_bind_mux_data_port_input_get_endpoint_info ()

-
gboolean
-qmi_message_wds_bind_mux_data_port_input_get_endpoint_info
-                               (QmiMessageWdsBindMuxDataPortInput *self,
-                                QmiDataEndpointType *value_endpoint_info_endpoint_type,
-                                guint32 *value_endpoint_info_interface_number,
-                                GError **error);
-

Get the 'Endpoint Info' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - - - - - - -

self

a QmiMessageWdsBindMuxDataPortInput.

 

value_endpoint_info_endpoint_type

a placeholder for the output QmiDataEndpointType, or NULL if not required.

 

value_endpoint_info_interface_number

a placeholder for the output guint32, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.18

-
-
-
-

qmi_message_wds_bind_mux_data_port_input_set_endpoint_info ()

-
gboolean
-qmi_message_wds_bind_mux_data_port_input_set_endpoint_info
-                               (QmiMessageWdsBindMuxDataPortInput *self,
-                                QmiDataEndpointType value_endpoint_info_endpoint_type,
-                                guint32 value_endpoint_info_interface_number,
-                                GError **error);
-

Set the 'Endpoint Info' field in the message.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - - - - - - -

self

a QmiMessageWdsBindMuxDataPortInput.

 

value_endpoint_info_endpoint_type

a QmiDataEndpointType.

 

value_endpoint_info_interface_number

a guint32.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if value -was successfully set, FALSE otherwise.

-
-

Since: 1.18

-
-
-
-

qmi_message_wds_bind_mux_data_port_output_ref ()

-
QmiMessageWdsBindMuxDataPortOutput *
-qmi_message_wds_bind_mux_data_port_output_ref
-                               (QmiMessageWdsBindMuxDataPortOutput *self);
-

Atomically increments the reference count of self - by one.

-
-

Parameters

-
----- - - - - - -

self

a QmiMessageWdsBindMuxDataPortOutput.

 
-
-
-

Returns

-

the new reference to self -.

-
-

Since: 1.18

-
-
-
-

qmi_message_wds_bind_mux_data_port_output_unref ()

-
void
-qmi_message_wds_bind_mux_data_port_output_unref
-                               (QmiMessageWdsBindMuxDataPortOutput *self);
-

Atomically decrements the reference count of self - by one. -If the reference count drops to 0, self - is completely disposed.

-
-

Parameters

-
----- - - - - - -

self

a QmiMessageWdsBindMuxDataPortOutput.

 
-
-

Since: 1.18

-
-
-
-

qmi_message_wds_bind_mux_data_port_output_get_result ()

-
gboolean
-qmi_message_wds_bind_mux_data_port_output_get_result
-                               (QmiMessageWdsBindMuxDataPortOutput *self,
-                                GError **error);
-

Get the result of the QMI operation.

-
-

Parameters

-
----- - - - - - - - - - - - - -

self

a QmiMessageWdsBindMuxDataPortOutput.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the QMI operation succeeded, FALSE if error -is set.

-
-

Since: 1.18

-
-
-
-

qmi_client_wds_bind_mux_data_port ()

-
void
-qmi_client_wds_bind_mux_data_port (QmiClientWds *self,
-                                   QmiMessageWdsBindMuxDataPortInput *input,
-                                   guint timeout,
-                                   GCancellable *cancellable,
-                                   GAsyncReadyCallback callback,
-                                   gpointer user_data);
-

Asynchronously sends a Bind Mux Data Port request to the device.

-

When the operation is finished, callback - will be invoked in the thread-default main loop of the thread you are calling this method from.

-

You can then call qmi_client_wds_bind_mux_data_port_finish() to get the result of the operation.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

self

a QmiClientWds.

 

input

a QmiMessageWdsBindMuxDataPortInput.

 

timeout

maximum time to wait for the method to complete, in seconds.

 

cancellable

a GCancellable or NULL.

 

callback

a GAsyncReadyCallback to call when the request is satisfied.

 

user_data

user data to pass to callback -.

 
-
-

Since: 1.18

-
-
-
-

qmi_client_wds_bind_mux_data_port_finish ()

-
QmiMessageWdsBindMuxDataPortOutput *
-qmi_client_wds_bind_mux_data_port_finish
-                               (QmiClientWds *self,
-                                GAsyncResult *res,
-                                GError **error);
-

Finishes an async operation started with qmi_client_wds_bind_mux_data_port().

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiClientWds.

 

res

the GAsyncResult obtained from the GAsyncReadyCallback passed to qmi_client_wds_bind_mux_data_port().

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

a QmiMessageWdsBindMuxDataPortOutput, or NULL if error -is set. The returned value should be freed with qmi_message_wds_bind_mux_data_port_output_unref().

-
-

Since: 1.18

-
-
-
-

Types and Values

-
-

QmiMessageWdsBindMuxDataPortInput

-
typedef struct _QmiMessageWdsBindMuxDataPortInput QmiMessageWdsBindMuxDataPortInput;
-

The QmiMessageWdsBindMuxDataPortInput structure contains private data and should only be accessed -using the provided API.

-

Since: 1.18

-
-
-
-

QmiMessageWdsBindMuxDataPortOutput

-
typedef struct _QmiMessageWdsBindMuxDataPortOutput QmiMessageWdsBindMuxDataPortOutput;
-

The QmiMessageWdsBindMuxDataPortOutput structure contains private data and should only be accessed -using the provided API.

-

Since: 1.18

-
-
-
- - - \ No newline at end of file diff -Nru libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-WDS-Bind-Mux-Data-Port-request.html libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-WDS-Bind-Mux-Data-Port-request.html --- libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-WDS-Bind-Mux-Data-Port-request.html 1970-01-01 01:00:00.000000000 +0100 +++ libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-WDS-Bind-Mux-Data-Port-request.html 2019-01-08 15:19:02.000000000 +0100 @@ -0,0 +1,747 @@ + + + + +WDS Bind Mux Data Port request: libqmi-glib Reference Manual + + + + + + + + + + + + + + + + +
+
+
+ + +
+

WDS Bind Mux Data Port request

+

WDS Bind Mux Data Port request

+
+ +
+

Types and Values

+ +
+
+

Object Hierarchy

+
    GBoxed
+    ├── QmiMessageWdsBindMuxDataPortInput
+    ╰── QmiMessageWdsBindMuxDataPortOutput
+
+
+
+

Description

+
+
+

Functions

+
+

qmi_message_wds_bind_mux_data_port_input_new ()

+
QmiMessageWdsBindMuxDataPortInput *
+qmi_message_wds_bind_mux_data_port_input_new
+                               (void);
+

Allocates a new QmiMessageWdsBindMuxDataPortInput.

+
+

Returns

+

the newly created QmiMessageWdsBindMuxDataPortInput. The returned value should be freed with qmi_message_wds_bind_mux_data_port_input_unref().

+
+

Since: 1.18

+
+
+
+

qmi_message_wds_bind_mux_data_port_input_ref ()

+
QmiMessageWdsBindMuxDataPortInput *
+qmi_message_wds_bind_mux_data_port_input_ref
+                               (QmiMessageWdsBindMuxDataPortInput *self);
+

Atomically increments the reference count of self + by one.

+
+

Parameters

+
+++++ + + + + + +

self

a QmiMessageWdsBindMuxDataPortInput.

 
+
+
+

Returns

+

the new reference to self +.

+
+

Since: 1.18

+
+
+
+

qmi_message_wds_bind_mux_data_port_input_unref ()

+
void
+qmi_message_wds_bind_mux_data_port_input_unref
+                               (QmiMessageWdsBindMuxDataPortInput *self);
+

Atomically decrements the reference count of self + by one. +If the reference count drops to 0, self + is completely disposed.

+
+

Parameters

+
+++++ + + + + + +

self

a QmiMessageWdsBindMuxDataPortInput.

 
+
+

Since: 1.18

+
+
+
+

qmi_message_wds_bind_mux_data_port_input_get_client_type ()

+
gboolean
+qmi_message_wds_bind_mux_data_port_input_get_client_type
+                               (QmiMessageWdsBindMuxDataPortInput *self,
+                                QmiWdsClientType *value_client_type,
+                                GError **error);
+

Get the 'Client Type' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageWdsBindMuxDataPortInput.

 

value_client_type

a placeholder for the output QmiWdsClientType, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.18

+
+
+
+

qmi_message_wds_bind_mux_data_port_input_set_client_type ()

+
gboolean
+qmi_message_wds_bind_mux_data_port_input_set_client_type
+                               (QmiMessageWdsBindMuxDataPortInput *self,
+                                QmiWdsClientType value_client_type,
+                                GError **error);
+

Set the 'Client Type' field in the message.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageWdsBindMuxDataPortInput.

 

value_client_type

a QmiWdsClientType.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if value +was successfully set, FALSE otherwise.

+
+

Since: 1.18

+
+
+
+

qmi_message_wds_bind_mux_data_port_input_get_mux_id ()

+
gboolean
+qmi_message_wds_bind_mux_data_port_input_get_mux_id
+                               (QmiMessageWdsBindMuxDataPortInput *self,
+                                guint8 *value_mux_id,
+                                GError **error);
+

Get the 'Mux ID' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageWdsBindMuxDataPortInput.

 

value_mux_id

a placeholder for the output guint8, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.18

+
+
+
+

qmi_message_wds_bind_mux_data_port_input_set_mux_id ()

+
gboolean
+qmi_message_wds_bind_mux_data_port_input_set_mux_id
+                               (QmiMessageWdsBindMuxDataPortInput *self,
+                                guint8 value_mux_id,
+                                GError **error);
+

Set the 'Mux ID' field in the message.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageWdsBindMuxDataPortInput.

 

value_mux_id

a guint8.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if value +was successfully set, FALSE otherwise.

+
+

Since: 1.18

+
+
+
+

qmi_message_wds_bind_mux_data_port_input_get_endpoint_info ()

+
gboolean
+qmi_message_wds_bind_mux_data_port_input_get_endpoint_info
+                               (QmiMessageWdsBindMuxDataPortInput *self,
+                                QmiDataEndpointType *value_endpoint_info_endpoint_type,
+                                guint32 *value_endpoint_info_interface_number,
+                                GError **error);
+

Get the 'Endpoint Info' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + + + + + + +

self

a QmiMessageWdsBindMuxDataPortInput.

 

value_endpoint_info_endpoint_type

a placeholder for the output QmiDataEndpointType, or NULL if not required.

 

value_endpoint_info_interface_number

a placeholder for the output guint32, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.18

+
+
+
+

qmi_message_wds_bind_mux_data_port_input_set_endpoint_info ()

+
gboolean
+qmi_message_wds_bind_mux_data_port_input_set_endpoint_info
+                               (QmiMessageWdsBindMuxDataPortInput *self,
+                                QmiDataEndpointType value_endpoint_info_endpoint_type,
+                                guint32 value_endpoint_info_interface_number,
+                                GError **error);
+

Set the 'Endpoint Info' field in the message.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + + + + + + +

self

a QmiMessageWdsBindMuxDataPortInput.

 

value_endpoint_info_endpoint_type

a QmiDataEndpointType.

 

value_endpoint_info_interface_number

a guint32.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if value +was successfully set, FALSE otherwise.

+
+

Since: 1.18

+
+
+
+

qmi_message_wds_bind_mux_data_port_output_ref ()

+
QmiMessageWdsBindMuxDataPortOutput *
+qmi_message_wds_bind_mux_data_port_output_ref
+                               (QmiMessageWdsBindMuxDataPortOutput *self);
+

Atomically increments the reference count of self + by one.

+
+

Parameters

+
+++++ + + + + + +

self

a QmiMessageWdsBindMuxDataPortOutput.

 
+
+
+

Returns

+

the new reference to self +.

+
+

Since: 1.18

+
+
+
+

qmi_message_wds_bind_mux_data_port_output_unref ()

+
void
+qmi_message_wds_bind_mux_data_port_output_unref
+                               (QmiMessageWdsBindMuxDataPortOutput *self);
+

Atomically decrements the reference count of self + by one. +If the reference count drops to 0, self + is completely disposed.

+
+

Parameters

+
+++++ + + + + + +

self

a QmiMessageWdsBindMuxDataPortOutput.

 
+
+

Since: 1.18

+
+
+
+

qmi_message_wds_bind_mux_data_port_output_get_result ()

+
gboolean
+qmi_message_wds_bind_mux_data_port_output_get_result
+                               (QmiMessageWdsBindMuxDataPortOutput *self,
+                                GError **error);
+

Get the result of the QMI operation.

+
+

Parameters

+
+++++ + + + + + + + + + + + + +

self

a QmiMessageWdsBindMuxDataPortOutput.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the QMI operation succeeded, FALSE if error +is set.

+
+

Since: 1.18

+
+
+
+

qmi_client_wds_bind_mux_data_port ()

+
void
+qmi_client_wds_bind_mux_data_port (QmiClientWds *self,
+                                   QmiMessageWdsBindMuxDataPortInput *input,
+                                   guint timeout,
+                                   GCancellable *cancellable,
+                                   GAsyncReadyCallback callback,
+                                   gpointer user_data);
+

Asynchronously sends a Bind Mux Data Port request to the device.

+

When the operation is finished, callback + will be invoked in the thread-default main loop of the thread you are calling this method from.

+

You can then call qmi_client_wds_bind_mux_data_port_finish() to get the result of the operation.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

self

a QmiClientWds.

 

input

a QmiMessageWdsBindMuxDataPortInput.

 

timeout

maximum time to wait for the method to complete, in seconds.

 

cancellable

a GCancellable or NULL.

 

callback

a GAsyncReadyCallback to call when the request is satisfied.

 

user_data

user data to pass to callback +.

 
+
+

Since: 1.18

+
+
+
+

qmi_client_wds_bind_mux_data_port_finish ()

+
QmiMessageWdsBindMuxDataPortOutput *
+qmi_client_wds_bind_mux_data_port_finish
+                               (QmiClientWds *self,
+                                GAsyncResult *res,
+                                GError **error);
+

Finishes an async operation started with qmi_client_wds_bind_mux_data_port().

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiClientWds.

 

res

the GAsyncResult obtained from the GAsyncReadyCallback passed to qmi_client_wds_bind_mux_data_port().

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

a QmiMessageWdsBindMuxDataPortOutput, or NULL if error +is set. The returned value should be freed with qmi_message_wds_bind_mux_data_port_output_unref().

+
+

Since: 1.18

+
+
+
+

Types and Values

+
+

QmiMessageWdsBindMuxDataPortInput

+
typedef struct _QmiMessageWdsBindMuxDataPortInput QmiMessageWdsBindMuxDataPortInput;
+

The QmiMessageWdsBindMuxDataPortInput structure contains private data and should only be accessed +using the provided API.

+

Since: 1.18

+
+
+
+

QmiMessageWdsBindMuxDataPortOutput

+
typedef struct _QmiMessageWdsBindMuxDataPortOutput QmiMessageWdsBindMuxDataPortOutput;
+

The QmiMessageWdsBindMuxDataPortOutput structure contains private data and should only be accessed +using the provided API.

+

Since: 1.18

+
+
+
+ + + \ No newline at end of file diff -Nru libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-WDS-Create-Profile.html libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-WDS-Create-Profile.html --- libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-WDS-Create-Profile.html 2017-03-22 12:28:28.000000000 +0100 +++ libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-WDS-Create-Profile.html 1970-01-01 01:00:00.000000000 +0100 @@ -1,4094 +0,0 @@ - - - - -WDS Create Profile: libqmi-glib Reference Manual - - - - - - - - - - - - - - - - -
-
-
- - -
-

WDS Create Profile

-

WDS Create Profile

-
-
-

Functions

-
---- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
-QmiMessageWdsCreateProfileInput * - -qmi_message_wds_create_profile_input_new () -
-QmiMessageWdsCreateProfileInput * - -qmi_message_wds_create_profile_input_ref () -
-void - -qmi_message_wds_create_profile_input_unref () -
-gboolean - -qmi_message_wds_create_profile_input_get_lte_qos_parameters () -
-gboolean - -qmi_message_wds_create_profile_input_set_lte_qos_parameters () -
-gboolean - -qmi_message_wds_create_profile_input_get_ipv6_secondary_dns_address_preference () -
-gboolean - -qmi_message_wds_create_profile_input_set_ipv6_secondary_dns_address_preference () -
-gboolean - -qmi_message_wds_create_profile_input_get_ipv6_primary_dns_address_preference () -
-gboolean - -qmi_message_wds_create_profile_input_set_ipv6_primary_dns_address_preference () -
-gboolean - -qmi_message_wds_create_profile_input_get_umts_minimum_qos_with_signaling_indication_flag () -
-gboolean - -qmi_message_wds_create_profile_input_set_umts_minimum_qos_with_signaling_indication_flag () -
-gboolean - -qmi_message_wds_create_profile_input_get_umts_requested_qos_with_signaling_indication_flag () -
-gboolean - -qmi_message_wds_create_profile_input_set_umts_requested_qos_with_signaling_indication_flag () -
-gboolean - -qmi_message_wds_create_profile_input_get_ipv6_address_preference () -
-gboolean - -qmi_message_wds_create_profile_input_set_ipv6_address_preference () -
-gboolean - -qmi_message_wds_create_profile_input_get_pdp_context_primary_id () -
-gboolean - -qmi_message_wds_create_profile_input_set_pdp_context_primary_id () -
-gboolean - -qmi_message_wds_create_profile_input_get_pdp_context_secondary_flag () -
-gboolean - -qmi_message_wds_create_profile_input_set_pdp_context_secondary_flag () -
-gboolean - -qmi_message_wds_create_profile_input_get_pdp_context_number () -
-gboolean - -qmi_message_wds_create_profile_input_set_pdp_context_number () -
-gboolean - -qmi_message_wds_create_profile_input_get_imcn_flag () -
-gboolean - -qmi_message_wds_create_profile_input_set_imcn_flag () -
-gboolean - -qmi_message_wds_create_profile_input_get_pcscf_address_using_dhcp () -
-gboolean - -qmi_message_wds_create_profile_input_set_pcscf_address_using_dhcp () -
-gboolean - -qmi_message_wds_create_profile_input_get_pcscf_address_using_pco () -
-gboolean - -qmi_message_wds_create_profile_input_set_pcscf_address_using_pco () -
-gboolean - -qmi_message_wds_create_profile_input_get_ipv4_address_preference () -
-gboolean - -qmi_message_wds_create_profile_input_set_ipv4_address_preference () -
-gboolean - -qmi_message_wds_create_profile_input_get_authentication () -
-gboolean - -qmi_message_wds_create_profile_input_set_authentication () -
-gboolean - -qmi_message_wds_create_profile_input_get_password () -
-gboolean - -qmi_message_wds_create_profile_input_set_password () -
-gboolean - -qmi_message_wds_create_profile_input_get_username () -
-gboolean - -qmi_message_wds_create_profile_input_set_username () -
-gboolean - -qmi_message_wds_create_profile_input_get_gprs_minimum_qos () -
-gboolean - -qmi_message_wds_create_profile_input_set_gprs_minimum_qos () -
-gboolean - -qmi_message_wds_create_profile_input_get_gprs_requested_qos () -
-gboolean - -qmi_message_wds_create_profile_input_set_gprs_requested_qos () -
-gboolean - -qmi_message_wds_create_profile_input_get_umts_minimum_qos () -
-gboolean - -qmi_message_wds_create_profile_input_set_umts_minimum_qos () -
-gboolean - -qmi_message_wds_create_profile_input_get_umts_requested_qos () -
-gboolean - -qmi_message_wds_create_profile_input_set_umts_requested_qos () -
-gboolean - -qmi_message_wds_create_profile_input_get_secondary_ipv4_dns_address () -
-gboolean - -qmi_message_wds_create_profile_input_set_secondary_ipv4_dns_address () -
-gboolean - -qmi_message_wds_create_profile_input_get_primary_ipv4_dns_address () -
-gboolean - -qmi_message_wds_create_profile_input_set_primary_ipv4_dns_address () -
-gboolean - -qmi_message_wds_create_profile_input_get_apn_name () -
-gboolean - -qmi_message_wds_create_profile_input_set_apn_name () -
-gboolean - -qmi_message_wds_create_profile_input_get_pdp_data_compression_type () -
-gboolean - -qmi_message_wds_create_profile_input_set_pdp_data_compression_type () -
-gboolean - -qmi_message_wds_create_profile_input_get_pdp_header_compression_type () -
-gboolean - -qmi_message_wds_create_profile_input_set_pdp_header_compression_type () -
-gboolean - -qmi_message_wds_create_profile_input_get_pdp_type () -
-gboolean - -qmi_message_wds_create_profile_input_set_pdp_type () -
-gboolean - -qmi_message_wds_create_profile_input_get_profile_name () -
-gboolean - -qmi_message_wds_create_profile_input_set_profile_name () -
-gboolean - -qmi_message_wds_create_profile_input_get_profile_type () -
-gboolean - -qmi_message_wds_create_profile_input_set_profile_type () -
-QmiMessageWdsCreateProfileOutput * - -qmi_message_wds_create_profile_output_ref () -
-void - -qmi_message_wds_create_profile_output_unref () -
-gboolean - -qmi_message_wds_create_profile_output_get_result () -
-gboolean - -qmi_message_wds_create_profile_output_get_profile_identifier () -
-gboolean - -qmi_message_wds_create_profile_output_get_extended_error_code () -
-void - -qmi_client_wds_create_profile () -
-QmiMessageWdsCreateProfileOutput * - -qmi_client_wds_create_profile_finish () -
-
-
-

Types and Values

- -
-
-

Object Hierarchy

-
    GBoxed
-    ├── QmiMessageWdsCreateProfileInput
-    ╰── QmiMessageWdsCreateProfileOutput
-
-
-
-

Description

-
-
-

Functions

-
-

qmi_message_wds_create_profile_input_new ()

-
QmiMessageWdsCreateProfileInput *
-qmi_message_wds_create_profile_input_new
-                               (void);
-

Allocates a new QmiMessageWdsCreateProfileInput.

-
-

Returns

-

the newly created QmiMessageWdsCreateProfileInput. The returned value should be freed with qmi_message_wds_create_profile_input_unref().

-
-

Since: 1.18

-
-
-
-

qmi_message_wds_create_profile_input_ref ()

-
QmiMessageWdsCreateProfileInput *
-qmi_message_wds_create_profile_input_ref
-                               (QmiMessageWdsCreateProfileInput *self);
-

Atomically increments the reference count of self - by one.

-
-

Parameters

-
----- - - - - - -

self

a QmiMessageWdsCreateProfileInput.

 
-
-
-

Returns

-

the new reference to self -.

-
-

Since: 1.18

-
-
-
-

qmi_message_wds_create_profile_input_unref ()

-
void
-qmi_message_wds_create_profile_input_unref
-                               (QmiMessageWdsCreateProfileInput *self);
-

Atomically decrements the reference count of self - by one. -If the reference count drops to 0, self - is completely disposed.

-
-

Parameters

-
----- - - - - - -

self

a QmiMessageWdsCreateProfileInput.

 
-
-

Since: 1.18

-
-
-
-

qmi_message_wds_create_profile_input_get_lte_qos_parameters ()

-
gboolean
-qmi_message_wds_create_profile_input_get_lte_qos_parameters
-                               (QmiMessageWdsCreateProfileInput *self,
-                                QmiWdsQosClassIdentifier *value_lte_qos_parameters_qos_class_identifier,
-                                guint32 *value_lte_qos_parameters_guaranteed_downlink_bitrate,
-                                guint32 *value_lte_qos_parameters_max_downlink_bitrate,
-                                guint32 *value_lte_qos_parameters_guaranteed_uplink_bitrate,
-                                guint32 *value_lte_qos_parameters_max_uplink_bitrate,
-                                GError **error);
-

Get the 'LTE QoS Parameters' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

self

a QmiMessageWdsCreateProfileInput.

 

value_lte_qos_parameters_qos_class_identifier

a placeholder for the output QmiWdsQosClassIdentifier, or NULL if not required.

 

value_lte_qos_parameters_guaranteed_downlink_bitrate

a placeholder for the output guint32, or NULL if not required.

 

value_lte_qos_parameters_max_downlink_bitrate

a placeholder for the output guint32, or NULL if not required.

 

value_lte_qos_parameters_guaranteed_uplink_bitrate

a placeholder for the output guint32, or NULL if not required.

 

value_lte_qos_parameters_max_uplink_bitrate

a placeholder for the output guint32, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.18

-
-
-
-

qmi_message_wds_create_profile_input_set_lte_qos_parameters ()

-
gboolean
-qmi_message_wds_create_profile_input_set_lte_qos_parameters
-                               (QmiMessageWdsCreateProfileInput *self,
-                                QmiWdsQosClassIdentifier value_lte_qos_parameters_qos_class_identifier,
-                                guint32 value_lte_qos_parameters_guaranteed_downlink_bitrate,
-                                guint32 value_lte_qos_parameters_max_downlink_bitrate,
-                                guint32 value_lte_qos_parameters_guaranteed_uplink_bitrate,
-                                guint32 value_lte_qos_parameters_max_uplink_bitrate,
-                                GError **error);
-

Set the 'LTE QoS Parameters' field in the message.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

self

a QmiMessageWdsCreateProfileInput.

 

value_lte_qos_parameters_qos_class_identifier

a QmiWdsQosClassIdentifier.

 

value_lte_qos_parameters_guaranteed_downlink_bitrate

a guint32.

 

value_lte_qos_parameters_max_downlink_bitrate

a guint32.

 

value_lte_qos_parameters_guaranteed_uplink_bitrate

a guint32.

 

value_lte_qos_parameters_max_uplink_bitrate

a guint32.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if value -was successfully set, FALSE otherwise.

-
-

Since: 1.18

-
-
-
-

qmi_message_wds_create_profile_input_get_ipv6_secondary_dns_address_preference ()

-
gboolean
-qmi_message_wds_create_profile_input_get_ipv6_secondary_dns_address_preference
-                               (QmiMessageWdsCreateProfileInput *self,
-                                GArray **value_ipv6_secondary_dns_address_preference,
-                                GError **error);
-

Get the 'IPv6 Secondary DNS Address Preference' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessageWdsCreateProfileInput.

 

value_ipv6_secondary_dns_address_preference

a placeholder for the output GArray of guint16 elements, or NULL if not required. Do not free it, it is owned by self -.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.18

-
-
-
-

qmi_message_wds_create_profile_input_set_ipv6_secondary_dns_address_preference ()

-
gboolean
-qmi_message_wds_create_profile_input_set_ipv6_secondary_dns_address_preference
-                               (QmiMessageWdsCreateProfileInput *self,
-                                GArray *value_ipv6_secondary_dns_address_preference,
-                                GError **error);
-

Set the 'IPv6 Secondary DNS Address Preference' field in the message.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessageWdsCreateProfileInput.

 

value_ipv6_secondary_dns_address_preference

a GArray of guint16 elements. A new reference to value_ipv6_secondary_dns_address_preference -will be taken.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if value -was successfully set, FALSE otherwise.

-
-

Since: 1.18

-
-
-
-

qmi_message_wds_create_profile_input_get_ipv6_primary_dns_address_preference ()

-
gboolean
-qmi_message_wds_create_profile_input_get_ipv6_primary_dns_address_preference
-                               (QmiMessageWdsCreateProfileInput *self,
-                                GArray **value_ipv6_primary_dns_address_preference,
-                                GError **error);
-

Get the 'IPv6 Primary DNS Address Preference' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessageWdsCreateProfileInput.

 

value_ipv6_primary_dns_address_preference

a placeholder for the output GArray of guint16 elements, or NULL if not required. Do not free it, it is owned by self -.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.18

-
-
-
-

qmi_message_wds_create_profile_input_set_ipv6_primary_dns_address_preference ()

-
gboolean
-qmi_message_wds_create_profile_input_set_ipv6_primary_dns_address_preference
-                               (QmiMessageWdsCreateProfileInput *self,
-                                GArray *value_ipv6_primary_dns_address_preference,
-                                GError **error);
-

Set the 'IPv6 Primary DNS Address Preference' field in the message.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessageWdsCreateProfileInput.

 

value_ipv6_primary_dns_address_preference

a GArray of guint16 elements. A new reference to value_ipv6_primary_dns_address_preference -will be taken.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if value -was successfully set, FALSE otherwise.

-
-

Since: 1.18

-
-
-
-

qmi_message_wds_create_profile_input_get_umts_minimum_qos_with_signaling_indication_flag ()

-
gboolean
-qmi_message_wds_create_profile_input_get_umts_minimum_qos_with_signaling_indication_flag
-                               (QmiMessageWdsCreateProfileInput *self,
-                                QmiWdsTrafficClass *value_umts_minimum_qos_with_signaling_indication_flag_traffic_class,
-                                guint32 *value_umts_minimum_qos_with_signaling_indication_flag_max_uplink_bitrate,
-                                guint32 *value_umts_minimum_qos_with_signaling_indication_flag_max_downlink_bitrate,
-                                guint32 *value_umts_minimum_qos_with_signaling_indication_flag_guaranteed_uplink_bitrate,
-                                guint32 *value_umts_minimum_qos_with_signaling_indication_flag_guaranteed_downlink_bitrate,
-                                QmiWdsDeliveryOrder *value_umts_minimum_qos_with_signaling_indication_flag_qos_delivery_order,
-                                guint32 *value_umts_minimum_qos_with_signaling_indication_flag_maximum_sdu_size,
-                                QmiWdsSduErrorRatio *value_umts_minimum_qos_with_signaling_indication_flag_sdu_error_ratio,
-                                QmiWdsSduResidualBitErrorRatio *value_umts_minimum_qos_with_signaling_indication_flag_residual_bit_error_ratio,
-                                QmiWdsSduErroneousDelivery *value_umts_minimum_qos_with_signaling_indication_flag_delivery_erroneous_sdu,
-                                guint32 *value_umts_minimum_qos_with_signaling_indication_flag_transfer_delay,
-                                guint32 *value_umts_minimum_qos_with_signaling_indication_flag_traffic_handling_priority,
-                                gint8 *value_umts_minimum_qos_with_signaling_indication_flag_signaling_indication,
-                                GError **error);
-

Get the 'UMTS Minimum QoS With Signaling Indication Flag' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

self

a QmiMessageWdsCreateProfileInput.

 

value_umts_minimum_qos_with_signaling_indication_flag_traffic_class

a placeholder for the output QmiWdsTrafficClass, or NULL if not required.

 

value_umts_minimum_qos_with_signaling_indication_flag_max_uplink_bitrate

a placeholder for the output guint32, or NULL if not required.

 

value_umts_minimum_qos_with_signaling_indication_flag_max_downlink_bitrate

a placeholder for the output guint32, or NULL if not required.

 

value_umts_minimum_qos_with_signaling_indication_flag_guaranteed_uplink_bitrate

a placeholder for the output guint32, or NULL if not required.

 

value_umts_minimum_qos_with_signaling_indication_flag_guaranteed_downlink_bitrate

a placeholder for the output guint32, or NULL if not required.

 

value_umts_minimum_qos_with_signaling_indication_flag_qos_delivery_order

a placeholder for the output QmiWdsDeliveryOrder, or NULL if not required.

 

value_umts_minimum_qos_with_signaling_indication_flag_maximum_sdu_size

a placeholder for the output guint32, or NULL if not required.

 

value_umts_minimum_qos_with_signaling_indication_flag_sdu_error_ratio

a placeholder for the output QmiWdsSduErrorRatio, or NULL if not required.

 

value_umts_minimum_qos_with_signaling_indication_flag_residual_bit_error_ratio

a placeholder for the output QmiWdsSduResidualBitErrorRatio, or NULL if not required.

 

value_umts_minimum_qos_with_signaling_indication_flag_delivery_erroneous_sdu

a placeholder for the output QmiWdsSduErroneousDelivery, or NULL if not required.

 

value_umts_minimum_qos_with_signaling_indication_flag_transfer_delay

a placeholder for the output guint32, or NULL if not required.

 

value_umts_minimum_qos_with_signaling_indication_flag_traffic_handling_priority

a placeholder for the output guint32, or NULL if not required.

 

value_umts_minimum_qos_with_signaling_indication_flag_signaling_indication

a placeholder for the output gint8, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.18

-
-
-
-

qmi_message_wds_create_profile_input_set_umts_minimum_qos_with_signaling_indication_flag ()

-
gboolean
-qmi_message_wds_create_profile_input_set_umts_minimum_qos_with_signaling_indication_flag
-                               (QmiMessageWdsCreateProfileInput *self,
-                                QmiWdsTrafficClass value_umts_minimum_qos_with_signaling_indication_flag_traffic_class,
-                                guint32 value_umts_minimum_qos_with_signaling_indication_flag_max_uplink_bitrate,
-                                guint32 value_umts_minimum_qos_with_signaling_indication_flag_max_downlink_bitrate,
-                                guint32 value_umts_minimum_qos_with_signaling_indication_flag_guaranteed_uplink_bitrate,
-                                guint32 value_umts_minimum_qos_with_signaling_indication_flag_guaranteed_downlink_bitrate,
-                                QmiWdsDeliveryOrder value_umts_minimum_qos_with_signaling_indication_flag_qos_delivery_order,
-                                guint32 value_umts_minimum_qos_with_signaling_indication_flag_maximum_sdu_size,
-                                QmiWdsSduErrorRatio value_umts_minimum_qos_with_signaling_indication_flag_sdu_error_ratio,
-                                QmiWdsSduResidualBitErrorRatio value_umts_minimum_qos_with_signaling_indication_flag_residual_bit_error_ratio,
-                                QmiWdsSduErroneousDelivery value_umts_minimum_qos_with_signaling_indication_flag_delivery_erroneous_sdu,
-                                guint32 value_umts_minimum_qos_with_signaling_indication_flag_transfer_delay,
-                                guint32 value_umts_minimum_qos_with_signaling_indication_flag_traffic_handling_priority,
-                                gint8 value_umts_minimum_qos_with_signaling_indication_flag_signaling_indication,
-                                GError **error);
-

Set the 'UMTS Minimum QoS With Signaling Indication Flag' field in the message.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

self

a QmiMessageWdsCreateProfileInput.

 

value_umts_minimum_qos_with_signaling_indication_flag_traffic_class

a QmiWdsTrafficClass.

 

value_umts_minimum_qos_with_signaling_indication_flag_max_uplink_bitrate

a guint32.

 

value_umts_minimum_qos_with_signaling_indication_flag_max_downlink_bitrate

a guint32.

 

value_umts_minimum_qos_with_signaling_indication_flag_guaranteed_uplink_bitrate

a guint32.

 

value_umts_minimum_qos_with_signaling_indication_flag_guaranteed_downlink_bitrate

a guint32.

 

value_umts_minimum_qos_with_signaling_indication_flag_qos_delivery_order

a QmiWdsDeliveryOrder.

 

value_umts_minimum_qos_with_signaling_indication_flag_maximum_sdu_size

a guint32.

 

value_umts_minimum_qos_with_signaling_indication_flag_sdu_error_ratio

a QmiWdsSduErrorRatio.

 

value_umts_minimum_qos_with_signaling_indication_flag_residual_bit_error_ratio

a QmiWdsSduResidualBitErrorRatio.

 

value_umts_minimum_qos_with_signaling_indication_flag_delivery_erroneous_sdu

a QmiWdsSduErroneousDelivery.

 

value_umts_minimum_qos_with_signaling_indication_flag_transfer_delay

a guint32.

 

value_umts_minimum_qos_with_signaling_indication_flag_traffic_handling_priority

a guint32.

 

value_umts_minimum_qos_with_signaling_indication_flag_signaling_indication

a gint8.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if value -was successfully set, FALSE otherwise.

-
-

Since: 1.18

-
-
-
-

qmi_message_wds_create_profile_input_get_umts_requested_qos_with_signaling_indication_flag ()

-
gboolean
-qmi_message_wds_create_profile_input_get_umts_requested_qos_with_signaling_indication_flag
-                               (QmiMessageWdsCreateProfileInput *self,
-                                QmiWdsTrafficClass *value_umts_requested_qos_with_signaling_indication_flag_traffic_class,
-                                guint32 *value_umts_requested_qos_with_signaling_indication_flag_max_uplink_bitrate,
-                                guint32 *value_umts_requested_qos_with_signaling_indication_flag_max_downlink_bitrate,
-                                guint32 *value_umts_requested_qos_with_signaling_indication_flag_guaranteed_uplink_bitrate,
-                                guint32 *value_umts_requested_qos_with_signaling_indication_flag_guaranteed_downlink_bitrate,
-                                QmiWdsDeliveryOrder *value_umts_requested_qos_with_signaling_indication_flag_qos_delivery_order,
-                                guint32 *value_umts_requested_qos_with_signaling_indication_flag_maximum_sdu_size,
-                                QmiWdsSduErrorRatio *value_umts_requested_qos_with_signaling_indication_flag_sdu_error_ratio,
-                                QmiWdsSduResidualBitErrorRatio *value_umts_requested_qos_with_signaling_indication_flag_residual_bit_error_ratio,
-                                QmiWdsSduErroneousDelivery *value_umts_requested_qos_with_signaling_indication_flag_delivery_erroneous_sdu,
-                                guint32 *value_umts_requested_qos_with_signaling_indication_flag_transfer_delay,
-                                guint32 *value_umts_requested_qos_with_signaling_indication_flag_traffic_handling_priority,
-                                gint8 *value_umts_requested_qos_with_signaling_indication_flag_signaling_indication,
-                                GError **error);
-

Get the 'UMTS Requested QoS With Signaling Indication Flag' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

self

a QmiMessageWdsCreateProfileInput.

 

value_umts_requested_qos_with_signaling_indication_flag_traffic_class

a placeholder for the output QmiWdsTrafficClass, or NULL if not required.

 

value_umts_requested_qos_with_signaling_indication_flag_max_uplink_bitrate

a placeholder for the output guint32, or NULL if not required.

 

value_umts_requested_qos_with_signaling_indication_flag_max_downlink_bitrate

a placeholder for the output guint32, or NULL if not required.

 

value_umts_requested_qos_with_signaling_indication_flag_guaranteed_uplink_bitrate

a placeholder for the output guint32, or NULL if not required.

 

value_umts_requested_qos_with_signaling_indication_flag_guaranteed_downlink_bitrate

a placeholder for the output guint32, or NULL if not required.

 

value_umts_requested_qos_with_signaling_indication_flag_qos_delivery_order

a placeholder for the output QmiWdsDeliveryOrder, or NULL if not required.

 

value_umts_requested_qos_with_signaling_indication_flag_maximum_sdu_size

a placeholder for the output guint32, or NULL if not required.

 

value_umts_requested_qos_with_signaling_indication_flag_sdu_error_ratio

a placeholder for the output QmiWdsSduErrorRatio, or NULL if not required.

 

value_umts_requested_qos_with_signaling_indication_flag_residual_bit_error_ratio

a placeholder for the output QmiWdsSduResidualBitErrorRatio, or NULL if not required.

 

value_umts_requested_qos_with_signaling_indication_flag_delivery_erroneous_sdu

a placeholder for the output QmiWdsSduErroneousDelivery, or NULL if not required.

 

value_umts_requested_qos_with_signaling_indication_flag_transfer_delay

a placeholder for the output guint32, or NULL if not required.

 

value_umts_requested_qos_with_signaling_indication_flag_traffic_handling_priority

a placeholder for the output guint32, or NULL if not required.

 

value_umts_requested_qos_with_signaling_indication_flag_signaling_indication

a placeholder for the output gint8, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.18

-
-
-
-

qmi_message_wds_create_profile_input_set_umts_requested_qos_with_signaling_indication_flag ()

-
gboolean
-qmi_message_wds_create_profile_input_set_umts_requested_qos_with_signaling_indication_flag
-                               (QmiMessageWdsCreateProfileInput *self,
-                                QmiWdsTrafficClass value_umts_requested_qos_with_signaling_indication_flag_traffic_class,
-                                guint32 value_umts_requested_qos_with_signaling_indication_flag_max_uplink_bitrate,
-                                guint32 value_umts_requested_qos_with_signaling_indication_flag_max_downlink_bitrate,
-                                guint32 value_umts_requested_qos_with_signaling_indication_flag_guaranteed_uplink_bitrate,
-                                guint32 value_umts_requested_qos_with_signaling_indication_flag_guaranteed_downlink_bitrate,
-                                QmiWdsDeliveryOrder value_umts_requested_qos_with_signaling_indication_flag_qos_delivery_order,
-                                guint32 value_umts_requested_qos_with_signaling_indication_flag_maximum_sdu_size,
-                                QmiWdsSduErrorRatio value_umts_requested_qos_with_signaling_indication_flag_sdu_error_ratio,
-                                QmiWdsSduResidualBitErrorRatio value_umts_requested_qos_with_signaling_indication_flag_residual_bit_error_ratio,
-                                QmiWdsSduErroneousDelivery value_umts_requested_qos_with_signaling_indication_flag_delivery_erroneous_sdu,
-                                guint32 value_umts_requested_qos_with_signaling_indication_flag_transfer_delay,
-                                guint32 value_umts_requested_qos_with_signaling_indication_flag_traffic_handling_priority,
-                                gint8 value_umts_requested_qos_with_signaling_indication_flag_signaling_indication,
-                                GError **error);
-

Set the 'UMTS Requested QoS With Signaling Indication Flag' field in the message.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

self

a QmiMessageWdsCreateProfileInput.

 

value_umts_requested_qos_with_signaling_indication_flag_traffic_class

a QmiWdsTrafficClass.

 

value_umts_requested_qos_with_signaling_indication_flag_max_uplink_bitrate

a guint32.

 

value_umts_requested_qos_with_signaling_indication_flag_max_downlink_bitrate

a guint32.

 

value_umts_requested_qos_with_signaling_indication_flag_guaranteed_uplink_bitrate

a guint32.

 

value_umts_requested_qos_with_signaling_indication_flag_guaranteed_downlink_bitrate

a guint32.

 

value_umts_requested_qos_with_signaling_indication_flag_qos_delivery_order

a QmiWdsDeliveryOrder.

 

value_umts_requested_qos_with_signaling_indication_flag_maximum_sdu_size

a guint32.

 

value_umts_requested_qos_with_signaling_indication_flag_sdu_error_ratio

a QmiWdsSduErrorRatio.

 

value_umts_requested_qos_with_signaling_indication_flag_residual_bit_error_ratio

a QmiWdsSduResidualBitErrorRatio.

 

value_umts_requested_qos_with_signaling_indication_flag_delivery_erroneous_sdu

a QmiWdsSduErroneousDelivery.

 

value_umts_requested_qos_with_signaling_indication_flag_transfer_delay

a guint32.

 

value_umts_requested_qos_with_signaling_indication_flag_traffic_handling_priority

a guint32.

 

value_umts_requested_qos_with_signaling_indication_flag_signaling_indication

a gint8.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if value -was successfully set, FALSE otherwise.

-
-

Since: 1.18

-
-
-
-

qmi_message_wds_create_profile_input_get_ipv6_address_preference ()

-
gboolean
-qmi_message_wds_create_profile_input_get_ipv6_address_preference
-                               (QmiMessageWdsCreateProfileInput *self,
-                                GArray **value_ipv6_address_preference_address,
-                                GError **error);
-

Get the 'IPv6 Address Preference' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessageWdsCreateProfileInput.

 

value_ipv6_address_preference_address

a placeholder for the output GArray of guint16 elements, or NULL if not required. Do not free it, it is owned by self -.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.18

-
-
-
-

qmi_message_wds_create_profile_input_set_ipv6_address_preference ()

-
gboolean
-qmi_message_wds_create_profile_input_set_ipv6_address_preference
-                               (QmiMessageWdsCreateProfileInput *self,
-                                GArray *value_ipv6_address_preference_address,
-                                GError **error);
-

Set the 'IPv6 Address Preference' field in the message.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessageWdsCreateProfileInput.

 

value_ipv6_address_preference_address

a GArray of guint16 elements. A new reference to value_ipv6_address_preference_address -will be taken.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if value -was successfully set, FALSE otherwise.

-
-

Since: 1.18

-
-
-
-

qmi_message_wds_create_profile_input_get_pdp_context_primary_id ()

-
gboolean
-qmi_message_wds_create_profile_input_get_pdp_context_primary_id
-                               (QmiMessageWdsCreateProfileInput *self,
-                                guint8 *value_pdp_context_primary_id,
-                                GError **error);
-

Get the 'PDP Context Primary ID' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessageWdsCreateProfileInput.

 

value_pdp_context_primary_id

a placeholder for the output guint8, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.18

-
-
-
-

qmi_message_wds_create_profile_input_set_pdp_context_primary_id ()

-
gboolean
-qmi_message_wds_create_profile_input_set_pdp_context_primary_id
-                               (QmiMessageWdsCreateProfileInput *self,
-                                guint8 value_pdp_context_primary_id,
-                                GError **error);
-

Set the 'PDP Context Primary ID' field in the message.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessageWdsCreateProfileInput.

 

value_pdp_context_primary_id

a guint8.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if value -was successfully set, FALSE otherwise.

-
-

Since: 1.18

-
-
-
-

qmi_message_wds_create_profile_input_get_pdp_context_secondary_flag ()

-
gboolean
-qmi_message_wds_create_profile_input_get_pdp_context_secondary_flag
-                               (QmiMessageWdsCreateProfileInput *self,
-                                gboolean *value_pdp_context_secondary_flag,
-                                GError **error);
-

Get the 'PDP Context Secondary Flag' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessageWdsCreateProfileInput.

 

value_pdp_context_secondary_flag

a placeholder for the output gboolean, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.18

-
-
-
-

qmi_message_wds_create_profile_input_set_pdp_context_secondary_flag ()

-
gboolean
-qmi_message_wds_create_profile_input_set_pdp_context_secondary_flag
-                               (QmiMessageWdsCreateProfileInput *self,
-                                gboolean value_pdp_context_secondary_flag,
-                                GError **error);
-

Set the 'PDP Context Secondary Flag' field in the message.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessageWdsCreateProfileInput.

 

value_pdp_context_secondary_flag

a gboolean.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if value -was successfully set, FALSE otherwise.

-
-

Since: 1.18

-
-
-
-

qmi_message_wds_create_profile_input_get_pdp_context_number ()

-
gboolean
-qmi_message_wds_create_profile_input_get_pdp_context_number
-                               (QmiMessageWdsCreateProfileInput *self,
-                                guint8 *value_pdp_context_number,
-                                GError **error);
-

Get the 'PDP Context Number' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessageWdsCreateProfileInput.

 

value_pdp_context_number

a placeholder for the output guint8, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.18

-
-
-
-

qmi_message_wds_create_profile_input_set_pdp_context_number ()

-
gboolean
-qmi_message_wds_create_profile_input_set_pdp_context_number
-                               (QmiMessageWdsCreateProfileInput *self,
-                                guint8 value_pdp_context_number,
-                                GError **error);
-

Set the 'PDP Context Number' field in the message.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessageWdsCreateProfileInput.

 

value_pdp_context_number

a guint8.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if value -was successfully set, FALSE otherwise.

-
-

Since: 1.18

-
-
-
-

qmi_message_wds_create_profile_input_get_imcn_flag ()

-
gboolean
-qmi_message_wds_create_profile_input_get_imcn_flag
-                               (QmiMessageWdsCreateProfileInput *self,
-                                gboolean *value_imcn_flag,
-                                GError **error);
-

Get the 'IMCN Flag' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessageWdsCreateProfileInput.

 

value_imcn_flag

a placeholder for the output gboolean, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.18

-
-
-
-

qmi_message_wds_create_profile_input_set_imcn_flag ()

-
gboolean
-qmi_message_wds_create_profile_input_set_imcn_flag
-                               (QmiMessageWdsCreateProfileInput *self,
-                                gboolean value_imcn_flag,
-                                GError **error);
-

Set the 'IMCN Flag' field in the message.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessageWdsCreateProfileInput.

 

value_imcn_flag

a gboolean.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if value -was successfully set, FALSE otherwise.

-
-

Since: 1.18

-
-
-
-

qmi_message_wds_create_profile_input_get_pcscf_address_using_dhcp ()

-
gboolean
-qmi_message_wds_create_profile_input_get_pcscf_address_using_dhcp
-                               (QmiMessageWdsCreateProfileInput *self,
-                                gboolean *value_pcscf_address_using_dhcp,
-                                GError **error);
-

Get the 'PCSCF Address Using DHCP' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessageWdsCreateProfileInput.

 

value_pcscf_address_using_dhcp

a placeholder for the output gboolean, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.18

-
-
-
-

qmi_message_wds_create_profile_input_set_pcscf_address_using_dhcp ()

-
gboolean
-qmi_message_wds_create_profile_input_set_pcscf_address_using_dhcp
-                               (QmiMessageWdsCreateProfileInput *self,
-                                gboolean value_pcscf_address_using_dhcp,
-                                GError **error);
-

Set the 'PCSCF Address Using DHCP' field in the message.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessageWdsCreateProfileInput.

 

value_pcscf_address_using_dhcp

a gboolean.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if value -was successfully set, FALSE otherwise.

-
-

Since: 1.18

-
-
-
-

qmi_message_wds_create_profile_input_get_pcscf_address_using_pco ()

-
gboolean
-qmi_message_wds_create_profile_input_get_pcscf_address_using_pco
-                               (QmiMessageWdsCreateProfileInput *self,
-                                gboolean *value_pcscf_address_using_pco,
-                                GError **error);
-

Get the 'PCSCF Address Using PCO' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessageWdsCreateProfileInput.

 

value_pcscf_address_using_pco

a placeholder for the output gboolean, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.18

-
-
-
-

qmi_message_wds_create_profile_input_set_pcscf_address_using_pco ()

-
gboolean
-qmi_message_wds_create_profile_input_set_pcscf_address_using_pco
-                               (QmiMessageWdsCreateProfileInput *self,
-                                gboolean value_pcscf_address_using_pco,
-                                GError **error);
-

Set the 'PCSCF Address Using PCO' field in the message.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessageWdsCreateProfileInput.

 

value_pcscf_address_using_pco

a gboolean.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if value -was successfully set, FALSE otherwise.

-
-

Since: 1.18

-
-
-
-

qmi_message_wds_create_profile_input_get_ipv4_address_preference ()

-
gboolean
-qmi_message_wds_create_profile_input_get_ipv4_address_preference
-                               (QmiMessageWdsCreateProfileInput *self,
-                                guint32 *value_ipv4_address_preference,
-                                GError **error);
-

Get the 'IPv4 Address Preference' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessageWdsCreateProfileInput.

 

value_ipv4_address_preference

a placeholder for the output guint32, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.18

-
-
-
-

qmi_message_wds_create_profile_input_set_ipv4_address_preference ()

-
gboolean
-qmi_message_wds_create_profile_input_set_ipv4_address_preference
-                               (QmiMessageWdsCreateProfileInput *self,
-                                guint32 value_ipv4_address_preference,
-                                GError **error);
-

Set the 'IPv4 Address Preference' field in the message.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessageWdsCreateProfileInput.

 

value_ipv4_address_preference

a guint32.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if value -was successfully set, FALSE otherwise.

-
-

Since: 1.18

-
-
-
-

qmi_message_wds_create_profile_input_get_authentication ()

-
gboolean
-qmi_message_wds_create_profile_input_get_authentication
-                               (QmiMessageWdsCreateProfileInput *self,
-                                QmiWdsAuthentication *value_authentication,
-                                GError **error);
-

Get the 'Authentication' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessageWdsCreateProfileInput.

 

value_authentication

a placeholder for the output QmiWdsAuthentication, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.18

-
-
-
-

qmi_message_wds_create_profile_input_set_authentication ()

-
gboolean
-qmi_message_wds_create_profile_input_set_authentication
-                               (QmiMessageWdsCreateProfileInput *self,
-                                QmiWdsAuthentication value_authentication,
-                                GError **error);
-

Set the 'Authentication' field in the message.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessageWdsCreateProfileInput.

 

value_authentication

a QmiWdsAuthentication.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if value -was successfully set, FALSE otherwise.

-
-

Since: 1.18

-
-
-
-

qmi_message_wds_create_profile_input_get_password ()

-
gboolean
-qmi_message_wds_create_profile_input_get_password
-                               (QmiMessageWdsCreateProfileInput *self,
-                                const gchar **value_password,
-                                GError **error);
-

Get the 'Password' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessageWdsCreateProfileInput.

 

value_password

a placeholder for the output constant string, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.18

-
-
-
-

qmi_message_wds_create_profile_input_set_password ()

-
gboolean
-qmi_message_wds_create_profile_input_set_password
-                               (QmiMessageWdsCreateProfileInput *self,
-                                const gchar *value_password,
-                                GError **error);
-

Set the 'Password' field in the message.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessageWdsCreateProfileInput.

 

value_password

a constant string.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if value -was successfully set, FALSE otherwise.

-
-

Since: 1.18

-
-
-
-

qmi_message_wds_create_profile_input_get_username ()

-
gboolean
-qmi_message_wds_create_profile_input_get_username
-                               (QmiMessageWdsCreateProfileInput *self,
-                                const gchar **value_username,
-                                GError **error);
-

Get the 'Username' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessageWdsCreateProfileInput.

 

value_username

a placeholder for the output constant string, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.18

-
-
-
-

qmi_message_wds_create_profile_input_set_username ()

-
gboolean
-qmi_message_wds_create_profile_input_set_username
-                               (QmiMessageWdsCreateProfileInput *self,
-                                const gchar *value_username,
-                                GError **error);
-

Set the 'Username' field in the message.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessageWdsCreateProfileInput.

 

value_username

a constant string.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if value -was successfully set, FALSE otherwise.

-
-

Since: 1.18

-
-
-
-

qmi_message_wds_create_profile_input_get_gprs_minimum_qos ()

-
gboolean
-qmi_message_wds_create_profile_input_get_gprs_minimum_qos
-                               (QmiMessageWdsCreateProfileInput *self,
-                                guint32 *value_gprs_minimum_qos_precedence_class,
-                                guint32 *value_gprs_minimum_qos_delay_class,
-                                guint32 *value_gprs_minimum_qos_reliability_class,
-                                guint32 *value_gprs_minimum_qos_peak_throughput_class,
-                                guint32 *value_gprs_minimum_qos_mean_throughput_class,
-                                GError **error);
-

Get the 'GPRS Minimum QoS' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

self

a QmiMessageWdsCreateProfileInput.

 

value_gprs_minimum_qos_precedence_class

a placeholder for the output guint32, or NULL if not required.

 

value_gprs_minimum_qos_delay_class

a placeholder for the output guint32, or NULL if not required.

 

value_gprs_minimum_qos_reliability_class

a placeholder for the output guint32, or NULL if not required.

 

value_gprs_minimum_qos_peak_throughput_class

a placeholder for the output guint32, or NULL if not required.

 

value_gprs_minimum_qos_mean_throughput_class

a placeholder for the output guint32, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.18

-
-
-
-

qmi_message_wds_create_profile_input_set_gprs_minimum_qos ()

-
gboolean
-qmi_message_wds_create_profile_input_set_gprs_minimum_qos
-                               (QmiMessageWdsCreateProfileInput *self,
-                                guint32 value_gprs_minimum_qos_precedence_class,
-                                guint32 value_gprs_minimum_qos_delay_class,
-                                guint32 value_gprs_minimum_qos_reliability_class,
-                                guint32 value_gprs_minimum_qos_peak_throughput_class,
-                                guint32 value_gprs_minimum_qos_mean_throughput_class,
-                                GError **error);
-

Set the 'GPRS Minimum QoS' field in the message.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

self

a QmiMessageWdsCreateProfileInput.

 

value_gprs_minimum_qos_precedence_class

a guint32.

 

value_gprs_minimum_qos_delay_class

a guint32.

 

value_gprs_minimum_qos_reliability_class

a guint32.

 

value_gprs_minimum_qos_peak_throughput_class

a guint32.

 

value_gprs_minimum_qos_mean_throughput_class

a guint32.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if value -was successfully set, FALSE otherwise.

-
-

Since: 1.18

-
-
-
-

qmi_message_wds_create_profile_input_get_gprs_requested_qos ()

-
gboolean
-qmi_message_wds_create_profile_input_get_gprs_requested_qos
-                               (QmiMessageWdsCreateProfileInput *self,
-                                guint32 *value_gprs_requested_qos_precedence_class,
-                                guint32 *value_gprs_requested_qos_delay_class,
-                                guint32 *value_gprs_requested_qos_reliability_class,
-                                guint32 *value_gprs_requested_qos_peak_throughput_class,
-                                guint32 *value_gprs_requested_qos_mean_throughput_class,
-                                GError **error);
-

Get the 'GPRS Requested QoS' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

self

a QmiMessageWdsCreateProfileInput.

 

value_gprs_requested_qos_precedence_class

a placeholder for the output guint32, or NULL if not required.

 

value_gprs_requested_qos_delay_class

a placeholder for the output guint32, or NULL if not required.

 

value_gprs_requested_qos_reliability_class

a placeholder for the output guint32, or NULL if not required.

 

value_gprs_requested_qos_peak_throughput_class

a placeholder for the output guint32, or NULL if not required.

 

value_gprs_requested_qos_mean_throughput_class

a placeholder for the output guint32, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.18

-
-
-
-

qmi_message_wds_create_profile_input_set_gprs_requested_qos ()

-
gboolean
-qmi_message_wds_create_profile_input_set_gprs_requested_qos
-                               (QmiMessageWdsCreateProfileInput *self,
-                                guint32 value_gprs_requested_qos_precedence_class,
-                                guint32 value_gprs_requested_qos_delay_class,
-                                guint32 value_gprs_requested_qos_reliability_class,
-                                guint32 value_gprs_requested_qos_peak_throughput_class,
-                                guint32 value_gprs_requested_qos_mean_throughput_class,
-                                GError **error);
-

Set the 'GPRS Requested QoS' field in the message.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

self

a QmiMessageWdsCreateProfileInput.

 

value_gprs_requested_qos_precedence_class

a guint32.

 

value_gprs_requested_qos_delay_class

a guint32.

 

value_gprs_requested_qos_reliability_class

a guint32.

 

value_gprs_requested_qos_peak_throughput_class

a guint32.

 

value_gprs_requested_qos_mean_throughput_class

a guint32.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if value -was successfully set, FALSE otherwise.

-
-

Since: 1.18

-
-
-
-

qmi_message_wds_create_profile_input_get_umts_minimum_qos ()

-
gboolean
-qmi_message_wds_create_profile_input_get_umts_minimum_qos
-                               (QmiMessageWdsCreateProfileInput *self,
-                                QmiWdsTrafficClass *value_umts_minimum_qos_traffic_class,
-                                guint32 *value_umts_minimum_qos_max_uplink_bitrate,
-                                guint32 *value_umts_minimum_qos_max_downlink_bitrate,
-                                guint32 *value_umts_minimum_qos_guaranteed_uplink_bitrate,
-                                guint32 *value_umts_minimum_qos_guaranteed_downlink_bitrate,
-                                QmiWdsDeliveryOrder *value_umts_minimum_qos_qos_delivery_order,
-                                guint32 *value_umts_minimum_qos_maximum_sdu_size,
-                                QmiWdsSduErrorRatio *value_umts_minimum_qos_sdu_error_ratio,
-                                QmiWdsSduResidualBitErrorRatio *value_umts_minimum_qos_residual_bit_error_ratio,
-                                QmiWdsSduErroneousDelivery *value_umts_minimum_qos_delivery_erroneous_sdu,
-                                guint32 *value_umts_minimum_qos_transfer_delay,
-                                guint32 *value_umts_minimum_qos_traffic_handling_priority,
-                                GError **error);
-

Get the 'UMTS Minimum QoS' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

self

a QmiMessageWdsCreateProfileInput.

 

value_umts_minimum_qos_traffic_class

a placeholder for the output QmiWdsTrafficClass, or NULL if not required.

 

value_umts_minimum_qos_max_uplink_bitrate

a placeholder for the output guint32, or NULL if not required.

 

value_umts_minimum_qos_max_downlink_bitrate

a placeholder for the output guint32, or NULL if not required.

 

value_umts_minimum_qos_guaranteed_uplink_bitrate

a placeholder for the output guint32, or NULL if not required.

 

value_umts_minimum_qos_guaranteed_downlink_bitrate

a placeholder for the output guint32, or NULL if not required.

 

value_umts_minimum_qos_qos_delivery_order

a placeholder for the output QmiWdsDeliveryOrder, or NULL if not required.

 

value_umts_minimum_qos_maximum_sdu_size

a placeholder for the output guint32, or NULL if not required.

 

value_umts_minimum_qos_sdu_error_ratio

a placeholder for the output QmiWdsSduErrorRatio, or NULL if not required.

 

value_umts_minimum_qos_residual_bit_error_ratio

a placeholder for the output QmiWdsSduResidualBitErrorRatio, or NULL if not required.

 

value_umts_minimum_qos_delivery_erroneous_sdu

a placeholder for the output QmiWdsSduErroneousDelivery, or NULL if not required.

 

value_umts_minimum_qos_transfer_delay

a placeholder for the output guint32, or NULL if not required.

 

value_umts_minimum_qos_traffic_handling_priority

a placeholder for the output guint32, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.18

-
-
-
-

qmi_message_wds_create_profile_input_set_umts_minimum_qos ()

-
gboolean
-qmi_message_wds_create_profile_input_set_umts_minimum_qos
-                               (QmiMessageWdsCreateProfileInput *self,
-                                QmiWdsTrafficClass value_umts_minimum_qos_traffic_class,
-                                guint32 value_umts_minimum_qos_max_uplink_bitrate,
-                                guint32 value_umts_minimum_qos_max_downlink_bitrate,
-                                guint32 value_umts_minimum_qos_guaranteed_uplink_bitrate,
-                                guint32 value_umts_minimum_qos_guaranteed_downlink_bitrate,
-                                QmiWdsDeliveryOrder value_umts_minimum_qos_qos_delivery_order,
-                                guint32 value_umts_minimum_qos_maximum_sdu_size,
-                                QmiWdsSduErrorRatio value_umts_minimum_qos_sdu_error_ratio,
-                                QmiWdsSduResidualBitErrorRatio value_umts_minimum_qos_residual_bit_error_ratio,
-                                QmiWdsSduErroneousDelivery value_umts_minimum_qos_delivery_erroneous_sdu,
-                                guint32 value_umts_minimum_qos_transfer_delay,
-                                guint32 value_umts_minimum_qos_traffic_handling_priority,
-                                GError **error);
-

Set the 'UMTS Minimum QoS' field in the message.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

self

a QmiMessageWdsCreateProfileInput.

 

value_umts_minimum_qos_traffic_class

a QmiWdsTrafficClass.

 

value_umts_minimum_qos_max_uplink_bitrate

a guint32.

 

value_umts_minimum_qos_max_downlink_bitrate

a guint32.

 

value_umts_minimum_qos_guaranteed_uplink_bitrate

a guint32.

 

value_umts_minimum_qos_guaranteed_downlink_bitrate

a guint32.

 

value_umts_minimum_qos_qos_delivery_order

a QmiWdsDeliveryOrder.

 

value_umts_minimum_qos_maximum_sdu_size

a guint32.

 

value_umts_minimum_qos_sdu_error_ratio

a QmiWdsSduErrorRatio.

 

value_umts_minimum_qos_residual_bit_error_ratio

a QmiWdsSduResidualBitErrorRatio.

 

value_umts_minimum_qos_delivery_erroneous_sdu

a QmiWdsSduErroneousDelivery.

 

value_umts_minimum_qos_transfer_delay

a guint32.

 

value_umts_minimum_qos_traffic_handling_priority

a guint32.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if value -was successfully set, FALSE otherwise.

-
-

Since: 1.18

-
-
-
-

qmi_message_wds_create_profile_input_get_umts_requested_qos ()

-
gboolean
-qmi_message_wds_create_profile_input_get_umts_requested_qos
-                               (QmiMessageWdsCreateProfileInput *self,
-                                QmiWdsTrafficClass *value_umts_requested_qos_traffic_class,
-                                guint32 *value_umts_requested_qos_max_uplink_bitrate,
-                                guint32 *value_umts_requested_qos_max_downlink_bitrate,
-                                guint32 *value_umts_requested_qos_guaranteed_uplink_bitrate,
-                                guint32 *value_umts_requested_qos_guaranteed_downlink_bitrate,
-                                QmiWdsDeliveryOrder *value_umts_requested_qos_qos_delivery_order,
-                                guint32 *value_umts_requested_qos_maximum_sdu_size,
-                                QmiWdsSduErrorRatio *value_umts_requested_qos_sdu_error_ratio,
-                                QmiWdsSduResidualBitErrorRatio *value_umts_requested_qos_residual_bit_error_ratio,
-                                QmiWdsSduErroneousDelivery *value_umts_requested_qos_delivery_erroneous_sdu,
-                                guint32 *value_umts_requested_qos_transfer_delay,
-                                guint32 *value_umts_requested_qos_traffic_handling_priority,
-                                GError **error);
-

Get the 'UMTS Requested QoS' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

self

a QmiMessageWdsCreateProfileInput.

 

value_umts_requested_qos_traffic_class

a placeholder for the output QmiWdsTrafficClass, or NULL if not required.

 

value_umts_requested_qos_max_uplink_bitrate

a placeholder for the output guint32, or NULL if not required.

 

value_umts_requested_qos_max_downlink_bitrate

a placeholder for the output guint32, or NULL if not required.

 

value_umts_requested_qos_guaranteed_uplink_bitrate

a placeholder for the output guint32, or NULL if not required.

 

value_umts_requested_qos_guaranteed_downlink_bitrate

a placeholder for the output guint32, or NULL if not required.

 

value_umts_requested_qos_qos_delivery_order

a placeholder for the output QmiWdsDeliveryOrder, or NULL if not required.

 

value_umts_requested_qos_maximum_sdu_size

a placeholder for the output guint32, or NULL if not required.

 

value_umts_requested_qos_sdu_error_ratio

a placeholder for the output QmiWdsSduErrorRatio, or NULL if not required.

 

value_umts_requested_qos_residual_bit_error_ratio

a placeholder for the output QmiWdsSduResidualBitErrorRatio, or NULL if not required.

 

value_umts_requested_qos_delivery_erroneous_sdu

a placeholder for the output QmiWdsSduErroneousDelivery, or NULL if not required.

 

value_umts_requested_qos_transfer_delay

a placeholder for the output guint32, or NULL if not required.

 

value_umts_requested_qos_traffic_handling_priority

a placeholder for the output guint32, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.18

-
-
-
-

qmi_message_wds_create_profile_input_set_umts_requested_qos ()

-
gboolean
-qmi_message_wds_create_profile_input_set_umts_requested_qos
-                               (QmiMessageWdsCreateProfileInput *self,
-                                QmiWdsTrafficClass value_umts_requested_qos_traffic_class,
-                                guint32 value_umts_requested_qos_max_uplink_bitrate,
-                                guint32 value_umts_requested_qos_max_downlink_bitrate,
-                                guint32 value_umts_requested_qos_guaranteed_uplink_bitrate,
-                                guint32 value_umts_requested_qos_guaranteed_downlink_bitrate,
-                                QmiWdsDeliveryOrder value_umts_requested_qos_qos_delivery_order,
-                                guint32 value_umts_requested_qos_maximum_sdu_size,
-                                QmiWdsSduErrorRatio value_umts_requested_qos_sdu_error_ratio,
-                                QmiWdsSduResidualBitErrorRatio value_umts_requested_qos_residual_bit_error_ratio,
-                                QmiWdsSduErroneousDelivery value_umts_requested_qos_delivery_erroneous_sdu,
-                                guint32 value_umts_requested_qos_transfer_delay,
-                                guint32 value_umts_requested_qos_traffic_handling_priority,
-                                GError **error);
-

Set the 'UMTS Requested QoS' field in the message.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

self

a QmiMessageWdsCreateProfileInput.

 

value_umts_requested_qos_traffic_class

a QmiWdsTrafficClass.

 

value_umts_requested_qos_max_uplink_bitrate

a guint32.

 

value_umts_requested_qos_max_downlink_bitrate

a guint32.

 

value_umts_requested_qos_guaranteed_uplink_bitrate

a guint32.

 

value_umts_requested_qos_guaranteed_downlink_bitrate

a guint32.

 

value_umts_requested_qos_qos_delivery_order

a QmiWdsDeliveryOrder.

 

value_umts_requested_qos_maximum_sdu_size

a guint32.

 

value_umts_requested_qos_sdu_error_ratio

a QmiWdsSduErrorRatio.

 

value_umts_requested_qos_residual_bit_error_ratio

a QmiWdsSduResidualBitErrorRatio.

 

value_umts_requested_qos_delivery_erroneous_sdu

a QmiWdsSduErroneousDelivery.

 

value_umts_requested_qos_transfer_delay

a guint32.

 

value_umts_requested_qos_traffic_handling_priority

a guint32.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if value -was successfully set, FALSE otherwise.

-
-

Since: 1.18

-
-
-
-

qmi_message_wds_create_profile_input_get_secondary_ipv4_dns_address ()

-
gboolean
-qmi_message_wds_create_profile_input_get_secondary_ipv4_dns_address
-                               (QmiMessageWdsCreateProfileInput *self,
-                                guint32 *value_secondary_ipv4_dns_address,
-                                GError **error);
-

Get the 'Secondary IPv4 DNS Address' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessageWdsCreateProfileInput.

 

value_secondary_ipv4_dns_address

a placeholder for the output guint32, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.18

-
-
-
-

qmi_message_wds_create_profile_input_set_secondary_ipv4_dns_address ()

-
gboolean
-qmi_message_wds_create_profile_input_set_secondary_ipv4_dns_address
-                               (QmiMessageWdsCreateProfileInput *self,
-                                guint32 value_secondary_ipv4_dns_address,
-                                GError **error);
-

Set the 'Secondary IPv4 DNS Address' field in the message.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessageWdsCreateProfileInput.

 

value_secondary_ipv4_dns_address

a guint32.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if value -was successfully set, FALSE otherwise.

-
-

Since: 1.18

-
-
-
-

qmi_message_wds_create_profile_input_get_primary_ipv4_dns_address ()

-
gboolean
-qmi_message_wds_create_profile_input_get_primary_ipv4_dns_address
-                               (QmiMessageWdsCreateProfileInput *self,
-                                guint32 *value_primary_ipv4_dns_address,
-                                GError **error);
-

Get the 'Primary IPv4 DNS Address' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessageWdsCreateProfileInput.

 

value_primary_ipv4_dns_address

a placeholder for the output guint32, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.18

-
-
-
-

qmi_message_wds_create_profile_input_set_primary_ipv4_dns_address ()

-
gboolean
-qmi_message_wds_create_profile_input_set_primary_ipv4_dns_address
-                               (QmiMessageWdsCreateProfileInput *self,
-                                guint32 value_primary_ipv4_dns_address,
-                                GError **error);
-

Set the 'Primary IPv4 DNS Address' field in the message.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessageWdsCreateProfileInput.

 

value_primary_ipv4_dns_address

a guint32.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if value -was successfully set, FALSE otherwise.

-
-

Since: 1.18

-
-
-
-

qmi_message_wds_create_profile_input_get_apn_name ()

-
gboolean
-qmi_message_wds_create_profile_input_get_apn_name
-                               (QmiMessageWdsCreateProfileInput *self,
-                                const gchar **value_apn_name,
-                                GError **error);
-

Get the 'APN Name' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessageWdsCreateProfileInput.

 

value_apn_name

a placeholder for the output constant string, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.18

-
-
-
-

qmi_message_wds_create_profile_input_set_apn_name ()

-
gboolean
-qmi_message_wds_create_profile_input_set_apn_name
-                               (QmiMessageWdsCreateProfileInput *self,
-                                const gchar *value_apn_name,
-                                GError **error);
-

Set the 'APN Name' field in the message.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessageWdsCreateProfileInput.

 

value_apn_name

a constant string.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if value -was successfully set, FALSE otherwise.

-
-

Since: 1.18

-
-
-
-

qmi_message_wds_create_profile_input_get_pdp_data_compression_type ()

-
gboolean
-qmi_message_wds_create_profile_input_get_pdp_data_compression_type
-                               (QmiMessageWdsCreateProfileInput *self,
-                                QmiWdsPdpDataCompressionType *value_pdp_data_compression_type,
-                                GError **error);
-

Get the 'PDP Data Compression Type' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessageWdsCreateProfileInput.

 

value_pdp_data_compression_type

a placeholder for the output QmiWdsPdpDataCompressionType, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.18

-
-
-
-

qmi_message_wds_create_profile_input_set_pdp_data_compression_type ()

-
gboolean
-qmi_message_wds_create_profile_input_set_pdp_data_compression_type
-                               (QmiMessageWdsCreateProfileInput *self,
-                                QmiWdsPdpDataCompressionType value_pdp_data_compression_type,
-                                GError **error);
-

Set the 'PDP Data Compression Type' field in the message.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessageWdsCreateProfileInput.

 

value_pdp_data_compression_type

a QmiWdsPdpDataCompressionType.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if value -was successfully set, FALSE otherwise.

-
-

Since: 1.18

-
-
-
-

qmi_message_wds_create_profile_input_get_pdp_header_compression_type ()

-
gboolean
-qmi_message_wds_create_profile_input_get_pdp_header_compression_type
-                               (QmiMessageWdsCreateProfileInput *self,
-                                QmiWdsPdpHeaderCompressionType *value_pdp_header_compression_type,
-                                GError **error);
-

Get the 'PDP Header Compression Type' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessageWdsCreateProfileInput.

 

value_pdp_header_compression_type

a placeholder for the output QmiWdsPdpHeaderCompressionType, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.18

-
-
-
-

qmi_message_wds_create_profile_input_set_pdp_header_compression_type ()

-
gboolean
-qmi_message_wds_create_profile_input_set_pdp_header_compression_type
-                               (QmiMessageWdsCreateProfileInput *self,
-                                QmiWdsPdpHeaderCompressionType value_pdp_header_compression_type,
-                                GError **error);
-

Set the 'PDP Header Compression Type' field in the message.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessageWdsCreateProfileInput.

 

value_pdp_header_compression_type

a QmiWdsPdpHeaderCompressionType.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if value -was successfully set, FALSE otherwise.

-
-

Since: 1.18

-
-
-
-

qmi_message_wds_create_profile_input_get_pdp_type ()

-
gboolean
-qmi_message_wds_create_profile_input_get_pdp_type
-                               (QmiMessageWdsCreateProfileInput *self,
-                                QmiWdsPdpType *value_pdp_type,
-                                GError **error);
-

Get the 'PDP Type' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessageWdsCreateProfileInput.

 

value_pdp_type

a placeholder for the output QmiWdsPdpType, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.18

-
-
-
-

qmi_message_wds_create_profile_input_set_pdp_type ()

-
gboolean
-qmi_message_wds_create_profile_input_set_pdp_type
-                               (QmiMessageWdsCreateProfileInput *self,
-                                QmiWdsPdpType value_pdp_type,
-                                GError **error);
-

Set the 'PDP Type' field in the message.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessageWdsCreateProfileInput.

 

value_pdp_type

a QmiWdsPdpType.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if value -was successfully set, FALSE otherwise.

-
-

Since: 1.18

-
-
-
-

qmi_message_wds_create_profile_input_get_profile_name ()

-
gboolean
-qmi_message_wds_create_profile_input_get_profile_name
-                               (QmiMessageWdsCreateProfileInput *self,
-                                const gchar **value_profile_name,
-                                GError **error);
-

Get the 'Profile Name' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessageWdsCreateProfileInput.

 

value_profile_name

a placeholder for the output constant string, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.18

-
-
-
-

qmi_message_wds_create_profile_input_set_profile_name ()

-
gboolean
-qmi_message_wds_create_profile_input_set_profile_name
-                               (QmiMessageWdsCreateProfileInput *self,
-                                const gchar *value_profile_name,
-                                GError **error);
-

Set the 'Profile Name' field in the message.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessageWdsCreateProfileInput.

 

value_profile_name

a constant string.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if value -was successfully set, FALSE otherwise.

-
-

Since: 1.18

-
-
-
-

qmi_message_wds_create_profile_input_get_profile_type ()

-
gboolean
-qmi_message_wds_create_profile_input_get_profile_type
-                               (QmiMessageWdsCreateProfileInput *self,
-                                QmiWdsProfileType *value_profile_type,
-                                GError **error);
-

Get the 'Profile Type' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessageWdsCreateProfileInput.

 

value_profile_type

a placeholder for the output QmiWdsProfileType, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.18

-
-
-
-

qmi_message_wds_create_profile_input_set_profile_type ()

-
gboolean
-qmi_message_wds_create_profile_input_set_profile_type
-                               (QmiMessageWdsCreateProfileInput *self,
-                                QmiWdsProfileType value_profile_type,
-                                GError **error);
-

Set the 'Profile Type' field in the message.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessageWdsCreateProfileInput.

 

value_profile_type

a QmiWdsProfileType.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if value -was successfully set, FALSE otherwise.

-
-

Since: 1.18

-
-
-
-

qmi_message_wds_create_profile_output_ref ()

-
QmiMessageWdsCreateProfileOutput *
-qmi_message_wds_create_profile_output_ref
-                               (QmiMessageWdsCreateProfileOutput *self);
-

Atomically increments the reference count of self - by one.

-
-

Parameters

-
----- - - - - - -

self

a QmiMessageWdsCreateProfileOutput.

 
-
-
-

Returns

-

the new reference to self -.

-
-

Since: 1.18

-
-
-
-

qmi_message_wds_create_profile_output_unref ()

-
void
-qmi_message_wds_create_profile_output_unref
-                               (QmiMessageWdsCreateProfileOutput *self);
-

Atomically decrements the reference count of self - by one. -If the reference count drops to 0, self - is completely disposed.

-
-

Parameters

-
----- - - - - - -

self

a QmiMessageWdsCreateProfileOutput.

 
-
-

Since: 1.18

-
-
-
-

qmi_message_wds_create_profile_output_get_result ()

-
gboolean
-qmi_message_wds_create_profile_output_get_result
-                               (QmiMessageWdsCreateProfileOutput *self,
-                                GError **error);
-

Get the result of the QMI operation.

-
-

Parameters

-
----- - - - - - - - - - - - - -

self

a QmiMessageWdsCreateProfileOutput.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the QMI operation succeeded, FALSE if error -is set.

-
-

Since: 1.18

-
-
-
-

qmi_message_wds_create_profile_output_get_profile_identifier ()

-
gboolean
-qmi_message_wds_create_profile_output_get_profile_identifier
-                               (QmiMessageWdsCreateProfileOutput *self,
-                                QmiWdsProfileType *value_profile_identifier_profile_type,
-                                guint8 *value_profile_identifier_profile_index,
-                                GError **error);
-

Get the 'Profile Identifier' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - - - - - - -

self

a QmiMessageWdsCreateProfileOutput.

 

value_profile_identifier_profile_type

a placeholder for the output QmiWdsProfileType, or NULL if not required.

 

value_profile_identifier_profile_index

a placeholder for the output guint8, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.18

-
-
-
-

qmi_message_wds_create_profile_output_get_extended_error_code ()

-
gboolean
-qmi_message_wds_create_profile_output_get_extended_error_code
-                               (QmiMessageWdsCreateProfileOutput *self,
-                                QmiWdsDsProfileError *value_extended_error_code,
-                                GError **error);
-

Get the 'Extended Error Code' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessageWdsCreateProfileOutput.

 

value_extended_error_code

a placeholder for the output QmiWdsDsProfileError, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.18

-
-
-
-

qmi_client_wds_create_profile ()

-
void
-qmi_client_wds_create_profile (QmiClientWds *self,
-                               QmiMessageWdsCreateProfileInput *input,
-                               guint timeout,
-                               GCancellable *cancellable,
-                               GAsyncReadyCallback callback,
-                               gpointer user_data);
-

Asynchronously sends a Create Profile request to the device.

-

When the operation is finished, callback - will be invoked in the thread-default main loop of the thread you are calling this method from.

-

You can then call qmi_client_wds_create_profile_finish() to get the result of the operation.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

self

a QmiClientWds.

 

input

a QmiMessageWdsCreateProfileInput.

 

timeout

maximum time to wait for the method to complete, in seconds.

 

cancellable

a GCancellable or NULL.

 

callback

a GAsyncReadyCallback to call when the request is satisfied.

 

user_data

user data to pass to callback -.

 
-
-

Since: 1.18

-
-
-
-

qmi_client_wds_create_profile_finish ()

-
QmiMessageWdsCreateProfileOutput *
-qmi_client_wds_create_profile_finish (QmiClientWds *self,
-                                      GAsyncResult *res,
-                                      GError **error);
-

Finishes an async operation started with qmi_client_wds_create_profile().

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiClientWds.

 

res

the GAsyncResult obtained from the GAsyncReadyCallback passed to qmi_client_wds_create_profile().

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

a QmiMessageWdsCreateProfileOutput, or NULL if error -is set. The returned value should be freed with qmi_message_wds_create_profile_output_unref().

-
-

Since: 1.18

-
-
-
-

Types and Values

-
-

QmiMessageWdsCreateProfileInput

-
typedef struct _QmiMessageWdsCreateProfileInput QmiMessageWdsCreateProfileInput;
-

The QmiMessageWdsCreateProfileInput structure contains private data and should only be accessed -using the provided API.

-

Since: 1.18

-
-
-
-

QmiMessageWdsCreateProfileOutput

-
typedef struct _QmiMessageWdsCreateProfileOutput QmiMessageWdsCreateProfileOutput;
-

The QmiMessageWdsCreateProfileOutput structure contains private data and should only be accessed -using the provided API.

-

Since: 1.18

-
-
-
- - - \ No newline at end of file diff -Nru libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-WDS-Create-Profile-request.html libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-WDS-Create-Profile-request.html --- libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-WDS-Create-Profile-request.html 1970-01-01 01:00:00.000000000 +0100 +++ libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-WDS-Create-Profile-request.html 2019-01-08 15:19:02.000000000 +0100 @@ -0,0 +1,4298 @@ + + + + +WDS Create Profile request: libqmi-glib Reference Manual + + + + + + + + + + + + + + + + +
+
+
+ + +
+

WDS Create Profile request

+

WDS Create Profile request

+
+
+

Functions

+
++++ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+QmiMessageWdsCreateProfileInput * + +qmi_message_wds_create_profile_input_new () +
+QmiMessageWdsCreateProfileInput * + +qmi_message_wds_create_profile_input_ref () +
+void + +qmi_message_wds_create_profile_input_unref () +
+gboolean + +qmi_message_wds_create_profile_input_get_roaming_disallowed_flag () +
+gboolean + +qmi_message_wds_create_profile_input_set_roaming_disallowed_flag () +
+gboolean + +qmi_message_wds_create_profile_input_get_apn_disabled_flag () +
+gboolean + +qmi_message_wds_create_profile_input_set_apn_disabled_flag () +
+gboolean + +qmi_message_wds_create_profile_input_get_lte_qos_parameters () +
+gboolean + +qmi_message_wds_create_profile_input_set_lte_qos_parameters () +
+gboolean + +qmi_message_wds_create_profile_input_get_ipv6_secondary_dns_address_preference () +
+gboolean + +qmi_message_wds_create_profile_input_set_ipv6_secondary_dns_address_preference () +
+gboolean + +qmi_message_wds_create_profile_input_get_ipv6_primary_dns_address_preference () +
+gboolean + +qmi_message_wds_create_profile_input_set_ipv6_primary_dns_address_preference () +
+gboolean + +qmi_message_wds_create_profile_input_get_umts_minimum_qos_with_signaling_indication_flag () +
+gboolean + +qmi_message_wds_create_profile_input_set_umts_minimum_qos_with_signaling_indication_flag () +
+gboolean + +qmi_message_wds_create_profile_input_get_umts_requested_qos_with_signaling_indication_flag () +
+gboolean + +qmi_message_wds_create_profile_input_set_umts_requested_qos_with_signaling_indication_flag () +
+gboolean + +qmi_message_wds_create_profile_input_get_ipv6_address_preference () +
+gboolean + +qmi_message_wds_create_profile_input_set_ipv6_address_preference () +
+gboolean + +qmi_message_wds_create_profile_input_get_pdp_context_primary_id () +
+gboolean + +qmi_message_wds_create_profile_input_set_pdp_context_primary_id () +
+gboolean + +qmi_message_wds_create_profile_input_get_pdp_context_secondary_flag () +
+gboolean + +qmi_message_wds_create_profile_input_set_pdp_context_secondary_flag () +
+gboolean + +qmi_message_wds_create_profile_input_get_pdp_context_number () +
+gboolean + +qmi_message_wds_create_profile_input_set_pdp_context_number () +
+gboolean + +qmi_message_wds_create_profile_input_get_imcn_flag () +
+gboolean + +qmi_message_wds_create_profile_input_set_imcn_flag () +
+gboolean + +qmi_message_wds_create_profile_input_get_pcscf_address_using_dhcp () +
+gboolean + +qmi_message_wds_create_profile_input_set_pcscf_address_using_dhcp () +
+gboolean + +qmi_message_wds_create_profile_input_get_pcscf_address_using_pco () +
+gboolean + +qmi_message_wds_create_profile_input_set_pcscf_address_using_pco () +
+gboolean + +qmi_message_wds_create_profile_input_get_ipv4_address_preference () +
+gboolean + +qmi_message_wds_create_profile_input_set_ipv4_address_preference () +
+gboolean + +qmi_message_wds_create_profile_input_get_authentication () +
+gboolean + +qmi_message_wds_create_profile_input_set_authentication () +
+gboolean + +qmi_message_wds_create_profile_input_get_password () +
+gboolean + +qmi_message_wds_create_profile_input_set_password () +
+gboolean + +qmi_message_wds_create_profile_input_get_username () +
+gboolean + +qmi_message_wds_create_profile_input_set_username () +
+gboolean + +qmi_message_wds_create_profile_input_get_gprs_minimum_qos () +
+gboolean + +qmi_message_wds_create_profile_input_set_gprs_minimum_qos () +
+gboolean + +qmi_message_wds_create_profile_input_get_gprs_requested_qos () +
+gboolean + +qmi_message_wds_create_profile_input_set_gprs_requested_qos () +
+gboolean + +qmi_message_wds_create_profile_input_get_umts_minimum_qos () +
+gboolean + +qmi_message_wds_create_profile_input_set_umts_minimum_qos () +
+gboolean + +qmi_message_wds_create_profile_input_get_umts_requested_qos () +
+gboolean + +qmi_message_wds_create_profile_input_set_umts_requested_qos () +
+gboolean + +qmi_message_wds_create_profile_input_get_secondary_ipv4_dns_address () +
+gboolean + +qmi_message_wds_create_profile_input_set_secondary_ipv4_dns_address () +
+gboolean + +qmi_message_wds_create_profile_input_get_primary_ipv4_dns_address () +
+gboolean + +qmi_message_wds_create_profile_input_set_primary_ipv4_dns_address () +
+gboolean + +qmi_message_wds_create_profile_input_get_apn_name () +
+gboolean + +qmi_message_wds_create_profile_input_set_apn_name () +
+gboolean + +qmi_message_wds_create_profile_input_get_pdp_data_compression_type () +
+gboolean + +qmi_message_wds_create_profile_input_set_pdp_data_compression_type () +
+gboolean + +qmi_message_wds_create_profile_input_get_pdp_header_compression_type () +
+gboolean + +qmi_message_wds_create_profile_input_set_pdp_header_compression_type () +
+gboolean + +qmi_message_wds_create_profile_input_get_pdp_type () +
+gboolean + +qmi_message_wds_create_profile_input_set_pdp_type () +
+gboolean + +qmi_message_wds_create_profile_input_get_profile_name () +
+gboolean + +qmi_message_wds_create_profile_input_set_profile_name () +
+gboolean + +qmi_message_wds_create_profile_input_get_profile_type () +
+gboolean + +qmi_message_wds_create_profile_input_set_profile_type () +
+QmiMessageWdsCreateProfileOutput * + +qmi_message_wds_create_profile_output_ref () +
+void + +qmi_message_wds_create_profile_output_unref () +
+gboolean + +qmi_message_wds_create_profile_output_get_result () +
+gboolean + +qmi_message_wds_create_profile_output_get_profile_identifier () +
+gboolean + +qmi_message_wds_create_profile_output_get_extended_error_code () +
+void + +qmi_client_wds_create_profile () +
+QmiMessageWdsCreateProfileOutput * + +qmi_client_wds_create_profile_finish () +
+
+
+

Types and Values

+ +
+
+

Object Hierarchy

+
    GBoxed
+    ├── QmiMessageWdsCreateProfileInput
+    ╰── QmiMessageWdsCreateProfileOutput
+
+
+
+

Description

+
+
+

Functions

+
+

qmi_message_wds_create_profile_input_new ()

+
QmiMessageWdsCreateProfileInput *
+qmi_message_wds_create_profile_input_new
+                               (void);
+

Allocates a new QmiMessageWdsCreateProfileInput.

+
+

Returns

+

the newly created QmiMessageWdsCreateProfileInput. The returned value should be freed with qmi_message_wds_create_profile_input_unref().

+
+

Since: 1.18

+
+
+
+

qmi_message_wds_create_profile_input_ref ()

+
QmiMessageWdsCreateProfileInput *
+qmi_message_wds_create_profile_input_ref
+                               (QmiMessageWdsCreateProfileInput *self);
+

Atomically increments the reference count of self + by one.

+
+

Parameters

+
+++++ + + + + + +

self

a QmiMessageWdsCreateProfileInput.

 
+
+
+

Returns

+

the new reference to self +.

+
+

Since: 1.18

+
+
+
+

qmi_message_wds_create_profile_input_unref ()

+
void
+qmi_message_wds_create_profile_input_unref
+                               (QmiMessageWdsCreateProfileInput *self);
+

Atomically decrements the reference count of self + by one. +If the reference count drops to 0, self + is completely disposed.

+
+

Parameters

+
+++++ + + + + + +

self

a QmiMessageWdsCreateProfileInput.

 
+
+

Since: 1.18

+
+
+
+

qmi_message_wds_create_profile_input_get_roaming_disallowed_flag ()

+
gboolean
+qmi_message_wds_create_profile_input_get_roaming_disallowed_flag
+                               (QmiMessageWdsCreateProfileInput *self,
+                                gboolean *value_roaming_disallowed_flag,
+                                GError **error);
+

Get the 'Roaming Disallowed Flag' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageWdsCreateProfileInput.

 

value_roaming_disallowed_flag

a placeholder for the output gboolean, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.22

+
+
+
+

qmi_message_wds_create_profile_input_set_roaming_disallowed_flag ()

+
gboolean
+qmi_message_wds_create_profile_input_set_roaming_disallowed_flag
+                               (QmiMessageWdsCreateProfileInput *self,
+                                gboolean value_roaming_disallowed_flag,
+                                GError **error);
+

Set the 'Roaming Disallowed Flag' field in the message.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageWdsCreateProfileInput.

 

value_roaming_disallowed_flag

a gboolean.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if value +was successfully set, FALSE otherwise.

+
+

Since: 1.22

+
+
+
+

qmi_message_wds_create_profile_input_get_apn_disabled_flag ()

+
gboolean
+qmi_message_wds_create_profile_input_get_apn_disabled_flag
+                               (QmiMessageWdsCreateProfileInput *self,
+                                gboolean *value_apn_disabled_flag,
+                                GError **error);
+

Get the 'APN Disabled Flag' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageWdsCreateProfileInput.

 

value_apn_disabled_flag

a placeholder for the output gboolean, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.22

+
+
+
+

qmi_message_wds_create_profile_input_set_apn_disabled_flag ()

+
gboolean
+qmi_message_wds_create_profile_input_set_apn_disabled_flag
+                               (QmiMessageWdsCreateProfileInput *self,
+                                gboolean value_apn_disabled_flag,
+                                GError **error);
+

Set the 'APN Disabled Flag' field in the message.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageWdsCreateProfileInput.

 

value_apn_disabled_flag

a gboolean.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if value +was successfully set, FALSE otherwise.

+
+

Since: 1.22

+
+
+
+

qmi_message_wds_create_profile_input_get_lte_qos_parameters ()

+
gboolean
+qmi_message_wds_create_profile_input_get_lte_qos_parameters
+                               (QmiMessageWdsCreateProfileInput *self,
+                                QmiWdsQosClassIdentifier *value_lte_qos_parameters_qos_class_identifier,
+                                guint32 *value_lte_qos_parameters_guaranteed_downlink_bitrate,
+                                guint32 *value_lte_qos_parameters_max_downlink_bitrate,
+                                guint32 *value_lte_qos_parameters_guaranteed_uplink_bitrate,
+                                guint32 *value_lte_qos_parameters_max_uplink_bitrate,
+                                GError **error);
+

Get the 'LTE QoS Parameters' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

self

a QmiMessageWdsCreateProfileInput.

 

value_lte_qos_parameters_qos_class_identifier

a placeholder for the output QmiWdsQosClassIdentifier, or NULL if not required.

 

value_lte_qos_parameters_guaranteed_downlink_bitrate

a placeholder for the output guint32, or NULL if not required.

 

value_lte_qos_parameters_max_downlink_bitrate

a placeholder for the output guint32, or NULL if not required.

 

value_lte_qos_parameters_guaranteed_uplink_bitrate

a placeholder for the output guint32, or NULL if not required.

 

value_lte_qos_parameters_max_uplink_bitrate

a placeholder for the output guint32, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.18

+
+
+
+

qmi_message_wds_create_profile_input_set_lte_qos_parameters ()

+
gboolean
+qmi_message_wds_create_profile_input_set_lte_qos_parameters
+                               (QmiMessageWdsCreateProfileInput *self,
+                                QmiWdsQosClassIdentifier value_lte_qos_parameters_qos_class_identifier,
+                                guint32 value_lte_qos_parameters_guaranteed_downlink_bitrate,
+                                guint32 value_lte_qos_parameters_max_downlink_bitrate,
+                                guint32 value_lte_qos_parameters_guaranteed_uplink_bitrate,
+                                guint32 value_lte_qos_parameters_max_uplink_bitrate,
+                                GError **error);
+

Set the 'LTE QoS Parameters' field in the message.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

self

a QmiMessageWdsCreateProfileInput.

 

value_lte_qos_parameters_qos_class_identifier

a QmiWdsQosClassIdentifier.

 

value_lte_qos_parameters_guaranteed_downlink_bitrate

a guint32.

 

value_lte_qos_parameters_max_downlink_bitrate

a guint32.

 

value_lte_qos_parameters_guaranteed_uplink_bitrate

a guint32.

 

value_lte_qos_parameters_max_uplink_bitrate

a guint32.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if value +was successfully set, FALSE otherwise.

+
+

Since: 1.18

+
+
+
+

qmi_message_wds_create_profile_input_get_ipv6_secondary_dns_address_preference ()

+
gboolean
+qmi_message_wds_create_profile_input_get_ipv6_secondary_dns_address_preference
+                               (QmiMessageWdsCreateProfileInput *self,
+                                GArray **value_ipv6_secondary_dns_address_preference,
+                                GError **error);
+

Get the 'IPv6 Secondary DNS Address Preference' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageWdsCreateProfileInput.

 

value_ipv6_secondary_dns_address_preference

a placeholder for the output GArray of guint16 elements, or NULL if not required. Do not free it, it is owned by self +.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.18

+
+
+
+

qmi_message_wds_create_profile_input_set_ipv6_secondary_dns_address_preference ()

+
gboolean
+qmi_message_wds_create_profile_input_set_ipv6_secondary_dns_address_preference
+                               (QmiMessageWdsCreateProfileInput *self,
+                                GArray *value_ipv6_secondary_dns_address_preference,
+                                GError **error);
+

Set the 'IPv6 Secondary DNS Address Preference' field in the message.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageWdsCreateProfileInput.

 

value_ipv6_secondary_dns_address_preference

a GArray of guint16 elements. A new reference to value_ipv6_secondary_dns_address_preference +will be taken.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if value +was successfully set, FALSE otherwise.

+
+

Since: 1.18

+
+
+
+

qmi_message_wds_create_profile_input_get_ipv6_primary_dns_address_preference ()

+
gboolean
+qmi_message_wds_create_profile_input_get_ipv6_primary_dns_address_preference
+                               (QmiMessageWdsCreateProfileInput *self,
+                                GArray **value_ipv6_primary_dns_address_preference,
+                                GError **error);
+

Get the 'IPv6 Primary DNS Address Preference' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageWdsCreateProfileInput.

 

value_ipv6_primary_dns_address_preference

a placeholder for the output GArray of guint16 elements, or NULL if not required. Do not free it, it is owned by self +.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.18

+
+
+
+

qmi_message_wds_create_profile_input_set_ipv6_primary_dns_address_preference ()

+
gboolean
+qmi_message_wds_create_profile_input_set_ipv6_primary_dns_address_preference
+                               (QmiMessageWdsCreateProfileInput *self,
+                                GArray *value_ipv6_primary_dns_address_preference,
+                                GError **error);
+

Set the 'IPv6 Primary DNS Address Preference' field in the message.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageWdsCreateProfileInput.

 

value_ipv6_primary_dns_address_preference

a GArray of guint16 elements. A new reference to value_ipv6_primary_dns_address_preference +will be taken.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if value +was successfully set, FALSE otherwise.

+
+

Since: 1.18

+
+
+
+

qmi_message_wds_create_profile_input_get_umts_minimum_qos_with_signaling_indication_flag ()

+
gboolean
+qmi_message_wds_create_profile_input_get_umts_minimum_qos_with_signaling_indication_flag
+                               (QmiMessageWdsCreateProfileInput *self,
+                                QmiWdsTrafficClass *value_umts_minimum_qos_with_signaling_indication_flag_traffic_class,
+                                guint32 *value_umts_minimum_qos_with_signaling_indication_flag_max_uplink_bitrate,
+                                guint32 *value_umts_minimum_qos_with_signaling_indication_flag_max_downlink_bitrate,
+                                guint32 *value_umts_minimum_qos_with_signaling_indication_flag_guaranteed_uplink_bitrate,
+                                guint32 *value_umts_minimum_qos_with_signaling_indication_flag_guaranteed_downlink_bitrate,
+                                QmiWdsDeliveryOrder *value_umts_minimum_qos_with_signaling_indication_flag_qos_delivery_order,
+                                guint32 *value_umts_minimum_qos_with_signaling_indication_flag_maximum_sdu_size,
+                                QmiWdsSduErrorRatio *value_umts_minimum_qos_with_signaling_indication_flag_sdu_error_ratio,
+                                QmiWdsSduResidualBitErrorRatio *value_umts_minimum_qos_with_signaling_indication_flag_residual_bit_error_ratio,
+                                QmiWdsSduErroneousDelivery *value_umts_minimum_qos_with_signaling_indication_flag_delivery_erroneous_sdu,
+                                guint32 *value_umts_minimum_qos_with_signaling_indication_flag_transfer_delay,
+                                guint32 *value_umts_minimum_qos_with_signaling_indication_flag_traffic_handling_priority,
+                                gint8 *value_umts_minimum_qos_with_signaling_indication_flag_signaling_indication,
+                                GError **error);
+

Get the 'UMTS Minimum QoS With Signaling Indication Flag' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

self

a QmiMessageWdsCreateProfileInput.

 

value_umts_minimum_qos_with_signaling_indication_flag_traffic_class

a placeholder for the output QmiWdsTrafficClass, or NULL if not required.

 

value_umts_minimum_qos_with_signaling_indication_flag_max_uplink_bitrate

a placeholder for the output guint32, or NULL if not required.

 

value_umts_minimum_qos_with_signaling_indication_flag_max_downlink_bitrate

a placeholder for the output guint32, or NULL if not required.

 

value_umts_minimum_qos_with_signaling_indication_flag_guaranteed_uplink_bitrate

a placeholder for the output guint32, or NULL if not required.

 

value_umts_minimum_qos_with_signaling_indication_flag_guaranteed_downlink_bitrate

a placeholder for the output guint32, or NULL if not required.

 

value_umts_minimum_qos_with_signaling_indication_flag_qos_delivery_order

a placeholder for the output QmiWdsDeliveryOrder, or NULL if not required.

 

value_umts_minimum_qos_with_signaling_indication_flag_maximum_sdu_size

a placeholder for the output guint32, or NULL if not required.

 

value_umts_minimum_qos_with_signaling_indication_flag_sdu_error_ratio

a placeholder for the output QmiWdsSduErrorRatio, or NULL if not required.

 

value_umts_minimum_qos_with_signaling_indication_flag_residual_bit_error_ratio

a placeholder for the output QmiWdsSduResidualBitErrorRatio, or NULL if not required.

 

value_umts_minimum_qos_with_signaling_indication_flag_delivery_erroneous_sdu

a placeholder for the output QmiWdsSduErroneousDelivery, or NULL if not required.

 

value_umts_minimum_qos_with_signaling_indication_flag_transfer_delay

a placeholder for the output guint32, or NULL if not required.

 

value_umts_minimum_qos_with_signaling_indication_flag_traffic_handling_priority

a placeholder for the output guint32, or NULL if not required.

 

value_umts_minimum_qos_with_signaling_indication_flag_signaling_indication

a placeholder for the output gint8, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.18

+
+
+
+

qmi_message_wds_create_profile_input_set_umts_minimum_qos_with_signaling_indication_flag ()

+
gboolean
+qmi_message_wds_create_profile_input_set_umts_minimum_qos_with_signaling_indication_flag
+                               (QmiMessageWdsCreateProfileInput *self,
+                                QmiWdsTrafficClass value_umts_minimum_qos_with_signaling_indication_flag_traffic_class,
+                                guint32 value_umts_minimum_qos_with_signaling_indication_flag_max_uplink_bitrate,
+                                guint32 value_umts_minimum_qos_with_signaling_indication_flag_max_downlink_bitrate,
+                                guint32 value_umts_minimum_qos_with_signaling_indication_flag_guaranteed_uplink_bitrate,
+                                guint32 value_umts_minimum_qos_with_signaling_indication_flag_guaranteed_downlink_bitrate,
+                                QmiWdsDeliveryOrder value_umts_minimum_qos_with_signaling_indication_flag_qos_delivery_order,
+                                guint32 value_umts_minimum_qos_with_signaling_indication_flag_maximum_sdu_size,
+                                QmiWdsSduErrorRatio value_umts_minimum_qos_with_signaling_indication_flag_sdu_error_ratio,
+                                QmiWdsSduResidualBitErrorRatio value_umts_minimum_qos_with_signaling_indication_flag_residual_bit_error_ratio,
+                                QmiWdsSduErroneousDelivery value_umts_minimum_qos_with_signaling_indication_flag_delivery_erroneous_sdu,
+                                guint32 value_umts_minimum_qos_with_signaling_indication_flag_transfer_delay,
+                                guint32 value_umts_minimum_qos_with_signaling_indication_flag_traffic_handling_priority,
+                                gint8 value_umts_minimum_qos_with_signaling_indication_flag_signaling_indication,
+                                GError **error);
+

Set the 'UMTS Minimum QoS With Signaling Indication Flag' field in the message.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

self

a QmiMessageWdsCreateProfileInput.

 

value_umts_minimum_qos_with_signaling_indication_flag_traffic_class

a QmiWdsTrafficClass.

 

value_umts_minimum_qos_with_signaling_indication_flag_max_uplink_bitrate

a guint32.

 

value_umts_minimum_qos_with_signaling_indication_flag_max_downlink_bitrate

a guint32.

 

value_umts_minimum_qos_with_signaling_indication_flag_guaranteed_uplink_bitrate

a guint32.

 

value_umts_minimum_qos_with_signaling_indication_flag_guaranteed_downlink_bitrate

a guint32.

 

value_umts_minimum_qos_with_signaling_indication_flag_qos_delivery_order

a QmiWdsDeliveryOrder.

 

value_umts_minimum_qos_with_signaling_indication_flag_maximum_sdu_size

a guint32.

 

value_umts_minimum_qos_with_signaling_indication_flag_sdu_error_ratio

a QmiWdsSduErrorRatio.

 

value_umts_minimum_qos_with_signaling_indication_flag_residual_bit_error_ratio

a QmiWdsSduResidualBitErrorRatio.

 

value_umts_minimum_qos_with_signaling_indication_flag_delivery_erroneous_sdu

a QmiWdsSduErroneousDelivery.

 

value_umts_minimum_qos_with_signaling_indication_flag_transfer_delay

a guint32.

 

value_umts_minimum_qos_with_signaling_indication_flag_traffic_handling_priority

a guint32.

 

value_umts_minimum_qos_with_signaling_indication_flag_signaling_indication

a gint8.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if value +was successfully set, FALSE otherwise.

+
+

Since: 1.18

+
+
+
+

qmi_message_wds_create_profile_input_get_umts_requested_qos_with_signaling_indication_flag ()

+
gboolean
+qmi_message_wds_create_profile_input_get_umts_requested_qos_with_signaling_indication_flag
+                               (QmiMessageWdsCreateProfileInput *self,
+                                QmiWdsTrafficClass *value_umts_requested_qos_with_signaling_indication_flag_traffic_class,
+                                guint32 *value_umts_requested_qos_with_signaling_indication_flag_max_uplink_bitrate,
+                                guint32 *value_umts_requested_qos_with_signaling_indication_flag_max_downlink_bitrate,
+                                guint32 *value_umts_requested_qos_with_signaling_indication_flag_guaranteed_uplink_bitrate,
+                                guint32 *value_umts_requested_qos_with_signaling_indication_flag_guaranteed_downlink_bitrate,
+                                QmiWdsDeliveryOrder *value_umts_requested_qos_with_signaling_indication_flag_qos_delivery_order,
+                                guint32 *value_umts_requested_qos_with_signaling_indication_flag_maximum_sdu_size,
+                                QmiWdsSduErrorRatio *value_umts_requested_qos_with_signaling_indication_flag_sdu_error_ratio,
+                                QmiWdsSduResidualBitErrorRatio *value_umts_requested_qos_with_signaling_indication_flag_residual_bit_error_ratio,
+                                QmiWdsSduErroneousDelivery *value_umts_requested_qos_with_signaling_indication_flag_delivery_erroneous_sdu,
+                                guint32 *value_umts_requested_qos_with_signaling_indication_flag_transfer_delay,
+                                guint32 *value_umts_requested_qos_with_signaling_indication_flag_traffic_handling_priority,
+                                gint8 *value_umts_requested_qos_with_signaling_indication_flag_signaling_indication,
+                                GError **error);
+

Get the 'UMTS Requested QoS With Signaling Indication Flag' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

self

a QmiMessageWdsCreateProfileInput.

 

value_umts_requested_qos_with_signaling_indication_flag_traffic_class

a placeholder for the output QmiWdsTrafficClass, or NULL if not required.

 

value_umts_requested_qos_with_signaling_indication_flag_max_uplink_bitrate

a placeholder for the output guint32, or NULL if not required.

 

value_umts_requested_qos_with_signaling_indication_flag_max_downlink_bitrate

a placeholder for the output guint32, or NULL if not required.

 

value_umts_requested_qos_with_signaling_indication_flag_guaranteed_uplink_bitrate

a placeholder for the output guint32, or NULL if not required.

 

value_umts_requested_qos_with_signaling_indication_flag_guaranteed_downlink_bitrate

a placeholder for the output guint32, or NULL if not required.

 

value_umts_requested_qos_with_signaling_indication_flag_qos_delivery_order

a placeholder for the output QmiWdsDeliveryOrder, or NULL if not required.

 

value_umts_requested_qos_with_signaling_indication_flag_maximum_sdu_size

a placeholder for the output guint32, or NULL if not required.

 

value_umts_requested_qos_with_signaling_indication_flag_sdu_error_ratio

a placeholder for the output QmiWdsSduErrorRatio, or NULL if not required.

 

value_umts_requested_qos_with_signaling_indication_flag_residual_bit_error_ratio

a placeholder for the output QmiWdsSduResidualBitErrorRatio, or NULL if not required.

 

value_umts_requested_qos_with_signaling_indication_flag_delivery_erroneous_sdu

a placeholder for the output QmiWdsSduErroneousDelivery, or NULL if not required.

 

value_umts_requested_qos_with_signaling_indication_flag_transfer_delay

a placeholder for the output guint32, or NULL if not required.

 

value_umts_requested_qos_with_signaling_indication_flag_traffic_handling_priority

a placeholder for the output guint32, or NULL if not required.

 

value_umts_requested_qos_with_signaling_indication_flag_signaling_indication

a placeholder for the output gint8, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.18

+
+
+
+

qmi_message_wds_create_profile_input_set_umts_requested_qos_with_signaling_indication_flag ()

+
gboolean
+qmi_message_wds_create_profile_input_set_umts_requested_qos_with_signaling_indication_flag
+                               (QmiMessageWdsCreateProfileInput *self,
+                                QmiWdsTrafficClass value_umts_requested_qos_with_signaling_indication_flag_traffic_class,
+                                guint32 value_umts_requested_qos_with_signaling_indication_flag_max_uplink_bitrate,
+                                guint32 value_umts_requested_qos_with_signaling_indication_flag_max_downlink_bitrate,
+                                guint32 value_umts_requested_qos_with_signaling_indication_flag_guaranteed_uplink_bitrate,
+                                guint32 value_umts_requested_qos_with_signaling_indication_flag_guaranteed_downlink_bitrate,
+                                QmiWdsDeliveryOrder value_umts_requested_qos_with_signaling_indication_flag_qos_delivery_order,
+                                guint32 value_umts_requested_qos_with_signaling_indication_flag_maximum_sdu_size,
+                                QmiWdsSduErrorRatio value_umts_requested_qos_with_signaling_indication_flag_sdu_error_ratio,
+                                QmiWdsSduResidualBitErrorRatio value_umts_requested_qos_with_signaling_indication_flag_residual_bit_error_ratio,
+                                QmiWdsSduErroneousDelivery value_umts_requested_qos_with_signaling_indication_flag_delivery_erroneous_sdu,
+                                guint32 value_umts_requested_qos_with_signaling_indication_flag_transfer_delay,
+                                guint32 value_umts_requested_qos_with_signaling_indication_flag_traffic_handling_priority,
+                                gint8 value_umts_requested_qos_with_signaling_indication_flag_signaling_indication,
+                                GError **error);
+

Set the 'UMTS Requested QoS With Signaling Indication Flag' field in the message.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

self

a QmiMessageWdsCreateProfileInput.

 

value_umts_requested_qos_with_signaling_indication_flag_traffic_class

a QmiWdsTrafficClass.

 

value_umts_requested_qos_with_signaling_indication_flag_max_uplink_bitrate

a guint32.

 

value_umts_requested_qos_with_signaling_indication_flag_max_downlink_bitrate

a guint32.

 

value_umts_requested_qos_with_signaling_indication_flag_guaranteed_uplink_bitrate

a guint32.

 

value_umts_requested_qos_with_signaling_indication_flag_guaranteed_downlink_bitrate

a guint32.

 

value_umts_requested_qos_with_signaling_indication_flag_qos_delivery_order

a QmiWdsDeliveryOrder.

 

value_umts_requested_qos_with_signaling_indication_flag_maximum_sdu_size

a guint32.

 

value_umts_requested_qos_with_signaling_indication_flag_sdu_error_ratio

a QmiWdsSduErrorRatio.

 

value_umts_requested_qos_with_signaling_indication_flag_residual_bit_error_ratio

a QmiWdsSduResidualBitErrorRatio.

 

value_umts_requested_qos_with_signaling_indication_flag_delivery_erroneous_sdu

a QmiWdsSduErroneousDelivery.

 

value_umts_requested_qos_with_signaling_indication_flag_transfer_delay

a guint32.

 

value_umts_requested_qos_with_signaling_indication_flag_traffic_handling_priority

a guint32.

 

value_umts_requested_qos_with_signaling_indication_flag_signaling_indication

a gint8.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if value +was successfully set, FALSE otherwise.

+
+

Since: 1.18

+
+
+
+

qmi_message_wds_create_profile_input_get_ipv6_address_preference ()

+
gboolean
+qmi_message_wds_create_profile_input_get_ipv6_address_preference
+                               (QmiMessageWdsCreateProfileInput *self,
+                                GArray **value_ipv6_address_preference_address,
+                                GError **error);
+

Get the 'IPv6 Address Preference' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageWdsCreateProfileInput.

 

value_ipv6_address_preference_address

a placeholder for the output GArray of guint16 elements, or NULL if not required. Do not free it, it is owned by self +.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.18

+
+
+
+

qmi_message_wds_create_profile_input_set_ipv6_address_preference ()

+
gboolean
+qmi_message_wds_create_profile_input_set_ipv6_address_preference
+                               (QmiMessageWdsCreateProfileInput *self,
+                                GArray *value_ipv6_address_preference_address,
+                                GError **error);
+

Set the 'IPv6 Address Preference' field in the message.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageWdsCreateProfileInput.

 

value_ipv6_address_preference_address

a GArray of guint16 elements. A new reference to value_ipv6_address_preference_address +will be taken.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if value +was successfully set, FALSE otherwise.

+
+

Since: 1.18

+
+
+
+

qmi_message_wds_create_profile_input_get_pdp_context_primary_id ()

+
gboolean
+qmi_message_wds_create_profile_input_get_pdp_context_primary_id
+                               (QmiMessageWdsCreateProfileInput *self,
+                                guint8 *value_pdp_context_primary_id,
+                                GError **error);
+

Get the 'PDP Context Primary ID' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageWdsCreateProfileInput.

 

value_pdp_context_primary_id

a placeholder for the output guint8, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.18

+
+
+
+

qmi_message_wds_create_profile_input_set_pdp_context_primary_id ()

+
gboolean
+qmi_message_wds_create_profile_input_set_pdp_context_primary_id
+                               (QmiMessageWdsCreateProfileInput *self,
+                                guint8 value_pdp_context_primary_id,
+                                GError **error);
+

Set the 'PDP Context Primary ID' field in the message.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageWdsCreateProfileInput.

 

value_pdp_context_primary_id

a guint8.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if value +was successfully set, FALSE otherwise.

+
+

Since: 1.18

+
+
+
+

qmi_message_wds_create_profile_input_get_pdp_context_secondary_flag ()

+
gboolean
+qmi_message_wds_create_profile_input_get_pdp_context_secondary_flag
+                               (QmiMessageWdsCreateProfileInput *self,
+                                gboolean *value_pdp_context_secondary_flag,
+                                GError **error);
+

Get the 'PDP Context Secondary Flag' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageWdsCreateProfileInput.

 

value_pdp_context_secondary_flag

a placeholder for the output gboolean, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.18

+
+
+
+

qmi_message_wds_create_profile_input_set_pdp_context_secondary_flag ()

+
gboolean
+qmi_message_wds_create_profile_input_set_pdp_context_secondary_flag
+                               (QmiMessageWdsCreateProfileInput *self,
+                                gboolean value_pdp_context_secondary_flag,
+                                GError **error);
+

Set the 'PDP Context Secondary Flag' field in the message.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageWdsCreateProfileInput.

 

value_pdp_context_secondary_flag

a gboolean.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if value +was successfully set, FALSE otherwise.

+
+

Since: 1.18

+
+
+
+

qmi_message_wds_create_profile_input_get_pdp_context_number ()

+
gboolean
+qmi_message_wds_create_profile_input_get_pdp_context_number
+                               (QmiMessageWdsCreateProfileInput *self,
+                                guint8 *value_pdp_context_number,
+                                GError **error);
+

Get the 'PDP Context Number' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageWdsCreateProfileInput.

 

value_pdp_context_number

a placeholder for the output guint8, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.18

+
+
+
+

qmi_message_wds_create_profile_input_set_pdp_context_number ()

+
gboolean
+qmi_message_wds_create_profile_input_set_pdp_context_number
+                               (QmiMessageWdsCreateProfileInput *self,
+                                guint8 value_pdp_context_number,
+                                GError **error);
+

Set the 'PDP Context Number' field in the message.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageWdsCreateProfileInput.

 

value_pdp_context_number

a guint8.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if value +was successfully set, FALSE otherwise.

+
+

Since: 1.18

+
+
+
+

qmi_message_wds_create_profile_input_get_imcn_flag ()

+
gboolean
+qmi_message_wds_create_profile_input_get_imcn_flag
+                               (QmiMessageWdsCreateProfileInput *self,
+                                gboolean *value_imcn_flag,
+                                GError **error);
+

Get the 'IMCN Flag' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageWdsCreateProfileInput.

 

value_imcn_flag

a placeholder for the output gboolean, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.18

+
+
+
+

qmi_message_wds_create_profile_input_set_imcn_flag ()

+
gboolean
+qmi_message_wds_create_profile_input_set_imcn_flag
+                               (QmiMessageWdsCreateProfileInput *self,
+                                gboolean value_imcn_flag,
+                                GError **error);
+

Set the 'IMCN Flag' field in the message.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageWdsCreateProfileInput.

 

value_imcn_flag

a gboolean.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if value +was successfully set, FALSE otherwise.

+
+

Since: 1.18

+
+
+
+

qmi_message_wds_create_profile_input_get_pcscf_address_using_dhcp ()

+
gboolean
+qmi_message_wds_create_profile_input_get_pcscf_address_using_dhcp
+                               (QmiMessageWdsCreateProfileInput *self,
+                                gboolean *value_pcscf_address_using_dhcp,
+                                GError **error);
+

Get the 'PCSCF Address Using DHCP' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageWdsCreateProfileInput.

 

value_pcscf_address_using_dhcp

a placeholder for the output gboolean, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.18

+
+
+
+

qmi_message_wds_create_profile_input_set_pcscf_address_using_dhcp ()

+
gboolean
+qmi_message_wds_create_profile_input_set_pcscf_address_using_dhcp
+                               (QmiMessageWdsCreateProfileInput *self,
+                                gboolean value_pcscf_address_using_dhcp,
+                                GError **error);
+

Set the 'PCSCF Address Using DHCP' field in the message.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageWdsCreateProfileInput.

 

value_pcscf_address_using_dhcp

a gboolean.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if value +was successfully set, FALSE otherwise.

+
+

Since: 1.18

+
+
+
+

qmi_message_wds_create_profile_input_get_pcscf_address_using_pco ()

+
gboolean
+qmi_message_wds_create_profile_input_get_pcscf_address_using_pco
+                               (QmiMessageWdsCreateProfileInput *self,
+                                gboolean *value_pcscf_address_using_pco,
+                                GError **error);
+

Get the 'PCSCF Address Using PCO' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageWdsCreateProfileInput.

 

value_pcscf_address_using_pco

a placeholder for the output gboolean, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.18

+
+
+
+

qmi_message_wds_create_profile_input_set_pcscf_address_using_pco ()

+
gboolean
+qmi_message_wds_create_profile_input_set_pcscf_address_using_pco
+                               (QmiMessageWdsCreateProfileInput *self,
+                                gboolean value_pcscf_address_using_pco,
+                                GError **error);
+

Set the 'PCSCF Address Using PCO' field in the message.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageWdsCreateProfileInput.

 

value_pcscf_address_using_pco

a gboolean.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if value +was successfully set, FALSE otherwise.

+
+

Since: 1.18

+
+
+
+

qmi_message_wds_create_profile_input_get_ipv4_address_preference ()

+
gboolean
+qmi_message_wds_create_profile_input_get_ipv4_address_preference
+                               (QmiMessageWdsCreateProfileInput *self,
+                                guint32 *value_ipv4_address_preference,
+                                GError **error);
+

Get the 'IPv4 Address Preference' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageWdsCreateProfileInput.

 

value_ipv4_address_preference

a placeholder for the output guint32, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.18

+
+
+
+

qmi_message_wds_create_profile_input_set_ipv4_address_preference ()

+
gboolean
+qmi_message_wds_create_profile_input_set_ipv4_address_preference
+                               (QmiMessageWdsCreateProfileInput *self,
+                                guint32 value_ipv4_address_preference,
+                                GError **error);
+

Set the 'IPv4 Address Preference' field in the message.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageWdsCreateProfileInput.

 

value_ipv4_address_preference

a guint32.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if value +was successfully set, FALSE otherwise.

+
+

Since: 1.18

+
+
+
+

qmi_message_wds_create_profile_input_get_authentication ()

+
gboolean
+qmi_message_wds_create_profile_input_get_authentication
+                               (QmiMessageWdsCreateProfileInput *self,
+                                QmiWdsAuthentication *value_authentication,
+                                GError **error);
+

Get the 'Authentication' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageWdsCreateProfileInput.

 

value_authentication

a placeholder for the output QmiWdsAuthentication, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.18

+
+
+
+

qmi_message_wds_create_profile_input_set_authentication ()

+
gboolean
+qmi_message_wds_create_profile_input_set_authentication
+                               (QmiMessageWdsCreateProfileInput *self,
+                                QmiWdsAuthentication value_authentication,
+                                GError **error);
+

Set the 'Authentication' field in the message.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageWdsCreateProfileInput.

 

value_authentication

a QmiWdsAuthentication.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if value +was successfully set, FALSE otherwise.

+
+

Since: 1.18

+
+
+
+

qmi_message_wds_create_profile_input_get_password ()

+
gboolean
+qmi_message_wds_create_profile_input_get_password
+                               (QmiMessageWdsCreateProfileInput *self,
+                                const gchar **value_password,
+                                GError **error);
+

Get the 'Password' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageWdsCreateProfileInput.

 

value_password

a placeholder for the output constant string, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.18

+
+
+
+

qmi_message_wds_create_profile_input_set_password ()

+
gboolean
+qmi_message_wds_create_profile_input_set_password
+                               (QmiMessageWdsCreateProfileInput *self,
+                                const gchar *value_password,
+                                GError **error);
+

Set the 'Password' field in the message.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageWdsCreateProfileInput.

 

value_password

a constant string.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if value +was successfully set, FALSE otherwise.

+
+

Since: 1.18

+
+
+
+

qmi_message_wds_create_profile_input_get_username ()

+
gboolean
+qmi_message_wds_create_profile_input_get_username
+                               (QmiMessageWdsCreateProfileInput *self,
+                                const gchar **value_username,
+                                GError **error);
+

Get the 'Username' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageWdsCreateProfileInput.

 

value_username

a placeholder for the output constant string, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.18

+
+
+
+

qmi_message_wds_create_profile_input_set_username ()

+
gboolean
+qmi_message_wds_create_profile_input_set_username
+                               (QmiMessageWdsCreateProfileInput *self,
+                                const gchar *value_username,
+                                GError **error);
+

Set the 'Username' field in the message.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageWdsCreateProfileInput.

 

value_username

a constant string.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if value +was successfully set, FALSE otherwise.

+
+

Since: 1.18

+
+
+
+

qmi_message_wds_create_profile_input_get_gprs_minimum_qos ()

+
gboolean
+qmi_message_wds_create_profile_input_get_gprs_minimum_qos
+                               (QmiMessageWdsCreateProfileInput *self,
+                                guint32 *value_gprs_minimum_qos_precedence_class,
+                                guint32 *value_gprs_minimum_qos_delay_class,
+                                guint32 *value_gprs_minimum_qos_reliability_class,
+                                guint32 *value_gprs_minimum_qos_peak_throughput_class,
+                                guint32 *value_gprs_minimum_qos_mean_throughput_class,
+                                GError **error);
+

Get the 'GPRS Minimum QoS' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

self

a QmiMessageWdsCreateProfileInput.

 

value_gprs_minimum_qos_precedence_class

a placeholder for the output guint32, or NULL if not required.

 

value_gprs_minimum_qos_delay_class

a placeholder for the output guint32, or NULL if not required.

 

value_gprs_minimum_qos_reliability_class

a placeholder for the output guint32, or NULL if not required.

 

value_gprs_minimum_qos_peak_throughput_class

a placeholder for the output guint32, or NULL if not required.

 

value_gprs_minimum_qos_mean_throughput_class

a placeholder for the output guint32, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.18

+
+
+
+

qmi_message_wds_create_profile_input_set_gprs_minimum_qos ()

+
gboolean
+qmi_message_wds_create_profile_input_set_gprs_minimum_qos
+                               (QmiMessageWdsCreateProfileInput *self,
+                                guint32 value_gprs_minimum_qos_precedence_class,
+                                guint32 value_gprs_minimum_qos_delay_class,
+                                guint32 value_gprs_minimum_qos_reliability_class,
+                                guint32 value_gprs_minimum_qos_peak_throughput_class,
+                                guint32 value_gprs_minimum_qos_mean_throughput_class,
+                                GError **error);
+

Set the 'GPRS Minimum QoS' field in the message.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

self

a QmiMessageWdsCreateProfileInput.

 

value_gprs_minimum_qos_precedence_class

a guint32.

 

value_gprs_minimum_qos_delay_class

a guint32.

 

value_gprs_minimum_qos_reliability_class

a guint32.

 

value_gprs_minimum_qos_peak_throughput_class

a guint32.

 

value_gprs_minimum_qos_mean_throughput_class

a guint32.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if value +was successfully set, FALSE otherwise.

+
+

Since: 1.18

+
+
+
+

qmi_message_wds_create_profile_input_get_gprs_requested_qos ()

+
gboolean
+qmi_message_wds_create_profile_input_get_gprs_requested_qos
+                               (QmiMessageWdsCreateProfileInput *self,
+                                guint32 *value_gprs_requested_qos_precedence_class,
+                                guint32 *value_gprs_requested_qos_delay_class,
+                                guint32 *value_gprs_requested_qos_reliability_class,
+                                guint32 *value_gprs_requested_qos_peak_throughput_class,
+                                guint32 *value_gprs_requested_qos_mean_throughput_class,
+                                GError **error);
+

Get the 'GPRS Requested QoS' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

self

a QmiMessageWdsCreateProfileInput.

 

value_gprs_requested_qos_precedence_class

a placeholder for the output guint32, or NULL if not required.

 

value_gprs_requested_qos_delay_class

a placeholder for the output guint32, or NULL if not required.

 

value_gprs_requested_qos_reliability_class

a placeholder for the output guint32, or NULL if not required.

 

value_gprs_requested_qos_peak_throughput_class

a placeholder for the output guint32, or NULL if not required.

 

value_gprs_requested_qos_mean_throughput_class

a placeholder for the output guint32, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.18

+
+
+
+

qmi_message_wds_create_profile_input_set_gprs_requested_qos ()

+
gboolean
+qmi_message_wds_create_profile_input_set_gprs_requested_qos
+                               (QmiMessageWdsCreateProfileInput *self,
+                                guint32 value_gprs_requested_qos_precedence_class,
+                                guint32 value_gprs_requested_qos_delay_class,
+                                guint32 value_gprs_requested_qos_reliability_class,
+                                guint32 value_gprs_requested_qos_peak_throughput_class,
+                                guint32 value_gprs_requested_qos_mean_throughput_class,
+                                GError **error);
+

Set the 'GPRS Requested QoS' field in the message.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

self

a QmiMessageWdsCreateProfileInput.

 

value_gprs_requested_qos_precedence_class

a guint32.

 

value_gprs_requested_qos_delay_class

a guint32.

 

value_gprs_requested_qos_reliability_class

a guint32.

 

value_gprs_requested_qos_peak_throughput_class

a guint32.

 

value_gprs_requested_qos_mean_throughput_class

a guint32.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if value +was successfully set, FALSE otherwise.

+
+

Since: 1.18

+
+
+
+

qmi_message_wds_create_profile_input_get_umts_minimum_qos ()

+
gboolean
+qmi_message_wds_create_profile_input_get_umts_minimum_qos
+                               (QmiMessageWdsCreateProfileInput *self,
+                                QmiWdsTrafficClass *value_umts_minimum_qos_traffic_class,
+                                guint32 *value_umts_minimum_qos_max_uplink_bitrate,
+                                guint32 *value_umts_minimum_qos_max_downlink_bitrate,
+                                guint32 *value_umts_minimum_qos_guaranteed_uplink_bitrate,
+                                guint32 *value_umts_minimum_qos_guaranteed_downlink_bitrate,
+                                QmiWdsDeliveryOrder *value_umts_minimum_qos_qos_delivery_order,
+                                guint32 *value_umts_minimum_qos_maximum_sdu_size,
+                                QmiWdsSduErrorRatio *value_umts_minimum_qos_sdu_error_ratio,
+                                QmiWdsSduResidualBitErrorRatio *value_umts_minimum_qos_residual_bit_error_ratio,
+                                QmiWdsSduErroneousDelivery *value_umts_minimum_qos_delivery_erroneous_sdu,
+                                guint32 *value_umts_minimum_qos_transfer_delay,
+                                guint32 *value_umts_minimum_qos_traffic_handling_priority,
+                                GError **error);
+

Get the 'UMTS Minimum QoS' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

self

a QmiMessageWdsCreateProfileInput.

 

value_umts_minimum_qos_traffic_class

a placeholder for the output QmiWdsTrafficClass, or NULL if not required.

 

value_umts_minimum_qos_max_uplink_bitrate

a placeholder for the output guint32, or NULL if not required.

 

value_umts_minimum_qos_max_downlink_bitrate

a placeholder for the output guint32, or NULL if not required.

 

value_umts_minimum_qos_guaranteed_uplink_bitrate

a placeholder for the output guint32, or NULL if not required.

 

value_umts_minimum_qos_guaranteed_downlink_bitrate

a placeholder for the output guint32, or NULL if not required.

 

value_umts_minimum_qos_qos_delivery_order

a placeholder for the output QmiWdsDeliveryOrder, or NULL if not required.

 

value_umts_minimum_qos_maximum_sdu_size

a placeholder for the output guint32, or NULL if not required.

 

value_umts_minimum_qos_sdu_error_ratio

a placeholder for the output QmiWdsSduErrorRatio, or NULL if not required.

 

value_umts_minimum_qos_residual_bit_error_ratio

a placeholder for the output QmiWdsSduResidualBitErrorRatio, or NULL if not required.

 

value_umts_minimum_qos_delivery_erroneous_sdu

a placeholder for the output QmiWdsSduErroneousDelivery, or NULL if not required.

 

value_umts_minimum_qos_transfer_delay

a placeholder for the output guint32, or NULL if not required.

 

value_umts_minimum_qos_traffic_handling_priority

a placeholder for the output guint32, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.18

+
+
+
+

qmi_message_wds_create_profile_input_set_umts_minimum_qos ()

+
gboolean
+qmi_message_wds_create_profile_input_set_umts_minimum_qos
+                               (QmiMessageWdsCreateProfileInput *self,
+                                QmiWdsTrafficClass value_umts_minimum_qos_traffic_class,
+                                guint32 value_umts_minimum_qos_max_uplink_bitrate,
+                                guint32 value_umts_minimum_qos_max_downlink_bitrate,
+                                guint32 value_umts_minimum_qos_guaranteed_uplink_bitrate,
+                                guint32 value_umts_minimum_qos_guaranteed_downlink_bitrate,
+                                QmiWdsDeliveryOrder value_umts_minimum_qos_qos_delivery_order,
+                                guint32 value_umts_minimum_qos_maximum_sdu_size,
+                                QmiWdsSduErrorRatio value_umts_minimum_qos_sdu_error_ratio,
+                                QmiWdsSduResidualBitErrorRatio value_umts_minimum_qos_residual_bit_error_ratio,
+                                QmiWdsSduErroneousDelivery value_umts_minimum_qos_delivery_erroneous_sdu,
+                                guint32 value_umts_minimum_qos_transfer_delay,
+                                guint32 value_umts_minimum_qos_traffic_handling_priority,
+                                GError **error);
+

Set the 'UMTS Minimum QoS' field in the message.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

self

a QmiMessageWdsCreateProfileInput.

 

value_umts_minimum_qos_traffic_class

a QmiWdsTrafficClass.

 

value_umts_minimum_qos_max_uplink_bitrate

a guint32.

 

value_umts_minimum_qos_max_downlink_bitrate

a guint32.

 

value_umts_minimum_qos_guaranteed_uplink_bitrate

a guint32.

 

value_umts_minimum_qos_guaranteed_downlink_bitrate

a guint32.

 

value_umts_minimum_qos_qos_delivery_order

a QmiWdsDeliveryOrder.

 

value_umts_minimum_qos_maximum_sdu_size

a guint32.

 

value_umts_minimum_qos_sdu_error_ratio

a QmiWdsSduErrorRatio.

 

value_umts_minimum_qos_residual_bit_error_ratio

a QmiWdsSduResidualBitErrorRatio.

 

value_umts_minimum_qos_delivery_erroneous_sdu

a QmiWdsSduErroneousDelivery.

 

value_umts_minimum_qos_transfer_delay

a guint32.

 

value_umts_minimum_qos_traffic_handling_priority

a guint32.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if value +was successfully set, FALSE otherwise.

+
+

Since: 1.18

+
+
+
+

qmi_message_wds_create_profile_input_get_umts_requested_qos ()

+
gboolean
+qmi_message_wds_create_profile_input_get_umts_requested_qos
+                               (QmiMessageWdsCreateProfileInput *self,
+                                QmiWdsTrafficClass *value_umts_requested_qos_traffic_class,
+                                guint32 *value_umts_requested_qos_max_uplink_bitrate,
+                                guint32 *value_umts_requested_qos_max_downlink_bitrate,
+                                guint32 *value_umts_requested_qos_guaranteed_uplink_bitrate,
+                                guint32 *value_umts_requested_qos_guaranteed_downlink_bitrate,
+                                QmiWdsDeliveryOrder *value_umts_requested_qos_qos_delivery_order,
+                                guint32 *value_umts_requested_qos_maximum_sdu_size,
+                                QmiWdsSduErrorRatio *value_umts_requested_qos_sdu_error_ratio,
+                                QmiWdsSduResidualBitErrorRatio *value_umts_requested_qos_residual_bit_error_ratio,
+                                QmiWdsSduErroneousDelivery *value_umts_requested_qos_delivery_erroneous_sdu,
+                                guint32 *value_umts_requested_qos_transfer_delay,
+                                guint32 *value_umts_requested_qos_traffic_handling_priority,
+                                GError **error);
+

Get the 'UMTS Requested QoS' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

self

a QmiMessageWdsCreateProfileInput.

 

value_umts_requested_qos_traffic_class

a placeholder for the output QmiWdsTrafficClass, or NULL if not required.

 

value_umts_requested_qos_max_uplink_bitrate

a placeholder for the output guint32, or NULL if not required.

 

value_umts_requested_qos_max_downlink_bitrate

a placeholder for the output guint32, or NULL if not required.

 

value_umts_requested_qos_guaranteed_uplink_bitrate

a placeholder for the output guint32, or NULL if not required.

 

value_umts_requested_qos_guaranteed_downlink_bitrate

a placeholder for the output guint32, or NULL if not required.

 

value_umts_requested_qos_qos_delivery_order

a placeholder for the output QmiWdsDeliveryOrder, or NULL if not required.

 

value_umts_requested_qos_maximum_sdu_size

a placeholder for the output guint32, or NULL if not required.

 

value_umts_requested_qos_sdu_error_ratio

a placeholder for the output QmiWdsSduErrorRatio, or NULL if not required.

 

value_umts_requested_qos_residual_bit_error_ratio

a placeholder for the output QmiWdsSduResidualBitErrorRatio, or NULL if not required.

 

value_umts_requested_qos_delivery_erroneous_sdu

a placeholder for the output QmiWdsSduErroneousDelivery, or NULL if not required.

 

value_umts_requested_qos_transfer_delay

a placeholder for the output guint32, or NULL if not required.

 

value_umts_requested_qos_traffic_handling_priority

a placeholder for the output guint32, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.18

+
+
+
+

qmi_message_wds_create_profile_input_set_umts_requested_qos ()

+
gboolean
+qmi_message_wds_create_profile_input_set_umts_requested_qos
+                               (QmiMessageWdsCreateProfileInput *self,
+                                QmiWdsTrafficClass value_umts_requested_qos_traffic_class,
+                                guint32 value_umts_requested_qos_max_uplink_bitrate,
+                                guint32 value_umts_requested_qos_max_downlink_bitrate,
+                                guint32 value_umts_requested_qos_guaranteed_uplink_bitrate,
+                                guint32 value_umts_requested_qos_guaranteed_downlink_bitrate,
+                                QmiWdsDeliveryOrder value_umts_requested_qos_qos_delivery_order,
+                                guint32 value_umts_requested_qos_maximum_sdu_size,
+                                QmiWdsSduErrorRatio value_umts_requested_qos_sdu_error_ratio,
+                                QmiWdsSduResidualBitErrorRatio value_umts_requested_qos_residual_bit_error_ratio,
+                                QmiWdsSduErroneousDelivery value_umts_requested_qos_delivery_erroneous_sdu,
+                                guint32 value_umts_requested_qos_transfer_delay,
+                                guint32 value_umts_requested_qos_traffic_handling_priority,
+                                GError **error);
+

Set the 'UMTS Requested QoS' field in the message.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

self

a QmiMessageWdsCreateProfileInput.

 

value_umts_requested_qos_traffic_class

a QmiWdsTrafficClass.

 

value_umts_requested_qos_max_uplink_bitrate

a guint32.

 

value_umts_requested_qos_max_downlink_bitrate

a guint32.

 

value_umts_requested_qos_guaranteed_uplink_bitrate

a guint32.

 

value_umts_requested_qos_guaranteed_downlink_bitrate

a guint32.

 

value_umts_requested_qos_qos_delivery_order

a QmiWdsDeliveryOrder.

 

value_umts_requested_qos_maximum_sdu_size

a guint32.

 

value_umts_requested_qos_sdu_error_ratio

a QmiWdsSduErrorRatio.

 

value_umts_requested_qos_residual_bit_error_ratio

a QmiWdsSduResidualBitErrorRatio.

 

value_umts_requested_qos_delivery_erroneous_sdu

a QmiWdsSduErroneousDelivery.

 

value_umts_requested_qos_transfer_delay

a guint32.

 

value_umts_requested_qos_traffic_handling_priority

a guint32.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if value +was successfully set, FALSE otherwise.

+
+

Since: 1.18

+
+
+
+

qmi_message_wds_create_profile_input_get_secondary_ipv4_dns_address ()

+
gboolean
+qmi_message_wds_create_profile_input_get_secondary_ipv4_dns_address
+                               (QmiMessageWdsCreateProfileInput *self,
+                                guint32 *value_secondary_ipv4_dns_address,
+                                GError **error);
+

Get the 'Secondary IPv4 DNS Address' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageWdsCreateProfileInput.

 

value_secondary_ipv4_dns_address

a placeholder for the output guint32, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.18

+
+
+
+

qmi_message_wds_create_profile_input_set_secondary_ipv4_dns_address ()

+
gboolean
+qmi_message_wds_create_profile_input_set_secondary_ipv4_dns_address
+                               (QmiMessageWdsCreateProfileInput *self,
+                                guint32 value_secondary_ipv4_dns_address,
+                                GError **error);
+

Set the 'Secondary IPv4 DNS Address' field in the message.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageWdsCreateProfileInput.

 

value_secondary_ipv4_dns_address

a guint32.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if value +was successfully set, FALSE otherwise.

+
+

Since: 1.18

+
+
+
+

qmi_message_wds_create_profile_input_get_primary_ipv4_dns_address ()

+
gboolean
+qmi_message_wds_create_profile_input_get_primary_ipv4_dns_address
+                               (QmiMessageWdsCreateProfileInput *self,
+                                guint32 *value_primary_ipv4_dns_address,
+                                GError **error);
+

Get the 'Primary IPv4 DNS Address' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageWdsCreateProfileInput.

 

value_primary_ipv4_dns_address

a placeholder for the output guint32, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.18

+
+
+
+

qmi_message_wds_create_profile_input_set_primary_ipv4_dns_address ()

+
gboolean
+qmi_message_wds_create_profile_input_set_primary_ipv4_dns_address
+                               (QmiMessageWdsCreateProfileInput *self,
+                                guint32 value_primary_ipv4_dns_address,
+                                GError **error);
+

Set the 'Primary IPv4 DNS Address' field in the message.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageWdsCreateProfileInput.

 

value_primary_ipv4_dns_address

a guint32.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if value +was successfully set, FALSE otherwise.

+
+

Since: 1.18

+
+
+
+

qmi_message_wds_create_profile_input_get_apn_name ()

+
gboolean
+qmi_message_wds_create_profile_input_get_apn_name
+                               (QmiMessageWdsCreateProfileInput *self,
+                                const gchar **value_apn_name,
+                                GError **error);
+

Get the 'APN Name' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageWdsCreateProfileInput.

 

value_apn_name

a placeholder for the output constant string, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.18

+
+
+
+

qmi_message_wds_create_profile_input_set_apn_name ()

+
gboolean
+qmi_message_wds_create_profile_input_set_apn_name
+                               (QmiMessageWdsCreateProfileInput *self,
+                                const gchar *value_apn_name,
+                                GError **error);
+

Set the 'APN Name' field in the message.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageWdsCreateProfileInput.

 

value_apn_name

a constant string.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if value +was successfully set, FALSE otherwise.

+
+

Since: 1.18

+
+
+
+

qmi_message_wds_create_profile_input_get_pdp_data_compression_type ()

+
gboolean
+qmi_message_wds_create_profile_input_get_pdp_data_compression_type
+                               (QmiMessageWdsCreateProfileInput *self,
+                                QmiWdsPdpDataCompressionType *value_pdp_data_compression_type,
+                                GError **error);
+

Get the 'PDP Data Compression Type' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageWdsCreateProfileInput.

 

value_pdp_data_compression_type

a placeholder for the output QmiWdsPdpDataCompressionType, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.18

+
+
+
+

qmi_message_wds_create_profile_input_set_pdp_data_compression_type ()

+
gboolean
+qmi_message_wds_create_profile_input_set_pdp_data_compression_type
+                               (QmiMessageWdsCreateProfileInput *self,
+                                QmiWdsPdpDataCompressionType value_pdp_data_compression_type,
+                                GError **error);
+

Set the 'PDP Data Compression Type' field in the message.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageWdsCreateProfileInput.

 

value_pdp_data_compression_type

a QmiWdsPdpDataCompressionType.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if value +was successfully set, FALSE otherwise.

+
+

Since: 1.18

+
+
+
+

qmi_message_wds_create_profile_input_get_pdp_header_compression_type ()

+
gboolean
+qmi_message_wds_create_profile_input_get_pdp_header_compression_type
+                               (QmiMessageWdsCreateProfileInput *self,
+                                QmiWdsPdpHeaderCompressionType *value_pdp_header_compression_type,
+                                GError **error);
+

Get the 'PDP Header Compression Type' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageWdsCreateProfileInput.

 

value_pdp_header_compression_type

a placeholder for the output QmiWdsPdpHeaderCompressionType, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.18

+
+
+
+

qmi_message_wds_create_profile_input_set_pdp_header_compression_type ()

+
gboolean
+qmi_message_wds_create_profile_input_set_pdp_header_compression_type
+                               (QmiMessageWdsCreateProfileInput *self,
+                                QmiWdsPdpHeaderCompressionType value_pdp_header_compression_type,
+                                GError **error);
+

Set the 'PDP Header Compression Type' field in the message.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageWdsCreateProfileInput.

 

value_pdp_header_compression_type

a QmiWdsPdpHeaderCompressionType.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if value +was successfully set, FALSE otherwise.

+
+

Since: 1.18

+
+
+
+

qmi_message_wds_create_profile_input_get_pdp_type ()

+
gboolean
+qmi_message_wds_create_profile_input_get_pdp_type
+                               (QmiMessageWdsCreateProfileInput *self,
+                                QmiWdsPdpType *value_pdp_type,
+                                GError **error);
+

Get the 'PDP Type' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageWdsCreateProfileInput.

 

value_pdp_type

a placeholder for the output QmiWdsPdpType, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.18

+
+
+
+

qmi_message_wds_create_profile_input_set_pdp_type ()

+
gboolean
+qmi_message_wds_create_profile_input_set_pdp_type
+                               (QmiMessageWdsCreateProfileInput *self,
+                                QmiWdsPdpType value_pdp_type,
+                                GError **error);
+

Set the 'PDP Type' field in the message.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageWdsCreateProfileInput.

 

value_pdp_type

a QmiWdsPdpType.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if value +was successfully set, FALSE otherwise.

+
+

Since: 1.18

+
+
+
+

qmi_message_wds_create_profile_input_get_profile_name ()

+
gboolean
+qmi_message_wds_create_profile_input_get_profile_name
+                               (QmiMessageWdsCreateProfileInput *self,
+                                const gchar **value_profile_name,
+                                GError **error);
+

Get the 'Profile Name' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageWdsCreateProfileInput.

 

value_profile_name

a placeholder for the output constant string, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.18

+
+
+
+

qmi_message_wds_create_profile_input_set_profile_name ()

+
gboolean
+qmi_message_wds_create_profile_input_set_profile_name
+                               (QmiMessageWdsCreateProfileInput *self,
+                                const gchar *value_profile_name,
+                                GError **error);
+

Set the 'Profile Name' field in the message.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageWdsCreateProfileInput.

 

value_profile_name

a constant string.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if value +was successfully set, FALSE otherwise.

+
+

Since: 1.18

+
+
+
+

qmi_message_wds_create_profile_input_get_profile_type ()

+
gboolean
+qmi_message_wds_create_profile_input_get_profile_type
+                               (QmiMessageWdsCreateProfileInput *self,
+                                QmiWdsProfileType *value_profile_type,
+                                GError **error);
+

Get the 'Profile Type' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageWdsCreateProfileInput.

 

value_profile_type

a placeholder for the output QmiWdsProfileType, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.18

+
+
+
+

qmi_message_wds_create_profile_input_set_profile_type ()

+
gboolean
+qmi_message_wds_create_profile_input_set_profile_type
+                               (QmiMessageWdsCreateProfileInput *self,
+                                QmiWdsProfileType value_profile_type,
+                                GError **error);
+

Set the 'Profile Type' field in the message.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageWdsCreateProfileInput.

 

value_profile_type

a QmiWdsProfileType.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if value +was successfully set, FALSE otherwise.

+
+

Since: 1.18

+
+
+
+

qmi_message_wds_create_profile_output_ref ()

+
QmiMessageWdsCreateProfileOutput *
+qmi_message_wds_create_profile_output_ref
+                               (QmiMessageWdsCreateProfileOutput *self);
+

Atomically increments the reference count of self + by one.

+
+

Parameters

+
+++++ + + + + + +

self

a QmiMessageWdsCreateProfileOutput.

 
+
+
+

Returns

+

the new reference to self +.

+
+

Since: 1.18

+
+
+
+

qmi_message_wds_create_profile_output_unref ()

+
void
+qmi_message_wds_create_profile_output_unref
+                               (QmiMessageWdsCreateProfileOutput *self);
+

Atomically decrements the reference count of self + by one. +If the reference count drops to 0, self + is completely disposed.

+
+

Parameters

+
+++++ + + + + + +

self

a QmiMessageWdsCreateProfileOutput.

 
+
+

Since: 1.18

+
+
+
+

qmi_message_wds_create_profile_output_get_result ()

+
gboolean
+qmi_message_wds_create_profile_output_get_result
+                               (QmiMessageWdsCreateProfileOutput *self,
+                                GError **error);
+

Get the result of the QMI operation.

+
+

Parameters

+
+++++ + + + + + + + + + + + + +

self

a QmiMessageWdsCreateProfileOutput.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the QMI operation succeeded, FALSE if error +is set.

+
+

Since: 1.18

+
+
+
+

qmi_message_wds_create_profile_output_get_profile_identifier ()

+
gboolean
+qmi_message_wds_create_profile_output_get_profile_identifier
+                               (QmiMessageWdsCreateProfileOutput *self,
+                                QmiWdsProfileType *value_profile_identifier_profile_type,
+                                guint8 *value_profile_identifier_profile_index,
+                                GError **error);
+

Get the 'Profile Identifier' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + + + + + + +

self

a QmiMessageWdsCreateProfileOutput.

 

value_profile_identifier_profile_type

a placeholder for the output QmiWdsProfileType, or NULL if not required.

 

value_profile_identifier_profile_index

a placeholder for the output guint8, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.18

+
+
+
+

qmi_message_wds_create_profile_output_get_extended_error_code ()

+
gboolean
+qmi_message_wds_create_profile_output_get_extended_error_code
+                               (QmiMessageWdsCreateProfileOutput *self,
+                                QmiWdsDsProfileError *value_extended_error_code,
+                                GError **error);
+

Get the 'Extended Error Code' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageWdsCreateProfileOutput.

 

value_extended_error_code

a placeholder for the output QmiWdsDsProfileError, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.18

+
+
+
+

qmi_client_wds_create_profile ()

+
void
+qmi_client_wds_create_profile (QmiClientWds *self,
+                               QmiMessageWdsCreateProfileInput *input,
+                               guint timeout,
+                               GCancellable *cancellable,
+                               GAsyncReadyCallback callback,
+                               gpointer user_data);
+

Asynchronously sends a Create Profile request to the device.

+

When the operation is finished, callback + will be invoked in the thread-default main loop of the thread you are calling this method from.

+

You can then call qmi_client_wds_create_profile_finish() to get the result of the operation.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

self

a QmiClientWds.

 

input

a QmiMessageWdsCreateProfileInput.

 

timeout

maximum time to wait for the method to complete, in seconds.

 

cancellable

a GCancellable or NULL.

 

callback

a GAsyncReadyCallback to call when the request is satisfied.

 

user_data

user data to pass to callback +.

 
+
+

Since: 1.18

+
+
+
+

qmi_client_wds_create_profile_finish ()

+
QmiMessageWdsCreateProfileOutput *
+qmi_client_wds_create_profile_finish (QmiClientWds *self,
+                                      GAsyncResult *res,
+                                      GError **error);
+

Finishes an async operation started with qmi_client_wds_create_profile().

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiClientWds.

 

res

the GAsyncResult obtained from the GAsyncReadyCallback passed to qmi_client_wds_create_profile().

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

a QmiMessageWdsCreateProfileOutput, or NULL if error +is set. The returned value should be freed with qmi_message_wds_create_profile_output_unref().

+
+

Since: 1.18

+
+
+
+

Types and Values

+
+

QmiMessageWdsCreateProfileInput

+
typedef struct _QmiMessageWdsCreateProfileInput QmiMessageWdsCreateProfileInput;
+

The QmiMessageWdsCreateProfileInput structure contains private data and should only be accessed +using the provided API.

+

Since: 1.18

+
+
+
+

QmiMessageWdsCreateProfileOutput

+
typedef struct _QmiMessageWdsCreateProfileOutput QmiMessageWdsCreateProfileOutput;
+

The QmiMessageWdsCreateProfileOutput structure contains private data and should only be accessed +using the provided API.

+

Since: 1.18

+
+
+
+ + + \ No newline at end of file diff -Nru libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-WDS-Delete-Profile.html libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-WDS-Delete-Profile.html --- libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-WDS-Delete-Profile.html 2017-03-22 12:28:29.000000000 +0100 +++ libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-WDS-Delete-Profile.html 1970-01-01 01:00:00.000000000 +0100 @@ -1,593 +0,0 @@ - - - - -WDS Delete Profile: libqmi-glib Reference Manual - - - - - - - - - - - - - - - - -
-
-
- - -
-

WDS Delete Profile

-

WDS Delete Profile

-
- -
-

Types and Values

- -
-
-

Object Hierarchy

-
    GBoxed
-    ├── QmiMessageWdsDeleteProfileInput
-    ╰── QmiMessageWdsDeleteProfileOutput
-
-
-
-

Description

-
-
-

Functions

-
-

qmi_message_wds_delete_profile_input_new ()

-
QmiMessageWdsDeleteProfileInput *
-qmi_message_wds_delete_profile_input_new
-                               (void);
-

Allocates a new QmiMessageWdsDeleteProfileInput.

-
-

Returns

-

the newly created QmiMessageWdsDeleteProfileInput. The returned value should be freed with qmi_message_wds_delete_profile_input_unref().

-
-

Since: 1.18

-
-
-
-

qmi_message_wds_delete_profile_input_ref ()

-
QmiMessageWdsDeleteProfileInput *
-qmi_message_wds_delete_profile_input_ref
-                               (QmiMessageWdsDeleteProfileInput *self);
-

Atomically increments the reference count of self - by one.

-
-

Parameters

-
----- - - - - - -

self

a QmiMessageWdsDeleteProfileInput.

 
-
-
-

Returns

-

the new reference to self -.

-
-

Since: 1.18

-
-
-
-

qmi_message_wds_delete_profile_input_unref ()

-
void
-qmi_message_wds_delete_profile_input_unref
-                               (QmiMessageWdsDeleteProfileInput *self);
-

Atomically decrements the reference count of self - by one. -If the reference count drops to 0, self - is completely disposed.

-
-

Parameters

-
----- - - - - - -

self

a QmiMessageWdsDeleteProfileInput.

 
-
-

Since: 1.18

-
-
-
-

qmi_message_wds_delete_profile_input_get_profile_identifier ()

-
gboolean
-qmi_message_wds_delete_profile_input_get_profile_identifier
-                               (QmiMessageWdsDeleteProfileInput *self,
-                                QmiWdsProfileType *value_profile_identifier_profile_type,
-                                guint8 *value_profile_identifier_profile_index,
-                                GError **error);
-

Get the 'Profile Identifier' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - - - - - - -

self

a QmiMessageWdsDeleteProfileInput.

 

value_profile_identifier_profile_type

a placeholder for the output QmiWdsProfileType, or NULL if not required.

 

value_profile_identifier_profile_index

a placeholder for the output guint8, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.18

-
-
-
-

qmi_message_wds_delete_profile_input_set_profile_identifier ()

-
gboolean
-qmi_message_wds_delete_profile_input_set_profile_identifier
-                               (QmiMessageWdsDeleteProfileInput *self,
-                                QmiWdsProfileType value_profile_identifier_profile_type,
-                                guint8 value_profile_identifier_profile_index,
-                                GError **error);
-

Set the 'Profile Identifier' field in the message.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - - - - - - -

self

a QmiMessageWdsDeleteProfileInput.

 

value_profile_identifier_profile_type

a QmiWdsProfileType.

 

value_profile_identifier_profile_index

a guint8.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if value -was successfully set, FALSE otherwise.

-
-

Since: 1.18

-
-
-
-

qmi_message_wds_delete_profile_output_ref ()

-
QmiMessageWdsDeleteProfileOutput *
-qmi_message_wds_delete_profile_output_ref
-                               (QmiMessageWdsDeleteProfileOutput *self);
-

Atomically increments the reference count of self - by one.

-
-

Parameters

-
----- - - - - - -

self

a QmiMessageWdsDeleteProfileOutput.

 
-
-
-

Returns

-

the new reference to self -.

-
-

Since: 1.18

-
-
-
-

qmi_message_wds_delete_profile_output_unref ()

-
void
-qmi_message_wds_delete_profile_output_unref
-                               (QmiMessageWdsDeleteProfileOutput *self);
-

Atomically decrements the reference count of self - by one. -If the reference count drops to 0, self - is completely disposed.

-
-

Parameters

-
----- - - - - - -

self

a QmiMessageWdsDeleteProfileOutput.

 
-
-

Since: 1.18

-
-
-
-

qmi_message_wds_delete_profile_output_get_result ()

-
gboolean
-qmi_message_wds_delete_profile_output_get_result
-                               (QmiMessageWdsDeleteProfileOutput *self,
-                                GError **error);
-

Get the result of the QMI operation.

-
-

Parameters

-
----- - - - - - - - - - - - - -

self

a QmiMessageWdsDeleteProfileOutput.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the QMI operation succeeded, FALSE if error -is set.

-
-

Since: 1.18

-
-
-
-

qmi_message_wds_delete_profile_output_get_extended_error_code ()

-
gboolean
-qmi_message_wds_delete_profile_output_get_extended_error_code
-                               (QmiMessageWdsDeleteProfileOutput *self,
-                                QmiWdsDsProfileError *value_extended_error_code,
-                                GError **error);
-

Get the 'Extended Error Code' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessageWdsDeleteProfileOutput.

 

value_extended_error_code

a placeholder for the output QmiWdsDsProfileError, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.18

-
-
-
-

qmi_client_wds_delete_profile ()

-
void
-qmi_client_wds_delete_profile (QmiClientWds *self,
-                               QmiMessageWdsDeleteProfileInput *input,
-                               guint timeout,
-                               GCancellable *cancellable,
-                               GAsyncReadyCallback callback,
-                               gpointer user_data);
-

Asynchronously sends a Delete Profile request to the device.

-

When the operation is finished, callback - will be invoked in the thread-default main loop of the thread you are calling this method from.

-

You can then call qmi_client_wds_delete_profile_finish() to get the result of the operation.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

self

a QmiClientWds.

 

input

a QmiMessageWdsDeleteProfileInput.

 

timeout

maximum time to wait for the method to complete, in seconds.

 

cancellable

a GCancellable or NULL.

 

callback

a GAsyncReadyCallback to call when the request is satisfied.

 

user_data

user data to pass to callback -.

 
-
-

Since: 1.18

-
-
-
-

qmi_client_wds_delete_profile_finish ()

-
QmiMessageWdsDeleteProfileOutput *
-qmi_client_wds_delete_profile_finish (QmiClientWds *self,
-                                      GAsyncResult *res,
-                                      GError **error);
-

Finishes an async operation started with qmi_client_wds_delete_profile().

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiClientWds.

 

res

the GAsyncResult obtained from the GAsyncReadyCallback passed to qmi_client_wds_delete_profile().

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

a QmiMessageWdsDeleteProfileOutput, or NULL if error -is set. The returned value should be freed with qmi_message_wds_delete_profile_output_unref().

-
-

Since: 1.18

-
-
-
-

Types and Values

-
-

QmiMessageWdsDeleteProfileInput

-
typedef struct _QmiMessageWdsDeleteProfileInput QmiMessageWdsDeleteProfileInput;
-

The QmiMessageWdsDeleteProfileInput structure contains private data and should only be accessed -using the provided API.

-

Since: 1.18

-
-
-
-

QmiMessageWdsDeleteProfileOutput

-
typedef struct _QmiMessageWdsDeleteProfileOutput QmiMessageWdsDeleteProfileOutput;
-

The QmiMessageWdsDeleteProfileOutput structure contains private data and should only be accessed -using the provided API.

-

Since: 1.18

-
-
-
- - - \ No newline at end of file diff -Nru libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-WDS-Delete-Profile-request.html libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-WDS-Delete-Profile-request.html --- libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-WDS-Delete-Profile-request.html 1970-01-01 01:00:00.000000000 +0100 +++ libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-WDS-Delete-Profile-request.html 2019-01-08 15:19:02.000000000 +0100 @@ -0,0 +1,593 @@ + + + + +WDS Delete Profile request: libqmi-glib Reference Manual + + + + + + + + + + + + + + + + +
+
+
+ + +
+

WDS Delete Profile request

+

WDS Delete Profile request

+
+ +
+

Types and Values

+ +
+
+

Object Hierarchy

+
    GBoxed
+    ├── QmiMessageWdsDeleteProfileInput
+    ╰── QmiMessageWdsDeleteProfileOutput
+
+
+
+

Description

+
+
+

Functions

+
+

qmi_message_wds_delete_profile_input_new ()

+
QmiMessageWdsDeleteProfileInput *
+qmi_message_wds_delete_profile_input_new
+                               (void);
+

Allocates a new QmiMessageWdsDeleteProfileInput.

+
+

Returns

+

the newly created QmiMessageWdsDeleteProfileInput. The returned value should be freed with qmi_message_wds_delete_profile_input_unref().

+
+

Since: 1.18

+
+
+
+

qmi_message_wds_delete_profile_input_ref ()

+
QmiMessageWdsDeleteProfileInput *
+qmi_message_wds_delete_profile_input_ref
+                               (QmiMessageWdsDeleteProfileInput *self);
+

Atomically increments the reference count of self + by one.

+
+

Parameters

+
+++++ + + + + + +

self

a QmiMessageWdsDeleteProfileInput.

 
+
+
+

Returns

+

the new reference to self +.

+
+

Since: 1.18

+
+
+
+

qmi_message_wds_delete_profile_input_unref ()

+
void
+qmi_message_wds_delete_profile_input_unref
+                               (QmiMessageWdsDeleteProfileInput *self);
+

Atomically decrements the reference count of self + by one. +If the reference count drops to 0, self + is completely disposed.

+
+

Parameters

+
+++++ + + + + + +

self

a QmiMessageWdsDeleteProfileInput.

 
+
+

Since: 1.18

+
+
+
+

qmi_message_wds_delete_profile_input_get_profile_identifier ()

+
gboolean
+qmi_message_wds_delete_profile_input_get_profile_identifier
+                               (QmiMessageWdsDeleteProfileInput *self,
+                                QmiWdsProfileType *value_profile_identifier_profile_type,
+                                guint8 *value_profile_identifier_profile_index,
+                                GError **error);
+

Get the 'Profile Identifier' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + + + + + + +

self

a QmiMessageWdsDeleteProfileInput.

 

value_profile_identifier_profile_type

a placeholder for the output QmiWdsProfileType, or NULL if not required.

 

value_profile_identifier_profile_index

a placeholder for the output guint8, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.18

+
+
+
+

qmi_message_wds_delete_profile_input_set_profile_identifier ()

+
gboolean
+qmi_message_wds_delete_profile_input_set_profile_identifier
+                               (QmiMessageWdsDeleteProfileInput *self,
+                                QmiWdsProfileType value_profile_identifier_profile_type,
+                                guint8 value_profile_identifier_profile_index,
+                                GError **error);
+

Set the 'Profile Identifier' field in the message.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + + + + + + +

self

a QmiMessageWdsDeleteProfileInput.

 

value_profile_identifier_profile_type

a QmiWdsProfileType.

 

value_profile_identifier_profile_index

a guint8.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if value +was successfully set, FALSE otherwise.

+
+

Since: 1.18

+
+
+
+

qmi_message_wds_delete_profile_output_ref ()

+
QmiMessageWdsDeleteProfileOutput *
+qmi_message_wds_delete_profile_output_ref
+                               (QmiMessageWdsDeleteProfileOutput *self);
+

Atomically increments the reference count of self + by one.

+
+

Parameters

+
+++++ + + + + + +

self

a QmiMessageWdsDeleteProfileOutput.

 
+
+
+

Returns

+

the new reference to self +.

+
+

Since: 1.18

+
+
+
+

qmi_message_wds_delete_profile_output_unref ()

+
void
+qmi_message_wds_delete_profile_output_unref
+                               (QmiMessageWdsDeleteProfileOutput *self);
+

Atomically decrements the reference count of self + by one. +If the reference count drops to 0, self + is completely disposed.

+
+

Parameters

+
+++++ + + + + + +

self

a QmiMessageWdsDeleteProfileOutput.

 
+
+

Since: 1.18

+
+
+
+

qmi_message_wds_delete_profile_output_get_result ()

+
gboolean
+qmi_message_wds_delete_profile_output_get_result
+                               (QmiMessageWdsDeleteProfileOutput *self,
+                                GError **error);
+

Get the result of the QMI operation.

+
+

Parameters

+
+++++ + + + + + + + + + + + + +

self

a QmiMessageWdsDeleteProfileOutput.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the QMI operation succeeded, FALSE if error +is set.

+
+

Since: 1.18

+
+
+
+

qmi_message_wds_delete_profile_output_get_extended_error_code ()

+
gboolean
+qmi_message_wds_delete_profile_output_get_extended_error_code
+                               (QmiMessageWdsDeleteProfileOutput *self,
+                                QmiWdsDsProfileError *value_extended_error_code,
+                                GError **error);
+

Get the 'Extended Error Code' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageWdsDeleteProfileOutput.

 

value_extended_error_code

a placeholder for the output QmiWdsDsProfileError, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.18

+
+
+
+

qmi_client_wds_delete_profile ()

+
void
+qmi_client_wds_delete_profile (QmiClientWds *self,
+                               QmiMessageWdsDeleteProfileInput *input,
+                               guint timeout,
+                               GCancellable *cancellable,
+                               GAsyncReadyCallback callback,
+                               gpointer user_data);
+

Asynchronously sends a Delete Profile request to the device.

+

When the operation is finished, callback + will be invoked in the thread-default main loop of the thread you are calling this method from.

+

You can then call qmi_client_wds_delete_profile_finish() to get the result of the operation.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

self

a QmiClientWds.

 

input

a QmiMessageWdsDeleteProfileInput.

 

timeout

maximum time to wait for the method to complete, in seconds.

 

cancellable

a GCancellable or NULL.

 

callback

a GAsyncReadyCallback to call when the request is satisfied.

 

user_data

user data to pass to callback +.

 
+
+

Since: 1.18

+
+
+
+

qmi_client_wds_delete_profile_finish ()

+
QmiMessageWdsDeleteProfileOutput *
+qmi_client_wds_delete_profile_finish (QmiClientWds *self,
+                                      GAsyncResult *res,
+                                      GError **error);
+

Finishes an async operation started with qmi_client_wds_delete_profile().

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiClientWds.

 

res

the GAsyncResult obtained from the GAsyncReadyCallback passed to qmi_client_wds_delete_profile().

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

a QmiMessageWdsDeleteProfileOutput, or NULL if error +is set. The returned value should be freed with qmi_message_wds_delete_profile_output_unref().

+
+

Since: 1.18

+
+
+
+

Types and Values

+
+

QmiMessageWdsDeleteProfileInput

+
typedef struct _QmiMessageWdsDeleteProfileInput QmiMessageWdsDeleteProfileInput;
+

The QmiMessageWdsDeleteProfileInput structure contains private data and should only be accessed +using the provided API.

+

Since: 1.18

+
+
+
+

QmiMessageWdsDeleteProfileOutput

+
typedef struct _QmiMessageWdsDeleteProfileOutput QmiMessageWdsDeleteProfileOutput;
+

The QmiMessageWdsDeleteProfileOutput structure contains private data and should only be accessed +using the provided API.

+

Since: 1.18

+
+
+
+ + + \ No newline at end of file diff -Nru libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-WDS-enumerations-and-flags.html libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-WDS-enumerations-and-flags.html --- libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-WDS-enumerations-and-flags.html 2017-03-22 12:28:29.000000000 +0100 +++ libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-WDS-enumerations-and-flags.html 2019-01-08 15:19:02.000000000 +0100 @@ -3,12 +3,12 @@ WDS enumerations and flags: libqmi-glib Reference Manual - + - - + + @@ -21,7 +21,7 @@ Home Up Prev -Next +Next
@@ -48,6 +48,13 @@ +const gchar * + + +qmi_wds_profile_family_get_string () + + + gchar * @@ -414,6 +421,10 @@ enum +QmiWdsProfileFamily + + +enum QmiWdsTechnologyPreference @@ -609,7 +620,7 @@

Object Hierarchy

-
    GEnum
+
    GEnum
     ├── QmiWdsAutoconnectSetting
     ├── QmiWdsAutoconnectSettingRoaming
     ├── QmiWdsCallEndReason
@@ -630,6 +641,7 @@
     ├── QmiWdsPdpDataCompressionType
     ├── QmiWdsPdpHeaderCompressionType
     ├── QmiWdsPdpType
+    ├── QmiWdsProfileFamily
     ├── QmiWdsProfileType
     ├── QmiWdsQosClassIdentifier
     ├── QmiWdsRadioAccessTechnology
@@ -646,7 +658,7 @@
     ├── QmiWdsVerboseCallEndReasonMip
     ├── QmiWdsVerboseCallEndReasonPpp
     ╰── QmiWdsVerboseCallEndReasonType
-    GFlags
+    GFlags
     ├── QmiWdsAuthentication
     ├── QmiWdsExtendedDataBearerTechnology3gpp
     ├── QmiWdsExtendedDataBearerTechnology3gpp2
@@ -692,13 +704,42 @@
 

Returns

-

a string with the nickname, or NULL if not found. Do not free the returned value.

+

a string with the nickname, or NULL if not found. Do not free the returned value.

[transfer none]

Since: 1.0


+

qmi_wds_profile_family_get_string ()

+
const gchar *
+qmi_wds_profile_family_get_string (QmiWdsProfileFamily val);
+

Gets the nickname string for the QmiWdsProfileFamily specified at val +.

+
+

Parameters

+
+++++ + + + + + +

val

a QmiWdsProfileFamily.

 
+
+
+

Returns

+

a string with the nickname, or NULL if not found. Do not free the returned value.

+

[transfer none]

+
+

Since: 1.22

+
+
+

qmi_wds_technology_preference_build_string_from_mask ()

gchar *
 qmi_wds_technology_preference_build_string_from_mask
@@ -723,7 +764,7 @@
 

Returns

-

a string with the list of nicknames, or NULL if none given. The returned value should be freed with g_free().

+

a string with the list of nicknames, or NULL if none given. The returned value should be freed with g_free().

[transfer full]

@@ -752,7 +793,7 @@

Returns

-

a string with the nickname, or NULL if not found. Do not free the returned value.

+

a string with the nickname, or NULL if not found. Do not free the returned value.

[transfer none]

Since: 1.0

@@ -781,7 +822,7 @@

Returns

-

a string with the nickname, or NULL if not found. Do not free the returned value.

+

a string with the nickname, or NULL if not found. Do not free the returned value.

[transfer none]

Since: 1.0

@@ -810,7 +851,7 @@

Returns

-

a string with the nickname, or NULL if not found. Do not free the returned value.

+

a string with the nickname, or NULL if not found. Do not free the returned value.

[transfer none]

Since: 1.0

@@ -847,7 +888,7 @@

Returns

-

a string with the reason, or NULL if not found. Do not free the returned value.

+

a string with the reason, or NULL if not found. Do not free the returned value.

[transfer none]

Since: 1.0

@@ -877,7 +918,7 @@

Returns

-

a string with the nickname, or NULL if not found. Do not free the returned value.

+

a string with the nickname, or NULL if not found. Do not free the returned value.

[transfer none]

Since: 1.0

@@ -907,7 +948,7 @@

Returns

-

a string with the nickname, or NULL if not found. Do not free the returned value.

+

a string with the nickname, or NULL if not found. Do not free the returned value.

[transfer none]

Since: 1.0

@@ -937,7 +978,7 @@

Returns

-

a string with the nickname, or NULL if not found. Do not free the returned value.

+

a string with the nickname, or NULL if not found. Do not free the returned value.

[transfer none]

Since: 1.0

@@ -967,7 +1008,7 @@

Returns

-

a string with the nickname, or NULL if not found. Do not free the returned value.

+

a string with the nickname, or NULL if not found. Do not free the returned value.

[transfer none]

Since: 1.0

@@ -997,7 +1038,7 @@

Returns

-

a string with the nickname, or NULL if not found. Do not free the returned value.

+

a string with the nickname, or NULL if not found. Do not free the returned value.

[transfer none]

Since: 1.0

@@ -1027,7 +1068,7 @@

Returns

-

a string with the nickname, or NULL if not found. Do not free the returned value.

+

a string with the nickname, or NULL if not found. Do not free the returned value.

[transfer none]

Since: 1.0

@@ -1057,7 +1098,7 @@

Returns

-

a string with the nickname, or NULL if not found. Do not free the returned value.

+

a string with the nickname, or NULL if not found. Do not free the returned value.

[transfer none]

Since: 1.0

@@ -1087,7 +1128,7 @@

Returns

-

a string with the nickname, or NULL if not found. Do not free the returned value.

+

a string with the nickname, or NULL if not found. Do not free the returned value.

[transfer none]

Since: 1.0

@@ -1116,7 +1157,7 @@

Returns

-

a string with the nickname, or NULL if not found. Do not free the returned value.

+

a string with the nickname, or NULL if not found. Do not free the returned value.

[transfer none]

Since: 1.0

@@ -1146,7 +1187,7 @@

Returns

-

a string with the nickname, or NULL if not found. Do not free the returned value.

+

a string with the nickname, or NULL if not found. Do not free the returned value.

[transfer none]

Since: 1.0

@@ -1175,7 +1216,7 @@

Returns

-

a string with the nickname, or NULL if not found. Do not free the returned value.

+

a string with the nickname, or NULL if not found. Do not free the returned value.

[transfer none]

Since: 1.0

@@ -1205,7 +1246,7 @@

Returns

-

a string with the nickname, or NULL if not found. Do not free the returned value.

+

a string with the nickname, or NULL if not found. Do not free the returned value.

[transfer none]

Since: 1.14

@@ -1236,7 +1277,7 @@

Returns

-

a string with the list of nicknames, or NULL if none given. The returned value should be freed with g_free().

+

a string with the list of nicknames, or NULL if none given. The returned value should be freed with g_free().

[transfer full]

@@ -1266,7 +1307,7 @@

Returns

-

a string with the list of nicknames, or NULL if none given. The returned value should be freed with g_free().

+

a string with the list of nicknames, or NULL if none given. The returned value should be freed with g_free().

[transfer full]

@@ -1296,7 +1337,7 @@

Returns

-

a string with the list of nicknames, or NULL if none given. The returned value should be freed with g_free().

+

a string with the list of nicknames, or NULL if none given. The returned value should be freed with g_free().

[transfer full]

@@ -1326,7 +1367,7 @@

Returns

-

a string with the list of nicknames, or NULL if none given. The returned value should be freed with g_free().

+

a string with the list of nicknames, or NULL if none given. The returned value should be freed with g_free().

[transfer full]

@@ -1355,7 +1396,7 @@

Returns

-

a string with the nickname, or NULL if not found. Do not free the returned value.

+

a string with the nickname, or NULL if not found. Do not free the returned value.

[transfer none]

Since: 1.0

@@ -1384,7 +1425,7 @@

Returns

-

a string with the nickname, or NULL if not found. Do not free the returned value.

+

a string with the nickname, or NULL if not found. Do not free the returned value.

[transfer none]

Since: 1.0

@@ -1414,7 +1455,7 @@

Returns

-

a string with the nickname, or NULL if not found. Do not free the returned value.

+

a string with the nickname, or NULL if not found. Do not free the returned value.

[transfer none]

Since: 1.18

@@ -1444,7 +1485,7 @@

Returns

-

a string with the nickname, or NULL if not found. Do not free the returned value.

+

a string with the nickname, or NULL if not found. Do not free the returned value.

[transfer none]

Since: 1.18

@@ -1474,7 +1515,7 @@

Returns

-

a string with the nickname, or NULL if not found. Do not free the returned value.

+

a string with the nickname, or NULL if not found. Do not free the returned value.

[transfer none]

Since: 1.18

@@ -1503,7 +1544,7 @@

Returns

-

a string with the nickname, or NULL if not found. Do not free the returned value.

+

a string with the nickname, or NULL if not found. Do not free the returned value.

[transfer none]

Since: 1.0

@@ -1534,7 +1575,7 @@

Returns

-

a string with the list of nicknames, or NULL if none given. The returned value should be freed with g_free().

+

a string with the list of nicknames, or NULL if none given. The returned value should be freed with g_free().

[transfer full]

Since: 1.0

@@ -1563,7 +1604,7 @@

Returns

-

a string with the nickname, or NULL if not found. Do not free the returned value.

+

a string with the nickname, or NULL if not found. Do not free the returned value.

[transfer none]

Since: 1.0

@@ -1592,7 +1633,7 @@

Returns

-

a string with the nickname, or NULL if not found. Do not free the returned value.

+

a string with the nickname, or NULL if not found. Do not free the returned value.

[transfer none]

Since: 1.14

@@ -1621,7 +1662,7 @@

Returns

-

a string with the nickname, or NULL if not found. Do not free the returned value.

+

a string with the nickname, or NULL if not found. Do not free the returned value.

[transfer none]

Since: 1.14

@@ -1651,7 +1692,7 @@

Returns

-

a string with the nickname, or NULL if not found. Do not free the returned value.

+

a string with the nickname, or NULL if not found. Do not free the returned value.

[transfer none]

Since: 1.14

@@ -1681,7 +1722,7 @@

Returns

-

a string with the nickname, or NULL if not found. Do not free the returned value.

+

a string with the nickname, or NULL if not found. Do not free the returned value.

[transfer none]

Since: 1.14

@@ -1712,7 +1753,7 @@

Returns

-

a string with the list of nicknames, or NULL if none given. The returned value should be freed with g_free().

+

a string with the list of nicknames, or NULL if none given. The returned value should be freed with g_free().

[transfer full]

Since: 1.6

@@ -1741,7 +1782,7 @@

Returns

-

a string with the nickname, or NULL if not found. Do not free the returned value.

+

a string with the nickname, or NULL if not found. Do not free the returned value.

[transfer none]

Since: 1.8

@@ -1771,7 +1812,7 @@

Returns

-

a string with the nickname, or NULL if not found. Do not free the returned value.

+

a string with the nickname, or NULL if not found. Do not free the returned value.

[transfer none]

Since: 1.14

@@ -1801,7 +1842,7 @@

Returns

-

a string with the nickname, or NULL if not found. Do not free the returned value.

+

a string with the nickname, or NULL if not found. Do not free the returned value.

[transfer none]

Since: 1.14

@@ -1830,7 +1871,7 @@

Returns

-

a string with the nickname, or NULL if not found. Do not free the returned value.

+

a string with the nickname, or NULL if not found. Do not free the returned value.

[transfer none]

Since: 1.18

@@ -1859,7 +1900,7 @@

Returns

-

a string with the nickname, or NULL if not found. Do not free the returned value.

+

a string with the nickname, or NULL if not found. Do not free the returned value.

[transfer none]

Since: 1.18

@@ -1888,7 +1929,7 @@

Returns

-

a string with the nickname, or NULL if not found. Do not free the returned value.

+

a string with the nickname, or NULL if not found. Do not free the returned value.

[transfer none]

Since: 1.18

@@ -1917,7 +1958,7 @@

Returns

-

a string with the nickname, or NULL if not found. Do not free the returned value.

+

a string with the nickname, or NULL if not found. Do not free the returned value.

[transfer none]

Since: 1.18

@@ -1947,7 +1988,7 @@

Returns

-

a string with the nickname, or NULL if not found. Do not free the returned value.

+

a string with the nickname, or NULL if not found. Do not free the returned value.

[transfer none]

@@ -1976,7 +2017,7 @@

Returns

-

a string with the nickname, or NULL if not found. Do not free the returned value.

+

a string with the nickname, or NULL if not found. Do not free the returned value.

[transfer none]

@@ -2005,7 +2046,7 @@

Returns

-

a string with the nickname, or NULL if not found. Do not free the returned value.

+

a string with the nickname, or NULL if not found. Do not free the returned value.

[transfer none]

Since: 1.18

@@ -2035,7 +2076,7 @@

Returns

-

a string with the nickname, or NULL if not found. Do not free the returned value.

+

a string with the nickname, or NULL if not found. Do not free the returned value.

[transfer none]

Since: 1.18

@@ -2064,7 +2105,7 @@

Returns

-

a string with the nickname, or NULL if not found. Do not free the returned value.

+

a string with the nickname, or NULL if not found. Do not free the returned value.

[transfer none]

Since: 1.18

@@ -2093,7 +2134,7 @@

Returns

-

a string with the nickname, or NULL if not found. Do not free the returned value.

+

a string with the nickname, or NULL if not found. Do not free the returned value.

[transfer none]

Since: 1.18

@@ -2122,7 +2163,7 @@

Returns

-

a string with the nickname, or NULL if not found. Do not free the returned value.

+

a string with the nickname, or NULL if not found. Do not free the returned value.

[transfer none]

Since: 1.18

@@ -2151,7 +2192,7 @@

Returns

-

a string with the nickname, or NULL if not found. Do not free the returned value.

+

a string with the nickname, or NULL if not found. Do not free the returned value.

[transfer none]

Since: 1.18

@@ -2206,6 +2247,38 @@
+

enum QmiWdsProfileFamily

+

Profile family.

+
+

Members

+
+++++ + + + + + + + + + + + + +

QMI_WDS_PROFILE_FAMILY_EMBEDDED

+

Embedded profile family.

+
 

QMI_WDS_PROFILE_FAMILY_TETHERED

+

Tethered profile family.

+
 
+
+

Since: 1.22

+
+
+

enum QmiWdsTechnologyPreference

Type of network allowed when trying to connect.

@@ -6663,6 +6736,6 @@
+
Generated by GTK-Doc V1.29 \ No newline at end of file diff -Nru libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-WDS-Event-Report.html libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-WDS-Event-Report.html --- libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-WDS-Event-Report.html 2017-03-22 12:28:29.000000000 +0100 +++ libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-WDS-Event-Report.html 1970-01-01 01:00:00.000000000 +0100 @@ -1,1482 +0,0 @@ - - - - -WDS Event Report: libqmi-glib Reference Manual - - - - - - - - - - - - - - - - -
-
-
- - -
-

WDS Event Report

-

WDS Event Report

-
-
-

Functions

-
---- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
-QmiIndicationWdsEventReportOutput * - -qmi_indication_wds_event_report_output_ref () -
-void - -qmi_indication_wds_event_report_output_unref () -
-gboolean - -qmi_indication_wds_event_report_output_get_extended_data_bearer_technology () -
-gboolean - -qmi_indication_wds_event_report_output_get_pdn_filters_removed () -
-gboolean - -qmi_indication_wds_event_report_output_get_data_call_address_family () -
-gboolean - -qmi_indication_wds_event_report_output_get_uplink_flow_control_enabled () -
-gboolean - -qmi_indication_wds_event_report_output_get_rx_packets_dropped () -
-gboolean - -qmi_indication_wds_event_report_output_get_tx_packets_dropped () -
-gboolean - -qmi_indication_wds_event_report_output_get_data_systems () -
-gboolean - -qmi_indication_wds_event_report_output_get_evdo_page_monitor_period_change () -
-gboolean - -qmi_indication_wds_event_report_output_get_data_call_type () -
-gboolean - -qmi_indication_wds_event_report_output_get_preferred_data_system () -
-gboolean - -qmi_indication_wds_event_report_output_get_data_call_status () -
-gboolean - -qmi_indication_wds_event_report_output_get_current_data_bearer_technology () -
-gboolean - -qmi_indication_wds_event_report_output_get_mip_status () -
-gboolean - -qmi_indication_wds_event_report_output_get_rx_bytes_ok () -
-gboolean - -qmi_indication_wds_event_report_output_get_tx_bytes_ok () -
-gboolean - -qmi_indication_wds_event_report_output_get_dormancy_status () -
-gboolean - -qmi_indication_wds_event_report_output_get_data_bearer_technology () -
-gboolean - -qmi_indication_wds_event_report_output_get_channel_rates () -
-gboolean - -qmi_indication_wds_event_report_output_get_rx_overflows () -
-gboolean - -qmi_indication_wds_event_report_output_get_tx_overflows () -
-gboolean - -qmi_indication_wds_event_report_output_get_rx_packets_error () -
-gboolean - -qmi_indication_wds_event_report_output_get_tx_packets_error () -
-gboolean - -qmi_indication_wds_event_report_output_get_rx_packets_ok () -
-gboolean - -qmi_indication_wds_event_report_output_get_tx_packets_ok () -
-
- -
-

Object Hierarchy

-
    GBoxed
-    ╰── QmiIndicationWdsEventReportOutput
-
-
-
-

Description

-
-
-

Functions

-
-

qmi_indication_wds_event_report_output_ref ()

-
QmiIndicationWdsEventReportOutput *
-qmi_indication_wds_event_report_output_ref
-                               (QmiIndicationWdsEventReportOutput *self);
-

Atomically increments the reference count of self - by one.

-
-

Parameters

-
----- - - - - - -

self

a QmiIndicationWdsEventReportOutput.

 
-
-
-

Returns

-

the new reference to self -.

-
-

Since: 1.18

-
-
-
-

qmi_indication_wds_event_report_output_unref ()

-
void
-qmi_indication_wds_event_report_output_unref
-                               (QmiIndicationWdsEventReportOutput *self);
-

Atomically decrements the reference count of self - by one. -If the reference count drops to 0, self - is completely disposed.

-
-

Parameters

-
----- - - - - - -

self

a QmiIndicationWdsEventReportOutput.

 
-
-

Since: 1.18

-
-
-
-

qmi_indication_wds_event_report_output_get_extended_data_bearer_technology ()

-
gboolean
-qmi_indication_wds_event_report_output_get_extended_data_bearer_technology
-                               (QmiIndicationWdsEventReportOutput *self,
-                                QmiWdsDataSystemNetworkType *value_extended_data_bearer_technology_data_bearer_technology,
-                                QmiWdsRadioAccessTechnology *value_extended_data_bearer_technology_radio_access_technology,
-                                QmiWdsExtendedDataBearerTechnology3gpp *value_extended_data_bearer_technology_extended_data_bearer_technology_3gpp,
-                                QmiWdsExtendedDataBearerTechnology3gpp2 *value_extended_data_bearer_technology_extended_data_bearer_technology_3gpp2,
-                                GError **error);
-

Get the 'Extended Data Bearer Technology' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

self

a QmiIndicationWdsEventReportOutput.

 

value_extended_data_bearer_technology_data_bearer_technology

a placeholder for the output QmiWdsDataSystemNetworkType, or NULL if not required.

 

value_extended_data_bearer_technology_radio_access_technology

a placeholder for the output QmiWdsRadioAccessTechnology, or NULL if not required.

 

value_extended_data_bearer_technology_extended_data_bearer_technology_3gpp

a placeholder for the output QmiWdsExtendedDataBearerTechnology3gpp, or NULL if not required.

 

value_extended_data_bearer_technology_extended_data_bearer_technology_3gpp2

a placeholder for the output QmiWdsExtendedDataBearerTechnology3gpp2, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.18

-
-
-
-

qmi_indication_wds_event_report_output_get_pdn_filters_removed ()

-
gboolean
-qmi_indication_wds_event_report_output_get_pdn_filters_removed
-                               (QmiIndicationWdsEventReportOutput *self,
-                                GArray **value_pdn_filters_removed_pdn_filter_handler,
-                                GError **error);
-

Get the 'PDN Filters Removed' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiIndicationWdsEventReportOutput.

 

value_pdn_filters_removed_pdn_filter_handler

a placeholder for the output GArray of guint32 elements, or NULL if not required. Do not free it, it is owned by self -.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.18

-
-
-
-

qmi_indication_wds_event_report_output_get_data_call_address_family ()

-
gboolean
-qmi_indication_wds_event_report_output_get_data_call_address_family
-                               (QmiIndicationWdsEventReportOutput *self,
-                                QmiWdsIpFamily *value_data_call_address_family,
-                                GError **error);
-

Get the 'Data Call Address Family' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiIndicationWdsEventReportOutput.

 

value_data_call_address_family

a placeholder for the output QmiWdsIpFamily, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.18

-
-
-
-

qmi_indication_wds_event_report_output_get_uplink_flow_control_enabled ()

-
gboolean
-qmi_indication_wds_event_report_output_get_uplink_flow_control_enabled
-                               (QmiIndicationWdsEventReportOutput *self,
-                                gboolean *value_uplink_flow_control_enabled,
-                                GError **error);
-

Get the 'Uplink Flow Control Enabled' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiIndicationWdsEventReportOutput.

 

value_uplink_flow_control_enabled

a placeholder for the output gboolean, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.18

-
-
-
-

qmi_indication_wds_event_report_output_get_rx_packets_dropped ()

-
gboolean
-qmi_indication_wds_event_report_output_get_rx_packets_dropped
-                               (QmiIndicationWdsEventReportOutput *self,
-                                guint32 *value_rx_packets_dropped,
-                                GError **error);
-

Get the 'Rx Packets Dropped' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiIndicationWdsEventReportOutput.

 

value_rx_packets_dropped

a placeholder for the output guint32, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.18

-
-
-
-

qmi_indication_wds_event_report_output_get_tx_packets_dropped ()

-
gboolean
-qmi_indication_wds_event_report_output_get_tx_packets_dropped
-                               (QmiIndicationWdsEventReportOutput *self,
-                                guint32 *value_tx_packets_dropped,
-                                GError **error);
-

Get the 'Tx Packets Dropped' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiIndicationWdsEventReportOutput.

 

value_tx_packets_dropped

a placeholder for the output guint32, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.18

-
-
-
-

qmi_indication_wds_event_report_output_get_data_systems ()

-
gboolean
-qmi_indication_wds_event_report_output_get_data_systems
-                               (QmiIndicationWdsEventReportOutput *self,
-                                QmiWdsDataSystemNetworkType *value_data_systems_preferred_network_type,
-                                GArray **value_data_systems_networks,
-                                GError **error);
-

Get the 'Data Systems' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - - - - - - -

self

a QmiIndicationWdsEventReportOutput.

 

value_data_systems_preferred_network_type

a placeholder for the output QmiWdsDataSystemNetworkType, or NULL if not required.

 

value_data_systems_networks

a placeholder for the output GArray of QmiIndicationWdsEventReportOutputDataSystemsNetworksNetwork elements, or NULL if not required. Do not free it, it is owned by self -.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.18

-
-
-
-

qmi_indication_wds_event_report_output_get_evdo_page_monitor_period_change ()

-
gboolean
-qmi_indication_wds_event_report_output_get_evdo_page_monitor_period_change
-                               (QmiIndicationWdsEventReportOutput *self,
-                                guint8 *value_evdo_page_monitor_period_change_period_change,
-                                gboolean *value_evdo_page_monitor_period_change_force_long_sleep,
-                                GError **error);
-

Get the 'EVDO Page Monitor Period Change' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - - - - - - -

self

a QmiIndicationWdsEventReportOutput.

 

value_evdo_page_monitor_period_change_period_change

a placeholder for the output guint8, or NULL if not required.

 

value_evdo_page_monitor_period_change_force_long_sleep

a placeholder for the output gboolean, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.18

-
-
-
-

qmi_indication_wds_event_report_output_get_data_call_type ()

-
gboolean
-qmi_indication_wds_event_report_output_get_data_call_type
-                               (QmiIndicationWdsEventReportOutput *self,
-                                QmiWdsDataCallType *value_data_call_type_data_call_type,
-                                QmiWdsTetheredCallType *value_data_call_type_tethered_call_type,
-                                GError **error);
-

Get the 'Data Call Type' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - - - - - - -

self

a QmiIndicationWdsEventReportOutput.

 

value_data_call_type_data_call_type

a placeholder for the output QmiWdsDataCallType, or NULL if not required.

 

value_data_call_type_tethered_call_type

a placeholder for the output QmiWdsTetheredCallType, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.18

-
-
-
-

qmi_indication_wds_event_report_output_get_preferred_data_system ()

-
gboolean
-qmi_indication_wds_event_report_output_get_preferred_data_system
-                               (QmiIndicationWdsEventReportOutput *self,
-                                QmiWdsDataSystem *value_preferred_data_system,
-                                GError **error);
-

Get the 'Preferred Data System' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiIndicationWdsEventReportOutput.

 

value_preferred_data_system

a placeholder for the output QmiWdsDataSystem, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.18

-
-
-
-

qmi_indication_wds_event_report_output_get_data_call_status ()

-
gboolean
-qmi_indication_wds_event_report_output_get_data_call_status
-                               (QmiIndicationWdsEventReportOutput *self,
-                                QmiWdsDataCallStatus *value_data_call_status,
-                                GError **error);
-

Get the 'Data Call Status' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiIndicationWdsEventReportOutput.

 

value_data_call_status

a placeholder for the output QmiWdsDataCallStatus, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.18

-
-
-
-

qmi_indication_wds_event_report_output_get_current_data_bearer_technology ()

-
gboolean
-qmi_indication_wds_event_report_output_get_current_data_bearer_technology
-                               (QmiIndicationWdsEventReportOutput *self,
-                                QmiWdsNetworkType *value_current_data_bearer_technology_network_type,
-                                guint32 *value_current_data_bearer_technology_rat_mask,
-                                guint32 *value_current_data_bearer_technology_so_mask,
-                                GError **error);
-

Get the 'Current Data Bearer Technology' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - - - - - - - - - - - -

self

a QmiIndicationWdsEventReportOutput.

 

value_current_data_bearer_technology_network_type

a placeholder for the output QmiWdsNetworkType, or NULL if not required.

 

value_current_data_bearer_technology_rat_mask

a placeholder for the output guint32, or NULL if not required.

 

value_current_data_bearer_technology_so_mask

a placeholder for the output guint32, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.18

-
-
-
-

qmi_indication_wds_event_report_output_get_mip_status ()

-
gboolean
-qmi_indication_wds_event_report_output_get_mip_status
-                               (QmiIndicationWdsEventReportOutput *self,
-                                gboolean *value_mip_status,
-                                GError **error);
-

Get the 'MIP Status' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiIndicationWdsEventReportOutput.

 

value_mip_status

a placeholder for the output gboolean, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.18

-
-
-
-

qmi_indication_wds_event_report_output_get_rx_bytes_ok ()

-
gboolean
-qmi_indication_wds_event_report_output_get_rx_bytes_ok
-                               (QmiIndicationWdsEventReportOutput *self,
-                                guint64 *value_rx_bytes_ok,
-                                GError **error);
-

Get the 'Rx Bytes Ok' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiIndicationWdsEventReportOutput.

 

value_rx_bytes_ok

a placeholder for the output guint64, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.18

-
-
-
-

qmi_indication_wds_event_report_output_get_tx_bytes_ok ()

-
gboolean
-qmi_indication_wds_event_report_output_get_tx_bytes_ok
-                               (QmiIndicationWdsEventReportOutput *self,
-                                guint64 *value_tx_bytes_ok,
-                                GError **error);
-

Get the 'Tx Bytes Ok' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiIndicationWdsEventReportOutput.

 

value_tx_bytes_ok

a placeholder for the output guint64, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.18

-
-
-
-

qmi_indication_wds_event_report_output_get_dormancy_status ()

-
gboolean
-qmi_indication_wds_event_report_output_get_dormancy_status
-                               (QmiIndicationWdsEventReportOutput *self,
-                                QmiWdsDormancyStatus *value_dormancy_status,
-                                GError **error);
-

Get the 'Dormancy Status' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiIndicationWdsEventReportOutput.

 

value_dormancy_status

a placeholder for the output QmiWdsDormancyStatus, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.18

-
-
-
-

qmi_indication_wds_event_report_output_get_data_bearer_technology ()

-
gboolean
-qmi_indication_wds_event_report_output_get_data_bearer_technology
-                               (QmiIndicationWdsEventReportOutput *self,
-                                QmiWdsDataBearerTechnology *value_data_bearer_technology,
-                                GError **error);
-

Get the 'Data Bearer Technology' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiIndicationWdsEventReportOutput.

 

value_data_bearer_technology

a placeholder for the output QmiWdsDataBearerTechnology, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.18

-
-
-
-

qmi_indication_wds_event_report_output_get_channel_rates ()

-
gboolean
-qmi_indication_wds_event_report_output_get_channel_rates
-                               (QmiIndicationWdsEventReportOutput *self,
-                                gint32 *value_channel_rates_tx_rate_bps,
-                                gint32 *value_channel_rates_rx_rate_bps,
-                                GError **error);
-

Get the 'Channel Rates' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - - - - - - -

self

a QmiIndicationWdsEventReportOutput.

 

value_channel_rates_tx_rate_bps

a placeholder for the output gint32, or NULL if not required.

 

value_channel_rates_rx_rate_bps

a placeholder for the output gint32, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.18

-
-
-
-

qmi_indication_wds_event_report_output_get_rx_overflows ()

-
gboolean
-qmi_indication_wds_event_report_output_get_rx_overflows
-                               (QmiIndicationWdsEventReportOutput *self,
-                                guint32 *value_rx_overflows,
-                                GError **error);
-

Get the 'Rx Overflows' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiIndicationWdsEventReportOutput.

 

value_rx_overflows

a placeholder for the output guint32, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.18

-
-
-
-

qmi_indication_wds_event_report_output_get_tx_overflows ()

-
gboolean
-qmi_indication_wds_event_report_output_get_tx_overflows
-                               (QmiIndicationWdsEventReportOutput *self,
-                                guint32 *value_tx_overflows,
-                                GError **error);
-

Get the 'Tx Overflows' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiIndicationWdsEventReportOutput.

 

value_tx_overflows

a placeholder for the output guint32, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.18

-
-
-
-

qmi_indication_wds_event_report_output_get_rx_packets_error ()

-
gboolean
-qmi_indication_wds_event_report_output_get_rx_packets_error
-                               (QmiIndicationWdsEventReportOutput *self,
-                                guint32 *value_rx_packets_error,
-                                GError **error);
-

Get the 'Rx Packets Error' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiIndicationWdsEventReportOutput.

 

value_rx_packets_error

a placeholder for the output guint32, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.18

-
-
-
-

qmi_indication_wds_event_report_output_get_tx_packets_error ()

-
gboolean
-qmi_indication_wds_event_report_output_get_tx_packets_error
-                               (QmiIndicationWdsEventReportOutput *self,
-                                guint32 *value_tx_packets_error,
-                                GError **error);
-

Get the 'Tx Packets Error' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiIndicationWdsEventReportOutput.

 

value_tx_packets_error

a placeholder for the output guint32, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.18

-
-
-
-

qmi_indication_wds_event_report_output_get_rx_packets_ok ()

-
gboolean
-qmi_indication_wds_event_report_output_get_rx_packets_ok
-                               (QmiIndicationWdsEventReportOutput *self,
-                                guint32 *value_rx_packets_ok,
-                                GError **error);
-

Get the 'Rx Packets Ok' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiIndicationWdsEventReportOutput.

 

value_rx_packets_ok

a placeholder for the output guint32, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.18

-
-
-
-

qmi_indication_wds_event_report_output_get_tx_packets_ok ()

-
gboolean
-qmi_indication_wds_event_report_output_get_tx_packets_ok
-                               (QmiIndicationWdsEventReportOutput *self,
-                                guint32 *value_tx_packets_ok,
-                                GError **error);
-

Get the 'Tx Packets Ok' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiIndicationWdsEventReportOutput.

 

value_tx_packets_ok

a placeholder for the output guint32, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.18

-
-
-
-

Types and Values

-
-

QmiIndicationWdsEventReportOutput

-
typedef struct _QmiIndicationWdsEventReportOutput QmiIndicationWdsEventReportOutput;
-

The QmiIndicationWdsEventReportOutput structure contains private data and should only be accessed -using the provided API.

-

Since: 1.18

-
-
-
-

QmiIndicationWdsEventReportOutputDataSystemsNetworksNetwork

-
typedef struct {
-    QmiWdsDataSystemNetworkType network_type;
-    guint32 rat_mask;
-    guint32 so_mask;
-} QmiIndicationWdsEventReportOutputDataSystemsNetworksNetwork;
-
-

A QmiIndicationWdsEventReportOutputDataSystemsNetworksNetwork struct.

-
-

Members

-
----- - - - - - - - - - - - - - - - - - -

QmiWdsDataSystemNetworkType network_type;

a QmiWdsDataSystemNetworkType.

 

guint32 rat_mask;

a guint32.

 

guint32 so_mask;

a guint32.

 
-
-

Since: 1.18

-
-
-
- - - \ No newline at end of file diff -Nru libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-WDS-Event-Report-indication.html libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-WDS-Event-Report-indication.html --- libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-WDS-Event-Report-indication.html 1970-01-01 01:00:00.000000000 +0100 +++ libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-WDS-Event-Report-indication.html 2019-01-08 15:19:02.000000000 +0100 @@ -0,0 +1,1482 @@ + + + + +WDS Event Report indication: libqmi-glib Reference Manual + + + + + + + + + + + + + + + + +
+
+
+ + +
+

WDS Event Report indication

+

WDS Event Report indication

+
+
+

Functions

+
++++ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+QmiIndicationWdsEventReportOutput * + +qmi_indication_wds_event_report_output_ref () +
+void + +qmi_indication_wds_event_report_output_unref () +
+gboolean + +qmi_indication_wds_event_report_output_get_extended_data_bearer_technology () +
+gboolean + +qmi_indication_wds_event_report_output_get_pdn_filters_removed () +
+gboolean + +qmi_indication_wds_event_report_output_get_data_call_address_family () +
+gboolean + +qmi_indication_wds_event_report_output_get_uplink_flow_control_enabled () +
+gboolean + +qmi_indication_wds_event_report_output_get_rx_packets_dropped () +
+gboolean + +qmi_indication_wds_event_report_output_get_tx_packets_dropped () +
+gboolean + +qmi_indication_wds_event_report_output_get_data_systems () +
+gboolean + +qmi_indication_wds_event_report_output_get_evdo_page_monitor_period_change () +
+gboolean + +qmi_indication_wds_event_report_output_get_data_call_type () +
+gboolean + +qmi_indication_wds_event_report_output_get_preferred_data_system () +
+gboolean + +qmi_indication_wds_event_report_output_get_data_call_status () +
+gboolean + +qmi_indication_wds_event_report_output_get_current_data_bearer_technology () +
+gboolean + +qmi_indication_wds_event_report_output_get_mip_status () +
+gboolean + +qmi_indication_wds_event_report_output_get_rx_bytes_ok () +
+gboolean + +qmi_indication_wds_event_report_output_get_tx_bytes_ok () +
+gboolean + +qmi_indication_wds_event_report_output_get_dormancy_status () +
+gboolean + +qmi_indication_wds_event_report_output_get_data_bearer_technology () +
+gboolean + +qmi_indication_wds_event_report_output_get_channel_rates () +
+gboolean + +qmi_indication_wds_event_report_output_get_rx_overflows () +
+gboolean + +qmi_indication_wds_event_report_output_get_tx_overflows () +
+gboolean + +qmi_indication_wds_event_report_output_get_rx_packets_error () +
+gboolean + +qmi_indication_wds_event_report_output_get_tx_packets_error () +
+gboolean + +qmi_indication_wds_event_report_output_get_rx_packets_ok () +
+gboolean + +qmi_indication_wds_event_report_output_get_tx_packets_ok () +
+
+ +
+

Object Hierarchy

+
    GBoxed
+    ╰── QmiIndicationWdsEventReportOutput
+
+
+
+

Description

+
+
+

Functions

+
+

qmi_indication_wds_event_report_output_ref ()

+
QmiIndicationWdsEventReportOutput *
+qmi_indication_wds_event_report_output_ref
+                               (QmiIndicationWdsEventReportOutput *self);
+

Atomically increments the reference count of self + by one.

+
+

Parameters

+
+++++ + + + + + +

self

a QmiIndicationWdsEventReportOutput.

 
+
+
+

Returns

+

the new reference to self +.

+
+

Since: 1.18

+
+
+
+

qmi_indication_wds_event_report_output_unref ()

+
void
+qmi_indication_wds_event_report_output_unref
+                               (QmiIndicationWdsEventReportOutput *self);
+

Atomically decrements the reference count of self + by one. +If the reference count drops to 0, self + is completely disposed.

+
+

Parameters

+
+++++ + + + + + +

self

a QmiIndicationWdsEventReportOutput.

 
+
+

Since: 1.18

+
+
+
+

qmi_indication_wds_event_report_output_get_extended_data_bearer_technology ()

+
gboolean
+qmi_indication_wds_event_report_output_get_extended_data_bearer_technology
+                               (QmiIndicationWdsEventReportOutput *self,
+                                QmiWdsDataSystemNetworkType *value_extended_data_bearer_technology_data_bearer_technology,
+                                QmiWdsRadioAccessTechnology *value_extended_data_bearer_technology_radio_access_technology,
+                                QmiWdsExtendedDataBearerTechnology3gpp *value_extended_data_bearer_technology_extended_data_bearer_technology_3gpp,
+                                QmiWdsExtendedDataBearerTechnology3gpp2 *value_extended_data_bearer_technology_extended_data_bearer_technology_3gpp2,
+                                GError **error);
+

Get the 'Extended Data Bearer Technology' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

self

a QmiIndicationWdsEventReportOutput.

 

value_extended_data_bearer_technology_data_bearer_technology

a placeholder for the output QmiWdsDataSystemNetworkType, or NULL if not required.

 

value_extended_data_bearer_technology_radio_access_technology

a placeholder for the output QmiWdsRadioAccessTechnology, or NULL if not required.

 

value_extended_data_bearer_technology_extended_data_bearer_technology_3gpp

a placeholder for the output QmiWdsExtendedDataBearerTechnology3gpp, or NULL if not required.

 

value_extended_data_bearer_technology_extended_data_bearer_technology_3gpp2

a placeholder for the output QmiWdsExtendedDataBearerTechnology3gpp2, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.18

+
+
+
+

qmi_indication_wds_event_report_output_get_pdn_filters_removed ()

+
gboolean
+qmi_indication_wds_event_report_output_get_pdn_filters_removed
+                               (QmiIndicationWdsEventReportOutput *self,
+                                GArray **value_pdn_filters_removed_pdn_filter_handler,
+                                GError **error);
+

Get the 'PDN Filters Removed' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiIndicationWdsEventReportOutput.

 

value_pdn_filters_removed_pdn_filter_handler

a placeholder for the output GArray of guint32 elements, or NULL if not required. Do not free it, it is owned by self +.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.18

+
+
+
+

qmi_indication_wds_event_report_output_get_data_call_address_family ()

+
gboolean
+qmi_indication_wds_event_report_output_get_data_call_address_family
+                               (QmiIndicationWdsEventReportOutput *self,
+                                QmiWdsIpFamily *value_data_call_address_family,
+                                GError **error);
+

Get the 'Data Call Address Family' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiIndicationWdsEventReportOutput.

 

value_data_call_address_family

a placeholder for the output QmiWdsIpFamily, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.18

+
+
+
+

qmi_indication_wds_event_report_output_get_uplink_flow_control_enabled ()

+
gboolean
+qmi_indication_wds_event_report_output_get_uplink_flow_control_enabled
+                               (QmiIndicationWdsEventReportOutput *self,
+                                gboolean *value_uplink_flow_control_enabled,
+                                GError **error);
+

Get the 'Uplink Flow Control Enabled' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiIndicationWdsEventReportOutput.

 

value_uplink_flow_control_enabled

a placeholder for the output gboolean, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.18

+
+
+
+

qmi_indication_wds_event_report_output_get_rx_packets_dropped ()

+
gboolean
+qmi_indication_wds_event_report_output_get_rx_packets_dropped
+                               (QmiIndicationWdsEventReportOutput *self,
+                                guint32 *value_rx_packets_dropped,
+                                GError **error);
+

Get the 'Rx Packets Dropped' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiIndicationWdsEventReportOutput.

 

value_rx_packets_dropped

a placeholder for the output guint32, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.18

+
+
+
+

qmi_indication_wds_event_report_output_get_tx_packets_dropped ()

+
gboolean
+qmi_indication_wds_event_report_output_get_tx_packets_dropped
+                               (QmiIndicationWdsEventReportOutput *self,
+                                guint32 *value_tx_packets_dropped,
+                                GError **error);
+

Get the 'Tx Packets Dropped' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiIndicationWdsEventReportOutput.

 

value_tx_packets_dropped

a placeholder for the output guint32, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.18

+
+
+
+

qmi_indication_wds_event_report_output_get_data_systems ()

+
gboolean
+qmi_indication_wds_event_report_output_get_data_systems
+                               (QmiIndicationWdsEventReportOutput *self,
+                                QmiWdsDataSystemNetworkType *value_data_systems_preferred_network_type,
+                                GArray **value_data_systems_networks,
+                                GError **error);
+

Get the 'Data Systems' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + + + + + + +

self

a QmiIndicationWdsEventReportOutput.

 

value_data_systems_preferred_network_type

a placeholder for the output QmiWdsDataSystemNetworkType, or NULL if not required.

 

value_data_systems_networks

a placeholder for the output GArray of QmiIndicationWdsEventReportOutputDataSystemsNetworksNetwork elements, or NULL if not required. Do not free it, it is owned by self +.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.18

+
+
+
+

qmi_indication_wds_event_report_output_get_evdo_page_monitor_period_change ()

+
gboolean
+qmi_indication_wds_event_report_output_get_evdo_page_monitor_period_change
+                               (QmiIndicationWdsEventReportOutput *self,
+                                guint8 *value_evdo_page_monitor_period_change_period_change,
+                                gboolean *value_evdo_page_monitor_period_change_force_long_sleep,
+                                GError **error);
+

Get the 'EVDO Page Monitor Period Change' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + + + + + + +

self

a QmiIndicationWdsEventReportOutput.

 

value_evdo_page_monitor_period_change_period_change

a placeholder for the output guint8, or NULL if not required.

 

value_evdo_page_monitor_period_change_force_long_sleep

a placeholder for the output gboolean, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.18

+
+
+
+

qmi_indication_wds_event_report_output_get_data_call_type ()

+
gboolean
+qmi_indication_wds_event_report_output_get_data_call_type
+                               (QmiIndicationWdsEventReportOutput *self,
+                                QmiWdsDataCallType *value_data_call_type_data_call_type,
+                                QmiWdsTetheredCallType *value_data_call_type_tethered_call_type,
+                                GError **error);
+

Get the 'Data Call Type' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + + + + + + +

self

a QmiIndicationWdsEventReportOutput.

 

value_data_call_type_data_call_type

a placeholder for the output QmiWdsDataCallType, or NULL if not required.

 

value_data_call_type_tethered_call_type

a placeholder for the output QmiWdsTetheredCallType, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.18

+
+
+
+

qmi_indication_wds_event_report_output_get_preferred_data_system ()

+
gboolean
+qmi_indication_wds_event_report_output_get_preferred_data_system
+                               (QmiIndicationWdsEventReportOutput *self,
+                                QmiWdsDataSystem *value_preferred_data_system,
+                                GError **error);
+

Get the 'Preferred Data System' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiIndicationWdsEventReportOutput.

 

value_preferred_data_system

a placeholder for the output QmiWdsDataSystem, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.18

+
+
+
+

qmi_indication_wds_event_report_output_get_data_call_status ()

+
gboolean
+qmi_indication_wds_event_report_output_get_data_call_status
+                               (QmiIndicationWdsEventReportOutput *self,
+                                QmiWdsDataCallStatus *value_data_call_status,
+                                GError **error);
+

Get the 'Data Call Status' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiIndicationWdsEventReportOutput.

 

value_data_call_status

a placeholder for the output QmiWdsDataCallStatus, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.18

+
+
+
+

qmi_indication_wds_event_report_output_get_current_data_bearer_technology ()

+
gboolean
+qmi_indication_wds_event_report_output_get_current_data_bearer_technology
+                               (QmiIndicationWdsEventReportOutput *self,
+                                QmiWdsNetworkType *value_current_data_bearer_technology_network_type,
+                                guint32 *value_current_data_bearer_technology_rat_mask,
+                                guint32 *value_current_data_bearer_technology_so_mask,
+                                GError **error);
+

Get the 'Current Data Bearer Technology' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + + + + + + + + + + + +

self

a QmiIndicationWdsEventReportOutput.

 

value_current_data_bearer_technology_network_type

a placeholder for the output QmiWdsNetworkType, or NULL if not required.

 

value_current_data_bearer_technology_rat_mask

a placeholder for the output guint32, or NULL if not required.

 

value_current_data_bearer_technology_so_mask

a placeholder for the output guint32, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.18

+
+
+
+

qmi_indication_wds_event_report_output_get_mip_status ()

+
gboolean
+qmi_indication_wds_event_report_output_get_mip_status
+                               (QmiIndicationWdsEventReportOutput *self,
+                                gboolean *value_mip_status,
+                                GError **error);
+

Get the 'MIP Status' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiIndicationWdsEventReportOutput.

 

value_mip_status

a placeholder for the output gboolean, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.18

+
+
+
+

qmi_indication_wds_event_report_output_get_rx_bytes_ok ()

+
gboolean
+qmi_indication_wds_event_report_output_get_rx_bytes_ok
+                               (QmiIndicationWdsEventReportOutput *self,
+                                guint64 *value_rx_bytes_ok,
+                                GError **error);
+

Get the 'Rx Bytes Ok' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiIndicationWdsEventReportOutput.

 

value_rx_bytes_ok

a placeholder for the output guint64, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.18

+
+
+
+

qmi_indication_wds_event_report_output_get_tx_bytes_ok ()

+
gboolean
+qmi_indication_wds_event_report_output_get_tx_bytes_ok
+                               (QmiIndicationWdsEventReportOutput *self,
+                                guint64 *value_tx_bytes_ok,
+                                GError **error);
+

Get the 'Tx Bytes Ok' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiIndicationWdsEventReportOutput.

 

value_tx_bytes_ok

a placeholder for the output guint64, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.18

+
+
+
+

qmi_indication_wds_event_report_output_get_dormancy_status ()

+
gboolean
+qmi_indication_wds_event_report_output_get_dormancy_status
+                               (QmiIndicationWdsEventReportOutput *self,
+                                QmiWdsDormancyStatus *value_dormancy_status,
+                                GError **error);
+

Get the 'Dormancy Status' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiIndicationWdsEventReportOutput.

 

value_dormancy_status

a placeholder for the output QmiWdsDormancyStatus, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.18

+
+
+
+

qmi_indication_wds_event_report_output_get_data_bearer_technology ()

+
gboolean
+qmi_indication_wds_event_report_output_get_data_bearer_technology
+                               (QmiIndicationWdsEventReportOutput *self,
+                                QmiWdsDataBearerTechnology *value_data_bearer_technology,
+                                GError **error);
+

Get the 'Data Bearer Technology' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiIndicationWdsEventReportOutput.

 

value_data_bearer_technology

a placeholder for the output QmiWdsDataBearerTechnology, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.18

+
+
+
+

qmi_indication_wds_event_report_output_get_channel_rates ()

+
gboolean
+qmi_indication_wds_event_report_output_get_channel_rates
+                               (QmiIndicationWdsEventReportOutput *self,
+                                gint32 *value_channel_rates_tx_rate_bps,
+                                gint32 *value_channel_rates_rx_rate_bps,
+                                GError **error);
+

Get the 'Channel Rates' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + + + + + + +

self

a QmiIndicationWdsEventReportOutput.

 

value_channel_rates_tx_rate_bps

a placeholder for the output gint32, or NULL if not required.

 

value_channel_rates_rx_rate_bps

a placeholder for the output gint32, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.18

+
+
+
+

qmi_indication_wds_event_report_output_get_rx_overflows ()

+
gboolean
+qmi_indication_wds_event_report_output_get_rx_overflows
+                               (QmiIndicationWdsEventReportOutput *self,
+                                guint32 *value_rx_overflows,
+                                GError **error);
+

Get the 'Rx Overflows' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiIndicationWdsEventReportOutput.

 

value_rx_overflows

a placeholder for the output guint32, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.18

+
+
+
+

qmi_indication_wds_event_report_output_get_tx_overflows ()

+
gboolean
+qmi_indication_wds_event_report_output_get_tx_overflows
+                               (QmiIndicationWdsEventReportOutput *self,
+                                guint32 *value_tx_overflows,
+                                GError **error);
+

Get the 'Tx Overflows' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiIndicationWdsEventReportOutput.

 

value_tx_overflows

a placeholder for the output guint32, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.18

+
+
+
+

qmi_indication_wds_event_report_output_get_rx_packets_error ()

+
gboolean
+qmi_indication_wds_event_report_output_get_rx_packets_error
+                               (QmiIndicationWdsEventReportOutput *self,
+                                guint32 *value_rx_packets_error,
+                                GError **error);
+

Get the 'Rx Packets Error' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiIndicationWdsEventReportOutput.

 

value_rx_packets_error

a placeholder for the output guint32, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.18

+
+
+
+

qmi_indication_wds_event_report_output_get_tx_packets_error ()

+
gboolean
+qmi_indication_wds_event_report_output_get_tx_packets_error
+                               (QmiIndicationWdsEventReportOutput *self,
+                                guint32 *value_tx_packets_error,
+                                GError **error);
+

Get the 'Tx Packets Error' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiIndicationWdsEventReportOutput.

 

value_tx_packets_error

a placeholder for the output guint32, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.18

+
+
+
+

qmi_indication_wds_event_report_output_get_rx_packets_ok ()

+
gboolean
+qmi_indication_wds_event_report_output_get_rx_packets_ok
+                               (QmiIndicationWdsEventReportOutput *self,
+                                guint32 *value_rx_packets_ok,
+                                GError **error);
+

Get the 'Rx Packets Ok' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiIndicationWdsEventReportOutput.

 

value_rx_packets_ok

a placeholder for the output guint32, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.18

+
+
+
+

qmi_indication_wds_event_report_output_get_tx_packets_ok ()

+
gboolean
+qmi_indication_wds_event_report_output_get_tx_packets_ok
+                               (QmiIndicationWdsEventReportOutput *self,
+                                guint32 *value_tx_packets_ok,
+                                GError **error);
+

Get the 'Tx Packets Ok' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiIndicationWdsEventReportOutput.

 

value_tx_packets_ok

a placeholder for the output guint32, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.18

+
+
+
+

Types and Values

+
+

QmiIndicationWdsEventReportOutput

+
typedef struct _QmiIndicationWdsEventReportOutput QmiIndicationWdsEventReportOutput;
+

The QmiIndicationWdsEventReportOutput structure contains private data and should only be accessed +using the provided API.

+

Since: 1.18

+
+
+
+

QmiIndicationWdsEventReportOutputDataSystemsNetworksNetwork

+
typedef struct {
+    QmiWdsDataSystemNetworkType network_type;
+    guint32 rat_mask;
+    guint32 so_mask;
+} QmiIndicationWdsEventReportOutputDataSystemsNetworksNetwork;
+
+

A QmiIndicationWdsEventReportOutputDataSystemsNetworksNetwork struct.

+
+

Members

+
+++++ + + + + + + + + + + + + + + + + + +

QmiWdsDataSystemNetworkType network_type;

a QmiWdsDataSystemNetworkType.

 

guint32 rat_mask;

a guint32.

 

guint32 so_mask;

a guint32.

 
+
+

Since: 1.18

+
+
+
+ + + \ No newline at end of file diff -Nru libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-WDS-Get-Autoconnect-Settings.html libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-WDS-Get-Autoconnect-Settings.html --- libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-WDS-Get-Autoconnect-Settings.html 2017-03-22 12:28:28.000000000 +0100 +++ libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-WDS-Get-Autoconnect-Settings.html 1970-01-01 01:00:00.000000000 +0100 @@ -1,423 +0,0 @@ - - - - -WDS Get Autoconnect Settings: libqmi-glib Reference Manual - - - - - - - - - - - - - - - - -
-
-
- - -
-

WDS Get Autoconnect Settings

-

WDS Get Autoconnect Settings

-
- -
-

Types and Values

- -
-
-

Object Hierarchy

-
    GBoxed
-    ╰── QmiMessageWdsGetAutoconnectSettingsOutput
-
-
-
-

Description

-
-
-

Functions

-
-

qmi_message_wds_get_autoconnect_settings_output_ref ()

-
QmiMessageWdsGetAutoconnectSettingsOutput *
-qmi_message_wds_get_autoconnect_settings_output_ref
-                               (QmiMessageWdsGetAutoconnectSettingsOutput *self);
-

Atomically increments the reference count of self - by one.

-
-

Parameters

-
----- - - - - - -

self

a QmiMessageWdsGetAutoconnectSettingsOutput.

 
-
-
-

Returns

-

the new reference to self -.

-
-

Since: 1.14

-
-
-
-

qmi_message_wds_get_autoconnect_settings_output_unref ()

-
void
-qmi_message_wds_get_autoconnect_settings_output_unref
-                               (QmiMessageWdsGetAutoconnectSettingsOutput *self);
-

Atomically decrements the reference count of self - by one. -If the reference count drops to 0, self - is completely disposed.

-
-

Parameters

-
----- - - - - - -

self

a QmiMessageWdsGetAutoconnectSettingsOutput.

 
-
-

Since: 1.14

-
-
-
-

qmi_message_wds_get_autoconnect_settings_output_get_result ()

-
gboolean
-qmi_message_wds_get_autoconnect_settings_output_get_result
-                               (QmiMessageWdsGetAutoconnectSettingsOutput *self,
-                                GError **error);
-

Get the result of the QMI operation.

-
-

Parameters

-
----- - - - - - - - - - - - - -

self

a QmiMessageWdsGetAutoconnectSettingsOutput.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the QMI operation succeeded, FALSE if error -is set.

-
-

Since: 1.14

-
-
-
-

qmi_message_wds_get_autoconnect_settings_output_get_status ()

-
gboolean
-qmi_message_wds_get_autoconnect_settings_output_get_status
-                               (QmiMessageWdsGetAutoconnectSettingsOutput *self,
-                                QmiWdsAutoconnectSetting *value_status,
-                                GError **error);
-

Get the 'Status' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessageWdsGetAutoconnectSettingsOutput.

 

value_status

a placeholder for the output QmiWdsAutoconnectSetting, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.14

-
-
-
-

qmi_message_wds_get_autoconnect_settings_output_get_roaming ()

-
gboolean
-qmi_message_wds_get_autoconnect_settings_output_get_roaming
-                               (QmiMessageWdsGetAutoconnectSettingsOutput *self,
-                                QmiWdsAutoconnectSettingRoaming *value_roaming,
-                                GError **error);
-

Get the 'Roaming' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessageWdsGetAutoconnectSettingsOutput.

 

value_roaming

a placeholder for the output QmiWdsAutoconnectSettingRoaming, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.14

-
-
-
-

qmi_client_wds_get_autoconnect_settings ()

-
void
-qmi_client_wds_get_autoconnect_settings
-                               (QmiClientWds *self,
-                                gpointer unused,
-                                guint timeout,
-                                GCancellable *cancellable,
-                                GAsyncReadyCallback callback,
-                                gpointer user_data);
-

Asynchronously sends a Get Autoconnect Settings request to the device.

-

When the operation is finished, callback - will be invoked in the thread-default main loop of the thread you are calling this method from.

-

You can then call qmi_client_wds_get_autoconnect_settings_finish() to get the result of the operation.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

self

a QmiClientWds.

 

unused

NULL. This message doesn't have any input bundle.

 

timeout

maximum time to wait for the method to complete, in seconds.

 

cancellable

a GCancellable or NULL.

 

callback

a GAsyncReadyCallback to call when the request is satisfied.

 

user_data

user data to pass to callback -.

 
-
-

Since: 1.14

-
-
-
-

qmi_client_wds_get_autoconnect_settings_finish ()

-
QmiMessageWdsGetAutoconnectSettingsOutput *
-qmi_client_wds_get_autoconnect_settings_finish
-                               (QmiClientWds *self,
-                                GAsyncResult *res,
-                                GError **error);
-

Finishes an async operation started with qmi_client_wds_get_autoconnect_settings().

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiClientWds.

 

res

the GAsyncResult obtained from the GAsyncReadyCallback passed to qmi_client_wds_get_autoconnect_settings().

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

a QmiMessageWdsGetAutoconnectSettingsOutput, or NULL if error -is set. The returned value should be freed with qmi_message_wds_get_autoconnect_settings_output_unref().

-
-

Since: 1.14

-
-
-
-

Types and Values

-
-

QmiMessageWdsGetAutoconnectSettingsOutput

-
typedef struct _QmiMessageWdsGetAutoconnectSettingsOutput QmiMessageWdsGetAutoconnectSettingsOutput;
-

The QmiMessageWdsGetAutoconnectSettingsOutput structure contains private data and should only be accessed -using the provided API.

-

Since: 1.14

-
-
-
- - - \ No newline at end of file diff -Nru libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-WDS-Get-Autoconnect-Settings-request.html libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-WDS-Get-Autoconnect-Settings-request.html --- libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-WDS-Get-Autoconnect-Settings-request.html 1970-01-01 01:00:00.000000000 +0100 +++ libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-WDS-Get-Autoconnect-Settings-request.html 2019-01-08 15:19:02.000000000 +0100 @@ -0,0 +1,423 @@ + + + + +WDS Get Autoconnect Settings request: libqmi-glib Reference Manual + + + + + + + + + + + + + + + + +
+
+
+ + +
+

WDS Get Autoconnect Settings request

+

WDS Get Autoconnect Settings request

+
+ +
+

Types and Values

+ +
+
+

Object Hierarchy

+
    GBoxed
+    ╰── QmiMessageWdsGetAutoconnectSettingsOutput
+
+
+
+

Description

+
+
+

Functions

+
+

qmi_message_wds_get_autoconnect_settings_output_ref ()

+
QmiMessageWdsGetAutoconnectSettingsOutput *
+qmi_message_wds_get_autoconnect_settings_output_ref
+                               (QmiMessageWdsGetAutoconnectSettingsOutput *self);
+

Atomically increments the reference count of self + by one.

+
+

Parameters

+
+++++ + + + + + +

self

a QmiMessageWdsGetAutoconnectSettingsOutput.

 
+
+
+

Returns

+

the new reference to self +.

+
+

Since: 1.14

+
+
+
+

qmi_message_wds_get_autoconnect_settings_output_unref ()

+
void
+qmi_message_wds_get_autoconnect_settings_output_unref
+                               (QmiMessageWdsGetAutoconnectSettingsOutput *self);
+

Atomically decrements the reference count of self + by one. +If the reference count drops to 0, self + is completely disposed.

+
+

Parameters

+
+++++ + + + + + +

self

a QmiMessageWdsGetAutoconnectSettingsOutput.

 
+
+

Since: 1.14

+
+
+
+

qmi_message_wds_get_autoconnect_settings_output_get_result ()

+
gboolean
+qmi_message_wds_get_autoconnect_settings_output_get_result
+                               (QmiMessageWdsGetAutoconnectSettingsOutput *self,
+                                GError **error);
+

Get the result of the QMI operation.

+
+

Parameters

+
+++++ + + + + + + + + + + + + +

self

a QmiMessageWdsGetAutoconnectSettingsOutput.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the QMI operation succeeded, FALSE if error +is set.

+
+

Since: 1.14

+
+
+
+

qmi_message_wds_get_autoconnect_settings_output_get_status ()

+
gboolean
+qmi_message_wds_get_autoconnect_settings_output_get_status
+                               (QmiMessageWdsGetAutoconnectSettingsOutput *self,
+                                QmiWdsAutoconnectSetting *value_status,
+                                GError **error);
+

Get the 'Status' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageWdsGetAutoconnectSettingsOutput.

 

value_status

a placeholder for the output QmiWdsAutoconnectSetting, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.14

+
+
+
+

qmi_message_wds_get_autoconnect_settings_output_get_roaming ()

+
gboolean
+qmi_message_wds_get_autoconnect_settings_output_get_roaming
+                               (QmiMessageWdsGetAutoconnectSettingsOutput *self,
+                                QmiWdsAutoconnectSettingRoaming *value_roaming,
+                                GError **error);
+

Get the 'Roaming' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageWdsGetAutoconnectSettingsOutput.

 

value_roaming

a placeholder for the output QmiWdsAutoconnectSettingRoaming, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.14

+
+
+
+

qmi_client_wds_get_autoconnect_settings ()

+
void
+qmi_client_wds_get_autoconnect_settings
+                               (QmiClientWds *self,
+                                gpointer unused,
+                                guint timeout,
+                                GCancellable *cancellable,
+                                GAsyncReadyCallback callback,
+                                gpointer user_data);
+

Asynchronously sends a Get Autoconnect Settings request to the device.

+

When the operation is finished, callback + will be invoked in the thread-default main loop of the thread you are calling this method from.

+

You can then call qmi_client_wds_get_autoconnect_settings_finish() to get the result of the operation.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

self

a QmiClientWds.

 

unused

NULL. This message doesn't have any input bundle.

 

timeout

maximum time to wait for the method to complete, in seconds.

 

cancellable

a GCancellable or NULL.

 

callback

a GAsyncReadyCallback to call when the request is satisfied.

 

user_data

user data to pass to callback +.

 
+
+

Since: 1.14

+
+
+
+

qmi_client_wds_get_autoconnect_settings_finish ()

+
QmiMessageWdsGetAutoconnectSettingsOutput *
+qmi_client_wds_get_autoconnect_settings_finish
+                               (QmiClientWds *self,
+                                GAsyncResult *res,
+                                GError **error);
+

Finishes an async operation started with qmi_client_wds_get_autoconnect_settings().

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiClientWds.

 

res

the GAsyncResult obtained from the GAsyncReadyCallback passed to qmi_client_wds_get_autoconnect_settings().

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

a QmiMessageWdsGetAutoconnectSettingsOutput, or NULL if error +is set. The returned value should be freed with qmi_message_wds_get_autoconnect_settings_output_unref().

+
+

Since: 1.14

+
+
+
+

Types and Values

+
+

QmiMessageWdsGetAutoconnectSettingsOutput

+
typedef struct _QmiMessageWdsGetAutoconnectSettingsOutput QmiMessageWdsGetAutoconnectSettingsOutput;
+

The QmiMessageWdsGetAutoconnectSettingsOutput structure contains private data and should only be accessed +using the provided API.

+

Since: 1.14

+
+
+
+ + + \ No newline at end of file diff -Nru libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-WDS-Get-Channel-Rates-request.html libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-WDS-Get-Channel-Rates-request.html --- libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-WDS-Get-Channel-Rates-request.html 1970-01-01 01:00:00.000000000 +0100 +++ libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-WDS-Get-Channel-Rates-request.html 2019-01-08 15:19:02.000000000 +0100 @@ -0,0 +1,389 @@ + + + + +WDS Get Channel Rates request: libqmi-glib Reference Manual + + + + + + + + + + + + + + + + +
+
+
+ + +
+

WDS Get Channel Rates request

+

WDS Get Channel Rates request

+
+ +
+

Types and Values

+ +
+
+

Object Hierarchy

+
    GBoxed
+    ╰── QmiMessageWdsGetChannelRatesOutput
+
+
+
+

Description

+
+
+

Functions

+
+

qmi_message_wds_get_channel_rates_output_ref ()

+
QmiMessageWdsGetChannelRatesOutput *
+qmi_message_wds_get_channel_rates_output_ref
+                               (QmiMessageWdsGetChannelRatesOutput *self);
+

Atomically increments the reference count of self + by one.

+
+

Parameters

+
+++++ + + + + + +

self

a QmiMessageWdsGetChannelRatesOutput.

 
+
+
+

Returns

+

the new reference to self +.

+
+

Since: 1.20

+
+
+
+

qmi_message_wds_get_channel_rates_output_unref ()

+
void
+qmi_message_wds_get_channel_rates_output_unref
+                               (QmiMessageWdsGetChannelRatesOutput *self);
+

Atomically decrements the reference count of self + by one. +If the reference count drops to 0, self + is completely disposed.

+
+

Parameters

+
+++++ + + + + + +

self

a QmiMessageWdsGetChannelRatesOutput.

 
+
+

Since: 1.20

+
+
+
+

qmi_message_wds_get_channel_rates_output_get_channel_rates ()

+
gboolean
+qmi_message_wds_get_channel_rates_output_get_channel_rates
+                               (QmiMessageWdsGetChannelRatesOutput *self,
+                                guint32 *value_channel_rates_channel_tx_rate_bps,
+                                guint32 *value_channel_rates_channel_rx_rate_bps,
+                                guint32 *value_channel_rates_max_channel_tx_rate_bps,
+                                guint32 *value_channel_rates_max_channel_rx_rate_bps,
+                                GError **error);
+

Get the 'Channel Rates' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

self

a QmiMessageWdsGetChannelRatesOutput.

 

value_channel_rates_channel_tx_rate_bps

a placeholder for the output guint32, or NULL if not required.

 

value_channel_rates_channel_rx_rate_bps

a placeholder for the output guint32, or NULL if not required.

 

value_channel_rates_max_channel_tx_rate_bps

a placeholder for the output guint32, or NULL if not required.

 

value_channel_rates_max_channel_rx_rate_bps

a placeholder for the output guint32, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.0

+
+
+
+

qmi_message_wds_get_channel_rates_output_get_result ()

+
gboolean
+qmi_message_wds_get_channel_rates_output_get_result
+                               (QmiMessageWdsGetChannelRatesOutput *self,
+                                GError **error);
+

Get the result of the QMI operation.

+
+

Parameters

+
+++++ + + + + + + + + + + + + +

self

a QmiMessageWdsGetChannelRatesOutput.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the QMI operation succeeded, FALSE if error +is set.

+
+

Since: 1.20

+
+
+
+

qmi_client_wds_get_channel_rates ()

+
void
+qmi_client_wds_get_channel_rates (QmiClientWds *self,
+                                  gpointer unused,
+                                  guint timeout,
+                                  GCancellable *cancellable,
+                                  GAsyncReadyCallback callback,
+                                  gpointer user_data);
+

Asynchronously sends a Get Channel Rates request to the device.

+

When the operation is finished, callback + will be invoked in the thread-default main loop of the thread you are calling this method from.

+

You can then call qmi_client_wds_get_channel_rates_finish() to get the result of the operation.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

self

a QmiClientWds.

 

unused

NULL. This message doesn't have any input bundle.

 

timeout

maximum time to wait for the method to complete, in seconds.

 

cancellable

a GCancellable or NULL.

 

callback

a GAsyncReadyCallback to call when the request is satisfied.

 

user_data

user data to pass to callback +.

 
+
+

Since: 1.20

+
+
+
+

qmi_client_wds_get_channel_rates_finish ()

+
QmiMessageWdsGetChannelRatesOutput *
+qmi_client_wds_get_channel_rates_finish
+                               (QmiClientWds *self,
+                                GAsyncResult *res,
+                                GError **error);
+

Finishes an async operation started with qmi_client_wds_get_channel_rates().

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiClientWds.

 

res

the GAsyncResult obtained from the GAsyncReadyCallback passed to qmi_client_wds_get_channel_rates().

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

a QmiMessageWdsGetChannelRatesOutput, or NULL if error +is set. The returned value should be freed with qmi_message_wds_get_channel_rates_output_unref().

+
+

Since: 1.20

+
+
+
+

Types and Values

+
+

QmiMessageWdsGetChannelRatesOutput

+
typedef struct _QmiMessageWdsGetChannelRatesOutput QmiMessageWdsGetChannelRatesOutput;
+

The QmiMessageWdsGetChannelRatesOutput structure contains private data and should only be accessed +using the provided API.

+

Since: 1.20

+
+
+
+ + + \ No newline at end of file diff -Nru libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-WDS-Get-Current-Data-Bearer-Technology.html libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-WDS-Get-Current-Data-Bearer-Technology.html --- libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-WDS-Get-Current-Data-Bearer-Technology.html 2017-03-22 12:28:29.000000000 +0100 +++ libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-WDS-Get-Current-Data-Bearer-Technology.html 1970-01-01 01:00:00.000000000 +0100 @@ -1,447 +0,0 @@ - - - - -WDS Get Current Data Bearer Technology: libqmi-glib Reference Manual - - - - - - - - - - - - - - - - -
-
-
- - -
-

WDS Get Current Data Bearer Technology

-

WDS Get Current Data Bearer Technology

-
- -
-

Types and Values

- -
-
-

Object Hierarchy

-
    GBoxed
-    ╰── QmiMessageWdsGetCurrentDataBearerTechnologyOutput
-
-
-
-

Description

-
-
-

Functions

-
-

qmi_message_wds_get_current_data_bearer_technology_output_ref ()

-
QmiMessageWdsGetCurrentDataBearerTechnologyOutput *
-qmi_message_wds_get_current_data_bearer_technology_output_ref
-                               (QmiMessageWdsGetCurrentDataBearerTechnologyOutput *self);
-

Atomically increments the reference count of self - by one.

-
-

Parameters

- -
-
-

Returns

-

the new reference to self -.

-
-

Since: 1.0

-
-
-
-

qmi_message_wds_get_current_data_bearer_technology_output_unref ()

-
void
-qmi_message_wds_get_current_data_bearer_technology_output_unref
-                               (QmiMessageWdsGetCurrentDataBearerTechnologyOutput *self);
-

Atomically decrements the reference count of self - by one. -If the reference count drops to 0, self - is completely disposed.

-
-

Parameters

- -
-

Since: 1.0

-
-
-
-

qmi_message_wds_get_current_data_bearer_technology_output_get_last ()

-
gboolean
-qmi_message_wds_get_current_data_bearer_technology_output_get_last
-                               (QmiMessageWdsGetCurrentDataBearerTechnologyOutput *self,
-                                QmiWdsNetworkType *value_last_network_type,
-                                guint32 *value_last_rat_mask,
-                                guint32 *value_last_so_mask,
-                                GError **error);
-

Get the 'Last' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - - - - - - - - - - - -

self

a QmiMessageWdsGetCurrentDataBearerTechnologyOutput.

 

value_last_network_type

a placeholder for the output QmiWdsNetworkType, or NULL if not required.

 

value_last_rat_mask

a placeholder for the output guint32, or NULL if not required.

 

value_last_so_mask

a placeholder for the output guint32, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.0

-
-
-
-

qmi_message_wds_get_current_data_bearer_technology_output_get_result ()

-
gboolean
-qmi_message_wds_get_current_data_bearer_technology_output_get_result
-                               (QmiMessageWdsGetCurrentDataBearerTechnologyOutput *self,
-                                GError **error);
-

Get the result of the QMI operation.

-
-

Parameters

-
----- - - - - - - - - - - - - -

self

a QmiMessageWdsGetCurrentDataBearerTechnologyOutput.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the QMI operation succeeded, FALSE if error -is set.

-
-

Since: 1.0

-
-
-
-

qmi_message_wds_get_current_data_bearer_technology_output_get_current ()

-
gboolean
-qmi_message_wds_get_current_data_bearer_technology_output_get_current
-                               (QmiMessageWdsGetCurrentDataBearerTechnologyOutput *self,
-                                QmiWdsNetworkType *value_current_network_type,
-                                guint32 *value_current_rat_mask,
-                                guint32 *value_current_so_mask,
-                                GError **error);
-

Get the 'Current' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - - - - - - - - - - - -

self

a QmiMessageWdsGetCurrentDataBearerTechnologyOutput.

 

value_current_network_type

a placeholder for the output QmiWdsNetworkType, or NULL if not required.

 

value_current_rat_mask

a placeholder for the output guint32, or NULL if not required.

 

value_current_so_mask

a placeholder for the output guint32, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.0

-
-
-
-

qmi_client_wds_get_current_data_bearer_technology ()

-
void
-qmi_client_wds_get_current_data_bearer_technology
-                               (QmiClientWds *self,
-                                gpointer unused,
-                                guint timeout,
-                                GCancellable *cancellable,
-                                GAsyncReadyCallback callback,
-                                gpointer user_data);
-

Asynchronously sends a Get Current Data Bearer Technology request to the device.

-

When the operation is finished, callback - will be invoked in the thread-default main loop of the thread you are calling this method from.

-

You can then call qmi_client_wds_get_current_data_bearer_technology_finish() to get the result of the operation.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

self

a QmiClientWds.

 

unused

NULL. This message doesn't have any input bundle.

 

timeout

maximum time to wait for the method to complete, in seconds.

 

cancellable

a GCancellable or NULL.

 

callback

a GAsyncReadyCallback to call when the request is satisfied.

 

user_data

user data to pass to callback -.

 
-
-

Since: 1.0

-
-
-
-

qmi_client_wds_get_current_data_bearer_technology_finish ()

-
QmiMessageWdsGetCurrentDataBearerTechnologyOutput *
-qmi_client_wds_get_current_data_bearer_technology_finish
-                               (QmiClientWds *self,
-                                GAsyncResult *res,
-                                GError **error);
-

Finishes an async operation started with qmi_client_wds_get_current_data_bearer_technology().

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiClientWds.

 

res

the GAsyncResult obtained from the GAsyncReadyCallback passed to qmi_client_wds_get_current_data_bearer_technology().

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

a QmiMessageWdsGetCurrentDataBearerTechnologyOutput, or NULL if error -is set. The returned value should be freed with qmi_message_wds_get_current_data_bearer_technology_output_unref().

-
-

Since: 1.0

-
-
-
-

Types and Values

-
-

QmiMessageWdsGetCurrentDataBearerTechnologyOutput

-
typedef struct _QmiMessageWdsGetCurrentDataBearerTechnologyOutput QmiMessageWdsGetCurrentDataBearerTechnologyOutput;
-

The QmiMessageWdsGetCurrentDataBearerTechnologyOutput structure contains private data and should only be accessed -using the provided API.

-

Since: 1.0

-
-
-
- - - \ No newline at end of file diff -Nru libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-WDS-Get-Current-Data-Bearer-Technology-request.html libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-WDS-Get-Current-Data-Bearer-Technology-request.html --- libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-WDS-Get-Current-Data-Bearer-Technology-request.html 1970-01-01 01:00:00.000000000 +0100 +++ libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-WDS-Get-Current-Data-Bearer-Technology-request.html 2019-01-08 15:19:02.000000000 +0100 @@ -0,0 +1,447 @@ + + + + +WDS Get Current Data Bearer Technology request: libqmi-glib Reference Manual + + + + + + + + + + + + + + + + +
+
+
+ + +
+

WDS Get Current Data Bearer Technology request

+

WDS Get Current Data Bearer Technology request

+
+ +
+

Types and Values

+ +
+
+

Object Hierarchy

+
    GBoxed
+    ╰── QmiMessageWdsGetCurrentDataBearerTechnologyOutput
+
+
+
+

Description

+
+
+

Functions

+
+

qmi_message_wds_get_current_data_bearer_technology_output_ref ()

+
QmiMessageWdsGetCurrentDataBearerTechnologyOutput *
+qmi_message_wds_get_current_data_bearer_technology_output_ref
+                               (QmiMessageWdsGetCurrentDataBearerTechnologyOutput *self);
+

Atomically increments the reference count of self + by one.

+
+

Parameters

+ +
+
+

Returns

+

the new reference to self +.

+
+

Since: 1.0

+
+
+
+

qmi_message_wds_get_current_data_bearer_technology_output_unref ()

+
void
+qmi_message_wds_get_current_data_bearer_technology_output_unref
+                               (QmiMessageWdsGetCurrentDataBearerTechnologyOutput *self);
+

Atomically decrements the reference count of self + by one. +If the reference count drops to 0, self + is completely disposed.

+
+

Parameters

+ +
+

Since: 1.0

+
+
+
+

qmi_message_wds_get_current_data_bearer_technology_output_get_last ()

+
gboolean
+qmi_message_wds_get_current_data_bearer_technology_output_get_last
+                               (QmiMessageWdsGetCurrentDataBearerTechnologyOutput *self,
+                                QmiWdsNetworkType *value_last_network_type,
+                                guint32 *value_last_rat_mask,
+                                guint32 *value_last_so_mask,
+                                GError **error);
+

Get the 'Last' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + + + + + + + + + + + +

self

a QmiMessageWdsGetCurrentDataBearerTechnologyOutput.

 

value_last_network_type

a placeholder for the output QmiWdsNetworkType, or NULL if not required.

 

value_last_rat_mask

a placeholder for the output guint32, or NULL if not required.

 

value_last_so_mask

a placeholder for the output guint32, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.0

+
+
+
+

qmi_message_wds_get_current_data_bearer_technology_output_get_result ()

+
gboolean
+qmi_message_wds_get_current_data_bearer_technology_output_get_result
+                               (QmiMessageWdsGetCurrentDataBearerTechnologyOutput *self,
+                                GError **error);
+

Get the result of the QMI operation.

+
+

Parameters

+
+++++ + + + + + + + + + + + + +

self

a QmiMessageWdsGetCurrentDataBearerTechnologyOutput.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the QMI operation succeeded, FALSE if error +is set.

+
+

Since: 1.0

+
+
+
+

qmi_message_wds_get_current_data_bearer_technology_output_get_current ()

+
gboolean
+qmi_message_wds_get_current_data_bearer_technology_output_get_current
+                               (QmiMessageWdsGetCurrentDataBearerTechnologyOutput *self,
+                                QmiWdsNetworkType *value_current_network_type,
+                                guint32 *value_current_rat_mask,
+                                guint32 *value_current_so_mask,
+                                GError **error);
+

Get the 'Current' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + + + + + + + + + + + +

self

a QmiMessageWdsGetCurrentDataBearerTechnologyOutput.

 

value_current_network_type

a placeholder for the output QmiWdsNetworkType, or NULL if not required.

 

value_current_rat_mask

a placeholder for the output guint32, or NULL if not required.

 

value_current_so_mask

a placeholder for the output guint32, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.0

+
+
+
+

qmi_client_wds_get_current_data_bearer_technology ()

+
void
+qmi_client_wds_get_current_data_bearer_technology
+                               (QmiClientWds *self,
+                                gpointer unused,
+                                guint timeout,
+                                GCancellable *cancellable,
+                                GAsyncReadyCallback callback,
+                                gpointer user_data);
+

Asynchronously sends a Get Current Data Bearer Technology request to the device.

+

When the operation is finished, callback + will be invoked in the thread-default main loop of the thread you are calling this method from.

+

You can then call qmi_client_wds_get_current_data_bearer_technology_finish() to get the result of the operation.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

self

a QmiClientWds.

 

unused

NULL. This message doesn't have any input bundle.

 

timeout

maximum time to wait for the method to complete, in seconds.

 

cancellable

a GCancellable or NULL.

 

callback

a GAsyncReadyCallback to call when the request is satisfied.

 

user_data

user data to pass to callback +.

 
+
+

Since: 1.0

+
+
+
+

qmi_client_wds_get_current_data_bearer_technology_finish ()

+
QmiMessageWdsGetCurrentDataBearerTechnologyOutput *
+qmi_client_wds_get_current_data_bearer_technology_finish
+                               (QmiClientWds *self,
+                                GAsyncResult *res,
+                                GError **error);
+

Finishes an async operation started with qmi_client_wds_get_current_data_bearer_technology().

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiClientWds.

 

res

the GAsyncResult obtained from the GAsyncReadyCallback passed to qmi_client_wds_get_current_data_bearer_technology().

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

a QmiMessageWdsGetCurrentDataBearerTechnologyOutput, or NULL if error +is set. The returned value should be freed with qmi_message_wds_get_current_data_bearer_technology_output_unref().

+
+

Since: 1.0

+
+
+
+

Types and Values

+
+

QmiMessageWdsGetCurrentDataBearerTechnologyOutput

+
typedef struct _QmiMessageWdsGetCurrentDataBearerTechnologyOutput QmiMessageWdsGetCurrentDataBearerTechnologyOutput;
+

The QmiMessageWdsGetCurrentDataBearerTechnologyOutput structure contains private data and should only be accessed +using the provided API.

+

Since: 1.0

+
+
+
+ + + \ No newline at end of file diff -Nru libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-WDS-Get-Current-Settings.html libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-WDS-Get-Current-Settings.html --- libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-WDS-Get-Current-Settings.html 2017-03-22 12:28:29.000000000 +0100 +++ libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-WDS-Get-Current-Settings.html 1970-01-01 01:00:00.000000000 +0100 @@ -1,1921 +0,0 @@ - - - - -WDS Get Current Settings: libqmi-glib Reference Manual - - - - - - - - - - - - - - - - -
-
-
- - -
-

WDS Get Current Settings

-

WDS Get Current Settings

-
-
-

Functions

-
---- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
-QmiMessageWdsGetCurrentSettingsInput * - -qmi_message_wds_get_current_settings_input_new () -
-QmiMessageWdsGetCurrentSettingsInput * - -qmi_message_wds_get_current_settings_input_ref () -
-void - -qmi_message_wds_get_current_settings_input_unref () -
-gboolean - -qmi_message_wds_get_current_settings_input_get_requested_settings () -
-gboolean - -qmi_message_wds_get_current_settings_input_set_requested_settings () -
-QmiMessageWdsGetCurrentSettingsOutput * - -qmi_message_wds_get_current_settings_output_ref () -
-void - -qmi_message_wds_get_current_settings_output_unref () -
-gboolean - -qmi_message_wds_get_current_settings_output_get_result () -
-gboolean - -qmi_message_wds_get_current_settings_output_get_profile_name () -
-gboolean - -qmi_message_wds_get_current_settings_output_get_pdp_type () -
-gboolean - -qmi_message_wds_get_current_settings_output_get_apn_name () -
-gboolean - -qmi_message_wds_get_current_settings_output_get_primary_ipv4_dns_address () -
-gboolean - -qmi_message_wds_get_current_settings_output_get_secondary_ipv4_dns_address () -
-gboolean - -qmi_message_wds_get_current_settings_output_get_umts_granted_qos () -
-gboolean - -qmi_message_wds_get_current_settings_output_get_gprs_granted_qos () -
-gboolean - -qmi_message_wds_get_current_settings_output_get_username () -
-gboolean - -qmi_message_wds_get_current_settings_output_get_authentication () -
-gboolean - -qmi_message_wds_get_current_settings_output_get_ipv4_address () -
-gboolean - -qmi_message_wds_get_current_settings_output_get_profile_id () -
-gboolean - -qmi_message_wds_get_current_settings_output_get_ipv4_gateway_address () -
-gboolean - -qmi_message_wds_get_current_settings_output_get_ipv4_gateway_subnet_mask () -
-gboolean - -qmi_message_wds_get_current_settings_output_get_pcscf_address_using_pco () -
-gboolean - -qmi_message_wds_get_current_settings_output_get_pcscf_server_address_list () -
-gboolean - -qmi_message_wds_get_current_settings_output_get_pcscf_domain_name_list () -
-gboolean - -qmi_message_wds_get_current_settings_output_get_ipv6_address () -
-gboolean - -qmi_message_wds_get_current_settings_output_get_ipv6_gateway_address () -
-gboolean - -qmi_message_wds_get_current_settings_output_get_ipv6_primary_dns_address () -
-gboolean - -qmi_message_wds_get_current_settings_output_get_ipv6_secondary_dns_address () -
-gboolean - -qmi_message_wds_get_current_settings_output_get_mtu () -
-gboolean - -qmi_message_wds_get_current_settings_output_get_domain_name_list () -
-gboolean - -qmi_message_wds_get_current_settings_output_get_ip_family () -
-gboolean - -qmi_message_wds_get_current_settings_output_get_imcn_flag () -
-gboolean - -qmi_message_wds_get_current_settings_output_get_extended_technology_preference () -
-void - -qmi_client_wds_get_current_settings () -
-QmiMessageWdsGetCurrentSettingsOutput * - -qmi_client_wds_get_current_settings_finish () -
-
-
-

Types and Values

- -
-
-

Object Hierarchy

-
    GBoxed
-    ├── QmiMessageWdsGetCurrentSettingsInput
-    ╰── QmiMessageWdsGetCurrentSettingsOutput
-
-
-
-

Description

-
-
-

Functions

-
-

qmi_message_wds_get_current_settings_input_new ()

-
QmiMessageWdsGetCurrentSettingsInput *
-qmi_message_wds_get_current_settings_input_new
-                               (void);
-

Allocates a new QmiMessageWdsGetCurrentSettingsInput.

-
-

Returns

-

the newly created QmiMessageWdsGetCurrentSettingsInput. The returned value should be freed with qmi_message_wds_get_current_settings_input_unref().

-
-

Since: 1.0

-
-
-
-

qmi_message_wds_get_current_settings_input_ref ()

-
QmiMessageWdsGetCurrentSettingsInput *
-qmi_message_wds_get_current_settings_input_ref
-                               (QmiMessageWdsGetCurrentSettingsInput *self);
-

Atomically increments the reference count of self - by one.

-
-

Parameters

-
----- - - - - - -

self

a QmiMessageWdsGetCurrentSettingsInput.

 
-
-
-

Returns

-

the new reference to self -.

-
-

Since: 1.0

-
-
-
-

qmi_message_wds_get_current_settings_input_unref ()

-
void
-qmi_message_wds_get_current_settings_input_unref
-                               (QmiMessageWdsGetCurrentSettingsInput *self);
-

Atomically decrements the reference count of self - by one. -If the reference count drops to 0, self - is completely disposed.

-
-

Parameters

-
----- - - - - - -

self

a QmiMessageWdsGetCurrentSettingsInput.

 
-
-

Since: 1.0

-
-
-
-

qmi_message_wds_get_current_settings_input_get_requested_settings ()

-
gboolean
-qmi_message_wds_get_current_settings_input_get_requested_settings
-                               (QmiMessageWdsGetCurrentSettingsInput *self,
-                                QmiWdsGetCurrentSettingsRequestedSettings *value_requested_settings,
-                                GError **error);
-

Get the 'Requested Settings' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessageWdsGetCurrentSettingsInput.

 

value_requested_settings

a placeholder for the output QmiWdsGetCurrentSettingsRequestedSettings, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.0

-
-
-
-

qmi_message_wds_get_current_settings_input_set_requested_settings ()

-
gboolean
-qmi_message_wds_get_current_settings_input_set_requested_settings
-                               (QmiMessageWdsGetCurrentSettingsInput *self,
-                                QmiWdsGetCurrentSettingsRequestedSettings value_requested_settings,
-                                GError **error);
-

Set the 'Requested Settings' field in the message.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessageWdsGetCurrentSettingsInput.

 

value_requested_settings

a QmiWdsGetCurrentSettingsRequestedSettings.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if value -was successfully set, FALSE otherwise.

-
-

Since: 1.0

-
-
-
-

qmi_message_wds_get_current_settings_output_ref ()

-
QmiMessageWdsGetCurrentSettingsOutput *
-qmi_message_wds_get_current_settings_output_ref
-                               (QmiMessageWdsGetCurrentSettingsOutput *self);
-

Atomically increments the reference count of self - by one.

-
-

Parameters

-
----- - - - - - -

self

a QmiMessageWdsGetCurrentSettingsOutput.

 
-
-
-

Returns

-

the new reference to self -.

-
-

Since: 1.0

-
-
-
-

qmi_message_wds_get_current_settings_output_unref ()

-
void
-qmi_message_wds_get_current_settings_output_unref
-                               (QmiMessageWdsGetCurrentSettingsOutput *self);
-

Atomically decrements the reference count of self - by one. -If the reference count drops to 0, self - is completely disposed.

-
-

Parameters

-
----- - - - - - -

self

a QmiMessageWdsGetCurrentSettingsOutput.

 
-
-

Since: 1.0

-
-
-
-

qmi_message_wds_get_current_settings_output_get_result ()

-
gboolean
-qmi_message_wds_get_current_settings_output_get_result
-                               (QmiMessageWdsGetCurrentSettingsOutput *self,
-                                GError **error);
-

Get the result of the QMI operation.

-
-

Parameters

-
----- - - - - - - - - - - - - -

self

a QmiMessageWdsGetCurrentSettingsOutput.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the QMI operation succeeded, FALSE if error -is set.

-
-

Since: 1.0

-
-
-
-

qmi_message_wds_get_current_settings_output_get_profile_name ()

-
gboolean
-qmi_message_wds_get_current_settings_output_get_profile_name
-                               (QmiMessageWdsGetCurrentSettingsOutput *self,
-                                const gchar **value_profile_name,
-                                GError **error);
-

Get the 'Profile Name' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessageWdsGetCurrentSettingsOutput.

 

value_profile_name

a placeholder for the output constant string, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.0

-
-
-
-

qmi_message_wds_get_current_settings_output_get_pdp_type ()

-
gboolean
-qmi_message_wds_get_current_settings_output_get_pdp_type
-                               (QmiMessageWdsGetCurrentSettingsOutput *self,
-                                QmiWdsPdpType *value_pdp_type,
-                                GError **error);
-

Get the 'PDP Type' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessageWdsGetCurrentSettingsOutput.

 

value_pdp_type

a placeholder for the output QmiWdsPdpType, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.0

-
-
-
-

qmi_message_wds_get_current_settings_output_get_apn_name ()

-
gboolean
-qmi_message_wds_get_current_settings_output_get_apn_name
-                               (QmiMessageWdsGetCurrentSettingsOutput *self,
-                                const gchar **value_apn_name,
-                                GError **error);
-

Get the 'APN Name' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessageWdsGetCurrentSettingsOutput.

 

value_apn_name

a placeholder for the output constant string, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.0

-
-
-
-

qmi_message_wds_get_current_settings_output_get_primary_ipv4_dns_address ()

-
gboolean
-qmi_message_wds_get_current_settings_output_get_primary_ipv4_dns_address
-                               (QmiMessageWdsGetCurrentSettingsOutput *self,
-                                guint32 *value_primary_ipv4_dns_address,
-                                GError **error);
-

Get the 'Primary IPv4 DNS Address' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessageWdsGetCurrentSettingsOutput.

 

value_primary_ipv4_dns_address

a placeholder for the output guint32, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.0

-
-
-
-

qmi_message_wds_get_current_settings_output_get_secondary_ipv4_dns_address ()

-
gboolean
-qmi_message_wds_get_current_settings_output_get_secondary_ipv4_dns_address
-                               (QmiMessageWdsGetCurrentSettingsOutput *self,
-                                guint32 *value_secondary_ipv4_dns_address,
-                                GError **error);
-

Get the 'Secondary IPv4 DNS Address' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessageWdsGetCurrentSettingsOutput.

 

value_secondary_ipv4_dns_address

a placeholder for the output guint32, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.0

-
-
-
-

qmi_message_wds_get_current_settings_output_get_umts_granted_qos ()

-
gboolean
-qmi_message_wds_get_current_settings_output_get_umts_granted_qos
-                               (QmiMessageWdsGetCurrentSettingsOutput *self,
-                                QmiWdsTrafficClass *value_umts_granted_qos_traffic_class,
-                                guint32 *value_umts_granted_qos_max_uplink_bitrate,
-                                guint32 *value_umts_granted_qos_max_downlink_bitrate,
-                                guint32 *value_umts_granted_qos_guaranteed_uplink_bitrate,
-                                guint32 *value_umts_granted_qos_guaranteed_downlink_bitrate,
-                                QmiWdsDeliveryOrder *value_umts_granted_qos_qos_delivery_order,
-                                guint32 *value_umts_granted_qos_maximum_sdu_size,
-                                QmiWdsSduErrorRatio *value_umts_granted_qos_sdu_error_ratio,
-                                QmiWdsSduResidualBitErrorRatio *value_umts_granted_qos_residual_bit_error_ratio,
-                                QmiWdsSduErroneousDelivery *value_umts_granted_qos_delivery_erroneous_sdu,
-                                guint32 *value_umts_granted_qos_transfer_delay,
-                                guint32 *value_umts_granted_qos_traffic_handling_priority,
-                                GError **error);
-

Get the 'UMTS Granted QoS' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

self

a QmiMessageWdsGetCurrentSettingsOutput.

 

value_umts_granted_qos_traffic_class

a placeholder for the output QmiWdsTrafficClass, or NULL if not required.

 

value_umts_granted_qos_max_uplink_bitrate

a placeholder for the output guint32, or NULL if not required.

 

value_umts_granted_qos_max_downlink_bitrate

a placeholder for the output guint32, or NULL if not required.

 

value_umts_granted_qos_guaranteed_uplink_bitrate

a placeholder for the output guint32, or NULL if not required.

 

value_umts_granted_qos_guaranteed_downlink_bitrate

a placeholder for the output guint32, or NULL if not required.

 

value_umts_granted_qos_qos_delivery_order

a placeholder for the output QmiWdsDeliveryOrder, or NULL if not required.

 

value_umts_granted_qos_maximum_sdu_size

a placeholder for the output guint32, or NULL if not required.

 

value_umts_granted_qos_sdu_error_ratio

a placeholder for the output QmiWdsSduErrorRatio, or NULL if not required.

 

value_umts_granted_qos_residual_bit_error_ratio

a placeholder for the output QmiWdsSduResidualBitErrorRatio, or NULL if not required.

 

value_umts_granted_qos_delivery_erroneous_sdu

a placeholder for the output QmiWdsSduErroneousDelivery, or NULL if not required.

 

value_umts_granted_qos_transfer_delay

a placeholder for the output guint32, or NULL if not required.

 

value_umts_granted_qos_traffic_handling_priority

a placeholder for the output guint32, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.14

-
-
-
-

qmi_message_wds_get_current_settings_output_get_gprs_granted_qos ()

-
gboolean
-qmi_message_wds_get_current_settings_output_get_gprs_granted_qos
-                               (QmiMessageWdsGetCurrentSettingsOutput *self,
-                                guint32 *value_gprs_granted_qos_precedence_class,
-                                guint32 *value_gprs_granted_qos_delay_class,
-                                guint32 *value_gprs_granted_qos_reliability_class,
-                                guint32 *value_gprs_granted_qos_peak_throughput_class,
-                                guint32 *value_gprs_granted_qos_mean_throughput_class,
-                                GError **error);
-

Get the 'GPRS Granted QoS' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

self

a QmiMessageWdsGetCurrentSettingsOutput.

 

value_gprs_granted_qos_precedence_class

a placeholder for the output guint32, or NULL if not required.

 

value_gprs_granted_qos_delay_class

a placeholder for the output guint32, or NULL if not required.

 

value_gprs_granted_qos_reliability_class

a placeholder for the output guint32, or NULL if not required.

 

value_gprs_granted_qos_peak_throughput_class

a placeholder for the output guint32, or NULL if not required.

 

value_gprs_granted_qos_mean_throughput_class

a placeholder for the output guint32, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.0

-
-
-
-

qmi_message_wds_get_current_settings_output_get_username ()

-
gboolean
-qmi_message_wds_get_current_settings_output_get_username
-                               (QmiMessageWdsGetCurrentSettingsOutput *self,
-                                const gchar **value_username,
-                                GError **error);
-

Get the 'Username' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessageWdsGetCurrentSettingsOutput.

 

value_username

a placeholder for the output constant string, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.0

-
-
-
-

qmi_message_wds_get_current_settings_output_get_authentication ()

-
gboolean
-qmi_message_wds_get_current_settings_output_get_authentication
-                               (QmiMessageWdsGetCurrentSettingsOutput *self,
-                                QmiWdsAuthentication *value_authentication,
-                                GError **error);
-

Get the 'Authentication' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessageWdsGetCurrentSettingsOutput.

 

value_authentication

a placeholder for the output QmiWdsAuthentication, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.0

-
-
-
-

qmi_message_wds_get_current_settings_output_get_ipv4_address ()

-
gboolean
-qmi_message_wds_get_current_settings_output_get_ipv4_address
-                               (QmiMessageWdsGetCurrentSettingsOutput *self,
-                                guint32 *value_ipv4_address,
-                                GError **error);
-

Get the 'IPv4 Address' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessageWdsGetCurrentSettingsOutput.

 

value_ipv4_address

a placeholder for the output guint32, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.0

-
-
-
-

qmi_message_wds_get_current_settings_output_get_profile_id ()

-
gboolean
-qmi_message_wds_get_current_settings_output_get_profile_id
-                               (QmiMessageWdsGetCurrentSettingsOutput *self,
-                                QmiWdsProfileType *value_profile_id_profile_type,
-                                guint8 *value_profile_id_profile_index,
-                                GError **error);
-

Get the 'Profile ID' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - - - - - - -

self

a QmiMessageWdsGetCurrentSettingsOutput.

 

value_profile_id_profile_type

a placeholder for the output QmiWdsProfileType, or NULL if not required.

 

value_profile_id_profile_index

a placeholder for the output guint8, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.0

-
-
-
-

qmi_message_wds_get_current_settings_output_get_ipv4_gateway_address ()

-
gboolean
-qmi_message_wds_get_current_settings_output_get_ipv4_gateway_address
-                               (QmiMessageWdsGetCurrentSettingsOutput *self,
-                                guint32 *value_ipv4_gateway_address,
-                                GError **error);
-

Get the 'IPv4 Gateway Address' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessageWdsGetCurrentSettingsOutput.

 

value_ipv4_gateway_address

a placeholder for the output guint32, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.0

-
-
-
-

qmi_message_wds_get_current_settings_output_get_ipv4_gateway_subnet_mask ()

-
gboolean
-qmi_message_wds_get_current_settings_output_get_ipv4_gateway_subnet_mask
-                               (QmiMessageWdsGetCurrentSettingsOutput *self,
-                                guint32 *value_ipv4_gateway_subnet_mask,
-                                GError **error);
-

Get the 'IPv4 Gateway Subnet Mask' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessageWdsGetCurrentSettingsOutput.

 

value_ipv4_gateway_subnet_mask

a placeholder for the output guint32, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.0

-
-
-
-

qmi_message_wds_get_current_settings_output_get_pcscf_address_using_pco ()

-
gboolean
-qmi_message_wds_get_current_settings_output_get_pcscf_address_using_pco
-                               (QmiMessageWdsGetCurrentSettingsOutput *self,
-                                guint8 *value_pcscf_address_using_pco,
-                                GError **error);
-

Get the 'PCSCF Address Using PCO' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessageWdsGetCurrentSettingsOutput.

 

value_pcscf_address_using_pco

a placeholder for the output guint8, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.0

-
-
-
-

qmi_message_wds_get_current_settings_output_get_pcscf_server_address_list ()

-
gboolean
-qmi_message_wds_get_current_settings_output_get_pcscf_server_address_list
-                               (QmiMessageWdsGetCurrentSettingsOutput *self,
-                                GArray **value_pcscf_server_address_list,
-                                GError **error);
-

Get the 'PCSCF Server Address List' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessageWdsGetCurrentSettingsOutput.

 

value_pcscf_server_address_list

a placeholder for the output GArray of guint32 elements, or NULL if not required. Do not free it, it is owned by self -.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.0

-
-
-
-

qmi_message_wds_get_current_settings_output_get_pcscf_domain_name_list ()

-
gboolean
-qmi_message_wds_get_current_settings_output_get_pcscf_domain_name_list
-                               (QmiMessageWdsGetCurrentSettingsOutput *self,
-                                GArray **value_pcscf_domain_name_list,
-                                GError **error);
-

Get the 'PCSCF Domain Name List' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessageWdsGetCurrentSettingsOutput.

 

value_pcscf_domain_name_list

a placeholder for the output GArray of gchar * elements, or NULL if not required. Do not free it, it is owned by self -.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.0

-
-
-
-

qmi_message_wds_get_current_settings_output_get_ipv6_address ()

-
gboolean
-qmi_message_wds_get_current_settings_output_get_ipv6_address
-                               (QmiMessageWdsGetCurrentSettingsOutput *self,
-                                GArray **value_ipv6_address_address,
-                                guint8 *value_ipv6_address_prefix_length,
-                                GError **error);
-

Get the 'IPv6 Address' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - - - - - - -

self

a QmiMessageWdsGetCurrentSettingsOutput.

 

value_ipv6_address_address

a placeholder for the output GArray of guint16 elements, or NULL if not required. Do not free it, it is owned by self -.

 

value_ipv6_address_prefix_length

a placeholder for the output guint8, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.0

-
-
-
-

qmi_message_wds_get_current_settings_output_get_ipv6_gateway_address ()

-
gboolean
-qmi_message_wds_get_current_settings_output_get_ipv6_gateway_address
-                               (QmiMessageWdsGetCurrentSettingsOutput *self,
-                                GArray **value_ipv6_gateway_address_address,
-                                guint8 *value_ipv6_gateway_address_prefix_length,
-                                GError **error);
-

Get the 'IPv6 Gateway Address' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - - - - - - -

self

a QmiMessageWdsGetCurrentSettingsOutput.

 

value_ipv6_gateway_address_address

a placeholder for the output GArray of guint16 elements, or NULL if not required. Do not free it, it is owned by self -.

 

value_ipv6_gateway_address_prefix_length

a placeholder for the output guint8, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.0

-
-
-
-

qmi_message_wds_get_current_settings_output_get_ipv6_primary_dns_address ()

-
gboolean
-qmi_message_wds_get_current_settings_output_get_ipv6_primary_dns_address
-                               (QmiMessageWdsGetCurrentSettingsOutput *self,
-                                GArray **value_ipv6_primary_dns_address,
-                                GError **error);
-

Get the 'IPv6 Primary DNS Address' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessageWdsGetCurrentSettingsOutput.

 

value_ipv6_primary_dns_address

a placeholder for the output GArray of guint16 elements, or NULL if not required. Do not free it, it is owned by self -.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.0

-
-
-
-

qmi_message_wds_get_current_settings_output_get_ipv6_secondary_dns_address ()

-
gboolean
-qmi_message_wds_get_current_settings_output_get_ipv6_secondary_dns_address
-                               (QmiMessageWdsGetCurrentSettingsOutput *self,
-                                GArray **value_ipv6_secondary_dns_address,
-                                GError **error);
-

Get the 'IPv6 Secondary DNS Address' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessageWdsGetCurrentSettingsOutput.

 

value_ipv6_secondary_dns_address

a placeholder for the output GArray of guint16 elements, or NULL if not required. Do not free it, it is owned by self -.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.0

-
-
-
-

qmi_message_wds_get_current_settings_output_get_mtu ()

-
gboolean
-qmi_message_wds_get_current_settings_output_get_mtu
-                               (QmiMessageWdsGetCurrentSettingsOutput *self,
-                                guint32 *value_mtu,
-                                GError **error);
-

Get the 'MTU' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessageWdsGetCurrentSettingsOutput.

 

value_mtu

a placeholder for the output guint32, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.0

-
-
-
-

qmi_message_wds_get_current_settings_output_get_domain_name_list ()

-
gboolean
-qmi_message_wds_get_current_settings_output_get_domain_name_list
-                               (QmiMessageWdsGetCurrentSettingsOutput *self,
-                                GArray **value_domain_name_list,
-                                GError **error);
-

Get the 'Domain Name List' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessageWdsGetCurrentSettingsOutput.

 

value_domain_name_list

a placeholder for the output GArray of gchar * elements, or NULL if not required. Do not free it, it is owned by self -.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.0

-
-
-
-

qmi_message_wds_get_current_settings_output_get_ip_family ()

-
gboolean
-qmi_message_wds_get_current_settings_output_get_ip_family
-                               (QmiMessageWdsGetCurrentSettingsOutput *self,
-                                QmiWdsIpFamily *value_ip_family,
-                                GError **error);
-

Get the 'IP Family' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessageWdsGetCurrentSettingsOutput.

 

value_ip_family

a placeholder for the output QmiWdsIpFamily, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.0

-
-
-
-

qmi_message_wds_get_current_settings_output_get_imcn_flag ()

-
gboolean
-qmi_message_wds_get_current_settings_output_get_imcn_flag
-                               (QmiMessageWdsGetCurrentSettingsOutput *self,
-                                gint8 *value_imcn_flag,
-                                GError **error);
-

Get the 'IMCN Flag' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessageWdsGetCurrentSettingsOutput.

 

value_imcn_flag

a placeholder for the output gint8, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.0

-
-
-
-

qmi_message_wds_get_current_settings_output_get_extended_technology_preference ()

-
gboolean
-qmi_message_wds_get_current_settings_output_get_extended_technology_preference
-                               (QmiMessageWdsGetCurrentSettingsOutput *self,
-                                QmiWdsExtendedTechnologyPreference *value_extended_technology_preference,
-                                GError **error);
-

Get the 'Extended Technology Preference' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessageWdsGetCurrentSettingsOutput.

 

value_extended_technology_preference

a placeholder for the output QmiWdsExtendedTechnologyPreference, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.0

-
-
-
-

qmi_client_wds_get_current_settings ()

-
void
-qmi_client_wds_get_current_settings (QmiClientWds *self,
-                                     QmiMessageWdsGetCurrentSettingsInput *input,
-                                     guint timeout,
-                                     GCancellable *cancellable,
-                                     GAsyncReadyCallback callback,
-                                     gpointer user_data);
-

Asynchronously sends a Get Current Settings request to the device.

-

When the operation is finished, callback - will be invoked in the thread-default main loop of the thread you are calling this method from.

-

You can then call qmi_client_wds_get_current_settings_finish() to get the result of the operation.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

self

a QmiClientWds.

 

input

a QmiMessageWdsGetCurrentSettingsInput.

 

timeout

maximum time to wait for the method to complete, in seconds.

 

cancellable

a GCancellable or NULL.

 

callback

a GAsyncReadyCallback to call when the request is satisfied.

 

user_data

user data to pass to callback -.

 
-
-

Since: 1.0

-
-
-
-

qmi_client_wds_get_current_settings_finish ()

-
QmiMessageWdsGetCurrentSettingsOutput *
-qmi_client_wds_get_current_settings_finish
-                               (QmiClientWds *self,
-                                GAsyncResult *res,
-                                GError **error);
-

Finishes an async operation started with qmi_client_wds_get_current_settings().

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiClientWds.

 

res

the GAsyncResult obtained from the GAsyncReadyCallback passed to qmi_client_wds_get_current_settings().

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

a QmiMessageWdsGetCurrentSettingsOutput, or NULL if error -is set. The returned value should be freed with qmi_message_wds_get_current_settings_output_unref().

-
-

Since: 1.0

-
-
-
-

Types and Values

-
-

QmiMessageWdsGetCurrentSettingsInput

-
typedef struct _QmiMessageWdsGetCurrentSettingsInput QmiMessageWdsGetCurrentSettingsInput;
-

The QmiMessageWdsGetCurrentSettingsInput structure contains private data and should only be accessed -using the provided API.

-

Since: 1.0

-
-
-
-

QmiMessageWdsGetCurrentSettingsOutput

-
typedef struct _QmiMessageWdsGetCurrentSettingsOutput QmiMessageWdsGetCurrentSettingsOutput;
-

The QmiMessageWdsGetCurrentSettingsOutput structure contains private data and should only be accessed -using the provided API.

-

Since: 1.0

-
-
-
- - - \ No newline at end of file diff -Nru libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-WDS-Get-Current-Settings-request.html libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-WDS-Get-Current-Settings-request.html --- libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-WDS-Get-Current-Settings-request.html 1970-01-01 01:00:00.000000000 +0100 +++ libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-WDS-Get-Current-Settings-request.html 2019-01-08 15:19:02.000000000 +0100 @@ -0,0 +1,1921 @@ + + + + +WDS Get Current Settings request: libqmi-glib Reference Manual + + + + + + + + + + + + + + + + +
+
+
+ + +
+

WDS Get Current Settings request

+

WDS Get Current Settings request

+
+
+

Functions

+
++++ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+QmiMessageWdsGetCurrentSettingsInput * + +qmi_message_wds_get_current_settings_input_new () +
+QmiMessageWdsGetCurrentSettingsInput * + +qmi_message_wds_get_current_settings_input_ref () +
+void + +qmi_message_wds_get_current_settings_input_unref () +
+gboolean + +qmi_message_wds_get_current_settings_input_get_requested_settings () +
+gboolean + +qmi_message_wds_get_current_settings_input_set_requested_settings () +
+QmiMessageWdsGetCurrentSettingsOutput * + +qmi_message_wds_get_current_settings_output_ref () +
+void + +qmi_message_wds_get_current_settings_output_unref () +
+gboolean + +qmi_message_wds_get_current_settings_output_get_result () +
+gboolean + +qmi_message_wds_get_current_settings_output_get_profile_name () +
+gboolean + +qmi_message_wds_get_current_settings_output_get_pdp_type () +
+gboolean + +qmi_message_wds_get_current_settings_output_get_apn_name () +
+gboolean + +qmi_message_wds_get_current_settings_output_get_primary_ipv4_dns_address () +
+gboolean + +qmi_message_wds_get_current_settings_output_get_secondary_ipv4_dns_address () +
+gboolean + +qmi_message_wds_get_current_settings_output_get_umts_granted_qos () +
+gboolean + +qmi_message_wds_get_current_settings_output_get_gprs_granted_qos () +
+gboolean + +qmi_message_wds_get_current_settings_output_get_username () +
+gboolean + +qmi_message_wds_get_current_settings_output_get_authentication () +
+gboolean + +qmi_message_wds_get_current_settings_output_get_ipv4_address () +
+gboolean + +qmi_message_wds_get_current_settings_output_get_profile_id () +
+gboolean + +qmi_message_wds_get_current_settings_output_get_ipv4_gateway_address () +
+gboolean + +qmi_message_wds_get_current_settings_output_get_ipv4_gateway_subnet_mask () +
+gboolean + +qmi_message_wds_get_current_settings_output_get_pcscf_address_using_pco () +
+gboolean + +qmi_message_wds_get_current_settings_output_get_pcscf_server_address_list () +
+gboolean + +qmi_message_wds_get_current_settings_output_get_pcscf_domain_name_list () +
+gboolean + +qmi_message_wds_get_current_settings_output_get_ipv6_address () +
+gboolean + +qmi_message_wds_get_current_settings_output_get_ipv6_gateway_address () +
+gboolean + +qmi_message_wds_get_current_settings_output_get_ipv6_primary_dns_address () +
+gboolean + +qmi_message_wds_get_current_settings_output_get_ipv6_secondary_dns_address () +
+gboolean + +qmi_message_wds_get_current_settings_output_get_mtu () +
+gboolean + +qmi_message_wds_get_current_settings_output_get_domain_name_list () +
+gboolean + +qmi_message_wds_get_current_settings_output_get_ip_family () +
+gboolean + +qmi_message_wds_get_current_settings_output_get_imcn_flag () +
+gboolean + +qmi_message_wds_get_current_settings_output_get_extended_technology_preference () +
+void + +qmi_client_wds_get_current_settings () +
+QmiMessageWdsGetCurrentSettingsOutput * + +qmi_client_wds_get_current_settings_finish () +
+
+
+

Types and Values

+ +
+
+

Object Hierarchy

+
    GBoxed
+    ├── QmiMessageWdsGetCurrentSettingsInput
+    ╰── QmiMessageWdsGetCurrentSettingsOutput
+
+
+
+

Description

+
+
+

Functions

+
+

qmi_message_wds_get_current_settings_input_new ()

+
QmiMessageWdsGetCurrentSettingsInput *
+qmi_message_wds_get_current_settings_input_new
+                               (void);
+

Allocates a new QmiMessageWdsGetCurrentSettingsInput.

+
+

Returns

+

the newly created QmiMessageWdsGetCurrentSettingsInput. The returned value should be freed with qmi_message_wds_get_current_settings_input_unref().

+
+

Since: 1.0

+
+
+
+

qmi_message_wds_get_current_settings_input_ref ()

+
QmiMessageWdsGetCurrentSettingsInput *
+qmi_message_wds_get_current_settings_input_ref
+                               (QmiMessageWdsGetCurrentSettingsInput *self);
+

Atomically increments the reference count of self + by one.

+
+

Parameters

+
+++++ + + + + + +

self

a QmiMessageWdsGetCurrentSettingsInput.

 
+
+
+

Returns

+

the new reference to self +.

+
+

Since: 1.0

+
+
+
+

qmi_message_wds_get_current_settings_input_unref ()

+
void
+qmi_message_wds_get_current_settings_input_unref
+                               (QmiMessageWdsGetCurrentSettingsInput *self);
+

Atomically decrements the reference count of self + by one. +If the reference count drops to 0, self + is completely disposed.

+
+

Parameters

+
+++++ + + + + + +

self

a QmiMessageWdsGetCurrentSettingsInput.

 
+
+

Since: 1.0

+
+
+
+

qmi_message_wds_get_current_settings_input_get_requested_settings ()

+
gboolean
+qmi_message_wds_get_current_settings_input_get_requested_settings
+                               (QmiMessageWdsGetCurrentSettingsInput *self,
+                                QmiWdsGetCurrentSettingsRequestedSettings *value_requested_settings,
+                                GError **error);
+

Get the 'Requested Settings' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageWdsGetCurrentSettingsInput.

 

value_requested_settings

a placeholder for the output QmiWdsGetCurrentSettingsRequestedSettings, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.0

+
+
+
+

qmi_message_wds_get_current_settings_input_set_requested_settings ()

+
gboolean
+qmi_message_wds_get_current_settings_input_set_requested_settings
+                               (QmiMessageWdsGetCurrentSettingsInput *self,
+                                QmiWdsGetCurrentSettingsRequestedSettings value_requested_settings,
+                                GError **error);
+

Set the 'Requested Settings' field in the message.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageWdsGetCurrentSettingsInput.

 

value_requested_settings

a QmiWdsGetCurrentSettingsRequestedSettings.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if value +was successfully set, FALSE otherwise.

+
+

Since: 1.0

+
+
+
+

qmi_message_wds_get_current_settings_output_ref ()

+
QmiMessageWdsGetCurrentSettingsOutput *
+qmi_message_wds_get_current_settings_output_ref
+                               (QmiMessageWdsGetCurrentSettingsOutput *self);
+

Atomically increments the reference count of self + by one.

+
+

Parameters

+
+++++ + + + + + +

self

a QmiMessageWdsGetCurrentSettingsOutput.

 
+
+
+

Returns

+

the new reference to self +.

+
+

Since: 1.0

+
+
+
+

qmi_message_wds_get_current_settings_output_unref ()

+
void
+qmi_message_wds_get_current_settings_output_unref
+                               (QmiMessageWdsGetCurrentSettingsOutput *self);
+

Atomically decrements the reference count of self + by one. +If the reference count drops to 0, self + is completely disposed.

+
+

Parameters

+
+++++ + + + + + +

self

a QmiMessageWdsGetCurrentSettingsOutput.

 
+
+

Since: 1.0

+
+
+
+

qmi_message_wds_get_current_settings_output_get_result ()

+
gboolean
+qmi_message_wds_get_current_settings_output_get_result
+                               (QmiMessageWdsGetCurrentSettingsOutput *self,
+                                GError **error);
+

Get the result of the QMI operation.

+
+

Parameters

+
+++++ + + + + + + + + + + + + +

self

a QmiMessageWdsGetCurrentSettingsOutput.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the QMI operation succeeded, FALSE if error +is set.

+
+

Since: 1.0

+
+
+
+

qmi_message_wds_get_current_settings_output_get_profile_name ()

+
gboolean
+qmi_message_wds_get_current_settings_output_get_profile_name
+                               (QmiMessageWdsGetCurrentSettingsOutput *self,
+                                const gchar **value_profile_name,
+                                GError **error);
+

Get the 'Profile Name' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageWdsGetCurrentSettingsOutput.

 

value_profile_name

a placeholder for the output constant string, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.0

+
+
+
+

qmi_message_wds_get_current_settings_output_get_pdp_type ()

+
gboolean
+qmi_message_wds_get_current_settings_output_get_pdp_type
+                               (QmiMessageWdsGetCurrentSettingsOutput *self,
+                                QmiWdsPdpType *value_pdp_type,
+                                GError **error);
+

Get the 'PDP Type' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageWdsGetCurrentSettingsOutput.

 

value_pdp_type

a placeholder for the output QmiWdsPdpType, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.0

+
+
+
+

qmi_message_wds_get_current_settings_output_get_apn_name ()

+
gboolean
+qmi_message_wds_get_current_settings_output_get_apn_name
+                               (QmiMessageWdsGetCurrentSettingsOutput *self,
+                                const gchar **value_apn_name,
+                                GError **error);
+

Get the 'APN Name' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageWdsGetCurrentSettingsOutput.

 

value_apn_name

a placeholder for the output constant string, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.0

+
+
+
+

qmi_message_wds_get_current_settings_output_get_primary_ipv4_dns_address ()

+
gboolean
+qmi_message_wds_get_current_settings_output_get_primary_ipv4_dns_address
+                               (QmiMessageWdsGetCurrentSettingsOutput *self,
+                                guint32 *value_primary_ipv4_dns_address,
+                                GError **error);
+

Get the 'Primary IPv4 DNS Address' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageWdsGetCurrentSettingsOutput.

 

value_primary_ipv4_dns_address

a placeholder for the output guint32, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.0

+
+
+
+

qmi_message_wds_get_current_settings_output_get_secondary_ipv4_dns_address ()

+
gboolean
+qmi_message_wds_get_current_settings_output_get_secondary_ipv4_dns_address
+                               (QmiMessageWdsGetCurrentSettingsOutput *self,
+                                guint32 *value_secondary_ipv4_dns_address,
+                                GError **error);
+

Get the 'Secondary IPv4 DNS Address' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageWdsGetCurrentSettingsOutput.

 

value_secondary_ipv4_dns_address

a placeholder for the output guint32, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.0

+
+
+
+

qmi_message_wds_get_current_settings_output_get_umts_granted_qos ()

+
gboolean
+qmi_message_wds_get_current_settings_output_get_umts_granted_qos
+                               (QmiMessageWdsGetCurrentSettingsOutput *self,
+                                QmiWdsTrafficClass *value_umts_granted_qos_traffic_class,
+                                guint32 *value_umts_granted_qos_max_uplink_bitrate,
+                                guint32 *value_umts_granted_qos_max_downlink_bitrate,
+                                guint32 *value_umts_granted_qos_guaranteed_uplink_bitrate,
+                                guint32 *value_umts_granted_qos_guaranteed_downlink_bitrate,
+                                QmiWdsDeliveryOrder *value_umts_granted_qos_qos_delivery_order,
+                                guint32 *value_umts_granted_qos_maximum_sdu_size,
+                                QmiWdsSduErrorRatio *value_umts_granted_qos_sdu_error_ratio,
+                                QmiWdsSduResidualBitErrorRatio *value_umts_granted_qos_residual_bit_error_ratio,
+                                QmiWdsSduErroneousDelivery *value_umts_granted_qos_delivery_erroneous_sdu,
+                                guint32 *value_umts_granted_qos_transfer_delay,
+                                guint32 *value_umts_granted_qos_traffic_handling_priority,
+                                GError **error);
+

Get the 'UMTS Granted QoS' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

self

a QmiMessageWdsGetCurrentSettingsOutput.

 

value_umts_granted_qos_traffic_class

a placeholder for the output QmiWdsTrafficClass, or NULL if not required.

 

value_umts_granted_qos_max_uplink_bitrate

a placeholder for the output guint32, or NULL if not required.

 

value_umts_granted_qos_max_downlink_bitrate

a placeholder for the output guint32, or NULL if not required.

 

value_umts_granted_qos_guaranteed_uplink_bitrate

a placeholder for the output guint32, or NULL if not required.

 

value_umts_granted_qos_guaranteed_downlink_bitrate

a placeholder for the output guint32, or NULL if not required.

 

value_umts_granted_qos_qos_delivery_order

a placeholder for the output QmiWdsDeliveryOrder, or NULL if not required.

 

value_umts_granted_qos_maximum_sdu_size

a placeholder for the output guint32, or NULL if not required.

 

value_umts_granted_qos_sdu_error_ratio

a placeholder for the output QmiWdsSduErrorRatio, or NULL if not required.

 

value_umts_granted_qos_residual_bit_error_ratio

a placeholder for the output QmiWdsSduResidualBitErrorRatio, or NULL if not required.

 

value_umts_granted_qos_delivery_erroneous_sdu

a placeholder for the output QmiWdsSduErroneousDelivery, or NULL if not required.

 

value_umts_granted_qos_transfer_delay

a placeholder for the output guint32, or NULL if not required.

 

value_umts_granted_qos_traffic_handling_priority

a placeholder for the output guint32, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.14

+
+
+
+

qmi_message_wds_get_current_settings_output_get_gprs_granted_qos ()

+
gboolean
+qmi_message_wds_get_current_settings_output_get_gprs_granted_qos
+                               (QmiMessageWdsGetCurrentSettingsOutput *self,
+                                guint32 *value_gprs_granted_qos_precedence_class,
+                                guint32 *value_gprs_granted_qos_delay_class,
+                                guint32 *value_gprs_granted_qos_reliability_class,
+                                guint32 *value_gprs_granted_qos_peak_throughput_class,
+                                guint32 *value_gprs_granted_qos_mean_throughput_class,
+                                GError **error);
+

Get the 'GPRS Granted QoS' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

self

a QmiMessageWdsGetCurrentSettingsOutput.

 

value_gprs_granted_qos_precedence_class

a placeholder for the output guint32, or NULL if not required.

 

value_gprs_granted_qos_delay_class

a placeholder for the output guint32, or NULL if not required.

 

value_gprs_granted_qos_reliability_class

a placeholder for the output guint32, or NULL if not required.

 

value_gprs_granted_qos_peak_throughput_class

a placeholder for the output guint32, or NULL if not required.

 

value_gprs_granted_qos_mean_throughput_class

a placeholder for the output guint32, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.0

+
+
+
+

qmi_message_wds_get_current_settings_output_get_username ()

+
gboolean
+qmi_message_wds_get_current_settings_output_get_username
+                               (QmiMessageWdsGetCurrentSettingsOutput *self,
+                                const gchar **value_username,
+                                GError **error);
+

Get the 'Username' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageWdsGetCurrentSettingsOutput.

 

value_username

a placeholder for the output constant string, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.0

+
+
+
+

qmi_message_wds_get_current_settings_output_get_authentication ()

+
gboolean
+qmi_message_wds_get_current_settings_output_get_authentication
+                               (QmiMessageWdsGetCurrentSettingsOutput *self,
+                                QmiWdsAuthentication *value_authentication,
+                                GError **error);
+

Get the 'Authentication' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageWdsGetCurrentSettingsOutput.

 

value_authentication

a placeholder for the output QmiWdsAuthentication, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.0

+
+
+
+

qmi_message_wds_get_current_settings_output_get_ipv4_address ()

+
gboolean
+qmi_message_wds_get_current_settings_output_get_ipv4_address
+                               (QmiMessageWdsGetCurrentSettingsOutput *self,
+                                guint32 *value_ipv4_address,
+                                GError **error);
+

Get the 'IPv4 Address' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageWdsGetCurrentSettingsOutput.

 

value_ipv4_address

a placeholder for the output guint32, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.0

+
+
+
+

qmi_message_wds_get_current_settings_output_get_profile_id ()

+
gboolean
+qmi_message_wds_get_current_settings_output_get_profile_id
+                               (QmiMessageWdsGetCurrentSettingsOutput *self,
+                                QmiWdsProfileType *value_profile_id_profile_type,
+                                guint8 *value_profile_id_profile_index,
+                                GError **error);
+

Get the 'Profile ID' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + + + + + + +

self

a QmiMessageWdsGetCurrentSettingsOutput.

 

value_profile_id_profile_type

a placeholder for the output QmiWdsProfileType, or NULL if not required.

 

value_profile_id_profile_index

a placeholder for the output guint8, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.0

+
+
+
+

qmi_message_wds_get_current_settings_output_get_ipv4_gateway_address ()

+
gboolean
+qmi_message_wds_get_current_settings_output_get_ipv4_gateway_address
+                               (QmiMessageWdsGetCurrentSettingsOutput *self,
+                                guint32 *value_ipv4_gateway_address,
+                                GError **error);
+

Get the 'IPv4 Gateway Address' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageWdsGetCurrentSettingsOutput.

 

value_ipv4_gateway_address

a placeholder for the output guint32, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.0

+
+
+
+

qmi_message_wds_get_current_settings_output_get_ipv4_gateway_subnet_mask ()

+
gboolean
+qmi_message_wds_get_current_settings_output_get_ipv4_gateway_subnet_mask
+                               (QmiMessageWdsGetCurrentSettingsOutput *self,
+                                guint32 *value_ipv4_gateway_subnet_mask,
+                                GError **error);
+

Get the 'IPv4 Gateway Subnet Mask' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageWdsGetCurrentSettingsOutput.

 

value_ipv4_gateway_subnet_mask

a placeholder for the output guint32, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.0

+
+
+
+

qmi_message_wds_get_current_settings_output_get_pcscf_address_using_pco ()

+
gboolean
+qmi_message_wds_get_current_settings_output_get_pcscf_address_using_pco
+                               (QmiMessageWdsGetCurrentSettingsOutput *self,
+                                guint8 *value_pcscf_address_using_pco,
+                                GError **error);
+

Get the 'PCSCF Address Using PCO' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageWdsGetCurrentSettingsOutput.

 

value_pcscf_address_using_pco

a placeholder for the output guint8, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.0

+
+
+
+

qmi_message_wds_get_current_settings_output_get_pcscf_server_address_list ()

+
gboolean
+qmi_message_wds_get_current_settings_output_get_pcscf_server_address_list
+                               (QmiMessageWdsGetCurrentSettingsOutput *self,
+                                GArray **value_pcscf_server_address_list,
+                                GError **error);
+

Get the 'PCSCF Server Address List' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageWdsGetCurrentSettingsOutput.

 

value_pcscf_server_address_list

a placeholder for the output GArray of guint32 elements, or NULL if not required. Do not free it, it is owned by self +.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.0

+
+
+
+

qmi_message_wds_get_current_settings_output_get_pcscf_domain_name_list ()

+
gboolean
+qmi_message_wds_get_current_settings_output_get_pcscf_domain_name_list
+                               (QmiMessageWdsGetCurrentSettingsOutput *self,
+                                GArray **value_pcscf_domain_name_list,
+                                GError **error);
+

Get the 'PCSCF Domain Name List' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageWdsGetCurrentSettingsOutput.

 

value_pcscf_domain_name_list

a placeholder for the output GArray of gchar * elements, or NULL if not required. Do not free it, it is owned by self +.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.0

+
+
+
+

qmi_message_wds_get_current_settings_output_get_ipv6_address ()

+
gboolean
+qmi_message_wds_get_current_settings_output_get_ipv6_address
+                               (QmiMessageWdsGetCurrentSettingsOutput *self,
+                                GArray **value_ipv6_address_address,
+                                guint8 *value_ipv6_address_prefix_length,
+                                GError **error);
+

Get the 'IPv6 Address' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + + + + + + +

self

a QmiMessageWdsGetCurrentSettingsOutput.

 

value_ipv6_address_address

a placeholder for the output GArray of guint16 elements, or NULL if not required. Do not free it, it is owned by self +.

 

value_ipv6_address_prefix_length

a placeholder for the output guint8, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.0

+
+
+
+

qmi_message_wds_get_current_settings_output_get_ipv6_gateway_address ()

+
gboolean
+qmi_message_wds_get_current_settings_output_get_ipv6_gateway_address
+                               (QmiMessageWdsGetCurrentSettingsOutput *self,
+                                GArray **value_ipv6_gateway_address_address,
+                                guint8 *value_ipv6_gateway_address_prefix_length,
+                                GError **error);
+

Get the 'IPv6 Gateway Address' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + + + + + + +

self

a QmiMessageWdsGetCurrentSettingsOutput.

 

value_ipv6_gateway_address_address

a placeholder for the output GArray of guint16 elements, or NULL if not required. Do not free it, it is owned by self +.

 

value_ipv6_gateway_address_prefix_length

a placeholder for the output guint8, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.0

+
+
+
+

qmi_message_wds_get_current_settings_output_get_ipv6_primary_dns_address ()

+
gboolean
+qmi_message_wds_get_current_settings_output_get_ipv6_primary_dns_address
+                               (QmiMessageWdsGetCurrentSettingsOutput *self,
+                                GArray **value_ipv6_primary_dns_address,
+                                GError **error);
+

Get the 'IPv6 Primary DNS Address' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageWdsGetCurrentSettingsOutput.

 

value_ipv6_primary_dns_address

a placeholder for the output GArray of guint16 elements, or NULL if not required. Do not free it, it is owned by self +.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.0

+
+
+
+

qmi_message_wds_get_current_settings_output_get_ipv6_secondary_dns_address ()

+
gboolean
+qmi_message_wds_get_current_settings_output_get_ipv6_secondary_dns_address
+                               (QmiMessageWdsGetCurrentSettingsOutput *self,
+                                GArray **value_ipv6_secondary_dns_address,
+                                GError **error);
+

Get the 'IPv6 Secondary DNS Address' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageWdsGetCurrentSettingsOutput.

 

value_ipv6_secondary_dns_address

a placeholder for the output GArray of guint16 elements, or NULL if not required. Do not free it, it is owned by self +.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.0

+
+
+
+

qmi_message_wds_get_current_settings_output_get_mtu ()

+
gboolean
+qmi_message_wds_get_current_settings_output_get_mtu
+                               (QmiMessageWdsGetCurrentSettingsOutput *self,
+                                guint32 *value_mtu,
+                                GError **error);
+

Get the 'MTU' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageWdsGetCurrentSettingsOutput.

 

value_mtu

a placeholder for the output guint32, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.0

+
+
+
+

qmi_message_wds_get_current_settings_output_get_domain_name_list ()

+
gboolean
+qmi_message_wds_get_current_settings_output_get_domain_name_list
+                               (QmiMessageWdsGetCurrentSettingsOutput *self,
+                                GArray **value_domain_name_list,
+                                GError **error);
+

Get the 'Domain Name List' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageWdsGetCurrentSettingsOutput.

 

value_domain_name_list

a placeholder for the output GArray of gchar * elements, or NULL if not required. Do not free it, it is owned by self +.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.0

+
+
+
+

qmi_message_wds_get_current_settings_output_get_ip_family ()

+
gboolean
+qmi_message_wds_get_current_settings_output_get_ip_family
+                               (QmiMessageWdsGetCurrentSettingsOutput *self,
+                                QmiWdsIpFamily *value_ip_family,
+                                GError **error);
+

Get the 'IP Family' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageWdsGetCurrentSettingsOutput.

 

value_ip_family

a placeholder for the output QmiWdsIpFamily, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.0

+
+
+
+

qmi_message_wds_get_current_settings_output_get_imcn_flag ()

+
gboolean
+qmi_message_wds_get_current_settings_output_get_imcn_flag
+                               (QmiMessageWdsGetCurrentSettingsOutput *self,
+                                gint8 *value_imcn_flag,
+                                GError **error);
+

Get the 'IMCN Flag' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageWdsGetCurrentSettingsOutput.

 

value_imcn_flag

a placeholder for the output gint8, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.0

+
+
+
+

qmi_message_wds_get_current_settings_output_get_extended_technology_preference ()

+
gboolean
+qmi_message_wds_get_current_settings_output_get_extended_technology_preference
+                               (QmiMessageWdsGetCurrentSettingsOutput *self,
+                                QmiWdsExtendedTechnologyPreference *value_extended_technology_preference,
+                                GError **error);
+

Get the 'Extended Technology Preference' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageWdsGetCurrentSettingsOutput.

 

value_extended_technology_preference

a placeholder for the output QmiWdsExtendedTechnologyPreference, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.0

+
+
+
+

qmi_client_wds_get_current_settings ()

+
void
+qmi_client_wds_get_current_settings (QmiClientWds *self,
+                                     QmiMessageWdsGetCurrentSettingsInput *input,
+                                     guint timeout,
+                                     GCancellable *cancellable,
+                                     GAsyncReadyCallback callback,
+                                     gpointer user_data);
+

Asynchronously sends a Get Current Settings request to the device.

+

When the operation is finished, callback + will be invoked in the thread-default main loop of the thread you are calling this method from.

+

You can then call qmi_client_wds_get_current_settings_finish() to get the result of the operation.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

self

a QmiClientWds.

 

input

a QmiMessageWdsGetCurrentSettingsInput.

 

timeout

maximum time to wait for the method to complete, in seconds.

 

cancellable

a GCancellable or NULL.

 

callback

a GAsyncReadyCallback to call when the request is satisfied.

 

user_data

user data to pass to callback +.

 
+
+

Since: 1.0

+
+
+
+

qmi_client_wds_get_current_settings_finish ()

+
QmiMessageWdsGetCurrentSettingsOutput *
+qmi_client_wds_get_current_settings_finish
+                               (QmiClientWds *self,
+                                GAsyncResult *res,
+                                GError **error);
+

Finishes an async operation started with qmi_client_wds_get_current_settings().

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiClientWds.

 

res

the GAsyncResult obtained from the GAsyncReadyCallback passed to qmi_client_wds_get_current_settings().

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

a QmiMessageWdsGetCurrentSettingsOutput, or NULL if error +is set. The returned value should be freed with qmi_message_wds_get_current_settings_output_unref().

+
+

Since: 1.0

+
+
+
+

Types and Values

+
+

QmiMessageWdsGetCurrentSettingsInput

+
typedef struct _QmiMessageWdsGetCurrentSettingsInput QmiMessageWdsGetCurrentSettingsInput;
+

The QmiMessageWdsGetCurrentSettingsInput structure contains private data and should only be accessed +using the provided API.

+

Since: 1.0

+
+
+
+

QmiMessageWdsGetCurrentSettingsOutput

+
typedef struct _QmiMessageWdsGetCurrentSettingsOutput QmiMessageWdsGetCurrentSettingsOutput;
+

The QmiMessageWdsGetCurrentSettingsOutput structure contains private data and should only be accessed +using the provided API.

+

Since: 1.0

+
+
+
+ + + \ No newline at end of file diff -Nru libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-WDS-Get-Data-Bearer-Technology.html libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-WDS-Get-Data-Bearer-Technology.html --- libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-WDS-Get-Data-Bearer-Technology.html 2017-03-22 12:28:28.000000000 +0100 +++ libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-WDS-Get-Data-Bearer-Technology.html 1970-01-01 01:00:00.000000000 +0100 @@ -1,423 +0,0 @@ - - - - -WDS Get Data Bearer Technology: libqmi-glib Reference Manual - - - - - - - - - - - - - - - - -
-
-
- - -
-

WDS Get Data Bearer Technology

-

WDS Get Data Bearer Technology

-
- -
-

Types and Values

- -
-
-

Object Hierarchy

-
    GBoxed
-    ╰── QmiMessageWdsGetDataBearerTechnologyOutput
-
-
-
-

Description

-
-
-

Functions

-
-

qmi_message_wds_get_data_bearer_technology_output_ref ()

-
QmiMessageWdsGetDataBearerTechnologyOutput *
-qmi_message_wds_get_data_bearer_technology_output_ref
-                               (QmiMessageWdsGetDataBearerTechnologyOutput *self);
-

Atomically increments the reference count of self - by one.

-
-

Parameters

-
----- - - - - - -

self

a QmiMessageWdsGetDataBearerTechnologyOutput.

 
-
-
-

Returns

-

the new reference to self -.

-
-

Since: 1.0

-
-
-
-

qmi_message_wds_get_data_bearer_technology_output_unref ()

-
void
-qmi_message_wds_get_data_bearer_technology_output_unref
-                               (QmiMessageWdsGetDataBearerTechnologyOutput *self);
-

Atomically decrements the reference count of self - by one. -If the reference count drops to 0, self - is completely disposed.

-
-

Parameters

-
----- - - - - - -

self

a QmiMessageWdsGetDataBearerTechnologyOutput.

 
-
-

Since: 1.0

-
-
-
-

qmi_message_wds_get_data_bearer_technology_output_get_result ()

-
gboolean
-qmi_message_wds_get_data_bearer_technology_output_get_result
-                               (QmiMessageWdsGetDataBearerTechnologyOutput *self,
-                                GError **error);
-

Get the result of the QMI operation.

-
-

Parameters

-
----- - - - - - - - - - - - - -

self

a QmiMessageWdsGetDataBearerTechnologyOutput.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the QMI operation succeeded, FALSE if error -is set.

-
-

Since: 1.0

-
-
-
-

qmi_message_wds_get_data_bearer_technology_output_get_current ()

-
gboolean
-qmi_message_wds_get_data_bearer_technology_output_get_current
-                               (QmiMessageWdsGetDataBearerTechnologyOutput *self,
-                                QmiWdsDataBearerTechnology *value_current,
-                                GError **error);
-

Get the 'Current' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessageWdsGetDataBearerTechnologyOutput.

 

value_current

a placeholder for the output QmiWdsDataBearerTechnology, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.0

-
-
-
-

qmi_message_wds_get_data_bearer_technology_output_get_last ()

-
gboolean
-qmi_message_wds_get_data_bearer_technology_output_get_last
-                               (QmiMessageWdsGetDataBearerTechnologyOutput *self,
-                                QmiWdsDataBearerTechnology *value_last,
-                                GError **error);
-

Get the 'Last' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessageWdsGetDataBearerTechnologyOutput.

 

value_last

a placeholder for the output QmiWdsDataBearerTechnology, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.0

-
-
-
-

qmi_client_wds_get_data_bearer_technology ()

-
void
-qmi_client_wds_get_data_bearer_technology
-                               (QmiClientWds *self,
-                                gpointer unused,
-                                guint timeout,
-                                GCancellable *cancellable,
-                                GAsyncReadyCallback callback,
-                                gpointer user_data);
-

Asynchronously sends a Get Data Bearer Technology request to the device.

-

When the operation is finished, callback - will be invoked in the thread-default main loop of the thread you are calling this method from.

-

You can then call qmi_client_wds_get_data_bearer_technology_finish() to get the result of the operation.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

self

a QmiClientWds.

 

unused

NULL. This message doesn't have any input bundle.

 

timeout

maximum time to wait for the method to complete, in seconds.

 

cancellable

a GCancellable or NULL.

 

callback

a GAsyncReadyCallback to call when the request is satisfied.

 

user_data

user data to pass to callback -.

 
-
-

Since: 1.0

-
-
-
-

qmi_client_wds_get_data_bearer_technology_finish ()

-
QmiMessageWdsGetDataBearerTechnologyOutput *
-qmi_client_wds_get_data_bearer_technology_finish
-                               (QmiClientWds *self,
-                                GAsyncResult *res,
-                                GError **error);
-

Finishes an async operation started with qmi_client_wds_get_data_bearer_technology().

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiClientWds.

 

res

the GAsyncResult obtained from the GAsyncReadyCallback passed to qmi_client_wds_get_data_bearer_technology().

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

a QmiMessageWdsGetDataBearerTechnologyOutput, or NULL if error -is set. The returned value should be freed with qmi_message_wds_get_data_bearer_technology_output_unref().

-
-

Since: 1.0

-
-
-
-

Types and Values

-
-

QmiMessageWdsGetDataBearerTechnologyOutput

-
typedef struct _QmiMessageWdsGetDataBearerTechnologyOutput QmiMessageWdsGetDataBearerTechnologyOutput;
-

The QmiMessageWdsGetDataBearerTechnologyOutput structure contains private data and should only be accessed -using the provided API.

-

Since: 1.0

-
-
-
- - - \ No newline at end of file diff -Nru libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-WDS-Get-Data-Bearer-Technology-request.html libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-WDS-Get-Data-Bearer-Technology-request.html --- libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-WDS-Get-Data-Bearer-Technology-request.html 1970-01-01 01:00:00.000000000 +0100 +++ libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-WDS-Get-Data-Bearer-Technology-request.html 2019-01-08 15:19:02.000000000 +0100 @@ -0,0 +1,423 @@ + + + + +WDS Get Data Bearer Technology request: libqmi-glib Reference Manual + + + + + + + + + + + + + + + + +
+
+
+ + +
+

WDS Get Data Bearer Technology request

+

WDS Get Data Bearer Technology request

+
+ +
+

Types and Values

+ +
+
+

Object Hierarchy

+
    GBoxed
+    ╰── QmiMessageWdsGetDataBearerTechnologyOutput
+
+
+
+

Description

+
+
+

Functions

+
+

qmi_message_wds_get_data_bearer_technology_output_ref ()

+
QmiMessageWdsGetDataBearerTechnologyOutput *
+qmi_message_wds_get_data_bearer_technology_output_ref
+                               (QmiMessageWdsGetDataBearerTechnologyOutput *self);
+

Atomically increments the reference count of self + by one.

+
+

Parameters

+
+++++ + + + + + +

self

a QmiMessageWdsGetDataBearerTechnologyOutput.

 
+
+
+

Returns

+

the new reference to self +.

+
+

Since: 1.0

+
+
+
+

qmi_message_wds_get_data_bearer_technology_output_unref ()

+
void
+qmi_message_wds_get_data_bearer_technology_output_unref
+                               (QmiMessageWdsGetDataBearerTechnologyOutput *self);
+

Atomically decrements the reference count of self + by one. +If the reference count drops to 0, self + is completely disposed.

+
+

Parameters

+
+++++ + + + + + +

self

a QmiMessageWdsGetDataBearerTechnologyOutput.

 
+
+

Since: 1.0

+
+
+
+

qmi_message_wds_get_data_bearer_technology_output_get_result ()

+
gboolean
+qmi_message_wds_get_data_bearer_technology_output_get_result
+                               (QmiMessageWdsGetDataBearerTechnologyOutput *self,
+                                GError **error);
+

Get the result of the QMI operation.

+
+

Parameters

+
+++++ + + + + + + + + + + + + +

self

a QmiMessageWdsGetDataBearerTechnologyOutput.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the QMI operation succeeded, FALSE if error +is set.

+
+

Since: 1.0

+
+
+
+

qmi_message_wds_get_data_bearer_technology_output_get_current ()

+
gboolean
+qmi_message_wds_get_data_bearer_technology_output_get_current
+                               (QmiMessageWdsGetDataBearerTechnologyOutput *self,
+                                QmiWdsDataBearerTechnology *value_current,
+                                GError **error);
+

Get the 'Current' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageWdsGetDataBearerTechnologyOutput.

 

value_current

a placeholder for the output QmiWdsDataBearerTechnology, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.0

+
+
+
+

qmi_message_wds_get_data_bearer_technology_output_get_last ()

+
gboolean
+qmi_message_wds_get_data_bearer_technology_output_get_last
+                               (QmiMessageWdsGetDataBearerTechnologyOutput *self,
+                                QmiWdsDataBearerTechnology *value_last,
+                                GError **error);
+

Get the 'Last' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageWdsGetDataBearerTechnologyOutput.

 

value_last

a placeholder for the output QmiWdsDataBearerTechnology, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.0

+
+
+
+

qmi_client_wds_get_data_bearer_technology ()

+
void
+qmi_client_wds_get_data_bearer_technology
+                               (QmiClientWds *self,
+                                gpointer unused,
+                                guint timeout,
+                                GCancellable *cancellable,
+                                GAsyncReadyCallback callback,
+                                gpointer user_data);
+

Asynchronously sends a Get Data Bearer Technology request to the device.

+

When the operation is finished, callback + will be invoked in the thread-default main loop of the thread you are calling this method from.

+

You can then call qmi_client_wds_get_data_bearer_technology_finish() to get the result of the operation.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

self

a QmiClientWds.

 

unused

NULL. This message doesn't have any input bundle.

 

timeout

maximum time to wait for the method to complete, in seconds.

 

cancellable

a GCancellable or NULL.

 

callback

a GAsyncReadyCallback to call when the request is satisfied.

 

user_data

user data to pass to callback +.

 
+
+

Since: 1.0

+
+
+
+

qmi_client_wds_get_data_bearer_technology_finish ()

+
QmiMessageWdsGetDataBearerTechnologyOutput *
+qmi_client_wds_get_data_bearer_technology_finish
+                               (QmiClientWds *self,
+                                GAsyncResult *res,
+                                GError **error);
+

Finishes an async operation started with qmi_client_wds_get_data_bearer_technology().

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiClientWds.

 

res

the GAsyncResult obtained from the GAsyncReadyCallback passed to qmi_client_wds_get_data_bearer_technology().

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

a QmiMessageWdsGetDataBearerTechnologyOutput, or NULL if error +is set. The returned value should be freed with qmi_message_wds_get_data_bearer_technology_output_unref().

+
+

Since: 1.0

+
+
+
+

Types and Values

+
+

QmiMessageWdsGetDataBearerTechnologyOutput

+
typedef struct _QmiMessageWdsGetDataBearerTechnologyOutput QmiMessageWdsGetDataBearerTechnologyOutput;
+

The QmiMessageWdsGetDataBearerTechnologyOutput structure contains private data and should only be accessed +using the provided API.

+

Since: 1.0

+
+
+
+ + + \ No newline at end of file diff -Nru libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-WDS-Get-Default-Profile-Num-request.html libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-WDS-Get-Default-Profile-Num-request.html --- libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-WDS-Get-Default-Profile-Num-request.html 1970-01-01 01:00:00.000000000 +0100 +++ libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-WDS-Get-Default-Profile-Num-request.html 2019-01-08 15:19:02.000000000 +0100 @@ -0,0 +1,646 @@ + + + + +WDS Get Default Profile Num request: libqmi-glib Reference Manual + + + + + + + + + + + + + + + + +
+
+
+ + +
+

WDS Get Default Profile Num request

+

WDS Get Default Profile Num request

+
+ +
+

Types and Values

+ +
+
+

Object Hierarchy

+
    GBoxed
+    ├── QmiMessageWdsGetDefaultProfileNumInput
+    ╰── QmiMessageWdsGetDefaultProfileNumOutput
+
+
+
+

Description

+
+
+

Functions

+
+

qmi_message_wds_get_default_profile_num_input_new ()

+
QmiMessageWdsGetDefaultProfileNumInput *
+qmi_message_wds_get_default_profile_num_input_new
+                               (void);
+

Allocates a new QmiMessageWdsGetDefaultProfileNumInput.

+
+

Returns

+

the newly created QmiMessageWdsGetDefaultProfileNumInput. The returned value should be freed with qmi_message_wds_get_default_profile_num_input_unref().

+
+

Since: 1.22

+
+
+
+

qmi_message_wds_get_default_profile_num_input_ref ()

+
QmiMessageWdsGetDefaultProfileNumInput *
+qmi_message_wds_get_default_profile_num_input_ref
+                               (QmiMessageWdsGetDefaultProfileNumInput *self);
+

Atomically increments the reference count of self + by one.

+
+

Parameters

+
+++++ + + + + + +

self

a QmiMessageWdsGetDefaultProfileNumInput.

 
+
+
+

Returns

+

the new reference to self +.

+
+

Since: 1.22

+
+
+
+

qmi_message_wds_get_default_profile_num_input_unref ()

+
void
+qmi_message_wds_get_default_profile_num_input_unref
+                               (QmiMessageWdsGetDefaultProfileNumInput *self);
+

Atomically decrements the reference count of self + by one. +If the reference count drops to 0, self + is completely disposed.

+
+

Parameters

+
+++++ + + + + + +

self

a QmiMessageWdsGetDefaultProfileNumInput.

 
+
+

Since: 1.22

+
+
+
+

qmi_message_wds_get_default_profile_num_input_get_profile_type ()

+
gboolean
+qmi_message_wds_get_default_profile_num_input_get_profile_type
+                               (QmiMessageWdsGetDefaultProfileNumInput *self,
+                                QmiWdsProfileType *value_profile_type_profile_type,
+                                QmiWdsProfileFamily *value_profile_type_profile_family,
+                                GError **error);
+

Get the 'Profile Type' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + + + + + + +

self

a QmiMessageWdsGetDefaultProfileNumInput.

 

value_profile_type_profile_type

a placeholder for the output QmiWdsProfileType, or NULL if not required.

 

value_profile_type_profile_family

a placeholder for the output QmiWdsProfileFamily, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.22

+
+
+
+

qmi_message_wds_get_default_profile_num_input_set_profile_type ()

+
gboolean
+qmi_message_wds_get_default_profile_num_input_set_profile_type
+                               (QmiMessageWdsGetDefaultProfileNumInput *self,
+                                QmiWdsProfileType value_profile_type_profile_type,
+                                QmiWdsProfileFamily value_profile_type_profile_family,
+                                GError **error);
+

Set the 'Profile Type' field in the message.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + + + + + + +

self

a QmiMessageWdsGetDefaultProfileNumInput.

 

value_profile_type_profile_type

a QmiWdsProfileType.

 

value_profile_type_profile_family

a QmiWdsProfileFamily.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if value +was successfully set, FALSE otherwise.

+
+

Since: 1.22

+
+
+
+

qmi_message_wds_get_default_profile_num_output_ref ()

+
QmiMessageWdsGetDefaultProfileNumOutput *
+qmi_message_wds_get_default_profile_num_output_ref
+                               (QmiMessageWdsGetDefaultProfileNumOutput *self);
+

Atomically increments the reference count of self + by one.

+
+

Parameters

+
+++++ + + + + + +

self

a QmiMessageWdsGetDefaultProfileNumOutput.

 
+
+
+

Returns

+

the new reference to self +.

+
+

Since: 1.22

+
+
+
+

qmi_message_wds_get_default_profile_num_output_unref ()

+
void
+qmi_message_wds_get_default_profile_num_output_unref
+                               (QmiMessageWdsGetDefaultProfileNumOutput *self);
+

Atomically decrements the reference count of self + by one. +If the reference count drops to 0, self + is completely disposed.

+
+

Parameters

+
+++++ + + + + + +

self

a QmiMessageWdsGetDefaultProfileNumOutput.

 
+
+

Since: 1.22

+
+
+
+

qmi_message_wds_get_default_profile_num_output_get_result ()

+
gboolean
+qmi_message_wds_get_default_profile_num_output_get_result
+                               (QmiMessageWdsGetDefaultProfileNumOutput *self,
+                                GError **error);
+

Get the result of the QMI operation.

+
+

Parameters

+
+++++ + + + + + + + + + + + + +

self

a QmiMessageWdsGetDefaultProfileNumOutput.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the QMI operation succeeded, FALSE if error +is set.

+
+

Since: 1.22

+
+
+
+

qmi_message_wds_get_default_profile_num_output_get_default_profile_number ()

+
gboolean
+qmi_message_wds_get_default_profile_num_output_get_default_profile_number
+                               (QmiMessageWdsGetDefaultProfileNumOutput *self,
+                                guint8 *value_default_profile_number,
+                                GError **error);
+

Get the 'Default Profile Number' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageWdsGetDefaultProfileNumOutput.

 

value_default_profile_number

a placeholder for the output guint8, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.22

+
+
+
+

qmi_message_wds_get_default_profile_num_output_get_extended_error_code ()

+
gboolean
+qmi_message_wds_get_default_profile_num_output_get_extended_error_code
+                               (QmiMessageWdsGetDefaultProfileNumOutput *self,
+                                QmiWdsDsProfileError *value_extended_error_code,
+                                GError **error);
+

Get the 'Extended Error Code' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageWdsGetDefaultProfileNumOutput.

 

value_extended_error_code

a placeholder for the output QmiWdsDsProfileError, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.22

+
+
+
+

qmi_client_wds_get_default_profile_num ()

+
void
+qmi_client_wds_get_default_profile_num
+                               (QmiClientWds *self,
+                                QmiMessageWdsGetDefaultProfileNumInput *input,
+                                guint timeout,
+                                GCancellable *cancellable,
+                                GAsyncReadyCallback callback,
+                                gpointer user_data);
+

Asynchronously sends a Get Default Profile Num request to the device.

+

When the operation is finished, callback + will be invoked in the thread-default main loop of the thread you are calling this method from.

+

You can then call qmi_client_wds_get_default_profile_num_finish() to get the result of the operation.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

self

a QmiClientWds.

 

input

a QmiMessageWdsGetDefaultProfileNumInput.

 

timeout

maximum time to wait for the method to complete, in seconds.

 

cancellable

a GCancellable or NULL.

 

callback

a GAsyncReadyCallback to call when the request is satisfied.

 

user_data

user data to pass to callback +.

 
+
+

Since: 1.22

+
+
+
+

qmi_client_wds_get_default_profile_num_finish ()

+
QmiMessageWdsGetDefaultProfileNumOutput *
+qmi_client_wds_get_default_profile_num_finish
+                               (QmiClientWds *self,
+                                GAsyncResult *res,
+                                GError **error);
+

Finishes an async operation started with qmi_client_wds_get_default_profile_num().

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiClientWds.

 

res

the GAsyncResult obtained from the GAsyncReadyCallback passed to qmi_client_wds_get_default_profile_num().

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

a QmiMessageWdsGetDefaultProfileNumOutput, or NULL if error +is set. The returned value should be freed with qmi_message_wds_get_default_profile_num_output_unref().

+
+

Since: 1.22

+
+
+
+

Types and Values

+
+

QmiMessageWdsGetDefaultProfileNumInput

+
typedef struct _QmiMessageWdsGetDefaultProfileNumInput QmiMessageWdsGetDefaultProfileNumInput;
+

The QmiMessageWdsGetDefaultProfileNumInput structure contains private data and should only be accessed +using the provided API.

+

Since: 1.22

+
+
+
+

QmiMessageWdsGetDefaultProfileNumOutput

+
typedef struct _QmiMessageWdsGetDefaultProfileNumOutput QmiMessageWdsGetDefaultProfileNumOutput;
+

The QmiMessageWdsGetDefaultProfileNumOutput structure contains private data and should only be accessed +using the provided API.

+

Since: 1.22

+
+
+
+ + + \ No newline at end of file diff -Nru libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-WDS-Get-Default-Settings.html libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-WDS-Get-Default-Settings.html --- libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-WDS-Get-Default-Settings.html 2017-03-22 12:28:29.000000000 +0100 +++ libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-WDS-Get-Default-Settings.html 1970-01-01 01:00:00.000000000 +0100 @@ -1,2310 +0,0 @@ - - - - -WDS Get Default Settings: libqmi-glib Reference Manual - - - - - - - - - - - - - - - - -
-
-
- - -
-

WDS Get Default Settings

-

WDS Get Default Settings

-
-
-

Functions

-
---- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
-QmiMessageWdsGetDefaultSettingsInput * - -qmi_message_wds_get_default_settings_input_new () -
-QmiMessageWdsGetDefaultSettingsInput * - -qmi_message_wds_get_default_settings_input_ref () -
-void - -qmi_message_wds_get_default_settings_input_unref () -
-gboolean - -qmi_message_wds_get_default_settings_input_get_profile_type () -
-gboolean - -qmi_message_wds_get_default_settings_input_set_profile_type () -
-QmiMessageWdsGetDefaultSettingsOutput * - -qmi_message_wds_get_default_settings_output_ref () -
-void - -qmi_message_wds_get_default_settings_output_unref () -
-gboolean - -qmi_message_wds_get_default_settings_output_get_result () -
-gboolean - -qmi_message_wds_get_default_settings_output_get_profile_name () -
-gboolean - -qmi_message_wds_get_default_settings_output_get_pdp_type () -
-gboolean - -qmi_message_wds_get_default_settings_output_get_pdp_header_compression_type () -
-gboolean - -qmi_message_wds_get_default_settings_output_get_pdp_data_compression_type () -
-gboolean - -qmi_message_wds_get_default_settings_output_get_apn_name () -
-gboolean - -qmi_message_wds_get_default_settings_output_get_primary_ipv4_dns_address () -
-gboolean - -qmi_message_wds_get_default_settings_output_get_secondary_ipv4_dns_address () -
-gboolean - -qmi_message_wds_get_default_settings_output_get_umts_requested_qos () -
-gboolean - -qmi_message_wds_get_default_settings_output_get_umts_minimum_qos () -
-gboolean - -qmi_message_wds_get_default_settings_output_get_gprs_requested_qos () -
-gboolean - -qmi_message_wds_get_default_settings_output_get_gprs_minimum_qos () -
-gboolean - -qmi_message_wds_get_default_settings_output_get_username () -
-gboolean - -qmi_message_wds_get_default_settings_output_get_password () -
-gboolean - -qmi_message_wds_get_default_settings_output_get_authentication () -
-gboolean - -qmi_message_wds_get_default_settings_output_get_ipv4_address_preference () -
-gboolean - -qmi_message_wds_get_default_settings_output_get_pcscf_address_using_pco () -
-gboolean - -qmi_message_wds_get_default_settings_output_get_pcscf_address_using_dhcp () -
-gboolean - -qmi_message_wds_get_default_settings_output_get_imcn_flag () -
-gboolean - -qmi_message_wds_get_default_settings_output_get_pdp_context_number () -
-gboolean - -qmi_message_wds_get_default_settings_output_get_pdp_context_secondary_flag () -
-gboolean - -qmi_message_wds_get_default_settings_output_get_pdp_context_primary_id () -
-gboolean - -qmi_message_wds_get_default_settings_output_get_ipv6_address_preference () -
-gboolean - -qmi_message_wds_get_default_settings_output_get_umts_requested_qos_with_signaling_indication_flag () -
-gboolean - -qmi_message_wds_get_default_settings_output_get_umts_minimum_qos_with_signaling_indication_flag () -
-gboolean - -qmi_message_wds_get_default_settings_output_get_ipv6_primary_dns_address_preference () -
-gboolean - -qmi_message_wds_get_default_settings_output_get_ipv6_secondary_dns_address_preference () -
-gboolean - -qmi_message_wds_get_default_settings_output_get_lte_qos_parameters () -
-gboolean - -qmi_message_wds_get_default_settings_output_get_extended_error_code () -
-void - -qmi_client_wds_get_default_settings () -
-QmiMessageWdsGetDefaultSettingsOutput * - -qmi_client_wds_get_default_settings_finish () -
-
-
-

Types and Values

- -
-
-

Object Hierarchy

-
    GBoxed
-    ├── QmiMessageWdsGetDefaultSettingsInput
-    ╰── QmiMessageWdsGetDefaultSettingsOutput
-
-
-
-

Description

-
-
-

Functions

-
-

qmi_message_wds_get_default_settings_input_new ()

-
QmiMessageWdsGetDefaultSettingsInput *
-qmi_message_wds_get_default_settings_input_new
-                               (void);
-

Allocates a new QmiMessageWdsGetDefaultSettingsInput.

-
-

Returns

-

the newly created QmiMessageWdsGetDefaultSettingsInput. The returned value should be freed with qmi_message_wds_get_default_settings_input_unref().

-
-

Since: 1.8

-
-
-
-

qmi_message_wds_get_default_settings_input_ref ()

-
QmiMessageWdsGetDefaultSettingsInput *
-qmi_message_wds_get_default_settings_input_ref
-                               (QmiMessageWdsGetDefaultSettingsInput *self);
-

Atomically increments the reference count of self - by one.

-
-

Parameters

-
----- - - - - - -

self

a QmiMessageWdsGetDefaultSettingsInput.

 
-
-
-

Returns

-

the new reference to self -.

-
-

Since: 1.8

-
-
-
-

qmi_message_wds_get_default_settings_input_unref ()

-
void
-qmi_message_wds_get_default_settings_input_unref
-                               (QmiMessageWdsGetDefaultSettingsInput *self);
-

Atomically decrements the reference count of self - by one. -If the reference count drops to 0, self - is completely disposed.

-
-

Parameters

-
----- - - - - - -

self

a QmiMessageWdsGetDefaultSettingsInput.

 
-
-

Since: 1.8

-
-
-
-

qmi_message_wds_get_default_settings_input_get_profile_type ()

-
gboolean
-qmi_message_wds_get_default_settings_input_get_profile_type
-                               (QmiMessageWdsGetDefaultSettingsInput *self,
-                                QmiWdsProfileType *value_profile_type,
-                                GError **error);
-

Get the 'Profile Type' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessageWdsGetDefaultSettingsInput.

 

value_profile_type

a placeholder for the output QmiWdsProfileType, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.8

-
-
-
-

qmi_message_wds_get_default_settings_input_set_profile_type ()

-
gboolean
-qmi_message_wds_get_default_settings_input_set_profile_type
-                               (QmiMessageWdsGetDefaultSettingsInput *self,
-                                QmiWdsProfileType value_profile_type,
-                                GError **error);
-

Set the 'Profile Type' field in the message.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessageWdsGetDefaultSettingsInput.

 

value_profile_type

a QmiWdsProfileType.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if value -was successfully set, FALSE otherwise.

-
-

Since: 1.8

-
-
-
-

qmi_message_wds_get_default_settings_output_ref ()

-
QmiMessageWdsGetDefaultSettingsOutput *
-qmi_message_wds_get_default_settings_output_ref
-                               (QmiMessageWdsGetDefaultSettingsOutput *self);
-

Atomically increments the reference count of self - by one.

-
-

Parameters

-
----- - - - - - -

self

a QmiMessageWdsGetDefaultSettingsOutput.

 
-
-
-

Returns

-

the new reference to self -.

-
-

Since: 1.8

-
-
-
-

qmi_message_wds_get_default_settings_output_unref ()

-
void
-qmi_message_wds_get_default_settings_output_unref
-                               (QmiMessageWdsGetDefaultSettingsOutput *self);
-

Atomically decrements the reference count of self - by one. -If the reference count drops to 0, self - is completely disposed.

-
-

Parameters

-
----- - - - - - -

self

a QmiMessageWdsGetDefaultSettingsOutput.

 
-
-

Since: 1.8

-
-
-
-

qmi_message_wds_get_default_settings_output_get_result ()

-
gboolean
-qmi_message_wds_get_default_settings_output_get_result
-                               (QmiMessageWdsGetDefaultSettingsOutput *self,
-                                GError **error);
-

Get the result of the QMI operation.

-
-

Parameters

-
----- - - - - - - - - - - - - -

self

a QmiMessageWdsGetDefaultSettingsOutput.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the QMI operation succeeded, FALSE if error -is set.

-
-

Since: 1.8

-
-
-
-

qmi_message_wds_get_default_settings_output_get_profile_name ()

-
gboolean
-qmi_message_wds_get_default_settings_output_get_profile_name
-                               (QmiMessageWdsGetDefaultSettingsOutput *self,
-                                const gchar **value_profile_name,
-                                GError **error);
-

Get the 'Profile Name' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessageWdsGetDefaultSettingsOutput.

 

value_profile_name

a placeholder for the output constant string, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.8

-
-
-
-

qmi_message_wds_get_default_settings_output_get_pdp_type ()

-
gboolean
-qmi_message_wds_get_default_settings_output_get_pdp_type
-                               (QmiMessageWdsGetDefaultSettingsOutput *self,
-                                QmiWdsPdpType *value_pdp_type,
-                                GError **error);
-

Get the 'PDP Type' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessageWdsGetDefaultSettingsOutput.

 

value_pdp_type

a placeholder for the output QmiWdsPdpType, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.8

-
-
-
-

qmi_message_wds_get_default_settings_output_get_pdp_header_compression_type ()

-
gboolean
-qmi_message_wds_get_default_settings_output_get_pdp_header_compression_type
-                               (QmiMessageWdsGetDefaultSettingsOutput *self,
-                                QmiWdsPdpHeaderCompressionType *value_pdp_header_compression_type,
-                                GError **error);
-

Get the 'PDP Header Compression Type' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessageWdsGetDefaultSettingsOutput.

 

value_pdp_header_compression_type

a placeholder for the output QmiWdsPdpHeaderCompressionType, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.18

-
-
-
-

qmi_message_wds_get_default_settings_output_get_pdp_data_compression_type ()

-
gboolean
-qmi_message_wds_get_default_settings_output_get_pdp_data_compression_type
-                               (QmiMessageWdsGetDefaultSettingsOutput *self,
-                                QmiWdsPdpDataCompressionType *value_pdp_data_compression_type,
-                                GError **error);
-

Get the 'PDP Data Compression Type' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessageWdsGetDefaultSettingsOutput.

 

value_pdp_data_compression_type

a placeholder for the output QmiWdsPdpDataCompressionType, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.18

-
-
-
-

qmi_message_wds_get_default_settings_output_get_apn_name ()

-
gboolean
-qmi_message_wds_get_default_settings_output_get_apn_name
-                               (QmiMessageWdsGetDefaultSettingsOutput *self,
-                                const gchar **value_apn_name,
-                                GError **error);
-

Get the 'APN Name' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessageWdsGetDefaultSettingsOutput.

 

value_apn_name

a placeholder for the output constant string, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.8

-
-
-
-

qmi_message_wds_get_default_settings_output_get_primary_ipv4_dns_address ()

-
gboolean
-qmi_message_wds_get_default_settings_output_get_primary_ipv4_dns_address
-                               (QmiMessageWdsGetDefaultSettingsOutput *self,
-                                guint32 *value_primary_ipv4_dns_address,
-                                GError **error);
-

Get the 'Primary IPv4 DNS Address' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessageWdsGetDefaultSettingsOutput.

 

value_primary_ipv4_dns_address

a placeholder for the output guint32, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.8

-
-
-
-

qmi_message_wds_get_default_settings_output_get_secondary_ipv4_dns_address ()

-
gboolean
-qmi_message_wds_get_default_settings_output_get_secondary_ipv4_dns_address
-                               (QmiMessageWdsGetDefaultSettingsOutput *self,
-                                guint32 *value_secondary_ipv4_dns_address,
-                                GError **error);
-

Get the 'Secondary IPv4 DNS Address' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessageWdsGetDefaultSettingsOutput.

 

value_secondary_ipv4_dns_address

a placeholder for the output guint32, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.8

-
-
-
-

qmi_message_wds_get_default_settings_output_get_umts_requested_qos ()

-
gboolean
-qmi_message_wds_get_default_settings_output_get_umts_requested_qos
-                               (QmiMessageWdsGetDefaultSettingsOutput *self,
-                                QmiWdsTrafficClass *value_umts_requested_qos_traffic_class,
-                                guint32 *value_umts_requested_qos_max_uplink_bitrate,
-                                guint32 *value_umts_requested_qos_max_downlink_bitrate,
-                                guint32 *value_umts_requested_qos_guaranteed_uplink_bitrate,
-                                guint32 *value_umts_requested_qos_guaranteed_downlink_bitrate,
-                                QmiWdsDeliveryOrder *value_umts_requested_qos_qos_delivery_order,
-                                guint32 *value_umts_requested_qos_maximum_sdu_size,
-                                QmiWdsSduErrorRatio *value_umts_requested_qos_sdu_error_ratio,
-                                QmiWdsSduResidualBitErrorRatio *value_umts_requested_qos_residual_bit_error_ratio,
-                                QmiWdsSduErroneousDelivery *value_umts_requested_qos_delivery_erroneous_sdu,
-                                guint32 *value_umts_requested_qos_transfer_delay,
-                                guint32 *value_umts_requested_qos_traffic_handling_priority,
-                                GError **error);
-

Get the 'UMTS Requested QoS' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

self

a QmiMessageWdsGetDefaultSettingsOutput.

 

value_umts_requested_qos_traffic_class

a placeholder for the output QmiWdsTrafficClass, or NULL if not required.

 

value_umts_requested_qos_max_uplink_bitrate

a placeholder for the output guint32, or NULL if not required.

 

value_umts_requested_qos_max_downlink_bitrate

a placeholder for the output guint32, or NULL if not required.

 

value_umts_requested_qos_guaranteed_uplink_bitrate

a placeholder for the output guint32, or NULL if not required.

 

value_umts_requested_qos_guaranteed_downlink_bitrate

a placeholder for the output guint32, or NULL if not required.

 

value_umts_requested_qos_qos_delivery_order

a placeholder for the output QmiWdsDeliveryOrder, or NULL if not required.

 

value_umts_requested_qos_maximum_sdu_size

a placeholder for the output guint32, or NULL if not required.

 

value_umts_requested_qos_sdu_error_ratio

a placeholder for the output QmiWdsSduErrorRatio, or NULL if not required.

 

value_umts_requested_qos_residual_bit_error_ratio

a placeholder for the output QmiWdsSduResidualBitErrorRatio, or NULL if not required.

 

value_umts_requested_qos_delivery_erroneous_sdu

a placeholder for the output QmiWdsSduErroneousDelivery, or NULL if not required.

 

value_umts_requested_qos_transfer_delay

a placeholder for the output guint32, or NULL if not required.

 

value_umts_requested_qos_traffic_handling_priority

a placeholder for the output guint32, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.18

-
-
-
-

qmi_message_wds_get_default_settings_output_get_umts_minimum_qos ()

-
gboolean
-qmi_message_wds_get_default_settings_output_get_umts_minimum_qos
-                               (QmiMessageWdsGetDefaultSettingsOutput *self,
-                                QmiWdsTrafficClass *value_umts_minimum_qos_traffic_class,
-                                guint32 *value_umts_minimum_qos_max_uplink_bitrate,
-                                guint32 *value_umts_minimum_qos_max_downlink_bitrate,
-                                guint32 *value_umts_minimum_qos_guaranteed_uplink_bitrate,
-                                guint32 *value_umts_minimum_qos_guaranteed_downlink_bitrate,
-                                QmiWdsDeliveryOrder *value_umts_minimum_qos_qos_delivery_order,
-                                guint32 *value_umts_minimum_qos_maximum_sdu_size,
-                                QmiWdsSduErrorRatio *value_umts_minimum_qos_sdu_error_ratio,
-                                QmiWdsSduResidualBitErrorRatio *value_umts_minimum_qos_residual_bit_error_ratio,
-                                QmiWdsSduErroneousDelivery *value_umts_minimum_qos_delivery_erroneous_sdu,
-                                guint32 *value_umts_minimum_qos_transfer_delay,
-                                guint32 *value_umts_minimum_qos_traffic_handling_priority,
-                                GError **error);
-

Get the 'UMTS Minimum QoS' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

self

a QmiMessageWdsGetDefaultSettingsOutput.

 

value_umts_minimum_qos_traffic_class

a placeholder for the output QmiWdsTrafficClass, or NULL if not required.

 

value_umts_minimum_qos_max_uplink_bitrate

a placeholder for the output guint32, or NULL if not required.

 

value_umts_minimum_qos_max_downlink_bitrate

a placeholder for the output guint32, or NULL if not required.

 

value_umts_minimum_qos_guaranteed_uplink_bitrate

a placeholder for the output guint32, or NULL if not required.

 

value_umts_minimum_qos_guaranteed_downlink_bitrate

a placeholder for the output guint32, or NULL if not required.

 

value_umts_minimum_qos_qos_delivery_order

a placeholder for the output QmiWdsDeliveryOrder, or NULL if not required.

 

value_umts_minimum_qos_maximum_sdu_size

a placeholder for the output guint32, or NULL if not required.

 

value_umts_minimum_qos_sdu_error_ratio

a placeholder for the output QmiWdsSduErrorRatio, or NULL if not required.

 

value_umts_minimum_qos_residual_bit_error_ratio

a placeholder for the output QmiWdsSduResidualBitErrorRatio, or NULL if not required.

 

value_umts_minimum_qos_delivery_erroneous_sdu

a placeholder for the output QmiWdsSduErroneousDelivery, or NULL if not required.

 

value_umts_minimum_qos_transfer_delay

a placeholder for the output guint32, or NULL if not required.

 

value_umts_minimum_qos_traffic_handling_priority

a placeholder for the output guint32, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.18

-
-
-
-

qmi_message_wds_get_default_settings_output_get_gprs_requested_qos ()

-
gboolean
-qmi_message_wds_get_default_settings_output_get_gprs_requested_qos
-                               (QmiMessageWdsGetDefaultSettingsOutput *self,
-                                guint32 *value_gprs_requested_qos_precedence_class,
-                                guint32 *value_gprs_requested_qos_delay_class,
-                                guint32 *value_gprs_requested_qos_reliability_class,
-                                guint32 *value_gprs_requested_qos_peak_throughput_class,
-                                guint32 *value_gprs_requested_qos_mean_throughput_class,
-                                GError **error);
-

Get the 'GPRS Requested QoS' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

self

a QmiMessageWdsGetDefaultSettingsOutput.

 

value_gprs_requested_qos_precedence_class

a placeholder for the output guint32, or NULL if not required.

 

value_gprs_requested_qos_delay_class

a placeholder for the output guint32, or NULL if not required.

 

value_gprs_requested_qos_reliability_class

a placeholder for the output guint32, or NULL if not required.

 

value_gprs_requested_qos_peak_throughput_class

a placeholder for the output guint32, or NULL if not required.

 

value_gprs_requested_qos_mean_throughput_class

a placeholder for the output guint32, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.8

-
-
-
-

qmi_message_wds_get_default_settings_output_get_gprs_minimum_qos ()

-
gboolean
-qmi_message_wds_get_default_settings_output_get_gprs_minimum_qos
-                               (QmiMessageWdsGetDefaultSettingsOutput *self,
-                                guint32 *value_gprs_minimum_qos_precedence_class,
-                                guint32 *value_gprs_minimum_qos_delay_class,
-                                guint32 *value_gprs_minimum_qos_reliability_class,
-                                guint32 *value_gprs_minimum_qos_peak_throughput_class,
-                                guint32 *value_gprs_minimum_qos_mean_throughput_class,
-                                GError **error);
-

Get the 'GPRS Minimum QoS' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

self

a QmiMessageWdsGetDefaultSettingsOutput.

 

value_gprs_minimum_qos_precedence_class

a placeholder for the output guint32, or NULL if not required.

 

value_gprs_minimum_qos_delay_class

a placeholder for the output guint32, or NULL if not required.

 

value_gprs_minimum_qos_reliability_class

a placeholder for the output guint32, or NULL if not required.

 

value_gprs_minimum_qos_peak_throughput_class

a placeholder for the output guint32, or NULL if not required.

 

value_gprs_minimum_qos_mean_throughput_class

a placeholder for the output guint32, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.8

-
-
-
-

qmi_message_wds_get_default_settings_output_get_username ()

-
gboolean
-qmi_message_wds_get_default_settings_output_get_username
-                               (QmiMessageWdsGetDefaultSettingsOutput *self,
-                                const gchar **value_username,
-                                GError **error);
-

Get the 'Username' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessageWdsGetDefaultSettingsOutput.

 

value_username

a placeholder for the output constant string, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.8

-
-
-
-

qmi_message_wds_get_default_settings_output_get_password ()

-
gboolean
-qmi_message_wds_get_default_settings_output_get_password
-                               (QmiMessageWdsGetDefaultSettingsOutput *self,
-                                const gchar **value_password,
-                                GError **error);
-

Get the 'Password' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessageWdsGetDefaultSettingsOutput.

 

value_password

a placeholder for the output constant string, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.8

-
-
-
-

qmi_message_wds_get_default_settings_output_get_authentication ()

-
gboolean
-qmi_message_wds_get_default_settings_output_get_authentication
-                               (QmiMessageWdsGetDefaultSettingsOutput *self,
-                                QmiWdsAuthentication *value_authentication,
-                                GError **error);
-

Get the 'Authentication' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessageWdsGetDefaultSettingsOutput.

 

value_authentication

a placeholder for the output QmiWdsAuthentication, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.8

-
-
-
-

qmi_message_wds_get_default_settings_output_get_ipv4_address_preference ()

-
gboolean
-qmi_message_wds_get_default_settings_output_get_ipv4_address_preference
-                               (QmiMessageWdsGetDefaultSettingsOutput *self,
-                                guint32 *value_ipv4_address_preference,
-                                GError **error);
-

Get the 'IPv4 Address Preference' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessageWdsGetDefaultSettingsOutput.

 

value_ipv4_address_preference

a placeholder for the output guint32, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.8

-
-
-
-

qmi_message_wds_get_default_settings_output_get_pcscf_address_using_pco ()

-
gboolean
-qmi_message_wds_get_default_settings_output_get_pcscf_address_using_pco
-                               (QmiMessageWdsGetDefaultSettingsOutput *self,
-                                gboolean *value_pcscf_address_using_pco,
-                                GError **error);
-

Get the 'PCSCF Address Using PCO' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessageWdsGetDefaultSettingsOutput.

 

value_pcscf_address_using_pco

a placeholder for the output gboolean, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.8

-
-
-
-

qmi_message_wds_get_default_settings_output_get_pcscf_address_using_dhcp ()

-
gboolean
-qmi_message_wds_get_default_settings_output_get_pcscf_address_using_dhcp
-                               (QmiMessageWdsGetDefaultSettingsOutput *self,
-                                gboolean *value_pcscf_address_using_dhcp,
-                                GError **error);
-

Get the 'PCSCF Address Using DHCP' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessageWdsGetDefaultSettingsOutput.

 

value_pcscf_address_using_dhcp

a placeholder for the output gboolean, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.8

-
-
-
-

qmi_message_wds_get_default_settings_output_get_imcn_flag ()

-
gboolean
-qmi_message_wds_get_default_settings_output_get_imcn_flag
-                               (QmiMessageWdsGetDefaultSettingsOutput *self,
-                                gboolean *value_imcn_flag,
-                                GError **error);
-

Get the 'IMCN Flag' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessageWdsGetDefaultSettingsOutput.

 

value_imcn_flag

a placeholder for the output gboolean, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.8

-
-
-
-

qmi_message_wds_get_default_settings_output_get_pdp_context_number ()

-
gboolean
-qmi_message_wds_get_default_settings_output_get_pdp_context_number
-                               (QmiMessageWdsGetDefaultSettingsOutput *self,
-                                guint8 *value_pdp_context_number,
-                                GError **error);
-

Get the 'PDP Context Number' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessageWdsGetDefaultSettingsOutput.

 

value_pdp_context_number

a placeholder for the output guint8, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.18

-
-
-
-

qmi_message_wds_get_default_settings_output_get_pdp_context_secondary_flag ()

-
gboolean
-qmi_message_wds_get_default_settings_output_get_pdp_context_secondary_flag
-                               (QmiMessageWdsGetDefaultSettingsOutput *self,
-                                gboolean *value_pdp_context_secondary_flag,
-                                GError **error);
-

Get the 'PDP Context Secondary Flag' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessageWdsGetDefaultSettingsOutput.

 

value_pdp_context_secondary_flag

a placeholder for the output gboolean, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.18

-
-
-
-

qmi_message_wds_get_default_settings_output_get_pdp_context_primary_id ()

-
gboolean
-qmi_message_wds_get_default_settings_output_get_pdp_context_primary_id
-                               (QmiMessageWdsGetDefaultSettingsOutput *self,
-                                guint8 *value_pdp_context_primary_id,
-                                GError **error);
-

Get the 'PDP Context Primary ID' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessageWdsGetDefaultSettingsOutput.

 

value_pdp_context_primary_id

a placeholder for the output guint8, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.18

-
-
-
-

qmi_message_wds_get_default_settings_output_get_ipv6_address_preference ()

-
gboolean
-qmi_message_wds_get_default_settings_output_get_ipv6_address_preference
-                               (QmiMessageWdsGetDefaultSettingsOutput *self,
-                                GArray **value_ipv6_address_preference_address,
-                                GError **error);
-

Get the 'IPv6 Address Preference' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessageWdsGetDefaultSettingsOutput.

 

value_ipv6_address_preference_address

a placeholder for the output GArray of guint16 elements, or NULL if not required. Do not free it, it is owned by self -.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.8

-
-
-
-

qmi_message_wds_get_default_settings_output_get_umts_requested_qos_with_signaling_indication_flag ()

-
gboolean
-qmi_message_wds_get_default_settings_output_get_umts_requested_qos_with_signaling_indication_flag
-                               (QmiMessageWdsGetDefaultSettingsOutput *self,
-                                QmiWdsTrafficClass *value_umts_requested_qos_with_signaling_indication_flag_traffic_class,
-                                guint32 *value_umts_requested_qos_with_signaling_indication_flag_max_uplink_bitrate,
-                                guint32 *value_umts_requested_qos_with_signaling_indication_flag_max_downlink_bitrate,
-                                guint32 *value_umts_requested_qos_with_signaling_indication_flag_guaranteed_uplink_bitrate,
-                                guint32 *value_umts_requested_qos_with_signaling_indication_flag_guaranteed_downlink_bitrate,
-                                QmiWdsDeliveryOrder *value_umts_requested_qos_with_signaling_indication_flag_qos_delivery_order,
-                                guint32 *value_umts_requested_qos_with_signaling_indication_flag_maximum_sdu_size,
-                                QmiWdsSduErrorRatio *value_umts_requested_qos_with_signaling_indication_flag_sdu_error_ratio,
-                                QmiWdsSduResidualBitErrorRatio *value_umts_requested_qos_with_signaling_indication_flag_residual_bit_error_ratio,
-                                QmiWdsSduErroneousDelivery *value_umts_requested_qos_with_signaling_indication_flag_delivery_erroneous_sdu,
-                                guint32 *value_umts_requested_qos_with_signaling_indication_flag_transfer_delay,
-                                guint32 *value_umts_requested_qos_with_signaling_indication_flag_traffic_handling_priority,
-                                gint8 *value_umts_requested_qos_with_signaling_indication_flag_signaling_indication,
-                                GError **error);
-

Get the 'UMTS Requested QoS With Signaling Indication Flag' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

self

a QmiMessageWdsGetDefaultSettingsOutput.

 

value_umts_requested_qos_with_signaling_indication_flag_traffic_class

a placeholder for the output QmiWdsTrafficClass, or NULL if not required.

 

value_umts_requested_qos_with_signaling_indication_flag_max_uplink_bitrate

a placeholder for the output guint32, or NULL if not required.

 

value_umts_requested_qos_with_signaling_indication_flag_max_downlink_bitrate

a placeholder for the output guint32, or NULL if not required.

 

value_umts_requested_qos_with_signaling_indication_flag_guaranteed_uplink_bitrate

a placeholder for the output guint32, or NULL if not required.

 

value_umts_requested_qos_with_signaling_indication_flag_guaranteed_downlink_bitrate

a placeholder for the output guint32, or NULL if not required.

 

value_umts_requested_qos_with_signaling_indication_flag_qos_delivery_order

a placeholder for the output QmiWdsDeliveryOrder, or NULL if not required.

 

value_umts_requested_qos_with_signaling_indication_flag_maximum_sdu_size

a placeholder for the output guint32, or NULL if not required.

 

value_umts_requested_qos_with_signaling_indication_flag_sdu_error_ratio

a placeholder for the output QmiWdsSduErrorRatio, or NULL if not required.

 

value_umts_requested_qos_with_signaling_indication_flag_residual_bit_error_ratio

a placeholder for the output QmiWdsSduResidualBitErrorRatio, or NULL if not required.

 

value_umts_requested_qos_with_signaling_indication_flag_delivery_erroneous_sdu

a placeholder for the output QmiWdsSduErroneousDelivery, or NULL if not required.

 

value_umts_requested_qos_with_signaling_indication_flag_transfer_delay

a placeholder for the output guint32, or NULL if not required.

 

value_umts_requested_qos_with_signaling_indication_flag_traffic_handling_priority

a placeholder for the output guint32, or NULL if not required.

 

value_umts_requested_qos_with_signaling_indication_flag_signaling_indication

a placeholder for the output gint8, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.18

-
-
-
-

qmi_message_wds_get_default_settings_output_get_umts_minimum_qos_with_signaling_indication_flag ()

-
gboolean
-qmi_message_wds_get_default_settings_output_get_umts_minimum_qos_with_signaling_indication_flag
-                               (QmiMessageWdsGetDefaultSettingsOutput *self,
-                                QmiWdsTrafficClass *value_umts_minimum_qos_with_signaling_indication_flag_traffic_class,
-                                guint32 *value_umts_minimum_qos_with_signaling_indication_flag_max_uplink_bitrate,
-                                guint32 *value_umts_minimum_qos_with_signaling_indication_flag_max_downlink_bitrate,
-                                guint32 *value_umts_minimum_qos_with_signaling_indication_flag_guaranteed_uplink_bitrate,
-                                guint32 *value_umts_minimum_qos_with_signaling_indication_flag_guaranteed_downlink_bitrate,
-                                QmiWdsDeliveryOrder *value_umts_minimum_qos_with_signaling_indication_flag_qos_delivery_order,
-                                guint32 *value_umts_minimum_qos_with_signaling_indication_flag_maximum_sdu_size,
-                                QmiWdsSduErrorRatio *value_umts_minimum_qos_with_signaling_indication_flag_sdu_error_ratio,
-                                QmiWdsSduResidualBitErrorRatio *value_umts_minimum_qos_with_signaling_indication_flag_residual_bit_error_ratio,
-                                QmiWdsSduErroneousDelivery *value_umts_minimum_qos_with_signaling_indication_flag_delivery_erroneous_sdu,
-                                guint32 *value_umts_minimum_qos_with_signaling_indication_flag_transfer_delay,
-                                guint32 *value_umts_minimum_qos_with_signaling_indication_flag_traffic_handling_priority,
-                                gint8 *value_umts_minimum_qos_with_signaling_indication_flag_signaling_indication,
-                                GError **error);
-

Get the 'UMTS Minimum QoS With Signaling Indication Flag' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

self

a QmiMessageWdsGetDefaultSettingsOutput.

 

value_umts_minimum_qos_with_signaling_indication_flag_traffic_class

a placeholder for the output QmiWdsTrafficClass, or NULL if not required.

 

value_umts_minimum_qos_with_signaling_indication_flag_max_uplink_bitrate

a placeholder for the output guint32, or NULL if not required.

 

value_umts_minimum_qos_with_signaling_indication_flag_max_downlink_bitrate

a placeholder for the output guint32, or NULL if not required.

 

value_umts_minimum_qos_with_signaling_indication_flag_guaranteed_uplink_bitrate

a placeholder for the output guint32, or NULL if not required.

 

value_umts_minimum_qos_with_signaling_indication_flag_guaranteed_downlink_bitrate

a placeholder for the output guint32, or NULL if not required.

 

value_umts_minimum_qos_with_signaling_indication_flag_qos_delivery_order

a placeholder for the output QmiWdsDeliveryOrder, or NULL if not required.

 

value_umts_minimum_qos_with_signaling_indication_flag_maximum_sdu_size

a placeholder for the output guint32, or NULL if not required.

 

value_umts_minimum_qos_with_signaling_indication_flag_sdu_error_ratio

a placeholder for the output QmiWdsSduErrorRatio, or NULL if not required.

 

value_umts_minimum_qos_with_signaling_indication_flag_residual_bit_error_ratio

a placeholder for the output QmiWdsSduResidualBitErrorRatio, or NULL if not required.

 

value_umts_minimum_qos_with_signaling_indication_flag_delivery_erroneous_sdu

a placeholder for the output QmiWdsSduErroneousDelivery, or NULL if not required.

 

value_umts_minimum_qos_with_signaling_indication_flag_transfer_delay

a placeholder for the output guint32, or NULL if not required.

 

value_umts_minimum_qos_with_signaling_indication_flag_traffic_handling_priority

a placeholder for the output guint32, or NULL if not required.

 

value_umts_minimum_qos_with_signaling_indication_flag_signaling_indication

a placeholder for the output gint8, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.18

-
-
-
-

qmi_message_wds_get_default_settings_output_get_ipv6_primary_dns_address_preference ()

-
gboolean
-qmi_message_wds_get_default_settings_output_get_ipv6_primary_dns_address_preference
-                               (QmiMessageWdsGetDefaultSettingsOutput *self,
-                                GArray **value_ipv6_primary_dns_address_preference,
-                                GError **error);
-

Get the 'IPv6 Primary DNS Address Preference' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessageWdsGetDefaultSettingsOutput.

 

value_ipv6_primary_dns_address_preference

a placeholder for the output GArray of guint16 elements, or NULL if not required. Do not free it, it is owned by self -.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.8

-
-
-
-

qmi_message_wds_get_default_settings_output_get_ipv6_secondary_dns_address_preference ()

-
gboolean
-qmi_message_wds_get_default_settings_output_get_ipv6_secondary_dns_address_preference
-                               (QmiMessageWdsGetDefaultSettingsOutput *self,
-                                GArray **value_ipv6_secondary_dns_address_preference,
-                                GError **error);
-

Get the 'IPv6 Secondary DNS Address Preference' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessageWdsGetDefaultSettingsOutput.

 

value_ipv6_secondary_dns_address_preference

a placeholder for the output GArray of guint16 elements, or NULL if not required. Do not free it, it is owned by self -.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.8

-
-
-
-

qmi_message_wds_get_default_settings_output_get_lte_qos_parameters ()

-
gboolean
-qmi_message_wds_get_default_settings_output_get_lte_qos_parameters
-                               (QmiMessageWdsGetDefaultSettingsOutput *self,
-                                QmiWdsQosClassIdentifier *value_lte_qos_parameters_qos_class_identifier,
-                                guint32 *value_lte_qos_parameters_guaranteed_downlink_bitrate,
-                                guint32 *value_lte_qos_parameters_max_downlink_bitrate,
-                                guint32 *value_lte_qos_parameters_guaranteed_uplink_bitrate,
-                                guint32 *value_lte_qos_parameters_max_uplink_bitrate,
-                                GError **error);
-

Get the 'LTE QoS Parameters' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

self

a QmiMessageWdsGetDefaultSettingsOutput.

 

value_lte_qos_parameters_qos_class_identifier

a placeholder for the output QmiWdsQosClassIdentifier, or NULL if not required.

 

value_lte_qos_parameters_guaranteed_downlink_bitrate

a placeholder for the output guint32, or NULL if not required.

 

value_lte_qos_parameters_max_downlink_bitrate

a placeholder for the output guint32, or NULL if not required.

 

value_lte_qos_parameters_guaranteed_uplink_bitrate

a placeholder for the output guint32, or NULL if not required.

 

value_lte_qos_parameters_max_uplink_bitrate

a placeholder for the output guint32, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.18

-
-
-
-

qmi_message_wds_get_default_settings_output_get_extended_error_code ()

-
gboolean
-qmi_message_wds_get_default_settings_output_get_extended_error_code
-                               (QmiMessageWdsGetDefaultSettingsOutput *self,
-                                QmiWdsDsProfileError *value_extended_error_code,
-                                GError **error);
-

Get the 'Extended Error Code' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessageWdsGetDefaultSettingsOutput.

 

value_extended_error_code

a placeholder for the output QmiWdsDsProfileError, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.8

-
-
-
-

qmi_client_wds_get_default_settings ()

-
void
-qmi_client_wds_get_default_settings (QmiClientWds *self,
-                                     QmiMessageWdsGetDefaultSettingsInput *input,
-                                     guint timeout,
-                                     GCancellable *cancellable,
-                                     GAsyncReadyCallback callback,
-                                     gpointer user_data);
-

Asynchronously sends a Get Default Settings request to the device.

-

When the operation is finished, callback - will be invoked in the thread-default main loop of the thread you are calling this method from.

-

You can then call qmi_client_wds_get_default_settings_finish() to get the result of the operation.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

self

a QmiClientWds.

 

input

a QmiMessageWdsGetDefaultSettingsInput.

 

timeout

maximum time to wait for the method to complete, in seconds.

 

cancellable

a GCancellable or NULL.

 

callback

a GAsyncReadyCallback to call when the request is satisfied.

 

user_data

user data to pass to callback -.

 
-
-

Since: 1.8

-
-
-
-

qmi_client_wds_get_default_settings_finish ()

-
QmiMessageWdsGetDefaultSettingsOutput *
-qmi_client_wds_get_default_settings_finish
-                               (QmiClientWds *self,
-                                GAsyncResult *res,
-                                GError **error);
-

Finishes an async operation started with qmi_client_wds_get_default_settings().

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiClientWds.

 

res

the GAsyncResult obtained from the GAsyncReadyCallback passed to qmi_client_wds_get_default_settings().

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

a QmiMessageWdsGetDefaultSettingsOutput, or NULL if error -is set. The returned value should be freed with qmi_message_wds_get_default_settings_output_unref().

-
-

Since: 1.8

-
-
-
-

Types and Values

-
-

QmiMessageWdsGetDefaultSettingsInput

-
typedef struct _QmiMessageWdsGetDefaultSettingsInput QmiMessageWdsGetDefaultSettingsInput;
-

The QmiMessageWdsGetDefaultSettingsInput structure contains private data and should only be accessed -using the provided API.

-

Since: 1.8

-
-
-
-

QmiMessageWdsGetDefaultSettingsOutput

-
typedef struct _QmiMessageWdsGetDefaultSettingsOutput QmiMessageWdsGetDefaultSettingsOutput;
-

The QmiMessageWdsGetDefaultSettingsOutput structure contains private data and should only be accessed -using the provided API.

-

Since: 1.8

-
-
-
- - - \ No newline at end of file diff -Nru libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-WDS-Get-Default-Settings-request.html libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-WDS-Get-Default-Settings-request.html --- libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-WDS-Get-Default-Settings-request.html 1970-01-01 01:00:00.000000000 +0100 +++ libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-WDS-Get-Default-Settings-request.html 2019-01-08 15:19:02.000000000 +0100 @@ -0,0 +1,2310 @@ + + + + +WDS Get Default Settings request: libqmi-glib Reference Manual + + + + + + + + + + + + + + + + +
+
+
+ + +
+

WDS Get Default Settings request

+

WDS Get Default Settings request

+
+
+

Functions

+
++++ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+QmiMessageWdsGetDefaultSettingsInput * + +qmi_message_wds_get_default_settings_input_new () +
+QmiMessageWdsGetDefaultSettingsInput * + +qmi_message_wds_get_default_settings_input_ref () +
+void + +qmi_message_wds_get_default_settings_input_unref () +
+gboolean + +qmi_message_wds_get_default_settings_input_get_profile_type () +
+gboolean + +qmi_message_wds_get_default_settings_input_set_profile_type () +
+QmiMessageWdsGetDefaultSettingsOutput * + +qmi_message_wds_get_default_settings_output_ref () +
+void + +qmi_message_wds_get_default_settings_output_unref () +
+gboolean + +qmi_message_wds_get_default_settings_output_get_result () +
+gboolean + +qmi_message_wds_get_default_settings_output_get_profile_name () +
+gboolean + +qmi_message_wds_get_default_settings_output_get_pdp_type () +
+gboolean + +qmi_message_wds_get_default_settings_output_get_pdp_header_compression_type () +
+gboolean + +qmi_message_wds_get_default_settings_output_get_pdp_data_compression_type () +
+gboolean + +qmi_message_wds_get_default_settings_output_get_apn_name () +
+gboolean + +qmi_message_wds_get_default_settings_output_get_primary_ipv4_dns_address () +
+gboolean + +qmi_message_wds_get_default_settings_output_get_secondary_ipv4_dns_address () +
+gboolean + +qmi_message_wds_get_default_settings_output_get_umts_requested_qos () +
+gboolean + +qmi_message_wds_get_default_settings_output_get_umts_minimum_qos () +
+gboolean + +qmi_message_wds_get_default_settings_output_get_gprs_requested_qos () +
+gboolean + +qmi_message_wds_get_default_settings_output_get_gprs_minimum_qos () +
+gboolean + +qmi_message_wds_get_default_settings_output_get_username () +
+gboolean + +qmi_message_wds_get_default_settings_output_get_password () +
+gboolean + +qmi_message_wds_get_default_settings_output_get_authentication () +
+gboolean + +qmi_message_wds_get_default_settings_output_get_ipv4_address_preference () +
+gboolean + +qmi_message_wds_get_default_settings_output_get_pcscf_address_using_pco () +
+gboolean + +qmi_message_wds_get_default_settings_output_get_pcscf_address_using_dhcp () +
+gboolean + +qmi_message_wds_get_default_settings_output_get_imcn_flag () +
+gboolean + +qmi_message_wds_get_default_settings_output_get_pdp_context_number () +
+gboolean + +qmi_message_wds_get_default_settings_output_get_pdp_context_secondary_flag () +
+gboolean + +qmi_message_wds_get_default_settings_output_get_pdp_context_primary_id () +
+gboolean + +qmi_message_wds_get_default_settings_output_get_ipv6_address_preference () +
+gboolean + +qmi_message_wds_get_default_settings_output_get_umts_requested_qos_with_signaling_indication_flag () +
+gboolean + +qmi_message_wds_get_default_settings_output_get_umts_minimum_qos_with_signaling_indication_flag () +
+gboolean + +qmi_message_wds_get_default_settings_output_get_ipv6_primary_dns_address_preference () +
+gboolean + +qmi_message_wds_get_default_settings_output_get_ipv6_secondary_dns_address_preference () +
+gboolean + +qmi_message_wds_get_default_settings_output_get_lte_qos_parameters () +
+gboolean + +qmi_message_wds_get_default_settings_output_get_extended_error_code () +
+void + +qmi_client_wds_get_default_settings () +
+QmiMessageWdsGetDefaultSettingsOutput * + +qmi_client_wds_get_default_settings_finish () +
+
+
+

Types and Values

+ +
+
+

Object Hierarchy

+
    GBoxed
+    ├── QmiMessageWdsGetDefaultSettingsInput
+    ╰── QmiMessageWdsGetDefaultSettingsOutput
+
+
+
+

Description

+
+
+

Functions

+
+

qmi_message_wds_get_default_settings_input_new ()

+
QmiMessageWdsGetDefaultSettingsInput *
+qmi_message_wds_get_default_settings_input_new
+                               (void);
+

Allocates a new QmiMessageWdsGetDefaultSettingsInput.

+
+

Returns

+

the newly created QmiMessageWdsGetDefaultSettingsInput. The returned value should be freed with qmi_message_wds_get_default_settings_input_unref().

+
+

Since: 1.8

+
+
+
+

qmi_message_wds_get_default_settings_input_ref ()

+
QmiMessageWdsGetDefaultSettingsInput *
+qmi_message_wds_get_default_settings_input_ref
+                               (QmiMessageWdsGetDefaultSettingsInput *self);
+

Atomically increments the reference count of self + by one.

+
+

Parameters

+
+++++ + + + + + +

self

a QmiMessageWdsGetDefaultSettingsInput.

 
+
+
+

Returns

+

the new reference to self +.

+
+

Since: 1.8

+
+
+
+

qmi_message_wds_get_default_settings_input_unref ()

+
void
+qmi_message_wds_get_default_settings_input_unref
+                               (QmiMessageWdsGetDefaultSettingsInput *self);
+

Atomically decrements the reference count of self + by one. +If the reference count drops to 0, self + is completely disposed.

+
+

Parameters

+
+++++ + + + + + +

self

a QmiMessageWdsGetDefaultSettingsInput.

 
+
+

Since: 1.8

+
+
+
+

qmi_message_wds_get_default_settings_input_get_profile_type ()

+
gboolean
+qmi_message_wds_get_default_settings_input_get_profile_type
+                               (QmiMessageWdsGetDefaultSettingsInput *self,
+                                QmiWdsProfileType *value_profile_type,
+                                GError **error);
+

Get the 'Profile Type' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageWdsGetDefaultSettingsInput.

 

value_profile_type

a placeholder for the output QmiWdsProfileType, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.8

+
+
+
+

qmi_message_wds_get_default_settings_input_set_profile_type ()

+
gboolean
+qmi_message_wds_get_default_settings_input_set_profile_type
+                               (QmiMessageWdsGetDefaultSettingsInput *self,
+                                QmiWdsProfileType value_profile_type,
+                                GError **error);
+

Set the 'Profile Type' field in the message.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageWdsGetDefaultSettingsInput.

 

value_profile_type

a QmiWdsProfileType.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if value +was successfully set, FALSE otherwise.

+
+

Since: 1.8

+
+
+
+

qmi_message_wds_get_default_settings_output_ref ()

+
QmiMessageWdsGetDefaultSettingsOutput *
+qmi_message_wds_get_default_settings_output_ref
+                               (QmiMessageWdsGetDefaultSettingsOutput *self);
+

Atomically increments the reference count of self + by one.

+
+

Parameters

+
+++++ + + + + + +

self

a QmiMessageWdsGetDefaultSettingsOutput.

 
+
+
+

Returns

+

the new reference to self +.

+
+

Since: 1.8

+
+
+
+

qmi_message_wds_get_default_settings_output_unref ()

+
void
+qmi_message_wds_get_default_settings_output_unref
+                               (QmiMessageWdsGetDefaultSettingsOutput *self);
+

Atomically decrements the reference count of self + by one. +If the reference count drops to 0, self + is completely disposed.

+
+

Parameters

+
+++++ + + + + + +

self

a QmiMessageWdsGetDefaultSettingsOutput.

 
+
+

Since: 1.8

+
+
+
+

qmi_message_wds_get_default_settings_output_get_result ()

+
gboolean
+qmi_message_wds_get_default_settings_output_get_result
+                               (QmiMessageWdsGetDefaultSettingsOutput *self,
+                                GError **error);
+

Get the result of the QMI operation.

+
+

Parameters

+
+++++ + + + + + + + + + + + + +

self

a QmiMessageWdsGetDefaultSettingsOutput.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the QMI operation succeeded, FALSE if error +is set.

+
+

Since: 1.8

+
+
+
+

qmi_message_wds_get_default_settings_output_get_profile_name ()

+
gboolean
+qmi_message_wds_get_default_settings_output_get_profile_name
+                               (QmiMessageWdsGetDefaultSettingsOutput *self,
+                                const gchar **value_profile_name,
+                                GError **error);
+

Get the 'Profile Name' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageWdsGetDefaultSettingsOutput.

 

value_profile_name

a placeholder for the output constant string, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.8

+
+
+
+

qmi_message_wds_get_default_settings_output_get_pdp_type ()

+
gboolean
+qmi_message_wds_get_default_settings_output_get_pdp_type
+                               (QmiMessageWdsGetDefaultSettingsOutput *self,
+                                QmiWdsPdpType *value_pdp_type,
+                                GError **error);
+

Get the 'PDP Type' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageWdsGetDefaultSettingsOutput.

 

value_pdp_type

a placeholder for the output QmiWdsPdpType, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.8

+
+
+
+

qmi_message_wds_get_default_settings_output_get_pdp_header_compression_type ()

+
gboolean
+qmi_message_wds_get_default_settings_output_get_pdp_header_compression_type
+                               (QmiMessageWdsGetDefaultSettingsOutput *self,
+                                QmiWdsPdpHeaderCompressionType *value_pdp_header_compression_type,
+                                GError **error);
+

Get the 'PDP Header Compression Type' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageWdsGetDefaultSettingsOutput.

 

value_pdp_header_compression_type

a placeholder for the output QmiWdsPdpHeaderCompressionType, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.18

+
+
+
+

qmi_message_wds_get_default_settings_output_get_pdp_data_compression_type ()

+
gboolean
+qmi_message_wds_get_default_settings_output_get_pdp_data_compression_type
+                               (QmiMessageWdsGetDefaultSettingsOutput *self,
+                                QmiWdsPdpDataCompressionType *value_pdp_data_compression_type,
+                                GError **error);
+

Get the 'PDP Data Compression Type' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageWdsGetDefaultSettingsOutput.

 

value_pdp_data_compression_type

a placeholder for the output QmiWdsPdpDataCompressionType, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.18

+
+
+
+

qmi_message_wds_get_default_settings_output_get_apn_name ()

+
gboolean
+qmi_message_wds_get_default_settings_output_get_apn_name
+                               (QmiMessageWdsGetDefaultSettingsOutput *self,
+                                const gchar **value_apn_name,
+                                GError **error);
+

Get the 'APN Name' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageWdsGetDefaultSettingsOutput.

 

value_apn_name

a placeholder for the output constant string, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.8

+
+
+
+

qmi_message_wds_get_default_settings_output_get_primary_ipv4_dns_address ()

+
gboolean
+qmi_message_wds_get_default_settings_output_get_primary_ipv4_dns_address
+                               (QmiMessageWdsGetDefaultSettingsOutput *self,
+                                guint32 *value_primary_ipv4_dns_address,
+                                GError **error);
+

Get the 'Primary IPv4 DNS Address' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageWdsGetDefaultSettingsOutput.

 

value_primary_ipv4_dns_address

a placeholder for the output guint32, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.8

+
+
+
+

qmi_message_wds_get_default_settings_output_get_secondary_ipv4_dns_address ()

+
gboolean
+qmi_message_wds_get_default_settings_output_get_secondary_ipv4_dns_address
+                               (QmiMessageWdsGetDefaultSettingsOutput *self,
+                                guint32 *value_secondary_ipv4_dns_address,
+                                GError **error);
+

Get the 'Secondary IPv4 DNS Address' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageWdsGetDefaultSettingsOutput.

 

value_secondary_ipv4_dns_address

a placeholder for the output guint32, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.8

+
+
+
+

qmi_message_wds_get_default_settings_output_get_umts_requested_qos ()

+
gboolean
+qmi_message_wds_get_default_settings_output_get_umts_requested_qos
+                               (QmiMessageWdsGetDefaultSettingsOutput *self,
+                                QmiWdsTrafficClass *value_umts_requested_qos_traffic_class,
+                                guint32 *value_umts_requested_qos_max_uplink_bitrate,
+                                guint32 *value_umts_requested_qos_max_downlink_bitrate,
+                                guint32 *value_umts_requested_qos_guaranteed_uplink_bitrate,
+                                guint32 *value_umts_requested_qos_guaranteed_downlink_bitrate,
+                                QmiWdsDeliveryOrder *value_umts_requested_qos_qos_delivery_order,
+                                guint32 *value_umts_requested_qos_maximum_sdu_size,
+                                QmiWdsSduErrorRatio *value_umts_requested_qos_sdu_error_ratio,
+                                QmiWdsSduResidualBitErrorRatio *value_umts_requested_qos_residual_bit_error_ratio,
+                                QmiWdsSduErroneousDelivery *value_umts_requested_qos_delivery_erroneous_sdu,
+                                guint32 *value_umts_requested_qos_transfer_delay,
+                                guint32 *value_umts_requested_qos_traffic_handling_priority,
+                                GError **error);
+

Get the 'UMTS Requested QoS' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

self

a QmiMessageWdsGetDefaultSettingsOutput.

 

value_umts_requested_qos_traffic_class

a placeholder for the output QmiWdsTrafficClass, or NULL if not required.

 

value_umts_requested_qos_max_uplink_bitrate

a placeholder for the output guint32, or NULL if not required.

 

value_umts_requested_qos_max_downlink_bitrate

a placeholder for the output guint32, or NULL if not required.

 

value_umts_requested_qos_guaranteed_uplink_bitrate

a placeholder for the output guint32, or NULL if not required.

 

value_umts_requested_qos_guaranteed_downlink_bitrate

a placeholder for the output guint32, or NULL if not required.

 

value_umts_requested_qos_qos_delivery_order

a placeholder for the output QmiWdsDeliveryOrder, or NULL if not required.

 

value_umts_requested_qos_maximum_sdu_size

a placeholder for the output guint32, or NULL if not required.

 

value_umts_requested_qos_sdu_error_ratio

a placeholder for the output QmiWdsSduErrorRatio, or NULL if not required.

 

value_umts_requested_qos_residual_bit_error_ratio

a placeholder for the output QmiWdsSduResidualBitErrorRatio, or NULL if not required.

 

value_umts_requested_qos_delivery_erroneous_sdu

a placeholder for the output QmiWdsSduErroneousDelivery, or NULL if not required.

 

value_umts_requested_qos_transfer_delay

a placeholder for the output guint32, or NULL if not required.

 

value_umts_requested_qos_traffic_handling_priority

a placeholder for the output guint32, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.18

+
+
+
+

qmi_message_wds_get_default_settings_output_get_umts_minimum_qos ()

+
gboolean
+qmi_message_wds_get_default_settings_output_get_umts_minimum_qos
+                               (QmiMessageWdsGetDefaultSettingsOutput *self,
+                                QmiWdsTrafficClass *value_umts_minimum_qos_traffic_class,
+                                guint32 *value_umts_minimum_qos_max_uplink_bitrate,
+                                guint32 *value_umts_minimum_qos_max_downlink_bitrate,
+                                guint32 *value_umts_minimum_qos_guaranteed_uplink_bitrate,
+                                guint32 *value_umts_minimum_qos_guaranteed_downlink_bitrate,
+                                QmiWdsDeliveryOrder *value_umts_minimum_qos_qos_delivery_order,
+                                guint32 *value_umts_minimum_qos_maximum_sdu_size,
+                                QmiWdsSduErrorRatio *value_umts_minimum_qos_sdu_error_ratio,
+                                QmiWdsSduResidualBitErrorRatio *value_umts_minimum_qos_residual_bit_error_ratio,
+                                QmiWdsSduErroneousDelivery *value_umts_minimum_qos_delivery_erroneous_sdu,
+                                guint32 *value_umts_minimum_qos_transfer_delay,
+                                guint32 *value_umts_minimum_qos_traffic_handling_priority,
+                                GError **error);
+

Get the 'UMTS Minimum QoS' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

self

a QmiMessageWdsGetDefaultSettingsOutput.

 

value_umts_minimum_qos_traffic_class

a placeholder for the output QmiWdsTrafficClass, or NULL if not required.

 

value_umts_minimum_qos_max_uplink_bitrate

a placeholder for the output guint32, or NULL if not required.

 

value_umts_minimum_qos_max_downlink_bitrate

a placeholder for the output guint32, or NULL if not required.

 

value_umts_minimum_qos_guaranteed_uplink_bitrate

a placeholder for the output guint32, or NULL if not required.

 

value_umts_minimum_qos_guaranteed_downlink_bitrate

a placeholder for the output guint32, or NULL if not required.

 

value_umts_minimum_qos_qos_delivery_order

a placeholder for the output QmiWdsDeliveryOrder, or NULL if not required.

 

value_umts_minimum_qos_maximum_sdu_size

a placeholder for the output guint32, or NULL if not required.

 

value_umts_minimum_qos_sdu_error_ratio

a placeholder for the output QmiWdsSduErrorRatio, or NULL if not required.

 

value_umts_minimum_qos_residual_bit_error_ratio

a placeholder for the output QmiWdsSduResidualBitErrorRatio, or NULL if not required.

 

value_umts_minimum_qos_delivery_erroneous_sdu

a placeholder for the output QmiWdsSduErroneousDelivery, or NULL if not required.

 

value_umts_minimum_qos_transfer_delay

a placeholder for the output guint32, or NULL if not required.

 

value_umts_minimum_qos_traffic_handling_priority

a placeholder for the output guint32, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.18

+
+
+
+

qmi_message_wds_get_default_settings_output_get_gprs_requested_qos ()

+
gboolean
+qmi_message_wds_get_default_settings_output_get_gprs_requested_qos
+                               (QmiMessageWdsGetDefaultSettingsOutput *self,
+                                guint32 *value_gprs_requested_qos_precedence_class,
+                                guint32 *value_gprs_requested_qos_delay_class,
+                                guint32 *value_gprs_requested_qos_reliability_class,
+                                guint32 *value_gprs_requested_qos_peak_throughput_class,
+                                guint32 *value_gprs_requested_qos_mean_throughput_class,
+                                GError **error);
+

Get the 'GPRS Requested QoS' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

self

a QmiMessageWdsGetDefaultSettingsOutput.

 

value_gprs_requested_qos_precedence_class

a placeholder for the output guint32, or NULL if not required.

 

value_gprs_requested_qos_delay_class

a placeholder for the output guint32, or NULL if not required.

 

value_gprs_requested_qos_reliability_class

a placeholder for the output guint32, or NULL if not required.

 

value_gprs_requested_qos_peak_throughput_class

a placeholder for the output guint32, or NULL if not required.

 

value_gprs_requested_qos_mean_throughput_class

a placeholder for the output guint32, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.8

+
+
+
+

qmi_message_wds_get_default_settings_output_get_gprs_minimum_qos ()

+
gboolean
+qmi_message_wds_get_default_settings_output_get_gprs_minimum_qos
+                               (QmiMessageWdsGetDefaultSettingsOutput *self,
+                                guint32 *value_gprs_minimum_qos_precedence_class,
+                                guint32 *value_gprs_minimum_qos_delay_class,
+                                guint32 *value_gprs_minimum_qos_reliability_class,
+                                guint32 *value_gprs_minimum_qos_peak_throughput_class,
+                                guint32 *value_gprs_minimum_qos_mean_throughput_class,
+                                GError **error);
+

Get the 'GPRS Minimum QoS' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

self

a QmiMessageWdsGetDefaultSettingsOutput.

 

value_gprs_minimum_qos_precedence_class

a placeholder for the output guint32, or NULL if not required.

 

value_gprs_minimum_qos_delay_class

a placeholder for the output guint32, or NULL if not required.

 

value_gprs_minimum_qos_reliability_class

a placeholder for the output guint32, or NULL if not required.

 

value_gprs_minimum_qos_peak_throughput_class

a placeholder for the output guint32, or NULL if not required.

 

value_gprs_minimum_qos_mean_throughput_class

a placeholder for the output guint32, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.8

+
+
+
+

qmi_message_wds_get_default_settings_output_get_username ()

+
gboolean
+qmi_message_wds_get_default_settings_output_get_username
+                               (QmiMessageWdsGetDefaultSettingsOutput *self,
+                                const gchar **value_username,
+                                GError **error);
+

Get the 'Username' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageWdsGetDefaultSettingsOutput.

 

value_username

a placeholder for the output constant string, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.8

+
+
+
+

qmi_message_wds_get_default_settings_output_get_password ()

+
gboolean
+qmi_message_wds_get_default_settings_output_get_password
+                               (QmiMessageWdsGetDefaultSettingsOutput *self,
+                                const gchar **value_password,
+                                GError **error);
+

Get the 'Password' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageWdsGetDefaultSettingsOutput.

 

value_password

a placeholder for the output constant string, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.8

+
+
+
+

qmi_message_wds_get_default_settings_output_get_authentication ()

+
gboolean
+qmi_message_wds_get_default_settings_output_get_authentication
+                               (QmiMessageWdsGetDefaultSettingsOutput *self,
+                                QmiWdsAuthentication *value_authentication,
+                                GError **error);
+

Get the 'Authentication' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageWdsGetDefaultSettingsOutput.

 

value_authentication

a placeholder for the output QmiWdsAuthentication, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.8

+
+
+
+

qmi_message_wds_get_default_settings_output_get_ipv4_address_preference ()

+
gboolean
+qmi_message_wds_get_default_settings_output_get_ipv4_address_preference
+                               (QmiMessageWdsGetDefaultSettingsOutput *self,
+                                guint32 *value_ipv4_address_preference,
+                                GError **error);
+

Get the 'IPv4 Address Preference' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageWdsGetDefaultSettingsOutput.

 

value_ipv4_address_preference

a placeholder for the output guint32, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.8

+
+
+
+

qmi_message_wds_get_default_settings_output_get_pcscf_address_using_pco ()

+
gboolean
+qmi_message_wds_get_default_settings_output_get_pcscf_address_using_pco
+                               (QmiMessageWdsGetDefaultSettingsOutput *self,
+                                gboolean *value_pcscf_address_using_pco,
+                                GError **error);
+

Get the 'PCSCF Address Using PCO' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageWdsGetDefaultSettingsOutput.

 

value_pcscf_address_using_pco

a placeholder for the output gboolean, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.8

+
+
+
+

qmi_message_wds_get_default_settings_output_get_pcscf_address_using_dhcp ()

+
gboolean
+qmi_message_wds_get_default_settings_output_get_pcscf_address_using_dhcp
+                               (QmiMessageWdsGetDefaultSettingsOutput *self,
+                                gboolean *value_pcscf_address_using_dhcp,
+                                GError **error);
+

Get the 'PCSCF Address Using DHCP' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageWdsGetDefaultSettingsOutput.

 

value_pcscf_address_using_dhcp

a placeholder for the output gboolean, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.8

+
+
+
+

qmi_message_wds_get_default_settings_output_get_imcn_flag ()

+
gboolean
+qmi_message_wds_get_default_settings_output_get_imcn_flag
+                               (QmiMessageWdsGetDefaultSettingsOutput *self,
+                                gboolean *value_imcn_flag,
+                                GError **error);
+

Get the 'IMCN Flag' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageWdsGetDefaultSettingsOutput.

 

value_imcn_flag

a placeholder for the output gboolean, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.8

+
+
+
+

qmi_message_wds_get_default_settings_output_get_pdp_context_number ()

+
gboolean
+qmi_message_wds_get_default_settings_output_get_pdp_context_number
+                               (QmiMessageWdsGetDefaultSettingsOutput *self,
+                                guint8 *value_pdp_context_number,
+                                GError **error);
+

Get the 'PDP Context Number' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageWdsGetDefaultSettingsOutput.

 

value_pdp_context_number

a placeholder for the output guint8, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.18

+
+
+
+

qmi_message_wds_get_default_settings_output_get_pdp_context_secondary_flag ()

+
gboolean
+qmi_message_wds_get_default_settings_output_get_pdp_context_secondary_flag
+                               (QmiMessageWdsGetDefaultSettingsOutput *self,
+                                gboolean *value_pdp_context_secondary_flag,
+                                GError **error);
+

Get the 'PDP Context Secondary Flag' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageWdsGetDefaultSettingsOutput.

 

value_pdp_context_secondary_flag

a placeholder for the output gboolean, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.18

+
+
+
+

qmi_message_wds_get_default_settings_output_get_pdp_context_primary_id ()

+
gboolean
+qmi_message_wds_get_default_settings_output_get_pdp_context_primary_id
+                               (QmiMessageWdsGetDefaultSettingsOutput *self,
+                                guint8 *value_pdp_context_primary_id,
+                                GError **error);
+

Get the 'PDP Context Primary ID' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageWdsGetDefaultSettingsOutput.

 

value_pdp_context_primary_id

a placeholder for the output guint8, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.18

+
+
+
+

qmi_message_wds_get_default_settings_output_get_ipv6_address_preference ()

+
gboolean
+qmi_message_wds_get_default_settings_output_get_ipv6_address_preference
+                               (QmiMessageWdsGetDefaultSettingsOutput *self,
+                                GArray **value_ipv6_address_preference_address,
+                                GError **error);
+

Get the 'IPv6 Address Preference' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageWdsGetDefaultSettingsOutput.

 

value_ipv6_address_preference_address

a placeholder for the output GArray of guint16 elements, or NULL if not required. Do not free it, it is owned by self +.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.8

+
+
+
+

qmi_message_wds_get_default_settings_output_get_umts_requested_qos_with_signaling_indication_flag ()

+
gboolean
+qmi_message_wds_get_default_settings_output_get_umts_requested_qos_with_signaling_indication_flag
+                               (QmiMessageWdsGetDefaultSettingsOutput *self,
+                                QmiWdsTrafficClass *value_umts_requested_qos_with_signaling_indication_flag_traffic_class,
+                                guint32 *value_umts_requested_qos_with_signaling_indication_flag_max_uplink_bitrate,
+                                guint32 *value_umts_requested_qos_with_signaling_indication_flag_max_downlink_bitrate,
+                                guint32 *value_umts_requested_qos_with_signaling_indication_flag_guaranteed_uplink_bitrate,
+                                guint32 *value_umts_requested_qos_with_signaling_indication_flag_guaranteed_downlink_bitrate,
+                                QmiWdsDeliveryOrder *value_umts_requested_qos_with_signaling_indication_flag_qos_delivery_order,
+                                guint32 *value_umts_requested_qos_with_signaling_indication_flag_maximum_sdu_size,
+                                QmiWdsSduErrorRatio *value_umts_requested_qos_with_signaling_indication_flag_sdu_error_ratio,
+                                QmiWdsSduResidualBitErrorRatio *value_umts_requested_qos_with_signaling_indication_flag_residual_bit_error_ratio,
+                                QmiWdsSduErroneousDelivery *value_umts_requested_qos_with_signaling_indication_flag_delivery_erroneous_sdu,
+                                guint32 *value_umts_requested_qos_with_signaling_indication_flag_transfer_delay,
+                                guint32 *value_umts_requested_qos_with_signaling_indication_flag_traffic_handling_priority,
+                                gint8 *value_umts_requested_qos_with_signaling_indication_flag_signaling_indication,
+                                GError **error);
+

Get the 'UMTS Requested QoS With Signaling Indication Flag' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

self

a QmiMessageWdsGetDefaultSettingsOutput.

 

value_umts_requested_qos_with_signaling_indication_flag_traffic_class

a placeholder for the output QmiWdsTrafficClass, or NULL if not required.

 

value_umts_requested_qos_with_signaling_indication_flag_max_uplink_bitrate

a placeholder for the output guint32, or NULL if not required.

 

value_umts_requested_qos_with_signaling_indication_flag_max_downlink_bitrate

a placeholder for the output guint32, or NULL if not required.

 

value_umts_requested_qos_with_signaling_indication_flag_guaranteed_uplink_bitrate

a placeholder for the output guint32, or NULL if not required.

 

value_umts_requested_qos_with_signaling_indication_flag_guaranteed_downlink_bitrate

a placeholder for the output guint32, or NULL if not required.

 

value_umts_requested_qos_with_signaling_indication_flag_qos_delivery_order

a placeholder for the output QmiWdsDeliveryOrder, or NULL if not required.

 

value_umts_requested_qos_with_signaling_indication_flag_maximum_sdu_size

a placeholder for the output guint32, or NULL if not required.

 

value_umts_requested_qos_with_signaling_indication_flag_sdu_error_ratio

a placeholder for the output QmiWdsSduErrorRatio, or NULL if not required.

 

value_umts_requested_qos_with_signaling_indication_flag_residual_bit_error_ratio

a placeholder for the output QmiWdsSduResidualBitErrorRatio, or NULL if not required.

 

value_umts_requested_qos_with_signaling_indication_flag_delivery_erroneous_sdu

a placeholder for the output QmiWdsSduErroneousDelivery, or NULL if not required.

 

value_umts_requested_qos_with_signaling_indication_flag_transfer_delay

a placeholder for the output guint32, or NULL if not required.

 

value_umts_requested_qos_with_signaling_indication_flag_traffic_handling_priority

a placeholder for the output guint32, or NULL if not required.

 

value_umts_requested_qos_with_signaling_indication_flag_signaling_indication

a placeholder for the output gint8, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.18

+
+
+
+

qmi_message_wds_get_default_settings_output_get_umts_minimum_qos_with_signaling_indication_flag ()

+
gboolean
+qmi_message_wds_get_default_settings_output_get_umts_minimum_qos_with_signaling_indication_flag
+                               (QmiMessageWdsGetDefaultSettingsOutput *self,
+                                QmiWdsTrafficClass *value_umts_minimum_qos_with_signaling_indication_flag_traffic_class,
+                                guint32 *value_umts_minimum_qos_with_signaling_indication_flag_max_uplink_bitrate,
+                                guint32 *value_umts_minimum_qos_with_signaling_indication_flag_max_downlink_bitrate,
+                                guint32 *value_umts_minimum_qos_with_signaling_indication_flag_guaranteed_uplink_bitrate,
+                                guint32 *value_umts_minimum_qos_with_signaling_indication_flag_guaranteed_downlink_bitrate,
+                                QmiWdsDeliveryOrder *value_umts_minimum_qos_with_signaling_indication_flag_qos_delivery_order,
+                                guint32 *value_umts_minimum_qos_with_signaling_indication_flag_maximum_sdu_size,
+                                QmiWdsSduErrorRatio *value_umts_minimum_qos_with_signaling_indication_flag_sdu_error_ratio,
+                                QmiWdsSduResidualBitErrorRatio *value_umts_minimum_qos_with_signaling_indication_flag_residual_bit_error_ratio,
+                                QmiWdsSduErroneousDelivery *value_umts_minimum_qos_with_signaling_indication_flag_delivery_erroneous_sdu,
+                                guint32 *value_umts_minimum_qos_with_signaling_indication_flag_transfer_delay,
+                                guint32 *value_umts_minimum_qos_with_signaling_indication_flag_traffic_handling_priority,
+                                gint8 *value_umts_minimum_qos_with_signaling_indication_flag_signaling_indication,
+                                GError **error);
+

Get the 'UMTS Minimum QoS With Signaling Indication Flag' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

self

a QmiMessageWdsGetDefaultSettingsOutput.

 

value_umts_minimum_qos_with_signaling_indication_flag_traffic_class

a placeholder for the output QmiWdsTrafficClass, or NULL if not required.

 

value_umts_minimum_qos_with_signaling_indication_flag_max_uplink_bitrate

a placeholder for the output guint32, or NULL if not required.

 

value_umts_minimum_qos_with_signaling_indication_flag_max_downlink_bitrate

a placeholder for the output guint32, or NULL if not required.

 

value_umts_minimum_qos_with_signaling_indication_flag_guaranteed_uplink_bitrate

a placeholder for the output guint32, or NULL if not required.

 

value_umts_minimum_qos_with_signaling_indication_flag_guaranteed_downlink_bitrate

a placeholder for the output guint32, or NULL if not required.

 

value_umts_minimum_qos_with_signaling_indication_flag_qos_delivery_order

a placeholder for the output QmiWdsDeliveryOrder, or NULL if not required.

 

value_umts_minimum_qos_with_signaling_indication_flag_maximum_sdu_size

a placeholder for the output guint32, or NULL if not required.

 

value_umts_minimum_qos_with_signaling_indication_flag_sdu_error_ratio

a placeholder for the output QmiWdsSduErrorRatio, or NULL if not required.

 

value_umts_minimum_qos_with_signaling_indication_flag_residual_bit_error_ratio

a placeholder for the output QmiWdsSduResidualBitErrorRatio, or NULL if not required.

 

value_umts_minimum_qos_with_signaling_indication_flag_delivery_erroneous_sdu

a placeholder for the output QmiWdsSduErroneousDelivery, or NULL if not required.

 

value_umts_minimum_qos_with_signaling_indication_flag_transfer_delay

a placeholder for the output guint32, or NULL if not required.

 

value_umts_minimum_qos_with_signaling_indication_flag_traffic_handling_priority

a placeholder for the output guint32, or NULL if not required.

 

value_umts_minimum_qos_with_signaling_indication_flag_signaling_indication

a placeholder for the output gint8, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.18

+
+
+
+

qmi_message_wds_get_default_settings_output_get_ipv6_primary_dns_address_preference ()

+
gboolean
+qmi_message_wds_get_default_settings_output_get_ipv6_primary_dns_address_preference
+                               (QmiMessageWdsGetDefaultSettingsOutput *self,
+                                GArray **value_ipv6_primary_dns_address_preference,
+                                GError **error);
+

Get the 'IPv6 Primary DNS Address Preference' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageWdsGetDefaultSettingsOutput.

 

value_ipv6_primary_dns_address_preference

a placeholder for the output GArray of guint16 elements, or NULL if not required. Do not free it, it is owned by self +.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.8

+
+
+
+

qmi_message_wds_get_default_settings_output_get_ipv6_secondary_dns_address_preference ()

+
gboolean
+qmi_message_wds_get_default_settings_output_get_ipv6_secondary_dns_address_preference
+                               (QmiMessageWdsGetDefaultSettingsOutput *self,
+                                GArray **value_ipv6_secondary_dns_address_preference,
+                                GError **error);
+

Get the 'IPv6 Secondary DNS Address Preference' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageWdsGetDefaultSettingsOutput.

 

value_ipv6_secondary_dns_address_preference

a placeholder for the output GArray of guint16 elements, or NULL if not required. Do not free it, it is owned by self +.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.8

+
+
+
+

qmi_message_wds_get_default_settings_output_get_lte_qos_parameters ()

+
gboolean
+qmi_message_wds_get_default_settings_output_get_lte_qos_parameters
+                               (QmiMessageWdsGetDefaultSettingsOutput *self,
+                                QmiWdsQosClassIdentifier *value_lte_qos_parameters_qos_class_identifier,
+                                guint32 *value_lte_qos_parameters_guaranteed_downlink_bitrate,
+                                guint32 *value_lte_qos_parameters_max_downlink_bitrate,
+                                guint32 *value_lte_qos_parameters_guaranteed_uplink_bitrate,
+                                guint32 *value_lte_qos_parameters_max_uplink_bitrate,
+                                GError **error);
+

Get the 'LTE QoS Parameters' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

self

a QmiMessageWdsGetDefaultSettingsOutput.

 

value_lte_qos_parameters_qos_class_identifier

a placeholder for the output QmiWdsQosClassIdentifier, or NULL if not required.

 

value_lte_qos_parameters_guaranteed_downlink_bitrate

a placeholder for the output guint32, or NULL if not required.

 

value_lte_qos_parameters_max_downlink_bitrate

a placeholder for the output guint32, or NULL if not required.

 

value_lte_qos_parameters_guaranteed_uplink_bitrate

a placeholder for the output guint32, or NULL if not required.

 

value_lte_qos_parameters_max_uplink_bitrate

a placeholder for the output guint32, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.18

+
+
+
+

qmi_message_wds_get_default_settings_output_get_extended_error_code ()

+
gboolean
+qmi_message_wds_get_default_settings_output_get_extended_error_code
+                               (QmiMessageWdsGetDefaultSettingsOutput *self,
+                                QmiWdsDsProfileError *value_extended_error_code,
+                                GError **error);
+

Get the 'Extended Error Code' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageWdsGetDefaultSettingsOutput.

 

value_extended_error_code

a placeholder for the output QmiWdsDsProfileError, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.8

+
+
+
+

qmi_client_wds_get_default_settings ()

+
void
+qmi_client_wds_get_default_settings (QmiClientWds *self,
+                                     QmiMessageWdsGetDefaultSettingsInput *input,
+                                     guint timeout,
+                                     GCancellable *cancellable,
+                                     GAsyncReadyCallback callback,
+                                     gpointer user_data);
+

Asynchronously sends a Get Default Settings request to the device.

+

When the operation is finished, callback + will be invoked in the thread-default main loop of the thread you are calling this method from.

+

You can then call qmi_client_wds_get_default_settings_finish() to get the result of the operation.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

self

a QmiClientWds.

 

input

a QmiMessageWdsGetDefaultSettingsInput.

 

timeout

maximum time to wait for the method to complete, in seconds.

 

cancellable

a GCancellable or NULL.

 

callback

a GAsyncReadyCallback to call when the request is satisfied.

 

user_data

user data to pass to callback +.

 
+
+

Since: 1.8

+
+
+
+

qmi_client_wds_get_default_settings_finish ()

+
QmiMessageWdsGetDefaultSettingsOutput *
+qmi_client_wds_get_default_settings_finish
+                               (QmiClientWds *self,
+                                GAsyncResult *res,
+                                GError **error);
+

Finishes an async operation started with qmi_client_wds_get_default_settings().

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiClientWds.

 

res

the GAsyncResult obtained from the GAsyncReadyCallback passed to qmi_client_wds_get_default_settings().

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

a QmiMessageWdsGetDefaultSettingsOutput, or NULL if error +is set. The returned value should be freed with qmi_message_wds_get_default_settings_output_unref().

+
+

Since: 1.8

+
+
+
+

Types and Values

+
+

QmiMessageWdsGetDefaultSettingsInput

+
typedef struct _QmiMessageWdsGetDefaultSettingsInput QmiMessageWdsGetDefaultSettingsInput;
+

The QmiMessageWdsGetDefaultSettingsInput structure contains private data and should only be accessed +using the provided API.

+

Since: 1.8

+
+
+
+

QmiMessageWdsGetDefaultSettingsOutput

+
typedef struct _QmiMessageWdsGetDefaultSettingsOutput QmiMessageWdsGetDefaultSettingsOutput;
+

The QmiMessageWdsGetDefaultSettingsOutput structure contains private data and should only be accessed +using the provided API.

+

Since: 1.8

+
+
+
+ + + \ No newline at end of file diff -Nru libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-WDS-Get-Dormancy-Status.html libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-WDS-Get-Dormancy-Status.html --- libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-WDS-Get-Dormancy-Status.html 2017-03-22 12:28:29.000000000 +0100 +++ libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-WDS-Get-Dormancy-Status.html 1970-01-01 01:00:00.000000000 +0100 @@ -1,371 +0,0 @@ - - - - -WDS Get Dormancy Status: libqmi-glib Reference Manual - - - - - - - - - - - - - - - - -
-
-
- - -
-

WDS Get Dormancy Status

-

WDS Get Dormancy Status

-
- -
-

Types and Values

- -
-
-

Object Hierarchy

-
    GBoxed
-    ╰── QmiMessageWdsGetDormancyStatusOutput
-
-
-
-

Description

-
-
-

Functions

-
-

qmi_message_wds_get_dormancy_status_output_ref ()

-
QmiMessageWdsGetDormancyStatusOutput *
-qmi_message_wds_get_dormancy_status_output_ref
-                               (QmiMessageWdsGetDormancyStatusOutput *self);
-

Atomically increments the reference count of self - by one.

-
-

Parameters

-
----- - - - - - -

self

a QmiMessageWdsGetDormancyStatusOutput.

 
-
-
-

Returns

-

the new reference to self -.

-
-

Since: 1.14

-
-
-
-

qmi_message_wds_get_dormancy_status_output_unref ()

-
void
-qmi_message_wds_get_dormancy_status_output_unref
-                               (QmiMessageWdsGetDormancyStatusOutput *self);
-

Atomically decrements the reference count of self - by one. -If the reference count drops to 0, self - is completely disposed.

-
-

Parameters

-
----- - - - - - -

self

a QmiMessageWdsGetDormancyStatusOutput.

 
-
-

Since: 1.14

-
-
-
-

qmi_message_wds_get_dormancy_status_output_get_result ()

-
gboolean
-qmi_message_wds_get_dormancy_status_output_get_result
-                               (QmiMessageWdsGetDormancyStatusOutput *self,
-                                GError **error);
-

Get the result of the QMI operation.

-
-

Parameters

-
----- - - - - - - - - - - - - -

self

a QmiMessageWdsGetDormancyStatusOutput.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the QMI operation succeeded, FALSE if error -is set.

-
-

Since: 1.14

-
-
-
-

qmi_message_wds_get_dormancy_status_output_get_dormancy_status ()

-
gboolean
-qmi_message_wds_get_dormancy_status_output_get_dormancy_status
-                               (QmiMessageWdsGetDormancyStatusOutput *self,
-                                QmiWdsDormancyStatus *value_dormancy_status,
-                                GError **error);
-

Get the 'Dormancy Status' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessageWdsGetDormancyStatusOutput.

 

value_dormancy_status

a placeholder for the output QmiWdsDormancyStatus, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.14

-
-
-
-

qmi_client_wds_get_dormancy_status ()

-
void
-qmi_client_wds_get_dormancy_status (QmiClientWds *self,
-                                    gpointer unused,
-                                    guint timeout,
-                                    GCancellable *cancellable,
-                                    GAsyncReadyCallback callback,
-                                    gpointer user_data);
-

Asynchronously sends a Get Dormancy Status request to the device.

-

When the operation is finished, callback - will be invoked in the thread-default main loop of the thread you are calling this method from.

-

You can then call qmi_client_wds_get_dormancy_status_finish() to get the result of the operation.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

self

a QmiClientWds.

 

unused

NULL. This message doesn't have any input bundle.

 

timeout

maximum time to wait for the method to complete, in seconds.

 

cancellable

a GCancellable or NULL.

 

callback

a GAsyncReadyCallback to call when the request is satisfied.

 

user_data

user data to pass to callback -.

 
-
-

Since: 1.14

-
-
-
-

qmi_client_wds_get_dormancy_status_finish ()

-
QmiMessageWdsGetDormancyStatusOutput *
-qmi_client_wds_get_dormancy_status_finish
-                               (QmiClientWds *self,
-                                GAsyncResult *res,
-                                GError **error);
-

Finishes an async operation started with qmi_client_wds_get_dormancy_status().

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiClientWds.

 

res

the GAsyncResult obtained from the GAsyncReadyCallback passed to qmi_client_wds_get_dormancy_status().

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

a QmiMessageWdsGetDormancyStatusOutput, or NULL if error -is set. The returned value should be freed with qmi_message_wds_get_dormancy_status_output_unref().

-
-

Since: 1.14

-
-
-
-

Types and Values

-
-

QmiMessageWdsGetDormancyStatusOutput

-
typedef struct _QmiMessageWdsGetDormancyStatusOutput QmiMessageWdsGetDormancyStatusOutput;
-

The QmiMessageWdsGetDormancyStatusOutput structure contains private data and should only be accessed -using the provided API.

-

Since: 1.14

-
-
-
- - - \ No newline at end of file diff -Nru libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-WDS-Get-Dormancy-Status-request.html libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-WDS-Get-Dormancy-Status-request.html --- libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-WDS-Get-Dormancy-Status-request.html 1970-01-01 01:00:00.000000000 +0100 +++ libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-WDS-Get-Dormancy-Status-request.html 2019-01-08 15:19:02.000000000 +0100 @@ -0,0 +1,371 @@ + + + + +WDS Get Dormancy Status request: libqmi-glib Reference Manual + + + + + + + + + + + + + + + + +
+
+
+ + +
+

WDS Get Dormancy Status request

+

WDS Get Dormancy Status request

+
+ +
+

Types and Values

+ +
+
+

Object Hierarchy

+
    GBoxed
+    ╰── QmiMessageWdsGetDormancyStatusOutput
+
+
+
+

Description

+
+
+

Functions

+
+

qmi_message_wds_get_dormancy_status_output_ref ()

+
QmiMessageWdsGetDormancyStatusOutput *
+qmi_message_wds_get_dormancy_status_output_ref
+                               (QmiMessageWdsGetDormancyStatusOutput *self);
+

Atomically increments the reference count of self + by one.

+
+

Parameters

+
+++++ + + + + + +

self

a QmiMessageWdsGetDormancyStatusOutput.

 
+
+
+

Returns

+

the new reference to self +.

+
+

Since: 1.14

+
+
+
+

qmi_message_wds_get_dormancy_status_output_unref ()

+
void
+qmi_message_wds_get_dormancy_status_output_unref
+                               (QmiMessageWdsGetDormancyStatusOutput *self);
+

Atomically decrements the reference count of self + by one. +If the reference count drops to 0, self + is completely disposed.

+
+

Parameters

+
+++++ + + + + + +

self

a QmiMessageWdsGetDormancyStatusOutput.

 
+
+

Since: 1.14

+
+
+
+

qmi_message_wds_get_dormancy_status_output_get_result ()

+
gboolean
+qmi_message_wds_get_dormancy_status_output_get_result
+                               (QmiMessageWdsGetDormancyStatusOutput *self,
+                                GError **error);
+

Get the result of the QMI operation.

+
+

Parameters

+
+++++ + + + + + + + + + + + + +

self

a QmiMessageWdsGetDormancyStatusOutput.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the QMI operation succeeded, FALSE if error +is set.

+
+

Since: 1.14

+
+
+
+

qmi_message_wds_get_dormancy_status_output_get_dormancy_status ()

+
gboolean
+qmi_message_wds_get_dormancy_status_output_get_dormancy_status
+                               (QmiMessageWdsGetDormancyStatusOutput *self,
+                                QmiWdsDormancyStatus *value_dormancy_status,
+                                GError **error);
+

Get the 'Dormancy Status' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageWdsGetDormancyStatusOutput.

 

value_dormancy_status

a placeholder for the output QmiWdsDormancyStatus, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.14

+
+
+
+

qmi_client_wds_get_dormancy_status ()

+
void
+qmi_client_wds_get_dormancy_status (QmiClientWds *self,
+                                    gpointer unused,
+                                    guint timeout,
+                                    GCancellable *cancellable,
+                                    GAsyncReadyCallback callback,
+                                    gpointer user_data);
+

Asynchronously sends a Get Dormancy Status request to the device.

+

When the operation is finished, callback + will be invoked in the thread-default main loop of the thread you are calling this method from.

+

You can then call qmi_client_wds_get_dormancy_status_finish() to get the result of the operation.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

self

a QmiClientWds.

 

unused

NULL. This message doesn't have any input bundle.

 

timeout

maximum time to wait for the method to complete, in seconds.

 

cancellable

a GCancellable or NULL.

 

callback

a GAsyncReadyCallback to call when the request is satisfied.

 

user_data

user data to pass to callback +.

 
+
+

Since: 1.14

+
+
+
+

qmi_client_wds_get_dormancy_status_finish ()

+
QmiMessageWdsGetDormancyStatusOutput *
+qmi_client_wds_get_dormancy_status_finish
+                               (QmiClientWds *self,
+                                GAsyncResult *res,
+                                GError **error);
+

Finishes an async operation started with qmi_client_wds_get_dormancy_status().

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiClientWds.

 

res

the GAsyncResult obtained from the GAsyncReadyCallback passed to qmi_client_wds_get_dormancy_status().

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

a QmiMessageWdsGetDormancyStatusOutput, or NULL if error +is set. The returned value should be freed with qmi_message_wds_get_dormancy_status_output_unref().

+
+

Since: 1.14

+
+
+
+

Types and Values

+
+

QmiMessageWdsGetDormancyStatusOutput

+
typedef struct _QmiMessageWdsGetDormancyStatusOutput QmiMessageWdsGetDormancyStatusOutput;
+

The QmiMessageWdsGetDormancyStatusOutput structure contains private data and should only be accessed +using the provided API.

+

Since: 1.14

+
+
+
+ + + \ No newline at end of file diff -Nru libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-WDS-Get-Packet-Service-Status.html libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-WDS-Get-Packet-Service-Status.html --- libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-WDS-Get-Packet-Service-Status.html 2017-03-22 12:28:28.000000000 +0100 +++ libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-WDS-Get-Packet-Service-Status.html 1970-01-01 01:00:00.000000000 +0100 @@ -1,372 +0,0 @@ - - - - -WDS Get Packet Service Status: libqmi-glib Reference Manual - - - - - - - - - - - - - - - - -
-
-
- - -
-

WDS Get Packet Service Status

-

WDS Get Packet Service Status

-
- -
-

Types and Values

- -
-
-

Object Hierarchy

-
    GBoxed
-    ╰── QmiMessageWdsGetPacketServiceStatusOutput
-
-
-
-

Description

-
-
-

Functions

-
-

qmi_message_wds_get_packet_service_status_output_ref ()

-
QmiMessageWdsGetPacketServiceStatusOutput *
-qmi_message_wds_get_packet_service_status_output_ref
-                               (QmiMessageWdsGetPacketServiceStatusOutput *self);
-

Atomically increments the reference count of self - by one.

-
-

Parameters

-
----- - - - - - -

self

a QmiMessageWdsGetPacketServiceStatusOutput.

 
-
-
-

Returns

-

the new reference to self -.

-
-

Since: 1.0

-
-
-
-

qmi_message_wds_get_packet_service_status_output_unref ()

-
void
-qmi_message_wds_get_packet_service_status_output_unref
-                               (QmiMessageWdsGetPacketServiceStatusOutput *self);
-

Atomically decrements the reference count of self - by one. -If the reference count drops to 0, self - is completely disposed.

-
-

Parameters

-
----- - - - - - -

self

a QmiMessageWdsGetPacketServiceStatusOutput.

 
-
-

Since: 1.0

-
-
-
-

qmi_message_wds_get_packet_service_status_output_get_result ()

-
gboolean
-qmi_message_wds_get_packet_service_status_output_get_result
-                               (QmiMessageWdsGetPacketServiceStatusOutput *self,
-                                GError **error);
-

Get the result of the QMI operation.

-
-

Parameters

-
----- - - - - - - - - - - - - -

self

a QmiMessageWdsGetPacketServiceStatusOutput.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the QMI operation succeeded, FALSE if error -is set.

-
-

Since: 1.0

-
-
-
-

qmi_message_wds_get_packet_service_status_output_get_connection_status ()

-
gboolean
-qmi_message_wds_get_packet_service_status_output_get_connection_status
-                               (QmiMessageWdsGetPacketServiceStatusOutput *self,
-                                QmiWdsConnectionStatus *value_connection_status,
-                                GError **error);
-

Get the 'Connection Status' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessageWdsGetPacketServiceStatusOutput.

 

value_connection_status

a placeholder for the output QmiWdsConnectionStatus, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.0

-
-
-
-

qmi_client_wds_get_packet_service_status ()

-
void
-qmi_client_wds_get_packet_service_status
-                               (QmiClientWds *self,
-                                gpointer unused,
-                                guint timeout,
-                                GCancellable *cancellable,
-                                GAsyncReadyCallback callback,
-                                gpointer user_data);
-

Asynchronously sends a Get Packet Service Status request to the device.

-

When the operation is finished, callback - will be invoked in the thread-default main loop of the thread you are calling this method from.

-

You can then call qmi_client_wds_get_packet_service_status_finish() to get the result of the operation.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

self

a QmiClientWds.

 

unused

NULL. This message doesn't have any input bundle.

 

timeout

maximum time to wait for the method to complete, in seconds.

 

cancellable

a GCancellable or NULL.

 

callback

a GAsyncReadyCallback to call when the request is satisfied.

 

user_data

user data to pass to callback -.

 
-
-

Since: 1.0

-
-
-
-

qmi_client_wds_get_packet_service_status_finish ()

-
QmiMessageWdsGetPacketServiceStatusOutput *
-qmi_client_wds_get_packet_service_status_finish
-                               (QmiClientWds *self,
-                                GAsyncResult *res,
-                                GError **error);
-

Finishes an async operation started with qmi_client_wds_get_packet_service_status().

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiClientWds.

 

res

the GAsyncResult obtained from the GAsyncReadyCallback passed to qmi_client_wds_get_packet_service_status().

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

a QmiMessageWdsGetPacketServiceStatusOutput, or NULL if error -is set. The returned value should be freed with qmi_message_wds_get_packet_service_status_output_unref().

-
-

Since: 1.0

-
-
-
-

Types and Values

-
-

QmiMessageWdsGetPacketServiceStatusOutput

-
typedef struct _QmiMessageWdsGetPacketServiceStatusOutput QmiMessageWdsGetPacketServiceStatusOutput;
-

The QmiMessageWdsGetPacketServiceStatusOutput structure contains private data and should only be accessed -using the provided API.

-

Since: 1.0

-
-
-
- - - \ No newline at end of file diff -Nru libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-WDS-Get-Packet-Service-Status-request.html libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-WDS-Get-Packet-Service-Status-request.html --- libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-WDS-Get-Packet-Service-Status-request.html 1970-01-01 01:00:00.000000000 +0100 +++ libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-WDS-Get-Packet-Service-Status-request.html 2019-01-08 15:19:02.000000000 +0100 @@ -0,0 +1,372 @@ + + + + +WDS Get Packet Service Status request: libqmi-glib Reference Manual + + + + + + + + + + + + + + + + +
+
+
+ + +
+

WDS Get Packet Service Status request

+

WDS Get Packet Service Status request

+
+ +
+

Types and Values

+ +
+
+

Object Hierarchy

+
    GBoxed
+    ╰── QmiMessageWdsGetPacketServiceStatusOutput
+
+
+
+

Description

+
+
+

Functions

+
+

qmi_message_wds_get_packet_service_status_output_ref ()

+
QmiMessageWdsGetPacketServiceStatusOutput *
+qmi_message_wds_get_packet_service_status_output_ref
+                               (QmiMessageWdsGetPacketServiceStatusOutput *self);
+

Atomically increments the reference count of self + by one.

+
+

Parameters

+
+++++ + + + + + +

self

a QmiMessageWdsGetPacketServiceStatusOutput.

 
+
+
+

Returns

+

the new reference to self +.

+
+

Since: 1.0

+
+
+
+

qmi_message_wds_get_packet_service_status_output_unref ()

+
void
+qmi_message_wds_get_packet_service_status_output_unref
+                               (QmiMessageWdsGetPacketServiceStatusOutput *self);
+

Atomically decrements the reference count of self + by one. +If the reference count drops to 0, self + is completely disposed.

+
+

Parameters

+
+++++ + + + + + +

self

a QmiMessageWdsGetPacketServiceStatusOutput.

 
+
+

Since: 1.0

+
+
+
+

qmi_message_wds_get_packet_service_status_output_get_result ()

+
gboolean
+qmi_message_wds_get_packet_service_status_output_get_result
+                               (QmiMessageWdsGetPacketServiceStatusOutput *self,
+                                GError **error);
+

Get the result of the QMI operation.

+
+

Parameters

+
+++++ + + + + + + + + + + + + +

self

a QmiMessageWdsGetPacketServiceStatusOutput.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the QMI operation succeeded, FALSE if error +is set.

+
+

Since: 1.0

+
+
+
+

qmi_message_wds_get_packet_service_status_output_get_connection_status ()

+
gboolean
+qmi_message_wds_get_packet_service_status_output_get_connection_status
+                               (QmiMessageWdsGetPacketServiceStatusOutput *self,
+                                QmiWdsConnectionStatus *value_connection_status,
+                                GError **error);
+

Get the 'Connection Status' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageWdsGetPacketServiceStatusOutput.

 

value_connection_status

a placeholder for the output QmiWdsConnectionStatus, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.0

+
+
+
+

qmi_client_wds_get_packet_service_status ()

+
void
+qmi_client_wds_get_packet_service_status
+                               (QmiClientWds *self,
+                                gpointer unused,
+                                guint timeout,
+                                GCancellable *cancellable,
+                                GAsyncReadyCallback callback,
+                                gpointer user_data);
+

Asynchronously sends a Get Packet Service Status request to the device.

+

When the operation is finished, callback + will be invoked in the thread-default main loop of the thread you are calling this method from.

+

You can then call qmi_client_wds_get_packet_service_status_finish() to get the result of the operation.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

self

a QmiClientWds.

 

unused

NULL. This message doesn't have any input bundle.

 

timeout

maximum time to wait for the method to complete, in seconds.

 

cancellable

a GCancellable or NULL.

 

callback

a GAsyncReadyCallback to call when the request is satisfied.

 

user_data

user data to pass to callback +.

 
+
+

Since: 1.0

+
+
+
+

qmi_client_wds_get_packet_service_status_finish ()

+
QmiMessageWdsGetPacketServiceStatusOutput *
+qmi_client_wds_get_packet_service_status_finish
+                               (QmiClientWds *self,
+                                GAsyncResult *res,
+                                GError **error);
+

Finishes an async operation started with qmi_client_wds_get_packet_service_status().

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiClientWds.

 

res

the GAsyncResult obtained from the GAsyncReadyCallback passed to qmi_client_wds_get_packet_service_status().

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

a QmiMessageWdsGetPacketServiceStatusOutput, or NULL if error +is set. The returned value should be freed with qmi_message_wds_get_packet_service_status_output_unref().

+
+

Since: 1.0

+
+
+
+

Types and Values

+
+

QmiMessageWdsGetPacketServiceStatusOutput

+
typedef struct _QmiMessageWdsGetPacketServiceStatusOutput QmiMessageWdsGetPacketServiceStatusOutput;
+

The QmiMessageWdsGetPacketServiceStatusOutput structure contains private data and should only be accessed +using the provided API.

+

Since: 1.0

+
+
+
+ + + \ No newline at end of file diff -Nru libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-WDS-Get-Packet-Statistics.html libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-WDS-Get-Packet-Statistics.html --- libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-WDS-Get-Packet-Statistics.html 2017-03-22 12:28:28.000000000 +0100 +++ libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-WDS-Get-Packet-Statistics.html 1970-01-01 01:00:00.000000000 +0100 @@ -1,1143 +0,0 @@ - - - - -WDS Get Packet Statistics: libqmi-glib Reference Manual - - - - - - - - - - - - - - - - -
-
-
- - -
-

WDS Get Packet Statistics

-

WDS Get Packet Statistics

-
-
-

Functions

-
---- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
-QmiMessageWdsGetPacketStatisticsInput * - -qmi_message_wds_get_packet_statistics_input_new () -
-QmiMessageWdsGetPacketStatisticsInput * - -qmi_message_wds_get_packet_statistics_input_ref () -
-void - -qmi_message_wds_get_packet_statistics_input_unref () -
-gboolean - -qmi_message_wds_get_packet_statistics_input_get_mask () -
-gboolean - -qmi_message_wds_get_packet_statistics_input_set_mask () -
-QmiMessageWdsGetPacketStatisticsOutput * - -qmi_message_wds_get_packet_statistics_output_ref () -
-void - -qmi_message_wds_get_packet_statistics_output_unref () -
-gboolean - -qmi_message_wds_get_packet_statistics_output_get_last_call_rx_bytes_ok () -
-gboolean - -qmi_message_wds_get_packet_statistics_output_get_last_call_tx_bytes_ok () -
-gboolean - -qmi_message_wds_get_packet_statistics_output_get_result () -
-gboolean - -qmi_message_wds_get_packet_statistics_output_get_tx_packets_ok () -
-gboolean - -qmi_message_wds_get_packet_statistics_output_get_rx_packets_ok () -
-gboolean - -qmi_message_wds_get_packet_statistics_output_get_tx_packets_error () -
-gboolean - -qmi_message_wds_get_packet_statistics_output_get_rx_packets_error () -
-gboolean - -qmi_message_wds_get_packet_statistics_output_get_tx_overflows () -
-gboolean - -qmi_message_wds_get_packet_statistics_output_get_rx_overflows () -
-gboolean - -qmi_message_wds_get_packet_statistics_output_get_tx_bytes_ok () -
-gboolean - -qmi_message_wds_get_packet_statistics_output_get_rx_bytes_ok () -
-gboolean - -qmi_message_wds_get_packet_statistics_output_get_tx_packets_dropped () -
-gboolean - -qmi_message_wds_get_packet_statistics_output_get_rx_packets_dropped () -
-void - -qmi_client_wds_get_packet_statistics () -
-QmiMessageWdsGetPacketStatisticsOutput * - -qmi_client_wds_get_packet_statistics_finish () -
-
-
-

Types and Values

- -
-
-

Object Hierarchy

-
    GBoxed
-    ├── QmiMessageWdsGetPacketStatisticsInput
-    ╰── QmiMessageWdsGetPacketStatisticsOutput
-
-
-
-

Description

-
-
-

Functions

-
-

qmi_message_wds_get_packet_statistics_input_new ()

-
QmiMessageWdsGetPacketStatisticsInput *
-qmi_message_wds_get_packet_statistics_input_new
-                               (void);
-

Allocates a new QmiMessageWdsGetPacketStatisticsInput.

-
-

Returns

-

the newly created QmiMessageWdsGetPacketStatisticsInput. The returned value should be freed with qmi_message_wds_get_packet_statistics_input_unref().

-
-

Since: 1.6

-
-
-
-

qmi_message_wds_get_packet_statistics_input_ref ()

-
QmiMessageWdsGetPacketStatisticsInput *
-qmi_message_wds_get_packet_statistics_input_ref
-                               (QmiMessageWdsGetPacketStatisticsInput *self);
-

Atomically increments the reference count of self - by one.

-
-

Parameters

-
----- - - - - - -

self

a QmiMessageWdsGetPacketStatisticsInput.

 
-
-
-

Returns

-

the new reference to self -.

-
-

Since: 1.6

-
-
-
-

qmi_message_wds_get_packet_statistics_input_unref ()

-
void
-qmi_message_wds_get_packet_statistics_input_unref
-                               (QmiMessageWdsGetPacketStatisticsInput *self);
-

Atomically decrements the reference count of self - by one. -If the reference count drops to 0, self - is completely disposed.

-
-

Parameters

-
----- - - - - - -

self

a QmiMessageWdsGetPacketStatisticsInput.

 
-
-

Since: 1.6

-
-
-
-

qmi_message_wds_get_packet_statistics_input_get_mask ()

-
gboolean
-qmi_message_wds_get_packet_statistics_input_get_mask
-                               (QmiMessageWdsGetPacketStatisticsInput *self,
-                                QmiWdsPacketStatisticsMaskFlag *value_mask,
-                                GError **error);
-

Get the 'Mask' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessageWdsGetPacketStatisticsInput.

 

value_mask

a placeholder for the output QmiWdsPacketStatisticsMaskFlag, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.6

-
-
-
-

qmi_message_wds_get_packet_statistics_input_set_mask ()

-
gboolean
-qmi_message_wds_get_packet_statistics_input_set_mask
-                               (QmiMessageWdsGetPacketStatisticsInput *self,
-                                QmiWdsPacketStatisticsMaskFlag value_mask,
-                                GError **error);
-

Set the 'Mask' field in the message.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessageWdsGetPacketStatisticsInput.

 

value_mask

a QmiWdsPacketStatisticsMaskFlag.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if value -was successfully set, FALSE otherwise.

-
-

Since: 1.6

-
-
-
-

qmi_message_wds_get_packet_statistics_output_ref ()

-
QmiMessageWdsGetPacketStatisticsOutput *
-qmi_message_wds_get_packet_statistics_output_ref
-                               (QmiMessageWdsGetPacketStatisticsOutput *self);
-

Atomically increments the reference count of self - by one.

-
-

Parameters

-
----- - - - - - -

self

a QmiMessageWdsGetPacketStatisticsOutput.

 
-
-
-

Returns

-

the new reference to self -.

-
-

Since: 1.6

-
-
-
-

qmi_message_wds_get_packet_statistics_output_unref ()

-
void
-qmi_message_wds_get_packet_statistics_output_unref
-                               (QmiMessageWdsGetPacketStatisticsOutput *self);
-

Atomically decrements the reference count of self - by one. -If the reference count drops to 0, self - is completely disposed.

-
-

Parameters

-
----- - - - - - -

self

a QmiMessageWdsGetPacketStatisticsOutput.

 
-
-

Since: 1.6

-
-
-
-

qmi_message_wds_get_packet_statistics_output_get_last_call_rx_bytes_ok ()

-
gboolean
-qmi_message_wds_get_packet_statistics_output_get_last_call_rx_bytes_ok
-                               (QmiMessageWdsGetPacketStatisticsOutput *self,
-                                guint64 *value_last_call_rx_bytes_ok,
-                                GError **error);
-

Get the 'Last Call Rx Bytes Ok' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessageWdsGetPacketStatisticsOutput.

 

value_last_call_rx_bytes_ok

a placeholder for the output guint64, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.6

-
-
-
-

qmi_message_wds_get_packet_statistics_output_get_last_call_tx_bytes_ok ()

-
gboolean
-qmi_message_wds_get_packet_statistics_output_get_last_call_tx_bytes_ok
-                               (QmiMessageWdsGetPacketStatisticsOutput *self,
-                                guint64 *value_last_call_tx_bytes_ok,
-                                GError **error);
-

Get the 'Last Call Tx Bytes Ok' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessageWdsGetPacketStatisticsOutput.

 

value_last_call_tx_bytes_ok

a placeholder for the output guint64, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.6

-
-
-
-

qmi_message_wds_get_packet_statistics_output_get_result ()

-
gboolean
-qmi_message_wds_get_packet_statistics_output_get_result
-                               (QmiMessageWdsGetPacketStatisticsOutput *self,
-                                GError **error);
-

Get the result of the QMI operation.

-
-

Parameters

-
----- - - - - - - - - - - - - -

self

a QmiMessageWdsGetPacketStatisticsOutput.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the QMI operation succeeded, FALSE if error -is set.

-
-

Since: 1.6

-
-
-
-

qmi_message_wds_get_packet_statistics_output_get_tx_packets_ok ()

-
gboolean
-qmi_message_wds_get_packet_statistics_output_get_tx_packets_ok
-                               (QmiMessageWdsGetPacketStatisticsOutput *self,
-                                guint32 *value_tx_packets_ok,
-                                GError **error);
-

Get the 'Tx Packets Ok' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessageWdsGetPacketStatisticsOutput.

 

value_tx_packets_ok

a placeholder for the output guint32, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.6

-
-
-
-

qmi_message_wds_get_packet_statistics_output_get_rx_packets_ok ()

-
gboolean
-qmi_message_wds_get_packet_statistics_output_get_rx_packets_ok
-                               (QmiMessageWdsGetPacketStatisticsOutput *self,
-                                guint32 *value_rx_packets_ok,
-                                GError **error);
-

Get the 'Rx Packets Ok' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessageWdsGetPacketStatisticsOutput.

 

value_rx_packets_ok

a placeholder for the output guint32, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.6

-
-
-
-

qmi_message_wds_get_packet_statistics_output_get_tx_packets_error ()

-
gboolean
-qmi_message_wds_get_packet_statistics_output_get_tx_packets_error
-                               (QmiMessageWdsGetPacketStatisticsOutput *self,
-                                guint32 *value_tx_packets_error,
-                                GError **error);
-

Get the 'Tx Packets Error' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessageWdsGetPacketStatisticsOutput.

 

value_tx_packets_error

a placeholder for the output guint32, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.6

-
-
-
-

qmi_message_wds_get_packet_statistics_output_get_rx_packets_error ()

-
gboolean
-qmi_message_wds_get_packet_statistics_output_get_rx_packets_error
-                               (QmiMessageWdsGetPacketStatisticsOutput *self,
-                                guint32 *value_rx_packets_error,
-                                GError **error);
-

Get the 'Rx Packets Error' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessageWdsGetPacketStatisticsOutput.

 

value_rx_packets_error

a placeholder for the output guint32, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.6

-
-
-
-

qmi_message_wds_get_packet_statistics_output_get_tx_overflows ()

-
gboolean
-qmi_message_wds_get_packet_statistics_output_get_tx_overflows
-                               (QmiMessageWdsGetPacketStatisticsOutput *self,
-                                guint32 *value_tx_overflows,
-                                GError **error);
-

Get the 'Tx Overflows' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessageWdsGetPacketStatisticsOutput.

 

value_tx_overflows

a placeholder for the output guint32, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.6

-
-
-
-

qmi_message_wds_get_packet_statistics_output_get_rx_overflows ()

-
gboolean
-qmi_message_wds_get_packet_statistics_output_get_rx_overflows
-                               (QmiMessageWdsGetPacketStatisticsOutput *self,
-                                guint32 *value_rx_overflows,
-                                GError **error);
-

Get the 'Rx Overflows' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessageWdsGetPacketStatisticsOutput.

 

value_rx_overflows

a placeholder for the output guint32, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.6

-
-
-
-

qmi_message_wds_get_packet_statistics_output_get_tx_bytes_ok ()

-
gboolean
-qmi_message_wds_get_packet_statistics_output_get_tx_bytes_ok
-                               (QmiMessageWdsGetPacketStatisticsOutput *self,
-                                guint64 *value_tx_bytes_ok,
-                                GError **error);
-

Get the 'Tx Bytes Ok' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessageWdsGetPacketStatisticsOutput.

 

value_tx_bytes_ok

a placeholder for the output guint64, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.6

-
-
-
-

qmi_message_wds_get_packet_statistics_output_get_rx_bytes_ok ()

-
gboolean
-qmi_message_wds_get_packet_statistics_output_get_rx_bytes_ok
-                               (QmiMessageWdsGetPacketStatisticsOutput *self,
-                                guint64 *value_rx_bytes_ok,
-                                GError **error);
-

Get the 'Rx Bytes Ok' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessageWdsGetPacketStatisticsOutput.

 

value_rx_bytes_ok

a placeholder for the output guint64, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.6

-
-
-
-

qmi_message_wds_get_packet_statistics_output_get_tx_packets_dropped ()

-
gboolean
-qmi_message_wds_get_packet_statistics_output_get_tx_packets_dropped
-                               (QmiMessageWdsGetPacketStatisticsOutput *self,
-                                guint32 *value_tx_packets_dropped,
-                                GError **error);
-

Get the 'Tx Packets Dropped' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessageWdsGetPacketStatisticsOutput.

 

value_tx_packets_dropped

a placeholder for the output guint32, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.6

-
-
-
-

qmi_message_wds_get_packet_statistics_output_get_rx_packets_dropped ()

-
gboolean
-qmi_message_wds_get_packet_statistics_output_get_rx_packets_dropped
-                               (QmiMessageWdsGetPacketStatisticsOutput *self,
-                                guint32 *value_rx_packets_dropped,
-                                GError **error);
-

Get the 'Rx Packets Dropped' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessageWdsGetPacketStatisticsOutput.

 

value_rx_packets_dropped

a placeholder for the output guint32, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.6

-
-
-
-

qmi_client_wds_get_packet_statistics ()

-
void
-qmi_client_wds_get_packet_statistics (QmiClientWds *self,
-                                      QmiMessageWdsGetPacketStatisticsInput *input,
-                                      guint timeout,
-                                      GCancellable *cancellable,
-                                      GAsyncReadyCallback callback,
-                                      gpointer user_data);
-

Asynchronously sends a Get Packet Statistics request to the device.

-

When the operation is finished, callback - will be invoked in the thread-default main loop of the thread you are calling this method from.

-

You can then call qmi_client_wds_get_packet_statistics_finish() to get the result of the operation.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

self

a QmiClientWds.

 

input

a QmiMessageWdsGetPacketStatisticsInput.

 

timeout

maximum time to wait for the method to complete, in seconds.

 

cancellable

a GCancellable or NULL.

 

callback

a GAsyncReadyCallback to call when the request is satisfied.

 

user_data

user data to pass to callback -.

 
-
-

Since: 1.6

-
-
-
-

qmi_client_wds_get_packet_statistics_finish ()

-
QmiMessageWdsGetPacketStatisticsOutput *
-qmi_client_wds_get_packet_statistics_finish
-                               (QmiClientWds *self,
-                                GAsyncResult *res,
-                                GError **error);
-

Finishes an async operation started with qmi_client_wds_get_packet_statistics().

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiClientWds.

 

res

the GAsyncResult obtained from the GAsyncReadyCallback passed to qmi_client_wds_get_packet_statistics().

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

a QmiMessageWdsGetPacketStatisticsOutput, or NULL if error -is set. The returned value should be freed with qmi_message_wds_get_packet_statistics_output_unref().

-
-

Since: 1.6

-
-
-
-

Types and Values

-
-

QmiMessageWdsGetPacketStatisticsInput

-
typedef struct _QmiMessageWdsGetPacketStatisticsInput QmiMessageWdsGetPacketStatisticsInput;
-

The QmiMessageWdsGetPacketStatisticsInput structure contains private data and should only be accessed -using the provided API.

-

Since: 1.6

-
-
-
-

QmiMessageWdsGetPacketStatisticsOutput

-
typedef struct _QmiMessageWdsGetPacketStatisticsOutput QmiMessageWdsGetPacketStatisticsOutput;
-

The QmiMessageWdsGetPacketStatisticsOutput structure contains private data and should only be accessed -using the provided API.

-

Since: 1.6

-
-
-
- - - \ No newline at end of file diff -Nru libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-WDS-Get-Packet-Statistics-request.html libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-WDS-Get-Packet-Statistics-request.html --- libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-WDS-Get-Packet-Statistics-request.html 1970-01-01 01:00:00.000000000 +0100 +++ libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-WDS-Get-Packet-Statistics-request.html 2019-01-08 15:19:02.000000000 +0100 @@ -0,0 +1,1143 @@ + + + + +WDS Get Packet Statistics request: libqmi-glib Reference Manual + + + + + + + + + + + + + + + + +
+
+
+ + +
+

WDS Get Packet Statistics request

+

WDS Get Packet Statistics request

+
+
+

Functions

+
++++ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+QmiMessageWdsGetPacketStatisticsInput * + +qmi_message_wds_get_packet_statistics_input_new () +
+QmiMessageWdsGetPacketStatisticsInput * + +qmi_message_wds_get_packet_statistics_input_ref () +
+void + +qmi_message_wds_get_packet_statistics_input_unref () +
+gboolean + +qmi_message_wds_get_packet_statistics_input_get_mask () +
+gboolean + +qmi_message_wds_get_packet_statistics_input_set_mask () +
+QmiMessageWdsGetPacketStatisticsOutput * + +qmi_message_wds_get_packet_statistics_output_ref () +
+void + +qmi_message_wds_get_packet_statistics_output_unref () +
+gboolean + +qmi_message_wds_get_packet_statistics_output_get_last_call_rx_bytes_ok () +
+gboolean + +qmi_message_wds_get_packet_statistics_output_get_last_call_tx_bytes_ok () +
+gboolean + +qmi_message_wds_get_packet_statistics_output_get_result () +
+gboolean + +qmi_message_wds_get_packet_statistics_output_get_tx_packets_ok () +
+gboolean + +qmi_message_wds_get_packet_statistics_output_get_rx_packets_ok () +
+gboolean + +qmi_message_wds_get_packet_statistics_output_get_tx_packets_error () +
+gboolean + +qmi_message_wds_get_packet_statistics_output_get_rx_packets_error () +
+gboolean + +qmi_message_wds_get_packet_statistics_output_get_tx_overflows () +
+gboolean + +qmi_message_wds_get_packet_statistics_output_get_rx_overflows () +
+gboolean + +qmi_message_wds_get_packet_statistics_output_get_tx_bytes_ok () +
+gboolean + +qmi_message_wds_get_packet_statistics_output_get_rx_bytes_ok () +
+gboolean + +qmi_message_wds_get_packet_statistics_output_get_tx_packets_dropped () +
+gboolean + +qmi_message_wds_get_packet_statistics_output_get_rx_packets_dropped () +
+void + +qmi_client_wds_get_packet_statistics () +
+QmiMessageWdsGetPacketStatisticsOutput * + +qmi_client_wds_get_packet_statistics_finish () +
+
+
+

Types and Values

+ +
+
+

Object Hierarchy

+
    GBoxed
+    ├── QmiMessageWdsGetPacketStatisticsInput
+    ╰── QmiMessageWdsGetPacketStatisticsOutput
+
+
+
+

Description

+
+
+

Functions

+
+

qmi_message_wds_get_packet_statistics_input_new ()

+
QmiMessageWdsGetPacketStatisticsInput *
+qmi_message_wds_get_packet_statistics_input_new
+                               (void);
+

Allocates a new QmiMessageWdsGetPacketStatisticsInput.

+
+

Returns

+

the newly created QmiMessageWdsGetPacketStatisticsInput. The returned value should be freed with qmi_message_wds_get_packet_statistics_input_unref().

+
+

Since: 1.6

+
+
+
+

qmi_message_wds_get_packet_statistics_input_ref ()

+
QmiMessageWdsGetPacketStatisticsInput *
+qmi_message_wds_get_packet_statistics_input_ref
+                               (QmiMessageWdsGetPacketStatisticsInput *self);
+

Atomically increments the reference count of self + by one.

+
+

Parameters

+
+++++ + + + + + +

self

a QmiMessageWdsGetPacketStatisticsInput.

 
+
+
+

Returns

+

the new reference to self +.

+
+

Since: 1.6

+
+
+
+

qmi_message_wds_get_packet_statistics_input_unref ()

+
void
+qmi_message_wds_get_packet_statistics_input_unref
+                               (QmiMessageWdsGetPacketStatisticsInput *self);
+

Atomically decrements the reference count of self + by one. +If the reference count drops to 0, self + is completely disposed.

+
+

Parameters

+
+++++ + + + + + +

self

a QmiMessageWdsGetPacketStatisticsInput.

 
+
+

Since: 1.6

+
+
+
+

qmi_message_wds_get_packet_statistics_input_get_mask ()

+
gboolean
+qmi_message_wds_get_packet_statistics_input_get_mask
+                               (QmiMessageWdsGetPacketStatisticsInput *self,
+                                QmiWdsPacketStatisticsMaskFlag *value_mask,
+                                GError **error);
+

Get the 'Mask' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageWdsGetPacketStatisticsInput.

 

value_mask

a placeholder for the output QmiWdsPacketStatisticsMaskFlag, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.6

+
+
+
+

qmi_message_wds_get_packet_statistics_input_set_mask ()

+
gboolean
+qmi_message_wds_get_packet_statistics_input_set_mask
+                               (QmiMessageWdsGetPacketStatisticsInput *self,
+                                QmiWdsPacketStatisticsMaskFlag value_mask,
+                                GError **error);
+

Set the 'Mask' field in the message.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageWdsGetPacketStatisticsInput.

 

value_mask

a QmiWdsPacketStatisticsMaskFlag.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if value +was successfully set, FALSE otherwise.

+
+

Since: 1.6

+
+
+
+

qmi_message_wds_get_packet_statistics_output_ref ()

+
QmiMessageWdsGetPacketStatisticsOutput *
+qmi_message_wds_get_packet_statistics_output_ref
+                               (QmiMessageWdsGetPacketStatisticsOutput *self);
+

Atomically increments the reference count of self + by one.

+
+

Parameters

+
+++++ + + + + + +

self

a QmiMessageWdsGetPacketStatisticsOutput.

 
+
+
+

Returns

+

the new reference to self +.

+
+

Since: 1.6

+
+
+
+

qmi_message_wds_get_packet_statistics_output_unref ()

+
void
+qmi_message_wds_get_packet_statistics_output_unref
+                               (QmiMessageWdsGetPacketStatisticsOutput *self);
+

Atomically decrements the reference count of self + by one. +If the reference count drops to 0, self + is completely disposed.

+
+

Parameters

+
+++++ + + + + + +

self

a QmiMessageWdsGetPacketStatisticsOutput.

 
+
+

Since: 1.6

+
+
+
+

qmi_message_wds_get_packet_statistics_output_get_last_call_rx_bytes_ok ()

+
gboolean
+qmi_message_wds_get_packet_statistics_output_get_last_call_rx_bytes_ok
+                               (QmiMessageWdsGetPacketStatisticsOutput *self,
+                                guint64 *value_last_call_rx_bytes_ok,
+                                GError **error);
+

Get the 'Last Call Rx Bytes Ok' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageWdsGetPacketStatisticsOutput.

 

value_last_call_rx_bytes_ok

a placeholder for the output guint64, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.6

+
+
+
+

qmi_message_wds_get_packet_statistics_output_get_last_call_tx_bytes_ok ()

+
gboolean
+qmi_message_wds_get_packet_statistics_output_get_last_call_tx_bytes_ok
+                               (QmiMessageWdsGetPacketStatisticsOutput *self,
+                                guint64 *value_last_call_tx_bytes_ok,
+                                GError **error);
+

Get the 'Last Call Tx Bytes Ok' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageWdsGetPacketStatisticsOutput.

 

value_last_call_tx_bytes_ok

a placeholder for the output guint64, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.6

+
+
+
+

qmi_message_wds_get_packet_statistics_output_get_result ()

+
gboolean
+qmi_message_wds_get_packet_statistics_output_get_result
+                               (QmiMessageWdsGetPacketStatisticsOutput *self,
+                                GError **error);
+

Get the result of the QMI operation.

+
+

Parameters

+
+++++ + + + + + + + + + + + + +

self

a QmiMessageWdsGetPacketStatisticsOutput.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the QMI operation succeeded, FALSE if error +is set.

+
+

Since: 1.6

+
+
+
+

qmi_message_wds_get_packet_statistics_output_get_tx_packets_ok ()

+
gboolean
+qmi_message_wds_get_packet_statistics_output_get_tx_packets_ok
+                               (QmiMessageWdsGetPacketStatisticsOutput *self,
+                                guint32 *value_tx_packets_ok,
+                                GError **error);
+

Get the 'Tx Packets Ok' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageWdsGetPacketStatisticsOutput.

 

value_tx_packets_ok

a placeholder for the output guint32, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.6

+
+
+
+

qmi_message_wds_get_packet_statistics_output_get_rx_packets_ok ()

+
gboolean
+qmi_message_wds_get_packet_statistics_output_get_rx_packets_ok
+                               (QmiMessageWdsGetPacketStatisticsOutput *self,
+                                guint32 *value_rx_packets_ok,
+                                GError **error);
+

Get the 'Rx Packets Ok' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageWdsGetPacketStatisticsOutput.

 

value_rx_packets_ok

a placeholder for the output guint32, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.6

+
+
+
+

qmi_message_wds_get_packet_statistics_output_get_tx_packets_error ()

+
gboolean
+qmi_message_wds_get_packet_statistics_output_get_tx_packets_error
+                               (QmiMessageWdsGetPacketStatisticsOutput *self,
+                                guint32 *value_tx_packets_error,
+                                GError **error);
+

Get the 'Tx Packets Error' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageWdsGetPacketStatisticsOutput.

 

value_tx_packets_error

a placeholder for the output guint32, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.6

+
+
+
+

qmi_message_wds_get_packet_statistics_output_get_rx_packets_error ()

+
gboolean
+qmi_message_wds_get_packet_statistics_output_get_rx_packets_error
+                               (QmiMessageWdsGetPacketStatisticsOutput *self,
+                                guint32 *value_rx_packets_error,
+                                GError **error);
+

Get the 'Rx Packets Error' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageWdsGetPacketStatisticsOutput.

 

value_rx_packets_error

a placeholder for the output guint32, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.6

+
+
+
+

qmi_message_wds_get_packet_statistics_output_get_tx_overflows ()

+
gboolean
+qmi_message_wds_get_packet_statistics_output_get_tx_overflows
+                               (QmiMessageWdsGetPacketStatisticsOutput *self,
+                                guint32 *value_tx_overflows,
+                                GError **error);
+

Get the 'Tx Overflows' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageWdsGetPacketStatisticsOutput.

 

value_tx_overflows

a placeholder for the output guint32, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.6

+
+
+
+

qmi_message_wds_get_packet_statistics_output_get_rx_overflows ()

+
gboolean
+qmi_message_wds_get_packet_statistics_output_get_rx_overflows
+                               (QmiMessageWdsGetPacketStatisticsOutput *self,
+                                guint32 *value_rx_overflows,
+                                GError **error);
+

Get the 'Rx Overflows' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageWdsGetPacketStatisticsOutput.

 

value_rx_overflows

a placeholder for the output guint32, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.6

+
+
+
+

qmi_message_wds_get_packet_statistics_output_get_tx_bytes_ok ()

+
gboolean
+qmi_message_wds_get_packet_statistics_output_get_tx_bytes_ok
+                               (QmiMessageWdsGetPacketStatisticsOutput *self,
+                                guint64 *value_tx_bytes_ok,
+                                GError **error);
+

Get the 'Tx Bytes Ok' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageWdsGetPacketStatisticsOutput.

 

value_tx_bytes_ok

a placeholder for the output guint64, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.6

+
+
+
+

qmi_message_wds_get_packet_statistics_output_get_rx_bytes_ok ()

+
gboolean
+qmi_message_wds_get_packet_statistics_output_get_rx_bytes_ok
+                               (QmiMessageWdsGetPacketStatisticsOutput *self,
+                                guint64 *value_rx_bytes_ok,
+                                GError **error);
+

Get the 'Rx Bytes Ok' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageWdsGetPacketStatisticsOutput.

 

value_rx_bytes_ok

a placeholder for the output guint64, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.6

+
+
+
+

qmi_message_wds_get_packet_statistics_output_get_tx_packets_dropped ()

+
gboolean
+qmi_message_wds_get_packet_statistics_output_get_tx_packets_dropped
+                               (QmiMessageWdsGetPacketStatisticsOutput *self,
+                                guint32 *value_tx_packets_dropped,
+                                GError **error);
+

Get the 'Tx Packets Dropped' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageWdsGetPacketStatisticsOutput.

 

value_tx_packets_dropped

a placeholder for the output guint32, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.6

+
+
+
+

qmi_message_wds_get_packet_statistics_output_get_rx_packets_dropped ()

+
gboolean
+qmi_message_wds_get_packet_statistics_output_get_rx_packets_dropped
+                               (QmiMessageWdsGetPacketStatisticsOutput *self,
+                                guint32 *value_rx_packets_dropped,
+                                GError **error);
+

Get the 'Rx Packets Dropped' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageWdsGetPacketStatisticsOutput.

 

value_rx_packets_dropped

a placeholder for the output guint32, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.6

+
+
+
+

qmi_client_wds_get_packet_statistics ()

+
void
+qmi_client_wds_get_packet_statistics (QmiClientWds *self,
+                                      QmiMessageWdsGetPacketStatisticsInput *input,
+                                      guint timeout,
+                                      GCancellable *cancellable,
+                                      GAsyncReadyCallback callback,
+                                      gpointer user_data);
+

Asynchronously sends a Get Packet Statistics request to the device.

+

When the operation is finished, callback + will be invoked in the thread-default main loop of the thread you are calling this method from.

+

You can then call qmi_client_wds_get_packet_statistics_finish() to get the result of the operation.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

self

a QmiClientWds.

 

input

a QmiMessageWdsGetPacketStatisticsInput.

 

timeout

maximum time to wait for the method to complete, in seconds.

 

cancellable

a GCancellable or NULL.

 

callback

a GAsyncReadyCallback to call when the request is satisfied.

 

user_data

user data to pass to callback +.

 
+
+

Since: 1.6

+
+
+
+

qmi_client_wds_get_packet_statistics_finish ()

+
QmiMessageWdsGetPacketStatisticsOutput *
+qmi_client_wds_get_packet_statistics_finish
+                               (QmiClientWds *self,
+                                GAsyncResult *res,
+                                GError **error);
+

Finishes an async operation started with qmi_client_wds_get_packet_statistics().

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiClientWds.

 

res

the GAsyncResult obtained from the GAsyncReadyCallback passed to qmi_client_wds_get_packet_statistics().

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

a QmiMessageWdsGetPacketStatisticsOutput, or NULL if error +is set. The returned value should be freed with qmi_message_wds_get_packet_statistics_output_unref().

+
+

Since: 1.6

+
+
+
+

Types and Values

+
+

QmiMessageWdsGetPacketStatisticsInput

+
typedef struct _QmiMessageWdsGetPacketStatisticsInput QmiMessageWdsGetPacketStatisticsInput;
+

The QmiMessageWdsGetPacketStatisticsInput structure contains private data and should only be accessed +using the provided API.

+

Since: 1.6

+
+
+
+

QmiMessageWdsGetPacketStatisticsOutput

+
typedef struct _QmiMessageWdsGetPacketStatisticsOutput QmiMessageWdsGetPacketStatisticsOutput;
+

The QmiMessageWdsGetPacketStatisticsOutput structure contains private data and should only be accessed +using the provided API.

+

Since: 1.6

+
+
+
+ + + \ No newline at end of file diff -Nru libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-WDS-Get-PDN-Throttle-Info.html libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-WDS-Get-PDN-Throttle-Info.html --- libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-WDS-Get-PDN-Throttle-Info.html 2017-03-22 12:28:29.000000000 +0100 +++ libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-WDS-Get-PDN-Throttle-Info.html 1970-01-01 01:00:00.000000000 +0100 @@ -1,638 +0,0 @@ - - - - -WDS Get PDN Throttle Info: libqmi-glib Reference Manual - - - - - - - - - - - - - - - - -
-
-
- - -
-

WDS Get PDN Throttle Info

-

WDS Get PDN Throttle Info

-
- - -
-

Object Hierarchy

-
    GBoxed
-    ├── QmiMessageWdsGetPdnThrottleInfoInput
-    ╰── QmiMessageWdsGetPdnThrottleInfoOutput
-
-
-
-

Description

-
-
-

Functions

-
-

qmi_message_wds_get_pdn_throttle_info_input_new ()

-
QmiMessageWdsGetPdnThrottleInfoInput *
-qmi_message_wds_get_pdn_throttle_info_input_new
-                               (void);
-

Allocates a new QmiMessageWdsGetPdnThrottleInfoInput.

-
-

Returns

-

the newly created QmiMessageWdsGetPdnThrottleInfoInput. The returned value should be freed with qmi_message_wds_get_pdn_throttle_info_input_unref().

-
-

Since: 1.14

-
-
-
-

qmi_message_wds_get_pdn_throttle_info_input_ref ()

-
QmiMessageWdsGetPdnThrottleInfoInput *
-qmi_message_wds_get_pdn_throttle_info_input_ref
-                               (QmiMessageWdsGetPdnThrottleInfoInput *self);
-

Atomically increments the reference count of self - by one.

-
-

Parameters

-
----- - - - - - -

self

a QmiMessageWdsGetPdnThrottleInfoInput.

 
-
-
-

Returns

-

the new reference to self -.

-
-

Since: 1.14

-
-
-
-

qmi_message_wds_get_pdn_throttle_info_input_unref ()

-
void
-qmi_message_wds_get_pdn_throttle_info_input_unref
-                               (QmiMessageWdsGetPdnThrottleInfoInput *self);
-

Atomically decrements the reference count of self - by one. -If the reference count drops to 0, self - is completely disposed.

-
-

Parameters

-
----- - - - - - -

self

a QmiMessageWdsGetPdnThrottleInfoInput.

 
-
-

Since: 1.14

-
-
-
-

qmi_message_wds_get_pdn_throttle_info_input_get_network_type ()

-
gboolean
-qmi_message_wds_get_pdn_throttle_info_input_get_network_type
-                               (QmiMessageWdsGetPdnThrottleInfoInput *self,
-                                QmiWdsDataSystemNetworkType *value_network_type,
-                                GError **error);
-

Get the 'Network Type' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessageWdsGetPdnThrottleInfoInput.

 

value_network_type

a placeholder for the output QmiWdsDataSystemNetworkType, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.14

-
-
-
-

qmi_message_wds_get_pdn_throttle_info_input_set_network_type ()

-
gboolean
-qmi_message_wds_get_pdn_throttle_info_input_set_network_type
-                               (QmiMessageWdsGetPdnThrottleInfoInput *self,
-                                QmiWdsDataSystemNetworkType value_network_type,
-                                GError **error);
-

Set the 'Network Type' field in the message.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessageWdsGetPdnThrottleInfoInput.

 

value_network_type

a QmiWdsDataSystemNetworkType.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if value -was successfully set, FALSE otherwise.

-
-

Since: 1.14

-
-
-
-

qmi_message_wds_get_pdn_throttle_info_output_ref ()

-
QmiMessageWdsGetPdnThrottleInfoOutput *
-qmi_message_wds_get_pdn_throttle_info_output_ref
-                               (QmiMessageWdsGetPdnThrottleInfoOutput *self);
-

Atomically increments the reference count of self - by one.

-
-

Parameters

-
----- - - - - - -

self

a QmiMessageWdsGetPdnThrottleInfoOutput.

 
-
-
-

Returns

-

the new reference to self -.

-
-

Since: 1.14

-
-
-
-

qmi_message_wds_get_pdn_throttle_info_output_unref ()

-
void
-qmi_message_wds_get_pdn_throttle_info_output_unref
-                               (QmiMessageWdsGetPdnThrottleInfoOutput *self);
-

Atomically decrements the reference count of self - by one. -If the reference count drops to 0, self - is completely disposed.

-
-

Parameters

-
----- - - - - - -

self

a QmiMessageWdsGetPdnThrottleInfoOutput.

 
-
-

Since: 1.14

-
-
-
-

qmi_message_wds_get_pdn_throttle_info_output_get_result ()

-
gboolean
-qmi_message_wds_get_pdn_throttle_info_output_get_result
-                               (QmiMessageWdsGetPdnThrottleInfoOutput *self,
-                                GError **error);
-

Get the result of the QMI operation.

-
-

Parameters

-
----- - - - - - - - - - - - - -

self

a QmiMessageWdsGetPdnThrottleInfoOutput.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the QMI operation succeeded, FALSE if error -is set.

-
-

Since: 1.14

-
-
-
-

qmi_message_wds_get_pdn_throttle_info_output_get_info ()

-
gboolean
-qmi_message_wds_get_pdn_throttle_info_output_get_info
-                               (QmiMessageWdsGetPdnThrottleInfoOutput *self,
-                                GArray **value_info,
-                                GError **error);
-

Get the 'Info' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessageWdsGetPdnThrottleInfoOutput.

 

value_info

a placeholder for the output GArray of QmiMessageWdsGetPdnThrottleInfoOutputInfoElement elements, or NULL if not required. Do not free it, it is owned by self -.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.14

-
-
-
-

qmi_client_wds_get_pdn_throttle_info ()

-
void
-qmi_client_wds_get_pdn_throttle_info (QmiClientWds *self,
-                                      QmiMessageWdsGetPdnThrottleInfoInput *input,
-                                      guint timeout,
-                                      GCancellable *cancellable,
-                                      GAsyncReadyCallback callback,
-                                      gpointer user_data);
-

Asynchronously sends a Get PDN Throttle Info request to the device.

-

When the operation is finished, callback - will be invoked in the thread-default main loop of the thread you are calling this method from.

-

You can then call qmi_client_wds_get_pdn_throttle_info_finish() to get the result of the operation.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

self

a QmiClientWds.

 

input

a QmiMessageWdsGetPdnThrottleInfoInput.

 

timeout

maximum time to wait for the method to complete, in seconds.

 

cancellable

a GCancellable or NULL.

 

callback

a GAsyncReadyCallback to call when the request is satisfied.

 

user_data

user data to pass to callback -.

 
-
-

Since: 1.14

-
-
-
-

qmi_client_wds_get_pdn_throttle_info_finish ()

-
QmiMessageWdsGetPdnThrottleInfoOutput *
-qmi_client_wds_get_pdn_throttle_info_finish
-                               (QmiClientWds *self,
-                                GAsyncResult *res,
-                                GError **error);
-

Finishes an async operation started with qmi_client_wds_get_pdn_throttle_info().

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiClientWds.

 

res

the GAsyncResult obtained from the GAsyncReadyCallback passed to qmi_client_wds_get_pdn_throttle_info().

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

a QmiMessageWdsGetPdnThrottleInfoOutput, or NULL if error -is set. The returned value should be freed with qmi_message_wds_get_pdn_throttle_info_output_unref().

-
-

Since: 1.14

-
-
-
-

Types and Values

-
-

QmiMessageWdsGetPdnThrottleInfoInput

-
typedef struct _QmiMessageWdsGetPdnThrottleInfoInput QmiMessageWdsGetPdnThrottleInfoInput;
-

The QmiMessageWdsGetPdnThrottleInfoInput structure contains private data and should only be accessed -using the provided API.

-

Since: 1.14

-
-
-
-

QmiMessageWdsGetPdnThrottleInfoOutput

-
typedef struct _QmiMessageWdsGetPdnThrottleInfoOutput QmiMessageWdsGetPdnThrottleInfoOutput;
-

The QmiMessageWdsGetPdnThrottleInfoOutput structure contains private data and should only be accessed -using the provided API.

-

Since: 1.14

-
-
-
-

QmiMessageWdsGetPdnThrottleInfoOutputInfoElement

-
typedef struct {
-    gboolean ipv4_throttled;
-    gboolean ipv6_throttled;
-    guint32 ipv4_throttle_time_left_ms;
-    guint32 ipv6_throttle_time_left_ms;
-    gchar *apn;
-} QmiMessageWdsGetPdnThrottleInfoOutputInfoElement;
-
-

A QmiMessageWdsGetPdnThrottleInfoOutputInfoElement struct.

-
-

Members

-
----- - - - - - - - - - - - - - - - - - - - - - - - - - - - -

gboolean ipv4_throttled;

a gboolean.

 

gboolean ipv6_throttled;

a gboolean.

 

guint32 ipv4_throttle_time_left_ms;

a guint32.

 

guint32 ipv6_throttle_time_left_ms;

a guint32.

 

gchar *apn;

a string.

 
-
-

Since: 1.14

-
-
-
- - - \ No newline at end of file diff -Nru libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-WDS-Get-PDN-Throttle-Info-request.html libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-WDS-Get-PDN-Throttle-Info-request.html --- libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-WDS-Get-PDN-Throttle-Info-request.html 1970-01-01 01:00:00.000000000 +0100 +++ libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-WDS-Get-PDN-Throttle-Info-request.html 2019-01-08 15:19:02.000000000 +0100 @@ -0,0 +1,638 @@ + + + + +WDS Get PDN Throttle Info request: libqmi-glib Reference Manual + + + + + + + + + + + + + + + + +
+
+
+ + +
+

WDS Get PDN Throttle Info request

+

WDS Get PDN Throttle Info request

+
+ + +
+

Object Hierarchy

+
    GBoxed
+    ├── QmiMessageWdsGetPdnThrottleInfoInput
+    ╰── QmiMessageWdsGetPdnThrottleInfoOutput
+
+
+
+

Description

+
+
+

Functions

+
+

qmi_message_wds_get_pdn_throttle_info_input_new ()

+
QmiMessageWdsGetPdnThrottleInfoInput *
+qmi_message_wds_get_pdn_throttle_info_input_new
+                               (void);
+

Allocates a new QmiMessageWdsGetPdnThrottleInfoInput.

+
+

Returns

+

the newly created QmiMessageWdsGetPdnThrottleInfoInput. The returned value should be freed with qmi_message_wds_get_pdn_throttle_info_input_unref().

+
+

Since: 1.14

+
+
+
+

qmi_message_wds_get_pdn_throttle_info_input_ref ()

+
QmiMessageWdsGetPdnThrottleInfoInput *
+qmi_message_wds_get_pdn_throttle_info_input_ref
+                               (QmiMessageWdsGetPdnThrottleInfoInput *self);
+

Atomically increments the reference count of self + by one.

+
+

Parameters

+
+++++ + + + + + +

self

a QmiMessageWdsGetPdnThrottleInfoInput.

 
+
+
+

Returns

+

the new reference to self +.

+
+

Since: 1.14

+
+
+
+

qmi_message_wds_get_pdn_throttle_info_input_unref ()

+
void
+qmi_message_wds_get_pdn_throttle_info_input_unref
+                               (QmiMessageWdsGetPdnThrottleInfoInput *self);
+

Atomically decrements the reference count of self + by one. +If the reference count drops to 0, self + is completely disposed.

+
+

Parameters

+
+++++ + + + + + +

self

a QmiMessageWdsGetPdnThrottleInfoInput.

 
+
+

Since: 1.14

+
+
+
+

qmi_message_wds_get_pdn_throttle_info_input_get_network_type ()

+
gboolean
+qmi_message_wds_get_pdn_throttle_info_input_get_network_type
+                               (QmiMessageWdsGetPdnThrottleInfoInput *self,
+                                QmiWdsDataSystemNetworkType *value_network_type,
+                                GError **error);
+

Get the 'Network Type' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageWdsGetPdnThrottleInfoInput.

 

value_network_type

a placeholder for the output QmiWdsDataSystemNetworkType, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.14

+
+
+
+

qmi_message_wds_get_pdn_throttle_info_input_set_network_type ()

+
gboolean
+qmi_message_wds_get_pdn_throttle_info_input_set_network_type
+                               (QmiMessageWdsGetPdnThrottleInfoInput *self,
+                                QmiWdsDataSystemNetworkType value_network_type,
+                                GError **error);
+

Set the 'Network Type' field in the message.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageWdsGetPdnThrottleInfoInput.

 

value_network_type

a QmiWdsDataSystemNetworkType.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if value +was successfully set, FALSE otherwise.

+
+

Since: 1.14

+
+
+
+

qmi_message_wds_get_pdn_throttle_info_output_ref ()

+
QmiMessageWdsGetPdnThrottleInfoOutput *
+qmi_message_wds_get_pdn_throttle_info_output_ref
+                               (QmiMessageWdsGetPdnThrottleInfoOutput *self);
+

Atomically increments the reference count of self + by one.

+
+

Parameters

+
+++++ + + + + + +

self

a QmiMessageWdsGetPdnThrottleInfoOutput.

 
+
+
+

Returns

+

the new reference to self +.

+
+

Since: 1.14

+
+
+
+

qmi_message_wds_get_pdn_throttle_info_output_unref ()

+
void
+qmi_message_wds_get_pdn_throttle_info_output_unref
+                               (QmiMessageWdsGetPdnThrottleInfoOutput *self);
+

Atomically decrements the reference count of self + by one. +If the reference count drops to 0, self + is completely disposed.

+
+

Parameters

+
+++++ + + + + + +

self

a QmiMessageWdsGetPdnThrottleInfoOutput.

 
+
+

Since: 1.14

+
+
+
+

qmi_message_wds_get_pdn_throttle_info_output_get_result ()

+
gboolean
+qmi_message_wds_get_pdn_throttle_info_output_get_result
+                               (QmiMessageWdsGetPdnThrottleInfoOutput *self,
+                                GError **error);
+

Get the result of the QMI operation.

+
+

Parameters

+
+++++ + + + + + + + + + + + + +

self

a QmiMessageWdsGetPdnThrottleInfoOutput.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the QMI operation succeeded, FALSE if error +is set.

+
+

Since: 1.14

+
+
+
+

qmi_message_wds_get_pdn_throttle_info_output_get_info ()

+
gboolean
+qmi_message_wds_get_pdn_throttle_info_output_get_info
+                               (QmiMessageWdsGetPdnThrottleInfoOutput *self,
+                                GArray **value_info,
+                                GError **error);
+

Get the 'Info' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageWdsGetPdnThrottleInfoOutput.

 

value_info

a placeholder for the output GArray of QmiMessageWdsGetPdnThrottleInfoOutputInfoElement elements, or NULL if not required. Do not free it, it is owned by self +.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.14

+
+
+
+

qmi_client_wds_get_pdn_throttle_info ()

+
void
+qmi_client_wds_get_pdn_throttle_info (QmiClientWds *self,
+                                      QmiMessageWdsGetPdnThrottleInfoInput *input,
+                                      guint timeout,
+                                      GCancellable *cancellable,
+                                      GAsyncReadyCallback callback,
+                                      gpointer user_data);
+

Asynchronously sends a Get PDN Throttle Info request to the device.

+

When the operation is finished, callback + will be invoked in the thread-default main loop of the thread you are calling this method from.

+

You can then call qmi_client_wds_get_pdn_throttle_info_finish() to get the result of the operation.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

self

a QmiClientWds.

 

input

a QmiMessageWdsGetPdnThrottleInfoInput.

 

timeout

maximum time to wait for the method to complete, in seconds.

 

cancellable

a GCancellable or NULL.

 

callback

a GAsyncReadyCallback to call when the request is satisfied.

 

user_data

user data to pass to callback +.

 
+
+

Since: 1.14

+
+
+
+

qmi_client_wds_get_pdn_throttle_info_finish ()

+
QmiMessageWdsGetPdnThrottleInfoOutput *
+qmi_client_wds_get_pdn_throttle_info_finish
+                               (QmiClientWds *self,
+                                GAsyncResult *res,
+                                GError **error);
+

Finishes an async operation started with qmi_client_wds_get_pdn_throttle_info().

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiClientWds.

 

res

the GAsyncResult obtained from the GAsyncReadyCallback passed to qmi_client_wds_get_pdn_throttle_info().

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

a QmiMessageWdsGetPdnThrottleInfoOutput, or NULL if error +is set. The returned value should be freed with qmi_message_wds_get_pdn_throttle_info_output_unref().

+
+

Since: 1.14

+
+
+
+

Types and Values

+
+

QmiMessageWdsGetPdnThrottleInfoInput

+
typedef struct _QmiMessageWdsGetPdnThrottleInfoInput QmiMessageWdsGetPdnThrottleInfoInput;
+

The QmiMessageWdsGetPdnThrottleInfoInput structure contains private data and should only be accessed +using the provided API.

+

Since: 1.14

+
+
+
+

QmiMessageWdsGetPdnThrottleInfoOutput

+
typedef struct _QmiMessageWdsGetPdnThrottleInfoOutput QmiMessageWdsGetPdnThrottleInfoOutput;
+

The QmiMessageWdsGetPdnThrottleInfoOutput structure contains private data and should only be accessed +using the provided API.

+

Since: 1.14

+
+
+
+

QmiMessageWdsGetPdnThrottleInfoOutputInfoElement

+
typedef struct {
+    gboolean ipv4_throttled;
+    gboolean ipv6_throttled;
+    guint32 ipv4_throttle_time_left_ms;
+    guint32 ipv6_throttle_time_left_ms;
+    gchar *apn;
+} QmiMessageWdsGetPdnThrottleInfoOutputInfoElement;
+
+

A QmiMessageWdsGetPdnThrottleInfoOutputInfoElement struct.

+
+

Members

+
+++++ + + + + + + + + + + + + + + + + + + + + + + + + + + + +

gboolean ipv4_throttled;

a gboolean.

 

gboolean ipv6_throttled;

a gboolean.

 

guint32 ipv4_throttle_time_left_ms;

a guint32.

 

guint32 ipv6_throttle_time_left_ms;

a guint32.

 

gchar *apn;

a string.

 
+
+

Since: 1.14

+
+
+
+ + + \ No newline at end of file diff -Nru libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-WDS-Get-Profile-List.html libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-WDS-Get-Profile-List.html --- libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-WDS-Get-Profile-List.html 2017-03-22 12:28:29.000000000 +0100 +++ libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-WDS-Get-Profile-List.html 1970-01-01 01:00:00.000000000 +0100 @@ -1,677 +0,0 @@ - - - - -WDS Get Profile List: libqmi-glib Reference Manual - - - - - - - - - - - - - - - - -
-
-
- - -
-

WDS Get Profile List

-

WDS Get Profile List

-
- - -
-

Object Hierarchy

-
    GBoxed
-    ├── QmiMessageWdsGetProfileListInput
-    ╰── QmiMessageWdsGetProfileListOutput
-
-
-
-

Description

-
-
-

Functions

-
-

qmi_message_wds_get_profile_list_input_new ()

-
QmiMessageWdsGetProfileListInput *
-qmi_message_wds_get_profile_list_input_new
-                               (void);
-

Allocates a new QmiMessageWdsGetProfileListInput.

-
-

Returns

-

the newly created QmiMessageWdsGetProfileListInput. The returned value should be freed with qmi_message_wds_get_profile_list_input_unref().

-
-

Since: 1.8

-
-
-
-

qmi_message_wds_get_profile_list_input_ref ()

-
QmiMessageWdsGetProfileListInput *
-qmi_message_wds_get_profile_list_input_ref
-                               (QmiMessageWdsGetProfileListInput *self);
-

Atomically increments the reference count of self - by one.

-
-

Parameters

-
----- - - - - - -

self

a QmiMessageWdsGetProfileListInput.

 
-
-
-

Returns

-

the new reference to self -.

-
-

Since: 1.8

-
-
-
-

qmi_message_wds_get_profile_list_input_unref ()

-
void
-qmi_message_wds_get_profile_list_input_unref
-                               (QmiMessageWdsGetProfileListInput *self);
-

Atomically decrements the reference count of self - by one. -If the reference count drops to 0, self - is completely disposed.

-
-

Parameters

-
----- - - - - - -

self

a QmiMessageWdsGetProfileListInput.

 
-
-

Since: 1.8

-
-
-
-

qmi_message_wds_get_profile_list_input_get_profile_type ()

-
gboolean
-qmi_message_wds_get_profile_list_input_get_profile_type
-                               (QmiMessageWdsGetProfileListInput *self,
-                                QmiWdsProfileType *value_profile_type,
-                                GError **error);
-

Get the 'Profile Type' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessageWdsGetProfileListInput.

 

value_profile_type

a placeholder for the output QmiWdsProfileType, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.8

-
-
-
-

qmi_message_wds_get_profile_list_input_set_profile_type ()

-
gboolean
-qmi_message_wds_get_profile_list_input_set_profile_type
-                               (QmiMessageWdsGetProfileListInput *self,
-                                QmiWdsProfileType value_profile_type,
-                                GError **error);
-

Set the 'Profile Type' field in the message.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessageWdsGetProfileListInput.

 

value_profile_type

a QmiWdsProfileType.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if value -was successfully set, FALSE otherwise.

-
-

Since: 1.8

-
-
-
-

qmi_message_wds_get_profile_list_output_ref ()

-
QmiMessageWdsGetProfileListOutput *
-qmi_message_wds_get_profile_list_output_ref
-                               (QmiMessageWdsGetProfileListOutput *self);
-

Atomically increments the reference count of self - by one.

-
-

Parameters

-
----- - - - - - -

self

a QmiMessageWdsGetProfileListOutput.

 
-
-
-

Returns

-

the new reference to self -.

-
-

Since: 1.8

-
-
-
-

qmi_message_wds_get_profile_list_output_unref ()

-
void
-qmi_message_wds_get_profile_list_output_unref
-                               (QmiMessageWdsGetProfileListOutput *self);
-

Atomically decrements the reference count of self - by one. -If the reference count drops to 0, self - is completely disposed.

-
-

Parameters

-
----- - - - - - -

self

a QmiMessageWdsGetProfileListOutput.

 
-
-

Since: 1.8

-
-
-
-

qmi_message_wds_get_profile_list_output_get_result ()

-
gboolean
-qmi_message_wds_get_profile_list_output_get_result
-                               (QmiMessageWdsGetProfileListOutput *self,
-                                GError **error);
-

Get the result of the QMI operation.

-
-

Parameters

-
----- - - - - - - - - - - - - -

self

a QmiMessageWdsGetProfileListOutput.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the QMI operation succeeded, FALSE if error -is set.

-
-

Since: 1.8

-
-
-
-

qmi_message_wds_get_profile_list_output_get_profile_list ()

-
gboolean
-qmi_message_wds_get_profile_list_output_get_profile_list
-                               (QmiMessageWdsGetProfileListOutput *self,
-                                GArray **value_profile_list,
-                                GError **error);
-

Get the 'Profile List' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessageWdsGetProfileListOutput.

 

value_profile_list

a placeholder for the output GArray of QmiMessageWdsGetProfileListOutputProfileListProfile elements, or NULL if not required. Do not free it, it is owned by self -.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.8

-
-
-
-

qmi_message_wds_get_profile_list_output_get_extended_error_code ()

-
gboolean
-qmi_message_wds_get_profile_list_output_get_extended_error_code
-                               (QmiMessageWdsGetProfileListOutput *self,
-                                QmiWdsDsProfileError *value_extended_error_code,
-                                GError **error);
-

Get the 'Extended Error Code' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessageWdsGetProfileListOutput.

 

value_extended_error_code

a placeholder for the output QmiWdsDsProfileError, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.8

-
-
-
-

qmi_client_wds_get_profile_list ()

-
void
-qmi_client_wds_get_profile_list (QmiClientWds *self,
-                                 QmiMessageWdsGetProfileListInput *input,
-                                 guint timeout,
-                                 GCancellable *cancellable,
-                                 GAsyncReadyCallback callback,
-                                 gpointer user_data);
-

Asynchronously sends a Get Profile List request to the device.

-

When the operation is finished, callback - will be invoked in the thread-default main loop of the thread you are calling this method from.

-

You can then call qmi_client_wds_get_profile_list_finish() to get the result of the operation.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

self

a QmiClientWds.

 

input

a QmiMessageWdsGetProfileListInput.

 

timeout

maximum time to wait for the method to complete, in seconds.

 

cancellable

a GCancellable or NULL.

 

callback

a GAsyncReadyCallback to call when the request is satisfied.

 

user_data

user data to pass to callback -.

 
-
-

Since: 1.8

-
-
-
-

qmi_client_wds_get_profile_list_finish ()

-
QmiMessageWdsGetProfileListOutput *
-qmi_client_wds_get_profile_list_finish
-                               (QmiClientWds *self,
-                                GAsyncResult *res,
-                                GError **error);
-

Finishes an async operation started with qmi_client_wds_get_profile_list().

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiClientWds.

 

res

the GAsyncResult obtained from the GAsyncReadyCallback passed to qmi_client_wds_get_profile_list().

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

a QmiMessageWdsGetProfileListOutput, or NULL if error -is set. The returned value should be freed with qmi_message_wds_get_profile_list_output_unref().

-
-

Since: 1.8

-
-
-
-

Types and Values

-
-

QmiMessageWdsGetProfileListInput

-
typedef struct _QmiMessageWdsGetProfileListInput QmiMessageWdsGetProfileListInput;
-

The QmiMessageWdsGetProfileListInput structure contains private data and should only be accessed -using the provided API.

-

Since: 1.8

-
-
-
-

QmiMessageWdsGetProfileListOutput

-
typedef struct _QmiMessageWdsGetProfileListOutput QmiMessageWdsGetProfileListOutput;
-

The QmiMessageWdsGetProfileListOutput structure contains private data and should only be accessed -using the provided API.

-

Since: 1.8

-
-
-
-

QmiMessageWdsGetProfileListOutputProfileListProfile

-
typedef struct {
-    QmiWdsProfileType profile_type;
-    guint8 profile_index;
-    gchar *profile_name;
-} QmiMessageWdsGetProfileListOutputProfileListProfile;
-
-

A QmiMessageWdsGetProfileListOutputProfileListProfile struct.

-
-

Members

-
----- - - - - - - - - - - - - - - - - - -

QmiWdsProfileType profile_type;

a QmiWdsProfileType.

 

guint8 profile_index;

a guint8.

 

gchar *profile_name;

a string.

 
-
-

Since: 1.8

-
-
-
- - - \ No newline at end of file diff -Nru libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-WDS-Get-Profile-List-request.html libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-WDS-Get-Profile-List-request.html --- libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-WDS-Get-Profile-List-request.html 1970-01-01 01:00:00.000000000 +0100 +++ libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-WDS-Get-Profile-List-request.html 2019-01-08 15:19:02.000000000 +0100 @@ -0,0 +1,677 @@ + + + + +WDS Get Profile List request: libqmi-glib Reference Manual + + + + + + + + + + + + + + + + +
+
+
+ + +
+

WDS Get Profile List request

+

WDS Get Profile List request

+
+ + +
+

Object Hierarchy

+
    GBoxed
+    ├── QmiMessageWdsGetProfileListInput
+    ╰── QmiMessageWdsGetProfileListOutput
+
+
+
+

Description

+
+
+

Functions

+
+

qmi_message_wds_get_profile_list_input_new ()

+
QmiMessageWdsGetProfileListInput *
+qmi_message_wds_get_profile_list_input_new
+                               (void);
+

Allocates a new QmiMessageWdsGetProfileListInput.

+
+

Returns

+

the newly created QmiMessageWdsGetProfileListInput. The returned value should be freed with qmi_message_wds_get_profile_list_input_unref().

+
+

Since: 1.8

+
+
+
+

qmi_message_wds_get_profile_list_input_ref ()

+
QmiMessageWdsGetProfileListInput *
+qmi_message_wds_get_profile_list_input_ref
+                               (QmiMessageWdsGetProfileListInput *self);
+

Atomically increments the reference count of self + by one.

+
+

Parameters

+
+++++ + + + + + +

self

a QmiMessageWdsGetProfileListInput.

 
+
+
+

Returns

+

the new reference to self +.

+
+

Since: 1.8

+
+
+
+

qmi_message_wds_get_profile_list_input_unref ()

+
void
+qmi_message_wds_get_profile_list_input_unref
+                               (QmiMessageWdsGetProfileListInput *self);
+

Atomically decrements the reference count of self + by one. +If the reference count drops to 0, self + is completely disposed.

+
+

Parameters

+
+++++ + + + + + +

self

a QmiMessageWdsGetProfileListInput.

 
+
+

Since: 1.8

+
+
+
+

qmi_message_wds_get_profile_list_input_get_profile_type ()

+
gboolean
+qmi_message_wds_get_profile_list_input_get_profile_type
+                               (QmiMessageWdsGetProfileListInput *self,
+                                QmiWdsProfileType *value_profile_type,
+                                GError **error);
+

Get the 'Profile Type' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageWdsGetProfileListInput.

 

value_profile_type

a placeholder for the output QmiWdsProfileType, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.8

+
+
+
+

qmi_message_wds_get_profile_list_input_set_profile_type ()

+
gboolean
+qmi_message_wds_get_profile_list_input_set_profile_type
+                               (QmiMessageWdsGetProfileListInput *self,
+                                QmiWdsProfileType value_profile_type,
+                                GError **error);
+

Set the 'Profile Type' field in the message.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageWdsGetProfileListInput.

 

value_profile_type

a QmiWdsProfileType.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if value +was successfully set, FALSE otherwise.

+
+

Since: 1.8

+
+
+
+

qmi_message_wds_get_profile_list_output_ref ()

+
QmiMessageWdsGetProfileListOutput *
+qmi_message_wds_get_profile_list_output_ref
+                               (QmiMessageWdsGetProfileListOutput *self);
+

Atomically increments the reference count of self + by one.

+
+

Parameters

+
+++++ + + + + + +

self

a QmiMessageWdsGetProfileListOutput.

 
+
+
+

Returns

+

the new reference to self +.

+
+

Since: 1.8

+
+
+
+

qmi_message_wds_get_profile_list_output_unref ()

+
void
+qmi_message_wds_get_profile_list_output_unref
+                               (QmiMessageWdsGetProfileListOutput *self);
+

Atomically decrements the reference count of self + by one. +If the reference count drops to 0, self + is completely disposed.

+
+

Parameters

+
+++++ + + + + + +

self

a QmiMessageWdsGetProfileListOutput.

 
+
+

Since: 1.8

+
+
+
+

qmi_message_wds_get_profile_list_output_get_result ()

+
gboolean
+qmi_message_wds_get_profile_list_output_get_result
+                               (QmiMessageWdsGetProfileListOutput *self,
+                                GError **error);
+

Get the result of the QMI operation.

+
+

Parameters

+
+++++ + + + + + + + + + + + + +

self

a QmiMessageWdsGetProfileListOutput.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the QMI operation succeeded, FALSE if error +is set.

+
+

Since: 1.8

+
+
+
+

qmi_message_wds_get_profile_list_output_get_profile_list ()

+
gboolean
+qmi_message_wds_get_profile_list_output_get_profile_list
+                               (QmiMessageWdsGetProfileListOutput *self,
+                                GArray **value_profile_list,
+                                GError **error);
+

Get the 'Profile List' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageWdsGetProfileListOutput.

 

value_profile_list

a placeholder for the output GArray of QmiMessageWdsGetProfileListOutputProfileListProfile elements, or NULL if not required. Do not free it, it is owned by self +.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.8

+
+
+
+

qmi_message_wds_get_profile_list_output_get_extended_error_code ()

+
gboolean
+qmi_message_wds_get_profile_list_output_get_extended_error_code
+                               (QmiMessageWdsGetProfileListOutput *self,
+                                QmiWdsDsProfileError *value_extended_error_code,
+                                GError **error);
+

Get the 'Extended Error Code' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageWdsGetProfileListOutput.

 

value_extended_error_code

a placeholder for the output QmiWdsDsProfileError, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.8

+
+
+
+

qmi_client_wds_get_profile_list ()

+
void
+qmi_client_wds_get_profile_list (QmiClientWds *self,
+                                 QmiMessageWdsGetProfileListInput *input,
+                                 guint timeout,
+                                 GCancellable *cancellable,
+                                 GAsyncReadyCallback callback,
+                                 gpointer user_data);
+

Asynchronously sends a Get Profile List request to the device.

+

When the operation is finished, callback + will be invoked in the thread-default main loop of the thread you are calling this method from.

+

You can then call qmi_client_wds_get_profile_list_finish() to get the result of the operation.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

self

a QmiClientWds.

 

input

a QmiMessageWdsGetProfileListInput.

 

timeout

maximum time to wait for the method to complete, in seconds.

 

cancellable

a GCancellable or NULL.

 

callback

a GAsyncReadyCallback to call when the request is satisfied.

 

user_data

user data to pass to callback +.

 
+
+

Since: 1.8

+
+
+
+

qmi_client_wds_get_profile_list_finish ()

+
QmiMessageWdsGetProfileListOutput *
+qmi_client_wds_get_profile_list_finish
+                               (QmiClientWds *self,
+                                GAsyncResult *res,
+                                GError **error);
+

Finishes an async operation started with qmi_client_wds_get_profile_list().

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiClientWds.

 

res

the GAsyncResult obtained from the GAsyncReadyCallback passed to qmi_client_wds_get_profile_list().

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

a QmiMessageWdsGetProfileListOutput, or NULL if error +is set. The returned value should be freed with qmi_message_wds_get_profile_list_output_unref().

+
+

Since: 1.8

+
+
+
+

Types and Values

+
+

QmiMessageWdsGetProfileListInput

+
typedef struct _QmiMessageWdsGetProfileListInput QmiMessageWdsGetProfileListInput;
+

The QmiMessageWdsGetProfileListInput structure contains private data and should only be accessed +using the provided API.

+

Since: 1.8

+
+
+
+

QmiMessageWdsGetProfileListOutput

+
typedef struct _QmiMessageWdsGetProfileListOutput QmiMessageWdsGetProfileListOutput;
+

The QmiMessageWdsGetProfileListOutput structure contains private data and should only be accessed +using the provided API.

+

Since: 1.8

+
+
+
+

QmiMessageWdsGetProfileListOutputProfileListProfile

+
typedef struct {
+    QmiWdsProfileType profile_type;
+    guint8 profile_index;
+    gchar *profile_name;
+} QmiMessageWdsGetProfileListOutputProfileListProfile;
+
+

A QmiMessageWdsGetProfileListOutputProfileListProfile struct.

+
+

Members

+
+++++ + + + + + + + + + + + + + + + + + +

QmiWdsProfileType profile_type;

a QmiWdsProfileType.

 

guint8 profile_index;

a guint8.

 

gchar *profile_name;

a string.

 
+
+

Since: 1.8

+
+
+
+ + + \ No newline at end of file diff -Nru libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-WDS-Get-Profile-Settings.html libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-WDS-Get-Profile-Settings.html --- libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-WDS-Get-Profile-Settings.html 2017-03-22 12:28:29.000000000 +0100 +++ libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-WDS-Get-Profile-Settings.html 1970-01-01 01:00:00.000000000 +0100 @@ -1,2322 +0,0 @@ - - - - -WDS Get Profile Settings: libqmi-glib Reference Manual - - - - - - - - - - - - - - - - -
-
-
- - -
-

WDS Get Profile Settings

-

WDS Get Profile Settings

-
-
-

Functions

-
---- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
-QmiMessageWdsGetProfileSettingsInput * - -qmi_message_wds_get_profile_settings_input_new () -
-QmiMessageWdsGetProfileSettingsInput * - -qmi_message_wds_get_profile_settings_input_ref () -
-void - -qmi_message_wds_get_profile_settings_input_unref () -
-gboolean - -qmi_message_wds_get_profile_settings_input_get_profile_id () -
-gboolean - -qmi_message_wds_get_profile_settings_input_set_profile_id () -
-QmiMessageWdsGetProfileSettingsOutput * - -qmi_message_wds_get_profile_settings_output_ref () -
-void - -qmi_message_wds_get_profile_settings_output_unref () -
-gboolean - -qmi_message_wds_get_profile_settings_output_get_result () -
-gboolean - -qmi_message_wds_get_profile_settings_output_get_profile_name () -
-gboolean - -qmi_message_wds_get_profile_settings_output_get_pdp_type () -
-gboolean - -qmi_message_wds_get_profile_settings_output_get_pdp_header_compression_type () -
-gboolean - -qmi_message_wds_get_profile_settings_output_get_pdp_data_compression_type () -
-gboolean - -qmi_message_wds_get_profile_settings_output_get_apn_name () -
-gboolean - -qmi_message_wds_get_profile_settings_output_get_primary_ipv4_dns_address () -
-gboolean - -qmi_message_wds_get_profile_settings_output_get_secondary_ipv4_dns_address () -
-gboolean - -qmi_message_wds_get_profile_settings_output_get_umts_requested_qos () -
-gboolean - -qmi_message_wds_get_profile_settings_output_get_umts_minimum_qos () -
-gboolean - -qmi_message_wds_get_profile_settings_output_get_gprs_requested_qos () -
-gboolean - -qmi_message_wds_get_profile_settings_output_get_gprs_minimum_qos () -
-gboolean - -qmi_message_wds_get_profile_settings_output_get_username () -
-gboolean - -qmi_message_wds_get_profile_settings_output_get_password () -
-gboolean - -qmi_message_wds_get_profile_settings_output_get_authentication () -
-gboolean - -qmi_message_wds_get_profile_settings_output_get_ipv4_address_preference () -
-gboolean - -qmi_message_wds_get_profile_settings_output_get_pcscf_address_using_pco () -
-gboolean - -qmi_message_wds_get_profile_settings_output_get_pcscf_address_using_dhcp () -
-gboolean - -qmi_message_wds_get_profile_settings_output_get_imcn_flag () -
-gboolean - -qmi_message_wds_get_profile_settings_output_get_pdp_context_number () -
-gboolean - -qmi_message_wds_get_profile_settings_output_get_pdp_context_secondary_flag () -
-gboolean - -qmi_message_wds_get_profile_settings_output_get_pdp_context_primary_id () -
-gboolean - -qmi_message_wds_get_profile_settings_output_get_ipv6_address_preference () -
-gboolean - -qmi_message_wds_get_profile_settings_output_get_umts_requested_qos_with_signaling_indication_flag () -
-gboolean - -qmi_message_wds_get_profile_settings_output_get_umts_minimum_qos_with_signaling_indication_flag () -
-gboolean - -qmi_message_wds_get_profile_settings_output_get_ipv6_primary_dns_address_preference () -
-gboolean - -qmi_message_wds_get_profile_settings_output_get_ipv6_secondary_dns_address_preference () -
-gboolean - -qmi_message_wds_get_profile_settings_output_get_lte_qos_parameters () -
-gboolean - -qmi_message_wds_get_profile_settings_output_get_extended_error_code () -
-void - -qmi_client_wds_get_profile_settings () -
-QmiMessageWdsGetProfileSettingsOutput * - -qmi_client_wds_get_profile_settings_finish () -
-
-
-

Types and Values

- -
-
-

Object Hierarchy

-
    GBoxed
-    ├── QmiMessageWdsGetProfileSettingsInput
-    ╰── QmiMessageWdsGetProfileSettingsOutput
-
-
-
-

Description

-
-
-

Functions

-
-

qmi_message_wds_get_profile_settings_input_new ()

-
QmiMessageWdsGetProfileSettingsInput *
-qmi_message_wds_get_profile_settings_input_new
-                               (void);
-

Allocates a new QmiMessageWdsGetProfileSettingsInput.

-
-

Returns

-

the newly created QmiMessageWdsGetProfileSettingsInput. The returned value should be freed with qmi_message_wds_get_profile_settings_input_unref().

-
-

Since: 1.8

-
-
-
-

qmi_message_wds_get_profile_settings_input_ref ()

-
QmiMessageWdsGetProfileSettingsInput *
-qmi_message_wds_get_profile_settings_input_ref
-                               (QmiMessageWdsGetProfileSettingsInput *self);
-

Atomically increments the reference count of self - by one.

-
-

Parameters

-
----- - - - - - -

self

a QmiMessageWdsGetProfileSettingsInput.

 
-
-
-

Returns

-

the new reference to self -.

-
-

Since: 1.8

-
-
-
-

qmi_message_wds_get_profile_settings_input_unref ()

-
void
-qmi_message_wds_get_profile_settings_input_unref
-                               (QmiMessageWdsGetProfileSettingsInput *self);
-

Atomically decrements the reference count of self - by one. -If the reference count drops to 0, self - is completely disposed.

-
-

Parameters

-
----- - - - - - -

self

a QmiMessageWdsGetProfileSettingsInput.

 
-
-

Since: 1.8

-
-
-
-

qmi_message_wds_get_profile_settings_input_get_profile_id ()

-
gboolean
-qmi_message_wds_get_profile_settings_input_get_profile_id
-                               (QmiMessageWdsGetProfileSettingsInput *self,
-                                QmiWdsProfileType *value_profile_id_profile_type,
-                                guint8 *value_profile_id_profile_index,
-                                GError **error);
-

Get the 'Profile ID' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - - - - - - -

self

a QmiMessageWdsGetProfileSettingsInput.

 

value_profile_id_profile_type

a placeholder for the output QmiWdsProfileType, or NULL if not required.

 

value_profile_id_profile_index

a placeholder for the output guint8, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.8

-
-
-
-

qmi_message_wds_get_profile_settings_input_set_profile_id ()

-
gboolean
-qmi_message_wds_get_profile_settings_input_set_profile_id
-                               (QmiMessageWdsGetProfileSettingsInput *self,
-                                QmiWdsProfileType value_profile_id_profile_type,
-                                guint8 value_profile_id_profile_index,
-                                GError **error);
-

Set the 'Profile ID' field in the message.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - - - - - - -

self

a QmiMessageWdsGetProfileSettingsInput.

 

value_profile_id_profile_type

a QmiWdsProfileType.

 

value_profile_id_profile_index

a guint8.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if value -was successfully set, FALSE otherwise.

-
-

Since: 1.8

-
-
-
-

qmi_message_wds_get_profile_settings_output_ref ()

-
QmiMessageWdsGetProfileSettingsOutput *
-qmi_message_wds_get_profile_settings_output_ref
-                               (QmiMessageWdsGetProfileSettingsOutput *self);
-

Atomically increments the reference count of self - by one.

-
-

Parameters

-
----- - - - - - -

self

a QmiMessageWdsGetProfileSettingsOutput.

 
-
-
-

Returns

-

the new reference to self -.

-
-

Since: 1.8

-
-
-
-

qmi_message_wds_get_profile_settings_output_unref ()

-
void
-qmi_message_wds_get_profile_settings_output_unref
-                               (QmiMessageWdsGetProfileSettingsOutput *self);
-

Atomically decrements the reference count of self - by one. -If the reference count drops to 0, self - is completely disposed.

-
-

Parameters

-
----- - - - - - -

self

a QmiMessageWdsGetProfileSettingsOutput.

 
-
-

Since: 1.8

-
-
-
-

qmi_message_wds_get_profile_settings_output_get_result ()

-
gboolean
-qmi_message_wds_get_profile_settings_output_get_result
-                               (QmiMessageWdsGetProfileSettingsOutput *self,
-                                GError **error);
-

Get the result of the QMI operation.

-
-

Parameters

-
----- - - - - - - - - - - - - -

self

a QmiMessageWdsGetProfileSettingsOutput.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the QMI operation succeeded, FALSE if error -is set.

-
-

Since: 1.8

-
-
-
-

qmi_message_wds_get_profile_settings_output_get_profile_name ()

-
gboolean
-qmi_message_wds_get_profile_settings_output_get_profile_name
-                               (QmiMessageWdsGetProfileSettingsOutput *self,
-                                const gchar **value_profile_name,
-                                GError **error);
-

Get the 'Profile Name' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessageWdsGetProfileSettingsOutput.

 

value_profile_name

a placeholder for the output constant string, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.8

-
-
-
-

qmi_message_wds_get_profile_settings_output_get_pdp_type ()

-
gboolean
-qmi_message_wds_get_profile_settings_output_get_pdp_type
-                               (QmiMessageWdsGetProfileSettingsOutput *self,
-                                QmiWdsPdpType *value_pdp_type,
-                                GError **error);
-

Get the 'PDP Type' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessageWdsGetProfileSettingsOutput.

 

value_pdp_type

a placeholder for the output QmiWdsPdpType, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.8

-
-
-
-

qmi_message_wds_get_profile_settings_output_get_pdp_header_compression_type ()

-
gboolean
-qmi_message_wds_get_profile_settings_output_get_pdp_header_compression_type
-                               (QmiMessageWdsGetProfileSettingsOutput *self,
-                                QmiWdsPdpHeaderCompressionType *value_pdp_header_compression_type,
-                                GError **error);
-

Get the 'PDP Header Compression Type' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessageWdsGetProfileSettingsOutput.

 

value_pdp_header_compression_type

a placeholder for the output QmiWdsPdpHeaderCompressionType, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.18

-
-
-
-

qmi_message_wds_get_profile_settings_output_get_pdp_data_compression_type ()

-
gboolean
-qmi_message_wds_get_profile_settings_output_get_pdp_data_compression_type
-                               (QmiMessageWdsGetProfileSettingsOutput *self,
-                                QmiWdsPdpDataCompressionType *value_pdp_data_compression_type,
-                                GError **error);
-

Get the 'PDP Data Compression Type' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessageWdsGetProfileSettingsOutput.

 

value_pdp_data_compression_type

a placeholder for the output QmiWdsPdpDataCompressionType, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.18

-
-
-
-

qmi_message_wds_get_profile_settings_output_get_apn_name ()

-
gboolean
-qmi_message_wds_get_profile_settings_output_get_apn_name
-                               (QmiMessageWdsGetProfileSettingsOutput *self,
-                                const gchar **value_apn_name,
-                                GError **error);
-

Get the 'APN Name' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessageWdsGetProfileSettingsOutput.

 

value_apn_name

a placeholder for the output constant string, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.8

-
-
-
-

qmi_message_wds_get_profile_settings_output_get_primary_ipv4_dns_address ()

-
gboolean
-qmi_message_wds_get_profile_settings_output_get_primary_ipv4_dns_address
-                               (QmiMessageWdsGetProfileSettingsOutput *self,
-                                guint32 *value_primary_ipv4_dns_address,
-                                GError **error);
-

Get the 'Primary IPv4 DNS Address' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessageWdsGetProfileSettingsOutput.

 

value_primary_ipv4_dns_address

a placeholder for the output guint32, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.8

-
-
-
-

qmi_message_wds_get_profile_settings_output_get_secondary_ipv4_dns_address ()

-
gboolean
-qmi_message_wds_get_profile_settings_output_get_secondary_ipv4_dns_address
-                               (QmiMessageWdsGetProfileSettingsOutput *self,
-                                guint32 *value_secondary_ipv4_dns_address,
-                                GError **error);
-

Get the 'Secondary IPv4 DNS Address' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessageWdsGetProfileSettingsOutput.

 

value_secondary_ipv4_dns_address

a placeholder for the output guint32, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.8

-
-
-
-

qmi_message_wds_get_profile_settings_output_get_umts_requested_qos ()

-
gboolean
-qmi_message_wds_get_profile_settings_output_get_umts_requested_qos
-                               (QmiMessageWdsGetProfileSettingsOutput *self,
-                                QmiWdsTrafficClass *value_umts_requested_qos_traffic_class,
-                                guint32 *value_umts_requested_qos_max_uplink_bitrate,
-                                guint32 *value_umts_requested_qos_max_downlink_bitrate,
-                                guint32 *value_umts_requested_qos_guaranteed_uplink_bitrate,
-                                guint32 *value_umts_requested_qos_guaranteed_downlink_bitrate,
-                                QmiWdsDeliveryOrder *value_umts_requested_qos_qos_delivery_order,
-                                guint32 *value_umts_requested_qos_maximum_sdu_size,
-                                QmiWdsSduErrorRatio *value_umts_requested_qos_sdu_error_ratio,
-                                QmiWdsSduResidualBitErrorRatio *value_umts_requested_qos_residual_bit_error_ratio,
-                                QmiWdsSduErroneousDelivery *value_umts_requested_qos_delivery_erroneous_sdu,
-                                guint32 *value_umts_requested_qos_transfer_delay,
-                                guint32 *value_umts_requested_qos_traffic_handling_priority,
-                                GError **error);
-

Get the 'UMTS Requested QoS' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

self

a QmiMessageWdsGetProfileSettingsOutput.

 

value_umts_requested_qos_traffic_class

a placeholder for the output QmiWdsTrafficClass, or NULL if not required.

 

value_umts_requested_qos_max_uplink_bitrate

a placeholder for the output guint32, or NULL if not required.

 

value_umts_requested_qos_max_downlink_bitrate

a placeholder for the output guint32, or NULL if not required.

 

value_umts_requested_qos_guaranteed_uplink_bitrate

a placeholder for the output guint32, or NULL if not required.

 

value_umts_requested_qos_guaranteed_downlink_bitrate

a placeholder for the output guint32, or NULL if not required.

 

value_umts_requested_qos_qos_delivery_order

a placeholder for the output QmiWdsDeliveryOrder, or NULL if not required.

 

value_umts_requested_qos_maximum_sdu_size

a placeholder for the output guint32, or NULL if not required.

 

value_umts_requested_qos_sdu_error_ratio

a placeholder for the output QmiWdsSduErrorRatio, or NULL if not required.

 

value_umts_requested_qos_residual_bit_error_ratio

a placeholder for the output QmiWdsSduResidualBitErrorRatio, or NULL if not required.

 

value_umts_requested_qos_delivery_erroneous_sdu

a placeholder for the output QmiWdsSduErroneousDelivery, or NULL if not required.

 

value_umts_requested_qos_transfer_delay

a placeholder for the output guint32, or NULL if not required.

 

value_umts_requested_qos_traffic_handling_priority

a placeholder for the output guint32, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.18

-
-
-
-

qmi_message_wds_get_profile_settings_output_get_umts_minimum_qos ()

-
gboolean
-qmi_message_wds_get_profile_settings_output_get_umts_minimum_qos
-                               (QmiMessageWdsGetProfileSettingsOutput *self,
-                                QmiWdsTrafficClass *value_umts_minimum_qos_traffic_class,
-                                guint32 *value_umts_minimum_qos_max_uplink_bitrate,
-                                guint32 *value_umts_minimum_qos_max_downlink_bitrate,
-                                guint32 *value_umts_minimum_qos_guaranteed_uplink_bitrate,
-                                guint32 *value_umts_minimum_qos_guaranteed_downlink_bitrate,
-                                QmiWdsDeliveryOrder *value_umts_minimum_qos_qos_delivery_order,
-                                guint32 *value_umts_minimum_qos_maximum_sdu_size,
-                                QmiWdsSduErrorRatio *value_umts_minimum_qos_sdu_error_ratio,
-                                QmiWdsSduResidualBitErrorRatio *value_umts_minimum_qos_residual_bit_error_ratio,
-                                QmiWdsSduErroneousDelivery *value_umts_minimum_qos_delivery_erroneous_sdu,
-                                guint32 *value_umts_minimum_qos_transfer_delay,
-                                guint32 *value_umts_minimum_qos_traffic_handling_priority,
-                                GError **error);
-

Get the 'UMTS Minimum QoS' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

self

a QmiMessageWdsGetProfileSettingsOutput.

 

value_umts_minimum_qos_traffic_class

a placeholder for the output QmiWdsTrafficClass, or NULL if not required.

 

value_umts_minimum_qos_max_uplink_bitrate

a placeholder for the output guint32, or NULL if not required.

 

value_umts_minimum_qos_max_downlink_bitrate

a placeholder for the output guint32, or NULL if not required.

 

value_umts_minimum_qos_guaranteed_uplink_bitrate

a placeholder for the output guint32, or NULL if not required.

 

value_umts_minimum_qos_guaranteed_downlink_bitrate

a placeholder for the output guint32, or NULL if not required.

 

value_umts_minimum_qos_qos_delivery_order

a placeholder for the output QmiWdsDeliveryOrder, or NULL if not required.

 

value_umts_minimum_qos_maximum_sdu_size

a placeholder for the output guint32, or NULL if not required.

 

value_umts_minimum_qos_sdu_error_ratio

a placeholder for the output QmiWdsSduErrorRatio, or NULL if not required.

 

value_umts_minimum_qos_residual_bit_error_ratio

a placeholder for the output QmiWdsSduResidualBitErrorRatio, or NULL if not required.

 

value_umts_minimum_qos_delivery_erroneous_sdu

a placeholder for the output QmiWdsSduErroneousDelivery, or NULL if not required.

 

value_umts_minimum_qos_transfer_delay

a placeholder for the output guint32, or NULL if not required.

 

value_umts_minimum_qos_traffic_handling_priority

a placeholder for the output guint32, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.18

-
-
-
-

qmi_message_wds_get_profile_settings_output_get_gprs_requested_qos ()

-
gboolean
-qmi_message_wds_get_profile_settings_output_get_gprs_requested_qos
-                               (QmiMessageWdsGetProfileSettingsOutput *self,
-                                guint32 *value_gprs_requested_qos_precedence_class,
-                                guint32 *value_gprs_requested_qos_delay_class,
-                                guint32 *value_gprs_requested_qos_reliability_class,
-                                guint32 *value_gprs_requested_qos_peak_throughput_class,
-                                guint32 *value_gprs_requested_qos_mean_throughput_class,
-                                GError **error);
-

Get the 'GPRS Requested QoS' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

self

a QmiMessageWdsGetProfileSettingsOutput.

 

value_gprs_requested_qos_precedence_class

a placeholder for the output guint32, or NULL if not required.

 

value_gprs_requested_qos_delay_class

a placeholder for the output guint32, or NULL if not required.

 

value_gprs_requested_qos_reliability_class

a placeholder for the output guint32, or NULL if not required.

 

value_gprs_requested_qos_peak_throughput_class

a placeholder for the output guint32, or NULL if not required.

 

value_gprs_requested_qos_mean_throughput_class

a placeholder for the output guint32, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.8

-
-
-
-

qmi_message_wds_get_profile_settings_output_get_gprs_minimum_qos ()

-
gboolean
-qmi_message_wds_get_profile_settings_output_get_gprs_minimum_qos
-                               (QmiMessageWdsGetProfileSettingsOutput *self,
-                                guint32 *value_gprs_minimum_qos_precedence_class,
-                                guint32 *value_gprs_minimum_qos_delay_class,
-                                guint32 *value_gprs_minimum_qos_reliability_class,
-                                guint32 *value_gprs_minimum_qos_peak_throughput_class,
-                                guint32 *value_gprs_minimum_qos_mean_throughput_class,
-                                GError **error);
-

Get the 'GPRS Minimum QoS' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

self

a QmiMessageWdsGetProfileSettingsOutput.

 

value_gprs_minimum_qos_precedence_class

a placeholder for the output guint32, or NULL if not required.

 

value_gprs_minimum_qos_delay_class

a placeholder for the output guint32, or NULL if not required.

 

value_gprs_minimum_qos_reliability_class

a placeholder for the output guint32, or NULL if not required.

 

value_gprs_minimum_qos_peak_throughput_class

a placeholder for the output guint32, or NULL if not required.

 

value_gprs_minimum_qos_mean_throughput_class

a placeholder for the output guint32, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.8

-
-
-
-

qmi_message_wds_get_profile_settings_output_get_username ()

-
gboolean
-qmi_message_wds_get_profile_settings_output_get_username
-                               (QmiMessageWdsGetProfileSettingsOutput *self,
-                                const gchar **value_username,
-                                GError **error);
-

Get the 'Username' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessageWdsGetProfileSettingsOutput.

 

value_username

a placeholder for the output constant string, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.8

-
-
-
-

qmi_message_wds_get_profile_settings_output_get_password ()

-
gboolean
-qmi_message_wds_get_profile_settings_output_get_password
-                               (QmiMessageWdsGetProfileSettingsOutput *self,
-                                const gchar **value_password,
-                                GError **error);
-

Get the 'Password' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessageWdsGetProfileSettingsOutput.

 

value_password

a placeholder for the output constant string, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.8

-
-
-
-

qmi_message_wds_get_profile_settings_output_get_authentication ()

-
gboolean
-qmi_message_wds_get_profile_settings_output_get_authentication
-                               (QmiMessageWdsGetProfileSettingsOutput *self,
-                                QmiWdsAuthentication *value_authentication,
-                                GError **error);
-

Get the 'Authentication' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessageWdsGetProfileSettingsOutput.

 

value_authentication

a placeholder for the output QmiWdsAuthentication, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.8

-
-
-
-

qmi_message_wds_get_profile_settings_output_get_ipv4_address_preference ()

-
gboolean
-qmi_message_wds_get_profile_settings_output_get_ipv4_address_preference
-                               (QmiMessageWdsGetProfileSettingsOutput *self,
-                                guint32 *value_ipv4_address_preference,
-                                GError **error);
-

Get the 'IPv4 Address Preference' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessageWdsGetProfileSettingsOutput.

 

value_ipv4_address_preference

a placeholder for the output guint32, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.8

-
-
-
-

qmi_message_wds_get_profile_settings_output_get_pcscf_address_using_pco ()

-
gboolean
-qmi_message_wds_get_profile_settings_output_get_pcscf_address_using_pco
-                               (QmiMessageWdsGetProfileSettingsOutput *self,
-                                gboolean *value_pcscf_address_using_pco,
-                                GError **error);
-

Get the 'PCSCF Address Using PCO' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessageWdsGetProfileSettingsOutput.

 

value_pcscf_address_using_pco

a placeholder for the output gboolean, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.8

-
-
-
-

qmi_message_wds_get_profile_settings_output_get_pcscf_address_using_dhcp ()

-
gboolean
-qmi_message_wds_get_profile_settings_output_get_pcscf_address_using_dhcp
-                               (QmiMessageWdsGetProfileSettingsOutput *self,
-                                gboolean *value_pcscf_address_using_dhcp,
-                                GError **error);
-

Get the 'PCSCF Address Using DHCP' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessageWdsGetProfileSettingsOutput.

 

value_pcscf_address_using_dhcp

a placeholder for the output gboolean, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.8

-
-
-
-

qmi_message_wds_get_profile_settings_output_get_imcn_flag ()

-
gboolean
-qmi_message_wds_get_profile_settings_output_get_imcn_flag
-                               (QmiMessageWdsGetProfileSettingsOutput *self,
-                                gboolean *value_imcn_flag,
-                                GError **error);
-

Get the 'IMCN Flag' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessageWdsGetProfileSettingsOutput.

 

value_imcn_flag

a placeholder for the output gboolean, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.8

-
-
-
-

qmi_message_wds_get_profile_settings_output_get_pdp_context_number ()

-
gboolean
-qmi_message_wds_get_profile_settings_output_get_pdp_context_number
-                               (QmiMessageWdsGetProfileSettingsOutput *self,
-                                guint8 *value_pdp_context_number,
-                                GError **error);
-

Get the 'PDP Context Number' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessageWdsGetProfileSettingsOutput.

 

value_pdp_context_number

a placeholder for the output guint8, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.18

-
-
-
-

qmi_message_wds_get_profile_settings_output_get_pdp_context_secondary_flag ()

-
gboolean
-qmi_message_wds_get_profile_settings_output_get_pdp_context_secondary_flag
-                               (QmiMessageWdsGetProfileSettingsOutput *self,
-                                gboolean *value_pdp_context_secondary_flag,
-                                GError **error);
-

Get the 'PDP Context Secondary Flag' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessageWdsGetProfileSettingsOutput.

 

value_pdp_context_secondary_flag

a placeholder for the output gboolean, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.18

-
-
-
-

qmi_message_wds_get_profile_settings_output_get_pdp_context_primary_id ()

-
gboolean
-qmi_message_wds_get_profile_settings_output_get_pdp_context_primary_id
-                               (QmiMessageWdsGetProfileSettingsOutput *self,
-                                guint8 *value_pdp_context_primary_id,
-                                GError **error);
-

Get the 'PDP Context Primary ID' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessageWdsGetProfileSettingsOutput.

 

value_pdp_context_primary_id

a placeholder for the output guint8, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.18

-
-
-
-

qmi_message_wds_get_profile_settings_output_get_ipv6_address_preference ()

-
gboolean
-qmi_message_wds_get_profile_settings_output_get_ipv6_address_preference
-                               (QmiMessageWdsGetProfileSettingsOutput *self,
-                                GArray **value_ipv6_address_preference_address,
-                                GError **error);
-

Get the 'IPv6 Address Preference' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessageWdsGetProfileSettingsOutput.

 

value_ipv6_address_preference_address

a placeholder for the output GArray of guint16 elements, or NULL if not required. Do not free it, it is owned by self -.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.8

-
-
-
-

qmi_message_wds_get_profile_settings_output_get_umts_requested_qos_with_signaling_indication_flag ()

-
gboolean
-qmi_message_wds_get_profile_settings_output_get_umts_requested_qos_with_signaling_indication_flag
-                               (QmiMessageWdsGetProfileSettingsOutput *self,
-                                QmiWdsTrafficClass *value_umts_requested_qos_with_signaling_indication_flag_traffic_class,
-                                guint32 *value_umts_requested_qos_with_signaling_indication_flag_max_uplink_bitrate,
-                                guint32 *value_umts_requested_qos_with_signaling_indication_flag_max_downlink_bitrate,
-                                guint32 *value_umts_requested_qos_with_signaling_indication_flag_guaranteed_uplink_bitrate,
-                                guint32 *value_umts_requested_qos_with_signaling_indication_flag_guaranteed_downlink_bitrate,
-                                QmiWdsDeliveryOrder *value_umts_requested_qos_with_signaling_indication_flag_qos_delivery_order,
-                                guint32 *value_umts_requested_qos_with_signaling_indication_flag_maximum_sdu_size,
-                                QmiWdsSduErrorRatio *value_umts_requested_qos_with_signaling_indication_flag_sdu_error_ratio,
-                                QmiWdsSduResidualBitErrorRatio *value_umts_requested_qos_with_signaling_indication_flag_residual_bit_error_ratio,
-                                QmiWdsSduErroneousDelivery *value_umts_requested_qos_with_signaling_indication_flag_delivery_erroneous_sdu,
-                                guint32 *value_umts_requested_qos_with_signaling_indication_flag_transfer_delay,
-                                guint32 *value_umts_requested_qos_with_signaling_indication_flag_traffic_handling_priority,
-                                gint8 *value_umts_requested_qos_with_signaling_indication_flag_signaling_indication,
-                                GError **error);
-

Get the 'UMTS Requested QoS With Signaling Indication Flag' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

self

a QmiMessageWdsGetProfileSettingsOutput.

 

value_umts_requested_qos_with_signaling_indication_flag_traffic_class

a placeholder for the output QmiWdsTrafficClass, or NULL if not required.

 

value_umts_requested_qos_with_signaling_indication_flag_max_uplink_bitrate

a placeholder for the output guint32, or NULL if not required.

 

value_umts_requested_qos_with_signaling_indication_flag_max_downlink_bitrate

a placeholder for the output guint32, or NULL if not required.

 

value_umts_requested_qos_with_signaling_indication_flag_guaranteed_uplink_bitrate

a placeholder for the output guint32, or NULL if not required.

 

value_umts_requested_qos_with_signaling_indication_flag_guaranteed_downlink_bitrate

a placeholder for the output guint32, or NULL if not required.

 

value_umts_requested_qos_with_signaling_indication_flag_qos_delivery_order

a placeholder for the output QmiWdsDeliveryOrder, or NULL if not required.

 

value_umts_requested_qos_with_signaling_indication_flag_maximum_sdu_size

a placeholder for the output guint32, or NULL if not required.

 

value_umts_requested_qos_with_signaling_indication_flag_sdu_error_ratio

a placeholder for the output QmiWdsSduErrorRatio, or NULL if not required.

 

value_umts_requested_qos_with_signaling_indication_flag_residual_bit_error_ratio

a placeholder for the output QmiWdsSduResidualBitErrorRatio, or NULL if not required.

 

value_umts_requested_qos_with_signaling_indication_flag_delivery_erroneous_sdu

a placeholder for the output QmiWdsSduErroneousDelivery, or NULL if not required.

 

value_umts_requested_qos_with_signaling_indication_flag_transfer_delay

a placeholder for the output guint32, or NULL if not required.

 

value_umts_requested_qos_with_signaling_indication_flag_traffic_handling_priority

a placeholder for the output guint32, or NULL if not required.

 

value_umts_requested_qos_with_signaling_indication_flag_signaling_indication

a placeholder for the output gint8, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.18

-
-
-
-

qmi_message_wds_get_profile_settings_output_get_umts_minimum_qos_with_signaling_indication_flag ()

-
gboolean
-qmi_message_wds_get_profile_settings_output_get_umts_minimum_qos_with_signaling_indication_flag
-                               (QmiMessageWdsGetProfileSettingsOutput *self,
-                                QmiWdsTrafficClass *value_umts_minimum_qos_with_signaling_indication_flag_traffic_class,
-                                guint32 *value_umts_minimum_qos_with_signaling_indication_flag_max_uplink_bitrate,
-                                guint32 *value_umts_minimum_qos_with_signaling_indication_flag_max_downlink_bitrate,
-                                guint32 *value_umts_minimum_qos_with_signaling_indication_flag_guaranteed_uplink_bitrate,
-                                guint32 *value_umts_minimum_qos_with_signaling_indication_flag_guaranteed_downlink_bitrate,
-                                QmiWdsDeliveryOrder *value_umts_minimum_qos_with_signaling_indication_flag_qos_delivery_order,
-                                guint32 *value_umts_minimum_qos_with_signaling_indication_flag_maximum_sdu_size,
-                                QmiWdsSduErrorRatio *value_umts_minimum_qos_with_signaling_indication_flag_sdu_error_ratio,
-                                QmiWdsSduResidualBitErrorRatio *value_umts_minimum_qos_with_signaling_indication_flag_residual_bit_error_ratio,
-                                QmiWdsSduErroneousDelivery *value_umts_minimum_qos_with_signaling_indication_flag_delivery_erroneous_sdu,
-                                guint32 *value_umts_minimum_qos_with_signaling_indication_flag_transfer_delay,
-                                guint32 *value_umts_minimum_qos_with_signaling_indication_flag_traffic_handling_priority,
-                                gint8 *value_umts_minimum_qos_with_signaling_indication_flag_signaling_indication,
-                                GError **error);
-

Get the 'UMTS Minimum QoS With Signaling Indication Flag' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

self

a QmiMessageWdsGetProfileSettingsOutput.

 

value_umts_minimum_qos_with_signaling_indication_flag_traffic_class

a placeholder for the output QmiWdsTrafficClass, or NULL if not required.

 

value_umts_minimum_qos_with_signaling_indication_flag_max_uplink_bitrate

a placeholder for the output guint32, or NULL if not required.

 

value_umts_minimum_qos_with_signaling_indication_flag_max_downlink_bitrate

a placeholder for the output guint32, or NULL if not required.

 

value_umts_minimum_qos_with_signaling_indication_flag_guaranteed_uplink_bitrate

a placeholder for the output guint32, or NULL if not required.

 

value_umts_minimum_qos_with_signaling_indication_flag_guaranteed_downlink_bitrate

a placeholder for the output guint32, or NULL if not required.

 

value_umts_minimum_qos_with_signaling_indication_flag_qos_delivery_order

a placeholder for the output QmiWdsDeliveryOrder, or NULL if not required.

 

value_umts_minimum_qos_with_signaling_indication_flag_maximum_sdu_size

a placeholder for the output guint32, or NULL if not required.

 

value_umts_minimum_qos_with_signaling_indication_flag_sdu_error_ratio

a placeholder for the output QmiWdsSduErrorRatio, or NULL if not required.

 

value_umts_minimum_qos_with_signaling_indication_flag_residual_bit_error_ratio

a placeholder for the output QmiWdsSduResidualBitErrorRatio, or NULL if not required.

 

value_umts_minimum_qos_with_signaling_indication_flag_delivery_erroneous_sdu

a placeholder for the output QmiWdsSduErroneousDelivery, or NULL if not required.

 

value_umts_minimum_qos_with_signaling_indication_flag_transfer_delay

a placeholder for the output guint32, or NULL if not required.

 

value_umts_minimum_qos_with_signaling_indication_flag_traffic_handling_priority

a placeholder for the output guint32, or NULL if not required.

 

value_umts_minimum_qos_with_signaling_indication_flag_signaling_indication

a placeholder for the output gint8, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.18

-
-
-
-

qmi_message_wds_get_profile_settings_output_get_ipv6_primary_dns_address_preference ()

-
gboolean
-qmi_message_wds_get_profile_settings_output_get_ipv6_primary_dns_address_preference
-                               (QmiMessageWdsGetProfileSettingsOutput *self,
-                                GArray **value_ipv6_primary_dns_address_preference,
-                                GError **error);
-

Get the 'IPv6 Primary DNS Address Preference' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessageWdsGetProfileSettingsOutput.

 

value_ipv6_primary_dns_address_preference

a placeholder for the output GArray of guint16 elements, or NULL if not required. Do not free it, it is owned by self -.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.8

-
-
-
-

qmi_message_wds_get_profile_settings_output_get_ipv6_secondary_dns_address_preference ()

-
gboolean
-qmi_message_wds_get_profile_settings_output_get_ipv6_secondary_dns_address_preference
-                               (QmiMessageWdsGetProfileSettingsOutput *self,
-                                GArray **value_ipv6_secondary_dns_address_preference,
-                                GError **error);
-

Get the 'IPv6 Secondary DNS Address Preference' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessageWdsGetProfileSettingsOutput.

 

value_ipv6_secondary_dns_address_preference

a placeholder for the output GArray of guint16 elements, or NULL if not required. Do not free it, it is owned by self -.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.8

-
-
-
-

qmi_message_wds_get_profile_settings_output_get_lte_qos_parameters ()

-
gboolean
-qmi_message_wds_get_profile_settings_output_get_lte_qos_parameters
-                               (QmiMessageWdsGetProfileSettingsOutput *self,
-                                QmiWdsQosClassIdentifier *value_lte_qos_parameters_qos_class_identifier,
-                                guint32 *value_lte_qos_parameters_guaranteed_downlink_bitrate,
-                                guint32 *value_lte_qos_parameters_max_downlink_bitrate,
-                                guint32 *value_lte_qos_parameters_guaranteed_uplink_bitrate,
-                                guint32 *value_lte_qos_parameters_max_uplink_bitrate,
-                                GError **error);
-

Get the 'LTE QoS Parameters' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

self

a QmiMessageWdsGetProfileSettingsOutput.

 

value_lte_qos_parameters_qos_class_identifier

a placeholder for the output QmiWdsQosClassIdentifier, or NULL if not required.

 

value_lte_qos_parameters_guaranteed_downlink_bitrate

a placeholder for the output guint32, or NULL if not required.

 

value_lte_qos_parameters_max_downlink_bitrate

a placeholder for the output guint32, or NULL if not required.

 

value_lte_qos_parameters_guaranteed_uplink_bitrate

a placeholder for the output guint32, or NULL if not required.

 

value_lte_qos_parameters_max_uplink_bitrate

a placeholder for the output guint32, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.18

-
-
-
-

qmi_message_wds_get_profile_settings_output_get_extended_error_code ()

-
gboolean
-qmi_message_wds_get_profile_settings_output_get_extended_error_code
-                               (QmiMessageWdsGetProfileSettingsOutput *self,
-                                QmiWdsDsProfileError *value_extended_error_code,
-                                GError **error);
-

Get the 'Extended Error Code' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessageWdsGetProfileSettingsOutput.

 

value_extended_error_code

a placeholder for the output QmiWdsDsProfileError, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.8

-
-
-
-

qmi_client_wds_get_profile_settings ()

-
void
-qmi_client_wds_get_profile_settings (QmiClientWds *self,
-                                     QmiMessageWdsGetProfileSettingsInput *input,
-                                     guint timeout,
-                                     GCancellable *cancellable,
-                                     GAsyncReadyCallback callback,
-                                     gpointer user_data);
-

Asynchronously sends a Get Profile Settings request to the device.

-

When the operation is finished, callback - will be invoked in the thread-default main loop of the thread you are calling this method from.

-

You can then call qmi_client_wds_get_profile_settings_finish() to get the result of the operation.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

self

a QmiClientWds.

 

input

a QmiMessageWdsGetProfileSettingsInput.

 

timeout

maximum time to wait for the method to complete, in seconds.

 

cancellable

a GCancellable or NULL.

 

callback

a GAsyncReadyCallback to call when the request is satisfied.

 

user_data

user data to pass to callback -.

 
-
-

Since: 1.8

-
-
-
-

qmi_client_wds_get_profile_settings_finish ()

-
QmiMessageWdsGetProfileSettingsOutput *
-qmi_client_wds_get_profile_settings_finish
-                               (QmiClientWds *self,
-                                GAsyncResult *res,
-                                GError **error);
-

Finishes an async operation started with qmi_client_wds_get_profile_settings().

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiClientWds.

 

res

the GAsyncResult obtained from the GAsyncReadyCallback passed to qmi_client_wds_get_profile_settings().

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

a QmiMessageWdsGetProfileSettingsOutput, or NULL if error -is set. The returned value should be freed with qmi_message_wds_get_profile_settings_output_unref().

-
-

Since: 1.8

-
-
-
-

Types and Values

-
-

QmiMessageWdsGetProfileSettingsInput

-
typedef struct _QmiMessageWdsGetProfileSettingsInput QmiMessageWdsGetProfileSettingsInput;
-

The QmiMessageWdsGetProfileSettingsInput structure contains private data and should only be accessed -using the provided API.

-

Since: 1.8

-
-
-
-

QmiMessageWdsGetProfileSettingsOutput

-
typedef struct _QmiMessageWdsGetProfileSettingsOutput QmiMessageWdsGetProfileSettingsOutput;
-

The QmiMessageWdsGetProfileSettingsOutput structure contains private data and should only be accessed -using the provided API.

-

Since: 1.8

-
-
-
- - - \ No newline at end of file diff -Nru libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-WDS-Get-Profile-Settings-request.html libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-WDS-Get-Profile-Settings-request.html --- libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-WDS-Get-Profile-Settings-request.html 1970-01-01 01:00:00.000000000 +0100 +++ libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-WDS-Get-Profile-Settings-request.html 2019-01-08 15:19:02.000000000 +0100 @@ -0,0 +1,2424 @@ + + + + +WDS Get Profile Settings request: libqmi-glib Reference Manual + + + + + + + + + + + + + + + + +
+
+
+ + +
+

WDS Get Profile Settings request

+

WDS Get Profile Settings request

+
+
+

Functions

+
++++ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+QmiMessageWdsGetProfileSettingsInput * + +qmi_message_wds_get_profile_settings_input_new () +
+QmiMessageWdsGetProfileSettingsInput * + +qmi_message_wds_get_profile_settings_input_ref () +
+void + +qmi_message_wds_get_profile_settings_input_unref () +
+gboolean + +qmi_message_wds_get_profile_settings_input_get_profile_id () +
+gboolean + +qmi_message_wds_get_profile_settings_input_set_profile_id () +
+QmiMessageWdsGetProfileSettingsOutput * + +qmi_message_wds_get_profile_settings_output_ref () +
+void + +qmi_message_wds_get_profile_settings_output_unref () +
+gboolean + +qmi_message_wds_get_profile_settings_output_get_result () +
+gboolean + +qmi_message_wds_get_profile_settings_output_get_profile_name () +
+gboolean + +qmi_message_wds_get_profile_settings_output_get_pdp_type () +
+gboolean + +qmi_message_wds_get_profile_settings_output_get_pdp_header_compression_type () +
+gboolean + +qmi_message_wds_get_profile_settings_output_get_pdp_data_compression_type () +
+gboolean + +qmi_message_wds_get_profile_settings_output_get_apn_name () +
+gboolean + +qmi_message_wds_get_profile_settings_output_get_primary_ipv4_dns_address () +
+gboolean + +qmi_message_wds_get_profile_settings_output_get_secondary_ipv4_dns_address () +
+gboolean + +qmi_message_wds_get_profile_settings_output_get_umts_requested_qos () +
+gboolean + +qmi_message_wds_get_profile_settings_output_get_umts_minimum_qos () +
+gboolean + +qmi_message_wds_get_profile_settings_output_get_gprs_requested_qos () +
+gboolean + +qmi_message_wds_get_profile_settings_output_get_gprs_minimum_qos () +
+gboolean + +qmi_message_wds_get_profile_settings_output_get_username () +
+gboolean + +qmi_message_wds_get_profile_settings_output_get_password () +
+gboolean + +qmi_message_wds_get_profile_settings_output_get_authentication () +
+gboolean + +qmi_message_wds_get_profile_settings_output_get_ipv4_address_preference () +
+gboolean + +qmi_message_wds_get_profile_settings_output_get_pcscf_address_using_pco () +
+gboolean + +qmi_message_wds_get_profile_settings_output_get_pcscf_address_using_dhcp () +
+gboolean + +qmi_message_wds_get_profile_settings_output_get_imcn_flag () +
+gboolean + +qmi_message_wds_get_profile_settings_output_get_pdp_context_number () +
+gboolean + +qmi_message_wds_get_profile_settings_output_get_pdp_context_secondary_flag () +
+gboolean + +qmi_message_wds_get_profile_settings_output_get_pdp_context_primary_id () +
+gboolean + +qmi_message_wds_get_profile_settings_output_get_ipv6_address_preference () +
+gboolean + +qmi_message_wds_get_profile_settings_output_get_umts_requested_qos_with_signaling_indication_flag () +
+gboolean + +qmi_message_wds_get_profile_settings_output_get_umts_minimum_qos_with_signaling_indication_flag () +
+gboolean + +qmi_message_wds_get_profile_settings_output_get_ipv6_primary_dns_address_preference () +
+gboolean + +qmi_message_wds_get_profile_settings_output_get_ipv6_secondary_dns_address_preference () +
+gboolean + +qmi_message_wds_get_profile_settings_output_get_lte_qos_parameters () +
+gboolean + +qmi_message_wds_get_profile_settings_output_get_apn_disabled_flag () +
+gboolean + +qmi_message_wds_get_profile_settings_output_get_roaming_disallowed_flag () +
+gboolean + +qmi_message_wds_get_profile_settings_output_get_extended_error_code () +
+void + +qmi_client_wds_get_profile_settings () +
+QmiMessageWdsGetProfileSettingsOutput * + +qmi_client_wds_get_profile_settings_finish () +
+
+
+

Types and Values

+ +
+
+

Object Hierarchy

+
    GBoxed
+    ├── QmiMessageWdsGetProfileSettingsInput
+    ╰── QmiMessageWdsGetProfileSettingsOutput
+
+
+
+

Description

+
+
+

Functions

+
+

qmi_message_wds_get_profile_settings_input_new ()

+
QmiMessageWdsGetProfileSettingsInput *
+qmi_message_wds_get_profile_settings_input_new
+                               (void);
+

Allocates a new QmiMessageWdsGetProfileSettingsInput.

+
+

Returns

+

the newly created QmiMessageWdsGetProfileSettingsInput. The returned value should be freed with qmi_message_wds_get_profile_settings_input_unref().

+
+

Since: 1.8

+
+
+
+

qmi_message_wds_get_profile_settings_input_ref ()

+
QmiMessageWdsGetProfileSettingsInput *
+qmi_message_wds_get_profile_settings_input_ref
+                               (QmiMessageWdsGetProfileSettingsInput *self);
+

Atomically increments the reference count of self + by one.

+
+

Parameters

+
+++++ + + + + + +

self

a QmiMessageWdsGetProfileSettingsInput.

 
+
+
+

Returns

+

the new reference to self +.

+
+

Since: 1.8

+
+
+
+

qmi_message_wds_get_profile_settings_input_unref ()

+
void
+qmi_message_wds_get_profile_settings_input_unref
+                               (QmiMessageWdsGetProfileSettingsInput *self);
+

Atomically decrements the reference count of self + by one. +If the reference count drops to 0, self + is completely disposed.

+
+

Parameters

+
+++++ + + + + + +

self

a QmiMessageWdsGetProfileSettingsInput.

 
+
+

Since: 1.8

+
+
+
+

qmi_message_wds_get_profile_settings_input_get_profile_id ()

+
gboolean
+qmi_message_wds_get_profile_settings_input_get_profile_id
+                               (QmiMessageWdsGetProfileSettingsInput *self,
+                                QmiWdsProfileType *value_profile_id_profile_type,
+                                guint8 *value_profile_id_profile_index,
+                                GError **error);
+

Get the 'Profile ID' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + + + + + + +

self

a QmiMessageWdsGetProfileSettingsInput.

 

value_profile_id_profile_type

a placeholder for the output QmiWdsProfileType, or NULL if not required.

 

value_profile_id_profile_index

a placeholder for the output guint8, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.8

+
+
+
+

qmi_message_wds_get_profile_settings_input_set_profile_id ()

+
gboolean
+qmi_message_wds_get_profile_settings_input_set_profile_id
+                               (QmiMessageWdsGetProfileSettingsInput *self,
+                                QmiWdsProfileType value_profile_id_profile_type,
+                                guint8 value_profile_id_profile_index,
+                                GError **error);
+

Set the 'Profile ID' field in the message.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + + + + + + +

self

a QmiMessageWdsGetProfileSettingsInput.

 

value_profile_id_profile_type

a QmiWdsProfileType.

 

value_profile_id_profile_index

a guint8.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if value +was successfully set, FALSE otherwise.

+
+

Since: 1.8

+
+
+
+

qmi_message_wds_get_profile_settings_output_ref ()

+
QmiMessageWdsGetProfileSettingsOutput *
+qmi_message_wds_get_profile_settings_output_ref
+                               (QmiMessageWdsGetProfileSettingsOutput *self);
+

Atomically increments the reference count of self + by one.

+
+

Parameters

+
+++++ + + + + + +

self

a QmiMessageWdsGetProfileSettingsOutput.

 
+
+
+

Returns

+

the new reference to self +.

+
+

Since: 1.8

+
+
+
+

qmi_message_wds_get_profile_settings_output_unref ()

+
void
+qmi_message_wds_get_profile_settings_output_unref
+                               (QmiMessageWdsGetProfileSettingsOutput *self);
+

Atomically decrements the reference count of self + by one. +If the reference count drops to 0, self + is completely disposed.

+
+

Parameters

+
+++++ + + + + + +

self

a QmiMessageWdsGetProfileSettingsOutput.

 
+
+

Since: 1.8

+
+
+
+

qmi_message_wds_get_profile_settings_output_get_result ()

+
gboolean
+qmi_message_wds_get_profile_settings_output_get_result
+                               (QmiMessageWdsGetProfileSettingsOutput *self,
+                                GError **error);
+

Get the result of the QMI operation.

+
+

Parameters

+
+++++ + + + + + + + + + + + + +

self

a QmiMessageWdsGetProfileSettingsOutput.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the QMI operation succeeded, FALSE if error +is set.

+
+

Since: 1.8

+
+
+
+

qmi_message_wds_get_profile_settings_output_get_profile_name ()

+
gboolean
+qmi_message_wds_get_profile_settings_output_get_profile_name
+                               (QmiMessageWdsGetProfileSettingsOutput *self,
+                                const gchar **value_profile_name,
+                                GError **error);
+

Get the 'Profile Name' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageWdsGetProfileSettingsOutput.

 

value_profile_name

a placeholder for the output constant string, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.8

+
+
+
+

qmi_message_wds_get_profile_settings_output_get_pdp_type ()

+
gboolean
+qmi_message_wds_get_profile_settings_output_get_pdp_type
+                               (QmiMessageWdsGetProfileSettingsOutput *self,
+                                QmiWdsPdpType *value_pdp_type,
+                                GError **error);
+

Get the 'PDP Type' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageWdsGetProfileSettingsOutput.

 

value_pdp_type

a placeholder for the output QmiWdsPdpType, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.8

+
+
+
+

qmi_message_wds_get_profile_settings_output_get_pdp_header_compression_type ()

+
gboolean
+qmi_message_wds_get_profile_settings_output_get_pdp_header_compression_type
+                               (QmiMessageWdsGetProfileSettingsOutput *self,
+                                QmiWdsPdpHeaderCompressionType *value_pdp_header_compression_type,
+                                GError **error);
+

Get the 'PDP Header Compression Type' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageWdsGetProfileSettingsOutput.

 

value_pdp_header_compression_type

a placeholder for the output QmiWdsPdpHeaderCompressionType, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.18

+
+
+
+

qmi_message_wds_get_profile_settings_output_get_pdp_data_compression_type ()

+
gboolean
+qmi_message_wds_get_profile_settings_output_get_pdp_data_compression_type
+                               (QmiMessageWdsGetProfileSettingsOutput *self,
+                                QmiWdsPdpDataCompressionType *value_pdp_data_compression_type,
+                                GError **error);
+

Get the 'PDP Data Compression Type' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageWdsGetProfileSettingsOutput.

 

value_pdp_data_compression_type

a placeholder for the output QmiWdsPdpDataCompressionType, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.18

+
+
+
+

qmi_message_wds_get_profile_settings_output_get_apn_name ()

+
gboolean
+qmi_message_wds_get_profile_settings_output_get_apn_name
+                               (QmiMessageWdsGetProfileSettingsOutput *self,
+                                const gchar **value_apn_name,
+                                GError **error);
+

Get the 'APN Name' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageWdsGetProfileSettingsOutput.

 

value_apn_name

a placeholder for the output constant string, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.8

+
+
+
+

qmi_message_wds_get_profile_settings_output_get_primary_ipv4_dns_address ()

+
gboolean
+qmi_message_wds_get_profile_settings_output_get_primary_ipv4_dns_address
+                               (QmiMessageWdsGetProfileSettingsOutput *self,
+                                guint32 *value_primary_ipv4_dns_address,
+                                GError **error);
+

Get the 'Primary IPv4 DNS Address' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageWdsGetProfileSettingsOutput.

 

value_primary_ipv4_dns_address

a placeholder for the output guint32, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.8

+
+
+
+

qmi_message_wds_get_profile_settings_output_get_secondary_ipv4_dns_address ()

+
gboolean
+qmi_message_wds_get_profile_settings_output_get_secondary_ipv4_dns_address
+                               (QmiMessageWdsGetProfileSettingsOutput *self,
+                                guint32 *value_secondary_ipv4_dns_address,
+                                GError **error);
+

Get the 'Secondary IPv4 DNS Address' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageWdsGetProfileSettingsOutput.

 

value_secondary_ipv4_dns_address

a placeholder for the output guint32, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.8

+
+
+
+

qmi_message_wds_get_profile_settings_output_get_umts_requested_qos ()

+
gboolean
+qmi_message_wds_get_profile_settings_output_get_umts_requested_qos
+                               (QmiMessageWdsGetProfileSettingsOutput *self,
+                                QmiWdsTrafficClass *value_umts_requested_qos_traffic_class,
+                                guint32 *value_umts_requested_qos_max_uplink_bitrate,
+                                guint32 *value_umts_requested_qos_max_downlink_bitrate,
+                                guint32 *value_umts_requested_qos_guaranteed_uplink_bitrate,
+                                guint32 *value_umts_requested_qos_guaranteed_downlink_bitrate,
+                                QmiWdsDeliveryOrder *value_umts_requested_qos_qos_delivery_order,
+                                guint32 *value_umts_requested_qos_maximum_sdu_size,
+                                QmiWdsSduErrorRatio *value_umts_requested_qos_sdu_error_ratio,
+                                QmiWdsSduResidualBitErrorRatio *value_umts_requested_qos_residual_bit_error_ratio,
+                                QmiWdsSduErroneousDelivery *value_umts_requested_qos_delivery_erroneous_sdu,
+                                guint32 *value_umts_requested_qos_transfer_delay,
+                                guint32 *value_umts_requested_qos_traffic_handling_priority,
+                                GError **error);
+

Get the 'UMTS Requested QoS' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

self

a QmiMessageWdsGetProfileSettingsOutput.

 

value_umts_requested_qos_traffic_class

a placeholder for the output QmiWdsTrafficClass, or NULL if not required.

 

value_umts_requested_qos_max_uplink_bitrate

a placeholder for the output guint32, or NULL if not required.

 

value_umts_requested_qos_max_downlink_bitrate

a placeholder for the output guint32, or NULL if not required.

 

value_umts_requested_qos_guaranteed_uplink_bitrate

a placeholder for the output guint32, or NULL if not required.

 

value_umts_requested_qos_guaranteed_downlink_bitrate

a placeholder for the output guint32, or NULL if not required.

 

value_umts_requested_qos_qos_delivery_order

a placeholder for the output QmiWdsDeliveryOrder, or NULL if not required.

 

value_umts_requested_qos_maximum_sdu_size

a placeholder for the output guint32, or NULL if not required.

 

value_umts_requested_qos_sdu_error_ratio

a placeholder for the output QmiWdsSduErrorRatio, or NULL if not required.

 

value_umts_requested_qos_residual_bit_error_ratio

a placeholder for the output QmiWdsSduResidualBitErrorRatio, or NULL if not required.

 

value_umts_requested_qos_delivery_erroneous_sdu

a placeholder for the output QmiWdsSduErroneousDelivery, or NULL if not required.

 

value_umts_requested_qos_transfer_delay

a placeholder for the output guint32, or NULL if not required.

 

value_umts_requested_qos_traffic_handling_priority

a placeholder for the output guint32, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.18

+
+
+
+

qmi_message_wds_get_profile_settings_output_get_umts_minimum_qos ()

+
gboolean
+qmi_message_wds_get_profile_settings_output_get_umts_minimum_qos
+                               (QmiMessageWdsGetProfileSettingsOutput *self,
+                                QmiWdsTrafficClass *value_umts_minimum_qos_traffic_class,
+                                guint32 *value_umts_minimum_qos_max_uplink_bitrate,
+                                guint32 *value_umts_minimum_qos_max_downlink_bitrate,
+                                guint32 *value_umts_minimum_qos_guaranteed_uplink_bitrate,
+                                guint32 *value_umts_minimum_qos_guaranteed_downlink_bitrate,
+                                QmiWdsDeliveryOrder *value_umts_minimum_qos_qos_delivery_order,
+                                guint32 *value_umts_minimum_qos_maximum_sdu_size,
+                                QmiWdsSduErrorRatio *value_umts_minimum_qos_sdu_error_ratio,
+                                QmiWdsSduResidualBitErrorRatio *value_umts_minimum_qos_residual_bit_error_ratio,
+                                QmiWdsSduErroneousDelivery *value_umts_minimum_qos_delivery_erroneous_sdu,
+                                guint32 *value_umts_minimum_qos_transfer_delay,
+                                guint32 *value_umts_minimum_qos_traffic_handling_priority,
+                                GError **error);
+

Get the 'UMTS Minimum QoS' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

self

a QmiMessageWdsGetProfileSettingsOutput.

 

value_umts_minimum_qos_traffic_class

a placeholder for the output QmiWdsTrafficClass, or NULL if not required.

 

value_umts_minimum_qos_max_uplink_bitrate

a placeholder for the output guint32, or NULL if not required.

 

value_umts_minimum_qos_max_downlink_bitrate

a placeholder for the output guint32, or NULL if not required.

 

value_umts_minimum_qos_guaranteed_uplink_bitrate

a placeholder for the output guint32, or NULL if not required.

 

value_umts_minimum_qos_guaranteed_downlink_bitrate

a placeholder for the output guint32, or NULL if not required.

 

value_umts_minimum_qos_qos_delivery_order

a placeholder for the output QmiWdsDeliveryOrder, or NULL if not required.

 

value_umts_minimum_qos_maximum_sdu_size

a placeholder for the output guint32, or NULL if not required.

 

value_umts_minimum_qos_sdu_error_ratio

a placeholder for the output QmiWdsSduErrorRatio, or NULL if not required.

 

value_umts_minimum_qos_residual_bit_error_ratio

a placeholder for the output QmiWdsSduResidualBitErrorRatio, or NULL if not required.

 

value_umts_minimum_qos_delivery_erroneous_sdu

a placeholder for the output QmiWdsSduErroneousDelivery, or NULL if not required.

 

value_umts_minimum_qos_transfer_delay

a placeholder for the output guint32, or NULL if not required.

 

value_umts_minimum_qos_traffic_handling_priority

a placeholder for the output guint32, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.18

+
+
+
+

qmi_message_wds_get_profile_settings_output_get_gprs_requested_qos ()

+
gboolean
+qmi_message_wds_get_profile_settings_output_get_gprs_requested_qos
+                               (QmiMessageWdsGetProfileSettingsOutput *self,
+                                guint32 *value_gprs_requested_qos_precedence_class,
+                                guint32 *value_gprs_requested_qos_delay_class,
+                                guint32 *value_gprs_requested_qos_reliability_class,
+                                guint32 *value_gprs_requested_qos_peak_throughput_class,
+                                guint32 *value_gprs_requested_qos_mean_throughput_class,
+                                GError **error);
+

Get the 'GPRS Requested QoS' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

self

a QmiMessageWdsGetProfileSettingsOutput.

 

value_gprs_requested_qos_precedence_class

a placeholder for the output guint32, or NULL if not required.

 

value_gprs_requested_qos_delay_class

a placeholder for the output guint32, or NULL if not required.

 

value_gprs_requested_qos_reliability_class

a placeholder for the output guint32, or NULL if not required.

 

value_gprs_requested_qos_peak_throughput_class

a placeholder for the output guint32, or NULL if not required.

 

value_gprs_requested_qos_mean_throughput_class

a placeholder for the output guint32, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.8

+
+
+
+

qmi_message_wds_get_profile_settings_output_get_gprs_minimum_qos ()

+
gboolean
+qmi_message_wds_get_profile_settings_output_get_gprs_minimum_qos
+                               (QmiMessageWdsGetProfileSettingsOutput *self,
+                                guint32 *value_gprs_minimum_qos_precedence_class,
+                                guint32 *value_gprs_minimum_qos_delay_class,
+                                guint32 *value_gprs_minimum_qos_reliability_class,
+                                guint32 *value_gprs_minimum_qos_peak_throughput_class,
+                                guint32 *value_gprs_minimum_qos_mean_throughput_class,
+                                GError **error);
+

Get the 'GPRS Minimum QoS' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

self

a QmiMessageWdsGetProfileSettingsOutput.

 

value_gprs_minimum_qos_precedence_class

a placeholder for the output guint32, or NULL if not required.

 

value_gprs_minimum_qos_delay_class

a placeholder for the output guint32, or NULL if not required.

 

value_gprs_minimum_qos_reliability_class

a placeholder for the output guint32, or NULL if not required.

 

value_gprs_minimum_qos_peak_throughput_class

a placeholder for the output guint32, or NULL if not required.

 

value_gprs_minimum_qos_mean_throughput_class

a placeholder for the output guint32, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.8

+
+
+
+

qmi_message_wds_get_profile_settings_output_get_username ()

+
gboolean
+qmi_message_wds_get_profile_settings_output_get_username
+                               (QmiMessageWdsGetProfileSettingsOutput *self,
+                                const gchar **value_username,
+                                GError **error);
+

Get the 'Username' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageWdsGetProfileSettingsOutput.

 

value_username

a placeholder for the output constant string, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.8

+
+
+
+

qmi_message_wds_get_profile_settings_output_get_password ()

+
gboolean
+qmi_message_wds_get_profile_settings_output_get_password
+                               (QmiMessageWdsGetProfileSettingsOutput *self,
+                                const gchar **value_password,
+                                GError **error);
+

Get the 'Password' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageWdsGetProfileSettingsOutput.

 

value_password

a placeholder for the output constant string, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.8

+
+
+
+

qmi_message_wds_get_profile_settings_output_get_authentication ()

+
gboolean
+qmi_message_wds_get_profile_settings_output_get_authentication
+                               (QmiMessageWdsGetProfileSettingsOutput *self,
+                                QmiWdsAuthentication *value_authentication,
+                                GError **error);
+

Get the 'Authentication' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageWdsGetProfileSettingsOutput.

 

value_authentication

a placeholder for the output QmiWdsAuthentication, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.8

+
+
+
+

qmi_message_wds_get_profile_settings_output_get_ipv4_address_preference ()

+
gboolean
+qmi_message_wds_get_profile_settings_output_get_ipv4_address_preference
+                               (QmiMessageWdsGetProfileSettingsOutput *self,
+                                guint32 *value_ipv4_address_preference,
+                                GError **error);
+

Get the 'IPv4 Address Preference' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageWdsGetProfileSettingsOutput.

 

value_ipv4_address_preference

a placeholder for the output guint32, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.8

+
+
+
+

qmi_message_wds_get_profile_settings_output_get_pcscf_address_using_pco ()

+
gboolean
+qmi_message_wds_get_profile_settings_output_get_pcscf_address_using_pco
+                               (QmiMessageWdsGetProfileSettingsOutput *self,
+                                gboolean *value_pcscf_address_using_pco,
+                                GError **error);
+

Get the 'PCSCF Address Using PCO' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageWdsGetProfileSettingsOutput.

 

value_pcscf_address_using_pco

a placeholder for the output gboolean, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.8

+
+
+
+

qmi_message_wds_get_profile_settings_output_get_pcscf_address_using_dhcp ()

+
gboolean
+qmi_message_wds_get_profile_settings_output_get_pcscf_address_using_dhcp
+                               (QmiMessageWdsGetProfileSettingsOutput *self,
+                                gboolean *value_pcscf_address_using_dhcp,
+                                GError **error);
+

Get the 'PCSCF Address Using DHCP' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageWdsGetProfileSettingsOutput.

 

value_pcscf_address_using_dhcp

a placeholder for the output gboolean, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.8

+
+
+
+

qmi_message_wds_get_profile_settings_output_get_imcn_flag ()

+
gboolean
+qmi_message_wds_get_profile_settings_output_get_imcn_flag
+                               (QmiMessageWdsGetProfileSettingsOutput *self,
+                                gboolean *value_imcn_flag,
+                                GError **error);
+

Get the 'IMCN Flag' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageWdsGetProfileSettingsOutput.

 

value_imcn_flag

a placeholder for the output gboolean, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.8

+
+
+
+

qmi_message_wds_get_profile_settings_output_get_pdp_context_number ()

+
gboolean
+qmi_message_wds_get_profile_settings_output_get_pdp_context_number
+                               (QmiMessageWdsGetProfileSettingsOutput *self,
+                                guint8 *value_pdp_context_number,
+                                GError **error);
+

Get the 'PDP Context Number' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageWdsGetProfileSettingsOutput.

 

value_pdp_context_number

a placeholder for the output guint8, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.18

+
+
+
+

qmi_message_wds_get_profile_settings_output_get_pdp_context_secondary_flag ()

+
gboolean
+qmi_message_wds_get_profile_settings_output_get_pdp_context_secondary_flag
+                               (QmiMessageWdsGetProfileSettingsOutput *self,
+                                gboolean *value_pdp_context_secondary_flag,
+                                GError **error);
+

Get the 'PDP Context Secondary Flag' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageWdsGetProfileSettingsOutput.

 

value_pdp_context_secondary_flag

a placeholder for the output gboolean, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.18

+
+
+
+

qmi_message_wds_get_profile_settings_output_get_pdp_context_primary_id ()

+
gboolean
+qmi_message_wds_get_profile_settings_output_get_pdp_context_primary_id
+                               (QmiMessageWdsGetProfileSettingsOutput *self,
+                                guint8 *value_pdp_context_primary_id,
+                                GError **error);
+

Get the 'PDP Context Primary ID' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageWdsGetProfileSettingsOutput.

 

value_pdp_context_primary_id

a placeholder for the output guint8, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.18

+
+
+
+

qmi_message_wds_get_profile_settings_output_get_ipv6_address_preference ()

+
gboolean
+qmi_message_wds_get_profile_settings_output_get_ipv6_address_preference
+                               (QmiMessageWdsGetProfileSettingsOutput *self,
+                                GArray **value_ipv6_address_preference_address,
+                                GError **error);
+

Get the 'IPv6 Address Preference' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageWdsGetProfileSettingsOutput.

 

value_ipv6_address_preference_address

a placeholder for the output GArray of guint16 elements, or NULL if not required. Do not free it, it is owned by self +.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.8

+
+
+
+

qmi_message_wds_get_profile_settings_output_get_umts_requested_qos_with_signaling_indication_flag ()

+
gboolean
+qmi_message_wds_get_profile_settings_output_get_umts_requested_qos_with_signaling_indication_flag
+                               (QmiMessageWdsGetProfileSettingsOutput *self,
+                                QmiWdsTrafficClass *value_umts_requested_qos_with_signaling_indication_flag_traffic_class,
+                                guint32 *value_umts_requested_qos_with_signaling_indication_flag_max_uplink_bitrate,
+                                guint32 *value_umts_requested_qos_with_signaling_indication_flag_max_downlink_bitrate,
+                                guint32 *value_umts_requested_qos_with_signaling_indication_flag_guaranteed_uplink_bitrate,
+                                guint32 *value_umts_requested_qos_with_signaling_indication_flag_guaranteed_downlink_bitrate,
+                                QmiWdsDeliveryOrder *value_umts_requested_qos_with_signaling_indication_flag_qos_delivery_order,
+                                guint32 *value_umts_requested_qos_with_signaling_indication_flag_maximum_sdu_size,
+                                QmiWdsSduErrorRatio *value_umts_requested_qos_with_signaling_indication_flag_sdu_error_ratio,
+                                QmiWdsSduResidualBitErrorRatio *value_umts_requested_qos_with_signaling_indication_flag_residual_bit_error_ratio,
+                                QmiWdsSduErroneousDelivery *value_umts_requested_qos_with_signaling_indication_flag_delivery_erroneous_sdu,
+                                guint32 *value_umts_requested_qos_with_signaling_indication_flag_transfer_delay,
+                                guint32 *value_umts_requested_qos_with_signaling_indication_flag_traffic_handling_priority,
+                                gint8 *value_umts_requested_qos_with_signaling_indication_flag_signaling_indication,
+                                GError **error);
+

Get the 'UMTS Requested QoS With Signaling Indication Flag' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

self

a QmiMessageWdsGetProfileSettingsOutput.

 

value_umts_requested_qos_with_signaling_indication_flag_traffic_class

a placeholder for the output QmiWdsTrafficClass, or NULL if not required.

 

value_umts_requested_qos_with_signaling_indication_flag_max_uplink_bitrate

a placeholder for the output guint32, or NULL if not required.

 

value_umts_requested_qos_with_signaling_indication_flag_max_downlink_bitrate

a placeholder for the output guint32, or NULL if not required.

 

value_umts_requested_qos_with_signaling_indication_flag_guaranteed_uplink_bitrate

a placeholder for the output guint32, or NULL if not required.

 

value_umts_requested_qos_with_signaling_indication_flag_guaranteed_downlink_bitrate

a placeholder for the output guint32, or NULL if not required.

 

value_umts_requested_qos_with_signaling_indication_flag_qos_delivery_order

a placeholder for the output QmiWdsDeliveryOrder, or NULL if not required.

 

value_umts_requested_qos_with_signaling_indication_flag_maximum_sdu_size

a placeholder for the output guint32, or NULL if not required.

 

value_umts_requested_qos_with_signaling_indication_flag_sdu_error_ratio

a placeholder for the output QmiWdsSduErrorRatio, or NULL if not required.

 

value_umts_requested_qos_with_signaling_indication_flag_residual_bit_error_ratio

a placeholder for the output QmiWdsSduResidualBitErrorRatio, or NULL if not required.

 

value_umts_requested_qos_with_signaling_indication_flag_delivery_erroneous_sdu

a placeholder for the output QmiWdsSduErroneousDelivery, or NULL if not required.

 

value_umts_requested_qos_with_signaling_indication_flag_transfer_delay

a placeholder for the output guint32, or NULL if not required.

 

value_umts_requested_qos_with_signaling_indication_flag_traffic_handling_priority

a placeholder for the output guint32, or NULL if not required.

 

value_umts_requested_qos_with_signaling_indication_flag_signaling_indication

a placeholder for the output gint8, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.18

+
+
+
+

qmi_message_wds_get_profile_settings_output_get_umts_minimum_qos_with_signaling_indication_flag ()

+
gboolean
+qmi_message_wds_get_profile_settings_output_get_umts_minimum_qos_with_signaling_indication_flag
+                               (QmiMessageWdsGetProfileSettingsOutput *self,
+                                QmiWdsTrafficClass *value_umts_minimum_qos_with_signaling_indication_flag_traffic_class,
+                                guint32 *value_umts_minimum_qos_with_signaling_indication_flag_max_uplink_bitrate,
+                                guint32 *value_umts_minimum_qos_with_signaling_indication_flag_max_downlink_bitrate,
+                                guint32 *value_umts_minimum_qos_with_signaling_indication_flag_guaranteed_uplink_bitrate,
+                                guint32 *value_umts_minimum_qos_with_signaling_indication_flag_guaranteed_downlink_bitrate,
+                                QmiWdsDeliveryOrder *value_umts_minimum_qos_with_signaling_indication_flag_qos_delivery_order,
+                                guint32 *value_umts_minimum_qos_with_signaling_indication_flag_maximum_sdu_size,
+                                QmiWdsSduErrorRatio *value_umts_minimum_qos_with_signaling_indication_flag_sdu_error_ratio,
+                                QmiWdsSduResidualBitErrorRatio *value_umts_minimum_qos_with_signaling_indication_flag_residual_bit_error_ratio,
+                                QmiWdsSduErroneousDelivery *value_umts_minimum_qos_with_signaling_indication_flag_delivery_erroneous_sdu,
+                                guint32 *value_umts_minimum_qos_with_signaling_indication_flag_transfer_delay,
+                                guint32 *value_umts_minimum_qos_with_signaling_indication_flag_traffic_handling_priority,
+                                gint8 *value_umts_minimum_qos_with_signaling_indication_flag_signaling_indication,
+                                GError **error);
+

Get the 'UMTS Minimum QoS With Signaling Indication Flag' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

self

a QmiMessageWdsGetProfileSettingsOutput.

 

value_umts_minimum_qos_with_signaling_indication_flag_traffic_class

a placeholder for the output QmiWdsTrafficClass, or NULL if not required.

 

value_umts_minimum_qos_with_signaling_indication_flag_max_uplink_bitrate

a placeholder for the output guint32, or NULL if not required.

 

value_umts_minimum_qos_with_signaling_indication_flag_max_downlink_bitrate

a placeholder for the output guint32, or NULL if not required.

 

value_umts_minimum_qos_with_signaling_indication_flag_guaranteed_uplink_bitrate

a placeholder for the output guint32, or NULL if not required.

 

value_umts_minimum_qos_with_signaling_indication_flag_guaranteed_downlink_bitrate

a placeholder for the output guint32, or NULL if not required.

 

value_umts_minimum_qos_with_signaling_indication_flag_qos_delivery_order

a placeholder for the output QmiWdsDeliveryOrder, or NULL if not required.

 

value_umts_minimum_qos_with_signaling_indication_flag_maximum_sdu_size

a placeholder for the output guint32, or NULL if not required.

 

value_umts_minimum_qos_with_signaling_indication_flag_sdu_error_ratio

a placeholder for the output QmiWdsSduErrorRatio, or NULL if not required.

 

value_umts_minimum_qos_with_signaling_indication_flag_residual_bit_error_ratio

a placeholder for the output QmiWdsSduResidualBitErrorRatio, or NULL if not required.

 

value_umts_minimum_qos_with_signaling_indication_flag_delivery_erroneous_sdu

a placeholder for the output QmiWdsSduErroneousDelivery, or NULL if not required.

 

value_umts_minimum_qos_with_signaling_indication_flag_transfer_delay

a placeholder for the output guint32, or NULL if not required.

 

value_umts_minimum_qos_with_signaling_indication_flag_traffic_handling_priority

a placeholder for the output guint32, or NULL if not required.

 

value_umts_minimum_qos_with_signaling_indication_flag_signaling_indication

a placeholder for the output gint8, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.18

+
+
+
+

qmi_message_wds_get_profile_settings_output_get_ipv6_primary_dns_address_preference ()

+
gboolean
+qmi_message_wds_get_profile_settings_output_get_ipv6_primary_dns_address_preference
+                               (QmiMessageWdsGetProfileSettingsOutput *self,
+                                GArray **value_ipv6_primary_dns_address_preference,
+                                GError **error);
+

Get the 'IPv6 Primary DNS Address Preference' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageWdsGetProfileSettingsOutput.

 

value_ipv6_primary_dns_address_preference

a placeholder for the output GArray of guint16 elements, or NULL if not required. Do not free it, it is owned by self +.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.8

+
+
+
+

qmi_message_wds_get_profile_settings_output_get_ipv6_secondary_dns_address_preference ()

+
gboolean
+qmi_message_wds_get_profile_settings_output_get_ipv6_secondary_dns_address_preference
+                               (QmiMessageWdsGetProfileSettingsOutput *self,
+                                GArray **value_ipv6_secondary_dns_address_preference,
+                                GError **error);
+

Get the 'IPv6 Secondary DNS Address Preference' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageWdsGetProfileSettingsOutput.

 

value_ipv6_secondary_dns_address_preference

a placeholder for the output GArray of guint16 elements, or NULL if not required. Do not free it, it is owned by self +.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.8

+
+
+
+

qmi_message_wds_get_profile_settings_output_get_lte_qos_parameters ()

+
gboolean
+qmi_message_wds_get_profile_settings_output_get_lte_qos_parameters
+                               (QmiMessageWdsGetProfileSettingsOutput *self,
+                                QmiWdsQosClassIdentifier *value_lte_qos_parameters_qos_class_identifier,
+                                guint32 *value_lte_qos_parameters_guaranteed_downlink_bitrate,
+                                guint32 *value_lte_qos_parameters_max_downlink_bitrate,
+                                guint32 *value_lte_qos_parameters_guaranteed_uplink_bitrate,
+                                guint32 *value_lte_qos_parameters_max_uplink_bitrate,
+                                GError **error);
+

Get the 'LTE QoS Parameters' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

self

a QmiMessageWdsGetProfileSettingsOutput.

 

value_lte_qos_parameters_qos_class_identifier

a placeholder for the output QmiWdsQosClassIdentifier, or NULL if not required.

 

value_lte_qos_parameters_guaranteed_downlink_bitrate

a placeholder for the output guint32, or NULL if not required.

 

value_lte_qos_parameters_max_downlink_bitrate

a placeholder for the output guint32, or NULL if not required.

 

value_lte_qos_parameters_guaranteed_uplink_bitrate

a placeholder for the output guint32, or NULL if not required.

 

value_lte_qos_parameters_max_uplink_bitrate

a placeholder for the output guint32, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.18

+
+
+
+

qmi_message_wds_get_profile_settings_output_get_apn_disabled_flag ()

+
gboolean
+qmi_message_wds_get_profile_settings_output_get_apn_disabled_flag
+                               (QmiMessageWdsGetProfileSettingsOutput *self,
+                                gboolean *value_apn_disabled_flag,
+                                GError **error);
+

Get the 'APN Disabled Flag' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageWdsGetProfileSettingsOutput.

 

value_apn_disabled_flag

a placeholder for the output gboolean, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.22

+
+
+
+

qmi_message_wds_get_profile_settings_output_get_roaming_disallowed_flag ()

+
gboolean
+qmi_message_wds_get_profile_settings_output_get_roaming_disallowed_flag
+                               (QmiMessageWdsGetProfileSettingsOutput *self,
+                                gboolean *value_roaming_disallowed_flag,
+                                GError **error);
+

Get the 'Roaming Disallowed Flag' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageWdsGetProfileSettingsOutput.

 

value_roaming_disallowed_flag

a placeholder for the output gboolean, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.22

+
+
+
+

qmi_message_wds_get_profile_settings_output_get_extended_error_code ()

+
gboolean
+qmi_message_wds_get_profile_settings_output_get_extended_error_code
+                               (QmiMessageWdsGetProfileSettingsOutput *self,
+                                QmiWdsDsProfileError *value_extended_error_code,
+                                GError **error);
+

Get the 'Extended Error Code' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageWdsGetProfileSettingsOutput.

 

value_extended_error_code

a placeholder for the output QmiWdsDsProfileError, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.8

+
+
+
+

qmi_client_wds_get_profile_settings ()

+
void
+qmi_client_wds_get_profile_settings (QmiClientWds *self,
+                                     QmiMessageWdsGetProfileSettingsInput *input,
+                                     guint timeout,
+                                     GCancellable *cancellable,
+                                     GAsyncReadyCallback callback,
+                                     gpointer user_data);
+

Asynchronously sends a Get Profile Settings request to the device.

+

When the operation is finished, callback + will be invoked in the thread-default main loop of the thread you are calling this method from.

+

You can then call qmi_client_wds_get_profile_settings_finish() to get the result of the operation.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

self

a QmiClientWds.

 

input

a QmiMessageWdsGetProfileSettingsInput.

 

timeout

maximum time to wait for the method to complete, in seconds.

 

cancellable

a GCancellable or NULL.

 

callback

a GAsyncReadyCallback to call when the request is satisfied.

 

user_data

user data to pass to callback +.

 
+
+

Since: 1.8

+
+
+
+

qmi_client_wds_get_profile_settings_finish ()

+
QmiMessageWdsGetProfileSettingsOutput *
+qmi_client_wds_get_profile_settings_finish
+                               (QmiClientWds *self,
+                                GAsyncResult *res,
+                                GError **error);
+

Finishes an async operation started with qmi_client_wds_get_profile_settings().

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiClientWds.

 

res

the GAsyncResult obtained from the GAsyncReadyCallback passed to qmi_client_wds_get_profile_settings().

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

a QmiMessageWdsGetProfileSettingsOutput, or NULL if error +is set. The returned value should be freed with qmi_message_wds_get_profile_settings_output_unref().

+
+

Since: 1.8

+
+
+
+

Types and Values

+
+

QmiMessageWdsGetProfileSettingsInput

+
typedef struct _QmiMessageWdsGetProfileSettingsInput QmiMessageWdsGetProfileSettingsInput;
+

The QmiMessageWdsGetProfileSettingsInput structure contains private data and should only be accessed +using the provided API.

+

Since: 1.8

+
+
+
+

QmiMessageWdsGetProfileSettingsOutput

+
typedef struct _QmiMessageWdsGetProfileSettingsOutput QmiMessageWdsGetProfileSettingsOutput;
+

The QmiMessageWdsGetProfileSettingsOutput structure contains private data and should only be accessed +using the provided API.

+

Since: 1.8

+
+
+
+ + + \ No newline at end of file diff -Nru libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-WDS-Get-Supported-Messages.html libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-WDS-Get-Supported-Messages.html --- libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-WDS-Get-Supported-Messages.html 2017-03-22 12:28:29.000000000 +0100 +++ libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-WDS-Get-Supported-Messages.html 1970-01-01 01:00:00.000000000 +0100 @@ -1,372 +0,0 @@ - - - - -WDS Get Supported Messages: libqmi-glib Reference Manual - - - - - - - - - - - - - - - - -
-
-
- - -
-

WDS Get Supported Messages

-

WDS Get Supported Messages

-
- -
-

Types and Values

- -
-
-

Object Hierarchy

-
    GBoxed
-    ╰── QmiMessageWdsGetSupportedMessagesOutput
-
-
-
-

Description

-
-
-

Functions

-
-

qmi_message_wds_get_supported_messages_output_ref ()

-
QmiMessageWdsGetSupportedMessagesOutput *
-qmi_message_wds_get_supported_messages_output_ref
-                               (QmiMessageWdsGetSupportedMessagesOutput *self);
-

Atomically increments the reference count of self - by one.

-
-

Parameters

-
----- - - - - - -

self

a QmiMessageWdsGetSupportedMessagesOutput.

 
-
-
-

Returns

-

the new reference to self -.

-
-

Since: 1.14

-
-
-
-

qmi_message_wds_get_supported_messages_output_unref ()

-
void
-qmi_message_wds_get_supported_messages_output_unref
-                               (QmiMessageWdsGetSupportedMessagesOutput *self);
-

Atomically decrements the reference count of self - by one. -If the reference count drops to 0, self - is completely disposed.

-
-

Parameters

-
----- - - - - - -

self

a QmiMessageWdsGetSupportedMessagesOutput.

 
-
-

Since: 1.14

-
-
-
-

qmi_message_wds_get_supported_messages_output_get_result ()

-
gboolean
-qmi_message_wds_get_supported_messages_output_get_result
-                               (QmiMessageWdsGetSupportedMessagesOutput *self,
-                                GError **error);
-

Get the result of the QMI operation.

-
-

Parameters

-
----- - - - - - - - - - - - - -

self

a QmiMessageWdsGetSupportedMessagesOutput.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the QMI operation succeeded, FALSE if error -is set.

-
-

Since: 1.14

-
-
-
-

qmi_message_wds_get_supported_messages_output_get_list ()

-
gboolean
-qmi_message_wds_get_supported_messages_output_get_list
-                               (QmiMessageWdsGetSupportedMessagesOutput *self,
-                                GArray **value_list,
-                                GError **error);
-

Get the 'List' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessageWdsGetSupportedMessagesOutput.

 

value_list

a placeholder for the output GArray of guint8 elements, or NULL if not required. Do not free it, it is owned by self -.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.14

-
-
-
-

qmi_client_wds_get_supported_messages ()

-
void
-qmi_client_wds_get_supported_messages (QmiClientWds *self,
-                                       gpointer unused,
-                                       guint timeout,
-                                       GCancellable *cancellable,
-                                       GAsyncReadyCallback callback,
-                                       gpointer user_data);
-

Asynchronously sends a Get Supported Messages request to the device.

-

When the operation is finished, callback - will be invoked in the thread-default main loop of the thread you are calling this method from.

-

You can then call qmi_client_wds_get_supported_messages_finish() to get the result of the operation.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

self

a QmiClientWds.

 

unused

NULL. This message doesn't have any input bundle.

 

timeout

maximum time to wait for the method to complete, in seconds.

 

cancellable

a GCancellable or NULL.

 

callback

a GAsyncReadyCallback to call when the request is satisfied.

 

user_data

user data to pass to callback -.

 
-
-

Since: 1.14

-
-
-
-

qmi_client_wds_get_supported_messages_finish ()

-
QmiMessageWdsGetSupportedMessagesOutput *
-qmi_client_wds_get_supported_messages_finish
-                               (QmiClientWds *self,
-                                GAsyncResult *res,
-                                GError **error);
-

Finishes an async operation started with qmi_client_wds_get_supported_messages().

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiClientWds.

 

res

the GAsyncResult obtained from the GAsyncReadyCallback passed to qmi_client_wds_get_supported_messages().

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

a QmiMessageWdsGetSupportedMessagesOutput, or NULL if error -is set. The returned value should be freed with qmi_message_wds_get_supported_messages_output_unref().

-
-

Since: 1.14

-
-
-
-

Types and Values

-
-

QmiMessageWdsGetSupportedMessagesOutput

-
typedef struct _QmiMessageWdsGetSupportedMessagesOutput QmiMessageWdsGetSupportedMessagesOutput;
-

The QmiMessageWdsGetSupportedMessagesOutput structure contains private data and should only be accessed -using the provided API.

-

Since: 1.14

-
-
-
- - - \ No newline at end of file diff -Nru libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-WDS-Get-Supported-Messages-request.html libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-WDS-Get-Supported-Messages-request.html --- libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-WDS-Get-Supported-Messages-request.html 1970-01-01 01:00:00.000000000 +0100 +++ libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-WDS-Get-Supported-Messages-request.html 2019-01-08 15:19:02.000000000 +0100 @@ -0,0 +1,372 @@ + + + + +WDS Get Supported Messages request: libqmi-glib Reference Manual + + + + + + + + + + + + + + + + +
+
+
+ + +
+

WDS Get Supported Messages request

+

WDS Get Supported Messages request

+
+ +
+

Types and Values

+ +
+
+

Object Hierarchy

+
    GBoxed
+    ╰── QmiMessageWdsGetSupportedMessagesOutput
+
+
+
+

Description

+
+
+

Functions

+
+

qmi_message_wds_get_supported_messages_output_ref ()

+
QmiMessageWdsGetSupportedMessagesOutput *
+qmi_message_wds_get_supported_messages_output_ref
+                               (QmiMessageWdsGetSupportedMessagesOutput *self);
+

Atomically increments the reference count of self + by one.

+
+

Parameters

+
+++++ + + + + + +

self

a QmiMessageWdsGetSupportedMessagesOutput.

 
+
+
+

Returns

+

the new reference to self +.

+
+

Since: 1.14

+
+
+
+

qmi_message_wds_get_supported_messages_output_unref ()

+
void
+qmi_message_wds_get_supported_messages_output_unref
+                               (QmiMessageWdsGetSupportedMessagesOutput *self);
+

Atomically decrements the reference count of self + by one. +If the reference count drops to 0, self + is completely disposed.

+
+

Parameters

+
+++++ + + + + + +

self

a QmiMessageWdsGetSupportedMessagesOutput.

 
+
+

Since: 1.14

+
+
+
+

qmi_message_wds_get_supported_messages_output_get_result ()

+
gboolean
+qmi_message_wds_get_supported_messages_output_get_result
+                               (QmiMessageWdsGetSupportedMessagesOutput *self,
+                                GError **error);
+

Get the result of the QMI operation.

+
+

Parameters

+
+++++ + + + + + + + + + + + + +

self

a QmiMessageWdsGetSupportedMessagesOutput.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the QMI operation succeeded, FALSE if error +is set.

+
+

Since: 1.14

+
+
+
+

qmi_message_wds_get_supported_messages_output_get_list ()

+
gboolean
+qmi_message_wds_get_supported_messages_output_get_list
+                               (QmiMessageWdsGetSupportedMessagesOutput *self,
+                                GArray **value_list,
+                                GError **error);
+

Get the 'List' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageWdsGetSupportedMessagesOutput.

 

value_list

a placeholder for the output GArray of guint8 elements, or NULL if not required. Do not free it, it is owned by self +.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.14

+
+
+
+

qmi_client_wds_get_supported_messages ()

+
void
+qmi_client_wds_get_supported_messages (QmiClientWds *self,
+                                       gpointer unused,
+                                       guint timeout,
+                                       GCancellable *cancellable,
+                                       GAsyncReadyCallback callback,
+                                       gpointer user_data);
+

Asynchronously sends a Get Supported Messages request to the device.

+

When the operation is finished, callback + will be invoked in the thread-default main loop of the thread you are calling this method from.

+

You can then call qmi_client_wds_get_supported_messages_finish() to get the result of the operation.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

self

a QmiClientWds.

 

unused

NULL. This message doesn't have any input bundle.

 

timeout

maximum time to wait for the method to complete, in seconds.

 

cancellable

a GCancellable or NULL.

 

callback

a GAsyncReadyCallback to call when the request is satisfied.

 

user_data

user data to pass to callback +.

 
+
+

Since: 1.14

+
+
+
+

qmi_client_wds_get_supported_messages_finish ()

+
QmiMessageWdsGetSupportedMessagesOutput *
+qmi_client_wds_get_supported_messages_finish
+                               (QmiClientWds *self,
+                                GAsyncResult *res,
+                                GError **error);
+

Finishes an async operation started with qmi_client_wds_get_supported_messages().

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiClientWds.

 

res

the GAsyncResult obtained from the GAsyncReadyCallback passed to qmi_client_wds_get_supported_messages().

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

a QmiMessageWdsGetSupportedMessagesOutput, or NULL if error +is set. The returned value should be freed with qmi_message_wds_get_supported_messages_output_unref().

+
+

Since: 1.14

+
+
+
+

Types and Values

+
+

QmiMessageWdsGetSupportedMessagesOutput

+
typedef struct _QmiMessageWdsGetSupportedMessagesOutput QmiMessageWdsGetSupportedMessagesOutput;
+

The QmiMessageWdsGetSupportedMessagesOutput structure contains private data and should only be accessed +using the provided API.

+

Since: 1.14

+
+
+
+ + + \ No newline at end of file diff -Nru libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-WDS-Go-Active.html libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-WDS-Go-Active.html --- libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-WDS-Go-Active.html 2017-03-22 12:28:29.000000000 +0100 +++ libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-WDS-Go-Active.html 1970-01-01 01:00:00.000000000 +0100 @@ -1,318 +0,0 @@ - - - - -WDS Go Active: libqmi-glib Reference Manual - - - - - - - - - - - - - - - - -
-
-
- - -
-

WDS Go Active

-

WDS Go Active

-
- -
-

Types and Values

-
---- - - - - -
 QmiMessageWdsGoActiveOutput
-
-
-

Object Hierarchy

-
    GBoxed
-    ╰── QmiMessageWdsGoActiveOutput
-
-
-
-

Description

-
-
-

Functions

-
-

qmi_message_wds_go_active_output_ref ()

-
QmiMessageWdsGoActiveOutput *
-qmi_message_wds_go_active_output_ref (QmiMessageWdsGoActiveOutput *self);
-

Atomically increments the reference count of self - by one.

-
-

Parameters

-
----- - - - - - -

self

a QmiMessageWdsGoActiveOutput.

 
-
-
-

Returns

-

the new reference to self -.

-
-

Since: 1.18

-
-
-
-

qmi_message_wds_go_active_output_unref ()

-
void
-qmi_message_wds_go_active_output_unref
-                               (QmiMessageWdsGoActiveOutput *self);
-

Atomically decrements the reference count of self - by one. -If the reference count drops to 0, self - is completely disposed.

-
-

Parameters

-
----- - - - - - -

self

a QmiMessageWdsGoActiveOutput.

 
-
-

Since: 1.18

-
-
-
-

qmi_message_wds_go_active_output_get_result ()

-
gboolean
-qmi_message_wds_go_active_output_get_result
-                               (QmiMessageWdsGoActiveOutput *self,
-                                GError **error);
-

Get the result of the QMI operation.

-
-

Parameters

-
----- - - - - - - - - - - - - -

self

a QmiMessageWdsGoActiveOutput.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the QMI operation succeeded, FALSE if error -is set.

-
-

Since: 1.18

-
-
-
-

qmi_client_wds_go_active ()

-
void
-qmi_client_wds_go_active (QmiClientWds *self,
-                          gpointer unused,
-                          guint timeout,
-                          GCancellable *cancellable,
-                          GAsyncReadyCallback callback,
-                          gpointer user_data);
-

Asynchronously sends a Go Active request to the device.

-

When the operation is finished, callback - will be invoked in the thread-default main loop of the thread you are calling this method from.

-

You can then call qmi_client_wds_go_active_finish() to get the result of the operation.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

self

a QmiClientWds.

 

unused

NULL. This message doesn't have any input bundle.

 

timeout

maximum time to wait for the method to complete, in seconds.

 

cancellable

a GCancellable or NULL.

 

callback

a GAsyncReadyCallback to call when the request is satisfied.

 

user_data

user data to pass to callback -.

 
-
-

Since: 1.18

-
-
-
-

qmi_client_wds_go_active_finish ()

-
QmiMessageWdsGoActiveOutput *
-qmi_client_wds_go_active_finish (QmiClientWds *self,
-                                 GAsyncResult *res,
-                                 GError **error);
-

Finishes an async operation started with qmi_client_wds_go_active().

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiClientWds.

 

res

the GAsyncResult obtained from the GAsyncReadyCallback passed to qmi_client_wds_go_active().

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

a QmiMessageWdsGoActiveOutput, or NULL if error -is set. The returned value should be freed with qmi_message_wds_go_active_output_unref().

-
-

Since: 1.18

-
-
-
-

Types and Values

-
-

QmiMessageWdsGoActiveOutput

-
typedef struct _QmiMessageWdsGoActiveOutput QmiMessageWdsGoActiveOutput;
-

The QmiMessageWdsGoActiveOutput structure contains private data and should only be accessed -using the provided API.

-

Since: 1.18

-
-
-
- - - \ No newline at end of file diff -Nru libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-WDS-Go-Active-request.html libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-WDS-Go-Active-request.html --- libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-WDS-Go-Active-request.html 1970-01-01 01:00:00.000000000 +0100 +++ libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-WDS-Go-Active-request.html 2019-01-08 15:19:02.000000000 +0100 @@ -0,0 +1,318 @@ + + + + +WDS Go Active request: libqmi-glib Reference Manual + + + + + + + + + + + + + + + + +
+
+
+ + +
+

WDS Go Active request

+

WDS Go Active request

+
+ +
+

Types and Values

+
++++ + + + + +
 QmiMessageWdsGoActiveOutput
+
+
+

Object Hierarchy

+
    GBoxed
+    ╰── QmiMessageWdsGoActiveOutput
+
+
+
+

Description

+
+
+

Functions

+
+

qmi_message_wds_go_active_output_ref ()

+
QmiMessageWdsGoActiveOutput *
+qmi_message_wds_go_active_output_ref (QmiMessageWdsGoActiveOutput *self);
+

Atomically increments the reference count of self + by one.

+
+

Parameters

+
+++++ + + + + + +

self

a QmiMessageWdsGoActiveOutput.

 
+
+
+

Returns

+

the new reference to self +.

+
+

Since: 1.18

+
+
+
+

qmi_message_wds_go_active_output_unref ()

+
void
+qmi_message_wds_go_active_output_unref
+                               (QmiMessageWdsGoActiveOutput *self);
+

Atomically decrements the reference count of self + by one. +If the reference count drops to 0, self + is completely disposed.

+
+

Parameters

+
+++++ + + + + + +

self

a QmiMessageWdsGoActiveOutput.

 
+
+

Since: 1.18

+
+
+
+

qmi_message_wds_go_active_output_get_result ()

+
gboolean
+qmi_message_wds_go_active_output_get_result
+                               (QmiMessageWdsGoActiveOutput *self,
+                                GError **error);
+

Get the result of the QMI operation.

+
+

Parameters

+
+++++ + + + + + + + + + + + + +

self

a QmiMessageWdsGoActiveOutput.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the QMI operation succeeded, FALSE if error +is set.

+
+

Since: 1.18

+
+
+
+

qmi_client_wds_go_active ()

+
void
+qmi_client_wds_go_active (QmiClientWds *self,
+                          gpointer unused,
+                          guint timeout,
+                          GCancellable *cancellable,
+                          GAsyncReadyCallback callback,
+                          gpointer user_data);
+

Asynchronously sends a Go Active request to the device.

+

When the operation is finished, callback + will be invoked in the thread-default main loop of the thread you are calling this method from.

+

You can then call qmi_client_wds_go_active_finish() to get the result of the operation.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

self

a QmiClientWds.

 

unused

NULL. This message doesn't have any input bundle.

 

timeout

maximum time to wait for the method to complete, in seconds.

 

cancellable

a GCancellable or NULL.

 

callback

a GAsyncReadyCallback to call when the request is satisfied.

 

user_data

user data to pass to callback +.

 
+
+

Since: 1.18

+
+
+
+

qmi_client_wds_go_active_finish ()

+
QmiMessageWdsGoActiveOutput *
+qmi_client_wds_go_active_finish (QmiClientWds *self,
+                                 GAsyncResult *res,
+                                 GError **error);
+

Finishes an async operation started with qmi_client_wds_go_active().

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiClientWds.

 

res

the GAsyncResult obtained from the GAsyncReadyCallback passed to qmi_client_wds_go_active().

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

a QmiMessageWdsGoActiveOutput, or NULL if error +is set. The returned value should be freed with qmi_message_wds_go_active_output_unref().

+
+

Since: 1.18

+
+
+
+

Types and Values

+
+

QmiMessageWdsGoActiveOutput

+
typedef struct _QmiMessageWdsGoActiveOutput QmiMessageWdsGoActiveOutput;
+

The QmiMessageWdsGoActiveOutput structure contains private data and should only be accessed +using the provided API.

+

Since: 1.18

+
+
+
+ + + \ No newline at end of file diff -Nru libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-WDS-Go-Dormant.html libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-WDS-Go-Dormant.html --- libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-WDS-Go-Dormant.html 2017-03-22 12:28:29.000000000 +0100 +++ libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-WDS-Go-Dormant.html 1970-01-01 01:00:00.000000000 +0100 @@ -1,318 +0,0 @@ - - - - -WDS Go Dormant: libqmi-glib Reference Manual - - - - - - - - - - - - - - - - -
-
-
- - -
-

WDS Go Dormant

-

WDS Go Dormant

-
- -
-

Types and Values

- -
-
-

Object Hierarchy

-
    GBoxed
-    ╰── QmiMessageWdsGoDormantOutput
-
-
-
-

Description

-
-
-

Functions

-
-

qmi_message_wds_go_dormant_output_ref ()

-
QmiMessageWdsGoDormantOutput *
-qmi_message_wds_go_dormant_output_ref (QmiMessageWdsGoDormantOutput *self);
-

Atomically increments the reference count of self - by one.

-
-

Parameters

-
----- - - - - - -

self

a QmiMessageWdsGoDormantOutput.

 
-
-
-

Returns

-

the new reference to self -.

-
-

Since: 1.18

-
-
-
-

qmi_message_wds_go_dormant_output_unref ()

-
void
-qmi_message_wds_go_dormant_output_unref
-                               (QmiMessageWdsGoDormantOutput *self);
-

Atomically decrements the reference count of self - by one. -If the reference count drops to 0, self - is completely disposed.

-
-

Parameters

-
----- - - - - - -

self

a QmiMessageWdsGoDormantOutput.

 
-
-

Since: 1.18

-
-
-
-

qmi_message_wds_go_dormant_output_get_result ()

-
gboolean
-qmi_message_wds_go_dormant_output_get_result
-                               (QmiMessageWdsGoDormantOutput *self,
-                                GError **error);
-

Get the result of the QMI operation.

-
-

Parameters

-
----- - - - - - - - - - - - - -

self

a QmiMessageWdsGoDormantOutput.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the QMI operation succeeded, FALSE if error -is set.

-
-

Since: 1.18

-
-
-
-

qmi_client_wds_go_dormant ()

-
void
-qmi_client_wds_go_dormant (QmiClientWds *self,
-                           gpointer unused,
-                           guint timeout,
-                           GCancellable *cancellable,
-                           GAsyncReadyCallback callback,
-                           gpointer user_data);
-

Asynchronously sends a Go Dormant request to the device.

-

When the operation is finished, callback - will be invoked in the thread-default main loop of the thread you are calling this method from.

-

You can then call qmi_client_wds_go_dormant_finish() to get the result of the operation.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

self

a QmiClientWds.

 

unused

NULL. This message doesn't have any input bundle.

 

timeout

maximum time to wait for the method to complete, in seconds.

 

cancellable

a GCancellable or NULL.

 

callback

a GAsyncReadyCallback to call when the request is satisfied.

 

user_data

user data to pass to callback -.

 
-
-

Since: 1.18

-
-
-
-

qmi_client_wds_go_dormant_finish ()

-
QmiMessageWdsGoDormantOutput *
-qmi_client_wds_go_dormant_finish (QmiClientWds *self,
-                                  GAsyncResult *res,
-                                  GError **error);
-

Finishes an async operation started with qmi_client_wds_go_dormant().

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiClientWds.

 

res

the GAsyncResult obtained from the GAsyncReadyCallback passed to qmi_client_wds_go_dormant().

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

a QmiMessageWdsGoDormantOutput, or NULL if error -is set. The returned value should be freed with qmi_message_wds_go_dormant_output_unref().

-
-

Since: 1.18

-
-
-
-

Types and Values

-
-

QmiMessageWdsGoDormantOutput

-
typedef struct _QmiMessageWdsGoDormantOutput QmiMessageWdsGoDormantOutput;
-

The QmiMessageWdsGoDormantOutput structure contains private data and should only be accessed -using the provided API.

-

Since: 1.18

-
-
-
- - - \ No newline at end of file diff -Nru libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-WDS-Go-Dormant-request.html libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-WDS-Go-Dormant-request.html --- libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-WDS-Go-Dormant-request.html 1970-01-01 01:00:00.000000000 +0100 +++ libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-WDS-Go-Dormant-request.html 2019-01-08 15:19:02.000000000 +0100 @@ -0,0 +1,318 @@ + + + + +WDS Go Dormant request: libqmi-glib Reference Manual + + + + + + + + + + + + + + + + +
+
+
+ + +
+

WDS Go Dormant request

+

WDS Go Dormant request

+
+ +
+

Types and Values

+ +
+
+

Object Hierarchy

+
    GBoxed
+    ╰── QmiMessageWdsGoDormantOutput
+
+
+
+

Description

+
+
+

Functions

+
+

qmi_message_wds_go_dormant_output_ref ()

+
QmiMessageWdsGoDormantOutput *
+qmi_message_wds_go_dormant_output_ref (QmiMessageWdsGoDormantOutput *self);
+

Atomically increments the reference count of self + by one.

+
+

Parameters

+
+++++ + + + + + +

self

a QmiMessageWdsGoDormantOutput.

 
+
+
+

Returns

+

the new reference to self +.

+
+

Since: 1.18

+
+
+
+

qmi_message_wds_go_dormant_output_unref ()

+
void
+qmi_message_wds_go_dormant_output_unref
+                               (QmiMessageWdsGoDormantOutput *self);
+

Atomically decrements the reference count of self + by one. +If the reference count drops to 0, self + is completely disposed.

+
+

Parameters

+
+++++ + + + + + +

self

a QmiMessageWdsGoDormantOutput.

 
+
+

Since: 1.18

+
+
+
+

qmi_message_wds_go_dormant_output_get_result ()

+
gboolean
+qmi_message_wds_go_dormant_output_get_result
+                               (QmiMessageWdsGoDormantOutput *self,
+                                GError **error);
+

Get the result of the QMI operation.

+
+

Parameters

+
+++++ + + + + + + + + + + + + +

self

a QmiMessageWdsGoDormantOutput.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the QMI operation succeeded, FALSE if error +is set.

+
+

Since: 1.18

+
+
+
+

qmi_client_wds_go_dormant ()

+
void
+qmi_client_wds_go_dormant (QmiClientWds *self,
+                           gpointer unused,
+                           guint timeout,
+                           GCancellable *cancellable,
+                           GAsyncReadyCallback callback,
+                           gpointer user_data);
+

Asynchronously sends a Go Dormant request to the device.

+

When the operation is finished, callback + will be invoked in the thread-default main loop of the thread you are calling this method from.

+

You can then call qmi_client_wds_go_dormant_finish() to get the result of the operation.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

self

a QmiClientWds.

 

unused

NULL. This message doesn't have any input bundle.

 

timeout

maximum time to wait for the method to complete, in seconds.

 

cancellable

a GCancellable or NULL.

 

callback

a GAsyncReadyCallback to call when the request is satisfied.

 

user_data

user data to pass to callback +.

 
+
+

Since: 1.18

+
+
+
+

qmi_client_wds_go_dormant_finish ()

+
QmiMessageWdsGoDormantOutput *
+qmi_client_wds_go_dormant_finish (QmiClientWds *self,
+                                  GAsyncResult *res,
+                                  GError **error);
+

Finishes an async operation started with qmi_client_wds_go_dormant().

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiClientWds.

 

res

the GAsyncResult obtained from the GAsyncReadyCallback passed to qmi_client_wds_go_dormant().

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

a QmiMessageWdsGoDormantOutput, or NULL if error +is set. The returned value should be freed with qmi_message_wds_go_dormant_output_unref().

+
+

Since: 1.18

+
+
+
+

Types and Values

+
+

QmiMessageWdsGoDormantOutput

+
typedef struct _QmiMessageWdsGoDormantOutput QmiMessageWdsGoDormantOutput;
+

The QmiMessageWdsGoDormantOutput structure contains private data and should only be accessed +using the provided API.

+

Since: 1.18

+
+
+
+ + + \ No newline at end of file diff -Nru libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-WDS-Modify-Profile.html libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-WDS-Modify-Profile.html --- libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-WDS-Modify-Profile.html 2017-03-22 12:28:29.000000000 +0100 +++ libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-WDS-Modify-Profile.html 1970-01-01 01:00:00.000000000 +0100 @@ -1,4049 +0,0 @@ - - - - -WDS Modify Profile: libqmi-glib Reference Manual - - - - - - - - - - - - - - - - -
-
-
- - -
-

WDS Modify Profile

-

WDS Modify Profile

-
-
-

Functions

-
---- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
-QmiMessageWdsModifyProfileInput * - -qmi_message_wds_modify_profile_input_new () -
-QmiMessageWdsModifyProfileInput * - -qmi_message_wds_modify_profile_input_ref () -
-void - -qmi_message_wds_modify_profile_input_unref () -
-gboolean - -qmi_message_wds_modify_profile_input_get_lte_qos_parameters () -
-gboolean - -qmi_message_wds_modify_profile_input_set_lte_qos_parameters () -
-gboolean - -qmi_message_wds_modify_profile_input_get_ipv6_secondary_dns_address_preference () -
-gboolean - -qmi_message_wds_modify_profile_input_set_ipv6_secondary_dns_address_preference () -
-gboolean - -qmi_message_wds_modify_profile_input_get_ipv6_primary_dns_address_preference () -
-gboolean - -qmi_message_wds_modify_profile_input_set_ipv6_primary_dns_address_preference () -
-gboolean - -qmi_message_wds_modify_profile_input_get_umts_minimum_qos_with_signaling_indication_flag () -
-gboolean - -qmi_message_wds_modify_profile_input_set_umts_minimum_qos_with_signaling_indication_flag () -
-gboolean - -qmi_message_wds_modify_profile_input_get_umts_requested_qos_with_signaling_indication_flag () -
-gboolean - -qmi_message_wds_modify_profile_input_set_umts_requested_qos_with_signaling_indication_flag () -
-gboolean - -qmi_message_wds_modify_profile_input_get_ipv6_address_preference () -
-gboolean - -qmi_message_wds_modify_profile_input_set_ipv6_address_preference () -
-gboolean - -qmi_message_wds_modify_profile_input_get_pdp_context_primary_id () -
-gboolean - -qmi_message_wds_modify_profile_input_set_pdp_context_primary_id () -
-gboolean - -qmi_message_wds_modify_profile_input_get_pdp_context_secondary_flag () -
-gboolean - -qmi_message_wds_modify_profile_input_set_pdp_context_secondary_flag () -
-gboolean - -qmi_message_wds_modify_profile_input_get_pdp_context_number () -
-gboolean - -qmi_message_wds_modify_profile_input_set_pdp_context_number () -
-gboolean - -qmi_message_wds_modify_profile_input_get_imcn_flag () -
-gboolean - -qmi_message_wds_modify_profile_input_set_imcn_flag () -
-gboolean - -qmi_message_wds_modify_profile_input_get_pcscf_address_using_dhcp () -
-gboolean - -qmi_message_wds_modify_profile_input_set_pcscf_address_using_dhcp () -
-gboolean - -qmi_message_wds_modify_profile_input_get_pcscf_address_using_pco () -
-gboolean - -qmi_message_wds_modify_profile_input_set_pcscf_address_using_pco () -
-gboolean - -qmi_message_wds_modify_profile_input_get_ipv4_address_preference () -
-gboolean - -qmi_message_wds_modify_profile_input_set_ipv4_address_preference () -
-gboolean - -qmi_message_wds_modify_profile_input_get_authentication () -
-gboolean - -qmi_message_wds_modify_profile_input_set_authentication () -
-gboolean - -qmi_message_wds_modify_profile_input_get_password () -
-gboolean - -qmi_message_wds_modify_profile_input_set_password () -
-gboolean - -qmi_message_wds_modify_profile_input_get_username () -
-gboolean - -qmi_message_wds_modify_profile_input_set_username () -
-gboolean - -qmi_message_wds_modify_profile_input_get_gprs_minimum_qos () -
-gboolean - -qmi_message_wds_modify_profile_input_set_gprs_minimum_qos () -
-gboolean - -qmi_message_wds_modify_profile_input_get_gprs_requested_qos () -
-gboolean - -qmi_message_wds_modify_profile_input_set_gprs_requested_qos () -
-gboolean - -qmi_message_wds_modify_profile_input_get_umts_minimum_qos () -
-gboolean - -qmi_message_wds_modify_profile_input_set_umts_minimum_qos () -
-gboolean - -qmi_message_wds_modify_profile_input_get_umts_requested_qos () -
-gboolean - -qmi_message_wds_modify_profile_input_set_umts_requested_qos () -
-gboolean - -qmi_message_wds_modify_profile_input_get_secondary_ipv4_dns_address () -
-gboolean - -qmi_message_wds_modify_profile_input_set_secondary_ipv4_dns_address () -
-gboolean - -qmi_message_wds_modify_profile_input_get_primary_ipv4_dns_address () -
-gboolean - -qmi_message_wds_modify_profile_input_set_primary_ipv4_dns_address () -
-gboolean - -qmi_message_wds_modify_profile_input_get_apn_name () -
-gboolean - -qmi_message_wds_modify_profile_input_set_apn_name () -
-gboolean - -qmi_message_wds_modify_profile_input_get_pdp_data_compression_type () -
-gboolean - -qmi_message_wds_modify_profile_input_set_pdp_data_compression_type () -
-gboolean - -qmi_message_wds_modify_profile_input_get_pdp_header_compression_type () -
-gboolean - -qmi_message_wds_modify_profile_input_set_pdp_header_compression_type () -
-gboolean - -qmi_message_wds_modify_profile_input_get_pdp_type () -
-gboolean - -qmi_message_wds_modify_profile_input_set_pdp_type () -
-gboolean - -qmi_message_wds_modify_profile_input_get_profile_name () -
-gboolean - -qmi_message_wds_modify_profile_input_set_profile_name () -
-gboolean - -qmi_message_wds_modify_profile_input_get_profile_identifier () -
-gboolean - -qmi_message_wds_modify_profile_input_set_profile_identifier () -
-QmiMessageWdsModifyProfileOutput * - -qmi_message_wds_modify_profile_output_ref () -
-void - -qmi_message_wds_modify_profile_output_unref () -
-gboolean - -qmi_message_wds_modify_profile_output_get_result () -
-gboolean - -qmi_message_wds_modify_profile_output_get_extended_error_code () -
-void - -qmi_client_wds_modify_profile () -
-QmiMessageWdsModifyProfileOutput * - -qmi_client_wds_modify_profile_finish () -
-
-
-

Types and Values

- -
-
-

Object Hierarchy

-
    GBoxed
-    ├── QmiMessageWdsModifyProfileInput
-    ╰── QmiMessageWdsModifyProfileOutput
-
-
-
-

Description

-
-
-

Functions

-
-

qmi_message_wds_modify_profile_input_new ()

-
QmiMessageWdsModifyProfileInput *
-qmi_message_wds_modify_profile_input_new
-                               (void);
-

Allocates a new QmiMessageWdsModifyProfileInput.

-
-

Returns

-

the newly created QmiMessageWdsModifyProfileInput. The returned value should be freed with qmi_message_wds_modify_profile_input_unref().

-
-

Since: 1.18

-
-
-
-

qmi_message_wds_modify_profile_input_ref ()

-
QmiMessageWdsModifyProfileInput *
-qmi_message_wds_modify_profile_input_ref
-                               (QmiMessageWdsModifyProfileInput *self);
-

Atomically increments the reference count of self - by one.

-
-

Parameters

-
----- - - - - - -

self

a QmiMessageWdsModifyProfileInput.

 
-
-
-

Returns

-

the new reference to self -.

-
-

Since: 1.18

-
-
-
-

qmi_message_wds_modify_profile_input_unref ()

-
void
-qmi_message_wds_modify_profile_input_unref
-                               (QmiMessageWdsModifyProfileInput *self);
-

Atomically decrements the reference count of self - by one. -If the reference count drops to 0, self - is completely disposed.

-
-

Parameters

-
----- - - - - - -

self

a QmiMessageWdsModifyProfileInput.

 
-
-

Since: 1.18

-
-
-
-

qmi_message_wds_modify_profile_input_get_lte_qos_parameters ()

-
gboolean
-qmi_message_wds_modify_profile_input_get_lte_qos_parameters
-                               (QmiMessageWdsModifyProfileInput *self,
-                                QmiWdsQosClassIdentifier *value_lte_qos_parameters_qos_class_identifier,
-                                guint32 *value_lte_qos_parameters_guaranteed_downlink_bitrate,
-                                guint32 *value_lte_qos_parameters_max_downlink_bitrate,
-                                guint32 *value_lte_qos_parameters_guaranteed_uplink_bitrate,
-                                guint32 *value_lte_qos_parameters_max_uplink_bitrate,
-                                GError **error);
-

Get the 'LTE QoS Parameters' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

self

a QmiMessageWdsModifyProfileInput.

 

value_lte_qos_parameters_qos_class_identifier

a placeholder for the output QmiWdsQosClassIdentifier, or NULL if not required.

 

value_lte_qos_parameters_guaranteed_downlink_bitrate

a placeholder for the output guint32, or NULL if not required.

 

value_lte_qos_parameters_max_downlink_bitrate

a placeholder for the output guint32, or NULL if not required.

 

value_lte_qos_parameters_guaranteed_uplink_bitrate

a placeholder for the output guint32, or NULL if not required.

 

value_lte_qos_parameters_max_uplink_bitrate

a placeholder for the output guint32, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.18

-
-
-
-

qmi_message_wds_modify_profile_input_set_lte_qos_parameters ()

-
gboolean
-qmi_message_wds_modify_profile_input_set_lte_qos_parameters
-                               (QmiMessageWdsModifyProfileInput *self,
-                                QmiWdsQosClassIdentifier value_lte_qos_parameters_qos_class_identifier,
-                                guint32 value_lte_qos_parameters_guaranteed_downlink_bitrate,
-                                guint32 value_lte_qos_parameters_max_downlink_bitrate,
-                                guint32 value_lte_qos_parameters_guaranteed_uplink_bitrate,
-                                guint32 value_lte_qos_parameters_max_uplink_bitrate,
-                                GError **error);
-

Set the 'LTE QoS Parameters' field in the message.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

self

a QmiMessageWdsModifyProfileInput.

 

value_lte_qos_parameters_qos_class_identifier

a QmiWdsQosClassIdentifier.

 

value_lte_qos_parameters_guaranteed_downlink_bitrate

a guint32.

 

value_lte_qos_parameters_max_downlink_bitrate

a guint32.

 

value_lte_qos_parameters_guaranteed_uplink_bitrate

a guint32.

 

value_lte_qos_parameters_max_uplink_bitrate

a guint32.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if value -was successfully set, FALSE otherwise.

-
-

Since: 1.18

-
-
-
-

qmi_message_wds_modify_profile_input_get_ipv6_secondary_dns_address_preference ()

-
gboolean
-qmi_message_wds_modify_profile_input_get_ipv6_secondary_dns_address_preference
-                               (QmiMessageWdsModifyProfileInput *self,
-                                GArray **value_ipv6_secondary_dns_address_preference,
-                                GError **error);
-

Get the 'IPv6 Secondary DNS Address Preference' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessageWdsModifyProfileInput.

 

value_ipv6_secondary_dns_address_preference

a placeholder for the output GArray of guint16 elements, or NULL if not required. Do not free it, it is owned by self -.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.18

-
-
-
-

qmi_message_wds_modify_profile_input_set_ipv6_secondary_dns_address_preference ()

-
gboolean
-qmi_message_wds_modify_profile_input_set_ipv6_secondary_dns_address_preference
-                               (QmiMessageWdsModifyProfileInput *self,
-                                GArray *value_ipv6_secondary_dns_address_preference,
-                                GError **error);
-

Set the 'IPv6 Secondary DNS Address Preference' field in the message.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessageWdsModifyProfileInput.

 

value_ipv6_secondary_dns_address_preference

a GArray of guint16 elements. A new reference to value_ipv6_secondary_dns_address_preference -will be taken.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if value -was successfully set, FALSE otherwise.

-
-

Since: 1.18

-
-
-
-

qmi_message_wds_modify_profile_input_get_ipv6_primary_dns_address_preference ()

-
gboolean
-qmi_message_wds_modify_profile_input_get_ipv6_primary_dns_address_preference
-                               (QmiMessageWdsModifyProfileInput *self,
-                                GArray **value_ipv6_primary_dns_address_preference,
-                                GError **error);
-

Get the 'IPv6 Primary DNS Address Preference' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessageWdsModifyProfileInput.

 

value_ipv6_primary_dns_address_preference

a placeholder for the output GArray of guint16 elements, or NULL if not required. Do not free it, it is owned by self -.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.18

-
-
-
-

qmi_message_wds_modify_profile_input_set_ipv6_primary_dns_address_preference ()

-
gboolean
-qmi_message_wds_modify_profile_input_set_ipv6_primary_dns_address_preference
-                               (QmiMessageWdsModifyProfileInput *self,
-                                GArray *value_ipv6_primary_dns_address_preference,
-                                GError **error);
-

Set the 'IPv6 Primary DNS Address Preference' field in the message.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessageWdsModifyProfileInput.

 

value_ipv6_primary_dns_address_preference

a GArray of guint16 elements. A new reference to value_ipv6_primary_dns_address_preference -will be taken.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if value -was successfully set, FALSE otherwise.

-
-

Since: 1.18

-
-
-
-

qmi_message_wds_modify_profile_input_get_umts_minimum_qos_with_signaling_indication_flag ()

-
gboolean
-qmi_message_wds_modify_profile_input_get_umts_minimum_qos_with_signaling_indication_flag
-                               (QmiMessageWdsModifyProfileInput *self,
-                                QmiWdsTrafficClass *value_umts_minimum_qos_with_signaling_indication_flag_traffic_class,
-                                guint32 *value_umts_minimum_qos_with_signaling_indication_flag_max_uplink_bitrate,
-                                guint32 *value_umts_minimum_qos_with_signaling_indication_flag_max_downlink_bitrate,
-                                guint32 *value_umts_minimum_qos_with_signaling_indication_flag_guaranteed_uplink_bitrate,
-                                guint32 *value_umts_minimum_qos_with_signaling_indication_flag_guaranteed_downlink_bitrate,
-                                QmiWdsDeliveryOrder *value_umts_minimum_qos_with_signaling_indication_flag_qos_delivery_order,
-                                guint32 *value_umts_minimum_qos_with_signaling_indication_flag_maximum_sdu_size,
-                                QmiWdsSduErrorRatio *value_umts_minimum_qos_with_signaling_indication_flag_sdu_error_ratio,
-                                QmiWdsSduResidualBitErrorRatio *value_umts_minimum_qos_with_signaling_indication_flag_residual_bit_error_ratio,
-                                QmiWdsSduErroneousDelivery *value_umts_minimum_qos_with_signaling_indication_flag_delivery_erroneous_sdu,
-                                guint32 *value_umts_minimum_qos_with_signaling_indication_flag_transfer_delay,
-                                guint32 *value_umts_minimum_qos_with_signaling_indication_flag_traffic_handling_priority,
-                                gint8 *value_umts_minimum_qos_with_signaling_indication_flag_signaling_indication,
-                                GError **error);
-

Get the 'UMTS Minimum QoS With Signaling Indication Flag' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

self

a QmiMessageWdsModifyProfileInput.

 

value_umts_minimum_qos_with_signaling_indication_flag_traffic_class

a placeholder for the output QmiWdsTrafficClass, or NULL if not required.

 

value_umts_minimum_qos_with_signaling_indication_flag_max_uplink_bitrate

a placeholder for the output guint32, or NULL if not required.

 

value_umts_minimum_qos_with_signaling_indication_flag_max_downlink_bitrate

a placeholder for the output guint32, or NULL if not required.

 

value_umts_minimum_qos_with_signaling_indication_flag_guaranteed_uplink_bitrate

a placeholder for the output guint32, or NULL if not required.

 

value_umts_minimum_qos_with_signaling_indication_flag_guaranteed_downlink_bitrate

a placeholder for the output guint32, or NULL if not required.

 

value_umts_minimum_qos_with_signaling_indication_flag_qos_delivery_order

a placeholder for the output QmiWdsDeliveryOrder, or NULL if not required.

 

value_umts_minimum_qos_with_signaling_indication_flag_maximum_sdu_size

a placeholder for the output guint32, or NULL if not required.

 

value_umts_minimum_qos_with_signaling_indication_flag_sdu_error_ratio

a placeholder for the output QmiWdsSduErrorRatio, or NULL if not required.

 

value_umts_minimum_qos_with_signaling_indication_flag_residual_bit_error_ratio

a placeholder for the output QmiWdsSduResidualBitErrorRatio, or NULL if not required.

 

value_umts_minimum_qos_with_signaling_indication_flag_delivery_erroneous_sdu

a placeholder for the output QmiWdsSduErroneousDelivery, or NULL if not required.

 

value_umts_minimum_qos_with_signaling_indication_flag_transfer_delay

a placeholder for the output guint32, or NULL if not required.

 

value_umts_minimum_qos_with_signaling_indication_flag_traffic_handling_priority

a placeholder for the output guint32, or NULL if not required.

 

value_umts_minimum_qos_with_signaling_indication_flag_signaling_indication

a placeholder for the output gint8, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.18

-
-
-
-

qmi_message_wds_modify_profile_input_set_umts_minimum_qos_with_signaling_indication_flag ()

-
gboolean
-qmi_message_wds_modify_profile_input_set_umts_minimum_qos_with_signaling_indication_flag
-                               (QmiMessageWdsModifyProfileInput *self,
-                                QmiWdsTrafficClass value_umts_minimum_qos_with_signaling_indication_flag_traffic_class,
-                                guint32 value_umts_minimum_qos_with_signaling_indication_flag_max_uplink_bitrate,
-                                guint32 value_umts_minimum_qos_with_signaling_indication_flag_max_downlink_bitrate,
-                                guint32 value_umts_minimum_qos_with_signaling_indication_flag_guaranteed_uplink_bitrate,
-                                guint32 value_umts_minimum_qos_with_signaling_indication_flag_guaranteed_downlink_bitrate,
-                                QmiWdsDeliveryOrder value_umts_minimum_qos_with_signaling_indication_flag_qos_delivery_order,
-                                guint32 value_umts_minimum_qos_with_signaling_indication_flag_maximum_sdu_size,
-                                QmiWdsSduErrorRatio value_umts_minimum_qos_with_signaling_indication_flag_sdu_error_ratio,
-                                QmiWdsSduResidualBitErrorRatio value_umts_minimum_qos_with_signaling_indication_flag_residual_bit_error_ratio,
-                                QmiWdsSduErroneousDelivery value_umts_minimum_qos_with_signaling_indication_flag_delivery_erroneous_sdu,
-                                guint32 value_umts_minimum_qos_with_signaling_indication_flag_transfer_delay,
-                                guint32 value_umts_minimum_qos_with_signaling_indication_flag_traffic_handling_priority,
-                                gint8 value_umts_minimum_qos_with_signaling_indication_flag_signaling_indication,
-                                GError **error);
-

Set the 'UMTS Minimum QoS With Signaling Indication Flag' field in the message.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

self

a QmiMessageWdsModifyProfileInput.

 

value_umts_minimum_qos_with_signaling_indication_flag_traffic_class

a QmiWdsTrafficClass.

 

value_umts_minimum_qos_with_signaling_indication_flag_max_uplink_bitrate

a guint32.

 

value_umts_minimum_qos_with_signaling_indication_flag_max_downlink_bitrate

a guint32.

 

value_umts_minimum_qos_with_signaling_indication_flag_guaranteed_uplink_bitrate

a guint32.

 

value_umts_minimum_qos_with_signaling_indication_flag_guaranteed_downlink_bitrate

a guint32.

 

value_umts_minimum_qos_with_signaling_indication_flag_qos_delivery_order

a QmiWdsDeliveryOrder.

 

value_umts_minimum_qos_with_signaling_indication_flag_maximum_sdu_size

a guint32.

 

value_umts_minimum_qos_with_signaling_indication_flag_sdu_error_ratio

a QmiWdsSduErrorRatio.

 

value_umts_minimum_qos_with_signaling_indication_flag_residual_bit_error_ratio

a QmiWdsSduResidualBitErrorRatio.

 

value_umts_minimum_qos_with_signaling_indication_flag_delivery_erroneous_sdu

a QmiWdsSduErroneousDelivery.

 

value_umts_minimum_qos_with_signaling_indication_flag_transfer_delay

a guint32.

 

value_umts_minimum_qos_with_signaling_indication_flag_traffic_handling_priority

a guint32.

 

value_umts_minimum_qos_with_signaling_indication_flag_signaling_indication

a gint8.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if value -was successfully set, FALSE otherwise.

-
-

Since: 1.18

-
-
-
-

qmi_message_wds_modify_profile_input_get_umts_requested_qos_with_signaling_indication_flag ()

-
gboolean
-qmi_message_wds_modify_profile_input_get_umts_requested_qos_with_signaling_indication_flag
-                               (QmiMessageWdsModifyProfileInput *self,
-                                QmiWdsTrafficClass *value_umts_requested_qos_with_signaling_indication_flag_traffic_class,
-                                guint32 *value_umts_requested_qos_with_signaling_indication_flag_max_uplink_bitrate,
-                                guint32 *value_umts_requested_qos_with_signaling_indication_flag_max_downlink_bitrate,
-                                guint32 *value_umts_requested_qos_with_signaling_indication_flag_guaranteed_uplink_bitrate,
-                                guint32 *value_umts_requested_qos_with_signaling_indication_flag_guaranteed_downlink_bitrate,
-                                QmiWdsDeliveryOrder *value_umts_requested_qos_with_signaling_indication_flag_qos_delivery_order,
-                                guint32 *value_umts_requested_qos_with_signaling_indication_flag_maximum_sdu_size,
-                                QmiWdsSduErrorRatio *value_umts_requested_qos_with_signaling_indication_flag_sdu_error_ratio,
-                                QmiWdsSduResidualBitErrorRatio *value_umts_requested_qos_with_signaling_indication_flag_residual_bit_error_ratio,
-                                QmiWdsSduErroneousDelivery *value_umts_requested_qos_with_signaling_indication_flag_delivery_erroneous_sdu,
-                                guint32 *value_umts_requested_qos_with_signaling_indication_flag_transfer_delay,
-                                guint32 *value_umts_requested_qos_with_signaling_indication_flag_traffic_handling_priority,
-                                gint8 *value_umts_requested_qos_with_signaling_indication_flag_signaling_indication,
-                                GError **error);
-

Get the 'UMTS Requested QoS With Signaling Indication Flag' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

self

a QmiMessageWdsModifyProfileInput.

 

value_umts_requested_qos_with_signaling_indication_flag_traffic_class

a placeholder for the output QmiWdsTrafficClass, or NULL if not required.

 

value_umts_requested_qos_with_signaling_indication_flag_max_uplink_bitrate

a placeholder for the output guint32, or NULL if not required.

 

value_umts_requested_qos_with_signaling_indication_flag_max_downlink_bitrate

a placeholder for the output guint32, or NULL if not required.

 

value_umts_requested_qos_with_signaling_indication_flag_guaranteed_uplink_bitrate

a placeholder for the output guint32, or NULL if not required.

 

value_umts_requested_qos_with_signaling_indication_flag_guaranteed_downlink_bitrate

a placeholder for the output guint32, or NULL if not required.

 

value_umts_requested_qos_with_signaling_indication_flag_qos_delivery_order

a placeholder for the output QmiWdsDeliveryOrder, or NULL if not required.

 

value_umts_requested_qos_with_signaling_indication_flag_maximum_sdu_size

a placeholder for the output guint32, or NULL if not required.

 

value_umts_requested_qos_with_signaling_indication_flag_sdu_error_ratio

a placeholder for the output QmiWdsSduErrorRatio, or NULL if not required.

 

value_umts_requested_qos_with_signaling_indication_flag_residual_bit_error_ratio

a placeholder for the output QmiWdsSduResidualBitErrorRatio, or NULL if not required.

 

value_umts_requested_qos_with_signaling_indication_flag_delivery_erroneous_sdu

a placeholder for the output QmiWdsSduErroneousDelivery, or NULL if not required.

 

value_umts_requested_qos_with_signaling_indication_flag_transfer_delay

a placeholder for the output guint32, or NULL if not required.

 

value_umts_requested_qos_with_signaling_indication_flag_traffic_handling_priority

a placeholder for the output guint32, or NULL if not required.

 

value_umts_requested_qos_with_signaling_indication_flag_signaling_indication

a placeholder for the output gint8, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.18

-
-
-
-

qmi_message_wds_modify_profile_input_set_umts_requested_qos_with_signaling_indication_flag ()

-
gboolean
-qmi_message_wds_modify_profile_input_set_umts_requested_qos_with_signaling_indication_flag
-                               (QmiMessageWdsModifyProfileInput *self,
-                                QmiWdsTrafficClass value_umts_requested_qos_with_signaling_indication_flag_traffic_class,
-                                guint32 value_umts_requested_qos_with_signaling_indication_flag_max_uplink_bitrate,
-                                guint32 value_umts_requested_qos_with_signaling_indication_flag_max_downlink_bitrate,
-                                guint32 value_umts_requested_qos_with_signaling_indication_flag_guaranteed_uplink_bitrate,
-                                guint32 value_umts_requested_qos_with_signaling_indication_flag_guaranteed_downlink_bitrate,
-                                QmiWdsDeliveryOrder value_umts_requested_qos_with_signaling_indication_flag_qos_delivery_order,
-                                guint32 value_umts_requested_qos_with_signaling_indication_flag_maximum_sdu_size,
-                                QmiWdsSduErrorRatio value_umts_requested_qos_with_signaling_indication_flag_sdu_error_ratio,
-                                QmiWdsSduResidualBitErrorRatio value_umts_requested_qos_with_signaling_indication_flag_residual_bit_error_ratio,
-                                QmiWdsSduErroneousDelivery value_umts_requested_qos_with_signaling_indication_flag_delivery_erroneous_sdu,
-                                guint32 value_umts_requested_qos_with_signaling_indication_flag_transfer_delay,
-                                guint32 value_umts_requested_qos_with_signaling_indication_flag_traffic_handling_priority,
-                                gint8 value_umts_requested_qos_with_signaling_indication_flag_signaling_indication,
-                                GError **error);
-

Set the 'UMTS Requested QoS With Signaling Indication Flag' field in the message.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

self

a QmiMessageWdsModifyProfileInput.

 

value_umts_requested_qos_with_signaling_indication_flag_traffic_class

a QmiWdsTrafficClass.

 

value_umts_requested_qos_with_signaling_indication_flag_max_uplink_bitrate

a guint32.

 

value_umts_requested_qos_with_signaling_indication_flag_max_downlink_bitrate

a guint32.

 

value_umts_requested_qos_with_signaling_indication_flag_guaranteed_uplink_bitrate

a guint32.

 

value_umts_requested_qos_with_signaling_indication_flag_guaranteed_downlink_bitrate

a guint32.

 

value_umts_requested_qos_with_signaling_indication_flag_qos_delivery_order

a QmiWdsDeliveryOrder.

 

value_umts_requested_qos_with_signaling_indication_flag_maximum_sdu_size

a guint32.

 

value_umts_requested_qos_with_signaling_indication_flag_sdu_error_ratio

a QmiWdsSduErrorRatio.

 

value_umts_requested_qos_with_signaling_indication_flag_residual_bit_error_ratio

a QmiWdsSduResidualBitErrorRatio.

 

value_umts_requested_qos_with_signaling_indication_flag_delivery_erroneous_sdu

a QmiWdsSduErroneousDelivery.

 

value_umts_requested_qos_with_signaling_indication_flag_transfer_delay

a guint32.

 

value_umts_requested_qos_with_signaling_indication_flag_traffic_handling_priority

a guint32.

 

value_umts_requested_qos_with_signaling_indication_flag_signaling_indication

a gint8.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if value -was successfully set, FALSE otherwise.

-
-

Since: 1.18

-
-
-
-

qmi_message_wds_modify_profile_input_get_ipv6_address_preference ()

-
gboolean
-qmi_message_wds_modify_profile_input_get_ipv6_address_preference
-                               (QmiMessageWdsModifyProfileInput *self,
-                                GArray **value_ipv6_address_preference_address,
-                                GError **error);
-

Get the 'IPv6 Address Preference' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessageWdsModifyProfileInput.

 

value_ipv6_address_preference_address

a placeholder for the output GArray of guint16 elements, or NULL if not required. Do not free it, it is owned by self -.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.18

-
-
-
-

qmi_message_wds_modify_profile_input_set_ipv6_address_preference ()

-
gboolean
-qmi_message_wds_modify_profile_input_set_ipv6_address_preference
-                               (QmiMessageWdsModifyProfileInput *self,
-                                GArray *value_ipv6_address_preference_address,
-                                GError **error);
-

Set the 'IPv6 Address Preference' field in the message.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessageWdsModifyProfileInput.

 

value_ipv6_address_preference_address

a GArray of guint16 elements. A new reference to value_ipv6_address_preference_address -will be taken.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if value -was successfully set, FALSE otherwise.

-
-

Since: 1.18

-
-
-
-

qmi_message_wds_modify_profile_input_get_pdp_context_primary_id ()

-
gboolean
-qmi_message_wds_modify_profile_input_get_pdp_context_primary_id
-                               (QmiMessageWdsModifyProfileInput *self,
-                                guint8 *value_pdp_context_primary_id,
-                                GError **error);
-

Get the 'PDP Context Primary ID' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessageWdsModifyProfileInput.

 

value_pdp_context_primary_id

a placeholder for the output guint8, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.18

-
-
-
-

qmi_message_wds_modify_profile_input_set_pdp_context_primary_id ()

-
gboolean
-qmi_message_wds_modify_profile_input_set_pdp_context_primary_id
-                               (QmiMessageWdsModifyProfileInput *self,
-                                guint8 value_pdp_context_primary_id,
-                                GError **error);
-

Set the 'PDP Context Primary ID' field in the message.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessageWdsModifyProfileInput.

 

value_pdp_context_primary_id

a guint8.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if value -was successfully set, FALSE otherwise.

-
-

Since: 1.18

-
-
-
-

qmi_message_wds_modify_profile_input_get_pdp_context_secondary_flag ()

-
gboolean
-qmi_message_wds_modify_profile_input_get_pdp_context_secondary_flag
-                               (QmiMessageWdsModifyProfileInput *self,
-                                gboolean *value_pdp_context_secondary_flag,
-                                GError **error);
-

Get the 'PDP Context Secondary Flag' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessageWdsModifyProfileInput.

 

value_pdp_context_secondary_flag

a placeholder for the output gboolean, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.18

-
-
-
-

qmi_message_wds_modify_profile_input_set_pdp_context_secondary_flag ()

-
gboolean
-qmi_message_wds_modify_profile_input_set_pdp_context_secondary_flag
-                               (QmiMessageWdsModifyProfileInput *self,
-                                gboolean value_pdp_context_secondary_flag,
-                                GError **error);
-

Set the 'PDP Context Secondary Flag' field in the message.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessageWdsModifyProfileInput.

 

value_pdp_context_secondary_flag

a gboolean.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if value -was successfully set, FALSE otherwise.

-
-

Since: 1.18

-
-
-
-

qmi_message_wds_modify_profile_input_get_pdp_context_number ()

-
gboolean
-qmi_message_wds_modify_profile_input_get_pdp_context_number
-                               (QmiMessageWdsModifyProfileInput *self,
-                                guint8 *value_pdp_context_number,
-                                GError **error);
-

Get the 'PDP Context Number' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessageWdsModifyProfileInput.

 

value_pdp_context_number

a placeholder for the output guint8, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.18

-
-
-
-

qmi_message_wds_modify_profile_input_set_pdp_context_number ()

-
gboolean
-qmi_message_wds_modify_profile_input_set_pdp_context_number
-                               (QmiMessageWdsModifyProfileInput *self,
-                                guint8 value_pdp_context_number,
-                                GError **error);
-

Set the 'PDP Context Number' field in the message.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessageWdsModifyProfileInput.

 

value_pdp_context_number

a guint8.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if value -was successfully set, FALSE otherwise.

-
-

Since: 1.18

-
-
-
-

qmi_message_wds_modify_profile_input_get_imcn_flag ()

-
gboolean
-qmi_message_wds_modify_profile_input_get_imcn_flag
-                               (QmiMessageWdsModifyProfileInput *self,
-                                gboolean *value_imcn_flag,
-                                GError **error);
-

Get the 'IMCN Flag' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessageWdsModifyProfileInput.

 

value_imcn_flag

a placeholder for the output gboolean, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.18

-
-
-
-

qmi_message_wds_modify_profile_input_set_imcn_flag ()

-
gboolean
-qmi_message_wds_modify_profile_input_set_imcn_flag
-                               (QmiMessageWdsModifyProfileInput *self,
-                                gboolean value_imcn_flag,
-                                GError **error);
-

Set the 'IMCN Flag' field in the message.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessageWdsModifyProfileInput.

 

value_imcn_flag

a gboolean.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if value -was successfully set, FALSE otherwise.

-
-

Since: 1.18

-
-
-
-

qmi_message_wds_modify_profile_input_get_pcscf_address_using_dhcp ()

-
gboolean
-qmi_message_wds_modify_profile_input_get_pcscf_address_using_dhcp
-                               (QmiMessageWdsModifyProfileInput *self,
-                                gboolean *value_pcscf_address_using_dhcp,
-                                GError **error);
-

Get the 'PCSCF Address Using DHCP' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessageWdsModifyProfileInput.

 

value_pcscf_address_using_dhcp

a placeholder for the output gboolean, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.18

-
-
-
-

qmi_message_wds_modify_profile_input_set_pcscf_address_using_dhcp ()

-
gboolean
-qmi_message_wds_modify_profile_input_set_pcscf_address_using_dhcp
-                               (QmiMessageWdsModifyProfileInput *self,
-                                gboolean value_pcscf_address_using_dhcp,
-                                GError **error);
-

Set the 'PCSCF Address Using DHCP' field in the message.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessageWdsModifyProfileInput.

 

value_pcscf_address_using_dhcp

a gboolean.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if value -was successfully set, FALSE otherwise.

-
-

Since: 1.18

-
-
-
-

qmi_message_wds_modify_profile_input_get_pcscf_address_using_pco ()

-
gboolean
-qmi_message_wds_modify_profile_input_get_pcscf_address_using_pco
-                               (QmiMessageWdsModifyProfileInput *self,
-                                gboolean *value_pcscf_address_using_pco,
-                                GError **error);
-

Get the 'PCSCF Address Using PCO' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessageWdsModifyProfileInput.

 

value_pcscf_address_using_pco

a placeholder for the output gboolean, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.18

-
-
-
-

qmi_message_wds_modify_profile_input_set_pcscf_address_using_pco ()

-
gboolean
-qmi_message_wds_modify_profile_input_set_pcscf_address_using_pco
-                               (QmiMessageWdsModifyProfileInput *self,
-                                gboolean value_pcscf_address_using_pco,
-                                GError **error);
-

Set the 'PCSCF Address Using PCO' field in the message.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessageWdsModifyProfileInput.

 

value_pcscf_address_using_pco

a gboolean.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if value -was successfully set, FALSE otherwise.

-
-

Since: 1.18

-
-
-
-

qmi_message_wds_modify_profile_input_get_ipv4_address_preference ()

-
gboolean
-qmi_message_wds_modify_profile_input_get_ipv4_address_preference
-                               (QmiMessageWdsModifyProfileInput *self,
-                                guint32 *value_ipv4_address_preference,
-                                GError **error);
-

Get the 'IPv4 Address Preference' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessageWdsModifyProfileInput.

 

value_ipv4_address_preference

a placeholder for the output guint32, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.18

-
-
-
-

qmi_message_wds_modify_profile_input_set_ipv4_address_preference ()

-
gboolean
-qmi_message_wds_modify_profile_input_set_ipv4_address_preference
-                               (QmiMessageWdsModifyProfileInput *self,
-                                guint32 value_ipv4_address_preference,
-                                GError **error);
-

Set the 'IPv4 Address Preference' field in the message.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessageWdsModifyProfileInput.

 

value_ipv4_address_preference

a guint32.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if value -was successfully set, FALSE otherwise.

-
-

Since: 1.18

-
-
-
-

qmi_message_wds_modify_profile_input_get_authentication ()

-
gboolean
-qmi_message_wds_modify_profile_input_get_authentication
-                               (QmiMessageWdsModifyProfileInput *self,
-                                QmiWdsAuthentication *value_authentication,
-                                GError **error);
-

Get the 'Authentication' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessageWdsModifyProfileInput.

 

value_authentication

a placeholder for the output QmiWdsAuthentication, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.18

-
-
-
-

qmi_message_wds_modify_profile_input_set_authentication ()

-
gboolean
-qmi_message_wds_modify_profile_input_set_authentication
-                               (QmiMessageWdsModifyProfileInput *self,
-                                QmiWdsAuthentication value_authentication,
-                                GError **error);
-

Set the 'Authentication' field in the message.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessageWdsModifyProfileInput.

 

value_authentication

a QmiWdsAuthentication.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if value -was successfully set, FALSE otherwise.

-
-

Since: 1.18

-
-
-
-

qmi_message_wds_modify_profile_input_get_password ()

-
gboolean
-qmi_message_wds_modify_profile_input_get_password
-                               (QmiMessageWdsModifyProfileInput *self,
-                                const gchar **value_password,
-                                GError **error);
-

Get the 'Password' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessageWdsModifyProfileInput.

 

value_password

a placeholder for the output constant string, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.18

-
-
-
-

qmi_message_wds_modify_profile_input_set_password ()

-
gboolean
-qmi_message_wds_modify_profile_input_set_password
-                               (QmiMessageWdsModifyProfileInput *self,
-                                const gchar *value_password,
-                                GError **error);
-

Set the 'Password' field in the message.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessageWdsModifyProfileInput.

 

value_password

a constant string.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if value -was successfully set, FALSE otherwise.

-
-

Since: 1.18

-
-
-
-

qmi_message_wds_modify_profile_input_get_username ()

-
gboolean
-qmi_message_wds_modify_profile_input_get_username
-                               (QmiMessageWdsModifyProfileInput *self,
-                                const gchar **value_username,
-                                GError **error);
-

Get the 'Username' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessageWdsModifyProfileInput.

 

value_username

a placeholder for the output constant string, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.18

-
-
-
-

qmi_message_wds_modify_profile_input_set_username ()

-
gboolean
-qmi_message_wds_modify_profile_input_set_username
-                               (QmiMessageWdsModifyProfileInput *self,
-                                const gchar *value_username,
-                                GError **error);
-

Set the 'Username' field in the message.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessageWdsModifyProfileInput.

 

value_username

a constant string.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if value -was successfully set, FALSE otherwise.

-
-

Since: 1.18

-
-
-
-

qmi_message_wds_modify_profile_input_get_gprs_minimum_qos ()

-
gboolean
-qmi_message_wds_modify_profile_input_get_gprs_minimum_qos
-                               (QmiMessageWdsModifyProfileInput *self,
-                                guint32 *value_gprs_minimum_qos_precedence_class,
-                                guint32 *value_gprs_minimum_qos_delay_class,
-                                guint32 *value_gprs_minimum_qos_reliability_class,
-                                guint32 *value_gprs_minimum_qos_peak_throughput_class,
-                                guint32 *value_gprs_minimum_qos_mean_throughput_class,
-                                GError **error);
-

Get the 'GPRS Minimum QoS' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

self

a QmiMessageWdsModifyProfileInput.

 

value_gprs_minimum_qos_precedence_class

a placeholder for the output guint32, or NULL if not required.

 

value_gprs_minimum_qos_delay_class

a placeholder for the output guint32, or NULL if not required.

 

value_gprs_minimum_qos_reliability_class

a placeholder for the output guint32, or NULL if not required.

 

value_gprs_minimum_qos_peak_throughput_class

a placeholder for the output guint32, or NULL if not required.

 

value_gprs_minimum_qos_mean_throughput_class

a placeholder for the output guint32, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.18

-
-
-
-

qmi_message_wds_modify_profile_input_set_gprs_minimum_qos ()

-
gboolean
-qmi_message_wds_modify_profile_input_set_gprs_minimum_qos
-                               (QmiMessageWdsModifyProfileInput *self,
-                                guint32 value_gprs_minimum_qos_precedence_class,
-                                guint32 value_gprs_minimum_qos_delay_class,
-                                guint32 value_gprs_minimum_qos_reliability_class,
-                                guint32 value_gprs_minimum_qos_peak_throughput_class,
-                                guint32 value_gprs_minimum_qos_mean_throughput_class,
-                                GError **error);
-

Set the 'GPRS Minimum QoS' field in the message.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

self

a QmiMessageWdsModifyProfileInput.

 

value_gprs_minimum_qos_precedence_class

a guint32.

 

value_gprs_minimum_qos_delay_class

a guint32.

 

value_gprs_minimum_qos_reliability_class

a guint32.

 

value_gprs_minimum_qos_peak_throughput_class

a guint32.

 

value_gprs_minimum_qos_mean_throughput_class

a guint32.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if value -was successfully set, FALSE otherwise.

-
-

Since: 1.18

-
-
-
-

qmi_message_wds_modify_profile_input_get_gprs_requested_qos ()

-
gboolean
-qmi_message_wds_modify_profile_input_get_gprs_requested_qos
-                               (QmiMessageWdsModifyProfileInput *self,
-                                guint32 *value_gprs_requested_qos_precedence_class,
-                                guint32 *value_gprs_requested_qos_delay_class,
-                                guint32 *value_gprs_requested_qos_reliability_class,
-                                guint32 *value_gprs_requested_qos_peak_throughput_class,
-                                guint32 *value_gprs_requested_qos_mean_throughput_class,
-                                GError **error);
-

Get the 'GPRS Requested QoS' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

self

a QmiMessageWdsModifyProfileInput.

 

value_gprs_requested_qos_precedence_class

a placeholder for the output guint32, or NULL if not required.

 

value_gprs_requested_qos_delay_class

a placeholder for the output guint32, or NULL if not required.

 

value_gprs_requested_qos_reliability_class

a placeholder for the output guint32, or NULL if not required.

 

value_gprs_requested_qos_peak_throughput_class

a placeholder for the output guint32, or NULL if not required.

 

value_gprs_requested_qos_mean_throughput_class

a placeholder for the output guint32, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.18

-
-
-
-

qmi_message_wds_modify_profile_input_set_gprs_requested_qos ()

-
gboolean
-qmi_message_wds_modify_profile_input_set_gprs_requested_qos
-                               (QmiMessageWdsModifyProfileInput *self,
-                                guint32 value_gprs_requested_qos_precedence_class,
-                                guint32 value_gprs_requested_qos_delay_class,
-                                guint32 value_gprs_requested_qos_reliability_class,
-                                guint32 value_gprs_requested_qos_peak_throughput_class,
-                                guint32 value_gprs_requested_qos_mean_throughput_class,
-                                GError **error);
-

Set the 'GPRS Requested QoS' field in the message.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

self

a QmiMessageWdsModifyProfileInput.

 

value_gprs_requested_qos_precedence_class

a guint32.

 

value_gprs_requested_qos_delay_class

a guint32.

 

value_gprs_requested_qos_reliability_class

a guint32.

 

value_gprs_requested_qos_peak_throughput_class

a guint32.

 

value_gprs_requested_qos_mean_throughput_class

a guint32.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if value -was successfully set, FALSE otherwise.

-
-

Since: 1.18

-
-
-
-

qmi_message_wds_modify_profile_input_get_umts_minimum_qos ()

-
gboolean
-qmi_message_wds_modify_profile_input_get_umts_minimum_qos
-                               (QmiMessageWdsModifyProfileInput *self,
-                                QmiWdsTrafficClass *value_umts_minimum_qos_traffic_class,
-                                guint32 *value_umts_minimum_qos_max_uplink_bitrate,
-                                guint32 *value_umts_minimum_qos_max_downlink_bitrate,
-                                guint32 *value_umts_minimum_qos_guaranteed_uplink_bitrate,
-                                guint32 *value_umts_minimum_qos_guaranteed_downlink_bitrate,
-                                QmiWdsDeliveryOrder *value_umts_minimum_qos_qos_delivery_order,
-                                guint32 *value_umts_minimum_qos_maximum_sdu_size,
-                                QmiWdsSduErrorRatio *value_umts_minimum_qos_sdu_error_ratio,
-                                QmiWdsSduResidualBitErrorRatio *value_umts_minimum_qos_residual_bit_error_ratio,
-                                QmiWdsSduErroneousDelivery *value_umts_minimum_qos_delivery_erroneous_sdu,
-                                guint32 *value_umts_minimum_qos_transfer_delay,
-                                guint32 *value_umts_minimum_qos_traffic_handling_priority,
-                                GError **error);
-

Get the 'UMTS Minimum QoS' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

self

a QmiMessageWdsModifyProfileInput.

 

value_umts_minimum_qos_traffic_class

a placeholder for the output QmiWdsTrafficClass, or NULL if not required.

 

value_umts_minimum_qos_max_uplink_bitrate

a placeholder for the output guint32, or NULL if not required.

 

value_umts_minimum_qos_max_downlink_bitrate

a placeholder for the output guint32, or NULL if not required.

 

value_umts_minimum_qos_guaranteed_uplink_bitrate

a placeholder for the output guint32, or NULL if not required.

 

value_umts_minimum_qos_guaranteed_downlink_bitrate

a placeholder for the output guint32, or NULL if not required.

 

value_umts_minimum_qos_qos_delivery_order

a placeholder for the output QmiWdsDeliveryOrder, or NULL if not required.

 

value_umts_minimum_qos_maximum_sdu_size

a placeholder for the output guint32, or NULL if not required.

 

value_umts_minimum_qos_sdu_error_ratio

a placeholder for the output QmiWdsSduErrorRatio, or NULL if not required.

 

value_umts_minimum_qos_residual_bit_error_ratio

a placeholder for the output QmiWdsSduResidualBitErrorRatio, or NULL if not required.

 

value_umts_minimum_qos_delivery_erroneous_sdu

a placeholder for the output QmiWdsSduErroneousDelivery, or NULL if not required.

 

value_umts_minimum_qos_transfer_delay

a placeholder for the output guint32, or NULL if not required.

 

value_umts_minimum_qos_traffic_handling_priority

a placeholder for the output guint32, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.18

-
-
-
-

qmi_message_wds_modify_profile_input_set_umts_minimum_qos ()

-
gboolean
-qmi_message_wds_modify_profile_input_set_umts_minimum_qos
-                               (QmiMessageWdsModifyProfileInput *self,
-                                QmiWdsTrafficClass value_umts_minimum_qos_traffic_class,
-                                guint32 value_umts_minimum_qos_max_uplink_bitrate,
-                                guint32 value_umts_minimum_qos_max_downlink_bitrate,
-                                guint32 value_umts_minimum_qos_guaranteed_uplink_bitrate,
-                                guint32 value_umts_minimum_qos_guaranteed_downlink_bitrate,
-                                QmiWdsDeliveryOrder value_umts_minimum_qos_qos_delivery_order,
-                                guint32 value_umts_minimum_qos_maximum_sdu_size,
-                                QmiWdsSduErrorRatio value_umts_minimum_qos_sdu_error_ratio,
-                                QmiWdsSduResidualBitErrorRatio value_umts_minimum_qos_residual_bit_error_ratio,
-                                QmiWdsSduErroneousDelivery value_umts_minimum_qos_delivery_erroneous_sdu,
-                                guint32 value_umts_minimum_qos_transfer_delay,
-                                guint32 value_umts_minimum_qos_traffic_handling_priority,
-                                GError **error);
-

Set the 'UMTS Minimum QoS' field in the message.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

self

a QmiMessageWdsModifyProfileInput.

 

value_umts_minimum_qos_traffic_class

a QmiWdsTrafficClass.

 

value_umts_minimum_qos_max_uplink_bitrate

a guint32.

 

value_umts_minimum_qos_max_downlink_bitrate

a guint32.

 

value_umts_minimum_qos_guaranteed_uplink_bitrate

a guint32.

 

value_umts_minimum_qos_guaranteed_downlink_bitrate

a guint32.

 

value_umts_minimum_qos_qos_delivery_order

a QmiWdsDeliveryOrder.

 

value_umts_minimum_qos_maximum_sdu_size

a guint32.

 

value_umts_minimum_qos_sdu_error_ratio

a QmiWdsSduErrorRatio.

 

value_umts_minimum_qos_residual_bit_error_ratio

a QmiWdsSduResidualBitErrorRatio.

 

value_umts_minimum_qos_delivery_erroneous_sdu

a QmiWdsSduErroneousDelivery.

 

value_umts_minimum_qos_transfer_delay

a guint32.

 

value_umts_minimum_qos_traffic_handling_priority

a guint32.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if value -was successfully set, FALSE otherwise.

-
-

Since: 1.18

-
-
-
-

qmi_message_wds_modify_profile_input_get_umts_requested_qos ()

-
gboolean
-qmi_message_wds_modify_profile_input_get_umts_requested_qos
-                               (QmiMessageWdsModifyProfileInput *self,
-                                QmiWdsTrafficClass *value_umts_requested_qos_traffic_class,
-                                guint32 *value_umts_requested_qos_max_uplink_bitrate,
-                                guint32 *value_umts_requested_qos_max_downlink_bitrate,
-                                guint32 *value_umts_requested_qos_guaranteed_uplink_bitrate,
-                                guint32 *value_umts_requested_qos_guaranteed_downlink_bitrate,
-                                QmiWdsDeliveryOrder *value_umts_requested_qos_qos_delivery_order,
-                                guint32 *value_umts_requested_qos_maximum_sdu_size,
-                                QmiWdsSduErrorRatio *value_umts_requested_qos_sdu_error_ratio,
-                                QmiWdsSduResidualBitErrorRatio *value_umts_requested_qos_residual_bit_error_ratio,
-                                QmiWdsSduErroneousDelivery *value_umts_requested_qos_delivery_erroneous_sdu,
-                                guint32 *value_umts_requested_qos_transfer_delay,
-                                guint32 *value_umts_requested_qos_traffic_handling_priority,
-                                GError **error);
-

Get the 'UMTS Requested QoS' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

self

a QmiMessageWdsModifyProfileInput.

 

value_umts_requested_qos_traffic_class

a placeholder for the output QmiWdsTrafficClass, or NULL if not required.

 

value_umts_requested_qos_max_uplink_bitrate

a placeholder for the output guint32, or NULL if not required.

 

value_umts_requested_qos_max_downlink_bitrate

a placeholder for the output guint32, or NULL if not required.

 

value_umts_requested_qos_guaranteed_uplink_bitrate

a placeholder for the output guint32, or NULL if not required.

 

value_umts_requested_qos_guaranteed_downlink_bitrate

a placeholder for the output guint32, or NULL if not required.

 

value_umts_requested_qos_qos_delivery_order

a placeholder for the output QmiWdsDeliveryOrder, or NULL if not required.

 

value_umts_requested_qos_maximum_sdu_size

a placeholder for the output guint32, or NULL if not required.

 

value_umts_requested_qos_sdu_error_ratio

a placeholder for the output QmiWdsSduErrorRatio, or NULL if not required.

 

value_umts_requested_qos_residual_bit_error_ratio

a placeholder for the output QmiWdsSduResidualBitErrorRatio, or NULL if not required.

 

value_umts_requested_qos_delivery_erroneous_sdu

a placeholder for the output QmiWdsSduErroneousDelivery, or NULL if not required.

 

value_umts_requested_qos_transfer_delay

a placeholder for the output guint32, or NULL if not required.

 

value_umts_requested_qos_traffic_handling_priority

a placeholder for the output guint32, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.18

-
-
-
-

qmi_message_wds_modify_profile_input_set_umts_requested_qos ()

-
gboolean
-qmi_message_wds_modify_profile_input_set_umts_requested_qos
-                               (QmiMessageWdsModifyProfileInput *self,
-                                QmiWdsTrafficClass value_umts_requested_qos_traffic_class,
-                                guint32 value_umts_requested_qos_max_uplink_bitrate,
-                                guint32 value_umts_requested_qos_max_downlink_bitrate,
-                                guint32 value_umts_requested_qos_guaranteed_uplink_bitrate,
-                                guint32 value_umts_requested_qos_guaranteed_downlink_bitrate,
-                                QmiWdsDeliveryOrder value_umts_requested_qos_qos_delivery_order,
-                                guint32 value_umts_requested_qos_maximum_sdu_size,
-                                QmiWdsSduErrorRatio value_umts_requested_qos_sdu_error_ratio,
-                                QmiWdsSduResidualBitErrorRatio value_umts_requested_qos_residual_bit_error_ratio,
-                                QmiWdsSduErroneousDelivery value_umts_requested_qos_delivery_erroneous_sdu,
-                                guint32 value_umts_requested_qos_transfer_delay,
-                                guint32 value_umts_requested_qos_traffic_handling_priority,
-                                GError **error);
-

Set the 'UMTS Requested QoS' field in the message.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

self

a QmiMessageWdsModifyProfileInput.

 

value_umts_requested_qos_traffic_class

a QmiWdsTrafficClass.

 

value_umts_requested_qos_max_uplink_bitrate

a guint32.

 

value_umts_requested_qos_max_downlink_bitrate

a guint32.

 

value_umts_requested_qos_guaranteed_uplink_bitrate

a guint32.

 

value_umts_requested_qos_guaranteed_downlink_bitrate

a guint32.

 

value_umts_requested_qos_qos_delivery_order

a QmiWdsDeliveryOrder.

 

value_umts_requested_qos_maximum_sdu_size

a guint32.

 

value_umts_requested_qos_sdu_error_ratio

a QmiWdsSduErrorRatio.

 

value_umts_requested_qos_residual_bit_error_ratio

a QmiWdsSduResidualBitErrorRatio.

 

value_umts_requested_qos_delivery_erroneous_sdu

a QmiWdsSduErroneousDelivery.

 

value_umts_requested_qos_transfer_delay

a guint32.

 

value_umts_requested_qos_traffic_handling_priority

a guint32.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if value -was successfully set, FALSE otherwise.

-
-

Since: 1.18

-
-
-
-

qmi_message_wds_modify_profile_input_get_secondary_ipv4_dns_address ()

-
gboolean
-qmi_message_wds_modify_profile_input_get_secondary_ipv4_dns_address
-                               (QmiMessageWdsModifyProfileInput *self,
-                                guint32 *value_secondary_ipv4_dns_address,
-                                GError **error);
-

Get the 'Secondary IPv4 DNS Address' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessageWdsModifyProfileInput.

 

value_secondary_ipv4_dns_address

a placeholder for the output guint32, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.18

-
-
-
-

qmi_message_wds_modify_profile_input_set_secondary_ipv4_dns_address ()

-
gboolean
-qmi_message_wds_modify_profile_input_set_secondary_ipv4_dns_address
-                               (QmiMessageWdsModifyProfileInput *self,
-                                guint32 value_secondary_ipv4_dns_address,
-                                GError **error);
-

Set the 'Secondary IPv4 DNS Address' field in the message.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessageWdsModifyProfileInput.

 

value_secondary_ipv4_dns_address

a guint32.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if value -was successfully set, FALSE otherwise.

-
-

Since: 1.18

-
-
-
-

qmi_message_wds_modify_profile_input_get_primary_ipv4_dns_address ()

-
gboolean
-qmi_message_wds_modify_profile_input_get_primary_ipv4_dns_address
-                               (QmiMessageWdsModifyProfileInput *self,
-                                guint32 *value_primary_ipv4_dns_address,
-                                GError **error);
-

Get the 'Primary IPv4 DNS Address' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessageWdsModifyProfileInput.

 

value_primary_ipv4_dns_address

a placeholder for the output guint32, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.18

-
-
-
-

qmi_message_wds_modify_profile_input_set_primary_ipv4_dns_address ()

-
gboolean
-qmi_message_wds_modify_profile_input_set_primary_ipv4_dns_address
-                               (QmiMessageWdsModifyProfileInput *self,
-                                guint32 value_primary_ipv4_dns_address,
-                                GError **error);
-

Set the 'Primary IPv4 DNS Address' field in the message.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessageWdsModifyProfileInput.

 

value_primary_ipv4_dns_address

a guint32.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if value -was successfully set, FALSE otherwise.

-
-

Since: 1.18

-
-
-
-

qmi_message_wds_modify_profile_input_get_apn_name ()

-
gboolean
-qmi_message_wds_modify_profile_input_get_apn_name
-                               (QmiMessageWdsModifyProfileInput *self,
-                                const gchar **value_apn_name,
-                                GError **error);
-

Get the 'APN Name' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessageWdsModifyProfileInput.

 

value_apn_name

a placeholder for the output constant string, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.18

-
-
-
-

qmi_message_wds_modify_profile_input_set_apn_name ()

-
gboolean
-qmi_message_wds_modify_profile_input_set_apn_name
-                               (QmiMessageWdsModifyProfileInput *self,
-                                const gchar *value_apn_name,
-                                GError **error);
-

Set the 'APN Name' field in the message.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessageWdsModifyProfileInput.

 

value_apn_name

a constant string.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if value -was successfully set, FALSE otherwise.

-
-

Since: 1.18

-
-
-
-

qmi_message_wds_modify_profile_input_get_pdp_data_compression_type ()

-
gboolean
-qmi_message_wds_modify_profile_input_get_pdp_data_compression_type
-                               (QmiMessageWdsModifyProfileInput *self,
-                                QmiWdsPdpDataCompressionType *value_pdp_data_compression_type,
-                                GError **error);
-

Get the 'PDP Data Compression Type' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessageWdsModifyProfileInput.

 

value_pdp_data_compression_type

a placeholder for the output QmiWdsPdpDataCompressionType, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.18

-
-
-
-

qmi_message_wds_modify_profile_input_set_pdp_data_compression_type ()

-
gboolean
-qmi_message_wds_modify_profile_input_set_pdp_data_compression_type
-                               (QmiMessageWdsModifyProfileInput *self,
-                                QmiWdsPdpDataCompressionType value_pdp_data_compression_type,
-                                GError **error);
-

Set the 'PDP Data Compression Type' field in the message.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessageWdsModifyProfileInput.

 

value_pdp_data_compression_type

a QmiWdsPdpDataCompressionType.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if value -was successfully set, FALSE otherwise.

-
-

Since: 1.18

-
-
-
-

qmi_message_wds_modify_profile_input_get_pdp_header_compression_type ()

-
gboolean
-qmi_message_wds_modify_profile_input_get_pdp_header_compression_type
-                               (QmiMessageWdsModifyProfileInput *self,
-                                QmiWdsPdpHeaderCompressionType *value_pdp_header_compression_type,
-                                GError **error);
-

Get the 'PDP Header Compression Type' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessageWdsModifyProfileInput.

 

value_pdp_header_compression_type

a placeholder for the output QmiWdsPdpHeaderCompressionType, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.18

-
-
-
-

qmi_message_wds_modify_profile_input_set_pdp_header_compression_type ()

-
gboolean
-qmi_message_wds_modify_profile_input_set_pdp_header_compression_type
-                               (QmiMessageWdsModifyProfileInput *self,
-                                QmiWdsPdpHeaderCompressionType value_pdp_header_compression_type,
-                                GError **error);
-

Set the 'PDP Header Compression Type' field in the message.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessageWdsModifyProfileInput.

 

value_pdp_header_compression_type

a QmiWdsPdpHeaderCompressionType.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if value -was successfully set, FALSE otherwise.

-
-

Since: 1.18

-
-
-
-

qmi_message_wds_modify_profile_input_get_pdp_type ()

-
gboolean
-qmi_message_wds_modify_profile_input_get_pdp_type
-                               (QmiMessageWdsModifyProfileInput *self,
-                                QmiWdsPdpType *value_pdp_type,
-                                GError **error);
-

Get the 'PDP Type' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessageWdsModifyProfileInput.

 

value_pdp_type

a placeholder for the output QmiWdsPdpType, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.18

-
-
-
-

qmi_message_wds_modify_profile_input_set_pdp_type ()

-
gboolean
-qmi_message_wds_modify_profile_input_set_pdp_type
-                               (QmiMessageWdsModifyProfileInput *self,
-                                QmiWdsPdpType value_pdp_type,
-                                GError **error);
-

Set the 'PDP Type' field in the message.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessageWdsModifyProfileInput.

 

value_pdp_type

a QmiWdsPdpType.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if value -was successfully set, FALSE otherwise.

-
-

Since: 1.18

-
-
-
-

qmi_message_wds_modify_profile_input_get_profile_name ()

-
gboolean
-qmi_message_wds_modify_profile_input_get_profile_name
-                               (QmiMessageWdsModifyProfileInput *self,
-                                const gchar **value_profile_name,
-                                GError **error);
-

Get the 'Profile Name' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessageWdsModifyProfileInput.

 

value_profile_name

a placeholder for the output constant string, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.18

-
-
-
-

qmi_message_wds_modify_profile_input_set_profile_name ()

-
gboolean
-qmi_message_wds_modify_profile_input_set_profile_name
-                               (QmiMessageWdsModifyProfileInput *self,
-                                const gchar *value_profile_name,
-                                GError **error);
-

Set the 'Profile Name' field in the message.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessageWdsModifyProfileInput.

 

value_profile_name

a constant string.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if value -was successfully set, FALSE otherwise.

-
-

Since: 1.18

-
-
-
-

qmi_message_wds_modify_profile_input_get_profile_identifier ()

-
gboolean
-qmi_message_wds_modify_profile_input_get_profile_identifier
-                               (QmiMessageWdsModifyProfileInput *self,
-                                QmiWdsProfileType *value_profile_identifier_profile_type,
-                                guint8 *value_profile_identifier_profile_index,
-                                GError **error);
-

Get the 'Profile Identifier' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - - - - - - -

self

a QmiMessageWdsModifyProfileInput.

 

value_profile_identifier_profile_type

a placeholder for the output QmiWdsProfileType, or NULL if not required.

 

value_profile_identifier_profile_index

a placeholder for the output guint8, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.18

-
-
-
-

qmi_message_wds_modify_profile_input_set_profile_identifier ()

-
gboolean
-qmi_message_wds_modify_profile_input_set_profile_identifier
-                               (QmiMessageWdsModifyProfileInput *self,
-                                QmiWdsProfileType value_profile_identifier_profile_type,
-                                guint8 value_profile_identifier_profile_index,
-                                GError **error);
-

Set the 'Profile Identifier' field in the message.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - - - - - - -

self

a QmiMessageWdsModifyProfileInput.

 

value_profile_identifier_profile_type

a QmiWdsProfileType.

 

value_profile_identifier_profile_index

a guint8.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if value -was successfully set, FALSE otherwise.

-
-

Since: 1.18

-
-
-
-

qmi_message_wds_modify_profile_output_ref ()

-
QmiMessageWdsModifyProfileOutput *
-qmi_message_wds_modify_profile_output_ref
-                               (QmiMessageWdsModifyProfileOutput *self);
-

Atomically increments the reference count of self - by one.

-
-

Parameters

-
----- - - - - - -

self

a QmiMessageWdsModifyProfileOutput.

 
-
-
-

Returns

-

the new reference to self -.

-
-

Since: 1.18

-
-
-
-

qmi_message_wds_modify_profile_output_unref ()

-
void
-qmi_message_wds_modify_profile_output_unref
-                               (QmiMessageWdsModifyProfileOutput *self);
-

Atomically decrements the reference count of self - by one. -If the reference count drops to 0, self - is completely disposed.

-
-

Parameters

-
----- - - - - - -

self

a QmiMessageWdsModifyProfileOutput.

 
-
-

Since: 1.18

-
-
-
-

qmi_message_wds_modify_profile_output_get_result ()

-
gboolean
-qmi_message_wds_modify_profile_output_get_result
-                               (QmiMessageWdsModifyProfileOutput *self,
-                                GError **error);
-

Get the result of the QMI operation.

-
-

Parameters

-
----- - - - - - - - - - - - - -

self

a QmiMessageWdsModifyProfileOutput.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the QMI operation succeeded, FALSE if error -is set.

-
-

Since: 1.18

-
-
-
-

qmi_message_wds_modify_profile_output_get_extended_error_code ()

-
gboolean
-qmi_message_wds_modify_profile_output_get_extended_error_code
-                               (QmiMessageWdsModifyProfileOutput *self,
-                                QmiWdsDsProfileError *value_extended_error_code,
-                                GError **error);
-

Get the 'Extended Error Code' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessageWdsModifyProfileOutput.

 

value_extended_error_code

a placeholder for the output QmiWdsDsProfileError, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.18

-
-
-
-

qmi_client_wds_modify_profile ()

-
void
-qmi_client_wds_modify_profile (QmiClientWds *self,
-                               QmiMessageWdsModifyProfileInput *input,
-                               guint timeout,
-                               GCancellable *cancellable,
-                               GAsyncReadyCallback callback,
-                               gpointer user_data);
-

Asynchronously sends a Modify Profile request to the device.

-

When the operation is finished, callback - will be invoked in the thread-default main loop of the thread you are calling this method from.

-

You can then call qmi_client_wds_modify_profile_finish() to get the result of the operation.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

self

a QmiClientWds.

 

input

a QmiMessageWdsModifyProfileInput.

 

timeout

maximum time to wait for the method to complete, in seconds.

 

cancellable

a GCancellable or NULL.

 

callback

a GAsyncReadyCallback to call when the request is satisfied.

 

user_data

user data to pass to callback -.

 
-
-

Since: 1.18

-
-
-
-

qmi_client_wds_modify_profile_finish ()

-
QmiMessageWdsModifyProfileOutput *
-qmi_client_wds_modify_profile_finish (QmiClientWds *self,
-                                      GAsyncResult *res,
-                                      GError **error);
-

Finishes an async operation started with qmi_client_wds_modify_profile().

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiClientWds.

 

res

the GAsyncResult obtained from the GAsyncReadyCallback passed to qmi_client_wds_modify_profile().

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

a QmiMessageWdsModifyProfileOutput, or NULL if error -is set. The returned value should be freed with qmi_message_wds_modify_profile_output_unref().

-
-

Since: 1.18

-
-
-
-

Types and Values

-
-

QmiMessageWdsModifyProfileInput

-
typedef struct _QmiMessageWdsModifyProfileInput QmiMessageWdsModifyProfileInput;
-

The QmiMessageWdsModifyProfileInput structure contains private data and should only be accessed -using the provided API.

-

Since: 1.18

-
-
-
-

QmiMessageWdsModifyProfileOutput

-
typedef struct _QmiMessageWdsModifyProfileOutput QmiMessageWdsModifyProfileOutput;
-

The QmiMessageWdsModifyProfileOutput structure contains private data and should only be accessed -using the provided API.

-

Since: 1.18

-
-
-
- - - \ No newline at end of file diff -Nru libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-WDS-Modify-Profile-request.html libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-WDS-Modify-Profile-request.html --- libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-WDS-Modify-Profile-request.html 1970-01-01 01:00:00.000000000 +0100 +++ libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-WDS-Modify-Profile-request.html 2019-01-08 15:19:02.000000000 +0100 @@ -0,0 +1,4253 @@ + + + + +WDS Modify Profile request: libqmi-glib Reference Manual + + + + + + + + + + + + + + + + +
+
+
+ + +
+

WDS Modify Profile request

+

WDS Modify Profile request

+
+
+

Functions

+
++++ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+QmiMessageWdsModifyProfileInput * + +qmi_message_wds_modify_profile_input_new () +
+QmiMessageWdsModifyProfileInput * + +qmi_message_wds_modify_profile_input_ref () +
+void + +qmi_message_wds_modify_profile_input_unref () +
+gboolean + +qmi_message_wds_modify_profile_input_get_roaming_disallowed_flag () +
+gboolean + +qmi_message_wds_modify_profile_input_set_roaming_disallowed_flag () +
+gboolean + +qmi_message_wds_modify_profile_input_get_apn_disabled_flag () +
+gboolean + +qmi_message_wds_modify_profile_input_set_apn_disabled_flag () +
+gboolean + +qmi_message_wds_modify_profile_input_get_lte_qos_parameters () +
+gboolean + +qmi_message_wds_modify_profile_input_set_lte_qos_parameters () +
+gboolean + +qmi_message_wds_modify_profile_input_get_ipv6_secondary_dns_address_preference () +
+gboolean + +qmi_message_wds_modify_profile_input_set_ipv6_secondary_dns_address_preference () +
+gboolean + +qmi_message_wds_modify_profile_input_get_ipv6_primary_dns_address_preference () +
+gboolean + +qmi_message_wds_modify_profile_input_set_ipv6_primary_dns_address_preference () +
+gboolean + +qmi_message_wds_modify_profile_input_get_umts_minimum_qos_with_signaling_indication_flag () +
+gboolean + +qmi_message_wds_modify_profile_input_set_umts_minimum_qos_with_signaling_indication_flag () +
+gboolean + +qmi_message_wds_modify_profile_input_get_umts_requested_qos_with_signaling_indication_flag () +
+gboolean + +qmi_message_wds_modify_profile_input_set_umts_requested_qos_with_signaling_indication_flag () +
+gboolean + +qmi_message_wds_modify_profile_input_get_ipv6_address_preference () +
+gboolean + +qmi_message_wds_modify_profile_input_set_ipv6_address_preference () +
+gboolean + +qmi_message_wds_modify_profile_input_get_pdp_context_primary_id () +
+gboolean + +qmi_message_wds_modify_profile_input_set_pdp_context_primary_id () +
+gboolean + +qmi_message_wds_modify_profile_input_get_pdp_context_secondary_flag () +
+gboolean + +qmi_message_wds_modify_profile_input_set_pdp_context_secondary_flag () +
+gboolean + +qmi_message_wds_modify_profile_input_get_pdp_context_number () +
+gboolean + +qmi_message_wds_modify_profile_input_set_pdp_context_number () +
+gboolean + +qmi_message_wds_modify_profile_input_get_imcn_flag () +
+gboolean + +qmi_message_wds_modify_profile_input_set_imcn_flag () +
+gboolean + +qmi_message_wds_modify_profile_input_get_pcscf_address_using_dhcp () +
+gboolean + +qmi_message_wds_modify_profile_input_set_pcscf_address_using_dhcp () +
+gboolean + +qmi_message_wds_modify_profile_input_get_pcscf_address_using_pco () +
+gboolean + +qmi_message_wds_modify_profile_input_set_pcscf_address_using_pco () +
+gboolean + +qmi_message_wds_modify_profile_input_get_ipv4_address_preference () +
+gboolean + +qmi_message_wds_modify_profile_input_set_ipv4_address_preference () +
+gboolean + +qmi_message_wds_modify_profile_input_get_authentication () +
+gboolean + +qmi_message_wds_modify_profile_input_set_authentication () +
+gboolean + +qmi_message_wds_modify_profile_input_get_password () +
+gboolean + +qmi_message_wds_modify_profile_input_set_password () +
+gboolean + +qmi_message_wds_modify_profile_input_get_username () +
+gboolean + +qmi_message_wds_modify_profile_input_set_username () +
+gboolean + +qmi_message_wds_modify_profile_input_get_gprs_minimum_qos () +
+gboolean + +qmi_message_wds_modify_profile_input_set_gprs_minimum_qos () +
+gboolean + +qmi_message_wds_modify_profile_input_get_gprs_requested_qos () +
+gboolean + +qmi_message_wds_modify_profile_input_set_gprs_requested_qos () +
+gboolean + +qmi_message_wds_modify_profile_input_get_umts_minimum_qos () +
+gboolean + +qmi_message_wds_modify_profile_input_set_umts_minimum_qos () +
+gboolean + +qmi_message_wds_modify_profile_input_get_umts_requested_qos () +
+gboolean + +qmi_message_wds_modify_profile_input_set_umts_requested_qos () +
+gboolean + +qmi_message_wds_modify_profile_input_get_secondary_ipv4_dns_address () +
+gboolean + +qmi_message_wds_modify_profile_input_set_secondary_ipv4_dns_address () +
+gboolean + +qmi_message_wds_modify_profile_input_get_primary_ipv4_dns_address () +
+gboolean + +qmi_message_wds_modify_profile_input_set_primary_ipv4_dns_address () +
+gboolean + +qmi_message_wds_modify_profile_input_get_apn_name () +
+gboolean + +qmi_message_wds_modify_profile_input_set_apn_name () +
+gboolean + +qmi_message_wds_modify_profile_input_get_pdp_data_compression_type () +
+gboolean + +qmi_message_wds_modify_profile_input_set_pdp_data_compression_type () +
+gboolean + +qmi_message_wds_modify_profile_input_get_pdp_header_compression_type () +
+gboolean + +qmi_message_wds_modify_profile_input_set_pdp_header_compression_type () +
+gboolean + +qmi_message_wds_modify_profile_input_get_pdp_type () +
+gboolean + +qmi_message_wds_modify_profile_input_set_pdp_type () +
+gboolean + +qmi_message_wds_modify_profile_input_get_profile_name () +
+gboolean + +qmi_message_wds_modify_profile_input_set_profile_name () +
+gboolean + +qmi_message_wds_modify_profile_input_get_profile_identifier () +
+gboolean + +qmi_message_wds_modify_profile_input_set_profile_identifier () +
+QmiMessageWdsModifyProfileOutput * + +qmi_message_wds_modify_profile_output_ref () +
+void + +qmi_message_wds_modify_profile_output_unref () +
+gboolean + +qmi_message_wds_modify_profile_output_get_result () +
+gboolean + +qmi_message_wds_modify_profile_output_get_extended_error_code () +
+void + +qmi_client_wds_modify_profile () +
+QmiMessageWdsModifyProfileOutput * + +qmi_client_wds_modify_profile_finish () +
+
+
+

Types and Values

+ +
+
+

Object Hierarchy

+
    GBoxed
+    ├── QmiMessageWdsModifyProfileInput
+    ╰── QmiMessageWdsModifyProfileOutput
+
+
+
+

Description

+
+
+

Functions

+
+

qmi_message_wds_modify_profile_input_new ()

+
QmiMessageWdsModifyProfileInput *
+qmi_message_wds_modify_profile_input_new
+                               (void);
+

Allocates a new QmiMessageWdsModifyProfileInput.

+
+

Returns

+

the newly created QmiMessageWdsModifyProfileInput. The returned value should be freed with qmi_message_wds_modify_profile_input_unref().

+
+

Since: 1.18

+
+
+
+

qmi_message_wds_modify_profile_input_ref ()

+
QmiMessageWdsModifyProfileInput *
+qmi_message_wds_modify_profile_input_ref
+                               (QmiMessageWdsModifyProfileInput *self);
+

Atomically increments the reference count of self + by one.

+
+

Parameters

+
+++++ + + + + + +

self

a QmiMessageWdsModifyProfileInput.

 
+
+
+

Returns

+

the new reference to self +.

+
+

Since: 1.18

+
+
+
+

qmi_message_wds_modify_profile_input_unref ()

+
void
+qmi_message_wds_modify_profile_input_unref
+                               (QmiMessageWdsModifyProfileInput *self);
+

Atomically decrements the reference count of self + by one. +If the reference count drops to 0, self + is completely disposed.

+
+

Parameters

+
+++++ + + + + + +

self

a QmiMessageWdsModifyProfileInput.

 
+
+

Since: 1.18

+
+
+
+

qmi_message_wds_modify_profile_input_get_roaming_disallowed_flag ()

+
gboolean
+qmi_message_wds_modify_profile_input_get_roaming_disallowed_flag
+                               (QmiMessageWdsModifyProfileInput *self,
+                                gboolean *value_roaming_disallowed_flag,
+                                GError **error);
+

Get the 'Roaming Disallowed Flag' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageWdsModifyProfileInput.

 

value_roaming_disallowed_flag

a placeholder for the output gboolean, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.22

+
+
+
+

qmi_message_wds_modify_profile_input_set_roaming_disallowed_flag ()

+
gboolean
+qmi_message_wds_modify_profile_input_set_roaming_disallowed_flag
+                               (QmiMessageWdsModifyProfileInput *self,
+                                gboolean value_roaming_disallowed_flag,
+                                GError **error);
+

Set the 'Roaming Disallowed Flag' field in the message.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageWdsModifyProfileInput.

 

value_roaming_disallowed_flag

a gboolean.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if value +was successfully set, FALSE otherwise.

+
+

Since: 1.22

+
+
+
+

qmi_message_wds_modify_profile_input_get_apn_disabled_flag ()

+
gboolean
+qmi_message_wds_modify_profile_input_get_apn_disabled_flag
+                               (QmiMessageWdsModifyProfileInput *self,
+                                gboolean *value_apn_disabled_flag,
+                                GError **error);
+

Get the 'APN Disabled Flag' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageWdsModifyProfileInput.

 

value_apn_disabled_flag

a placeholder for the output gboolean, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.22

+
+
+
+

qmi_message_wds_modify_profile_input_set_apn_disabled_flag ()

+
gboolean
+qmi_message_wds_modify_profile_input_set_apn_disabled_flag
+                               (QmiMessageWdsModifyProfileInput *self,
+                                gboolean value_apn_disabled_flag,
+                                GError **error);
+

Set the 'APN Disabled Flag' field in the message.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageWdsModifyProfileInput.

 

value_apn_disabled_flag

a gboolean.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if value +was successfully set, FALSE otherwise.

+
+

Since: 1.22

+
+
+
+

qmi_message_wds_modify_profile_input_get_lte_qos_parameters ()

+
gboolean
+qmi_message_wds_modify_profile_input_get_lte_qos_parameters
+                               (QmiMessageWdsModifyProfileInput *self,
+                                QmiWdsQosClassIdentifier *value_lte_qos_parameters_qos_class_identifier,
+                                guint32 *value_lte_qos_parameters_guaranteed_downlink_bitrate,
+                                guint32 *value_lte_qos_parameters_max_downlink_bitrate,
+                                guint32 *value_lte_qos_parameters_guaranteed_uplink_bitrate,
+                                guint32 *value_lte_qos_parameters_max_uplink_bitrate,
+                                GError **error);
+

Get the 'LTE QoS Parameters' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

self

a QmiMessageWdsModifyProfileInput.

 

value_lte_qos_parameters_qos_class_identifier

a placeholder for the output QmiWdsQosClassIdentifier, or NULL if not required.

 

value_lte_qos_parameters_guaranteed_downlink_bitrate

a placeholder for the output guint32, or NULL if not required.

 

value_lte_qos_parameters_max_downlink_bitrate

a placeholder for the output guint32, or NULL if not required.

 

value_lte_qos_parameters_guaranteed_uplink_bitrate

a placeholder for the output guint32, or NULL if not required.

 

value_lte_qos_parameters_max_uplink_bitrate

a placeholder for the output guint32, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.18

+
+
+
+

qmi_message_wds_modify_profile_input_set_lte_qos_parameters ()

+
gboolean
+qmi_message_wds_modify_profile_input_set_lte_qos_parameters
+                               (QmiMessageWdsModifyProfileInput *self,
+                                QmiWdsQosClassIdentifier value_lte_qos_parameters_qos_class_identifier,
+                                guint32 value_lte_qos_parameters_guaranteed_downlink_bitrate,
+                                guint32 value_lte_qos_parameters_max_downlink_bitrate,
+                                guint32 value_lte_qos_parameters_guaranteed_uplink_bitrate,
+                                guint32 value_lte_qos_parameters_max_uplink_bitrate,
+                                GError **error);
+

Set the 'LTE QoS Parameters' field in the message.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

self

a QmiMessageWdsModifyProfileInput.

 

value_lte_qos_parameters_qos_class_identifier

a QmiWdsQosClassIdentifier.

 

value_lte_qos_parameters_guaranteed_downlink_bitrate

a guint32.

 

value_lte_qos_parameters_max_downlink_bitrate

a guint32.

 

value_lte_qos_parameters_guaranteed_uplink_bitrate

a guint32.

 

value_lte_qos_parameters_max_uplink_bitrate

a guint32.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if value +was successfully set, FALSE otherwise.

+
+

Since: 1.18

+
+
+
+

qmi_message_wds_modify_profile_input_get_ipv6_secondary_dns_address_preference ()

+
gboolean
+qmi_message_wds_modify_profile_input_get_ipv6_secondary_dns_address_preference
+                               (QmiMessageWdsModifyProfileInput *self,
+                                GArray **value_ipv6_secondary_dns_address_preference,
+                                GError **error);
+

Get the 'IPv6 Secondary DNS Address Preference' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageWdsModifyProfileInput.

 

value_ipv6_secondary_dns_address_preference

a placeholder for the output GArray of guint16 elements, or NULL if not required. Do not free it, it is owned by self +.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.18

+
+
+
+

qmi_message_wds_modify_profile_input_set_ipv6_secondary_dns_address_preference ()

+
gboolean
+qmi_message_wds_modify_profile_input_set_ipv6_secondary_dns_address_preference
+                               (QmiMessageWdsModifyProfileInput *self,
+                                GArray *value_ipv6_secondary_dns_address_preference,
+                                GError **error);
+

Set the 'IPv6 Secondary DNS Address Preference' field in the message.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageWdsModifyProfileInput.

 

value_ipv6_secondary_dns_address_preference

a GArray of guint16 elements. A new reference to value_ipv6_secondary_dns_address_preference +will be taken.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if value +was successfully set, FALSE otherwise.

+
+

Since: 1.18

+
+
+
+

qmi_message_wds_modify_profile_input_get_ipv6_primary_dns_address_preference ()

+
gboolean
+qmi_message_wds_modify_profile_input_get_ipv6_primary_dns_address_preference
+                               (QmiMessageWdsModifyProfileInput *self,
+                                GArray **value_ipv6_primary_dns_address_preference,
+                                GError **error);
+

Get the 'IPv6 Primary DNS Address Preference' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageWdsModifyProfileInput.

 

value_ipv6_primary_dns_address_preference

a placeholder for the output GArray of guint16 elements, or NULL if not required. Do not free it, it is owned by self +.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.18

+
+
+
+

qmi_message_wds_modify_profile_input_set_ipv6_primary_dns_address_preference ()

+
gboolean
+qmi_message_wds_modify_profile_input_set_ipv6_primary_dns_address_preference
+                               (QmiMessageWdsModifyProfileInput *self,
+                                GArray *value_ipv6_primary_dns_address_preference,
+                                GError **error);
+

Set the 'IPv6 Primary DNS Address Preference' field in the message.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageWdsModifyProfileInput.

 

value_ipv6_primary_dns_address_preference

a GArray of guint16 elements. A new reference to value_ipv6_primary_dns_address_preference +will be taken.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if value +was successfully set, FALSE otherwise.

+
+

Since: 1.18

+
+
+
+

qmi_message_wds_modify_profile_input_get_umts_minimum_qos_with_signaling_indication_flag ()

+
gboolean
+qmi_message_wds_modify_profile_input_get_umts_minimum_qos_with_signaling_indication_flag
+                               (QmiMessageWdsModifyProfileInput *self,
+                                QmiWdsTrafficClass *value_umts_minimum_qos_with_signaling_indication_flag_traffic_class,
+                                guint32 *value_umts_minimum_qos_with_signaling_indication_flag_max_uplink_bitrate,
+                                guint32 *value_umts_minimum_qos_with_signaling_indication_flag_max_downlink_bitrate,
+                                guint32 *value_umts_minimum_qos_with_signaling_indication_flag_guaranteed_uplink_bitrate,
+                                guint32 *value_umts_minimum_qos_with_signaling_indication_flag_guaranteed_downlink_bitrate,
+                                QmiWdsDeliveryOrder *value_umts_minimum_qos_with_signaling_indication_flag_qos_delivery_order,
+                                guint32 *value_umts_minimum_qos_with_signaling_indication_flag_maximum_sdu_size,
+                                QmiWdsSduErrorRatio *value_umts_minimum_qos_with_signaling_indication_flag_sdu_error_ratio,
+                                QmiWdsSduResidualBitErrorRatio *value_umts_minimum_qos_with_signaling_indication_flag_residual_bit_error_ratio,
+                                QmiWdsSduErroneousDelivery *value_umts_minimum_qos_with_signaling_indication_flag_delivery_erroneous_sdu,
+                                guint32 *value_umts_minimum_qos_with_signaling_indication_flag_transfer_delay,
+                                guint32 *value_umts_minimum_qos_with_signaling_indication_flag_traffic_handling_priority,
+                                gint8 *value_umts_minimum_qos_with_signaling_indication_flag_signaling_indication,
+                                GError **error);
+

Get the 'UMTS Minimum QoS With Signaling Indication Flag' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

self

a QmiMessageWdsModifyProfileInput.

 

value_umts_minimum_qos_with_signaling_indication_flag_traffic_class

a placeholder for the output QmiWdsTrafficClass, or NULL if not required.

 

value_umts_minimum_qos_with_signaling_indication_flag_max_uplink_bitrate

a placeholder for the output guint32, or NULL if not required.

 

value_umts_minimum_qos_with_signaling_indication_flag_max_downlink_bitrate

a placeholder for the output guint32, or NULL if not required.

 

value_umts_minimum_qos_with_signaling_indication_flag_guaranteed_uplink_bitrate

a placeholder for the output guint32, or NULL if not required.

 

value_umts_minimum_qos_with_signaling_indication_flag_guaranteed_downlink_bitrate

a placeholder for the output guint32, or NULL if not required.

 

value_umts_minimum_qos_with_signaling_indication_flag_qos_delivery_order

a placeholder for the output QmiWdsDeliveryOrder, or NULL if not required.

 

value_umts_minimum_qos_with_signaling_indication_flag_maximum_sdu_size

a placeholder for the output guint32, or NULL if not required.

 

value_umts_minimum_qos_with_signaling_indication_flag_sdu_error_ratio

a placeholder for the output QmiWdsSduErrorRatio, or NULL if not required.

 

value_umts_minimum_qos_with_signaling_indication_flag_residual_bit_error_ratio

a placeholder for the output QmiWdsSduResidualBitErrorRatio, or NULL if not required.

 

value_umts_minimum_qos_with_signaling_indication_flag_delivery_erroneous_sdu

a placeholder for the output QmiWdsSduErroneousDelivery, or NULL if not required.

 

value_umts_minimum_qos_with_signaling_indication_flag_transfer_delay

a placeholder for the output guint32, or NULL if not required.

 

value_umts_minimum_qos_with_signaling_indication_flag_traffic_handling_priority

a placeholder for the output guint32, or NULL if not required.

 

value_umts_minimum_qos_with_signaling_indication_flag_signaling_indication

a placeholder for the output gint8, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.18

+
+
+
+

qmi_message_wds_modify_profile_input_set_umts_minimum_qos_with_signaling_indication_flag ()

+
gboolean
+qmi_message_wds_modify_profile_input_set_umts_minimum_qos_with_signaling_indication_flag
+                               (QmiMessageWdsModifyProfileInput *self,
+                                QmiWdsTrafficClass value_umts_minimum_qos_with_signaling_indication_flag_traffic_class,
+                                guint32 value_umts_minimum_qos_with_signaling_indication_flag_max_uplink_bitrate,
+                                guint32 value_umts_minimum_qos_with_signaling_indication_flag_max_downlink_bitrate,
+                                guint32 value_umts_minimum_qos_with_signaling_indication_flag_guaranteed_uplink_bitrate,
+                                guint32 value_umts_minimum_qos_with_signaling_indication_flag_guaranteed_downlink_bitrate,
+                                QmiWdsDeliveryOrder value_umts_minimum_qos_with_signaling_indication_flag_qos_delivery_order,
+                                guint32 value_umts_minimum_qos_with_signaling_indication_flag_maximum_sdu_size,
+                                QmiWdsSduErrorRatio value_umts_minimum_qos_with_signaling_indication_flag_sdu_error_ratio,
+                                QmiWdsSduResidualBitErrorRatio value_umts_minimum_qos_with_signaling_indication_flag_residual_bit_error_ratio,
+                                QmiWdsSduErroneousDelivery value_umts_minimum_qos_with_signaling_indication_flag_delivery_erroneous_sdu,
+                                guint32 value_umts_minimum_qos_with_signaling_indication_flag_transfer_delay,
+                                guint32 value_umts_minimum_qos_with_signaling_indication_flag_traffic_handling_priority,
+                                gint8 value_umts_minimum_qos_with_signaling_indication_flag_signaling_indication,
+                                GError **error);
+

Set the 'UMTS Minimum QoS With Signaling Indication Flag' field in the message.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

self

a QmiMessageWdsModifyProfileInput.

 

value_umts_minimum_qos_with_signaling_indication_flag_traffic_class

a QmiWdsTrafficClass.

 

value_umts_minimum_qos_with_signaling_indication_flag_max_uplink_bitrate

a guint32.

 

value_umts_minimum_qos_with_signaling_indication_flag_max_downlink_bitrate

a guint32.

 

value_umts_minimum_qos_with_signaling_indication_flag_guaranteed_uplink_bitrate

a guint32.

 

value_umts_minimum_qos_with_signaling_indication_flag_guaranteed_downlink_bitrate

a guint32.

 

value_umts_minimum_qos_with_signaling_indication_flag_qos_delivery_order

a QmiWdsDeliveryOrder.

 

value_umts_minimum_qos_with_signaling_indication_flag_maximum_sdu_size

a guint32.

 

value_umts_minimum_qos_with_signaling_indication_flag_sdu_error_ratio

a QmiWdsSduErrorRatio.

 

value_umts_minimum_qos_with_signaling_indication_flag_residual_bit_error_ratio

a QmiWdsSduResidualBitErrorRatio.

 

value_umts_minimum_qos_with_signaling_indication_flag_delivery_erroneous_sdu

a QmiWdsSduErroneousDelivery.

 

value_umts_minimum_qos_with_signaling_indication_flag_transfer_delay

a guint32.

 

value_umts_minimum_qos_with_signaling_indication_flag_traffic_handling_priority

a guint32.

 

value_umts_minimum_qos_with_signaling_indication_flag_signaling_indication

a gint8.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if value +was successfully set, FALSE otherwise.

+
+

Since: 1.18

+
+
+
+

qmi_message_wds_modify_profile_input_get_umts_requested_qos_with_signaling_indication_flag ()

+
gboolean
+qmi_message_wds_modify_profile_input_get_umts_requested_qos_with_signaling_indication_flag
+                               (QmiMessageWdsModifyProfileInput *self,
+                                QmiWdsTrafficClass *value_umts_requested_qos_with_signaling_indication_flag_traffic_class,
+                                guint32 *value_umts_requested_qos_with_signaling_indication_flag_max_uplink_bitrate,
+                                guint32 *value_umts_requested_qos_with_signaling_indication_flag_max_downlink_bitrate,
+                                guint32 *value_umts_requested_qos_with_signaling_indication_flag_guaranteed_uplink_bitrate,
+                                guint32 *value_umts_requested_qos_with_signaling_indication_flag_guaranteed_downlink_bitrate,
+                                QmiWdsDeliveryOrder *value_umts_requested_qos_with_signaling_indication_flag_qos_delivery_order,
+                                guint32 *value_umts_requested_qos_with_signaling_indication_flag_maximum_sdu_size,
+                                QmiWdsSduErrorRatio *value_umts_requested_qos_with_signaling_indication_flag_sdu_error_ratio,
+                                QmiWdsSduResidualBitErrorRatio *value_umts_requested_qos_with_signaling_indication_flag_residual_bit_error_ratio,
+                                QmiWdsSduErroneousDelivery *value_umts_requested_qos_with_signaling_indication_flag_delivery_erroneous_sdu,
+                                guint32 *value_umts_requested_qos_with_signaling_indication_flag_transfer_delay,
+                                guint32 *value_umts_requested_qos_with_signaling_indication_flag_traffic_handling_priority,
+                                gint8 *value_umts_requested_qos_with_signaling_indication_flag_signaling_indication,
+                                GError **error);
+

Get the 'UMTS Requested QoS With Signaling Indication Flag' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

self

a QmiMessageWdsModifyProfileInput.

 

value_umts_requested_qos_with_signaling_indication_flag_traffic_class

a placeholder for the output QmiWdsTrafficClass, or NULL if not required.

 

value_umts_requested_qos_with_signaling_indication_flag_max_uplink_bitrate

a placeholder for the output guint32, or NULL if not required.

 

value_umts_requested_qos_with_signaling_indication_flag_max_downlink_bitrate

a placeholder for the output guint32, or NULL if not required.

 

value_umts_requested_qos_with_signaling_indication_flag_guaranteed_uplink_bitrate

a placeholder for the output guint32, or NULL if not required.

 

value_umts_requested_qos_with_signaling_indication_flag_guaranteed_downlink_bitrate

a placeholder for the output guint32, or NULL if not required.

 

value_umts_requested_qos_with_signaling_indication_flag_qos_delivery_order

a placeholder for the output QmiWdsDeliveryOrder, or NULL if not required.

 

value_umts_requested_qos_with_signaling_indication_flag_maximum_sdu_size

a placeholder for the output guint32, or NULL if not required.

 

value_umts_requested_qos_with_signaling_indication_flag_sdu_error_ratio

a placeholder for the output QmiWdsSduErrorRatio, or NULL if not required.

 

value_umts_requested_qos_with_signaling_indication_flag_residual_bit_error_ratio

a placeholder for the output QmiWdsSduResidualBitErrorRatio, or NULL if not required.

 

value_umts_requested_qos_with_signaling_indication_flag_delivery_erroneous_sdu

a placeholder for the output QmiWdsSduErroneousDelivery, or NULL if not required.

 

value_umts_requested_qos_with_signaling_indication_flag_transfer_delay

a placeholder for the output guint32, or NULL if not required.

 

value_umts_requested_qos_with_signaling_indication_flag_traffic_handling_priority

a placeholder for the output guint32, or NULL if not required.

 

value_umts_requested_qos_with_signaling_indication_flag_signaling_indication

a placeholder for the output gint8, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.18

+
+
+
+

qmi_message_wds_modify_profile_input_set_umts_requested_qos_with_signaling_indication_flag ()

+
gboolean
+qmi_message_wds_modify_profile_input_set_umts_requested_qos_with_signaling_indication_flag
+                               (QmiMessageWdsModifyProfileInput *self,
+                                QmiWdsTrafficClass value_umts_requested_qos_with_signaling_indication_flag_traffic_class,
+                                guint32 value_umts_requested_qos_with_signaling_indication_flag_max_uplink_bitrate,
+                                guint32 value_umts_requested_qos_with_signaling_indication_flag_max_downlink_bitrate,
+                                guint32 value_umts_requested_qos_with_signaling_indication_flag_guaranteed_uplink_bitrate,
+                                guint32 value_umts_requested_qos_with_signaling_indication_flag_guaranteed_downlink_bitrate,
+                                QmiWdsDeliveryOrder value_umts_requested_qos_with_signaling_indication_flag_qos_delivery_order,
+                                guint32 value_umts_requested_qos_with_signaling_indication_flag_maximum_sdu_size,
+                                QmiWdsSduErrorRatio value_umts_requested_qos_with_signaling_indication_flag_sdu_error_ratio,
+                                QmiWdsSduResidualBitErrorRatio value_umts_requested_qos_with_signaling_indication_flag_residual_bit_error_ratio,
+                                QmiWdsSduErroneousDelivery value_umts_requested_qos_with_signaling_indication_flag_delivery_erroneous_sdu,
+                                guint32 value_umts_requested_qos_with_signaling_indication_flag_transfer_delay,
+                                guint32 value_umts_requested_qos_with_signaling_indication_flag_traffic_handling_priority,
+                                gint8 value_umts_requested_qos_with_signaling_indication_flag_signaling_indication,
+                                GError **error);
+

Set the 'UMTS Requested QoS With Signaling Indication Flag' field in the message.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

self

a QmiMessageWdsModifyProfileInput.

 

value_umts_requested_qos_with_signaling_indication_flag_traffic_class

a QmiWdsTrafficClass.

 

value_umts_requested_qos_with_signaling_indication_flag_max_uplink_bitrate

a guint32.

 

value_umts_requested_qos_with_signaling_indication_flag_max_downlink_bitrate

a guint32.

 

value_umts_requested_qos_with_signaling_indication_flag_guaranteed_uplink_bitrate

a guint32.

 

value_umts_requested_qos_with_signaling_indication_flag_guaranteed_downlink_bitrate

a guint32.

 

value_umts_requested_qos_with_signaling_indication_flag_qos_delivery_order

a QmiWdsDeliveryOrder.

 

value_umts_requested_qos_with_signaling_indication_flag_maximum_sdu_size

a guint32.

 

value_umts_requested_qos_with_signaling_indication_flag_sdu_error_ratio

a QmiWdsSduErrorRatio.

 

value_umts_requested_qos_with_signaling_indication_flag_residual_bit_error_ratio

a QmiWdsSduResidualBitErrorRatio.

 

value_umts_requested_qos_with_signaling_indication_flag_delivery_erroneous_sdu

a QmiWdsSduErroneousDelivery.

 

value_umts_requested_qos_with_signaling_indication_flag_transfer_delay

a guint32.

 

value_umts_requested_qos_with_signaling_indication_flag_traffic_handling_priority

a guint32.

 

value_umts_requested_qos_with_signaling_indication_flag_signaling_indication

a gint8.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if value +was successfully set, FALSE otherwise.

+
+

Since: 1.18

+
+
+
+

qmi_message_wds_modify_profile_input_get_ipv6_address_preference ()

+
gboolean
+qmi_message_wds_modify_profile_input_get_ipv6_address_preference
+                               (QmiMessageWdsModifyProfileInput *self,
+                                GArray **value_ipv6_address_preference_address,
+                                GError **error);
+

Get the 'IPv6 Address Preference' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageWdsModifyProfileInput.

 

value_ipv6_address_preference_address

a placeholder for the output GArray of guint16 elements, or NULL if not required. Do not free it, it is owned by self +.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.18

+
+
+
+

qmi_message_wds_modify_profile_input_set_ipv6_address_preference ()

+
gboolean
+qmi_message_wds_modify_profile_input_set_ipv6_address_preference
+                               (QmiMessageWdsModifyProfileInput *self,
+                                GArray *value_ipv6_address_preference_address,
+                                GError **error);
+

Set the 'IPv6 Address Preference' field in the message.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageWdsModifyProfileInput.

 

value_ipv6_address_preference_address

a GArray of guint16 elements. A new reference to value_ipv6_address_preference_address +will be taken.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if value +was successfully set, FALSE otherwise.

+
+

Since: 1.18

+
+
+
+

qmi_message_wds_modify_profile_input_get_pdp_context_primary_id ()

+
gboolean
+qmi_message_wds_modify_profile_input_get_pdp_context_primary_id
+                               (QmiMessageWdsModifyProfileInput *self,
+                                guint8 *value_pdp_context_primary_id,
+                                GError **error);
+

Get the 'PDP Context Primary ID' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageWdsModifyProfileInput.

 

value_pdp_context_primary_id

a placeholder for the output guint8, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.18

+
+
+
+

qmi_message_wds_modify_profile_input_set_pdp_context_primary_id ()

+
gboolean
+qmi_message_wds_modify_profile_input_set_pdp_context_primary_id
+                               (QmiMessageWdsModifyProfileInput *self,
+                                guint8 value_pdp_context_primary_id,
+                                GError **error);
+

Set the 'PDP Context Primary ID' field in the message.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageWdsModifyProfileInput.

 

value_pdp_context_primary_id

a guint8.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if value +was successfully set, FALSE otherwise.

+
+

Since: 1.18

+
+
+
+

qmi_message_wds_modify_profile_input_get_pdp_context_secondary_flag ()

+
gboolean
+qmi_message_wds_modify_profile_input_get_pdp_context_secondary_flag
+                               (QmiMessageWdsModifyProfileInput *self,
+                                gboolean *value_pdp_context_secondary_flag,
+                                GError **error);
+

Get the 'PDP Context Secondary Flag' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageWdsModifyProfileInput.

 

value_pdp_context_secondary_flag

a placeholder for the output gboolean, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.18

+
+
+
+

qmi_message_wds_modify_profile_input_set_pdp_context_secondary_flag ()

+
gboolean
+qmi_message_wds_modify_profile_input_set_pdp_context_secondary_flag
+                               (QmiMessageWdsModifyProfileInput *self,
+                                gboolean value_pdp_context_secondary_flag,
+                                GError **error);
+

Set the 'PDP Context Secondary Flag' field in the message.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageWdsModifyProfileInput.

 

value_pdp_context_secondary_flag

a gboolean.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if value +was successfully set, FALSE otherwise.

+
+

Since: 1.18

+
+
+
+

qmi_message_wds_modify_profile_input_get_pdp_context_number ()

+
gboolean
+qmi_message_wds_modify_profile_input_get_pdp_context_number
+                               (QmiMessageWdsModifyProfileInput *self,
+                                guint8 *value_pdp_context_number,
+                                GError **error);
+

Get the 'PDP Context Number' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageWdsModifyProfileInput.

 

value_pdp_context_number

a placeholder for the output guint8, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.18

+
+
+
+

qmi_message_wds_modify_profile_input_set_pdp_context_number ()

+
gboolean
+qmi_message_wds_modify_profile_input_set_pdp_context_number
+                               (QmiMessageWdsModifyProfileInput *self,
+                                guint8 value_pdp_context_number,
+                                GError **error);
+

Set the 'PDP Context Number' field in the message.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageWdsModifyProfileInput.

 

value_pdp_context_number

a guint8.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if value +was successfully set, FALSE otherwise.

+
+

Since: 1.18

+
+
+
+

qmi_message_wds_modify_profile_input_get_imcn_flag ()

+
gboolean
+qmi_message_wds_modify_profile_input_get_imcn_flag
+                               (QmiMessageWdsModifyProfileInput *self,
+                                gboolean *value_imcn_flag,
+                                GError **error);
+

Get the 'IMCN Flag' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageWdsModifyProfileInput.

 

value_imcn_flag

a placeholder for the output gboolean, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.18

+
+
+
+

qmi_message_wds_modify_profile_input_set_imcn_flag ()

+
gboolean
+qmi_message_wds_modify_profile_input_set_imcn_flag
+                               (QmiMessageWdsModifyProfileInput *self,
+                                gboolean value_imcn_flag,
+                                GError **error);
+

Set the 'IMCN Flag' field in the message.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageWdsModifyProfileInput.

 

value_imcn_flag

a gboolean.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if value +was successfully set, FALSE otherwise.

+
+

Since: 1.18

+
+
+
+

qmi_message_wds_modify_profile_input_get_pcscf_address_using_dhcp ()

+
gboolean
+qmi_message_wds_modify_profile_input_get_pcscf_address_using_dhcp
+                               (QmiMessageWdsModifyProfileInput *self,
+                                gboolean *value_pcscf_address_using_dhcp,
+                                GError **error);
+

Get the 'PCSCF Address Using DHCP' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageWdsModifyProfileInput.

 

value_pcscf_address_using_dhcp

a placeholder for the output gboolean, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.18

+
+
+
+

qmi_message_wds_modify_profile_input_set_pcscf_address_using_dhcp ()

+
gboolean
+qmi_message_wds_modify_profile_input_set_pcscf_address_using_dhcp
+                               (QmiMessageWdsModifyProfileInput *self,
+                                gboolean value_pcscf_address_using_dhcp,
+                                GError **error);
+

Set the 'PCSCF Address Using DHCP' field in the message.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageWdsModifyProfileInput.

 

value_pcscf_address_using_dhcp

a gboolean.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if value +was successfully set, FALSE otherwise.

+
+

Since: 1.18

+
+
+
+

qmi_message_wds_modify_profile_input_get_pcscf_address_using_pco ()

+
gboolean
+qmi_message_wds_modify_profile_input_get_pcscf_address_using_pco
+                               (QmiMessageWdsModifyProfileInput *self,
+                                gboolean *value_pcscf_address_using_pco,
+                                GError **error);
+

Get the 'PCSCF Address Using PCO' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageWdsModifyProfileInput.

 

value_pcscf_address_using_pco

a placeholder for the output gboolean, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.18

+
+
+
+

qmi_message_wds_modify_profile_input_set_pcscf_address_using_pco ()

+
gboolean
+qmi_message_wds_modify_profile_input_set_pcscf_address_using_pco
+                               (QmiMessageWdsModifyProfileInput *self,
+                                gboolean value_pcscf_address_using_pco,
+                                GError **error);
+

Set the 'PCSCF Address Using PCO' field in the message.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageWdsModifyProfileInput.

 

value_pcscf_address_using_pco

a gboolean.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if value +was successfully set, FALSE otherwise.

+
+

Since: 1.18

+
+
+
+

qmi_message_wds_modify_profile_input_get_ipv4_address_preference ()

+
gboolean
+qmi_message_wds_modify_profile_input_get_ipv4_address_preference
+                               (QmiMessageWdsModifyProfileInput *self,
+                                guint32 *value_ipv4_address_preference,
+                                GError **error);
+

Get the 'IPv4 Address Preference' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageWdsModifyProfileInput.

 

value_ipv4_address_preference

a placeholder for the output guint32, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.18

+
+
+
+

qmi_message_wds_modify_profile_input_set_ipv4_address_preference ()

+
gboolean
+qmi_message_wds_modify_profile_input_set_ipv4_address_preference
+                               (QmiMessageWdsModifyProfileInput *self,
+                                guint32 value_ipv4_address_preference,
+                                GError **error);
+

Set the 'IPv4 Address Preference' field in the message.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageWdsModifyProfileInput.

 

value_ipv4_address_preference

a guint32.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if value +was successfully set, FALSE otherwise.

+
+

Since: 1.18

+
+
+
+

qmi_message_wds_modify_profile_input_get_authentication ()

+
gboolean
+qmi_message_wds_modify_profile_input_get_authentication
+                               (QmiMessageWdsModifyProfileInput *self,
+                                QmiWdsAuthentication *value_authentication,
+                                GError **error);
+

Get the 'Authentication' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageWdsModifyProfileInput.

 

value_authentication

a placeholder for the output QmiWdsAuthentication, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.18

+
+
+
+

qmi_message_wds_modify_profile_input_set_authentication ()

+
gboolean
+qmi_message_wds_modify_profile_input_set_authentication
+                               (QmiMessageWdsModifyProfileInput *self,
+                                QmiWdsAuthentication value_authentication,
+                                GError **error);
+

Set the 'Authentication' field in the message.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageWdsModifyProfileInput.

 

value_authentication

a QmiWdsAuthentication.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if value +was successfully set, FALSE otherwise.

+
+

Since: 1.18

+
+
+
+

qmi_message_wds_modify_profile_input_get_password ()

+
gboolean
+qmi_message_wds_modify_profile_input_get_password
+                               (QmiMessageWdsModifyProfileInput *self,
+                                const gchar **value_password,
+                                GError **error);
+

Get the 'Password' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageWdsModifyProfileInput.

 

value_password

a placeholder for the output constant string, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.18

+
+
+
+

qmi_message_wds_modify_profile_input_set_password ()

+
gboolean
+qmi_message_wds_modify_profile_input_set_password
+                               (QmiMessageWdsModifyProfileInput *self,
+                                const gchar *value_password,
+                                GError **error);
+

Set the 'Password' field in the message.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageWdsModifyProfileInput.

 

value_password

a constant string.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if value +was successfully set, FALSE otherwise.

+
+

Since: 1.18

+
+
+
+

qmi_message_wds_modify_profile_input_get_username ()

+
gboolean
+qmi_message_wds_modify_profile_input_get_username
+                               (QmiMessageWdsModifyProfileInput *self,
+                                const gchar **value_username,
+                                GError **error);
+

Get the 'Username' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageWdsModifyProfileInput.

 

value_username

a placeholder for the output constant string, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.18

+
+
+
+

qmi_message_wds_modify_profile_input_set_username ()

+
gboolean
+qmi_message_wds_modify_profile_input_set_username
+                               (QmiMessageWdsModifyProfileInput *self,
+                                const gchar *value_username,
+                                GError **error);
+

Set the 'Username' field in the message.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageWdsModifyProfileInput.

 

value_username

a constant string.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if value +was successfully set, FALSE otherwise.

+
+

Since: 1.18

+
+
+
+

qmi_message_wds_modify_profile_input_get_gprs_minimum_qos ()

+
gboolean
+qmi_message_wds_modify_profile_input_get_gprs_minimum_qos
+                               (QmiMessageWdsModifyProfileInput *self,
+                                guint32 *value_gprs_minimum_qos_precedence_class,
+                                guint32 *value_gprs_minimum_qos_delay_class,
+                                guint32 *value_gprs_minimum_qos_reliability_class,
+                                guint32 *value_gprs_minimum_qos_peak_throughput_class,
+                                guint32 *value_gprs_minimum_qos_mean_throughput_class,
+                                GError **error);
+

Get the 'GPRS Minimum QoS' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

self

a QmiMessageWdsModifyProfileInput.

 

value_gprs_minimum_qos_precedence_class

a placeholder for the output guint32, or NULL if not required.

 

value_gprs_minimum_qos_delay_class

a placeholder for the output guint32, or NULL if not required.

 

value_gprs_minimum_qos_reliability_class

a placeholder for the output guint32, or NULL if not required.

 

value_gprs_minimum_qos_peak_throughput_class

a placeholder for the output guint32, or NULL if not required.

 

value_gprs_minimum_qos_mean_throughput_class

a placeholder for the output guint32, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.18

+
+
+
+

qmi_message_wds_modify_profile_input_set_gprs_minimum_qos ()

+
gboolean
+qmi_message_wds_modify_profile_input_set_gprs_minimum_qos
+                               (QmiMessageWdsModifyProfileInput *self,
+                                guint32 value_gprs_minimum_qos_precedence_class,
+                                guint32 value_gprs_minimum_qos_delay_class,
+                                guint32 value_gprs_minimum_qos_reliability_class,
+                                guint32 value_gprs_minimum_qos_peak_throughput_class,
+                                guint32 value_gprs_minimum_qos_mean_throughput_class,
+                                GError **error);
+

Set the 'GPRS Minimum QoS' field in the message.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

self

a QmiMessageWdsModifyProfileInput.

 

value_gprs_minimum_qos_precedence_class

a guint32.

 

value_gprs_minimum_qos_delay_class

a guint32.

 

value_gprs_minimum_qos_reliability_class

a guint32.

 

value_gprs_minimum_qos_peak_throughput_class

a guint32.

 

value_gprs_minimum_qos_mean_throughput_class

a guint32.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if value +was successfully set, FALSE otherwise.

+
+

Since: 1.18

+
+
+
+

qmi_message_wds_modify_profile_input_get_gprs_requested_qos ()

+
gboolean
+qmi_message_wds_modify_profile_input_get_gprs_requested_qos
+                               (QmiMessageWdsModifyProfileInput *self,
+                                guint32 *value_gprs_requested_qos_precedence_class,
+                                guint32 *value_gprs_requested_qos_delay_class,
+                                guint32 *value_gprs_requested_qos_reliability_class,
+                                guint32 *value_gprs_requested_qos_peak_throughput_class,
+                                guint32 *value_gprs_requested_qos_mean_throughput_class,
+                                GError **error);
+

Get the 'GPRS Requested QoS' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

self

a QmiMessageWdsModifyProfileInput.

 

value_gprs_requested_qos_precedence_class

a placeholder for the output guint32, or NULL if not required.

 

value_gprs_requested_qos_delay_class

a placeholder for the output guint32, or NULL if not required.

 

value_gprs_requested_qos_reliability_class

a placeholder for the output guint32, or NULL if not required.

 

value_gprs_requested_qos_peak_throughput_class

a placeholder for the output guint32, or NULL if not required.

 

value_gprs_requested_qos_mean_throughput_class

a placeholder for the output guint32, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.18

+
+
+
+

qmi_message_wds_modify_profile_input_set_gprs_requested_qos ()

+
gboolean
+qmi_message_wds_modify_profile_input_set_gprs_requested_qos
+                               (QmiMessageWdsModifyProfileInput *self,
+                                guint32 value_gprs_requested_qos_precedence_class,
+                                guint32 value_gprs_requested_qos_delay_class,
+                                guint32 value_gprs_requested_qos_reliability_class,
+                                guint32 value_gprs_requested_qos_peak_throughput_class,
+                                guint32 value_gprs_requested_qos_mean_throughput_class,
+                                GError **error);
+

Set the 'GPRS Requested QoS' field in the message.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

self

a QmiMessageWdsModifyProfileInput.

 

value_gprs_requested_qos_precedence_class

a guint32.

 

value_gprs_requested_qos_delay_class

a guint32.

 

value_gprs_requested_qos_reliability_class

a guint32.

 

value_gprs_requested_qos_peak_throughput_class

a guint32.

 

value_gprs_requested_qos_mean_throughput_class

a guint32.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if value +was successfully set, FALSE otherwise.

+
+

Since: 1.18

+
+
+
+

qmi_message_wds_modify_profile_input_get_umts_minimum_qos ()

+
gboolean
+qmi_message_wds_modify_profile_input_get_umts_minimum_qos
+                               (QmiMessageWdsModifyProfileInput *self,
+                                QmiWdsTrafficClass *value_umts_minimum_qos_traffic_class,
+                                guint32 *value_umts_minimum_qos_max_uplink_bitrate,
+                                guint32 *value_umts_minimum_qos_max_downlink_bitrate,
+                                guint32 *value_umts_minimum_qos_guaranteed_uplink_bitrate,
+                                guint32 *value_umts_minimum_qos_guaranteed_downlink_bitrate,
+                                QmiWdsDeliveryOrder *value_umts_minimum_qos_qos_delivery_order,
+                                guint32 *value_umts_minimum_qos_maximum_sdu_size,
+                                QmiWdsSduErrorRatio *value_umts_minimum_qos_sdu_error_ratio,
+                                QmiWdsSduResidualBitErrorRatio *value_umts_minimum_qos_residual_bit_error_ratio,
+                                QmiWdsSduErroneousDelivery *value_umts_minimum_qos_delivery_erroneous_sdu,
+                                guint32 *value_umts_minimum_qos_transfer_delay,
+                                guint32 *value_umts_minimum_qos_traffic_handling_priority,
+                                GError **error);
+

Get the 'UMTS Minimum QoS' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

self

a QmiMessageWdsModifyProfileInput.

 

value_umts_minimum_qos_traffic_class

a placeholder for the output QmiWdsTrafficClass, or NULL if not required.

 

value_umts_minimum_qos_max_uplink_bitrate

a placeholder for the output guint32, or NULL if not required.

 

value_umts_minimum_qos_max_downlink_bitrate

a placeholder for the output guint32, or NULL if not required.

 

value_umts_minimum_qos_guaranteed_uplink_bitrate

a placeholder for the output guint32, or NULL if not required.

 

value_umts_minimum_qos_guaranteed_downlink_bitrate

a placeholder for the output guint32, or NULL if not required.

 

value_umts_minimum_qos_qos_delivery_order

a placeholder for the output QmiWdsDeliveryOrder, or NULL if not required.

 

value_umts_minimum_qos_maximum_sdu_size

a placeholder for the output guint32, or NULL if not required.

 

value_umts_minimum_qos_sdu_error_ratio

a placeholder for the output QmiWdsSduErrorRatio, or NULL if not required.

 

value_umts_minimum_qos_residual_bit_error_ratio

a placeholder for the output QmiWdsSduResidualBitErrorRatio, or NULL if not required.

 

value_umts_minimum_qos_delivery_erroneous_sdu

a placeholder for the output QmiWdsSduErroneousDelivery, or NULL if not required.

 

value_umts_minimum_qos_transfer_delay

a placeholder for the output guint32, or NULL if not required.

 

value_umts_minimum_qos_traffic_handling_priority

a placeholder for the output guint32, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.18

+
+
+
+

qmi_message_wds_modify_profile_input_set_umts_minimum_qos ()

+
gboolean
+qmi_message_wds_modify_profile_input_set_umts_minimum_qos
+                               (QmiMessageWdsModifyProfileInput *self,
+                                QmiWdsTrafficClass value_umts_minimum_qos_traffic_class,
+                                guint32 value_umts_minimum_qos_max_uplink_bitrate,
+                                guint32 value_umts_minimum_qos_max_downlink_bitrate,
+                                guint32 value_umts_minimum_qos_guaranteed_uplink_bitrate,
+                                guint32 value_umts_minimum_qos_guaranteed_downlink_bitrate,
+                                QmiWdsDeliveryOrder value_umts_minimum_qos_qos_delivery_order,
+                                guint32 value_umts_minimum_qos_maximum_sdu_size,
+                                QmiWdsSduErrorRatio value_umts_minimum_qos_sdu_error_ratio,
+                                QmiWdsSduResidualBitErrorRatio value_umts_minimum_qos_residual_bit_error_ratio,
+                                QmiWdsSduErroneousDelivery value_umts_minimum_qos_delivery_erroneous_sdu,
+                                guint32 value_umts_minimum_qos_transfer_delay,
+                                guint32 value_umts_minimum_qos_traffic_handling_priority,
+                                GError **error);
+

Set the 'UMTS Minimum QoS' field in the message.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

self

a QmiMessageWdsModifyProfileInput.

 

value_umts_minimum_qos_traffic_class

a QmiWdsTrafficClass.

 

value_umts_minimum_qos_max_uplink_bitrate

a guint32.

 

value_umts_minimum_qos_max_downlink_bitrate

a guint32.

 

value_umts_minimum_qos_guaranteed_uplink_bitrate

a guint32.

 

value_umts_minimum_qos_guaranteed_downlink_bitrate

a guint32.

 

value_umts_minimum_qos_qos_delivery_order

a QmiWdsDeliveryOrder.

 

value_umts_minimum_qos_maximum_sdu_size

a guint32.

 

value_umts_minimum_qos_sdu_error_ratio

a QmiWdsSduErrorRatio.

 

value_umts_minimum_qos_residual_bit_error_ratio

a QmiWdsSduResidualBitErrorRatio.

 

value_umts_minimum_qos_delivery_erroneous_sdu

a QmiWdsSduErroneousDelivery.

 

value_umts_minimum_qos_transfer_delay

a guint32.

 

value_umts_minimum_qos_traffic_handling_priority

a guint32.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if value +was successfully set, FALSE otherwise.

+
+

Since: 1.18

+
+
+
+

qmi_message_wds_modify_profile_input_get_umts_requested_qos ()

+
gboolean
+qmi_message_wds_modify_profile_input_get_umts_requested_qos
+                               (QmiMessageWdsModifyProfileInput *self,
+                                QmiWdsTrafficClass *value_umts_requested_qos_traffic_class,
+                                guint32 *value_umts_requested_qos_max_uplink_bitrate,
+                                guint32 *value_umts_requested_qos_max_downlink_bitrate,
+                                guint32 *value_umts_requested_qos_guaranteed_uplink_bitrate,
+                                guint32 *value_umts_requested_qos_guaranteed_downlink_bitrate,
+                                QmiWdsDeliveryOrder *value_umts_requested_qos_qos_delivery_order,
+                                guint32 *value_umts_requested_qos_maximum_sdu_size,
+                                QmiWdsSduErrorRatio *value_umts_requested_qos_sdu_error_ratio,
+                                QmiWdsSduResidualBitErrorRatio *value_umts_requested_qos_residual_bit_error_ratio,
+                                QmiWdsSduErroneousDelivery *value_umts_requested_qos_delivery_erroneous_sdu,
+                                guint32 *value_umts_requested_qos_transfer_delay,
+                                guint32 *value_umts_requested_qos_traffic_handling_priority,
+                                GError **error);
+

Get the 'UMTS Requested QoS' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

self

a QmiMessageWdsModifyProfileInput.

 

value_umts_requested_qos_traffic_class

a placeholder for the output QmiWdsTrafficClass, or NULL if not required.

 

value_umts_requested_qos_max_uplink_bitrate

a placeholder for the output guint32, or NULL if not required.

 

value_umts_requested_qos_max_downlink_bitrate

a placeholder for the output guint32, or NULL if not required.

 

value_umts_requested_qos_guaranteed_uplink_bitrate

a placeholder for the output guint32, or NULL if not required.

 

value_umts_requested_qos_guaranteed_downlink_bitrate

a placeholder for the output guint32, or NULL if not required.

 

value_umts_requested_qos_qos_delivery_order

a placeholder for the output QmiWdsDeliveryOrder, or NULL if not required.

 

value_umts_requested_qos_maximum_sdu_size

a placeholder for the output guint32, or NULL if not required.

 

value_umts_requested_qos_sdu_error_ratio

a placeholder for the output QmiWdsSduErrorRatio, or NULL if not required.

 

value_umts_requested_qos_residual_bit_error_ratio

a placeholder for the output QmiWdsSduResidualBitErrorRatio, or NULL if not required.

 

value_umts_requested_qos_delivery_erroneous_sdu

a placeholder for the output QmiWdsSduErroneousDelivery, or NULL if not required.

 

value_umts_requested_qos_transfer_delay

a placeholder for the output guint32, or NULL if not required.

 

value_umts_requested_qos_traffic_handling_priority

a placeholder for the output guint32, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.18

+
+
+
+

qmi_message_wds_modify_profile_input_set_umts_requested_qos ()

+
gboolean
+qmi_message_wds_modify_profile_input_set_umts_requested_qos
+                               (QmiMessageWdsModifyProfileInput *self,
+                                QmiWdsTrafficClass value_umts_requested_qos_traffic_class,
+                                guint32 value_umts_requested_qos_max_uplink_bitrate,
+                                guint32 value_umts_requested_qos_max_downlink_bitrate,
+                                guint32 value_umts_requested_qos_guaranteed_uplink_bitrate,
+                                guint32 value_umts_requested_qos_guaranteed_downlink_bitrate,
+                                QmiWdsDeliveryOrder value_umts_requested_qos_qos_delivery_order,
+                                guint32 value_umts_requested_qos_maximum_sdu_size,
+                                QmiWdsSduErrorRatio value_umts_requested_qos_sdu_error_ratio,
+                                QmiWdsSduResidualBitErrorRatio value_umts_requested_qos_residual_bit_error_ratio,
+                                QmiWdsSduErroneousDelivery value_umts_requested_qos_delivery_erroneous_sdu,
+                                guint32 value_umts_requested_qos_transfer_delay,
+                                guint32 value_umts_requested_qos_traffic_handling_priority,
+                                GError **error);
+

Set the 'UMTS Requested QoS' field in the message.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

self

a QmiMessageWdsModifyProfileInput.

 

value_umts_requested_qos_traffic_class

a QmiWdsTrafficClass.

 

value_umts_requested_qos_max_uplink_bitrate

a guint32.

 

value_umts_requested_qos_max_downlink_bitrate

a guint32.

 

value_umts_requested_qos_guaranteed_uplink_bitrate

a guint32.

 

value_umts_requested_qos_guaranteed_downlink_bitrate

a guint32.

 

value_umts_requested_qos_qos_delivery_order

a QmiWdsDeliveryOrder.

 

value_umts_requested_qos_maximum_sdu_size

a guint32.

 

value_umts_requested_qos_sdu_error_ratio

a QmiWdsSduErrorRatio.

 

value_umts_requested_qos_residual_bit_error_ratio

a QmiWdsSduResidualBitErrorRatio.

 

value_umts_requested_qos_delivery_erroneous_sdu

a QmiWdsSduErroneousDelivery.

 

value_umts_requested_qos_transfer_delay

a guint32.

 

value_umts_requested_qos_traffic_handling_priority

a guint32.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if value +was successfully set, FALSE otherwise.

+
+

Since: 1.18

+
+
+
+

qmi_message_wds_modify_profile_input_get_secondary_ipv4_dns_address ()

+
gboolean
+qmi_message_wds_modify_profile_input_get_secondary_ipv4_dns_address
+                               (QmiMessageWdsModifyProfileInput *self,
+                                guint32 *value_secondary_ipv4_dns_address,
+                                GError **error);
+

Get the 'Secondary IPv4 DNS Address' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageWdsModifyProfileInput.

 

value_secondary_ipv4_dns_address

a placeholder for the output guint32, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.18

+
+
+
+

qmi_message_wds_modify_profile_input_set_secondary_ipv4_dns_address ()

+
gboolean
+qmi_message_wds_modify_profile_input_set_secondary_ipv4_dns_address
+                               (QmiMessageWdsModifyProfileInput *self,
+                                guint32 value_secondary_ipv4_dns_address,
+                                GError **error);
+

Set the 'Secondary IPv4 DNS Address' field in the message.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageWdsModifyProfileInput.

 

value_secondary_ipv4_dns_address

a guint32.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if value +was successfully set, FALSE otherwise.

+
+

Since: 1.18

+
+
+
+

qmi_message_wds_modify_profile_input_get_primary_ipv4_dns_address ()

+
gboolean
+qmi_message_wds_modify_profile_input_get_primary_ipv4_dns_address
+                               (QmiMessageWdsModifyProfileInput *self,
+                                guint32 *value_primary_ipv4_dns_address,
+                                GError **error);
+

Get the 'Primary IPv4 DNS Address' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageWdsModifyProfileInput.

 

value_primary_ipv4_dns_address

a placeholder for the output guint32, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.18

+
+
+
+

qmi_message_wds_modify_profile_input_set_primary_ipv4_dns_address ()

+
gboolean
+qmi_message_wds_modify_profile_input_set_primary_ipv4_dns_address
+                               (QmiMessageWdsModifyProfileInput *self,
+                                guint32 value_primary_ipv4_dns_address,
+                                GError **error);
+

Set the 'Primary IPv4 DNS Address' field in the message.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageWdsModifyProfileInput.

 

value_primary_ipv4_dns_address

a guint32.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if value +was successfully set, FALSE otherwise.

+
+

Since: 1.18

+
+
+
+

qmi_message_wds_modify_profile_input_get_apn_name ()

+
gboolean
+qmi_message_wds_modify_profile_input_get_apn_name
+                               (QmiMessageWdsModifyProfileInput *self,
+                                const gchar **value_apn_name,
+                                GError **error);
+

Get the 'APN Name' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageWdsModifyProfileInput.

 

value_apn_name

a placeholder for the output constant string, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.18

+
+
+
+

qmi_message_wds_modify_profile_input_set_apn_name ()

+
gboolean
+qmi_message_wds_modify_profile_input_set_apn_name
+                               (QmiMessageWdsModifyProfileInput *self,
+                                const gchar *value_apn_name,
+                                GError **error);
+

Set the 'APN Name' field in the message.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageWdsModifyProfileInput.

 

value_apn_name

a constant string.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if value +was successfully set, FALSE otherwise.

+
+

Since: 1.18

+
+
+
+

qmi_message_wds_modify_profile_input_get_pdp_data_compression_type ()

+
gboolean
+qmi_message_wds_modify_profile_input_get_pdp_data_compression_type
+                               (QmiMessageWdsModifyProfileInput *self,
+                                QmiWdsPdpDataCompressionType *value_pdp_data_compression_type,
+                                GError **error);
+

Get the 'PDP Data Compression Type' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageWdsModifyProfileInput.

 

value_pdp_data_compression_type

a placeholder for the output QmiWdsPdpDataCompressionType, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.18

+
+
+
+

qmi_message_wds_modify_profile_input_set_pdp_data_compression_type ()

+
gboolean
+qmi_message_wds_modify_profile_input_set_pdp_data_compression_type
+                               (QmiMessageWdsModifyProfileInput *self,
+                                QmiWdsPdpDataCompressionType value_pdp_data_compression_type,
+                                GError **error);
+

Set the 'PDP Data Compression Type' field in the message.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageWdsModifyProfileInput.

 

value_pdp_data_compression_type

a QmiWdsPdpDataCompressionType.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if value +was successfully set, FALSE otherwise.

+
+

Since: 1.18

+
+
+
+

qmi_message_wds_modify_profile_input_get_pdp_header_compression_type ()

+
gboolean
+qmi_message_wds_modify_profile_input_get_pdp_header_compression_type
+                               (QmiMessageWdsModifyProfileInput *self,
+                                QmiWdsPdpHeaderCompressionType *value_pdp_header_compression_type,
+                                GError **error);
+

Get the 'PDP Header Compression Type' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageWdsModifyProfileInput.

 

value_pdp_header_compression_type

a placeholder for the output QmiWdsPdpHeaderCompressionType, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.18

+
+
+
+

qmi_message_wds_modify_profile_input_set_pdp_header_compression_type ()

+
gboolean
+qmi_message_wds_modify_profile_input_set_pdp_header_compression_type
+                               (QmiMessageWdsModifyProfileInput *self,
+                                QmiWdsPdpHeaderCompressionType value_pdp_header_compression_type,
+                                GError **error);
+

Set the 'PDP Header Compression Type' field in the message.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageWdsModifyProfileInput.

 

value_pdp_header_compression_type

a QmiWdsPdpHeaderCompressionType.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if value +was successfully set, FALSE otherwise.

+
+

Since: 1.18

+
+
+
+

qmi_message_wds_modify_profile_input_get_pdp_type ()

+
gboolean
+qmi_message_wds_modify_profile_input_get_pdp_type
+                               (QmiMessageWdsModifyProfileInput *self,
+                                QmiWdsPdpType *value_pdp_type,
+                                GError **error);
+

Get the 'PDP Type' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageWdsModifyProfileInput.

 

value_pdp_type

a placeholder for the output QmiWdsPdpType, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.18

+
+
+
+

qmi_message_wds_modify_profile_input_set_pdp_type ()

+
gboolean
+qmi_message_wds_modify_profile_input_set_pdp_type
+                               (QmiMessageWdsModifyProfileInput *self,
+                                QmiWdsPdpType value_pdp_type,
+                                GError **error);
+

Set the 'PDP Type' field in the message.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageWdsModifyProfileInput.

 

value_pdp_type

a QmiWdsPdpType.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if value +was successfully set, FALSE otherwise.

+
+

Since: 1.18

+
+
+
+

qmi_message_wds_modify_profile_input_get_profile_name ()

+
gboolean
+qmi_message_wds_modify_profile_input_get_profile_name
+                               (QmiMessageWdsModifyProfileInput *self,
+                                const gchar **value_profile_name,
+                                GError **error);
+

Get the 'Profile Name' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageWdsModifyProfileInput.

 

value_profile_name

a placeholder for the output constant string, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.18

+
+
+
+

qmi_message_wds_modify_profile_input_set_profile_name ()

+
gboolean
+qmi_message_wds_modify_profile_input_set_profile_name
+                               (QmiMessageWdsModifyProfileInput *self,
+                                const gchar *value_profile_name,
+                                GError **error);
+

Set the 'Profile Name' field in the message.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageWdsModifyProfileInput.

 

value_profile_name

a constant string.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if value +was successfully set, FALSE otherwise.

+
+

Since: 1.18

+
+
+
+

qmi_message_wds_modify_profile_input_get_profile_identifier ()

+
gboolean
+qmi_message_wds_modify_profile_input_get_profile_identifier
+                               (QmiMessageWdsModifyProfileInput *self,
+                                QmiWdsProfileType *value_profile_identifier_profile_type,
+                                guint8 *value_profile_identifier_profile_index,
+                                GError **error);
+

Get the 'Profile Identifier' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + + + + + + +

self

a QmiMessageWdsModifyProfileInput.

 

value_profile_identifier_profile_type

a placeholder for the output QmiWdsProfileType, or NULL if not required.

 

value_profile_identifier_profile_index

a placeholder for the output guint8, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.18

+
+
+
+

qmi_message_wds_modify_profile_input_set_profile_identifier ()

+
gboolean
+qmi_message_wds_modify_profile_input_set_profile_identifier
+                               (QmiMessageWdsModifyProfileInput *self,
+                                QmiWdsProfileType value_profile_identifier_profile_type,
+                                guint8 value_profile_identifier_profile_index,
+                                GError **error);
+

Set the 'Profile Identifier' field in the message.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + + + + + + +

self

a QmiMessageWdsModifyProfileInput.

 

value_profile_identifier_profile_type

a QmiWdsProfileType.

 

value_profile_identifier_profile_index

a guint8.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if value +was successfully set, FALSE otherwise.

+
+

Since: 1.18

+
+
+
+

qmi_message_wds_modify_profile_output_ref ()

+
QmiMessageWdsModifyProfileOutput *
+qmi_message_wds_modify_profile_output_ref
+                               (QmiMessageWdsModifyProfileOutput *self);
+

Atomically increments the reference count of self + by one.

+
+

Parameters

+
+++++ + + + + + +

self

a QmiMessageWdsModifyProfileOutput.

 
+
+
+

Returns

+

the new reference to self +.

+
+

Since: 1.18

+
+
+
+

qmi_message_wds_modify_profile_output_unref ()

+
void
+qmi_message_wds_modify_profile_output_unref
+                               (QmiMessageWdsModifyProfileOutput *self);
+

Atomically decrements the reference count of self + by one. +If the reference count drops to 0, self + is completely disposed.

+
+

Parameters

+
+++++ + + + + + +

self

a QmiMessageWdsModifyProfileOutput.

 
+
+

Since: 1.18

+
+
+
+

qmi_message_wds_modify_profile_output_get_result ()

+
gboolean
+qmi_message_wds_modify_profile_output_get_result
+                               (QmiMessageWdsModifyProfileOutput *self,
+                                GError **error);
+

Get the result of the QMI operation.

+
+

Parameters

+
+++++ + + + + + + + + + + + + +

self

a QmiMessageWdsModifyProfileOutput.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the QMI operation succeeded, FALSE if error +is set.

+
+

Since: 1.18

+
+
+
+

qmi_message_wds_modify_profile_output_get_extended_error_code ()

+
gboolean
+qmi_message_wds_modify_profile_output_get_extended_error_code
+                               (QmiMessageWdsModifyProfileOutput *self,
+                                QmiWdsDsProfileError *value_extended_error_code,
+                                GError **error);
+

Get the 'Extended Error Code' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageWdsModifyProfileOutput.

 

value_extended_error_code

a placeholder for the output QmiWdsDsProfileError, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.18

+
+
+
+

qmi_client_wds_modify_profile ()

+
void
+qmi_client_wds_modify_profile (QmiClientWds *self,
+                               QmiMessageWdsModifyProfileInput *input,
+                               guint timeout,
+                               GCancellable *cancellable,
+                               GAsyncReadyCallback callback,
+                               gpointer user_data);
+

Asynchronously sends a Modify Profile request to the device.

+

When the operation is finished, callback + will be invoked in the thread-default main loop of the thread you are calling this method from.

+

You can then call qmi_client_wds_modify_profile_finish() to get the result of the operation.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

self

a QmiClientWds.

 

input

a QmiMessageWdsModifyProfileInput.

 

timeout

maximum time to wait for the method to complete, in seconds.

 

cancellable

a GCancellable or NULL.

 

callback

a GAsyncReadyCallback to call when the request is satisfied.

 

user_data

user data to pass to callback +.

 
+
+

Since: 1.18

+
+
+
+

qmi_client_wds_modify_profile_finish ()

+
QmiMessageWdsModifyProfileOutput *
+qmi_client_wds_modify_profile_finish (QmiClientWds *self,
+                                      GAsyncResult *res,
+                                      GError **error);
+

Finishes an async operation started with qmi_client_wds_modify_profile().

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiClientWds.

 

res

the GAsyncResult obtained from the GAsyncReadyCallback passed to qmi_client_wds_modify_profile().

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

a QmiMessageWdsModifyProfileOutput, or NULL if error +is set. The returned value should be freed with qmi_message_wds_modify_profile_output_unref().

+
+

Since: 1.18

+
+
+
+

Types and Values

+
+

QmiMessageWdsModifyProfileInput

+
typedef struct _QmiMessageWdsModifyProfileInput QmiMessageWdsModifyProfileInput;
+

The QmiMessageWdsModifyProfileInput structure contains private data and should only be accessed +using the provided API.

+

Since: 1.18

+
+
+
+

QmiMessageWdsModifyProfileOutput

+
typedef struct _QmiMessageWdsModifyProfileOutput QmiMessageWdsModifyProfileOutput;
+

The QmiMessageWdsModifyProfileOutput structure contains private data and should only be accessed +using the provided API.

+

Since: 1.18

+
+
+
+ + + \ No newline at end of file diff -Nru libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-WDS-Packet-Service-Status.html libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-WDS-Packet-Service-Status.html --- libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-WDS-Packet-Service-Status.html 2017-03-22 12:28:28.000000000 +0100 +++ libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-WDS-Packet-Service-Status.html 1970-01-01 01:00:00.000000000 +0100 @@ -1,424 +0,0 @@ - - - - -WDS Packet Service Status: libqmi-glib Reference Manual - - - - - - - - - - - - - - - - -
-
-
- - -
-

WDS Packet Service Status

-

WDS Packet Service Status

-
- -
-

Types and Values

- -
-
-

Object Hierarchy

-
    GBoxed
-    ╰── QmiIndicationWdsPacketServiceStatusOutput
-
-
-
-

Description

-
-
-

Functions

-
-

qmi_indication_wds_packet_service_status_output_ref ()

-
QmiIndicationWdsPacketServiceStatusOutput *
-qmi_indication_wds_packet_service_status_output_ref
-                               (QmiIndicationWdsPacketServiceStatusOutput *self);
-

Atomically increments the reference count of self - by one.

-
-

Parameters

-
----- - - - - - -

self

a QmiIndicationWdsPacketServiceStatusOutput.

 
-
-
-

Returns

-

the new reference to self -.

-
-

Since: 1.14

-
-
-
-

qmi_indication_wds_packet_service_status_output_unref ()

-
void
-qmi_indication_wds_packet_service_status_output_unref
-                               (QmiIndicationWdsPacketServiceStatusOutput *self);
-

Atomically decrements the reference count of self - by one. -If the reference count drops to 0, self - is completely disposed.

-
-

Parameters

-
----- - - - - - -

self

a QmiIndicationWdsPacketServiceStatusOutput.

 
-
-

Since: 1.14

-
-
-
-

qmi_indication_wds_packet_service_status_output_get_extended_technology_preference ()

-
gboolean
-qmi_indication_wds_packet_service_status_output_get_extended_technology_preference
-                               (QmiIndicationWdsPacketServiceStatusOutput *self,
-                                QmiWdsExtendedTechnologyPreference *value_extended_technology_preference,
-                                GError **error);
-

Get the 'Extended Technology Preference' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiIndicationWdsPacketServiceStatusOutput.

 

value_extended_technology_preference

a placeholder for the output QmiWdsExtendedTechnologyPreference, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.14

-
-
-
-

qmi_indication_wds_packet_service_status_output_get_ip_family ()

-
gboolean
-qmi_indication_wds_packet_service_status_output_get_ip_family
-                               (QmiIndicationWdsPacketServiceStatusOutput *self,
-                                QmiWdsIpFamily *value_ip_family,
-                                GError **error);
-

Get the 'IP Family' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiIndicationWdsPacketServiceStatusOutput.

 

value_ip_family

a placeholder for the output QmiWdsIpFamily, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.14

-
-
-
-

qmi_indication_wds_packet_service_status_output_get_verbose_call_end_reason ()

-
gboolean
-qmi_indication_wds_packet_service_status_output_get_verbose_call_end_reason
-                               (QmiIndicationWdsPacketServiceStatusOutput *self,
-                                QmiWdsVerboseCallEndReasonType *value_verbose_call_end_reason_type,
-                                gint16 *value_verbose_call_end_reason_reason,
-                                GError **error);
-

Get the 'Verbose Call End Reason' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - - - - - - -

self

a QmiIndicationWdsPacketServiceStatusOutput.

 

value_verbose_call_end_reason_type

a placeholder for the output QmiWdsVerboseCallEndReasonType, or NULL if not required.

 

value_verbose_call_end_reason_reason

a placeholder for the output gint16, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.14

-
-
-
-

qmi_indication_wds_packet_service_status_output_get_call_end_reason ()

-
gboolean
-qmi_indication_wds_packet_service_status_output_get_call_end_reason
-                               (QmiIndicationWdsPacketServiceStatusOutput *self,
-                                QmiWdsCallEndReason *value_call_end_reason,
-                                GError **error);
-

Get the 'Call End Reason' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiIndicationWdsPacketServiceStatusOutput.

 

value_call_end_reason

a placeholder for the output QmiWdsCallEndReason, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.14

-
-
-
-

qmi_indication_wds_packet_service_status_output_get_connection_status ()

-
gboolean
-qmi_indication_wds_packet_service_status_output_get_connection_status
-                               (QmiIndicationWdsPacketServiceStatusOutput *self,
-                                QmiWdsConnectionStatus *value_connection_status_status,
-                                gboolean *value_connection_status_reconfiguration_required,
-                                GError **error);
-

Get the 'Connection Status' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - - - - - - -

self

a QmiIndicationWdsPacketServiceStatusOutput.

 

value_connection_status_status

a placeholder for the output QmiWdsConnectionStatus, or NULL if not required.

 

value_connection_status_reconfiguration_required

a placeholder for the output gboolean, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.14

-
-
-
-

Types and Values

-
-

QmiIndicationWdsPacketServiceStatusOutput

-
typedef struct _QmiIndicationWdsPacketServiceStatusOutput QmiIndicationWdsPacketServiceStatusOutput;
-

The QmiIndicationWdsPacketServiceStatusOutput structure contains private data and should only be accessed -using the provided API.

-

Since: 1.14

-
-
-
- - - \ No newline at end of file diff -Nru libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-WDS-Packet-Service-Status-indication.html libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-WDS-Packet-Service-Status-indication.html --- libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-WDS-Packet-Service-Status-indication.html 1970-01-01 01:00:00.000000000 +0100 +++ libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-WDS-Packet-Service-Status-indication.html 2019-01-08 15:19:02.000000000 +0100 @@ -0,0 +1,424 @@ + + + + +WDS Packet Service Status indication: libqmi-glib Reference Manual + + + + + + + + + + + + + + + + +
+
+
+ + +
+

WDS Packet Service Status indication

+

WDS Packet Service Status indication

+
+ +
+

Types and Values

+ +
+
+

Object Hierarchy

+
    GBoxed
+    ╰── QmiIndicationWdsPacketServiceStatusOutput
+
+
+
+

Description

+
+
+

Functions

+
+

qmi_indication_wds_packet_service_status_output_ref ()

+
QmiIndicationWdsPacketServiceStatusOutput *
+qmi_indication_wds_packet_service_status_output_ref
+                               (QmiIndicationWdsPacketServiceStatusOutput *self);
+

Atomically increments the reference count of self + by one.

+
+

Parameters

+
+++++ + + + + + +

self

a QmiIndicationWdsPacketServiceStatusOutput.

 
+
+
+

Returns

+

the new reference to self +.

+
+

Since: 1.14

+
+
+
+

qmi_indication_wds_packet_service_status_output_unref ()

+
void
+qmi_indication_wds_packet_service_status_output_unref
+                               (QmiIndicationWdsPacketServiceStatusOutput *self);
+

Atomically decrements the reference count of self + by one. +If the reference count drops to 0, self + is completely disposed.

+
+

Parameters

+
+++++ + + + + + +

self

a QmiIndicationWdsPacketServiceStatusOutput.

 
+
+

Since: 1.14

+
+
+
+

qmi_indication_wds_packet_service_status_output_get_extended_technology_preference ()

+
gboolean
+qmi_indication_wds_packet_service_status_output_get_extended_technology_preference
+                               (QmiIndicationWdsPacketServiceStatusOutput *self,
+                                QmiWdsExtendedTechnologyPreference *value_extended_technology_preference,
+                                GError **error);
+

Get the 'Extended Technology Preference' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiIndicationWdsPacketServiceStatusOutput.

 

value_extended_technology_preference

a placeholder for the output QmiWdsExtendedTechnologyPreference, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.14

+
+
+
+

qmi_indication_wds_packet_service_status_output_get_ip_family ()

+
gboolean
+qmi_indication_wds_packet_service_status_output_get_ip_family
+                               (QmiIndicationWdsPacketServiceStatusOutput *self,
+                                QmiWdsIpFamily *value_ip_family,
+                                GError **error);
+

Get the 'IP Family' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiIndicationWdsPacketServiceStatusOutput.

 

value_ip_family

a placeholder for the output QmiWdsIpFamily, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.14

+
+
+
+

qmi_indication_wds_packet_service_status_output_get_verbose_call_end_reason ()

+
gboolean
+qmi_indication_wds_packet_service_status_output_get_verbose_call_end_reason
+                               (QmiIndicationWdsPacketServiceStatusOutput *self,
+                                QmiWdsVerboseCallEndReasonType *value_verbose_call_end_reason_type,
+                                gint16 *value_verbose_call_end_reason_reason,
+                                GError **error);
+

Get the 'Verbose Call End Reason' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + + + + + + +

self

a QmiIndicationWdsPacketServiceStatusOutput.

 

value_verbose_call_end_reason_type

a placeholder for the output QmiWdsVerboseCallEndReasonType, or NULL if not required.

 

value_verbose_call_end_reason_reason

a placeholder for the output gint16, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.14

+
+
+
+

qmi_indication_wds_packet_service_status_output_get_call_end_reason ()

+
gboolean
+qmi_indication_wds_packet_service_status_output_get_call_end_reason
+                               (QmiIndicationWdsPacketServiceStatusOutput *self,
+                                QmiWdsCallEndReason *value_call_end_reason,
+                                GError **error);
+

Get the 'Call End Reason' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiIndicationWdsPacketServiceStatusOutput.

 

value_call_end_reason

a placeholder for the output QmiWdsCallEndReason, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.14

+
+
+
+

qmi_indication_wds_packet_service_status_output_get_connection_status ()

+
gboolean
+qmi_indication_wds_packet_service_status_output_get_connection_status
+                               (QmiIndicationWdsPacketServiceStatusOutput *self,
+                                QmiWdsConnectionStatus *value_connection_status_status,
+                                gboolean *value_connection_status_reconfiguration_required,
+                                GError **error);
+

Get the 'Connection Status' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + + + + + + +

self

a QmiIndicationWdsPacketServiceStatusOutput.

 

value_connection_status_status

a placeholder for the output QmiWdsConnectionStatus, or NULL if not required.

 

value_connection_status_reconfiguration_required

a placeholder for the output gboolean, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.14

+
+
+
+

Types and Values

+
+

QmiIndicationWdsPacketServiceStatusOutput

+
typedef struct _QmiIndicationWdsPacketServiceStatusOutput QmiIndicationWdsPacketServiceStatusOutput;
+

The QmiIndicationWdsPacketServiceStatusOutput structure contains private data and should only be accessed +using the provided API.

+

Since: 1.14

+
+
+
+ + + \ No newline at end of file diff -Nru libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-WDS-Reset.html libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-WDS-Reset.html --- libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-WDS-Reset.html 2017-03-22 12:28:29.000000000 +0100 +++ libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-WDS-Reset.html 1970-01-01 01:00:00.000000000 +0100 @@ -1,317 +0,0 @@ - - - - -WDS Reset: libqmi-glib Reference Manual - - - - - - - - - - - - - - - - -
-
-
- - -
-

WDS Reset

-

WDS Reset

-
-
-

Functions

- -
-
-

Types and Values

-
---- - - - - -
 QmiMessageWdsResetOutput
-
-
-

Object Hierarchy

-
    GBoxed
-    ╰── QmiMessageWdsResetOutput
-
-
-
-

Description

-
-
-

Functions

-
-

qmi_message_wds_reset_output_ref ()

-
QmiMessageWdsResetOutput *
-qmi_message_wds_reset_output_ref (QmiMessageWdsResetOutput *self);
-

Atomically increments the reference count of self - by one.

-
-

Parameters

-
----- - - - - - -

self

a QmiMessageWdsResetOutput.

 
-
-
-

Returns

-

the new reference to self -.

-
-

Since: 1.0

-
-
-
-

qmi_message_wds_reset_output_unref ()

-
void
-qmi_message_wds_reset_output_unref (QmiMessageWdsResetOutput *self);
-

Atomically decrements the reference count of self - by one. -If the reference count drops to 0, self - is completely disposed.

-
-

Parameters

-
----- - - - - - -

self

a QmiMessageWdsResetOutput.

 
-
-

Since: 1.0

-
-
-
-

qmi_message_wds_reset_output_get_result ()

-
gboolean
-qmi_message_wds_reset_output_get_result
-                               (QmiMessageWdsResetOutput *self,
-                                GError **error);
-

Get the result of the QMI operation.

-
-

Parameters

-
----- - - - - - - - - - - - - -

self

a QmiMessageWdsResetOutput.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the QMI operation succeeded, FALSE if error -is set.

-
-

Since: 1.0

-
-
-
-

qmi_client_wds_reset ()

-
void
-qmi_client_wds_reset (QmiClientWds *self,
-                      gpointer unused,
-                      guint timeout,
-                      GCancellable *cancellable,
-                      GAsyncReadyCallback callback,
-                      gpointer user_data);
-

Asynchronously sends a Reset request to the device.

-

When the operation is finished, callback - will be invoked in the thread-default main loop of the thread you are calling this method from.

-

You can then call qmi_client_wds_reset_finish() to get the result of the operation.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

self

a QmiClientWds.

 

unused

NULL. This message doesn't have any input bundle.

 

timeout

maximum time to wait for the method to complete, in seconds.

 

cancellable

a GCancellable or NULL.

 

callback

a GAsyncReadyCallback to call when the request is satisfied.

 

user_data

user data to pass to callback -.

 
-
-

Since: 1.0

-
-
-
-

qmi_client_wds_reset_finish ()

-
QmiMessageWdsResetOutput *
-qmi_client_wds_reset_finish (QmiClientWds *self,
-                             GAsyncResult *res,
-                             GError **error);
-

Finishes an async operation started with qmi_client_wds_reset().

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiClientWds.

 

res

the GAsyncResult obtained from the GAsyncReadyCallback passed to qmi_client_wds_reset().

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

a QmiMessageWdsResetOutput, or NULL if error -is set. The returned value should be freed with qmi_message_wds_reset_output_unref().

-
-

Since: 1.0

-
-
-
-

Types and Values

-
-

QmiMessageWdsResetOutput

-
typedef struct _QmiMessageWdsResetOutput QmiMessageWdsResetOutput;
-

The QmiMessageWdsResetOutput structure contains private data and should only be accessed -using the provided API.

-

Since: 1.0

-
-
-
- - - \ No newline at end of file diff -Nru libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-WDS-Reset-request.html libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-WDS-Reset-request.html --- libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-WDS-Reset-request.html 1970-01-01 01:00:00.000000000 +0100 +++ libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-WDS-Reset-request.html 2019-01-08 15:19:02.000000000 +0100 @@ -0,0 +1,317 @@ + + + + +WDS Reset request: libqmi-glib Reference Manual + + + + + + + + + + + + + + + + +
+
+
+ + +
+

WDS Reset request

+

WDS Reset request

+
+
+

Functions

+ +
+
+

Types and Values

+
++++ + + + + +
 QmiMessageWdsResetOutput
+
+
+

Object Hierarchy

+
    GBoxed
+    ╰── QmiMessageWdsResetOutput
+
+
+
+

Description

+
+
+

Functions

+
+

qmi_message_wds_reset_output_ref ()

+
QmiMessageWdsResetOutput *
+qmi_message_wds_reset_output_ref (QmiMessageWdsResetOutput *self);
+

Atomically increments the reference count of self + by one.

+
+

Parameters

+
+++++ + + + + + +

self

a QmiMessageWdsResetOutput.

 
+
+
+

Returns

+

the new reference to self +.

+
+

Since: 1.0

+
+
+
+

qmi_message_wds_reset_output_unref ()

+
void
+qmi_message_wds_reset_output_unref (QmiMessageWdsResetOutput *self);
+

Atomically decrements the reference count of self + by one. +If the reference count drops to 0, self + is completely disposed.

+
+

Parameters

+
+++++ + + + + + +

self

a QmiMessageWdsResetOutput.

 
+
+

Since: 1.0

+
+
+
+

qmi_message_wds_reset_output_get_result ()

+
gboolean
+qmi_message_wds_reset_output_get_result
+                               (QmiMessageWdsResetOutput *self,
+                                GError **error);
+

Get the result of the QMI operation.

+
+

Parameters

+
+++++ + + + + + + + + + + + + +

self

a QmiMessageWdsResetOutput.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the QMI operation succeeded, FALSE if error +is set.

+
+

Since: 1.0

+
+
+
+

qmi_client_wds_reset ()

+
void
+qmi_client_wds_reset (QmiClientWds *self,
+                      gpointer unused,
+                      guint timeout,
+                      GCancellable *cancellable,
+                      GAsyncReadyCallback callback,
+                      gpointer user_data);
+

Asynchronously sends a Reset request to the device.

+

When the operation is finished, callback + will be invoked in the thread-default main loop of the thread you are calling this method from.

+

You can then call qmi_client_wds_reset_finish() to get the result of the operation.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

self

a QmiClientWds.

 

unused

NULL. This message doesn't have any input bundle.

 

timeout

maximum time to wait for the method to complete, in seconds.

 

cancellable

a GCancellable or NULL.

 

callback

a GAsyncReadyCallback to call when the request is satisfied.

 

user_data

user data to pass to callback +.

 
+
+

Since: 1.0

+
+
+
+

qmi_client_wds_reset_finish ()

+
QmiMessageWdsResetOutput *
+qmi_client_wds_reset_finish (QmiClientWds *self,
+                             GAsyncResult *res,
+                             GError **error);
+

Finishes an async operation started with qmi_client_wds_reset().

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiClientWds.

 

res

the GAsyncResult obtained from the GAsyncReadyCallback passed to qmi_client_wds_reset().

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

a QmiMessageWdsResetOutput, or NULL if error +is set. The returned value should be freed with qmi_message_wds_reset_output_unref().

+
+

Since: 1.0

+
+
+
+

Types and Values

+
+

QmiMessageWdsResetOutput

+
typedef struct _QmiMessageWdsResetOutput QmiMessageWdsResetOutput;
+

The QmiMessageWdsResetOutput structure contains private data and should only be accessed +using the provided API.

+

Since: 1.0

+
+
+
+ + + \ No newline at end of file diff -Nru libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-WDS-Set-Autoconnect-Settings.html libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-WDS-Set-Autoconnect-Settings.html --- libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-WDS-Set-Autoconnect-Settings.html 2017-03-22 12:28:29.000000000 +0100 +++ libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-WDS-Set-Autoconnect-Settings.html 1970-01-01 01:00:00.000000000 +0100 @@ -1,634 +0,0 @@ - - - - -WDS Set Autoconnect Settings: libqmi-glib Reference Manual - - - - - - - - - - - - - - - - -
-
-
- - -
-

WDS Set Autoconnect Settings

-

WDS Set Autoconnect Settings

-
- -
-

Types and Values

- -
-
-

Object Hierarchy

-
    GBoxed
-    ├── QmiMessageWdsSetAutoconnectSettingsInput
-    ╰── QmiMessageWdsSetAutoconnectSettingsOutput
-
-
-
-

Description

-
-
-

Functions

-
-

qmi_message_wds_set_autoconnect_settings_input_new ()

-
QmiMessageWdsSetAutoconnectSettingsInput *
-qmi_message_wds_set_autoconnect_settings_input_new
-                               (void);
-

Allocates a new QmiMessageWdsSetAutoconnectSettingsInput.

-
-

Returns

-

the newly created QmiMessageWdsSetAutoconnectSettingsInput. The returned value should be freed with qmi_message_wds_set_autoconnect_settings_input_unref().

-
-

Since: 1.14

-
-
-
-

qmi_message_wds_set_autoconnect_settings_input_ref ()

-
QmiMessageWdsSetAutoconnectSettingsInput *
-qmi_message_wds_set_autoconnect_settings_input_ref
-                               (QmiMessageWdsSetAutoconnectSettingsInput *self);
-

Atomically increments the reference count of self - by one.

-
-

Parameters

-
----- - - - - - -

self

a QmiMessageWdsSetAutoconnectSettingsInput.

 
-
-
-

Returns

-

the new reference to self -.

-
-

Since: 1.14

-
-
-
-

qmi_message_wds_set_autoconnect_settings_input_unref ()

-
void
-qmi_message_wds_set_autoconnect_settings_input_unref
-                               (QmiMessageWdsSetAutoconnectSettingsInput *self);
-

Atomically decrements the reference count of self - by one. -If the reference count drops to 0, self - is completely disposed.

-
-

Parameters

-
----- - - - - - -

self

a QmiMessageWdsSetAutoconnectSettingsInput.

 
-
-

Since: 1.14

-
-
-
-

qmi_message_wds_set_autoconnect_settings_input_get_roaming ()

-
gboolean
-qmi_message_wds_set_autoconnect_settings_input_get_roaming
-                               (QmiMessageWdsSetAutoconnectSettingsInput *self,
-                                QmiWdsAutoconnectSettingRoaming *value_roaming,
-                                GError **error);
-

Get the 'Roaming' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessageWdsSetAutoconnectSettingsInput.

 

value_roaming

a placeholder for the output QmiWdsAutoconnectSettingRoaming, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.14

-
-
-
-

qmi_message_wds_set_autoconnect_settings_input_set_roaming ()

-
gboolean
-qmi_message_wds_set_autoconnect_settings_input_set_roaming
-                               (QmiMessageWdsSetAutoconnectSettingsInput *self,
-                                QmiWdsAutoconnectSettingRoaming value_roaming,
-                                GError **error);
-

Set the 'Roaming' field in the message.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessageWdsSetAutoconnectSettingsInput.

 

value_roaming

a QmiWdsAutoconnectSettingRoaming.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if value -was successfully set, FALSE otherwise.

-
-

Since: 1.14

-
-
-
-

qmi_message_wds_set_autoconnect_settings_input_get_status ()

-
gboolean
-qmi_message_wds_set_autoconnect_settings_input_get_status
-                               (QmiMessageWdsSetAutoconnectSettingsInput *self,
-                                QmiWdsAutoconnectSetting *value_status,
-                                GError **error);
-

Get the 'Status' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessageWdsSetAutoconnectSettingsInput.

 

value_status

a placeholder for the output QmiWdsAutoconnectSetting, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.14

-
-
-
-

qmi_message_wds_set_autoconnect_settings_input_set_status ()

-
gboolean
-qmi_message_wds_set_autoconnect_settings_input_set_status
-                               (QmiMessageWdsSetAutoconnectSettingsInput *self,
-                                QmiWdsAutoconnectSetting value_status,
-                                GError **error);
-

Set the 'Status' field in the message.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessageWdsSetAutoconnectSettingsInput.

 

value_status

a QmiWdsAutoconnectSetting.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if value -was successfully set, FALSE otherwise.

-
-

Since: 1.14

-
-
-
-

qmi_message_wds_set_autoconnect_settings_output_ref ()

-
QmiMessageWdsSetAutoconnectSettingsOutput *
-qmi_message_wds_set_autoconnect_settings_output_ref
-                               (QmiMessageWdsSetAutoconnectSettingsOutput *self);
-

Atomically increments the reference count of self - by one.

-
-

Parameters

-
----- - - - - - -

self

a QmiMessageWdsSetAutoconnectSettingsOutput.

 
-
-
-

Returns

-

the new reference to self -.

-
-

Since: 1.14

-
-
-
-

qmi_message_wds_set_autoconnect_settings_output_unref ()

-
void
-qmi_message_wds_set_autoconnect_settings_output_unref
-                               (QmiMessageWdsSetAutoconnectSettingsOutput *self);
-

Atomically decrements the reference count of self - by one. -If the reference count drops to 0, self - is completely disposed.

-
-

Parameters

-
----- - - - - - -

self

a QmiMessageWdsSetAutoconnectSettingsOutput.

 
-
-

Since: 1.14

-
-
-
-

qmi_message_wds_set_autoconnect_settings_output_get_result ()

-
gboolean
-qmi_message_wds_set_autoconnect_settings_output_get_result
-                               (QmiMessageWdsSetAutoconnectSettingsOutput *self,
-                                GError **error);
-

Get the result of the QMI operation.

-
-

Parameters

-
----- - - - - - - - - - - - - -

self

a QmiMessageWdsSetAutoconnectSettingsOutput.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the QMI operation succeeded, FALSE if error -is set.

-
-

Since: 1.14

-
-
-
-

qmi_client_wds_set_autoconnect_settings ()

-
void
-qmi_client_wds_set_autoconnect_settings
-                               (QmiClientWds *self,
-                                QmiMessageWdsSetAutoconnectSettingsInput *input,
-                                guint timeout,
-                                GCancellable *cancellable,
-                                GAsyncReadyCallback callback,
-                                gpointer user_data);
-

Asynchronously sends a Set Autoconnect Settings request to the device.

-

When the operation is finished, callback - will be invoked in the thread-default main loop of the thread you are calling this method from.

-

You can then call qmi_client_wds_set_autoconnect_settings_finish() to get the result of the operation.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

self

a QmiClientWds.

 

input

a QmiMessageWdsSetAutoconnectSettingsInput.

 

timeout

maximum time to wait for the method to complete, in seconds.

 

cancellable

a GCancellable or NULL.

 

callback

a GAsyncReadyCallback to call when the request is satisfied.

 

user_data

user data to pass to callback -.

 
-
-

Since: 1.14

-
-
-
-

qmi_client_wds_set_autoconnect_settings_finish ()

-
QmiMessageWdsSetAutoconnectSettingsOutput *
-qmi_client_wds_set_autoconnect_settings_finish
-                               (QmiClientWds *self,
-                                GAsyncResult *res,
-                                GError **error);
-

Finishes an async operation started with qmi_client_wds_set_autoconnect_settings().

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiClientWds.

 

res

the GAsyncResult obtained from the GAsyncReadyCallback passed to qmi_client_wds_set_autoconnect_settings().

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

a QmiMessageWdsSetAutoconnectSettingsOutput, or NULL if error -is set. The returned value should be freed with qmi_message_wds_set_autoconnect_settings_output_unref().

-
-

Since: 1.14

-
-
-
-

Types and Values

-
-

QmiMessageWdsSetAutoconnectSettingsInput

-
typedef struct _QmiMessageWdsSetAutoconnectSettingsInput QmiMessageWdsSetAutoconnectSettingsInput;
-

The QmiMessageWdsSetAutoconnectSettingsInput structure contains private data and should only be accessed -using the provided API.

-

Since: 1.14

-
-
-
-

QmiMessageWdsSetAutoconnectSettingsOutput

-
typedef struct _QmiMessageWdsSetAutoconnectSettingsOutput QmiMessageWdsSetAutoconnectSettingsOutput;
-

The QmiMessageWdsSetAutoconnectSettingsOutput structure contains private data and should only be accessed -using the provided API.

-

Since: 1.14

-
-
-
- - - \ No newline at end of file diff -Nru libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-WDS-Set-Autoconnect-Settings-request.html libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-WDS-Set-Autoconnect-Settings-request.html --- libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-WDS-Set-Autoconnect-Settings-request.html 1970-01-01 01:00:00.000000000 +0100 +++ libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-WDS-Set-Autoconnect-Settings-request.html 2019-01-08 15:19:02.000000000 +0100 @@ -0,0 +1,634 @@ + + + + +WDS Set Autoconnect Settings request: libqmi-glib Reference Manual + + + + + + + + + + + + + + + + +
+
+
+ + +
+

WDS Set Autoconnect Settings request

+

WDS Set Autoconnect Settings request

+
+ +
+

Types and Values

+ +
+
+

Object Hierarchy

+
    GBoxed
+    ├── QmiMessageWdsSetAutoconnectSettingsInput
+    ╰── QmiMessageWdsSetAutoconnectSettingsOutput
+
+
+
+

Description

+
+
+

Functions

+
+

qmi_message_wds_set_autoconnect_settings_input_new ()

+
QmiMessageWdsSetAutoconnectSettingsInput *
+qmi_message_wds_set_autoconnect_settings_input_new
+                               (void);
+

Allocates a new QmiMessageWdsSetAutoconnectSettingsInput.

+
+

Returns

+

the newly created QmiMessageWdsSetAutoconnectSettingsInput. The returned value should be freed with qmi_message_wds_set_autoconnect_settings_input_unref().

+
+

Since: 1.14

+
+
+
+

qmi_message_wds_set_autoconnect_settings_input_ref ()

+
QmiMessageWdsSetAutoconnectSettingsInput *
+qmi_message_wds_set_autoconnect_settings_input_ref
+                               (QmiMessageWdsSetAutoconnectSettingsInput *self);
+

Atomically increments the reference count of self + by one.

+
+

Parameters

+
+++++ + + + + + +

self

a QmiMessageWdsSetAutoconnectSettingsInput.

 
+
+
+

Returns

+

the new reference to self +.

+
+

Since: 1.14

+
+
+
+

qmi_message_wds_set_autoconnect_settings_input_unref ()

+
void
+qmi_message_wds_set_autoconnect_settings_input_unref
+                               (QmiMessageWdsSetAutoconnectSettingsInput *self);
+

Atomically decrements the reference count of self + by one. +If the reference count drops to 0, self + is completely disposed.

+
+

Parameters

+
+++++ + + + + + +

self

a QmiMessageWdsSetAutoconnectSettingsInput.

 
+
+

Since: 1.14

+
+
+
+

qmi_message_wds_set_autoconnect_settings_input_get_roaming ()

+
gboolean
+qmi_message_wds_set_autoconnect_settings_input_get_roaming
+                               (QmiMessageWdsSetAutoconnectSettingsInput *self,
+                                QmiWdsAutoconnectSettingRoaming *value_roaming,
+                                GError **error);
+

Get the 'Roaming' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageWdsSetAutoconnectSettingsInput.

 

value_roaming

a placeholder for the output QmiWdsAutoconnectSettingRoaming, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.14

+
+
+
+

qmi_message_wds_set_autoconnect_settings_input_set_roaming ()

+
gboolean
+qmi_message_wds_set_autoconnect_settings_input_set_roaming
+                               (QmiMessageWdsSetAutoconnectSettingsInput *self,
+                                QmiWdsAutoconnectSettingRoaming value_roaming,
+                                GError **error);
+

Set the 'Roaming' field in the message.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageWdsSetAutoconnectSettingsInput.

 

value_roaming

a QmiWdsAutoconnectSettingRoaming.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if value +was successfully set, FALSE otherwise.

+
+

Since: 1.14

+
+
+
+

qmi_message_wds_set_autoconnect_settings_input_get_status ()

+
gboolean
+qmi_message_wds_set_autoconnect_settings_input_get_status
+                               (QmiMessageWdsSetAutoconnectSettingsInput *self,
+                                QmiWdsAutoconnectSetting *value_status,
+                                GError **error);
+

Get the 'Status' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageWdsSetAutoconnectSettingsInput.

 

value_status

a placeholder for the output QmiWdsAutoconnectSetting, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.14

+
+
+
+

qmi_message_wds_set_autoconnect_settings_input_set_status ()

+
gboolean
+qmi_message_wds_set_autoconnect_settings_input_set_status
+                               (QmiMessageWdsSetAutoconnectSettingsInput *self,
+                                QmiWdsAutoconnectSetting value_status,
+                                GError **error);
+

Set the 'Status' field in the message.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageWdsSetAutoconnectSettingsInput.

 

value_status

a QmiWdsAutoconnectSetting.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if value +was successfully set, FALSE otherwise.

+
+

Since: 1.14

+
+
+
+

qmi_message_wds_set_autoconnect_settings_output_ref ()

+
QmiMessageWdsSetAutoconnectSettingsOutput *
+qmi_message_wds_set_autoconnect_settings_output_ref
+                               (QmiMessageWdsSetAutoconnectSettingsOutput *self);
+

Atomically increments the reference count of self + by one.

+
+

Parameters

+
+++++ + + + + + +

self

a QmiMessageWdsSetAutoconnectSettingsOutput.

 
+
+
+

Returns

+

the new reference to self +.

+
+

Since: 1.14

+
+
+
+

qmi_message_wds_set_autoconnect_settings_output_unref ()

+
void
+qmi_message_wds_set_autoconnect_settings_output_unref
+                               (QmiMessageWdsSetAutoconnectSettingsOutput *self);
+

Atomically decrements the reference count of self + by one. +If the reference count drops to 0, self + is completely disposed.

+
+

Parameters

+
+++++ + + + + + +

self

a QmiMessageWdsSetAutoconnectSettingsOutput.

 
+
+

Since: 1.14

+
+
+
+

qmi_message_wds_set_autoconnect_settings_output_get_result ()

+
gboolean
+qmi_message_wds_set_autoconnect_settings_output_get_result
+                               (QmiMessageWdsSetAutoconnectSettingsOutput *self,
+                                GError **error);
+

Get the result of the QMI operation.

+
+

Parameters

+
+++++ + + + + + + + + + + + + +

self

a QmiMessageWdsSetAutoconnectSettingsOutput.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the QMI operation succeeded, FALSE if error +is set.

+
+

Since: 1.14

+
+
+
+

qmi_client_wds_set_autoconnect_settings ()

+
void
+qmi_client_wds_set_autoconnect_settings
+                               (QmiClientWds *self,
+                                QmiMessageWdsSetAutoconnectSettingsInput *input,
+                                guint timeout,
+                                GCancellable *cancellable,
+                                GAsyncReadyCallback callback,
+                                gpointer user_data);
+

Asynchronously sends a Set Autoconnect Settings request to the device.

+

When the operation is finished, callback + will be invoked in the thread-default main loop of the thread you are calling this method from.

+

You can then call qmi_client_wds_set_autoconnect_settings_finish() to get the result of the operation.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

self

a QmiClientWds.

 

input

a QmiMessageWdsSetAutoconnectSettingsInput.

 

timeout

maximum time to wait for the method to complete, in seconds.

 

cancellable

a GCancellable or NULL.

 

callback

a GAsyncReadyCallback to call when the request is satisfied.

 

user_data

user data to pass to callback +.

 
+
+

Since: 1.14

+
+
+
+

qmi_client_wds_set_autoconnect_settings_finish ()

+
QmiMessageWdsSetAutoconnectSettingsOutput *
+qmi_client_wds_set_autoconnect_settings_finish
+                               (QmiClientWds *self,
+                                GAsyncResult *res,
+                                GError **error);
+

Finishes an async operation started with qmi_client_wds_set_autoconnect_settings().

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiClientWds.

 

res

the GAsyncResult obtained from the GAsyncReadyCallback passed to qmi_client_wds_set_autoconnect_settings().

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

a QmiMessageWdsSetAutoconnectSettingsOutput, or NULL if error +is set. The returned value should be freed with qmi_message_wds_set_autoconnect_settings_output_unref().

+
+

Since: 1.14

+
+
+
+

Types and Values

+
+

QmiMessageWdsSetAutoconnectSettingsInput

+
typedef struct _QmiMessageWdsSetAutoconnectSettingsInput QmiMessageWdsSetAutoconnectSettingsInput;
+

The QmiMessageWdsSetAutoconnectSettingsInput structure contains private data and should only be accessed +using the provided API.

+

Since: 1.14

+
+
+
+

QmiMessageWdsSetAutoconnectSettingsOutput

+
typedef struct _QmiMessageWdsSetAutoconnectSettingsOutput QmiMessageWdsSetAutoconnectSettingsOutput;
+

The QmiMessageWdsSetAutoconnectSettingsOutput structure contains private data and should only be accessed +using the provided API.

+

Since: 1.14

+
+
+
+ + + \ No newline at end of file diff -Nru libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-WDS-Set-Default-Profile-Num-request.html libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-WDS-Set-Default-Profile-Num-request.html --- libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-WDS-Set-Default-Profile-Num-request.html 1970-01-01 01:00:00.000000000 +0100 +++ libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-WDS-Set-Default-Profile-Num-request.html 2019-01-08 15:19:02.000000000 +0100 @@ -0,0 +1,607 @@ + + + + +WDS Set Default Profile Num request: libqmi-glib Reference Manual + + + + + + + + + + + + + + + + +
+
+
+ + +
+

WDS Set Default Profile Num request

+

WDS Set Default Profile Num request

+
+ +
+

Types and Values

+ +
+
+

Object Hierarchy

+
    GBoxed
+    ├── QmiMessageWdsSetDefaultProfileNumInput
+    ╰── QmiMessageWdsSetDefaultProfileNumOutput
+
+
+
+

Description

+
+
+

Functions

+
+

qmi_message_wds_set_default_profile_num_input_new ()

+
QmiMessageWdsSetDefaultProfileNumInput *
+qmi_message_wds_set_default_profile_num_input_new
+                               (void);
+

Allocates a new QmiMessageWdsSetDefaultProfileNumInput.

+
+

Returns

+

the newly created QmiMessageWdsSetDefaultProfileNumInput. The returned value should be freed with qmi_message_wds_set_default_profile_num_input_unref().

+
+

Since: 1.22

+
+
+
+

qmi_message_wds_set_default_profile_num_input_ref ()

+
QmiMessageWdsSetDefaultProfileNumInput *
+qmi_message_wds_set_default_profile_num_input_ref
+                               (QmiMessageWdsSetDefaultProfileNumInput *self);
+

Atomically increments the reference count of self + by one.

+
+

Parameters

+
+++++ + + + + + +

self

a QmiMessageWdsSetDefaultProfileNumInput.

 
+
+
+

Returns

+

the new reference to self +.

+
+

Since: 1.22

+
+
+
+

qmi_message_wds_set_default_profile_num_input_unref ()

+
void
+qmi_message_wds_set_default_profile_num_input_unref
+                               (QmiMessageWdsSetDefaultProfileNumInput *self);
+

Atomically decrements the reference count of self + by one. +If the reference count drops to 0, self + is completely disposed.

+
+

Parameters

+
+++++ + + + + + +

self

a QmiMessageWdsSetDefaultProfileNumInput.

 
+
+

Since: 1.22

+
+
+
+

qmi_message_wds_set_default_profile_num_input_get_profile_identifier ()

+
gboolean
+qmi_message_wds_set_default_profile_num_input_get_profile_identifier
+                               (QmiMessageWdsSetDefaultProfileNumInput *self,
+                                QmiWdsProfileType *value_profile_identifier_profile_type,
+                                QmiWdsProfileFamily *value_profile_identifier_profile_family,
+                                guint8 *value_profile_identifier_profile_index,
+                                GError **error);
+

Get the 'Profile Identifier' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + + + + + + + + + + + +

self

a QmiMessageWdsSetDefaultProfileNumInput.

 

value_profile_identifier_profile_type

a placeholder for the output QmiWdsProfileType, or NULL if not required.

 

value_profile_identifier_profile_family

a placeholder for the output QmiWdsProfileFamily, or NULL if not required.

 

value_profile_identifier_profile_index

a placeholder for the output guint8, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.22

+
+
+
+

qmi_message_wds_set_default_profile_num_input_set_profile_identifier ()

+
gboolean
+qmi_message_wds_set_default_profile_num_input_set_profile_identifier
+                               (QmiMessageWdsSetDefaultProfileNumInput *self,
+                                QmiWdsProfileType value_profile_identifier_profile_type,
+                                QmiWdsProfileFamily value_profile_identifier_profile_family,
+                                guint8 value_profile_identifier_profile_index,
+                                GError **error);
+

Set the 'Profile Identifier' field in the message.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + + + + + + + + + + + +

self

a QmiMessageWdsSetDefaultProfileNumInput.

 

value_profile_identifier_profile_type

a QmiWdsProfileType.

 

value_profile_identifier_profile_family

a QmiWdsProfileFamily.

 

value_profile_identifier_profile_index

a guint8.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if value +was successfully set, FALSE otherwise.

+
+

Since: 1.22

+
+
+
+

qmi_message_wds_set_default_profile_num_output_ref ()

+
QmiMessageWdsSetDefaultProfileNumOutput *
+qmi_message_wds_set_default_profile_num_output_ref
+                               (QmiMessageWdsSetDefaultProfileNumOutput *self);
+

Atomically increments the reference count of self + by one.

+
+

Parameters

+
+++++ + + + + + +

self

a QmiMessageWdsSetDefaultProfileNumOutput.

 
+
+
+

Returns

+

the new reference to self +.

+
+

Since: 1.22

+
+
+
+

qmi_message_wds_set_default_profile_num_output_unref ()

+
void
+qmi_message_wds_set_default_profile_num_output_unref
+                               (QmiMessageWdsSetDefaultProfileNumOutput *self);
+

Atomically decrements the reference count of self + by one. +If the reference count drops to 0, self + is completely disposed.

+
+

Parameters

+
+++++ + + + + + +

self

a QmiMessageWdsSetDefaultProfileNumOutput.

 
+
+

Since: 1.22

+
+
+
+

qmi_message_wds_set_default_profile_num_output_get_result ()

+
gboolean
+qmi_message_wds_set_default_profile_num_output_get_result
+                               (QmiMessageWdsSetDefaultProfileNumOutput *self,
+                                GError **error);
+

Get the result of the QMI operation.

+
+

Parameters

+
+++++ + + + + + + + + + + + + +

self

a QmiMessageWdsSetDefaultProfileNumOutput.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the QMI operation succeeded, FALSE if error +is set.

+
+

Since: 1.22

+
+
+
+

qmi_message_wds_set_default_profile_num_output_get_extended_error_code ()

+
gboolean
+qmi_message_wds_set_default_profile_num_output_get_extended_error_code
+                               (QmiMessageWdsSetDefaultProfileNumOutput *self,
+                                QmiWdsDsProfileError *value_extended_error_code,
+                                GError **error);
+

Get the 'Extended Error Code' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageWdsSetDefaultProfileNumOutput.

 

value_extended_error_code

a placeholder for the output QmiWdsDsProfileError, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.22

+
+
+
+

qmi_client_wds_set_default_profile_num ()

+
void
+qmi_client_wds_set_default_profile_num
+                               (QmiClientWds *self,
+                                QmiMessageWdsSetDefaultProfileNumInput *input,
+                                guint timeout,
+                                GCancellable *cancellable,
+                                GAsyncReadyCallback callback,
+                                gpointer user_data);
+

Asynchronously sends a Set Default Profile Num request to the device.

+

When the operation is finished, callback + will be invoked in the thread-default main loop of the thread you are calling this method from.

+

You can then call qmi_client_wds_set_default_profile_num_finish() to get the result of the operation.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

self

a QmiClientWds.

 

input

a QmiMessageWdsSetDefaultProfileNumInput.

 

timeout

maximum time to wait for the method to complete, in seconds.

 

cancellable

a GCancellable or NULL.

 

callback

a GAsyncReadyCallback to call when the request is satisfied.

 

user_data

user data to pass to callback +.

 
+
+

Since: 1.22

+
+
+
+

qmi_client_wds_set_default_profile_num_finish ()

+
QmiMessageWdsSetDefaultProfileNumOutput *
+qmi_client_wds_set_default_profile_num_finish
+                               (QmiClientWds *self,
+                                GAsyncResult *res,
+                                GError **error);
+

Finishes an async operation started with qmi_client_wds_set_default_profile_num().

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiClientWds.

 

res

the GAsyncResult obtained from the GAsyncReadyCallback passed to qmi_client_wds_set_default_profile_num().

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

a QmiMessageWdsSetDefaultProfileNumOutput, or NULL if error +is set. The returned value should be freed with qmi_message_wds_set_default_profile_num_output_unref().

+
+

Since: 1.22

+
+
+
+

Types and Values

+
+

QmiMessageWdsSetDefaultProfileNumInput

+
typedef struct _QmiMessageWdsSetDefaultProfileNumInput QmiMessageWdsSetDefaultProfileNumInput;
+

The QmiMessageWdsSetDefaultProfileNumInput structure contains private data and should only be accessed +using the provided API.

+

Since: 1.22

+
+
+
+

QmiMessageWdsSetDefaultProfileNumOutput

+
typedef struct _QmiMessageWdsSetDefaultProfileNumOutput QmiMessageWdsSetDefaultProfileNumOutput;
+

The QmiMessageWdsSetDefaultProfileNumOutput structure contains private data and should only be accessed +using the provided API.

+

Since: 1.22

+
+
+
+ + + \ No newline at end of file diff -Nru libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-WDS-Set-Event-Report.html libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-WDS-Set-Event-Report.html --- libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-WDS-Set-Event-Report.html 2017-03-22 12:28:28.000000000 +0100 +++ libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-WDS-Set-Event-Report.html 1970-01-01 01:00:00.000000000 +0100 @@ -1,1869 +0,0 @@ - - - - -WDS Set Event Report: libqmi-glib Reference Manual - - - - - - - - - - - - - - - - -
-
-
- - -
-

WDS Set Event Report

-

WDS Set Event Report

-
-
-

Functions

-
---- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
-QmiMessageWdsSetEventReportInput * - -qmi_message_wds_set_event_report_input_new () -
-QmiMessageWdsSetEventReportInput * - -qmi_message_wds_set_event_report_input_ref () -
-void - -qmi_message_wds_set_event_report_input_unref () -
-gboolean - -qmi_message_wds_set_event_report_input_get_extended_data_bearer_technology () -
-gboolean - -qmi_message_wds_set_event_report_input_set_extended_data_bearer_technology () -
-gboolean - -qmi_message_wds_set_event_report_input_get_pdn_filter_removals () -
-gboolean - -qmi_message_wds_set_event_report_input_set_pdn_filter_removals () -
-gboolean - -qmi_message_wds_set_event_report_input_get_limited_data_system_status () -
-gboolean - -qmi_message_wds_set_event_report_input_set_limited_data_system_status () -
-gboolean - -qmi_message_wds_set_event_report_input_get_uplink_flow_control () -
-gboolean - -qmi_message_wds_set_event_report_input_set_uplink_flow_control () -
-gboolean - -qmi_message_wds_set_event_report_input_get_data_systems () -
-gboolean - -qmi_message_wds_set_event_report_input_set_data_systems () -
-gboolean - -qmi_message_wds_set_event_report_input_get_evdo_pm_change () -
-gboolean - -qmi_message_wds_set_event_report_input_set_evdo_pm_change () -
-gboolean - -qmi_message_wds_set_event_report_input_get_preferred_data_system () -
-gboolean - -qmi_message_wds_set_event_report_input_set_preferred_data_system () -
-gboolean - -qmi_message_wds_set_event_report_input_get_data_call_status () -
-gboolean - -qmi_message_wds_set_event_report_input_set_data_call_status () -
-gboolean - -qmi_message_wds_set_event_report_input_get_current_data_bearer_technology () -
-gboolean - -qmi_message_wds_set_event_report_input_set_current_data_bearer_technology () -
-gboolean - -qmi_message_wds_set_event_report_input_get_mip_status () -
-gboolean - -qmi_message_wds_set_event_report_input_set_mip_status () -
-gboolean - -qmi_message_wds_set_event_report_input_get_dormancy_status () -
-gboolean - -qmi_message_wds_set_event_report_input_set_dormancy_status () -
-gboolean - -qmi_message_wds_set_event_report_input_get_data_bearer_technology () -
-gboolean - -qmi_message_wds_set_event_report_input_set_data_bearer_technology () -
-gboolean - -qmi_message_wds_set_event_report_input_get_transfer_statistics () -
-gboolean - -qmi_message_wds_set_event_report_input_set_transfer_statistics () -
-gboolean - -qmi_message_wds_set_event_report_input_get_channel_rate () -
-gboolean - -qmi_message_wds_set_event_report_input_set_channel_rate () -
-QmiMessageWdsSetEventReportOutput * - -qmi_message_wds_set_event_report_output_ref () -
-void - -qmi_message_wds_set_event_report_output_unref () -
-gboolean - -qmi_message_wds_set_event_report_output_get_result () -
-void - -qmi_client_wds_set_event_report () -
-QmiMessageWdsSetEventReportOutput * - -qmi_client_wds_set_event_report_finish () -
-
-
-

Types and Values

- -
-
-

Object Hierarchy

-
    GBoxed
-    ├── QmiMessageWdsSetEventReportInput
-    ╰── QmiMessageWdsSetEventReportOutput
-
-
-
-

Description

-
-
-

Functions

-
-

qmi_message_wds_set_event_report_input_new ()

-
QmiMessageWdsSetEventReportInput *
-qmi_message_wds_set_event_report_input_new
-                               (void);
-

Allocates a new QmiMessageWdsSetEventReportInput.

-
-

Returns

-

the newly created QmiMessageWdsSetEventReportInput. The returned value should be freed with qmi_message_wds_set_event_report_input_unref().

-
-

Since: 1.18

-
-
-
-

qmi_message_wds_set_event_report_input_ref ()

-
QmiMessageWdsSetEventReportInput *
-qmi_message_wds_set_event_report_input_ref
-                               (QmiMessageWdsSetEventReportInput *self);
-

Atomically increments the reference count of self - by one.

-
-

Parameters

-
----- - - - - - -

self

a QmiMessageWdsSetEventReportInput.

 
-
-
-

Returns

-

the new reference to self -.

-
-

Since: 1.18

-
-
-
-

qmi_message_wds_set_event_report_input_unref ()

-
void
-qmi_message_wds_set_event_report_input_unref
-                               (QmiMessageWdsSetEventReportInput *self);
-

Atomically decrements the reference count of self - by one. -If the reference count drops to 0, self - is completely disposed.

-
-

Parameters

-
----- - - - - - -

self

a QmiMessageWdsSetEventReportInput.

 
-
-

Since: 1.18

-
-
-
-

qmi_message_wds_set_event_report_input_get_extended_data_bearer_technology ()

-
gboolean
-qmi_message_wds_set_event_report_input_get_extended_data_bearer_technology
-                               (QmiMessageWdsSetEventReportInput *self,
-                                gboolean *value_extended_data_bearer_technology,
-                                GError **error);
-

Get the 'Extended Data Bearer Technology' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessageWdsSetEventReportInput.

 

value_extended_data_bearer_technology

a placeholder for the output gboolean, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.18

-
-
-
-

qmi_message_wds_set_event_report_input_set_extended_data_bearer_technology ()

-
gboolean
-qmi_message_wds_set_event_report_input_set_extended_data_bearer_technology
-                               (QmiMessageWdsSetEventReportInput *self,
-                                gboolean value_extended_data_bearer_technology,
-                                GError **error);
-

Set the 'Extended Data Bearer Technology' field in the message.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessageWdsSetEventReportInput.

 

value_extended_data_bearer_technology

a gboolean.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if value -was successfully set, FALSE otherwise.

-
-

Since: 1.18

-
-
-
-

qmi_message_wds_set_event_report_input_get_pdn_filter_removals ()

-
gboolean
-qmi_message_wds_set_event_report_input_get_pdn_filter_removals
-                               (QmiMessageWdsSetEventReportInput *self,
-                                gboolean *value_pdn_filter_removals,
-                                GError **error);
-

Get the 'PDN Filter Removals' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessageWdsSetEventReportInput.

 

value_pdn_filter_removals

a placeholder for the output gboolean, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.18

-
-
-
-

qmi_message_wds_set_event_report_input_set_pdn_filter_removals ()

-
gboolean
-qmi_message_wds_set_event_report_input_set_pdn_filter_removals
-                               (QmiMessageWdsSetEventReportInput *self,
-                                gboolean value_pdn_filter_removals,
-                                GError **error);
-

Set the 'PDN Filter Removals' field in the message.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessageWdsSetEventReportInput.

 

value_pdn_filter_removals

a gboolean.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if value -was successfully set, FALSE otherwise.

-
-

Since: 1.18

-
-
-
-

qmi_message_wds_set_event_report_input_get_limited_data_system_status ()

-
gboolean
-qmi_message_wds_set_event_report_input_get_limited_data_system_status
-                               (QmiMessageWdsSetEventReportInput *self,
-                                gboolean *value_limited_data_system_status,
-                                GError **error);
-

Get the 'Limited Data System Status' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessageWdsSetEventReportInput.

 

value_limited_data_system_status

a placeholder for the output gboolean, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.18

-
-
-
-

qmi_message_wds_set_event_report_input_set_limited_data_system_status ()

-
gboolean
-qmi_message_wds_set_event_report_input_set_limited_data_system_status
-                               (QmiMessageWdsSetEventReportInput *self,
-                                gboolean value_limited_data_system_status,
-                                GError **error);
-

Set the 'Limited Data System Status' field in the message.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessageWdsSetEventReportInput.

 

value_limited_data_system_status

a gboolean.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if value -was successfully set, FALSE otherwise.

-
-

Since: 1.18

-
-
-
-

qmi_message_wds_set_event_report_input_get_uplink_flow_control ()

-
gboolean
-qmi_message_wds_set_event_report_input_get_uplink_flow_control
-                               (QmiMessageWdsSetEventReportInput *self,
-                                gboolean *value_uplink_flow_control,
-                                GError **error);
-

Get the 'Uplink Flow Control' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessageWdsSetEventReportInput.

 

value_uplink_flow_control

a placeholder for the output gboolean, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.18

-
-
-
-

qmi_message_wds_set_event_report_input_set_uplink_flow_control ()

-
gboolean
-qmi_message_wds_set_event_report_input_set_uplink_flow_control
-                               (QmiMessageWdsSetEventReportInput *self,
-                                gboolean value_uplink_flow_control,
-                                GError **error);
-

Set the 'Uplink Flow Control' field in the message.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessageWdsSetEventReportInput.

 

value_uplink_flow_control

a gboolean.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if value -was successfully set, FALSE otherwise.

-
-

Since: 1.18

-
-
-
-

qmi_message_wds_set_event_report_input_get_data_systems ()

-
gboolean
-qmi_message_wds_set_event_report_input_get_data_systems
-                               (QmiMessageWdsSetEventReportInput *self,
-                                gboolean *value_data_systems,
-                                GError **error);
-

Get the 'Data Systems' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessageWdsSetEventReportInput.

 

value_data_systems

a placeholder for the output gboolean, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.18

-
-
-
-

qmi_message_wds_set_event_report_input_set_data_systems ()

-
gboolean
-qmi_message_wds_set_event_report_input_set_data_systems
-                               (QmiMessageWdsSetEventReportInput *self,
-                                gboolean value_data_systems,
-                                GError **error);
-

Set the 'Data Systems' field in the message.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessageWdsSetEventReportInput.

 

value_data_systems

a gboolean.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if value -was successfully set, FALSE otherwise.

-
-

Since: 1.18

-
-
-
-

qmi_message_wds_set_event_report_input_get_evdo_pm_change ()

-
gboolean
-qmi_message_wds_set_event_report_input_get_evdo_pm_change
-                               (QmiMessageWdsSetEventReportInput *self,
-                                gboolean *value_evdo_pm_change,
-                                GError **error);
-

Get the 'EVDO PM Change' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessageWdsSetEventReportInput.

 

value_evdo_pm_change

a placeholder for the output gboolean, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.18

-
-
-
-

qmi_message_wds_set_event_report_input_set_evdo_pm_change ()

-
gboolean
-qmi_message_wds_set_event_report_input_set_evdo_pm_change
-                               (QmiMessageWdsSetEventReportInput *self,
-                                gboolean value_evdo_pm_change,
-                                GError **error);
-

Set the 'EVDO PM Change' field in the message.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessageWdsSetEventReportInput.

 

value_evdo_pm_change

a gboolean.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if value -was successfully set, FALSE otherwise.

-
-

Since: 1.18

-
-
-
-

qmi_message_wds_set_event_report_input_get_preferred_data_system ()

-
gboolean
-qmi_message_wds_set_event_report_input_get_preferred_data_system
-                               (QmiMessageWdsSetEventReportInput *self,
-                                gboolean *value_preferred_data_system,
-                                GError **error);
-

Get the 'Preferred Data System' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessageWdsSetEventReportInput.

 

value_preferred_data_system

a placeholder for the output gboolean, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.18

-
-
-
-

qmi_message_wds_set_event_report_input_set_preferred_data_system ()

-
gboolean
-qmi_message_wds_set_event_report_input_set_preferred_data_system
-                               (QmiMessageWdsSetEventReportInput *self,
-                                gboolean value_preferred_data_system,
-                                GError **error);
-

Set the 'Preferred Data System' field in the message.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessageWdsSetEventReportInput.

 

value_preferred_data_system

a gboolean.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if value -was successfully set, FALSE otherwise.

-
-

Since: 1.18

-
-
-
-

qmi_message_wds_set_event_report_input_get_data_call_status ()

-
gboolean
-qmi_message_wds_set_event_report_input_get_data_call_status
-                               (QmiMessageWdsSetEventReportInput *self,
-                                gboolean *value_data_call_status,
-                                GError **error);
-

Get the 'Data Call Status' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessageWdsSetEventReportInput.

 

value_data_call_status

a placeholder for the output gboolean, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.18

-
-
-
-

qmi_message_wds_set_event_report_input_set_data_call_status ()

-
gboolean
-qmi_message_wds_set_event_report_input_set_data_call_status
-                               (QmiMessageWdsSetEventReportInput *self,
-                                gboolean value_data_call_status,
-                                GError **error);
-

Set the 'Data Call Status' field in the message.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessageWdsSetEventReportInput.

 

value_data_call_status

a gboolean.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if value -was successfully set, FALSE otherwise.

-
-

Since: 1.18

-
-
-
-

qmi_message_wds_set_event_report_input_get_current_data_bearer_technology ()

-
gboolean
-qmi_message_wds_set_event_report_input_get_current_data_bearer_technology
-                               (QmiMessageWdsSetEventReportInput *self,
-                                gboolean *value_current_data_bearer_technology,
-                                GError **error);
-

Get the 'Current Data Bearer Technology' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessageWdsSetEventReportInput.

 

value_current_data_bearer_technology

a placeholder for the output gboolean, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.18

-
-
-
-

qmi_message_wds_set_event_report_input_set_current_data_bearer_technology ()

-
gboolean
-qmi_message_wds_set_event_report_input_set_current_data_bearer_technology
-                               (QmiMessageWdsSetEventReportInput *self,
-                                gboolean value_current_data_bearer_technology,
-                                GError **error);
-

Set the 'Current Data Bearer Technology' field in the message.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessageWdsSetEventReportInput.

 

value_current_data_bearer_technology

a gboolean.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if value -was successfully set, FALSE otherwise.

-
-

Since: 1.18

-
-
-
-

qmi_message_wds_set_event_report_input_get_mip_status ()

-
gboolean
-qmi_message_wds_set_event_report_input_get_mip_status
-                               (QmiMessageWdsSetEventReportInput *self,
-                                guint8 *value_mip_status,
-                                GError **error);
-

Get the 'MIP Status' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessageWdsSetEventReportInput.

 

value_mip_status

a placeholder for the output guint8, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.18

-
-
-
-

qmi_message_wds_set_event_report_input_set_mip_status ()

-
gboolean
-qmi_message_wds_set_event_report_input_set_mip_status
-                               (QmiMessageWdsSetEventReportInput *self,
-                                guint8 value_mip_status,
-                                GError **error);
-

Set the 'MIP Status' field in the message.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessageWdsSetEventReportInput.

 

value_mip_status

a guint8.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if value -was successfully set, FALSE otherwise.

-
-

Since: 1.18

-
-
-
-

qmi_message_wds_set_event_report_input_get_dormancy_status ()

-
gboolean
-qmi_message_wds_set_event_report_input_get_dormancy_status
-                               (QmiMessageWdsSetEventReportInput *self,
-                                gboolean *value_dormancy_status,
-                                GError **error);
-

Get the 'Dormancy Status' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessageWdsSetEventReportInput.

 

value_dormancy_status

a placeholder for the output gboolean, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.18

-
-
-
-

qmi_message_wds_set_event_report_input_set_dormancy_status ()

-
gboolean
-qmi_message_wds_set_event_report_input_set_dormancy_status
-                               (QmiMessageWdsSetEventReportInput *self,
-                                gboolean value_dormancy_status,
-                                GError **error);
-

Set the 'Dormancy Status' field in the message.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessageWdsSetEventReportInput.

 

value_dormancy_status

a gboolean.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if value -was successfully set, FALSE otherwise.

-
-

Since: 1.18

-
-
-
-

qmi_message_wds_set_event_report_input_get_data_bearer_technology ()

-
gboolean
-qmi_message_wds_set_event_report_input_get_data_bearer_technology
-                               (QmiMessageWdsSetEventReportInput *self,
-                                gboolean *value_data_bearer_technology,
-                                GError **error);
-

Get the 'Data Bearer Technology' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessageWdsSetEventReportInput.

 

value_data_bearer_technology

a placeholder for the output gboolean, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.18

-
-
-
-

qmi_message_wds_set_event_report_input_set_data_bearer_technology ()

-
gboolean
-qmi_message_wds_set_event_report_input_set_data_bearer_technology
-                               (QmiMessageWdsSetEventReportInput *self,
-                                gboolean value_data_bearer_technology,
-                                GError **error);
-

Set the 'Data Bearer Technology' field in the message.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessageWdsSetEventReportInput.

 

value_data_bearer_technology

a gboolean.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if value -was successfully set, FALSE otherwise.

-
-

Since: 1.18

-
-
-
-

qmi_message_wds_set_event_report_input_get_transfer_statistics ()

-
gboolean
-qmi_message_wds_set_event_report_input_get_transfer_statistics
-                               (QmiMessageWdsSetEventReportInput *self,
-                                guint8 *value_transfer_statistics_interval_seconds,
-                                QmiWdsSetEventReportTransferStatistics *value_transfer_statistics_indicators,
-                                GError **error);
-

Get the 'Transfer Statistics' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - - - - - - -

self

a QmiMessageWdsSetEventReportInput.

 

value_transfer_statistics_interval_seconds

a placeholder for the output guint8, or NULL if not required.

 

value_transfer_statistics_indicators

a placeholder for the output QmiWdsSetEventReportTransferStatistics, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.18

-
-
-
-

qmi_message_wds_set_event_report_input_set_transfer_statistics ()

-
gboolean
-qmi_message_wds_set_event_report_input_set_transfer_statistics
-                               (QmiMessageWdsSetEventReportInput *self,
-                                guint8 value_transfer_statistics_interval_seconds,
-                                QmiWdsSetEventReportTransferStatistics value_transfer_statistics_indicators,
-                                GError **error);
-

Set the 'Transfer Statistics' field in the message.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - - - - - - -

self

a QmiMessageWdsSetEventReportInput.

 

value_transfer_statistics_interval_seconds

a guint8.

 

value_transfer_statistics_indicators

a QmiWdsSetEventReportTransferStatistics.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if value -was successfully set, FALSE otherwise.

-
-

Since: 1.18

-
-
-
-

qmi_message_wds_set_event_report_input_get_channel_rate ()

-
gboolean
-qmi_message_wds_set_event_report_input_get_channel_rate
-                               (QmiMessageWdsSetEventReportInput *self,
-                                gboolean *value_channel_rate,
-                                GError **error);
-

Get the 'Channel Rate' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessageWdsSetEventReportInput.

 

value_channel_rate

a placeholder for the output gboolean, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.18

-
-
-
-

qmi_message_wds_set_event_report_input_set_channel_rate ()

-
gboolean
-qmi_message_wds_set_event_report_input_set_channel_rate
-                               (QmiMessageWdsSetEventReportInput *self,
-                                gboolean value_channel_rate,
-                                GError **error);
-

Set the 'Channel Rate' field in the message.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessageWdsSetEventReportInput.

 

value_channel_rate

a gboolean.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if value -was successfully set, FALSE otherwise.

-
-

Since: 1.18

-
-
-
-

qmi_message_wds_set_event_report_output_ref ()

-
QmiMessageWdsSetEventReportOutput *
-qmi_message_wds_set_event_report_output_ref
-                               (QmiMessageWdsSetEventReportOutput *self);
-

Atomically increments the reference count of self - by one.

-
-

Parameters

-
----- - - - - - -

self

a QmiMessageWdsSetEventReportOutput.

 
-
-
-

Returns

-

the new reference to self -.

-
-

Since: 1.18

-
-
-
-

qmi_message_wds_set_event_report_output_unref ()

-
void
-qmi_message_wds_set_event_report_output_unref
-                               (QmiMessageWdsSetEventReportOutput *self);
-

Atomically decrements the reference count of self - by one. -If the reference count drops to 0, self - is completely disposed.

-
-

Parameters

-
----- - - - - - -

self

a QmiMessageWdsSetEventReportOutput.

 
-
-

Since: 1.18

-
-
-
-

qmi_message_wds_set_event_report_output_get_result ()

-
gboolean
-qmi_message_wds_set_event_report_output_get_result
-                               (QmiMessageWdsSetEventReportOutput *self,
-                                GError **error);
-

Get the result of the QMI operation.

-
-

Parameters

-
----- - - - - - - - - - - - - -

self

a QmiMessageWdsSetEventReportOutput.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the QMI operation succeeded, FALSE if error -is set.

-
-

Since: 1.18

-
-
-
-

qmi_client_wds_set_event_report ()

-
void
-qmi_client_wds_set_event_report (QmiClientWds *self,
-                                 QmiMessageWdsSetEventReportInput *input,
-                                 guint timeout,
-                                 GCancellable *cancellable,
-                                 GAsyncReadyCallback callback,
-                                 gpointer user_data);
-

Asynchronously sends a Set Event Report request to the device.

-

When the operation is finished, callback - will be invoked in the thread-default main loop of the thread you are calling this method from.

-

You can then call qmi_client_wds_set_event_report_finish() to get the result of the operation.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

self

a QmiClientWds.

 

input

a QmiMessageWdsSetEventReportInput.

 

timeout

maximum time to wait for the method to complete, in seconds.

 

cancellable

a GCancellable or NULL.

 

callback

a GAsyncReadyCallback to call when the request is satisfied.

 

user_data

user data to pass to callback -.

 
-
-

Since: 1.18

-
-
-
-

qmi_client_wds_set_event_report_finish ()

-
QmiMessageWdsSetEventReportOutput *
-qmi_client_wds_set_event_report_finish
-                               (QmiClientWds *self,
-                                GAsyncResult *res,
-                                GError **error);
-

Finishes an async operation started with qmi_client_wds_set_event_report().

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiClientWds.

 

res

the GAsyncResult obtained from the GAsyncReadyCallback passed to qmi_client_wds_set_event_report().

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

a QmiMessageWdsSetEventReportOutput, or NULL if error -is set. The returned value should be freed with qmi_message_wds_set_event_report_output_unref().

-
-

Since: 1.18

-
-
-
-

Types and Values

-
-

QmiMessageWdsSetEventReportInput

-
typedef struct _QmiMessageWdsSetEventReportInput QmiMessageWdsSetEventReportInput;
-

The QmiMessageWdsSetEventReportInput structure contains private data and should only be accessed -using the provided API.

-

Since: 1.18

-
-
-
-

QmiMessageWdsSetEventReportOutput

-
typedef struct _QmiMessageWdsSetEventReportOutput QmiMessageWdsSetEventReportOutput;
-

The QmiMessageWdsSetEventReportOutput structure contains private data and should only be accessed -using the provided API.

-

Since: 1.18

-
-
-
- - - \ No newline at end of file diff -Nru libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-WDS-Set-Event-Report-request.html libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-WDS-Set-Event-Report-request.html --- libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-WDS-Set-Event-Report-request.html 1970-01-01 01:00:00.000000000 +0100 +++ libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-WDS-Set-Event-Report-request.html 2019-01-08 15:19:02.000000000 +0100 @@ -0,0 +1,1869 @@ + + + + +WDS Set Event Report request: libqmi-glib Reference Manual + + + + + + + + + + + + + + + + +
+
+
+ + +
+

WDS Set Event Report request

+

WDS Set Event Report request

+
+
+

Functions

+
++++ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+QmiMessageWdsSetEventReportInput * + +qmi_message_wds_set_event_report_input_new () +
+QmiMessageWdsSetEventReportInput * + +qmi_message_wds_set_event_report_input_ref () +
+void + +qmi_message_wds_set_event_report_input_unref () +
+gboolean + +qmi_message_wds_set_event_report_input_get_extended_data_bearer_technology () +
+gboolean + +qmi_message_wds_set_event_report_input_set_extended_data_bearer_technology () +
+gboolean + +qmi_message_wds_set_event_report_input_get_pdn_filter_removals () +
+gboolean + +qmi_message_wds_set_event_report_input_set_pdn_filter_removals () +
+gboolean + +qmi_message_wds_set_event_report_input_get_limited_data_system_status () +
+gboolean + +qmi_message_wds_set_event_report_input_set_limited_data_system_status () +
+gboolean + +qmi_message_wds_set_event_report_input_get_uplink_flow_control () +
+gboolean + +qmi_message_wds_set_event_report_input_set_uplink_flow_control () +
+gboolean + +qmi_message_wds_set_event_report_input_get_data_systems () +
+gboolean + +qmi_message_wds_set_event_report_input_set_data_systems () +
+gboolean + +qmi_message_wds_set_event_report_input_get_evdo_pm_change () +
+gboolean + +qmi_message_wds_set_event_report_input_set_evdo_pm_change () +
+gboolean + +qmi_message_wds_set_event_report_input_get_preferred_data_system () +
+gboolean + +qmi_message_wds_set_event_report_input_set_preferred_data_system () +
+gboolean + +qmi_message_wds_set_event_report_input_get_data_call_status () +
+gboolean + +qmi_message_wds_set_event_report_input_set_data_call_status () +
+gboolean + +qmi_message_wds_set_event_report_input_get_current_data_bearer_technology () +
+gboolean + +qmi_message_wds_set_event_report_input_set_current_data_bearer_technology () +
+gboolean + +qmi_message_wds_set_event_report_input_get_mip_status () +
+gboolean + +qmi_message_wds_set_event_report_input_set_mip_status () +
+gboolean + +qmi_message_wds_set_event_report_input_get_dormancy_status () +
+gboolean + +qmi_message_wds_set_event_report_input_set_dormancy_status () +
+gboolean + +qmi_message_wds_set_event_report_input_get_data_bearer_technology () +
+gboolean + +qmi_message_wds_set_event_report_input_set_data_bearer_technology () +
+gboolean + +qmi_message_wds_set_event_report_input_get_transfer_statistics () +
+gboolean + +qmi_message_wds_set_event_report_input_set_transfer_statistics () +
+gboolean + +qmi_message_wds_set_event_report_input_get_channel_rate () +
+gboolean + +qmi_message_wds_set_event_report_input_set_channel_rate () +
+QmiMessageWdsSetEventReportOutput * + +qmi_message_wds_set_event_report_output_ref () +
+void + +qmi_message_wds_set_event_report_output_unref () +
+gboolean + +qmi_message_wds_set_event_report_output_get_result () +
+void + +qmi_client_wds_set_event_report () +
+QmiMessageWdsSetEventReportOutput * + +qmi_client_wds_set_event_report_finish () +
+
+
+

Types and Values

+ +
+
+

Object Hierarchy

+
    GBoxed
+    ├── QmiMessageWdsSetEventReportInput
+    ╰── QmiMessageWdsSetEventReportOutput
+
+
+
+

Description

+
+
+

Functions

+
+

qmi_message_wds_set_event_report_input_new ()

+
QmiMessageWdsSetEventReportInput *
+qmi_message_wds_set_event_report_input_new
+                               (void);
+

Allocates a new QmiMessageWdsSetEventReportInput.

+
+

Returns

+

the newly created QmiMessageWdsSetEventReportInput. The returned value should be freed with qmi_message_wds_set_event_report_input_unref().

+
+

Since: 1.18

+
+
+
+

qmi_message_wds_set_event_report_input_ref ()

+
QmiMessageWdsSetEventReportInput *
+qmi_message_wds_set_event_report_input_ref
+                               (QmiMessageWdsSetEventReportInput *self);
+

Atomically increments the reference count of self + by one.

+
+

Parameters

+
+++++ + + + + + +

self

a QmiMessageWdsSetEventReportInput.

 
+
+
+

Returns

+

the new reference to self +.

+
+

Since: 1.18

+
+
+
+

qmi_message_wds_set_event_report_input_unref ()

+
void
+qmi_message_wds_set_event_report_input_unref
+                               (QmiMessageWdsSetEventReportInput *self);
+

Atomically decrements the reference count of self + by one. +If the reference count drops to 0, self + is completely disposed.

+
+

Parameters

+
+++++ + + + + + +

self

a QmiMessageWdsSetEventReportInput.

 
+
+

Since: 1.18

+
+
+
+

qmi_message_wds_set_event_report_input_get_extended_data_bearer_technology ()

+
gboolean
+qmi_message_wds_set_event_report_input_get_extended_data_bearer_technology
+                               (QmiMessageWdsSetEventReportInput *self,
+                                gboolean *value_extended_data_bearer_technology,
+                                GError **error);
+

Get the 'Extended Data Bearer Technology' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageWdsSetEventReportInput.

 

value_extended_data_bearer_technology

a placeholder for the output gboolean, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.18

+
+
+
+

qmi_message_wds_set_event_report_input_set_extended_data_bearer_technology ()

+
gboolean
+qmi_message_wds_set_event_report_input_set_extended_data_bearer_technology
+                               (QmiMessageWdsSetEventReportInput *self,
+                                gboolean value_extended_data_bearer_technology,
+                                GError **error);
+

Set the 'Extended Data Bearer Technology' field in the message.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageWdsSetEventReportInput.

 

value_extended_data_bearer_technology

a gboolean.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if value +was successfully set, FALSE otherwise.

+
+

Since: 1.18

+
+
+
+

qmi_message_wds_set_event_report_input_get_pdn_filter_removals ()

+
gboolean
+qmi_message_wds_set_event_report_input_get_pdn_filter_removals
+                               (QmiMessageWdsSetEventReportInput *self,
+                                gboolean *value_pdn_filter_removals,
+                                GError **error);
+

Get the 'PDN Filter Removals' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageWdsSetEventReportInput.

 

value_pdn_filter_removals

a placeholder for the output gboolean, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.18

+
+
+
+

qmi_message_wds_set_event_report_input_set_pdn_filter_removals ()

+
gboolean
+qmi_message_wds_set_event_report_input_set_pdn_filter_removals
+                               (QmiMessageWdsSetEventReportInput *self,
+                                gboolean value_pdn_filter_removals,
+                                GError **error);
+

Set the 'PDN Filter Removals' field in the message.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageWdsSetEventReportInput.

 

value_pdn_filter_removals

a gboolean.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if value +was successfully set, FALSE otherwise.

+
+

Since: 1.18

+
+
+
+

qmi_message_wds_set_event_report_input_get_limited_data_system_status ()

+
gboolean
+qmi_message_wds_set_event_report_input_get_limited_data_system_status
+                               (QmiMessageWdsSetEventReportInput *self,
+                                gboolean *value_limited_data_system_status,
+                                GError **error);
+

Get the 'Limited Data System Status' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageWdsSetEventReportInput.

 

value_limited_data_system_status

a placeholder for the output gboolean, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.18

+
+
+
+

qmi_message_wds_set_event_report_input_set_limited_data_system_status ()

+
gboolean
+qmi_message_wds_set_event_report_input_set_limited_data_system_status
+                               (QmiMessageWdsSetEventReportInput *self,
+                                gboolean value_limited_data_system_status,
+                                GError **error);
+

Set the 'Limited Data System Status' field in the message.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageWdsSetEventReportInput.

 

value_limited_data_system_status

a gboolean.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if value +was successfully set, FALSE otherwise.

+
+

Since: 1.18

+
+
+
+

qmi_message_wds_set_event_report_input_get_uplink_flow_control ()

+
gboolean
+qmi_message_wds_set_event_report_input_get_uplink_flow_control
+                               (QmiMessageWdsSetEventReportInput *self,
+                                gboolean *value_uplink_flow_control,
+                                GError **error);
+

Get the 'Uplink Flow Control' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageWdsSetEventReportInput.

 

value_uplink_flow_control

a placeholder for the output gboolean, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.18

+
+
+
+

qmi_message_wds_set_event_report_input_set_uplink_flow_control ()

+
gboolean
+qmi_message_wds_set_event_report_input_set_uplink_flow_control
+                               (QmiMessageWdsSetEventReportInput *self,
+                                gboolean value_uplink_flow_control,
+                                GError **error);
+

Set the 'Uplink Flow Control' field in the message.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageWdsSetEventReportInput.

 

value_uplink_flow_control

a gboolean.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if value +was successfully set, FALSE otherwise.

+
+

Since: 1.18

+
+
+
+

qmi_message_wds_set_event_report_input_get_data_systems ()

+
gboolean
+qmi_message_wds_set_event_report_input_get_data_systems
+                               (QmiMessageWdsSetEventReportInput *self,
+                                gboolean *value_data_systems,
+                                GError **error);
+

Get the 'Data Systems' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageWdsSetEventReportInput.

 

value_data_systems

a placeholder for the output gboolean, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.18

+
+
+
+

qmi_message_wds_set_event_report_input_set_data_systems ()

+
gboolean
+qmi_message_wds_set_event_report_input_set_data_systems
+                               (QmiMessageWdsSetEventReportInput *self,
+                                gboolean value_data_systems,
+                                GError **error);
+

Set the 'Data Systems' field in the message.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageWdsSetEventReportInput.

 

value_data_systems

a gboolean.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if value +was successfully set, FALSE otherwise.

+
+

Since: 1.18

+
+
+
+

qmi_message_wds_set_event_report_input_get_evdo_pm_change ()

+
gboolean
+qmi_message_wds_set_event_report_input_get_evdo_pm_change
+                               (QmiMessageWdsSetEventReportInput *self,
+                                gboolean *value_evdo_pm_change,
+                                GError **error);
+

Get the 'EVDO PM Change' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageWdsSetEventReportInput.

 

value_evdo_pm_change

a placeholder for the output gboolean, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.18

+
+
+
+

qmi_message_wds_set_event_report_input_set_evdo_pm_change ()

+
gboolean
+qmi_message_wds_set_event_report_input_set_evdo_pm_change
+                               (QmiMessageWdsSetEventReportInput *self,
+                                gboolean value_evdo_pm_change,
+                                GError **error);
+

Set the 'EVDO PM Change' field in the message.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageWdsSetEventReportInput.

 

value_evdo_pm_change

a gboolean.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if value +was successfully set, FALSE otherwise.

+
+

Since: 1.18

+
+
+
+

qmi_message_wds_set_event_report_input_get_preferred_data_system ()

+
gboolean
+qmi_message_wds_set_event_report_input_get_preferred_data_system
+                               (QmiMessageWdsSetEventReportInput *self,
+                                gboolean *value_preferred_data_system,
+                                GError **error);
+

Get the 'Preferred Data System' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageWdsSetEventReportInput.

 

value_preferred_data_system

a placeholder for the output gboolean, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.18

+
+
+
+

qmi_message_wds_set_event_report_input_set_preferred_data_system ()

+
gboolean
+qmi_message_wds_set_event_report_input_set_preferred_data_system
+                               (QmiMessageWdsSetEventReportInput *self,
+                                gboolean value_preferred_data_system,
+                                GError **error);
+

Set the 'Preferred Data System' field in the message.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageWdsSetEventReportInput.

 

value_preferred_data_system

a gboolean.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if value +was successfully set, FALSE otherwise.

+
+

Since: 1.18

+
+
+
+

qmi_message_wds_set_event_report_input_get_data_call_status ()

+
gboolean
+qmi_message_wds_set_event_report_input_get_data_call_status
+                               (QmiMessageWdsSetEventReportInput *self,
+                                gboolean *value_data_call_status,
+                                GError **error);
+

Get the 'Data Call Status' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageWdsSetEventReportInput.

 

value_data_call_status

a placeholder for the output gboolean, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.18

+
+
+
+

qmi_message_wds_set_event_report_input_set_data_call_status ()

+
gboolean
+qmi_message_wds_set_event_report_input_set_data_call_status
+                               (QmiMessageWdsSetEventReportInput *self,
+                                gboolean value_data_call_status,
+                                GError **error);
+

Set the 'Data Call Status' field in the message.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageWdsSetEventReportInput.

 

value_data_call_status

a gboolean.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if value +was successfully set, FALSE otherwise.

+
+

Since: 1.18

+
+
+
+

qmi_message_wds_set_event_report_input_get_current_data_bearer_technology ()

+
gboolean
+qmi_message_wds_set_event_report_input_get_current_data_bearer_technology
+                               (QmiMessageWdsSetEventReportInput *self,
+                                gboolean *value_current_data_bearer_technology,
+                                GError **error);
+

Get the 'Current Data Bearer Technology' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageWdsSetEventReportInput.

 

value_current_data_bearer_technology

a placeholder for the output gboolean, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.18

+
+
+
+

qmi_message_wds_set_event_report_input_set_current_data_bearer_technology ()

+
gboolean
+qmi_message_wds_set_event_report_input_set_current_data_bearer_technology
+                               (QmiMessageWdsSetEventReportInput *self,
+                                gboolean value_current_data_bearer_technology,
+                                GError **error);
+

Set the 'Current Data Bearer Technology' field in the message.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageWdsSetEventReportInput.

 

value_current_data_bearer_technology

a gboolean.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if value +was successfully set, FALSE otherwise.

+
+

Since: 1.18

+
+
+
+

qmi_message_wds_set_event_report_input_get_mip_status ()

+
gboolean
+qmi_message_wds_set_event_report_input_get_mip_status
+                               (QmiMessageWdsSetEventReportInput *self,
+                                guint8 *value_mip_status,
+                                GError **error);
+

Get the 'MIP Status' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageWdsSetEventReportInput.

 

value_mip_status

a placeholder for the output guint8, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.18

+
+
+
+

qmi_message_wds_set_event_report_input_set_mip_status ()

+
gboolean
+qmi_message_wds_set_event_report_input_set_mip_status
+                               (QmiMessageWdsSetEventReportInput *self,
+                                guint8 value_mip_status,
+                                GError **error);
+

Set the 'MIP Status' field in the message.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageWdsSetEventReportInput.

 

value_mip_status

a guint8.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if value +was successfully set, FALSE otherwise.

+
+

Since: 1.18

+
+
+
+

qmi_message_wds_set_event_report_input_get_dormancy_status ()

+
gboolean
+qmi_message_wds_set_event_report_input_get_dormancy_status
+                               (QmiMessageWdsSetEventReportInput *self,
+                                gboolean *value_dormancy_status,
+                                GError **error);
+

Get the 'Dormancy Status' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageWdsSetEventReportInput.

 

value_dormancy_status

a placeholder for the output gboolean, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.18

+
+
+
+

qmi_message_wds_set_event_report_input_set_dormancy_status ()

+
gboolean
+qmi_message_wds_set_event_report_input_set_dormancy_status
+                               (QmiMessageWdsSetEventReportInput *self,
+                                gboolean value_dormancy_status,
+                                GError **error);
+

Set the 'Dormancy Status' field in the message.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageWdsSetEventReportInput.

 

value_dormancy_status

a gboolean.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if value +was successfully set, FALSE otherwise.

+
+

Since: 1.18

+
+
+
+

qmi_message_wds_set_event_report_input_get_data_bearer_technology ()

+
gboolean
+qmi_message_wds_set_event_report_input_get_data_bearer_technology
+                               (QmiMessageWdsSetEventReportInput *self,
+                                gboolean *value_data_bearer_technology,
+                                GError **error);
+

Get the 'Data Bearer Technology' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageWdsSetEventReportInput.

 

value_data_bearer_technology

a placeholder for the output gboolean, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.18

+
+
+
+

qmi_message_wds_set_event_report_input_set_data_bearer_technology ()

+
gboolean
+qmi_message_wds_set_event_report_input_set_data_bearer_technology
+                               (QmiMessageWdsSetEventReportInput *self,
+                                gboolean value_data_bearer_technology,
+                                GError **error);
+

Set the 'Data Bearer Technology' field in the message.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageWdsSetEventReportInput.

 

value_data_bearer_technology

a gboolean.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if value +was successfully set, FALSE otherwise.

+
+

Since: 1.18

+
+
+
+

qmi_message_wds_set_event_report_input_get_transfer_statistics ()

+
gboolean
+qmi_message_wds_set_event_report_input_get_transfer_statistics
+                               (QmiMessageWdsSetEventReportInput *self,
+                                guint8 *value_transfer_statistics_interval_seconds,
+                                QmiWdsSetEventReportTransferStatistics *value_transfer_statistics_indicators,
+                                GError **error);
+

Get the 'Transfer Statistics' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + + + + + + +

self

a QmiMessageWdsSetEventReportInput.

 

value_transfer_statistics_interval_seconds

a placeholder for the output guint8, or NULL if not required.

 

value_transfer_statistics_indicators

a placeholder for the output QmiWdsSetEventReportTransferStatistics, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.18

+
+
+
+

qmi_message_wds_set_event_report_input_set_transfer_statistics ()

+
gboolean
+qmi_message_wds_set_event_report_input_set_transfer_statistics
+                               (QmiMessageWdsSetEventReportInput *self,
+                                guint8 value_transfer_statistics_interval_seconds,
+                                QmiWdsSetEventReportTransferStatistics value_transfer_statistics_indicators,
+                                GError **error);
+

Set the 'Transfer Statistics' field in the message.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + + + + + + +

self

a QmiMessageWdsSetEventReportInput.

 

value_transfer_statistics_interval_seconds

a guint8.

 

value_transfer_statistics_indicators

a QmiWdsSetEventReportTransferStatistics.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if value +was successfully set, FALSE otherwise.

+
+

Since: 1.18

+
+
+
+

qmi_message_wds_set_event_report_input_get_channel_rate ()

+
gboolean
+qmi_message_wds_set_event_report_input_get_channel_rate
+                               (QmiMessageWdsSetEventReportInput *self,
+                                gboolean *value_channel_rate,
+                                GError **error);
+

Get the 'Channel Rate' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageWdsSetEventReportInput.

 

value_channel_rate

a placeholder for the output gboolean, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.18

+
+
+
+

qmi_message_wds_set_event_report_input_set_channel_rate ()

+
gboolean
+qmi_message_wds_set_event_report_input_set_channel_rate
+                               (QmiMessageWdsSetEventReportInput *self,
+                                gboolean value_channel_rate,
+                                GError **error);
+

Set the 'Channel Rate' field in the message.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageWdsSetEventReportInput.

 

value_channel_rate

a gboolean.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if value +was successfully set, FALSE otherwise.

+
+

Since: 1.18

+
+
+
+

qmi_message_wds_set_event_report_output_ref ()

+
QmiMessageWdsSetEventReportOutput *
+qmi_message_wds_set_event_report_output_ref
+                               (QmiMessageWdsSetEventReportOutput *self);
+

Atomically increments the reference count of self + by one.

+
+

Parameters

+
+++++ + + + + + +

self

a QmiMessageWdsSetEventReportOutput.

 
+
+
+

Returns

+

the new reference to self +.

+
+

Since: 1.18

+
+
+
+

qmi_message_wds_set_event_report_output_unref ()

+
void
+qmi_message_wds_set_event_report_output_unref
+                               (QmiMessageWdsSetEventReportOutput *self);
+

Atomically decrements the reference count of self + by one. +If the reference count drops to 0, self + is completely disposed.

+
+

Parameters

+
+++++ + + + + + +

self

a QmiMessageWdsSetEventReportOutput.

 
+
+

Since: 1.18

+
+
+
+

qmi_message_wds_set_event_report_output_get_result ()

+
gboolean
+qmi_message_wds_set_event_report_output_get_result
+                               (QmiMessageWdsSetEventReportOutput *self,
+                                GError **error);
+

Get the result of the QMI operation.

+
+

Parameters

+
+++++ + + + + + + + + + + + + +

self

a QmiMessageWdsSetEventReportOutput.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the QMI operation succeeded, FALSE if error +is set.

+
+

Since: 1.18

+
+
+
+

qmi_client_wds_set_event_report ()

+
void
+qmi_client_wds_set_event_report (QmiClientWds *self,
+                                 QmiMessageWdsSetEventReportInput *input,
+                                 guint timeout,
+                                 GCancellable *cancellable,
+                                 GAsyncReadyCallback callback,
+                                 gpointer user_data);
+

Asynchronously sends a Set Event Report request to the device.

+

When the operation is finished, callback + will be invoked in the thread-default main loop of the thread you are calling this method from.

+

You can then call qmi_client_wds_set_event_report_finish() to get the result of the operation.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

self

a QmiClientWds.

 

input

a QmiMessageWdsSetEventReportInput.

 

timeout

maximum time to wait for the method to complete, in seconds.

 

cancellable

a GCancellable or NULL.

 

callback

a GAsyncReadyCallback to call when the request is satisfied.

 

user_data

user data to pass to callback +.

 
+
+

Since: 1.18

+
+
+
+

qmi_client_wds_set_event_report_finish ()

+
QmiMessageWdsSetEventReportOutput *
+qmi_client_wds_set_event_report_finish
+                               (QmiClientWds *self,
+                                GAsyncResult *res,
+                                GError **error);
+

Finishes an async operation started with qmi_client_wds_set_event_report().

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiClientWds.

 

res

the GAsyncResult obtained from the GAsyncReadyCallback passed to qmi_client_wds_set_event_report().

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

a QmiMessageWdsSetEventReportOutput, or NULL if error +is set. The returned value should be freed with qmi_message_wds_set_event_report_output_unref().

+
+

Since: 1.18

+
+
+
+

Types and Values

+
+

QmiMessageWdsSetEventReportInput

+
typedef struct _QmiMessageWdsSetEventReportInput QmiMessageWdsSetEventReportInput;
+

The QmiMessageWdsSetEventReportInput structure contains private data and should only be accessed +using the provided API.

+

Since: 1.18

+
+
+
+

QmiMessageWdsSetEventReportOutput

+
typedef struct _QmiMessageWdsSetEventReportOutput QmiMessageWdsSetEventReportOutput;
+

The QmiMessageWdsSetEventReportOutput structure contains private data and should only be accessed +using the provided API.

+

Since: 1.18

+
+
+
+ + + \ No newline at end of file diff -Nru libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-WDS-Set-IP-Family.html libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-WDS-Set-IP-Family.html --- libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-WDS-Set-IP-Family.html 2017-03-22 12:28:29.000000000 +0100 +++ libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-WDS-Set-IP-Family.html 1970-01-01 01:00:00.000000000 +0100 @@ -1,530 +0,0 @@ - - - - -WDS Set IP Family: libqmi-glib Reference Manual - - - - - - - - - - - - - - - - -
-
-
- - -
-

WDS Set IP Family

-

WDS Set IP Family

-
- -
-

Types and Values

- -
-
-

Object Hierarchy

-
    GBoxed
-    ├── QmiMessageWdsSetIpFamilyInput
-    ╰── QmiMessageWdsSetIpFamilyOutput
-
-
-
-

Description

-
-
-

Functions

-
-

qmi_message_wds_set_ip_family_input_new ()

-
QmiMessageWdsSetIpFamilyInput *
-qmi_message_wds_set_ip_family_input_new
-                               (void);
-

Allocates a new QmiMessageWdsSetIpFamilyInput.

-
-

Returns

-

the newly created QmiMessageWdsSetIpFamilyInput. The returned value should be freed with qmi_message_wds_set_ip_family_input_unref().

-
-

Since: 1.0

-
-
-
-

qmi_message_wds_set_ip_family_input_ref ()

-
QmiMessageWdsSetIpFamilyInput *
-qmi_message_wds_set_ip_family_input_ref
-                               (QmiMessageWdsSetIpFamilyInput *self);
-

Atomically increments the reference count of self - by one.

-
-

Parameters

-
----- - - - - - -

self

a QmiMessageWdsSetIpFamilyInput.

 
-
-
-

Returns

-

the new reference to self -.

-
-

Since: 1.0

-
-
-
-

qmi_message_wds_set_ip_family_input_unref ()

-
void
-qmi_message_wds_set_ip_family_input_unref
-                               (QmiMessageWdsSetIpFamilyInput *self);
-

Atomically decrements the reference count of self - by one. -If the reference count drops to 0, self - is completely disposed.

-
-

Parameters

-
----- - - - - - -

self

a QmiMessageWdsSetIpFamilyInput.

 
-
-

Since: 1.0

-
-
-
-

qmi_message_wds_set_ip_family_input_get_preference ()

-
gboolean
-qmi_message_wds_set_ip_family_input_get_preference
-                               (QmiMessageWdsSetIpFamilyInput *self,
-                                QmiWdsIpFamily *value_preference,
-                                GError **error);
-

Get the 'Preference' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessageWdsSetIpFamilyInput.

 

value_preference

a placeholder for the output QmiWdsIpFamily, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.0

-
-
-
-

qmi_message_wds_set_ip_family_input_set_preference ()

-
gboolean
-qmi_message_wds_set_ip_family_input_set_preference
-                               (QmiMessageWdsSetIpFamilyInput *self,
-                                QmiWdsIpFamily value_preference,
-                                GError **error);
-

Set the 'Preference' field in the message.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessageWdsSetIpFamilyInput.

 

value_preference

a QmiWdsIpFamily.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if value -was successfully set, FALSE otherwise.

-
-

Since: 1.0

-
-
-
-

qmi_message_wds_set_ip_family_output_ref ()

-
QmiMessageWdsSetIpFamilyOutput *
-qmi_message_wds_set_ip_family_output_ref
-                               (QmiMessageWdsSetIpFamilyOutput *self);
-

Atomically increments the reference count of self - by one.

-
-

Parameters

-
----- - - - - - -

self

a QmiMessageWdsSetIpFamilyOutput.

 
-
-
-

Returns

-

the new reference to self -.

-
-

Since: 1.0

-
-
-
-

qmi_message_wds_set_ip_family_output_unref ()

-
void
-qmi_message_wds_set_ip_family_output_unref
-                               (QmiMessageWdsSetIpFamilyOutput *self);
-

Atomically decrements the reference count of self - by one. -If the reference count drops to 0, self - is completely disposed.

-
-

Parameters

-
----- - - - - - -

self

a QmiMessageWdsSetIpFamilyOutput.

 
-
-

Since: 1.0

-
-
-
-

qmi_message_wds_set_ip_family_output_get_result ()

-
gboolean
-qmi_message_wds_set_ip_family_output_get_result
-                               (QmiMessageWdsSetIpFamilyOutput *self,
-                                GError **error);
-

Get the result of the QMI operation.

-
-

Parameters

-
----- - - - - - - - - - - - - -

self

a QmiMessageWdsSetIpFamilyOutput.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the QMI operation succeeded, FALSE if error -is set.

-
-

Since: 1.0

-
-
-
-

qmi_client_wds_set_ip_family ()

-
void
-qmi_client_wds_set_ip_family (QmiClientWds *self,
-                              QmiMessageWdsSetIpFamilyInput *input,
-                              guint timeout,
-                              GCancellable *cancellable,
-                              GAsyncReadyCallback callback,
-                              gpointer user_data);
-

Asynchronously sends a Set IP Family request to the device.

-

When the operation is finished, callback - will be invoked in the thread-default main loop of the thread you are calling this method from.

-

You can then call qmi_client_wds_set_ip_family_finish() to get the result of the operation.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

self

a QmiClientWds.

 

input

a QmiMessageWdsSetIpFamilyInput.

 

timeout

maximum time to wait for the method to complete, in seconds.

 

cancellable

a GCancellable or NULL.

 

callback

a GAsyncReadyCallback to call when the request is satisfied.

 

user_data

user data to pass to callback -.

 
-
-

Since: 1.0

-
-
-
-

qmi_client_wds_set_ip_family_finish ()

-
QmiMessageWdsSetIpFamilyOutput *
-qmi_client_wds_set_ip_family_finish (QmiClientWds *self,
-                                     GAsyncResult *res,
-                                     GError **error);
-

Finishes an async operation started with qmi_client_wds_set_ip_family().

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiClientWds.

 

res

the GAsyncResult obtained from the GAsyncReadyCallback passed to qmi_client_wds_set_ip_family().

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

a QmiMessageWdsSetIpFamilyOutput, or NULL if error -is set. The returned value should be freed with qmi_message_wds_set_ip_family_output_unref().

-
-

Since: 1.0

-
-
-
-

Types and Values

-
-

QmiMessageWdsSetIpFamilyInput

-
typedef struct _QmiMessageWdsSetIpFamilyInput QmiMessageWdsSetIpFamilyInput;
-

The QmiMessageWdsSetIpFamilyInput structure contains private data and should only be accessed -using the provided API.

-

Since: 1.0

-
-
-
-

QmiMessageWdsSetIpFamilyOutput

-
typedef struct _QmiMessageWdsSetIpFamilyOutput QmiMessageWdsSetIpFamilyOutput;
-

The QmiMessageWdsSetIpFamilyOutput structure contains private data and should only be accessed -using the provided API.

-

Since: 1.0

-
-
-
- - - \ No newline at end of file diff -Nru libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-WDS-Set-IP-Family-request.html libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-WDS-Set-IP-Family-request.html --- libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-WDS-Set-IP-Family-request.html 1970-01-01 01:00:00.000000000 +0100 +++ libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-WDS-Set-IP-Family-request.html 2019-01-08 15:19:02.000000000 +0100 @@ -0,0 +1,530 @@ + + + + +WDS Set IP Family request: libqmi-glib Reference Manual + + + + + + + + + + + + + + + + +
+
+
+ + +
+

WDS Set IP Family request

+

WDS Set IP Family request

+
+ +
+

Types and Values

+ +
+
+

Object Hierarchy

+
    GBoxed
+    ├── QmiMessageWdsSetIpFamilyInput
+    ╰── QmiMessageWdsSetIpFamilyOutput
+
+
+
+

Description

+
+
+

Functions

+
+

qmi_message_wds_set_ip_family_input_new ()

+
QmiMessageWdsSetIpFamilyInput *
+qmi_message_wds_set_ip_family_input_new
+                               (void);
+

Allocates a new QmiMessageWdsSetIpFamilyInput.

+
+

Returns

+

the newly created QmiMessageWdsSetIpFamilyInput. The returned value should be freed with qmi_message_wds_set_ip_family_input_unref().

+
+

Since: 1.0

+
+
+
+

qmi_message_wds_set_ip_family_input_ref ()

+
QmiMessageWdsSetIpFamilyInput *
+qmi_message_wds_set_ip_family_input_ref
+                               (QmiMessageWdsSetIpFamilyInput *self);
+

Atomically increments the reference count of self + by one.

+
+

Parameters

+
+++++ + + + + + +

self

a QmiMessageWdsSetIpFamilyInput.

 
+
+
+

Returns

+

the new reference to self +.

+
+

Since: 1.0

+
+
+
+

qmi_message_wds_set_ip_family_input_unref ()

+
void
+qmi_message_wds_set_ip_family_input_unref
+                               (QmiMessageWdsSetIpFamilyInput *self);
+

Atomically decrements the reference count of self + by one. +If the reference count drops to 0, self + is completely disposed.

+
+

Parameters

+
+++++ + + + + + +

self

a QmiMessageWdsSetIpFamilyInput.

 
+
+

Since: 1.0

+
+
+
+

qmi_message_wds_set_ip_family_input_get_preference ()

+
gboolean
+qmi_message_wds_set_ip_family_input_get_preference
+                               (QmiMessageWdsSetIpFamilyInput *self,
+                                QmiWdsIpFamily *value_preference,
+                                GError **error);
+

Get the 'Preference' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageWdsSetIpFamilyInput.

 

value_preference

a placeholder for the output QmiWdsIpFamily, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.0

+
+
+
+

qmi_message_wds_set_ip_family_input_set_preference ()

+
gboolean
+qmi_message_wds_set_ip_family_input_set_preference
+                               (QmiMessageWdsSetIpFamilyInput *self,
+                                QmiWdsIpFamily value_preference,
+                                GError **error);
+

Set the 'Preference' field in the message.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageWdsSetIpFamilyInput.

 

value_preference

a QmiWdsIpFamily.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if value +was successfully set, FALSE otherwise.

+
+

Since: 1.0

+
+
+
+

qmi_message_wds_set_ip_family_output_ref ()

+
QmiMessageWdsSetIpFamilyOutput *
+qmi_message_wds_set_ip_family_output_ref
+                               (QmiMessageWdsSetIpFamilyOutput *self);
+

Atomically increments the reference count of self + by one.

+
+

Parameters

+
+++++ + + + + + +

self

a QmiMessageWdsSetIpFamilyOutput.

 
+
+
+

Returns

+

the new reference to self +.

+
+

Since: 1.0

+
+
+
+

qmi_message_wds_set_ip_family_output_unref ()

+
void
+qmi_message_wds_set_ip_family_output_unref
+                               (QmiMessageWdsSetIpFamilyOutput *self);
+

Atomically decrements the reference count of self + by one. +If the reference count drops to 0, self + is completely disposed.

+
+

Parameters

+
+++++ + + + + + +

self

a QmiMessageWdsSetIpFamilyOutput.

 
+
+

Since: 1.0

+
+
+
+

qmi_message_wds_set_ip_family_output_get_result ()

+
gboolean
+qmi_message_wds_set_ip_family_output_get_result
+                               (QmiMessageWdsSetIpFamilyOutput *self,
+                                GError **error);
+

Get the result of the QMI operation.

+
+

Parameters

+
+++++ + + + + + + + + + + + + +

self

a QmiMessageWdsSetIpFamilyOutput.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the QMI operation succeeded, FALSE if error +is set.

+
+

Since: 1.0

+
+
+
+

qmi_client_wds_set_ip_family ()

+
void
+qmi_client_wds_set_ip_family (QmiClientWds *self,
+                              QmiMessageWdsSetIpFamilyInput *input,
+                              guint timeout,
+                              GCancellable *cancellable,
+                              GAsyncReadyCallback callback,
+                              gpointer user_data);
+

Asynchronously sends a Set IP Family request to the device.

+

When the operation is finished, callback + will be invoked in the thread-default main loop of the thread you are calling this method from.

+

You can then call qmi_client_wds_set_ip_family_finish() to get the result of the operation.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

self

a QmiClientWds.

 

input

a QmiMessageWdsSetIpFamilyInput.

 

timeout

maximum time to wait for the method to complete, in seconds.

 

cancellable

a GCancellable or NULL.

 

callback

a GAsyncReadyCallback to call when the request is satisfied.

 

user_data

user data to pass to callback +.

 
+
+

Since: 1.0

+
+
+
+

qmi_client_wds_set_ip_family_finish ()

+
QmiMessageWdsSetIpFamilyOutput *
+qmi_client_wds_set_ip_family_finish (QmiClientWds *self,
+                                     GAsyncResult *res,
+                                     GError **error);
+

Finishes an async operation started with qmi_client_wds_set_ip_family().

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiClientWds.

 

res

the GAsyncResult obtained from the GAsyncReadyCallback passed to qmi_client_wds_set_ip_family().

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

a QmiMessageWdsSetIpFamilyOutput, or NULL if error +is set. The returned value should be freed with qmi_message_wds_set_ip_family_output_unref().

+
+

Since: 1.0

+
+
+
+

Types and Values

+
+

QmiMessageWdsSetIpFamilyInput

+
typedef struct _QmiMessageWdsSetIpFamilyInput QmiMessageWdsSetIpFamilyInput;
+

The QmiMessageWdsSetIpFamilyInput structure contains private data and should only be accessed +using the provided API.

+

Since: 1.0

+
+
+
+

QmiMessageWdsSetIpFamilyOutput

+
typedef struct _QmiMessageWdsSetIpFamilyOutput QmiMessageWdsSetIpFamilyOutput;
+

The QmiMessageWdsSetIpFamilyOutput structure contains private data and should only be accessed +using the provided API.

+

Since: 1.0

+
+
+
+ + + \ No newline at end of file diff -Nru libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-WDS-Start-Network.html libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-WDS-Start-Network.html --- libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-WDS-Start-Network.html 2017-03-22 12:28:29.000000000 +0100 +++ libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-WDS-Start-Network.html 1970-01-01 01:00:00.000000000 +0100 @@ -1,2219 +0,0 @@ - - - - -WDS Start Network: libqmi-glib Reference Manual - - - - - - - - - - - - - - - - -
-
-
- - -
-

WDS Start Network

-

WDS Start Network

-
-
-

Functions

-
---- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
-QmiMessageWdsStartNetworkInput * - -qmi_message_wds_start_network_input_new () -
-QmiMessageWdsStartNetworkInput * - -qmi_message_wds_start_network_input_ref () -
-void - -qmi_message_wds_start_network_input_unref () -
-gboolean - -qmi_message_wds_start_network_input_get_call_type () -
-gboolean - -qmi_message_wds_start_network_input_set_call_type () -
-gboolean - -qmi_message_wds_start_network_input_get_extended_technology_preference () -
-gboolean - -qmi_message_wds_start_network_input_set_extended_technology_preference () -
-gboolean - -qmi_message_wds_start_network_input_get_enable_autoconnect () -
-gboolean - -qmi_message_wds_start_network_input_set_enable_autoconnect () -
-gboolean - -qmi_message_wds_start_network_input_get_profile_index_3gpp2 () -
-gboolean - -qmi_message_wds_start_network_input_set_profile_index_3gpp2 () -
-gboolean - -qmi_message_wds_start_network_input_get_profile_index_3gpp () -
-gboolean - -qmi_message_wds_start_network_input_set_profile_index_3gpp () -
-gboolean - -qmi_message_wds_start_network_input_get_technology_preference () -
-gboolean - -qmi_message_wds_start_network_input_set_technology_preference () -
-gboolean - -qmi_message_wds_start_network_input_get_ip_family_preference () -
-gboolean - -qmi_message_wds_start_network_input_set_ip_family_preference () -
-gboolean - -qmi_message_wds_start_network_input_get_password () -
-gboolean - -qmi_message_wds_start_network_input_set_password () -
-gboolean - -qmi_message_wds_start_network_input_get_username () -
-gboolean - -qmi_message_wds_start_network_input_set_username () -
-gboolean - -qmi_message_wds_start_network_input_get_authentication_preference () -
-gboolean - -qmi_message_wds_start_network_input_set_authentication_preference () -
-gboolean - -qmi_message_wds_start_network_input_get_ipv4_address_preference () -
-gboolean - -qmi_message_wds_start_network_input_set_ipv4_address_preference () -
-gboolean - -qmi_message_wds_start_network_input_get_apn () -
-gboolean - -qmi_message_wds_start_network_input_set_apn () -
-gboolean - -qmi_message_wds_start_network_input_get_secondary_nbns_address_preference () -
-gboolean - -qmi_message_wds_start_network_input_set_secondary_nbns_address_preference () -
-gboolean - -qmi_message_wds_start_network_input_get_primary_nbns_address_preference () -
-gboolean - -qmi_message_wds_start_network_input_set_primary_nbns_address_preference () -
-gboolean - -qmi_message_wds_start_network_input_get_secondary_dns_address_preference () -
-gboolean - -qmi_message_wds_start_network_input_set_secondary_dns_address_preference () -
-gboolean - -qmi_message_wds_start_network_input_get_primary_dns_address_preference () -
-gboolean - -qmi_message_wds_start_network_input_set_primary_dns_address_preference () -
-QmiMessageWdsStartNetworkOutput * - -qmi_message_wds_start_network_output_ref () -
-void - -qmi_message_wds_start_network_output_unref () -
-gboolean - -qmi_message_wds_start_network_output_get_result () -
-gboolean - -qmi_message_wds_start_network_output_get_packet_data_handle () -
-gboolean - -qmi_message_wds_start_network_output_get_call_end_reason () -
-gboolean - -qmi_message_wds_start_network_output_get_verbose_call_end_reason () -
-void - -qmi_client_wds_start_network () -
-QmiMessageWdsStartNetworkOutput * - -qmi_client_wds_start_network_finish () -
-
-
-

Types and Values

- -
-
-

Object Hierarchy

-
    GBoxed
-    ├── QmiMessageWdsStartNetworkInput
-    ╰── QmiMessageWdsStartNetworkOutput
-
-
-
-

Description

-
-
-

Functions

-
-

qmi_message_wds_start_network_input_new ()

-
QmiMessageWdsStartNetworkInput *
-qmi_message_wds_start_network_input_new
-                               (void);
-

Allocates a new QmiMessageWdsStartNetworkInput.

-
-

Returns

-

the newly created QmiMessageWdsStartNetworkInput. The returned value should be freed with qmi_message_wds_start_network_input_unref().

-
-

Since: 1.0

-
-
-
-

qmi_message_wds_start_network_input_ref ()

-
QmiMessageWdsStartNetworkInput *
-qmi_message_wds_start_network_input_ref
-                               (QmiMessageWdsStartNetworkInput *self);
-

Atomically increments the reference count of self - by one.

-
-

Parameters

-
----- - - - - - -

self

a QmiMessageWdsStartNetworkInput.

 
-
-
-

Returns

-

the new reference to self -.

-
-

Since: 1.0

-
-
-
-

qmi_message_wds_start_network_input_unref ()

-
void
-qmi_message_wds_start_network_input_unref
-                               (QmiMessageWdsStartNetworkInput *self);
-

Atomically decrements the reference count of self - by one. -If the reference count drops to 0, self - is completely disposed.

-
-

Parameters

-
----- - - - - - -

self

a QmiMessageWdsStartNetworkInput.

 
-
-

Since: 1.0

-
-
-
-

qmi_message_wds_start_network_input_get_call_type ()

-
gboolean
-qmi_message_wds_start_network_input_get_call_type
-                               (QmiMessageWdsStartNetworkInput *self,
-                                QmiWdsCallType *value_call_type,
-                                GError **error);
-

Get the 'Call Type' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessageWdsStartNetworkInput.

 

value_call_type

a placeholder for the output QmiWdsCallType, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.0

-
-
-
-

qmi_message_wds_start_network_input_set_call_type ()

-
gboolean
-qmi_message_wds_start_network_input_set_call_type
-                               (QmiMessageWdsStartNetworkInput *self,
-                                QmiWdsCallType value_call_type,
-                                GError **error);
-

Set the 'Call Type' field in the message.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessageWdsStartNetworkInput.

 

value_call_type

a QmiWdsCallType.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if value -was successfully set, FALSE otherwise.

-
-

Since: 1.0

-
-
-
-

qmi_message_wds_start_network_input_get_extended_technology_preference ()

-
gboolean
-qmi_message_wds_start_network_input_get_extended_technology_preference
-                               (QmiMessageWdsStartNetworkInput *self,
-                                QmiWdsExtendedTechnologyPreference *value_extended_technology_preference,
-                                GError **error);
-

Get the 'Extended Technology Preference' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessageWdsStartNetworkInput.

 

value_extended_technology_preference

a placeholder for the output QmiWdsExtendedTechnologyPreference, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.0

-
-
-
-

qmi_message_wds_start_network_input_set_extended_technology_preference ()

-
gboolean
-qmi_message_wds_start_network_input_set_extended_technology_preference
-                               (QmiMessageWdsStartNetworkInput *self,
-                                QmiWdsExtendedTechnologyPreference value_extended_technology_preference,
-                                GError **error);
-

Set the 'Extended Technology Preference' field in the message.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessageWdsStartNetworkInput.

 

value_extended_technology_preference

a QmiWdsExtendedTechnologyPreference.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if value -was successfully set, FALSE otherwise.

-
-

Since: 1.0

-
-
-
-

qmi_message_wds_start_network_input_get_enable_autoconnect ()

-
gboolean
-qmi_message_wds_start_network_input_get_enable_autoconnect
-                               (QmiMessageWdsStartNetworkInput *self,
-                                gboolean *value_enable_autoconnect,
-                                GError **error);
-

Get the 'Enable Autoconnect' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessageWdsStartNetworkInput.

 

value_enable_autoconnect

a placeholder for the output gboolean, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.0

-
-
-
-

qmi_message_wds_start_network_input_set_enable_autoconnect ()

-
gboolean
-qmi_message_wds_start_network_input_set_enable_autoconnect
-                               (QmiMessageWdsStartNetworkInput *self,
-                                gboolean value_enable_autoconnect,
-                                GError **error);
-

Set the 'Enable Autoconnect' field in the message.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessageWdsStartNetworkInput.

 

value_enable_autoconnect

a gboolean.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if value -was successfully set, FALSE otherwise.

-
-

Since: 1.0

-
-
-
-

qmi_message_wds_start_network_input_get_profile_index_3gpp2 ()

-
gboolean
-qmi_message_wds_start_network_input_get_profile_index_3gpp2
-                               (QmiMessageWdsStartNetworkInput *self,
-                                guint8 *value_profile_index_3gpp2,
-                                GError **error);
-

Get the 'Profile Index 3GPP2' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessageWdsStartNetworkInput.

 

value_profile_index_3gpp2

a placeholder for the output guint8, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.0

-
-
-
-

qmi_message_wds_start_network_input_set_profile_index_3gpp2 ()

-
gboolean
-qmi_message_wds_start_network_input_set_profile_index_3gpp2
-                               (QmiMessageWdsStartNetworkInput *self,
-                                guint8 value_profile_index_3gpp2,
-                                GError **error);
-

Set the 'Profile Index 3GPP2' field in the message.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessageWdsStartNetworkInput.

 

value_profile_index_3gpp2

a guint8.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if value -was successfully set, FALSE otherwise.

-
-

Since: 1.0

-
-
-
-

qmi_message_wds_start_network_input_get_profile_index_3gpp ()

-
gboolean
-qmi_message_wds_start_network_input_get_profile_index_3gpp
-                               (QmiMessageWdsStartNetworkInput *self,
-                                guint8 *value_profile_index_3gpp,
-                                GError **error);
-

Get the 'Profile Index 3GPP' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessageWdsStartNetworkInput.

 

value_profile_index_3gpp

a placeholder for the output guint8, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.0

-
-
-
-

qmi_message_wds_start_network_input_set_profile_index_3gpp ()

-
gboolean
-qmi_message_wds_start_network_input_set_profile_index_3gpp
-                               (QmiMessageWdsStartNetworkInput *self,
-                                guint8 value_profile_index_3gpp,
-                                GError **error);
-

Set the 'Profile Index 3GPP' field in the message.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessageWdsStartNetworkInput.

 

value_profile_index_3gpp

a guint8.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if value -was successfully set, FALSE otherwise.

-
-

Since: 1.0

-
-
-
-

qmi_message_wds_start_network_input_get_technology_preference ()

-
gboolean
-qmi_message_wds_start_network_input_get_technology_preference
-                               (QmiMessageWdsStartNetworkInput *self,
-                                QmiWdsTechnologyPreference *value_technology_preference,
-                                GError **error);
-

Get the 'Technology Preference' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessageWdsStartNetworkInput.

 

value_technology_preference

a placeholder for the output QmiWdsTechnologyPreference, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.0

-
-
-
-

qmi_message_wds_start_network_input_set_technology_preference ()

-
gboolean
-qmi_message_wds_start_network_input_set_technology_preference
-                               (QmiMessageWdsStartNetworkInput *self,
-                                QmiWdsTechnologyPreference value_technology_preference,
-                                GError **error);
-

Set the 'Technology Preference' field in the message.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessageWdsStartNetworkInput.

 

value_technology_preference

a QmiWdsTechnologyPreference.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if value -was successfully set, FALSE otherwise.

-
-

Since: 1.0

-
-
-
-

qmi_message_wds_start_network_input_get_ip_family_preference ()

-
gboolean
-qmi_message_wds_start_network_input_get_ip_family_preference
-                               (QmiMessageWdsStartNetworkInput *self,
-                                QmiWdsIpFamily *value_ip_family_preference,
-                                GError **error);
-

Get the 'IP Family Preference' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessageWdsStartNetworkInput.

 

value_ip_family_preference

a placeholder for the output QmiWdsIpFamily, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.0

-
-
-
-

qmi_message_wds_start_network_input_set_ip_family_preference ()

-
gboolean
-qmi_message_wds_start_network_input_set_ip_family_preference
-                               (QmiMessageWdsStartNetworkInput *self,
-                                QmiWdsIpFamily value_ip_family_preference,
-                                GError **error);
-

Set the 'IP Family Preference' field in the message.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessageWdsStartNetworkInput.

 

value_ip_family_preference

a QmiWdsIpFamily.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if value -was successfully set, FALSE otherwise.

-
-

Since: 1.0

-
-
-
-

qmi_message_wds_start_network_input_get_password ()

-
gboolean
-qmi_message_wds_start_network_input_get_password
-                               (QmiMessageWdsStartNetworkInput *self,
-                                const gchar **value_password,
-                                GError **error);
-

Get the 'Password' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessageWdsStartNetworkInput.

 

value_password

a placeholder for the output constant string, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.0

-
-
-
-

qmi_message_wds_start_network_input_set_password ()

-
gboolean
-qmi_message_wds_start_network_input_set_password
-                               (QmiMessageWdsStartNetworkInput *self,
-                                const gchar *value_password,
-                                GError **error);
-

Set the 'Password' field in the message.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessageWdsStartNetworkInput.

 

value_password

a constant string.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if value -was successfully set, FALSE otherwise.

-
-

Since: 1.0

-
-
-
-

qmi_message_wds_start_network_input_get_username ()

-
gboolean
-qmi_message_wds_start_network_input_get_username
-                               (QmiMessageWdsStartNetworkInput *self,
-                                const gchar **value_username,
-                                GError **error);
-

Get the 'Username' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessageWdsStartNetworkInput.

 

value_username

a placeholder for the output constant string, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.0

-
-
-
-

qmi_message_wds_start_network_input_set_username ()

-
gboolean
-qmi_message_wds_start_network_input_set_username
-                               (QmiMessageWdsStartNetworkInput *self,
-                                const gchar *value_username,
-                                GError **error);
-

Set the 'Username' field in the message.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessageWdsStartNetworkInput.

 

value_username

a constant string.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if value -was successfully set, FALSE otherwise.

-
-

Since: 1.0

-
-
-
-

qmi_message_wds_start_network_input_get_authentication_preference ()

-
gboolean
-qmi_message_wds_start_network_input_get_authentication_preference
-                               (QmiMessageWdsStartNetworkInput *self,
-                                QmiWdsAuthentication *value_authentication_preference,
-                                GError **error);
-

Get the 'Authentication Preference' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessageWdsStartNetworkInput.

 

value_authentication_preference

a placeholder for the output QmiWdsAuthentication, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.0

-
-
-
-

qmi_message_wds_start_network_input_set_authentication_preference ()

-
gboolean
-qmi_message_wds_start_network_input_set_authentication_preference
-                               (QmiMessageWdsStartNetworkInput *self,
-                                QmiWdsAuthentication value_authentication_preference,
-                                GError **error);
-

Set the 'Authentication Preference' field in the message.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessageWdsStartNetworkInput.

 

value_authentication_preference

a QmiWdsAuthentication.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if value -was successfully set, FALSE otherwise.

-
-

Since: 1.0

-
-
-
-

qmi_message_wds_start_network_input_get_ipv4_address_preference ()

-
gboolean
-qmi_message_wds_start_network_input_get_ipv4_address_preference
-                               (QmiMessageWdsStartNetworkInput *self,
-                                guint32 *value_ipv4_address_preference,
-                                GError **error);
-

Get the 'IPv4 Address Preference' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessageWdsStartNetworkInput.

 

value_ipv4_address_preference

a placeholder for the output guint32, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.0

-
-
-
-

qmi_message_wds_start_network_input_set_ipv4_address_preference ()

-
gboolean
-qmi_message_wds_start_network_input_set_ipv4_address_preference
-                               (QmiMessageWdsStartNetworkInput *self,
-                                guint32 value_ipv4_address_preference,
-                                GError **error);
-

Set the 'IPv4 Address Preference' field in the message.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessageWdsStartNetworkInput.

 

value_ipv4_address_preference

a guint32.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if value -was successfully set, FALSE otherwise.

-
-

Since: 1.0

-
-
-
-

qmi_message_wds_start_network_input_get_apn ()

-
gboolean
-qmi_message_wds_start_network_input_get_apn
-                               (QmiMessageWdsStartNetworkInput *self,
-                                const gchar **value_apn,
-                                GError **error);
-

Get the 'APN' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessageWdsStartNetworkInput.

 

value_apn

a placeholder for the output constant string, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.0

-
-
-
-

qmi_message_wds_start_network_input_set_apn ()

-
gboolean
-qmi_message_wds_start_network_input_set_apn
-                               (QmiMessageWdsStartNetworkInput *self,
-                                const gchar *value_apn,
-                                GError **error);
-

Set the 'APN' field in the message.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessageWdsStartNetworkInput.

 

value_apn

a constant string.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if value -was successfully set, FALSE otherwise.

-
-

Since: 1.0

-
-
-
-

qmi_message_wds_start_network_input_get_secondary_nbns_address_preference ()

-
gboolean
-qmi_message_wds_start_network_input_get_secondary_nbns_address_preference
-                               (QmiMessageWdsStartNetworkInput *self,
-                                guint32 *value_secondary_nbns_address_preference,
-                                GError **error);
-

Get the 'Secondary NBNS Address Preference' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessageWdsStartNetworkInput.

 

value_secondary_nbns_address_preference

a placeholder for the output guint32, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.0

-
-
-
-

qmi_message_wds_start_network_input_set_secondary_nbns_address_preference ()

-
gboolean
-qmi_message_wds_start_network_input_set_secondary_nbns_address_preference
-                               (QmiMessageWdsStartNetworkInput *self,
-                                guint32 value_secondary_nbns_address_preference,
-                                GError **error);
-

Set the 'Secondary NBNS Address Preference' field in the message.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessageWdsStartNetworkInput.

 

value_secondary_nbns_address_preference

a guint32.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if value -was successfully set, FALSE otherwise.

-
-

Since: 1.0

-
-
-
-

qmi_message_wds_start_network_input_get_primary_nbns_address_preference ()

-
gboolean
-qmi_message_wds_start_network_input_get_primary_nbns_address_preference
-                               (QmiMessageWdsStartNetworkInput *self,
-                                guint32 *value_primary_nbns_address_preference,
-                                GError **error);
-

Get the 'Primary NBNS Address Preference' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessageWdsStartNetworkInput.

 

value_primary_nbns_address_preference

a placeholder for the output guint32, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.0

-
-
-
-

qmi_message_wds_start_network_input_set_primary_nbns_address_preference ()

-
gboolean
-qmi_message_wds_start_network_input_set_primary_nbns_address_preference
-                               (QmiMessageWdsStartNetworkInput *self,
-                                guint32 value_primary_nbns_address_preference,
-                                GError **error);
-

Set the 'Primary NBNS Address Preference' field in the message.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessageWdsStartNetworkInput.

 

value_primary_nbns_address_preference

a guint32.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if value -was successfully set, FALSE otherwise.

-
-

Since: 1.0

-
-
-
-

qmi_message_wds_start_network_input_get_secondary_dns_address_preference ()

-
gboolean
-qmi_message_wds_start_network_input_get_secondary_dns_address_preference
-                               (QmiMessageWdsStartNetworkInput *self,
-                                guint32 *value_secondary_dns_address_preference,
-                                GError **error);
-

Get the 'Secondary DNS Address Preference' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessageWdsStartNetworkInput.

 

value_secondary_dns_address_preference

a placeholder for the output guint32, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.0

-
-
-
-

qmi_message_wds_start_network_input_set_secondary_dns_address_preference ()

-
gboolean
-qmi_message_wds_start_network_input_set_secondary_dns_address_preference
-                               (QmiMessageWdsStartNetworkInput *self,
-                                guint32 value_secondary_dns_address_preference,
-                                GError **error);
-

Set the 'Secondary DNS Address Preference' field in the message.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessageWdsStartNetworkInput.

 

value_secondary_dns_address_preference

a guint32.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if value -was successfully set, FALSE otherwise.

-
-

Since: 1.0

-
-
-
-

qmi_message_wds_start_network_input_get_primary_dns_address_preference ()

-
gboolean
-qmi_message_wds_start_network_input_get_primary_dns_address_preference
-                               (QmiMessageWdsStartNetworkInput *self,
-                                guint32 *value_primary_dns_address_preference,
-                                GError **error);
-

Get the 'Primary DNS Address Preference' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessageWdsStartNetworkInput.

 

value_primary_dns_address_preference

a placeholder for the output guint32, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.0

-
-
-
-

qmi_message_wds_start_network_input_set_primary_dns_address_preference ()

-
gboolean
-qmi_message_wds_start_network_input_set_primary_dns_address_preference
-                               (QmiMessageWdsStartNetworkInput *self,
-                                guint32 value_primary_dns_address_preference,
-                                GError **error);
-

Set the 'Primary DNS Address Preference' field in the message.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessageWdsStartNetworkInput.

 

value_primary_dns_address_preference

a guint32.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if value -was successfully set, FALSE otherwise.

-
-

Since: 1.0

-
-
-
-

qmi_message_wds_start_network_output_ref ()

-
QmiMessageWdsStartNetworkOutput *
-qmi_message_wds_start_network_output_ref
-                               (QmiMessageWdsStartNetworkOutput *self);
-

Atomically increments the reference count of self - by one.

-
-

Parameters

-
----- - - - - - -

self

a QmiMessageWdsStartNetworkOutput.

 
-
-
-

Returns

-

the new reference to self -.

-
-

Since: 1.0

-
-
-
-

qmi_message_wds_start_network_output_unref ()

-
void
-qmi_message_wds_start_network_output_unref
-                               (QmiMessageWdsStartNetworkOutput *self);
-

Atomically decrements the reference count of self - by one. -If the reference count drops to 0, self - is completely disposed.

-
-

Parameters

-
----- - - - - - -

self

a QmiMessageWdsStartNetworkOutput.

 
-
-

Since: 1.0

-
-
-
-

qmi_message_wds_start_network_output_get_result ()

-
gboolean
-qmi_message_wds_start_network_output_get_result
-                               (QmiMessageWdsStartNetworkOutput *self,
-                                GError **error);
-

Get the result of the QMI operation.

-
-

Parameters

-
----- - - - - - - - - - - - - -

self

a QmiMessageWdsStartNetworkOutput.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the QMI operation succeeded, FALSE if error -is set.

-
-

Since: 1.0

-
-
-
-

qmi_message_wds_start_network_output_get_packet_data_handle ()

-
gboolean
-qmi_message_wds_start_network_output_get_packet_data_handle
-                               (QmiMessageWdsStartNetworkOutput *self,
-                                guint32 *value_packet_data_handle,
-                                GError **error);
-

Get the 'Packet Data Handle' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessageWdsStartNetworkOutput.

 

value_packet_data_handle

a placeholder for the output guint32, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.0

-
-
-
-

qmi_message_wds_start_network_output_get_call_end_reason ()

-
gboolean
-qmi_message_wds_start_network_output_get_call_end_reason
-                               (QmiMessageWdsStartNetworkOutput *self,
-                                QmiWdsCallEndReason *value_call_end_reason,
-                                GError **error);
-

Get the 'Call End Reason' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessageWdsStartNetworkOutput.

 

value_call_end_reason

a placeholder for the output QmiWdsCallEndReason, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.0

-
-
-
-

qmi_message_wds_start_network_output_get_verbose_call_end_reason ()

-
gboolean
-qmi_message_wds_start_network_output_get_verbose_call_end_reason
-                               (QmiMessageWdsStartNetworkOutput *self,
-                                QmiWdsVerboseCallEndReasonType *value_verbose_call_end_reason_type,
-                                gint16 *value_verbose_call_end_reason_reason,
-                                GError **error);
-

Get the 'Verbose Call End Reason' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - - - - - - -

self

a QmiMessageWdsStartNetworkOutput.

 

value_verbose_call_end_reason_type

a placeholder for the output QmiWdsVerboseCallEndReasonType, or NULL if not required.

 

value_verbose_call_end_reason_reason

a placeholder for the output gint16, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.0

-
-
-
-

qmi_client_wds_start_network ()

-
void
-qmi_client_wds_start_network (QmiClientWds *self,
-                              QmiMessageWdsStartNetworkInput *input,
-                              guint timeout,
-                              GCancellable *cancellable,
-                              GAsyncReadyCallback callback,
-                              gpointer user_data);
-

Asynchronously sends a Start Network request to the device.

-

When the operation is finished, callback - will be invoked in the thread-default main loop of the thread you are calling this method from.

-

You can then call qmi_client_wds_start_network_finish() to get the result of the operation.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

self

a QmiClientWds.

 

input

a QmiMessageWdsStartNetworkInput.

 

timeout

maximum time to wait for the method to complete, in seconds.

 

cancellable

a GCancellable or NULL.

 

callback

a GAsyncReadyCallback to call when the request is satisfied.

 

user_data

user data to pass to callback -.

 
-
-

Since: 1.0

-
-
-
-

qmi_client_wds_start_network_finish ()

-
QmiMessageWdsStartNetworkOutput *
-qmi_client_wds_start_network_finish (QmiClientWds *self,
-                                     GAsyncResult *res,
-                                     GError **error);
-

Finishes an async operation started with qmi_client_wds_start_network().

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiClientWds.

 

res

the GAsyncResult obtained from the GAsyncReadyCallback passed to qmi_client_wds_start_network().

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

a QmiMessageWdsStartNetworkOutput, or NULL if error -is set. The returned value should be freed with qmi_message_wds_start_network_output_unref().

-
-

Since: 1.0

-
-
-
-

Types and Values

-
-

QmiMessageWdsStartNetworkInput

-
typedef struct _QmiMessageWdsStartNetworkInput QmiMessageWdsStartNetworkInput;
-

The QmiMessageWdsStartNetworkInput structure contains private data and should only be accessed -using the provided API.

-

Since: 1.0

-
-
-
-

QmiMessageWdsStartNetworkOutput

-
typedef struct _QmiMessageWdsStartNetworkOutput QmiMessageWdsStartNetworkOutput;
-

The QmiMessageWdsStartNetworkOutput structure contains private data and should only be accessed -using the provided API.

-

Since: 1.0

-
-
-
- - - \ No newline at end of file diff -Nru libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-WDS-Start-Network-request.html libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-WDS-Start-Network-request.html --- libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-WDS-Start-Network-request.html 1970-01-01 01:00:00.000000000 +0100 +++ libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-WDS-Start-Network-request.html 2019-01-08 15:19:02.000000000 +0100 @@ -0,0 +1,2219 @@ + + + + +WDS Start Network request: libqmi-glib Reference Manual + + + + + + + + + + + + + + + + +
+
+
+ + +
+

WDS Start Network request

+

WDS Start Network request

+
+
+

Functions

+
++++ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+QmiMessageWdsStartNetworkInput * + +qmi_message_wds_start_network_input_new () +
+QmiMessageWdsStartNetworkInput * + +qmi_message_wds_start_network_input_ref () +
+void + +qmi_message_wds_start_network_input_unref () +
+gboolean + +qmi_message_wds_start_network_input_get_call_type () +
+gboolean + +qmi_message_wds_start_network_input_set_call_type () +
+gboolean + +qmi_message_wds_start_network_input_get_extended_technology_preference () +
+gboolean + +qmi_message_wds_start_network_input_set_extended_technology_preference () +
+gboolean + +qmi_message_wds_start_network_input_get_enable_autoconnect () +
+gboolean + +qmi_message_wds_start_network_input_set_enable_autoconnect () +
+gboolean + +qmi_message_wds_start_network_input_get_profile_index_3gpp2 () +
+gboolean + +qmi_message_wds_start_network_input_set_profile_index_3gpp2 () +
+gboolean + +qmi_message_wds_start_network_input_get_profile_index_3gpp () +
+gboolean + +qmi_message_wds_start_network_input_set_profile_index_3gpp () +
+gboolean + +qmi_message_wds_start_network_input_get_technology_preference () +
+gboolean + +qmi_message_wds_start_network_input_set_technology_preference () +
+gboolean + +qmi_message_wds_start_network_input_get_ip_family_preference () +
+gboolean + +qmi_message_wds_start_network_input_set_ip_family_preference () +
+gboolean + +qmi_message_wds_start_network_input_get_password () +
+gboolean + +qmi_message_wds_start_network_input_set_password () +
+gboolean + +qmi_message_wds_start_network_input_get_username () +
+gboolean + +qmi_message_wds_start_network_input_set_username () +
+gboolean + +qmi_message_wds_start_network_input_get_authentication_preference () +
+gboolean + +qmi_message_wds_start_network_input_set_authentication_preference () +
+gboolean + +qmi_message_wds_start_network_input_get_ipv4_address_preference () +
+gboolean + +qmi_message_wds_start_network_input_set_ipv4_address_preference () +
+gboolean + +qmi_message_wds_start_network_input_get_apn () +
+gboolean + +qmi_message_wds_start_network_input_set_apn () +
+gboolean + +qmi_message_wds_start_network_input_get_secondary_nbns_address_preference () +
+gboolean + +qmi_message_wds_start_network_input_set_secondary_nbns_address_preference () +
+gboolean + +qmi_message_wds_start_network_input_get_primary_nbns_address_preference () +
+gboolean + +qmi_message_wds_start_network_input_set_primary_nbns_address_preference () +
+gboolean + +qmi_message_wds_start_network_input_get_secondary_dns_address_preference () +
+gboolean + +qmi_message_wds_start_network_input_set_secondary_dns_address_preference () +
+gboolean + +qmi_message_wds_start_network_input_get_primary_dns_address_preference () +
+gboolean + +qmi_message_wds_start_network_input_set_primary_dns_address_preference () +
+QmiMessageWdsStartNetworkOutput * + +qmi_message_wds_start_network_output_ref () +
+void + +qmi_message_wds_start_network_output_unref () +
+gboolean + +qmi_message_wds_start_network_output_get_result () +
+gboolean + +qmi_message_wds_start_network_output_get_packet_data_handle () +
+gboolean + +qmi_message_wds_start_network_output_get_call_end_reason () +
+gboolean + +qmi_message_wds_start_network_output_get_verbose_call_end_reason () +
+void + +qmi_client_wds_start_network () +
+QmiMessageWdsStartNetworkOutput * + +qmi_client_wds_start_network_finish () +
+
+
+

Types and Values

+ +
+
+

Object Hierarchy

+
    GBoxed
+    ├── QmiMessageWdsStartNetworkInput
+    ╰── QmiMessageWdsStartNetworkOutput
+
+
+
+

Description

+
+
+

Functions

+
+

qmi_message_wds_start_network_input_new ()

+
QmiMessageWdsStartNetworkInput *
+qmi_message_wds_start_network_input_new
+                               (void);
+

Allocates a new QmiMessageWdsStartNetworkInput.

+
+

Returns

+

the newly created QmiMessageWdsStartNetworkInput. The returned value should be freed with qmi_message_wds_start_network_input_unref().

+
+

Since: 1.0

+
+
+
+

qmi_message_wds_start_network_input_ref ()

+
QmiMessageWdsStartNetworkInput *
+qmi_message_wds_start_network_input_ref
+                               (QmiMessageWdsStartNetworkInput *self);
+

Atomically increments the reference count of self + by one.

+
+

Parameters

+
+++++ + + + + + +

self

a QmiMessageWdsStartNetworkInput.

 
+
+
+

Returns

+

the new reference to self +.

+
+

Since: 1.0

+
+
+
+

qmi_message_wds_start_network_input_unref ()

+
void
+qmi_message_wds_start_network_input_unref
+                               (QmiMessageWdsStartNetworkInput *self);
+

Atomically decrements the reference count of self + by one. +If the reference count drops to 0, self + is completely disposed.

+
+

Parameters

+
+++++ + + + + + +

self

a QmiMessageWdsStartNetworkInput.

 
+
+

Since: 1.0

+
+
+
+

qmi_message_wds_start_network_input_get_call_type ()

+
gboolean
+qmi_message_wds_start_network_input_get_call_type
+                               (QmiMessageWdsStartNetworkInput *self,
+                                QmiWdsCallType *value_call_type,
+                                GError **error);
+

Get the 'Call Type' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageWdsStartNetworkInput.

 

value_call_type

a placeholder for the output QmiWdsCallType, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.0

+
+
+
+

qmi_message_wds_start_network_input_set_call_type ()

+
gboolean
+qmi_message_wds_start_network_input_set_call_type
+                               (QmiMessageWdsStartNetworkInput *self,
+                                QmiWdsCallType value_call_type,
+                                GError **error);
+

Set the 'Call Type' field in the message.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageWdsStartNetworkInput.

 

value_call_type

a QmiWdsCallType.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if value +was successfully set, FALSE otherwise.

+
+

Since: 1.0

+
+
+
+

qmi_message_wds_start_network_input_get_extended_technology_preference ()

+
gboolean
+qmi_message_wds_start_network_input_get_extended_technology_preference
+                               (QmiMessageWdsStartNetworkInput *self,
+                                QmiWdsExtendedTechnologyPreference *value_extended_technology_preference,
+                                GError **error);
+

Get the 'Extended Technology Preference' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageWdsStartNetworkInput.

 

value_extended_technology_preference

a placeholder for the output QmiWdsExtendedTechnologyPreference, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.0

+
+
+
+

qmi_message_wds_start_network_input_set_extended_technology_preference ()

+
gboolean
+qmi_message_wds_start_network_input_set_extended_technology_preference
+                               (QmiMessageWdsStartNetworkInput *self,
+                                QmiWdsExtendedTechnologyPreference value_extended_technology_preference,
+                                GError **error);
+

Set the 'Extended Technology Preference' field in the message.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageWdsStartNetworkInput.

 

value_extended_technology_preference

a QmiWdsExtendedTechnologyPreference.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if value +was successfully set, FALSE otherwise.

+
+

Since: 1.0

+
+
+
+

qmi_message_wds_start_network_input_get_enable_autoconnect ()

+
gboolean
+qmi_message_wds_start_network_input_get_enable_autoconnect
+                               (QmiMessageWdsStartNetworkInput *self,
+                                gboolean *value_enable_autoconnect,
+                                GError **error);
+

Get the 'Enable Autoconnect' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageWdsStartNetworkInput.

 

value_enable_autoconnect

a placeholder for the output gboolean, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.0

+
+
+
+

qmi_message_wds_start_network_input_set_enable_autoconnect ()

+
gboolean
+qmi_message_wds_start_network_input_set_enable_autoconnect
+                               (QmiMessageWdsStartNetworkInput *self,
+                                gboolean value_enable_autoconnect,
+                                GError **error);
+

Set the 'Enable Autoconnect' field in the message.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageWdsStartNetworkInput.

 

value_enable_autoconnect

a gboolean.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if value +was successfully set, FALSE otherwise.

+
+

Since: 1.0

+
+
+
+

qmi_message_wds_start_network_input_get_profile_index_3gpp2 ()

+
gboolean
+qmi_message_wds_start_network_input_get_profile_index_3gpp2
+                               (QmiMessageWdsStartNetworkInput *self,
+                                guint8 *value_profile_index_3gpp2,
+                                GError **error);
+

Get the 'Profile Index 3GPP2' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageWdsStartNetworkInput.

 

value_profile_index_3gpp2

a placeholder for the output guint8, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.0

+
+
+
+

qmi_message_wds_start_network_input_set_profile_index_3gpp2 ()

+
gboolean
+qmi_message_wds_start_network_input_set_profile_index_3gpp2
+                               (QmiMessageWdsStartNetworkInput *self,
+                                guint8 value_profile_index_3gpp2,
+                                GError **error);
+

Set the 'Profile Index 3GPP2' field in the message.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageWdsStartNetworkInput.

 

value_profile_index_3gpp2

a guint8.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if value +was successfully set, FALSE otherwise.

+
+

Since: 1.0

+
+
+
+

qmi_message_wds_start_network_input_get_profile_index_3gpp ()

+
gboolean
+qmi_message_wds_start_network_input_get_profile_index_3gpp
+                               (QmiMessageWdsStartNetworkInput *self,
+                                guint8 *value_profile_index_3gpp,
+                                GError **error);
+

Get the 'Profile Index 3GPP' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageWdsStartNetworkInput.

 

value_profile_index_3gpp

a placeholder for the output guint8, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.0

+
+
+
+

qmi_message_wds_start_network_input_set_profile_index_3gpp ()

+
gboolean
+qmi_message_wds_start_network_input_set_profile_index_3gpp
+                               (QmiMessageWdsStartNetworkInput *self,
+                                guint8 value_profile_index_3gpp,
+                                GError **error);
+

Set the 'Profile Index 3GPP' field in the message.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageWdsStartNetworkInput.

 

value_profile_index_3gpp

a guint8.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if value +was successfully set, FALSE otherwise.

+
+

Since: 1.0

+
+
+
+

qmi_message_wds_start_network_input_get_technology_preference ()

+
gboolean
+qmi_message_wds_start_network_input_get_technology_preference
+                               (QmiMessageWdsStartNetworkInput *self,
+                                QmiWdsTechnologyPreference *value_technology_preference,
+                                GError **error);
+

Get the 'Technology Preference' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageWdsStartNetworkInput.

 

value_technology_preference

a placeholder for the output QmiWdsTechnologyPreference, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.0

+
+
+
+

qmi_message_wds_start_network_input_set_technology_preference ()

+
gboolean
+qmi_message_wds_start_network_input_set_technology_preference
+                               (QmiMessageWdsStartNetworkInput *self,
+                                QmiWdsTechnologyPreference value_technology_preference,
+                                GError **error);
+

Set the 'Technology Preference' field in the message.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageWdsStartNetworkInput.

 

value_technology_preference

a QmiWdsTechnologyPreference.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if value +was successfully set, FALSE otherwise.

+
+

Since: 1.0

+
+
+
+

qmi_message_wds_start_network_input_get_ip_family_preference ()

+
gboolean
+qmi_message_wds_start_network_input_get_ip_family_preference
+                               (QmiMessageWdsStartNetworkInput *self,
+                                QmiWdsIpFamily *value_ip_family_preference,
+                                GError **error);
+

Get the 'IP Family Preference' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageWdsStartNetworkInput.

 

value_ip_family_preference

a placeholder for the output QmiWdsIpFamily, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.0

+
+
+
+

qmi_message_wds_start_network_input_set_ip_family_preference ()

+
gboolean
+qmi_message_wds_start_network_input_set_ip_family_preference
+                               (QmiMessageWdsStartNetworkInput *self,
+                                QmiWdsIpFamily value_ip_family_preference,
+                                GError **error);
+

Set the 'IP Family Preference' field in the message.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageWdsStartNetworkInput.

 

value_ip_family_preference

a QmiWdsIpFamily.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if value +was successfully set, FALSE otherwise.

+
+

Since: 1.0

+
+
+
+

qmi_message_wds_start_network_input_get_password ()

+
gboolean
+qmi_message_wds_start_network_input_get_password
+                               (QmiMessageWdsStartNetworkInput *self,
+                                const gchar **value_password,
+                                GError **error);
+

Get the 'Password' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageWdsStartNetworkInput.

 

value_password

a placeholder for the output constant string, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.0

+
+
+
+

qmi_message_wds_start_network_input_set_password ()

+
gboolean
+qmi_message_wds_start_network_input_set_password
+                               (QmiMessageWdsStartNetworkInput *self,
+                                const gchar *value_password,
+                                GError **error);
+

Set the 'Password' field in the message.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageWdsStartNetworkInput.

 

value_password

a constant string.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if value +was successfully set, FALSE otherwise.

+
+

Since: 1.0

+
+
+
+

qmi_message_wds_start_network_input_get_username ()

+
gboolean
+qmi_message_wds_start_network_input_get_username
+                               (QmiMessageWdsStartNetworkInput *self,
+                                const gchar **value_username,
+                                GError **error);
+

Get the 'Username' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageWdsStartNetworkInput.

 

value_username

a placeholder for the output constant string, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.0

+
+
+
+

qmi_message_wds_start_network_input_set_username ()

+
gboolean
+qmi_message_wds_start_network_input_set_username
+                               (QmiMessageWdsStartNetworkInput *self,
+                                const gchar *value_username,
+                                GError **error);
+

Set the 'Username' field in the message.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageWdsStartNetworkInput.

 

value_username

a constant string.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if value +was successfully set, FALSE otherwise.

+
+

Since: 1.0

+
+
+
+

qmi_message_wds_start_network_input_get_authentication_preference ()

+
gboolean
+qmi_message_wds_start_network_input_get_authentication_preference
+                               (QmiMessageWdsStartNetworkInput *self,
+                                QmiWdsAuthentication *value_authentication_preference,
+                                GError **error);
+

Get the 'Authentication Preference' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageWdsStartNetworkInput.

 

value_authentication_preference

a placeholder for the output QmiWdsAuthentication, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.0

+
+
+
+

qmi_message_wds_start_network_input_set_authentication_preference ()

+
gboolean
+qmi_message_wds_start_network_input_set_authentication_preference
+                               (QmiMessageWdsStartNetworkInput *self,
+                                QmiWdsAuthentication value_authentication_preference,
+                                GError **error);
+

Set the 'Authentication Preference' field in the message.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageWdsStartNetworkInput.

 

value_authentication_preference

a QmiWdsAuthentication.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if value +was successfully set, FALSE otherwise.

+
+

Since: 1.0

+
+
+
+

qmi_message_wds_start_network_input_get_ipv4_address_preference ()

+
gboolean
+qmi_message_wds_start_network_input_get_ipv4_address_preference
+                               (QmiMessageWdsStartNetworkInput *self,
+                                guint32 *value_ipv4_address_preference,
+                                GError **error);
+

Get the 'IPv4 Address Preference' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageWdsStartNetworkInput.

 

value_ipv4_address_preference

a placeholder for the output guint32, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.0

+
+
+
+

qmi_message_wds_start_network_input_set_ipv4_address_preference ()

+
gboolean
+qmi_message_wds_start_network_input_set_ipv4_address_preference
+                               (QmiMessageWdsStartNetworkInput *self,
+                                guint32 value_ipv4_address_preference,
+                                GError **error);
+

Set the 'IPv4 Address Preference' field in the message.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageWdsStartNetworkInput.

 

value_ipv4_address_preference

a guint32.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if value +was successfully set, FALSE otherwise.

+
+

Since: 1.0

+
+
+
+

qmi_message_wds_start_network_input_get_apn ()

+
gboolean
+qmi_message_wds_start_network_input_get_apn
+                               (QmiMessageWdsStartNetworkInput *self,
+                                const gchar **value_apn,
+                                GError **error);
+

Get the 'APN' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageWdsStartNetworkInput.

 

value_apn

a placeholder for the output constant string, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.0

+
+
+
+

qmi_message_wds_start_network_input_set_apn ()

+
gboolean
+qmi_message_wds_start_network_input_set_apn
+                               (QmiMessageWdsStartNetworkInput *self,
+                                const gchar *value_apn,
+                                GError **error);
+

Set the 'APN' field in the message.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageWdsStartNetworkInput.

 

value_apn

a constant string.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if value +was successfully set, FALSE otherwise.

+
+

Since: 1.0

+
+
+
+

qmi_message_wds_start_network_input_get_secondary_nbns_address_preference ()

+
gboolean
+qmi_message_wds_start_network_input_get_secondary_nbns_address_preference
+                               (QmiMessageWdsStartNetworkInput *self,
+                                guint32 *value_secondary_nbns_address_preference,
+                                GError **error);
+

Get the 'Secondary NBNS Address Preference' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageWdsStartNetworkInput.

 

value_secondary_nbns_address_preference

a placeholder for the output guint32, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.0

+
+
+
+

qmi_message_wds_start_network_input_set_secondary_nbns_address_preference ()

+
gboolean
+qmi_message_wds_start_network_input_set_secondary_nbns_address_preference
+                               (QmiMessageWdsStartNetworkInput *self,
+                                guint32 value_secondary_nbns_address_preference,
+                                GError **error);
+

Set the 'Secondary NBNS Address Preference' field in the message.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageWdsStartNetworkInput.

 

value_secondary_nbns_address_preference

a guint32.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if value +was successfully set, FALSE otherwise.

+
+

Since: 1.0

+
+
+
+

qmi_message_wds_start_network_input_get_primary_nbns_address_preference ()

+
gboolean
+qmi_message_wds_start_network_input_get_primary_nbns_address_preference
+                               (QmiMessageWdsStartNetworkInput *self,
+                                guint32 *value_primary_nbns_address_preference,
+                                GError **error);
+

Get the 'Primary NBNS Address Preference' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageWdsStartNetworkInput.

 

value_primary_nbns_address_preference

a placeholder for the output guint32, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.0

+
+
+
+

qmi_message_wds_start_network_input_set_primary_nbns_address_preference ()

+
gboolean
+qmi_message_wds_start_network_input_set_primary_nbns_address_preference
+                               (QmiMessageWdsStartNetworkInput *self,
+                                guint32 value_primary_nbns_address_preference,
+                                GError **error);
+

Set the 'Primary NBNS Address Preference' field in the message.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageWdsStartNetworkInput.

 

value_primary_nbns_address_preference

a guint32.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if value +was successfully set, FALSE otherwise.

+
+

Since: 1.0

+
+
+
+

qmi_message_wds_start_network_input_get_secondary_dns_address_preference ()

+
gboolean
+qmi_message_wds_start_network_input_get_secondary_dns_address_preference
+                               (QmiMessageWdsStartNetworkInput *self,
+                                guint32 *value_secondary_dns_address_preference,
+                                GError **error);
+

Get the 'Secondary DNS Address Preference' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageWdsStartNetworkInput.

 

value_secondary_dns_address_preference

a placeholder for the output guint32, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.0

+
+
+
+

qmi_message_wds_start_network_input_set_secondary_dns_address_preference ()

+
gboolean
+qmi_message_wds_start_network_input_set_secondary_dns_address_preference
+                               (QmiMessageWdsStartNetworkInput *self,
+                                guint32 value_secondary_dns_address_preference,
+                                GError **error);
+

Set the 'Secondary DNS Address Preference' field in the message.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageWdsStartNetworkInput.

 

value_secondary_dns_address_preference

a guint32.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if value +was successfully set, FALSE otherwise.

+
+

Since: 1.0

+
+
+
+

qmi_message_wds_start_network_input_get_primary_dns_address_preference ()

+
gboolean
+qmi_message_wds_start_network_input_get_primary_dns_address_preference
+                               (QmiMessageWdsStartNetworkInput *self,
+                                guint32 *value_primary_dns_address_preference,
+                                GError **error);
+

Get the 'Primary DNS Address Preference' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageWdsStartNetworkInput.

 

value_primary_dns_address_preference

a placeholder for the output guint32, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.0

+
+
+
+

qmi_message_wds_start_network_input_set_primary_dns_address_preference ()

+
gboolean
+qmi_message_wds_start_network_input_set_primary_dns_address_preference
+                               (QmiMessageWdsStartNetworkInput *self,
+                                guint32 value_primary_dns_address_preference,
+                                GError **error);
+

Set the 'Primary DNS Address Preference' field in the message.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageWdsStartNetworkInput.

 

value_primary_dns_address_preference

a guint32.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if value +was successfully set, FALSE otherwise.

+
+

Since: 1.0

+
+
+
+

qmi_message_wds_start_network_output_ref ()

+
QmiMessageWdsStartNetworkOutput *
+qmi_message_wds_start_network_output_ref
+                               (QmiMessageWdsStartNetworkOutput *self);
+

Atomically increments the reference count of self + by one.

+
+

Parameters

+
+++++ + + + + + +

self

a QmiMessageWdsStartNetworkOutput.

 
+
+
+

Returns

+

the new reference to self +.

+
+

Since: 1.0

+
+
+
+

qmi_message_wds_start_network_output_unref ()

+
void
+qmi_message_wds_start_network_output_unref
+                               (QmiMessageWdsStartNetworkOutput *self);
+

Atomically decrements the reference count of self + by one. +If the reference count drops to 0, self + is completely disposed.

+
+

Parameters

+
+++++ + + + + + +

self

a QmiMessageWdsStartNetworkOutput.

 
+
+

Since: 1.0

+
+
+
+

qmi_message_wds_start_network_output_get_result ()

+
gboolean
+qmi_message_wds_start_network_output_get_result
+                               (QmiMessageWdsStartNetworkOutput *self,
+                                GError **error);
+

Get the result of the QMI operation.

+
+

Parameters

+
+++++ + + + + + + + + + + + + +

self

a QmiMessageWdsStartNetworkOutput.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the QMI operation succeeded, FALSE if error +is set.

+
+

Since: 1.0

+
+
+
+

qmi_message_wds_start_network_output_get_packet_data_handle ()

+
gboolean
+qmi_message_wds_start_network_output_get_packet_data_handle
+                               (QmiMessageWdsStartNetworkOutput *self,
+                                guint32 *value_packet_data_handle,
+                                GError **error);
+

Get the 'Packet Data Handle' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageWdsStartNetworkOutput.

 

value_packet_data_handle

a placeholder for the output guint32, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.0

+
+
+
+

qmi_message_wds_start_network_output_get_call_end_reason ()

+
gboolean
+qmi_message_wds_start_network_output_get_call_end_reason
+                               (QmiMessageWdsStartNetworkOutput *self,
+                                QmiWdsCallEndReason *value_call_end_reason,
+                                GError **error);
+

Get the 'Call End Reason' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageWdsStartNetworkOutput.

 

value_call_end_reason

a placeholder for the output QmiWdsCallEndReason, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.0

+
+
+
+

qmi_message_wds_start_network_output_get_verbose_call_end_reason ()

+
gboolean
+qmi_message_wds_start_network_output_get_verbose_call_end_reason
+                               (QmiMessageWdsStartNetworkOutput *self,
+                                QmiWdsVerboseCallEndReasonType *value_verbose_call_end_reason_type,
+                                gint16 *value_verbose_call_end_reason_reason,
+                                GError **error);
+

Get the 'Verbose Call End Reason' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + + + + + + +

self

a QmiMessageWdsStartNetworkOutput.

 

value_verbose_call_end_reason_type

a placeholder for the output QmiWdsVerboseCallEndReasonType, or NULL if not required.

 

value_verbose_call_end_reason_reason

a placeholder for the output gint16, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.0

+
+
+
+

qmi_client_wds_start_network ()

+
void
+qmi_client_wds_start_network (QmiClientWds *self,
+                              QmiMessageWdsStartNetworkInput *input,
+                              guint timeout,
+                              GCancellable *cancellable,
+                              GAsyncReadyCallback callback,
+                              gpointer user_data);
+

Asynchronously sends a Start Network request to the device.

+

When the operation is finished, callback + will be invoked in the thread-default main loop of the thread you are calling this method from.

+

You can then call qmi_client_wds_start_network_finish() to get the result of the operation.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

self

a QmiClientWds.

 

input

a QmiMessageWdsStartNetworkInput.

 

timeout

maximum time to wait for the method to complete, in seconds.

 

cancellable

a GCancellable or NULL.

 

callback

a GAsyncReadyCallback to call when the request is satisfied.

 

user_data

user data to pass to callback +.

 
+
+

Since: 1.0

+
+
+
+

qmi_client_wds_start_network_finish ()

+
QmiMessageWdsStartNetworkOutput *
+qmi_client_wds_start_network_finish (QmiClientWds *self,
+                                     GAsyncResult *res,
+                                     GError **error);
+

Finishes an async operation started with qmi_client_wds_start_network().

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiClientWds.

 

res

the GAsyncResult obtained from the GAsyncReadyCallback passed to qmi_client_wds_start_network().

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

a QmiMessageWdsStartNetworkOutput, or NULL if error +is set. The returned value should be freed with qmi_message_wds_start_network_output_unref().

+
+

Since: 1.0

+
+
+
+

Types and Values

+
+

QmiMessageWdsStartNetworkInput

+
typedef struct _QmiMessageWdsStartNetworkInput QmiMessageWdsStartNetworkInput;
+

The QmiMessageWdsStartNetworkInput structure contains private data and should only be accessed +using the provided API.

+

Since: 1.0

+
+
+
+

QmiMessageWdsStartNetworkOutput

+
typedef struct _QmiMessageWdsStartNetworkOutput QmiMessageWdsStartNetworkOutput;
+

The QmiMessageWdsStartNetworkOutput structure contains private data and should only be accessed +using the provided API.

+

Since: 1.0

+
+
+
+ + + \ No newline at end of file diff -Nru libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-WDS-Stop-Network.html libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-WDS-Stop-Network.html --- libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-WDS-Stop-Network.html 2017-03-22 12:28:29.000000000 +0100 +++ libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-WDS-Stop-Network.html 1970-01-01 01:00:00.000000000 +0100 @@ -1,632 +0,0 @@ - - - - -WDS Stop Network: libqmi-glib Reference Manual - - - - - - - - - - - - - - - - -
-
-
- - -
-

WDS Stop Network

-

WDS Stop Network

-
- -
-

Types and Values

- -
-
-

Object Hierarchy

-
    GBoxed
-    ├── QmiMessageWdsStopNetworkInput
-    ╰── QmiMessageWdsStopNetworkOutput
-
-
-
-

Description

-
-
-

Functions

-
-

qmi_message_wds_stop_network_input_new ()

-
QmiMessageWdsStopNetworkInput *
-qmi_message_wds_stop_network_input_new
-                               (void);
-

Allocates a new QmiMessageWdsStopNetworkInput.

-
-

Returns

-

the newly created QmiMessageWdsStopNetworkInput. The returned value should be freed with qmi_message_wds_stop_network_input_unref().

-
-

Since: 1.0

-
-
-
-

qmi_message_wds_stop_network_input_ref ()

-
QmiMessageWdsStopNetworkInput *
-qmi_message_wds_stop_network_input_ref
-                               (QmiMessageWdsStopNetworkInput *self);
-

Atomically increments the reference count of self - by one.

-
-

Parameters

-
----- - - - - - -

self

a QmiMessageWdsStopNetworkInput.

 
-
-
-

Returns

-

the new reference to self -.

-
-

Since: 1.0

-
-
-
-

qmi_message_wds_stop_network_input_unref ()

-
void
-qmi_message_wds_stop_network_input_unref
-                               (QmiMessageWdsStopNetworkInput *self);
-

Atomically decrements the reference count of self - by one. -If the reference count drops to 0, self - is completely disposed.

-
-

Parameters

-
----- - - - - - -

self

a QmiMessageWdsStopNetworkInput.

 
-
-

Since: 1.0

-
-
-
-

qmi_message_wds_stop_network_input_get_disable_autoconnect ()

-
gboolean
-qmi_message_wds_stop_network_input_get_disable_autoconnect
-                               (QmiMessageWdsStopNetworkInput *self,
-                                gboolean *value_disable_autoconnect,
-                                GError **error);
-

Get the 'Disable Autoconnect' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessageWdsStopNetworkInput.

 

value_disable_autoconnect

a placeholder for the output gboolean, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.0

-
-
-
-

qmi_message_wds_stop_network_input_set_disable_autoconnect ()

-
gboolean
-qmi_message_wds_stop_network_input_set_disable_autoconnect
-                               (QmiMessageWdsStopNetworkInput *self,
-                                gboolean value_disable_autoconnect,
-                                GError **error);
-

Set the 'Disable Autoconnect' field in the message.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessageWdsStopNetworkInput.

 

value_disable_autoconnect

a gboolean.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if value -was successfully set, FALSE otherwise.

-
-

Since: 1.0

-
-
-
-

qmi_message_wds_stop_network_input_get_packet_data_handle ()

-
gboolean
-qmi_message_wds_stop_network_input_get_packet_data_handle
-                               (QmiMessageWdsStopNetworkInput *self,
-                                guint32 *value_packet_data_handle,
-                                GError **error);
-

Get the 'Packet Data Handle' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessageWdsStopNetworkInput.

 

value_packet_data_handle

a placeholder for the output guint32, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.0

-
-
-
-

qmi_message_wds_stop_network_input_set_packet_data_handle ()

-
gboolean
-qmi_message_wds_stop_network_input_set_packet_data_handle
-                               (QmiMessageWdsStopNetworkInput *self,
-                                guint32 value_packet_data_handle,
-                                GError **error);
-

Set the 'Packet Data Handle' field in the message.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessageWdsStopNetworkInput.

 

value_packet_data_handle

a guint32.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if value -was successfully set, FALSE otherwise.

-
-

Since: 1.0

-
-
-
-

qmi_message_wds_stop_network_output_ref ()

-
QmiMessageWdsStopNetworkOutput *
-qmi_message_wds_stop_network_output_ref
-                               (QmiMessageWdsStopNetworkOutput *self);
-

Atomically increments the reference count of self - by one.

-
-

Parameters

-
----- - - - - - -

self

a QmiMessageWdsStopNetworkOutput.

 
-
-
-

Returns

-

the new reference to self -.

-
-

Since: 1.0

-
-
-
-

qmi_message_wds_stop_network_output_unref ()

-
void
-qmi_message_wds_stop_network_output_unref
-                               (QmiMessageWdsStopNetworkOutput *self);
-

Atomically decrements the reference count of self - by one. -If the reference count drops to 0, self - is completely disposed.

-
-

Parameters

-
----- - - - - - -

self

a QmiMessageWdsStopNetworkOutput.

 
-
-

Since: 1.0

-
-
-
-

qmi_message_wds_stop_network_output_get_result ()

-
gboolean
-qmi_message_wds_stop_network_output_get_result
-                               (QmiMessageWdsStopNetworkOutput *self,
-                                GError **error);
-

Get the result of the QMI operation.

-
-

Parameters

-
----- - - - - - - - - - - - - -

self

a QmiMessageWdsStopNetworkOutput.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the QMI operation succeeded, FALSE if error -is set.

-
-

Since: 1.0

-
-
-
-

qmi_client_wds_stop_network ()

-
void
-qmi_client_wds_stop_network (QmiClientWds *self,
-                             QmiMessageWdsStopNetworkInput *input,
-                             guint timeout,
-                             GCancellable *cancellable,
-                             GAsyncReadyCallback callback,
-                             gpointer user_data);
-

Asynchronously sends a Stop Network request to the device.

-

When the operation is finished, callback - will be invoked in the thread-default main loop of the thread you are calling this method from.

-

You can then call qmi_client_wds_stop_network_finish() to get the result of the operation.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

self

a QmiClientWds.

 

input

a QmiMessageWdsStopNetworkInput.

 

timeout

maximum time to wait for the method to complete, in seconds.

 

cancellable

a GCancellable or NULL.

 

callback

a GAsyncReadyCallback to call when the request is satisfied.

 

user_data

user data to pass to callback -.

 
-
-

Since: 1.0

-
-
-
-

qmi_client_wds_stop_network_finish ()

-
QmiMessageWdsStopNetworkOutput *
-qmi_client_wds_stop_network_finish (QmiClientWds *self,
-                                    GAsyncResult *res,
-                                    GError **error);
-

Finishes an async operation started with qmi_client_wds_stop_network().

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiClientWds.

 

res

the GAsyncResult obtained from the GAsyncReadyCallback passed to qmi_client_wds_stop_network().

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

a QmiMessageWdsStopNetworkOutput, or NULL if error -is set. The returned value should be freed with qmi_message_wds_stop_network_output_unref().

-
-

Since: 1.0

-
-
-
-

Types and Values

-
-

QmiMessageWdsStopNetworkInput

-
typedef struct _QmiMessageWdsStopNetworkInput QmiMessageWdsStopNetworkInput;
-

The QmiMessageWdsStopNetworkInput structure contains private data and should only be accessed -using the provided API.

-

Since: 1.0

-
-
-
-

QmiMessageWdsStopNetworkOutput

-
typedef struct _QmiMessageWdsStopNetworkOutput QmiMessageWdsStopNetworkOutput;
-

The QmiMessageWdsStopNetworkOutput structure contains private data and should only be accessed -using the provided API.

-

Since: 1.0

-
-
-
- - - \ No newline at end of file diff -Nru libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-WDS-Stop-Network-request.html libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-WDS-Stop-Network-request.html --- libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-WDS-Stop-Network-request.html 1970-01-01 01:00:00.000000000 +0100 +++ libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-WDS-Stop-Network-request.html 2019-01-08 15:19:02.000000000 +0100 @@ -0,0 +1,632 @@ + + + + +WDS Stop Network request: libqmi-glib Reference Manual + + + + + + + + + + + + + + + + +
+
+
+ + +
+

WDS Stop Network request

+

WDS Stop Network request

+
+ +
+

Types and Values

+ +
+
+

Object Hierarchy

+
    GBoxed
+    ├── QmiMessageWdsStopNetworkInput
+    ╰── QmiMessageWdsStopNetworkOutput
+
+
+
+

Description

+
+
+

Functions

+
+

qmi_message_wds_stop_network_input_new ()

+
QmiMessageWdsStopNetworkInput *
+qmi_message_wds_stop_network_input_new
+                               (void);
+

Allocates a new QmiMessageWdsStopNetworkInput.

+
+

Returns

+

the newly created QmiMessageWdsStopNetworkInput. The returned value should be freed with qmi_message_wds_stop_network_input_unref().

+
+

Since: 1.0

+
+
+
+

qmi_message_wds_stop_network_input_ref ()

+
QmiMessageWdsStopNetworkInput *
+qmi_message_wds_stop_network_input_ref
+                               (QmiMessageWdsStopNetworkInput *self);
+

Atomically increments the reference count of self + by one.

+
+

Parameters

+
+++++ + + + + + +

self

a QmiMessageWdsStopNetworkInput.

 
+
+
+

Returns

+

the new reference to self +.

+
+

Since: 1.0

+
+
+
+

qmi_message_wds_stop_network_input_unref ()

+
void
+qmi_message_wds_stop_network_input_unref
+                               (QmiMessageWdsStopNetworkInput *self);
+

Atomically decrements the reference count of self + by one. +If the reference count drops to 0, self + is completely disposed.

+
+

Parameters

+
+++++ + + + + + +

self

a QmiMessageWdsStopNetworkInput.

 
+
+

Since: 1.0

+
+
+
+

qmi_message_wds_stop_network_input_get_disable_autoconnect ()

+
gboolean
+qmi_message_wds_stop_network_input_get_disable_autoconnect
+                               (QmiMessageWdsStopNetworkInput *self,
+                                gboolean *value_disable_autoconnect,
+                                GError **error);
+

Get the 'Disable Autoconnect' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageWdsStopNetworkInput.

 

value_disable_autoconnect

a placeholder for the output gboolean, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.0

+
+
+
+

qmi_message_wds_stop_network_input_set_disable_autoconnect ()

+
gboolean
+qmi_message_wds_stop_network_input_set_disable_autoconnect
+                               (QmiMessageWdsStopNetworkInput *self,
+                                gboolean value_disable_autoconnect,
+                                GError **error);
+

Set the 'Disable Autoconnect' field in the message.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageWdsStopNetworkInput.

 

value_disable_autoconnect

a gboolean.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if value +was successfully set, FALSE otherwise.

+
+

Since: 1.0

+
+
+
+

qmi_message_wds_stop_network_input_get_packet_data_handle ()

+
gboolean
+qmi_message_wds_stop_network_input_get_packet_data_handle
+                               (QmiMessageWdsStopNetworkInput *self,
+                                guint32 *value_packet_data_handle,
+                                GError **error);
+

Get the 'Packet Data Handle' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageWdsStopNetworkInput.

 

value_packet_data_handle

a placeholder for the output guint32, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.0

+
+
+
+

qmi_message_wds_stop_network_input_set_packet_data_handle ()

+
gboolean
+qmi_message_wds_stop_network_input_set_packet_data_handle
+                               (QmiMessageWdsStopNetworkInput *self,
+                                guint32 value_packet_data_handle,
+                                GError **error);
+

Set the 'Packet Data Handle' field in the message.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageWdsStopNetworkInput.

 

value_packet_data_handle

a guint32.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if value +was successfully set, FALSE otherwise.

+
+

Since: 1.0

+
+
+
+

qmi_message_wds_stop_network_output_ref ()

+
QmiMessageWdsStopNetworkOutput *
+qmi_message_wds_stop_network_output_ref
+                               (QmiMessageWdsStopNetworkOutput *self);
+

Atomically increments the reference count of self + by one.

+
+

Parameters

+
+++++ + + + + + +

self

a QmiMessageWdsStopNetworkOutput.

 
+
+
+

Returns

+

the new reference to self +.

+
+

Since: 1.0

+
+
+
+

qmi_message_wds_stop_network_output_unref ()

+
void
+qmi_message_wds_stop_network_output_unref
+                               (QmiMessageWdsStopNetworkOutput *self);
+

Atomically decrements the reference count of self + by one. +If the reference count drops to 0, self + is completely disposed.

+
+

Parameters

+
+++++ + + + + + +

self

a QmiMessageWdsStopNetworkOutput.

 
+
+

Since: 1.0

+
+
+
+

qmi_message_wds_stop_network_output_get_result ()

+
gboolean
+qmi_message_wds_stop_network_output_get_result
+                               (QmiMessageWdsStopNetworkOutput *self,
+                                GError **error);
+

Get the result of the QMI operation.

+
+

Parameters

+
+++++ + + + + + + + + + + + + +

self

a QmiMessageWdsStopNetworkOutput.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the QMI operation succeeded, FALSE if error +is set.

+
+

Since: 1.0

+
+
+
+

qmi_client_wds_stop_network ()

+
void
+qmi_client_wds_stop_network (QmiClientWds *self,
+                             QmiMessageWdsStopNetworkInput *input,
+                             guint timeout,
+                             GCancellable *cancellable,
+                             GAsyncReadyCallback callback,
+                             gpointer user_data);
+

Asynchronously sends a Stop Network request to the device.

+

When the operation is finished, callback + will be invoked in the thread-default main loop of the thread you are calling this method from.

+

You can then call qmi_client_wds_stop_network_finish() to get the result of the operation.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

self

a QmiClientWds.

 

input

a QmiMessageWdsStopNetworkInput.

 

timeout

maximum time to wait for the method to complete, in seconds.

 

cancellable

a GCancellable or NULL.

 

callback

a GAsyncReadyCallback to call when the request is satisfied.

 

user_data

user data to pass to callback +.

 
+
+

Since: 1.0

+
+
+
+

qmi_client_wds_stop_network_finish ()

+
QmiMessageWdsStopNetworkOutput *
+qmi_client_wds_stop_network_finish (QmiClientWds *self,
+                                    GAsyncResult *res,
+                                    GError **error);
+

Finishes an async operation started with qmi_client_wds_stop_network().

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiClientWds.

 

res

the GAsyncResult obtained from the GAsyncReadyCallback passed to qmi_client_wds_stop_network().

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

a QmiMessageWdsStopNetworkOutput, or NULL if error +is set. The returned value should be freed with qmi_message_wds_stop_network_output_unref().

+
+

Since: 1.0

+
+
+
+

Types and Values

+
+

QmiMessageWdsStopNetworkInput

+
typedef struct _QmiMessageWdsStopNetworkInput QmiMessageWdsStopNetworkInput;
+

The QmiMessageWdsStopNetworkInput structure contains private data and should only be accessed +using the provided API.

+

Since: 1.0

+
+
+
+

QmiMessageWdsStopNetworkOutput

+
typedef struct _QmiMessageWdsStopNetworkOutput QmiMessageWdsStopNetworkOutput;
+

The QmiMessageWdsStopNetworkOutput structure contains private data and should only be accessed +using the provided API.

+

Since: 1.0

+
+
+
+ + + \ No newline at end of file diff -Nru libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-WDS-Swi-Create-Profile-Indexed-request.html libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-WDS-Swi-Create-Profile-Indexed-request.html --- libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-WDS-Swi-Create-Profile-Indexed-request.html 1970-01-01 01:00:00.000000000 +0100 +++ libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-WDS-Swi-Create-Profile-Indexed-request.html 2019-01-08 15:19:02.000000000 +0100 @@ -0,0 +1,1825 @@ + + + + +WDS Swi Create Profile Indexed request: libqmi-glib Reference Manual + + + + + + + + + + + + + + + + +
+
+
+ + +
+

WDS Swi Create Profile Indexed request

+

WDS Swi Create Profile Indexed request

+
+
+

Functions

+
++++ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+QmiMessageWdsSwiCreateProfileIndexedInput * + +qmi_message_wds_swi_create_profile_indexed_input_new () +
+QmiMessageWdsSwiCreateProfileIndexedInput * + +qmi_message_wds_swi_create_profile_indexed_input_ref () +
+void + +qmi_message_wds_swi_create_profile_indexed_input_unref () +
+gboolean + +qmi_message_wds_swi_create_profile_indexed_input_get_roaming_disallowed_flag () +
+gboolean + +qmi_message_wds_swi_create_profile_indexed_input_set_roaming_disallowed_flag () +
+gboolean + +qmi_message_wds_swi_create_profile_indexed_input_get_apn_disabled_flag () +
+gboolean + +qmi_message_wds_swi_create_profile_indexed_input_set_apn_disabled_flag () +
+gboolean + +qmi_message_wds_swi_create_profile_indexed_input_get_pdp_context_number () +
+gboolean + +qmi_message_wds_swi_create_profile_indexed_input_set_pdp_context_number () +
+gboolean + +qmi_message_wds_swi_create_profile_indexed_input_get_ipv4_address_preference () +
+gboolean + +qmi_message_wds_swi_create_profile_indexed_input_set_ipv4_address_preference () +
+gboolean + +qmi_message_wds_swi_create_profile_indexed_input_get_authentication () +
+gboolean + +qmi_message_wds_swi_create_profile_indexed_input_set_authentication () +
+gboolean + +qmi_message_wds_swi_create_profile_indexed_input_get_password () +
+gboolean + +qmi_message_wds_swi_create_profile_indexed_input_set_password () +
+gboolean + +qmi_message_wds_swi_create_profile_indexed_input_get_username () +
+gboolean + +qmi_message_wds_swi_create_profile_indexed_input_set_username () +
+gboolean + +qmi_message_wds_swi_create_profile_indexed_input_get_secondary_ipv4_dns_address () +
+gboolean + +qmi_message_wds_swi_create_profile_indexed_input_set_secondary_ipv4_dns_address () +
+gboolean + +qmi_message_wds_swi_create_profile_indexed_input_get_primary_ipv4_dns_address () +
+gboolean + +qmi_message_wds_swi_create_profile_indexed_input_set_primary_ipv4_dns_address () +
+gboolean + +qmi_message_wds_swi_create_profile_indexed_input_get_apn_name () +
+gboolean + +qmi_message_wds_swi_create_profile_indexed_input_set_apn_name () +
+gboolean + +qmi_message_wds_swi_create_profile_indexed_input_get_pdp_type () +
+gboolean + +qmi_message_wds_swi_create_profile_indexed_input_set_pdp_type () +
+gboolean + +qmi_message_wds_swi_create_profile_indexed_input_get_profile_name () +
+gboolean + +qmi_message_wds_swi_create_profile_indexed_input_set_profile_name () +
+gboolean + +qmi_message_wds_swi_create_profile_indexed_input_get_profile_identifier () +
+gboolean + +qmi_message_wds_swi_create_profile_indexed_input_set_profile_identifier () +
+QmiMessageWdsSwiCreateProfileIndexedOutput * + +qmi_message_wds_swi_create_profile_indexed_output_ref () +
+void + +qmi_message_wds_swi_create_profile_indexed_output_unref () +
+gboolean + +qmi_message_wds_swi_create_profile_indexed_output_get_result () +
+gboolean + +qmi_message_wds_swi_create_profile_indexed_output_get_profile_identifier () +
+void + +qmi_client_wds_swi_create_profile_indexed () +
+QmiMessageWdsSwiCreateProfileIndexedOutput * + +qmi_client_wds_swi_create_profile_indexed_finish () +
+
+ +
+

Object Hierarchy

+
    GBoxed
+    ├── QmiMessageWdsSwiCreateProfileIndexedInput
+    ╰── QmiMessageWdsSwiCreateProfileIndexedOutput
+
+
+
+

Description

+
+
+

Functions

+
+

qmi_message_wds_swi_create_profile_indexed_input_new ()

+
QmiMessageWdsSwiCreateProfileIndexedInput *
+qmi_message_wds_swi_create_profile_indexed_input_new
+                               (void);
+

Allocates a new QmiMessageWdsSwiCreateProfileIndexedInput.

+
+

Returns

+

the newly created QmiMessageWdsSwiCreateProfileIndexedInput. The returned value should be freed with qmi_message_wds_swi_create_profile_indexed_input_unref().

+
+

Since: 1.22

+
+
+
+

qmi_message_wds_swi_create_profile_indexed_input_ref ()

+
QmiMessageWdsSwiCreateProfileIndexedInput *
+qmi_message_wds_swi_create_profile_indexed_input_ref
+                               (QmiMessageWdsSwiCreateProfileIndexedInput *self);
+

Atomically increments the reference count of self + by one.

+
+

Parameters

+
+++++ + + + + + +

self

a QmiMessageWdsSwiCreateProfileIndexedInput.

 
+
+
+

Returns

+

the new reference to self +.

+
+

Since: 1.22

+
+
+
+

qmi_message_wds_swi_create_profile_indexed_input_unref ()

+
void
+qmi_message_wds_swi_create_profile_indexed_input_unref
+                               (QmiMessageWdsSwiCreateProfileIndexedInput *self);
+

Atomically decrements the reference count of self + by one. +If the reference count drops to 0, self + is completely disposed.

+
+

Parameters

+
+++++ + + + + + +

self

a QmiMessageWdsSwiCreateProfileIndexedInput.

 
+
+

Since: 1.22

+
+
+
+

qmi_message_wds_swi_create_profile_indexed_input_get_roaming_disallowed_flag ()

+
gboolean
+qmi_message_wds_swi_create_profile_indexed_input_get_roaming_disallowed_flag
+                               (QmiMessageWdsSwiCreateProfileIndexedInput *self,
+                                gboolean *value_roaming_disallowed_flag,
+                                GError **error);
+

Get the 'Roaming Disallowed Flag' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageWdsSwiCreateProfileIndexedInput.

 

value_roaming_disallowed_flag

a placeholder for the output gboolean, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.22

+
+
+
+

qmi_message_wds_swi_create_profile_indexed_input_set_roaming_disallowed_flag ()

+
gboolean
+qmi_message_wds_swi_create_profile_indexed_input_set_roaming_disallowed_flag
+                               (QmiMessageWdsSwiCreateProfileIndexedInput *self,
+                                gboolean value_roaming_disallowed_flag,
+                                GError **error);
+

Set the 'Roaming Disallowed Flag' field in the message.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageWdsSwiCreateProfileIndexedInput.

 

value_roaming_disallowed_flag

a gboolean.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if value +was successfully set, FALSE otherwise.

+
+

Since: 1.22

+
+
+
+

qmi_message_wds_swi_create_profile_indexed_input_get_apn_disabled_flag ()

+
gboolean
+qmi_message_wds_swi_create_profile_indexed_input_get_apn_disabled_flag
+                               (QmiMessageWdsSwiCreateProfileIndexedInput *self,
+                                gboolean *value_apn_disabled_flag,
+                                GError **error);
+

Get the 'APN Disabled Flag' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageWdsSwiCreateProfileIndexedInput.

 

value_apn_disabled_flag

a placeholder for the output gboolean, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.22

+
+
+
+

qmi_message_wds_swi_create_profile_indexed_input_set_apn_disabled_flag ()

+
gboolean
+qmi_message_wds_swi_create_profile_indexed_input_set_apn_disabled_flag
+                               (QmiMessageWdsSwiCreateProfileIndexedInput *self,
+                                gboolean value_apn_disabled_flag,
+                                GError **error);
+

Set the 'APN Disabled Flag' field in the message.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageWdsSwiCreateProfileIndexedInput.

 

value_apn_disabled_flag

a gboolean.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if value +was successfully set, FALSE otherwise.

+
+

Since: 1.22

+
+
+
+

qmi_message_wds_swi_create_profile_indexed_input_get_pdp_context_number ()

+
gboolean
+qmi_message_wds_swi_create_profile_indexed_input_get_pdp_context_number
+                               (QmiMessageWdsSwiCreateProfileIndexedInput *self,
+                                guint8 *value_pdp_context_number,
+                                GError **error);
+

Get the 'PDP Context Number' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageWdsSwiCreateProfileIndexedInput.

 

value_pdp_context_number

a placeholder for the output guint8, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.22

+
+
+
+

qmi_message_wds_swi_create_profile_indexed_input_set_pdp_context_number ()

+
gboolean
+qmi_message_wds_swi_create_profile_indexed_input_set_pdp_context_number
+                               (QmiMessageWdsSwiCreateProfileIndexedInput *self,
+                                guint8 value_pdp_context_number,
+                                GError **error);
+

Set the 'PDP Context Number' field in the message.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageWdsSwiCreateProfileIndexedInput.

 

value_pdp_context_number

a guint8.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if value +was successfully set, FALSE otherwise.

+
+

Since: 1.22

+
+
+
+

qmi_message_wds_swi_create_profile_indexed_input_get_ipv4_address_preference ()

+
gboolean
+qmi_message_wds_swi_create_profile_indexed_input_get_ipv4_address_preference
+                               (QmiMessageWdsSwiCreateProfileIndexedInput *self,
+                                guint32 *value_ipv4_address_preference,
+                                GError **error);
+

Get the 'IPv4 Address Preference' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageWdsSwiCreateProfileIndexedInput.

 

value_ipv4_address_preference

a placeholder for the output guint32, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.22

+
+
+
+

qmi_message_wds_swi_create_profile_indexed_input_set_ipv4_address_preference ()

+
gboolean
+qmi_message_wds_swi_create_profile_indexed_input_set_ipv4_address_preference
+                               (QmiMessageWdsSwiCreateProfileIndexedInput *self,
+                                guint32 value_ipv4_address_preference,
+                                GError **error);
+

Set the 'IPv4 Address Preference' field in the message.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageWdsSwiCreateProfileIndexedInput.

 

value_ipv4_address_preference

a guint32.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if value +was successfully set, FALSE otherwise.

+
+

Since: 1.22

+
+
+
+

qmi_message_wds_swi_create_profile_indexed_input_get_authentication ()

+
gboolean
+qmi_message_wds_swi_create_profile_indexed_input_get_authentication
+                               (QmiMessageWdsSwiCreateProfileIndexedInput *self,
+                                QmiWdsAuthentication *value_authentication,
+                                GError **error);
+

Get the 'Authentication' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageWdsSwiCreateProfileIndexedInput.

 

value_authentication

a placeholder for the output QmiWdsAuthentication, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.22

+
+
+
+

qmi_message_wds_swi_create_profile_indexed_input_set_authentication ()

+
gboolean
+qmi_message_wds_swi_create_profile_indexed_input_set_authentication
+                               (QmiMessageWdsSwiCreateProfileIndexedInput *self,
+                                QmiWdsAuthentication value_authentication,
+                                GError **error);
+

Set the 'Authentication' field in the message.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageWdsSwiCreateProfileIndexedInput.

 

value_authentication

a QmiWdsAuthentication.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if value +was successfully set, FALSE otherwise.

+
+

Since: 1.22

+
+
+
+

qmi_message_wds_swi_create_profile_indexed_input_get_password ()

+
gboolean
+qmi_message_wds_swi_create_profile_indexed_input_get_password
+                               (QmiMessageWdsSwiCreateProfileIndexedInput *self,
+                                const gchar **value_password,
+                                GError **error);
+

Get the 'Password' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageWdsSwiCreateProfileIndexedInput.

 

value_password

a placeholder for the output constant string, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.22

+
+
+
+

qmi_message_wds_swi_create_profile_indexed_input_set_password ()

+
gboolean
+qmi_message_wds_swi_create_profile_indexed_input_set_password
+                               (QmiMessageWdsSwiCreateProfileIndexedInput *self,
+                                const gchar *value_password,
+                                GError **error);
+

Set the 'Password' field in the message.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageWdsSwiCreateProfileIndexedInput.

 

value_password

a constant string.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if value +was successfully set, FALSE otherwise.

+
+

Since: 1.22

+
+
+
+

qmi_message_wds_swi_create_profile_indexed_input_get_username ()

+
gboolean
+qmi_message_wds_swi_create_profile_indexed_input_get_username
+                               (QmiMessageWdsSwiCreateProfileIndexedInput *self,
+                                const gchar **value_username,
+                                GError **error);
+

Get the 'Username' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageWdsSwiCreateProfileIndexedInput.

 

value_username

a placeholder for the output constant string, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.22

+
+
+
+

qmi_message_wds_swi_create_profile_indexed_input_set_username ()

+
gboolean
+qmi_message_wds_swi_create_profile_indexed_input_set_username
+                               (QmiMessageWdsSwiCreateProfileIndexedInput *self,
+                                const gchar *value_username,
+                                GError **error);
+

Set the 'Username' field in the message.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageWdsSwiCreateProfileIndexedInput.

 

value_username

a constant string.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if value +was successfully set, FALSE otherwise.

+
+

Since: 1.22

+
+
+
+

qmi_message_wds_swi_create_profile_indexed_input_get_secondary_ipv4_dns_address ()

+
gboolean
+qmi_message_wds_swi_create_profile_indexed_input_get_secondary_ipv4_dns_address
+                               (QmiMessageWdsSwiCreateProfileIndexedInput *self,
+                                guint32 *value_secondary_ipv4_dns_address,
+                                GError **error);
+

Get the 'Secondary IPv4 DNS Address' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageWdsSwiCreateProfileIndexedInput.

 

value_secondary_ipv4_dns_address

a placeholder for the output guint32, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.22

+
+
+
+

qmi_message_wds_swi_create_profile_indexed_input_set_secondary_ipv4_dns_address ()

+
gboolean
+qmi_message_wds_swi_create_profile_indexed_input_set_secondary_ipv4_dns_address
+                               (QmiMessageWdsSwiCreateProfileIndexedInput *self,
+                                guint32 value_secondary_ipv4_dns_address,
+                                GError **error);
+

Set the 'Secondary IPv4 DNS Address' field in the message.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageWdsSwiCreateProfileIndexedInput.

 

value_secondary_ipv4_dns_address

a guint32.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if value +was successfully set, FALSE otherwise.

+
+

Since: 1.22

+
+
+
+

qmi_message_wds_swi_create_profile_indexed_input_get_primary_ipv4_dns_address ()

+
gboolean
+qmi_message_wds_swi_create_profile_indexed_input_get_primary_ipv4_dns_address
+                               (QmiMessageWdsSwiCreateProfileIndexedInput *self,
+                                guint32 *value_primary_ipv4_dns_address,
+                                GError **error);
+

Get the 'Primary IPv4 DNS Address' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageWdsSwiCreateProfileIndexedInput.

 

value_primary_ipv4_dns_address

a placeholder for the output guint32, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.22

+
+
+
+

qmi_message_wds_swi_create_profile_indexed_input_set_primary_ipv4_dns_address ()

+
gboolean
+qmi_message_wds_swi_create_profile_indexed_input_set_primary_ipv4_dns_address
+                               (QmiMessageWdsSwiCreateProfileIndexedInput *self,
+                                guint32 value_primary_ipv4_dns_address,
+                                GError **error);
+

Set the 'Primary IPv4 DNS Address' field in the message.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageWdsSwiCreateProfileIndexedInput.

 

value_primary_ipv4_dns_address

a guint32.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if value +was successfully set, FALSE otherwise.

+
+

Since: 1.22

+
+
+
+

qmi_message_wds_swi_create_profile_indexed_input_get_apn_name ()

+
gboolean
+qmi_message_wds_swi_create_profile_indexed_input_get_apn_name
+                               (QmiMessageWdsSwiCreateProfileIndexedInput *self,
+                                const gchar **value_apn_name,
+                                GError **error);
+

Get the 'APN Name' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageWdsSwiCreateProfileIndexedInput.

 

value_apn_name

a placeholder for the output constant string, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.22

+
+
+
+

qmi_message_wds_swi_create_profile_indexed_input_set_apn_name ()

+
gboolean
+qmi_message_wds_swi_create_profile_indexed_input_set_apn_name
+                               (QmiMessageWdsSwiCreateProfileIndexedInput *self,
+                                const gchar *value_apn_name,
+                                GError **error);
+

Set the 'APN Name' field in the message.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageWdsSwiCreateProfileIndexedInput.

 

value_apn_name

a constant string.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if value +was successfully set, FALSE otherwise.

+
+

Since: 1.22

+
+
+
+

qmi_message_wds_swi_create_profile_indexed_input_get_pdp_type ()

+
gboolean
+qmi_message_wds_swi_create_profile_indexed_input_get_pdp_type
+                               (QmiMessageWdsSwiCreateProfileIndexedInput *self,
+                                QmiWdsPdpType *value_pdp_type,
+                                GError **error);
+

Get the 'PDP Type' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageWdsSwiCreateProfileIndexedInput.

 

value_pdp_type

a placeholder for the output QmiWdsPdpType, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.22

+
+
+
+

qmi_message_wds_swi_create_profile_indexed_input_set_pdp_type ()

+
gboolean
+qmi_message_wds_swi_create_profile_indexed_input_set_pdp_type
+                               (QmiMessageWdsSwiCreateProfileIndexedInput *self,
+                                QmiWdsPdpType value_pdp_type,
+                                GError **error);
+

Set the 'PDP Type' field in the message.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageWdsSwiCreateProfileIndexedInput.

 

value_pdp_type

a QmiWdsPdpType.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if value +was successfully set, FALSE otherwise.

+
+

Since: 1.22

+
+
+
+

qmi_message_wds_swi_create_profile_indexed_input_get_profile_name ()

+
gboolean
+qmi_message_wds_swi_create_profile_indexed_input_get_profile_name
+                               (QmiMessageWdsSwiCreateProfileIndexedInput *self,
+                                const gchar **value_profile_name,
+                                GError **error);
+

Get the 'Profile Name' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageWdsSwiCreateProfileIndexedInput.

 

value_profile_name

a placeholder for the output constant string, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.22

+
+
+
+

qmi_message_wds_swi_create_profile_indexed_input_set_profile_name ()

+
gboolean
+qmi_message_wds_swi_create_profile_indexed_input_set_profile_name
+                               (QmiMessageWdsSwiCreateProfileIndexedInput *self,
+                                const gchar *value_profile_name,
+                                GError **error);
+

Set the 'Profile Name' field in the message.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageWdsSwiCreateProfileIndexedInput.

 

value_profile_name

a constant string.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if value +was successfully set, FALSE otherwise.

+
+

Since: 1.22

+
+
+
+

qmi_message_wds_swi_create_profile_indexed_input_get_profile_identifier ()

+
gboolean
+qmi_message_wds_swi_create_profile_indexed_input_get_profile_identifier
+                               (QmiMessageWdsSwiCreateProfileIndexedInput *self,
+                                QmiWdsProfileType *value_profile_identifier_profile_type,
+                                guint8 *value_profile_identifier_profile_index,
+                                GError **error);
+

Get the 'Profile Identifier' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + + + + + + +

self

a QmiMessageWdsSwiCreateProfileIndexedInput.

 

value_profile_identifier_profile_type

a placeholder for the output QmiWdsProfileType, or NULL if not required.

 

value_profile_identifier_profile_index

a placeholder for the output guint8, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.22

+
+
+
+

qmi_message_wds_swi_create_profile_indexed_input_set_profile_identifier ()

+
gboolean
+qmi_message_wds_swi_create_profile_indexed_input_set_profile_identifier
+                               (QmiMessageWdsSwiCreateProfileIndexedInput *self,
+                                QmiWdsProfileType value_profile_identifier_profile_type,
+                                guint8 value_profile_identifier_profile_index,
+                                GError **error);
+

Set the 'Profile Identifier' field in the message.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + + + + + + +

self

a QmiMessageWdsSwiCreateProfileIndexedInput.

 

value_profile_identifier_profile_type

a QmiWdsProfileType.

 

value_profile_identifier_profile_index

a guint8.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if value +was successfully set, FALSE otherwise.

+
+

Since: 1.22

+
+
+
+

qmi_message_wds_swi_create_profile_indexed_output_ref ()

+
QmiMessageWdsSwiCreateProfileIndexedOutput *
+qmi_message_wds_swi_create_profile_indexed_output_ref
+                               (QmiMessageWdsSwiCreateProfileIndexedOutput *self);
+

Atomically increments the reference count of self + by one.

+
+

Parameters

+
+++++ + + + + + +

self

a QmiMessageWdsSwiCreateProfileIndexedOutput.

 
+
+
+

Returns

+

the new reference to self +.

+
+

Since: 1.22

+
+
+
+

qmi_message_wds_swi_create_profile_indexed_output_unref ()

+
void
+qmi_message_wds_swi_create_profile_indexed_output_unref
+                               (QmiMessageWdsSwiCreateProfileIndexedOutput *self);
+

Atomically decrements the reference count of self + by one. +If the reference count drops to 0, self + is completely disposed.

+
+

Parameters

+
+++++ + + + + + +

self

a QmiMessageWdsSwiCreateProfileIndexedOutput.

 
+
+

Since: 1.22

+
+
+
+

qmi_message_wds_swi_create_profile_indexed_output_get_result ()

+
gboolean
+qmi_message_wds_swi_create_profile_indexed_output_get_result
+                               (QmiMessageWdsSwiCreateProfileIndexedOutput *self,
+                                GError **error);
+

Get the result of the QMI operation.

+
+

Parameters

+
+++++ + + + + + + + + + + + + +

self

a QmiMessageWdsSwiCreateProfileIndexedOutput.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the QMI operation succeeded, FALSE if error +is set.

+
+

Since: 1.22

+
+
+
+

qmi_message_wds_swi_create_profile_indexed_output_get_profile_identifier ()

+
gboolean
+qmi_message_wds_swi_create_profile_indexed_output_get_profile_identifier
+                               (QmiMessageWdsSwiCreateProfileIndexedOutput *self,
+                                QmiWdsProfileType *value_profile_identifier_profile_type,
+                                guint8 *value_profile_identifier_profile_index,
+                                GError **error);
+

Get the 'Profile Identifier' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + + + + + + +

self

a QmiMessageWdsSwiCreateProfileIndexedOutput.

 

value_profile_identifier_profile_type

a placeholder for the output QmiWdsProfileType, or NULL if not required.

 

value_profile_identifier_profile_index

a placeholder for the output guint8, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.22

+
+
+
+

qmi_client_wds_swi_create_profile_indexed ()

+
void
+qmi_client_wds_swi_create_profile_indexed
+                               (QmiClientWds *self,
+                                QmiMessageWdsSwiCreateProfileIndexedInput *input,
+                                guint timeout,
+                                GCancellable *cancellable,
+                                GAsyncReadyCallback callback,
+                                gpointer user_data);
+

Asynchronously sends a Swi Create Profile Indexed request to the device.

+

When the operation is finished, callback + will be invoked in the thread-default main loop of the thread you are calling this method from.

+

You can then call qmi_client_wds_swi_create_profile_indexed_finish() to get the result of the operation.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

self

a QmiClientWds.

 

input

a QmiMessageWdsSwiCreateProfileIndexedInput.

 

timeout

maximum time to wait for the method to complete, in seconds.

 

cancellable

a GCancellable or NULL.

 

callback

a GAsyncReadyCallback to call when the request is satisfied.

 

user_data

user data to pass to callback +.

 
+
+

Since: 1.22

+
+
+
+

qmi_client_wds_swi_create_profile_indexed_finish ()

+
QmiMessageWdsSwiCreateProfileIndexedOutput *
+qmi_client_wds_swi_create_profile_indexed_finish
+                               (QmiClientWds *self,
+                                GAsyncResult *res,
+                                GError **error);
+

Finishes an async operation started with qmi_client_wds_swi_create_profile_indexed().

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiClientWds.

 

res

the GAsyncResult obtained from the GAsyncReadyCallback passed to qmi_client_wds_swi_create_profile_indexed().

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

a QmiMessageWdsSwiCreateProfileIndexedOutput, or NULL if error +is set. The returned value should be freed with qmi_message_wds_swi_create_profile_indexed_output_unref().

+
+

Since: 1.22

+
+
+
+

Types and Values

+
+

QmiMessageWdsSwiCreateProfileIndexedInput

+
typedef struct _QmiMessageWdsSwiCreateProfileIndexedInput QmiMessageWdsSwiCreateProfileIndexedInput;
+

The QmiMessageWdsSwiCreateProfileIndexedInput structure contains private data and should only be accessed +using the provided API.

+

Since: 1.22

+
+
+
+

QmiMessageWdsSwiCreateProfileIndexedOutput

+
typedef struct _QmiMessageWdsSwiCreateProfileIndexedOutput QmiMessageWdsSwiCreateProfileIndexedOutput;
+

The QmiMessageWdsSwiCreateProfileIndexedOutput structure contains private data and should only be accessed +using the provided API.

+

Since: 1.22

+
+
+
+ + + \ No newline at end of file diff -Nru libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-WMS-Delete.html libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-WMS-Delete.html --- libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-WMS-Delete.html 2017-03-22 12:28:28.000000000 +0100 +++ libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-WMS-Delete.html 1970-01-01 01:00:00.000000000 +0100 @@ -1,831 +0,0 @@ - - - - -WMS Delete: libqmi-glib Reference Manual - - - - - - - - - - - - - - - - -
-
-
- - -
-

WMS Delete

-

WMS Delete

-
- -
-

Types and Values

- -
-
-

Object Hierarchy

-
    GBoxed
-    ├── QmiMessageWmsDeleteInput
-    ╰── QmiMessageWmsDeleteOutput
-
-
-
-

Description

-
-
-

Functions

-
-

qmi_message_wms_delete_input_new ()

-
QmiMessageWmsDeleteInput *
-qmi_message_wms_delete_input_new (void);
-

Allocates a new QmiMessageWmsDeleteInput.

-
-

Returns

-

the newly created QmiMessageWmsDeleteInput. The returned value should be freed with qmi_message_wms_delete_input_unref().

-
-

Since: 1.0

-
-
-
-

qmi_message_wms_delete_input_ref ()

-
QmiMessageWmsDeleteInput *
-qmi_message_wms_delete_input_ref (QmiMessageWmsDeleteInput *self);
-

Atomically increments the reference count of self - by one.

-
-

Parameters

-
----- - - - - - -

self

a QmiMessageWmsDeleteInput.

 
-
-
-

Returns

-

the new reference to self -.

-
-

Since: 1.0

-
-
-
-

qmi_message_wms_delete_input_unref ()

-
void
-qmi_message_wms_delete_input_unref (QmiMessageWmsDeleteInput *self);
-

Atomically decrements the reference count of self - by one. -If the reference count drops to 0, self - is completely disposed.

-
-

Parameters

-
----- - - - - - -

self

a QmiMessageWmsDeleteInput.

 
-
-

Since: 1.0

-
-
-
-

qmi_message_wms_delete_input_get_message_mode ()

-
gboolean
-qmi_message_wms_delete_input_get_message_mode
-                               (QmiMessageWmsDeleteInput *self,
-                                QmiWmsMessageMode *value_message_mode,
-                                GError **error);
-

Get the 'Message Mode' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessageWmsDeleteInput.

 

value_message_mode

a placeholder for the output QmiWmsMessageMode, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.0

-
-
-
-

qmi_message_wms_delete_input_set_message_mode ()

-
gboolean
-qmi_message_wms_delete_input_set_message_mode
-                               (QmiMessageWmsDeleteInput *self,
-                                QmiWmsMessageMode value_message_mode,
-                                GError **error);
-

Set the 'Message Mode' field in the message.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessageWmsDeleteInput.

 

value_message_mode

a QmiWmsMessageMode.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if value -was successfully set, FALSE otherwise.

-
-

Since: 1.0

-
-
-
-

qmi_message_wms_delete_input_get_message_tag ()

-
gboolean
-qmi_message_wms_delete_input_get_message_tag
-                               (QmiMessageWmsDeleteInput *self,
-                                QmiWmsMessageTagType *value_message_tag,
-                                GError **error);
-

Get the 'Message Tag' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessageWmsDeleteInput.

 

value_message_tag

a placeholder for the output QmiWmsMessageTagType, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.0

-
-
-
-

qmi_message_wms_delete_input_set_message_tag ()

-
gboolean
-qmi_message_wms_delete_input_set_message_tag
-                               (QmiMessageWmsDeleteInput *self,
-                                QmiWmsMessageTagType value_message_tag,
-                                GError **error);
-

Set the 'Message Tag' field in the message.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessageWmsDeleteInput.

 

value_message_tag

a QmiWmsMessageTagType.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if value -was successfully set, FALSE otherwise.

-
-

Since: 1.0

-
-
-
-

qmi_message_wms_delete_input_get_memory_index ()

-
gboolean
-qmi_message_wms_delete_input_get_memory_index
-                               (QmiMessageWmsDeleteInput *self,
-                                guint32 *value_memory_index,
-                                GError **error);
-

Get the 'Memory Index' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessageWmsDeleteInput.

 

value_memory_index

a placeholder for the output guint32, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.0

-
-
-
-

qmi_message_wms_delete_input_set_memory_index ()

-
gboolean
-qmi_message_wms_delete_input_set_memory_index
-                               (QmiMessageWmsDeleteInput *self,
-                                guint32 value_memory_index,
-                                GError **error);
-

Set the 'Memory Index' field in the message.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessageWmsDeleteInput.

 

value_memory_index

a guint32.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if value -was successfully set, FALSE otherwise.

-
-

Since: 1.0

-
-
-
-

qmi_message_wms_delete_input_get_memory_storage ()

-
gboolean
-qmi_message_wms_delete_input_get_memory_storage
-                               (QmiMessageWmsDeleteInput *self,
-                                QmiWmsStorageType *value_memory_storage,
-                                GError **error);
-

Get the 'Memory Storage' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessageWmsDeleteInput.

 

value_memory_storage

a placeholder for the output QmiWmsStorageType, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.0

-
-
-
-

qmi_message_wms_delete_input_set_memory_storage ()

-
gboolean
-qmi_message_wms_delete_input_set_memory_storage
-                               (QmiMessageWmsDeleteInput *self,
-                                QmiWmsStorageType value_memory_storage,
-                                GError **error);
-

Set the 'Memory Storage' field in the message.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessageWmsDeleteInput.

 

value_memory_storage

a QmiWmsStorageType.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if value -was successfully set, FALSE otherwise.

-
-

Since: 1.0

-
-
-
-

qmi_message_wms_delete_output_ref ()

-
QmiMessageWmsDeleteOutput *
-qmi_message_wms_delete_output_ref (QmiMessageWmsDeleteOutput *self);
-

Atomically increments the reference count of self - by one.

-
-

Parameters

-
----- - - - - - -

self

a QmiMessageWmsDeleteOutput.

 
-
-
-

Returns

-

the new reference to self -.

-
-

Since: 1.0

-
-
-
-

qmi_message_wms_delete_output_unref ()

-
void
-qmi_message_wms_delete_output_unref (QmiMessageWmsDeleteOutput *self);
-

Atomically decrements the reference count of self - by one. -If the reference count drops to 0, self - is completely disposed.

-
-

Parameters

-
----- - - - - - -

self

a QmiMessageWmsDeleteOutput.

 
-
-

Since: 1.0

-
-
-
-

qmi_message_wms_delete_output_get_result ()

-
gboolean
-qmi_message_wms_delete_output_get_result
-                               (QmiMessageWmsDeleteOutput *self,
-                                GError **error);
-

Get the result of the QMI operation.

-
-

Parameters

-
----- - - - - - - - - - - - - -

self

a QmiMessageWmsDeleteOutput.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the QMI operation succeeded, FALSE if error -is set.

-
-

Since: 1.0

-
-
-
-

qmi_client_wms_delete ()

-
void
-qmi_client_wms_delete (QmiClientWms *self,
-                       QmiMessageWmsDeleteInput *input,
-                       guint timeout,
-                       GCancellable *cancellable,
-                       GAsyncReadyCallback callback,
-                       gpointer user_data);
-

Asynchronously sends a Delete request to the device.

-

When the operation is finished, callback - will be invoked in the thread-default main loop of the thread you are calling this method from.

-

You can then call qmi_client_wms_delete_finish() to get the result of the operation.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

self

a QmiClientWms.

 

input

a QmiMessageWmsDeleteInput.

 

timeout

maximum time to wait for the method to complete, in seconds.

 

cancellable

a GCancellable or NULL.

 

callback

a GAsyncReadyCallback to call when the request is satisfied.

 

user_data

user data to pass to callback -.

 
-
-

Since: 1.0

-
-
-
-

qmi_client_wms_delete_finish ()

-
QmiMessageWmsDeleteOutput *
-qmi_client_wms_delete_finish (QmiClientWms *self,
-                              GAsyncResult *res,
-                              GError **error);
-

Finishes an async operation started with qmi_client_wms_delete().

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiClientWms.

 

res

the GAsyncResult obtained from the GAsyncReadyCallback passed to qmi_client_wms_delete().

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

a QmiMessageWmsDeleteOutput, or NULL if error -is set. The returned value should be freed with qmi_message_wms_delete_output_unref().

-
-

Since: 1.0

-
-
-
-

Types and Values

-
-

QmiMessageWmsDeleteInput

-
typedef struct _QmiMessageWmsDeleteInput QmiMessageWmsDeleteInput;
-

The QmiMessageWmsDeleteInput structure contains private data and should only be accessed -using the provided API.

-

Since: 1.0

-
-
-
-

QmiMessageWmsDeleteOutput

-
typedef struct _QmiMessageWmsDeleteOutput QmiMessageWmsDeleteOutput;
-

The QmiMessageWmsDeleteOutput structure contains private data and should only be accessed -using the provided API.

-

Since: 1.0

-
-
-
- - - \ No newline at end of file diff -Nru libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-WMS-Delete-request.html libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-WMS-Delete-request.html --- libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-WMS-Delete-request.html 1970-01-01 01:00:00.000000000 +0100 +++ libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-WMS-Delete-request.html 2019-01-08 15:19:02.000000000 +0100 @@ -0,0 +1,831 @@ + + + + +WMS Delete request: libqmi-glib Reference Manual + + + + + + + + + + + + + + + + +
+
+
+ + +
+

WMS Delete request

+

WMS Delete request

+
+ +
+

Types and Values

+ +
+
+

Object Hierarchy

+
    GBoxed
+    ├── QmiMessageWmsDeleteInput
+    ╰── QmiMessageWmsDeleteOutput
+
+
+
+

Description

+
+
+

Functions

+
+

qmi_message_wms_delete_input_new ()

+
QmiMessageWmsDeleteInput *
+qmi_message_wms_delete_input_new (void);
+

Allocates a new QmiMessageWmsDeleteInput.

+
+

Returns

+

the newly created QmiMessageWmsDeleteInput. The returned value should be freed with qmi_message_wms_delete_input_unref().

+
+

Since: 1.0

+
+
+
+

qmi_message_wms_delete_input_ref ()

+
QmiMessageWmsDeleteInput *
+qmi_message_wms_delete_input_ref (QmiMessageWmsDeleteInput *self);
+

Atomically increments the reference count of self + by one.

+
+

Parameters

+
+++++ + + + + + +

self

a QmiMessageWmsDeleteInput.

 
+
+
+

Returns

+

the new reference to self +.

+
+

Since: 1.0

+
+
+
+

qmi_message_wms_delete_input_unref ()

+
void
+qmi_message_wms_delete_input_unref (QmiMessageWmsDeleteInput *self);
+

Atomically decrements the reference count of self + by one. +If the reference count drops to 0, self + is completely disposed.

+
+

Parameters

+
+++++ + + + + + +

self

a QmiMessageWmsDeleteInput.

 
+
+

Since: 1.0

+
+
+
+

qmi_message_wms_delete_input_get_message_mode ()

+
gboolean
+qmi_message_wms_delete_input_get_message_mode
+                               (QmiMessageWmsDeleteInput *self,
+                                QmiWmsMessageMode *value_message_mode,
+                                GError **error);
+

Get the 'Message Mode' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageWmsDeleteInput.

 

value_message_mode

a placeholder for the output QmiWmsMessageMode, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.0

+
+
+
+

qmi_message_wms_delete_input_set_message_mode ()

+
gboolean
+qmi_message_wms_delete_input_set_message_mode
+                               (QmiMessageWmsDeleteInput *self,
+                                QmiWmsMessageMode value_message_mode,
+                                GError **error);
+

Set the 'Message Mode' field in the message.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageWmsDeleteInput.

 

value_message_mode

a QmiWmsMessageMode.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if value +was successfully set, FALSE otherwise.

+
+

Since: 1.0

+
+
+
+

qmi_message_wms_delete_input_get_message_tag ()

+
gboolean
+qmi_message_wms_delete_input_get_message_tag
+                               (QmiMessageWmsDeleteInput *self,
+                                QmiWmsMessageTagType *value_message_tag,
+                                GError **error);
+

Get the 'Message Tag' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageWmsDeleteInput.

 

value_message_tag

a placeholder for the output QmiWmsMessageTagType, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.0

+
+
+
+

qmi_message_wms_delete_input_set_message_tag ()

+
gboolean
+qmi_message_wms_delete_input_set_message_tag
+                               (QmiMessageWmsDeleteInput *self,
+                                QmiWmsMessageTagType value_message_tag,
+                                GError **error);
+

Set the 'Message Tag' field in the message.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageWmsDeleteInput.

 

value_message_tag

a QmiWmsMessageTagType.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if value +was successfully set, FALSE otherwise.

+
+

Since: 1.0

+
+
+
+

qmi_message_wms_delete_input_get_memory_index ()

+
gboolean
+qmi_message_wms_delete_input_get_memory_index
+                               (QmiMessageWmsDeleteInput *self,
+                                guint32 *value_memory_index,
+                                GError **error);
+

Get the 'Memory Index' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageWmsDeleteInput.

 

value_memory_index

a placeholder for the output guint32, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.0

+
+
+
+

qmi_message_wms_delete_input_set_memory_index ()

+
gboolean
+qmi_message_wms_delete_input_set_memory_index
+                               (QmiMessageWmsDeleteInput *self,
+                                guint32 value_memory_index,
+                                GError **error);
+

Set the 'Memory Index' field in the message.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageWmsDeleteInput.

 

value_memory_index

a guint32.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if value +was successfully set, FALSE otherwise.

+
+

Since: 1.0

+
+
+
+

qmi_message_wms_delete_input_get_memory_storage ()

+
gboolean
+qmi_message_wms_delete_input_get_memory_storage
+                               (QmiMessageWmsDeleteInput *self,
+                                QmiWmsStorageType *value_memory_storage,
+                                GError **error);
+

Get the 'Memory Storage' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageWmsDeleteInput.

 

value_memory_storage

a placeholder for the output QmiWmsStorageType, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.0

+
+
+
+

qmi_message_wms_delete_input_set_memory_storage ()

+
gboolean
+qmi_message_wms_delete_input_set_memory_storage
+                               (QmiMessageWmsDeleteInput *self,
+                                QmiWmsStorageType value_memory_storage,
+                                GError **error);
+

Set the 'Memory Storage' field in the message.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageWmsDeleteInput.

 

value_memory_storage

a QmiWmsStorageType.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if value +was successfully set, FALSE otherwise.

+
+

Since: 1.0

+
+
+
+

qmi_message_wms_delete_output_ref ()

+
QmiMessageWmsDeleteOutput *
+qmi_message_wms_delete_output_ref (QmiMessageWmsDeleteOutput *self);
+

Atomically increments the reference count of self + by one.

+
+

Parameters

+
+++++ + + + + + +

self

a QmiMessageWmsDeleteOutput.

 
+
+
+

Returns

+

the new reference to self +.

+
+

Since: 1.0

+
+
+
+

qmi_message_wms_delete_output_unref ()

+
void
+qmi_message_wms_delete_output_unref (QmiMessageWmsDeleteOutput *self);
+

Atomically decrements the reference count of self + by one. +If the reference count drops to 0, self + is completely disposed.

+
+

Parameters

+
+++++ + + + + + +

self

a QmiMessageWmsDeleteOutput.

 
+
+

Since: 1.0

+
+
+
+

qmi_message_wms_delete_output_get_result ()

+
gboolean
+qmi_message_wms_delete_output_get_result
+                               (QmiMessageWmsDeleteOutput *self,
+                                GError **error);
+

Get the result of the QMI operation.

+
+

Parameters

+
+++++ + + + + + + + + + + + + +

self

a QmiMessageWmsDeleteOutput.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the QMI operation succeeded, FALSE if error +is set.

+
+

Since: 1.0

+
+
+
+

qmi_client_wms_delete ()

+
void
+qmi_client_wms_delete (QmiClientWms *self,
+                       QmiMessageWmsDeleteInput *input,
+                       guint timeout,
+                       GCancellable *cancellable,
+                       GAsyncReadyCallback callback,
+                       gpointer user_data);
+

Asynchronously sends a Delete request to the device.

+

When the operation is finished, callback + will be invoked in the thread-default main loop of the thread you are calling this method from.

+

You can then call qmi_client_wms_delete_finish() to get the result of the operation.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

self

a QmiClientWms.

 

input

a QmiMessageWmsDeleteInput.

 

timeout

maximum time to wait for the method to complete, in seconds.

 

cancellable

a GCancellable or NULL.

 

callback

a GAsyncReadyCallback to call when the request is satisfied.

 

user_data

user data to pass to callback +.

 
+
+

Since: 1.0

+
+
+
+

qmi_client_wms_delete_finish ()

+
QmiMessageWmsDeleteOutput *
+qmi_client_wms_delete_finish (QmiClientWms *self,
+                              GAsyncResult *res,
+                              GError **error);
+

Finishes an async operation started with qmi_client_wms_delete().

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiClientWms.

 

res

the GAsyncResult obtained from the GAsyncReadyCallback passed to qmi_client_wms_delete().

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

a QmiMessageWmsDeleteOutput, or NULL if error +is set. The returned value should be freed with qmi_message_wms_delete_output_unref().

+
+

Since: 1.0

+
+
+
+

Types and Values

+
+

QmiMessageWmsDeleteInput

+
typedef struct _QmiMessageWmsDeleteInput QmiMessageWmsDeleteInput;
+

The QmiMessageWmsDeleteInput structure contains private data and should only be accessed +using the provided API.

+

Since: 1.0

+
+
+
+

QmiMessageWmsDeleteOutput

+
typedef struct _QmiMessageWmsDeleteOutput QmiMessageWmsDeleteOutput;
+

The QmiMessageWmsDeleteOutput structure contains private data and should only be accessed +using the provided API.

+

Since: 1.0

+
+
+
+ + + \ No newline at end of file diff -Nru libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-WMS-enumerations-and-flags.html libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-WMS-enumerations-and-flags.html --- libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-WMS-enumerations-and-flags.html 2017-03-22 12:28:29.000000000 +0100 +++ libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-WMS-enumerations-and-flags.html 2019-01-08 15:19:02.000000000 +0100 @@ -3,12 +3,12 @@ WMS enumerations and flags: libqmi-glib Reference Manual - + - - + + @@ -21,7 +21,7 @@ Home Up Prev -Next +Next
@@ -243,7 +243,7 @@

Object Hierarchy

-
    GEnum
+
    GEnum
     ├── QmiWmsAckIndicator
     ├── QmiWmsCdmaCauseCode
     ├── QmiWmsCdmaErrorClass
@@ -293,7 +293,7 @@
 

Returns

-

a string with the nickname, or NULL if not found. Do not free the returned value.

+

a string with the nickname, or NULL if not found. Do not free the returned value.

[transfer none]

Since: 1.0

@@ -322,7 +322,7 @@

Returns

-

a string with the nickname, or NULL if not found. Do not free the returned value.

+

a string with the nickname, or NULL if not found. Do not free the returned value.

[transfer none]

Since: 1.0

@@ -351,7 +351,7 @@

Returns

-

a string with the nickname, or NULL if not found. Do not free the returned value.

+

a string with the nickname, or NULL if not found. Do not free the returned value.

[transfer none]

Since: 1.0

@@ -380,7 +380,7 @@

Returns

-

a string with the nickname, or NULL if not found. Do not free the returned value.

+

a string with the nickname, or NULL if not found. Do not free the returned value.

[transfer none]

Since: 1.0

@@ -409,7 +409,7 @@

Returns

-

a string with the nickname, or NULL if not found. Do not free the returned value.

+

a string with the nickname, or NULL if not found. Do not free the returned value.

[transfer none]

Since: 1.0

@@ -439,7 +439,7 @@

Returns

-

a string with the nickname, or NULL if not found. Do not free the returned value.

+

a string with the nickname, or NULL if not found. Do not free the returned value.

[transfer none]

Since: 1.0

@@ -468,7 +468,7 @@

Returns

-

a string with the nickname, or NULL if not found. Do not free the returned value.

+

a string with the nickname, or NULL if not found. Do not free the returned value.

[transfer none]

Since: 1.0

@@ -497,7 +497,7 @@

Returns

-

a string with the nickname, or NULL if not found. Do not free the returned value.

+

a string with the nickname, or NULL if not found. Do not free the returned value.

[transfer none]

Since: 1.0

@@ -526,7 +526,7 @@

Returns

-

a string with the nickname, or NULL if not found. Do not free the returned value.

+

a string with the nickname, or NULL if not found. Do not free the returned value.

[transfer none]

Since: 1.0

@@ -555,7 +555,7 @@

Returns

-

a string with the nickname, or NULL if not found. Do not free the returned value.

+

a string with the nickname, or NULL if not found. Do not free the returned value.

[transfer none]

Since: 1.0

@@ -585,7 +585,7 @@

Returns

-

a string with the nickname, or NULL if not found. Do not free the returned value.

+

a string with the nickname, or NULL if not found. Do not free the returned value.

[transfer none]

Since: 1.0

@@ -614,7 +614,7 @@

Returns

-

a string with the nickname, or NULL if not found. Do not free the returned value.

+

a string with the nickname, or NULL if not found. Do not free the returned value.

[transfer none]

Since: 1.0

@@ -643,7 +643,7 @@

Returns

-

a string with the nickname, or NULL if not found. Do not free the returned value.

+

a string with the nickname, or NULL if not found. Do not free the returned value.

[transfer none]

Since: 1.0

@@ -672,7 +672,7 @@

Returns

-

a string with the nickname, or NULL if not found. Do not free the returned value.

+

a string with the nickname, or NULL if not found. Do not free the returned value.

[transfer none]

Since: 1.0

@@ -701,7 +701,7 @@

Returns

-

a string with the nickname, or NULL if not found. Do not free the returned value.

+

a string with the nickname, or NULL if not found. Do not free the returned value.

[transfer none]

Since: 1.0

@@ -730,7 +730,7 @@

Returns

-

a string with the nickname, or NULL if not found. Do not free the returned value.

+

a string with the nickname, or NULL if not found. Do not free the returned value.

[transfer none]

Since: 1.0

@@ -760,7 +760,7 @@

Returns

-

a string with the nickname, or NULL if not found. Do not free the returned value.

+

a string with the nickname, or NULL if not found. Do not free the returned value.

[transfer none]

Since: 1.0

@@ -1898,6 +1898,6 @@ +
Generated by GTK-Doc V1.29 \ No newline at end of file diff -Nru libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-WMS-Event-Report.html libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-WMS-Event-Report.html --- libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-WMS-Event-Report.html 2017-03-22 12:28:28.000000000 +0100 +++ libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-WMS-Event-Report.html 1970-01-01 01:00:00.000000000 +0100 @@ -1,552 +0,0 @@ - - - - -WMS Event Report: libqmi-glib Reference Manual - - - - - - - - - - - - - - - - -
-
-
- - -
-

WMS Event Report

-

WMS Event Report

-
- -
-

Types and Values

- -
-
-

Object Hierarchy

-
    GBoxed
-    ╰── QmiIndicationWmsEventReportOutput
-
-
-
-

Description

-
-
-

Functions

-
-

qmi_indication_wms_event_report_output_ref ()

-
QmiIndicationWmsEventReportOutput *
-qmi_indication_wms_event_report_output_ref
-                               (QmiIndicationWmsEventReportOutput *self);
-

Atomically increments the reference count of self - by one.

-
-

Parameters

-
----- - - - - - -

self

a QmiIndicationWmsEventReportOutput.

 
-
-
-

Returns

-

the new reference to self -.

-
-

Since: 1.0

-
-
-
-

qmi_indication_wms_event_report_output_unref ()

-
void
-qmi_indication_wms_event_report_output_unref
-                               (QmiIndicationWmsEventReportOutput *self);
-

Atomically decrements the reference count of self - by one. -If the reference count drops to 0, self - is completely disposed.

-
-

Parameters

-
----- - - - - - -

self

a QmiIndicationWmsEventReportOutput.

 
-
-

Since: 1.0

-
-
-
-

qmi_indication_wms_event_report_output_get_sms_on_ims ()

-
gboolean
-qmi_indication_wms_event_report_output_get_sms_on_ims
-                               (QmiIndicationWmsEventReportOutput *self,
-                                gboolean *value_sms_on_ims,
-                                GError **error);
-

Get the 'SMS on IMS' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiIndicationWmsEventReportOutput.

 

value_sms_on_ims

a placeholder for the output gboolean, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.0

-
-
-
-

qmi_indication_wms_event_report_output_get_smsc_address ()

-
gboolean
-qmi_indication_wms_event_report_output_get_smsc_address
-                               (QmiIndicationWmsEventReportOutput *self,
-                                const gchar **value_smsc_address,
-                                GError **error);
-

Get the 'SMSC Address' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiIndicationWmsEventReportOutput.

 

value_smsc_address

a placeholder for the output constant string, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.0

-
-
-
-

qmi_indication_wms_event_report_output_get_etws_plmn_information ()

-
gboolean
-qmi_indication_wms_event_report_output_get_etws_plmn_information
-                               (QmiIndicationWmsEventReportOutput *self,
-                                guint16 *value_etws_plmn_information_mcc,
-                                guint16 *value_etws_plmn_information_mnc,
-                                GError **error);
-

Get the 'ETWS PLMN Information' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - - - - - - -

self

a QmiIndicationWmsEventReportOutput.

 

value_etws_plmn_information_mcc

a placeholder for the output guint16, or NULL if not required.

 

value_etws_plmn_information_mnc

a placeholder for the output guint16, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.0

-
-
-
-

qmi_indication_wms_event_report_output_get_etws_message ()

-
gboolean
-qmi_indication_wms_event_report_output_get_etws_message
-                               (QmiIndicationWmsEventReportOutput *self,
-                                QmiWmsNotificationType *value_etws_message_notification_type,
-                                GArray **value_etws_message_raw_data,
-                                GError **error);
-

Get the 'ETWS Message' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - - - - - - -

self

a QmiIndicationWmsEventReportOutput.

 

value_etws_message_notification_type

a placeholder for the output QmiWmsNotificationType, or NULL if not required.

 

value_etws_message_raw_data

a placeholder for the output GArray of guint8 elements, or NULL if not required. Do not free it, it is owned by self -.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.0

-
-
-
-

qmi_indication_wms_event_report_output_get_message_mode ()

-
gboolean
-qmi_indication_wms_event_report_output_get_message_mode
-                               (QmiIndicationWmsEventReportOutput *self,
-                                QmiWmsMessageMode *value_message_mode,
-                                GError **error);
-

Get the 'Message Mode' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiIndicationWmsEventReportOutput.

 

value_message_mode

a placeholder for the output QmiWmsMessageMode, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.0

-
-
-
-

qmi_indication_wms_event_report_output_get_transfer_route_mt_message ()

-
gboolean
-qmi_indication_wms_event_report_output_get_transfer_route_mt_message
-                               (QmiIndicationWmsEventReportOutput *self,
-                                QmiWmsAckIndicator *value_transfer_route_mt_message_ack_indicator,
-                                guint32 *value_transfer_route_mt_message_transaction_id,
-                                QmiWmsMessageFormat *value_transfer_route_mt_message_format,
-                                GArray **value_transfer_route_mt_message_raw_data,
-                                GError **error);
-

Get the 'Transfer Route MT Message' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

self

a QmiIndicationWmsEventReportOutput.

 

value_transfer_route_mt_message_ack_indicator

a placeholder for the output QmiWmsAckIndicator, or NULL if not required.

 

value_transfer_route_mt_message_transaction_id

a placeholder for the output guint32, or NULL if not required.

 

value_transfer_route_mt_message_format

a placeholder for the output QmiWmsMessageFormat, or NULL if not required.

 

value_transfer_route_mt_message_raw_data

a placeholder for the output GArray of guint8 elements, or NULL if not required. Do not free it, it is owned by self -.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.0

-
-
-
-

qmi_indication_wms_event_report_output_get_mt_message ()

-
gboolean
-qmi_indication_wms_event_report_output_get_mt_message
-                               (QmiIndicationWmsEventReportOutput *self,
-                                QmiWmsStorageType *value_mt_message_storage_type,
-                                guint32 *value_mt_message_memory_index,
-                                GError **error);
-

Get the 'MT Message' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - - - - - - -

self

a QmiIndicationWmsEventReportOutput.

 

value_mt_message_storage_type

a placeholder for the output QmiWmsStorageType, or NULL if not required.

 

value_mt_message_memory_index

a placeholder for the output guint32, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.0

-
-
-
-

Types and Values

-
-

QmiIndicationWmsEventReportOutput

-
typedef struct _QmiIndicationWmsEventReportOutput QmiIndicationWmsEventReportOutput;
-

The QmiIndicationWmsEventReportOutput structure contains private data and should only be accessed -using the provided API.

-

Since: 1.0

-
-
-
- - - \ No newline at end of file diff -Nru libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-WMS-Event-Report-indication.html libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-WMS-Event-Report-indication.html --- libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-WMS-Event-Report-indication.html 1970-01-01 01:00:00.000000000 +0100 +++ libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-WMS-Event-Report-indication.html 2019-01-08 15:19:02.000000000 +0100 @@ -0,0 +1,552 @@ + + + + +WMS Event Report indication: libqmi-glib Reference Manual + + + + + + + + + + + + + + + + +
+
+
+ + +
+

WMS Event Report indication

+

WMS Event Report indication

+
+ +
+

Types and Values

+ +
+
+

Object Hierarchy

+
    GBoxed
+    ╰── QmiIndicationWmsEventReportOutput
+
+
+
+

Description

+
+
+

Functions

+
+

qmi_indication_wms_event_report_output_ref ()

+
QmiIndicationWmsEventReportOutput *
+qmi_indication_wms_event_report_output_ref
+                               (QmiIndicationWmsEventReportOutput *self);
+

Atomically increments the reference count of self + by one.

+
+

Parameters

+
+++++ + + + + + +

self

a QmiIndicationWmsEventReportOutput.

 
+
+
+

Returns

+

the new reference to self +.

+
+

Since: 1.0

+
+
+
+

qmi_indication_wms_event_report_output_unref ()

+
void
+qmi_indication_wms_event_report_output_unref
+                               (QmiIndicationWmsEventReportOutput *self);
+

Atomically decrements the reference count of self + by one. +If the reference count drops to 0, self + is completely disposed.

+
+

Parameters

+
+++++ + + + + + +

self

a QmiIndicationWmsEventReportOutput.

 
+
+

Since: 1.0

+
+
+
+

qmi_indication_wms_event_report_output_get_sms_on_ims ()

+
gboolean
+qmi_indication_wms_event_report_output_get_sms_on_ims
+                               (QmiIndicationWmsEventReportOutput *self,
+                                gboolean *value_sms_on_ims,
+                                GError **error);
+

Get the 'SMS on IMS' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiIndicationWmsEventReportOutput.

 

value_sms_on_ims

a placeholder for the output gboolean, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.0

+
+
+
+

qmi_indication_wms_event_report_output_get_smsc_address ()

+
gboolean
+qmi_indication_wms_event_report_output_get_smsc_address
+                               (QmiIndicationWmsEventReportOutput *self,
+                                const gchar **value_smsc_address,
+                                GError **error);
+

Get the 'SMSC Address' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiIndicationWmsEventReportOutput.

 

value_smsc_address

a placeholder for the output constant string, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.0

+
+
+
+

qmi_indication_wms_event_report_output_get_etws_plmn_information ()

+
gboolean
+qmi_indication_wms_event_report_output_get_etws_plmn_information
+                               (QmiIndicationWmsEventReportOutput *self,
+                                guint16 *value_etws_plmn_information_mcc,
+                                guint16 *value_etws_plmn_information_mnc,
+                                GError **error);
+

Get the 'ETWS PLMN Information' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + + + + + + +

self

a QmiIndicationWmsEventReportOutput.

 

value_etws_plmn_information_mcc

a placeholder for the output guint16, or NULL if not required.

 

value_etws_plmn_information_mnc

a placeholder for the output guint16, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.0

+
+
+
+

qmi_indication_wms_event_report_output_get_etws_message ()

+
gboolean
+qmi_indication_wms_event_report_output_get_etws_message
+                               (QmiIndicationWmsEventReportOutput *self,
+                                QmiWmsNotificationType *value_etws_message_notification_type,
+                                GArray **value_etws_message_raw_data,
+                                GError **error);
+

Get the 'ETWS Message' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + + + + + + +

self

a QmiIndicationWmsEventReportOutput.

 

value_etws_message_notification_type

a placeholder for the output QmiWmsNotificationType, or NULL if not required.

 

value_etws_message_raw_data

a placeholder for the output GArray of guint8 elements, or NULL if not required. Do not free it, it is owned by self +.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.0

+
+
+
+

qmi_indication_wms_event_report_output_get_message_mode ()

+
gboolean
+qmi_indication_wms_event_report_output_get_message_mode
+                               (QmiIndicationWmsEventReportOutput *self,
+                                QmiWmsMessageMode *value_message_mode,
+                                GError **error);
+

Get the 'Message Mode' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiIndicationWmsEventReportOutput.

 

value_message_mode

a placeholder for the output QmiWmsMessageMode, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.0

+
+
+
+

qmi_indication_wms_event_report_output_get_transfer_route_mt_message ()

+
gboolean
+qmi_indication_wms_event_report_output_get_transfer_route_mt_message
+                               (QmiIndicationWmsEventReportOutput *self,
+                                QmiWmsAckIndicator *value_transfer_route_mt_message_ack_indicator,
+                                guint32 *value_transfer_route_mt_message_transaction_id,
+                                QmiWmsMessageFormat *value_transfer_route_mt_message_format,
+                                GArray **value_transfer_route_mt_message_raw_data,
+                                GError **error);
+

Get the 'Transfer Route MT Message' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

self

a QmiIndicationWmsEventReportOutput.

 

value_transfer_route_mt_message_ack_indicator

a placeholder for the output QmiWmsAckIndicator, or NULL if not required.

 

value_transfer_route_mt_message_transaction_id

a placeholder for the output guint32, or NULL if not required.

 

value_transfer_route_mt_message_format

a placeholder for the output QmiWmsMessageFormat, or NULL if not required.

 

value_transfer_route_mt_message_raw_data

a placeholder for the output GArray of guint8 elements, or NULL if not required. Do not free it, it is owned by self +.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.0

+
+
+
+

qmi_indication_wms_event_report_output_get_mt_message ()

+
gboolean
+qmi_indication_wms_event_report_output_get_mt_message
+                               (QmiIndicationWmsEventReportOutput *self,
+                                QmiWmsStorageType *value_mt_message_storage_type,
+                                guint32 *value_mt_message_memory_index,
+                                GError **error);
+

Get the 'MT Message' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + + + + + + +

self

a QmiIndicationWmsEventReportOutput.

 

value_mt_message_storage_type

a placeholder for the output QmiWmsStorageType, or NULL if not required.

 

value_mt_message_memory_index

a placeholder for the output guint32, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.0

+
+
+
+

Types and Values

+
+

QmiIndicationWmsEventReportOutput

+
typedef struct _QmiIndicationWmsEventReportOutput QmiIndicationWmsEventReportOutput;
+

The QmiIndicationWmsEventReportOutput structure contains private data and should only be accessed +using the provided API.

+

Since: 1.0

+
+
+
+ + + \ No newline at end of file diff -Nru libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-WMS-Get-Message-Protocol.html libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-WMS-Get-Message-Protocol.html --- libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-WMS-Get-Message-Protocol.html 2017-03-22 12:28:29.000000000 +0100 +++ libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-WMS-Get-Message-Protocol.html 1970-01-01 01:00:00.000000000 +0100 @@ -1,371 +0,0 @@ - - - - -WMS Get Message Protocol: libqmi-glib Reference Manual - - - - - - - - - - - - - - - - -
-
-
- - -
-

WMS Get Message Protocol

-

WMS Get Message Protocol

-
- -
-

Types and Values

- -
-
-

Object Hierarchy

-
    GBoxed
-    ╰── QmiMessageWmsGetMessageProtocolOutput
-
-
-
-

Description

-
-
-

Functions

-
-

qmi_message_wms_get_message_protocol_output_ref ()

-
QmiMessageWmsGetMessageProtocolOutput *
-qmi_message_wms_get_message_protocol_output_ref
-                               (QmiMessageWmsGetMessageProtocolOutput *self);
-

Atomically increments the reference count of self - by one.

-
-

Parameters

-
----- - - - - - -

self

a QmiMessageWmsGetMessageProtocolOutput.

 
-
-
-

Returns

-

the new reference to self -.

-
-

Since: 1.0

-
-
-
-

qmi_message_wms_get_message_protocol_output_unref ()

-
void
-qmi_message_wms_get_message_protocol_output_unref
-                               (QmiMessageWmsGetMessageProtocolOutput *self);
-

Atomically decrements the reference count of self - by one. -If the reference count drops to 0, self - is completely disposed.

-
-

Parameters

-
----- - - - - - -

self

a QmiMessageWmsGetMessageProtocolOutput.

 
-
-

Since: 1.0

-
-
-
-

qmi_message_wms_get_message_protocol_output_get_result ()

-
gboolean
-qmi_message_wms_get_message_protocol_output_get_result
-                               (QmiMessageWmsGetMessageProtocolOutput *self,
-                                GError **error);
-

Get the result of the QMI operation.

-
-

Parameters

-
----- - - - - - - - - - - - - -

self

a QmiMessageWmsGetMessageProtocolOutput.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the QMI operation succeeded, FALSE if error -is set.

-
-

Since: 1.0

-
-
-
-

qmi_message_wms_get_message_protocol_output_get_message_protocol ()

-
gboolean
-qmi_message_wms_get_message_protocol_output_get_message_protocol
-                               (QmiMessageWmsGetMessageProtocolOutput *self,
-                                QmiWmsMessageProtocol *value_message_protocol,
-                                GError **error);
-

Get the 'Message Protocol' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessageWmsGetMessageProtocolOutput.

 

value_message_protocol

a placeholder for the output QmiWmsMessageProtocol, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.0

-
-
-
-

qmi_client_wms_get_message_protocol ()

-
void
-qmi_client_wms_get_message_protocol (QmiClientWms *self,
-                                     gpointer unused,
-                                     guint timeout,
-                                     GCancellable *cancellable,
-                                     GAsyncReadyCallback callback,
-                                     gpointer user_data);
-

Asynchronously sends a Get Message Protocol request to the device.

-

When the operation is finished, callback - will be invoked in the thread-default main loop of the thread you are calling this method from.

-

You can then call qmi_client_wms_get_message_protocol_finish() to get the result of the operation.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

self

a QmiClientWms.

 

unused

NULL. This message doesn't have any input bundle.

 

timeout

maximum time to wait for the method to complete, in seconds.

 

cancellable

a GCancellable or NULL.

 

callback

a GAsyncReadyCallback to call when the request is satisfied.

 

user_data

user data to pass to callback -.

 
-
-

Since: 1.0

-
-
-
-

qmi_client_wms_get_message_protocol_finish ()

-
QmiMessageWmsGetMessageProtocolOutput *
-qmi_client_wms_get_message_protocol_finish
-                               (QmiClientWms *self,
-                                GAsyncResult *res,
-                                GError **error);
-

Finishes an async operation started with qmi_client_wms_get_message_protocol().

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiClientWms.

 

res

the GAsyncResult obtained from the GAsyncReadyCallback passed to qmi_client_wms_get_message_protocol().

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

a QmiMessageWmsGetMessageProtocolOutput, or NULL if error -is set. The returned value should be freed with qmi_message_wms_get_message_protocol_output_unref().

-
-

Since: 1.0

-
-
-
-

Types and Values

-
-

QmiMessageWmsGetMessageProtocolOutput

-
typedef struct _QmiMessageWmsGetMessageProtocolOutput QmiMessageWmsGetMessageProtocolOutput;
-

The QmiMessageWmsGetMessageProtocolOutput structure contains private data and should only be accessed -using the provided API.

-

Since: 1.0

-
-
-
- - - \ No newline at end of file diff -Nru libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-WMS-Get-Message-Protocol-request.html libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-WMS-Get-Message-Protocol-request.html --- libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-WMS-Get-Message-Protocol-request.html 1970-01-01 01:00:00.000000000 +0100 +++ libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-WMS-Get-Message-Protocol-request.html 2019-01-08 15:19:02.000000000 +0100 @@ -0,0 +1,371 @@ + + + + +WMS Get Message Protocol request: libqmi-glib Reference Manual + + + + + + + + + + + + + + + + +
+
+
+ + +
+

WMS Get Message Protocol request

+

WMS Get Message Protocol request

+
+ +
+

Types and Values

+ +
+
+

Object Hierarchy

+
    GBoxed
+    ╰── QmiMessageWmsGetMessageProtocolOutput
+
+
+
+

Description

+
+
+

Functions

+
+

qmi_message_wms_get_message_protocol_output_ref ()

+
QmiMessageWmsGetMessageProtocolOutput *
+qmi_message_wms_get_message_protocol_output_ref
+                               (QmiMessageWmsGetMessageProtocolOutput *self);
+

Atomically increments the reference count of self + by one.

+
+

Parameters

+
+++++ + + + + + +

self

a QmiMessageWmsGetMessageProtocolOutput.

 
+
+
+

Returns

+

the new reference to self +.

+
+

Since: 1.0

+
+
+
+

qmi_message_wms_get_message_protocol_output_unref ()

+
void
+qmi_message_wms_get_message_protocol_output_unref
+                               (QmiMessageWmsGetMessageProtocolOutput *self);
+

Atomically decrements the reference count of self + by one. +If the reference count drops to 0, self + is completely disposed.

+
+

Parameters

+
+++++ + + + + + +

self

a QmiMessageWmsGetMessageProtocolOutput.

 
+
+

Since: 1.0

+
+
+
+

qmi_message_wms_get_message_protocol_output_get_result ()

+
gboolean
+qmi_message_wms_get_message_protocol_output_get_result
+                               (QmiMessageWmsGetMessageProtocolOutput *self,
+                                GError **error);
+

Get the result of the QMI operation.

+
+

Parameters

+
+++++ + + + + + + + + + + + + +

self

a QmiMessageWmsGetMessageProtocolOutput.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the QMI operation succeeded, FALSE if error +is set.

+
+

Since: 1.0

+
+
+
+

qmi_message_wms_get_message_protocol_output_get_message_protocol ()

+
gboolean
+qmi_message_wms_get_message_protocol_output_get_message_protocol
+                               (QmiMessageWmsGetMessageProtocolOutput *self,
+                                QmiWmsMessageProtocol *value_message_protocol,
+                                GError **error);
+

Get the 'Message Protocol' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageWmsGetMessageProtocolOutput.

 

value_message_protocol

a placeholder for the output QmiWmsMessageProtocol, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.0

+
+
+
+

qmi_client_wms_get_message_protocol ()

+
void
+qmi_client_wms_get_message_protocol (QmiClientWms *self,
+                                     gpointer unused,
+                                     guint timeout,
+                                     GCancellable *cancellable,
+                                     GAsyncReadyCallback callback,
+                                     gpointer user_data);
+

Asynchronously sends a Get Message Protocol request to the device.

+

When the operation is finished, callback + will be invoked in the thread-default main loop of the thread you are calling this method from.

+

You can then call qmi_client_wms_get_message_protocol_finish() to get the result of the operation.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

self

a QmiClientWms.

 

unused

NULL. This message doesn't have any input bundle.

 

timeout

maximum time to wait for the method to complete, in seconds.

 

cancellable

a GCancellable or NULL.

 

callback

a GAsyncReadyCallback to call when the request is satisfied.

 

user_data

user data to pass to callback +.

 
+
+

Since: 1.0

+
+
+
+

qmi_client_wms_get_message_protocol_finish ()

+
QmiMessageWmsGetMessageProtocolOutput *
+qmi_client_wms_get_message_protocol_finish
+                               (QmiClientWms *self,
+                                GAsyncResult *res,
+                                GError **error);
+

Finishes an async operation started with qmi_client_wms_get_message_protocol().

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiClientWms.

 

res

the GAsyncResult obtained from the GAsyncReadyCallback passed to qmi_client_wms_get_message_protocol().

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

a QmiMessageWmsGetMessageProtocolOutput, or NULL if error +is set. The returned value should be freed with qmi_message_wms_get_message_protocol_output_unref().

+
+

Since: 1.0

+
+
+
+

Types and Values

+
+

QmiMessageWmsGetMessageProtocolOutput

+
typedef struct _QmiMessageWmsGetMessageProtocolOutput QmiMessageWmsGetMessageProtocolOutput;
+

The QmiMessageWmsGetMessageProtocolOutput structure contains private data and should only be accessed +using the provided API.

+

Since: 1.0

+
+
+
+ + + \ No newline at end of file diff -Nru libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-WMS-Get-Routes.html libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-WMS-Get-Routes.html --- libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-WMS-Get-Routes.html 2017-03-22 12:28:28.000000000 +0100 +++ libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-WMS-Get-Routes.html 1970-01-01 01:00:00.000000000 +0100 @@ -1,472 +0,0 @@ - - - - -WMS Get Routes: libqmi-glib Reference Manual - - - - - - - - - - - - - - - - -
-
-
- - -
-

WMS Get Routes

-

WMS Get Routes

-
- -
-

Types and Values

- -
-
-

Object Hierarchy

-
    GBoxed
-    ╰── QmiMessageWmsGetRoutesOutput
-
-
-
-

Description

-
-
-

Functions

-
-

qmi_message_wms_get_routes_output_ref ()

-
QmiMessageWmsGetRoutesOutput *
-qmi_message_wms_get_routes_output_ref (QmiMessageWmsGetRoutesOutput *self);
-

Atomically increments the reference count of self - by one.

-
-

Parameters

-
----- - - - - - -

self

a QmiMessageWmsGetRoutesOutput.

 
-
-
-

Returns

-

the new reference to self -.

-
-

Since: 1.0

-
-
-
-

qmi_message_wms_get_routes_output_unref ()

-
void
-qmi_message_wms_get_routes_output_unref
-                               (QmiMessageWmsGetRoutesOutput *self);
-

Atomically decrements the reference count of self - by one. -If the reference count drops to 0, self - is completely disposed.

-
-

Parameters

-
----- - - - - - -

self

a QmiMessageWmsGetRoutesOutput.

 
-
-

Since: 1.0

-
-
-
-

qmi_message_wms_get_routes_output_get_result ()

-
gboolean
-qmi_message_wms_get_routes_output_get_result
-                               (QmiMessageWmsGetRoutesOutput *self,
-                                GError **error);
-

Get the result of the QMI operation.

-
-

Parameters

-
----- - - - - - - - - - - - - -

self

a QmiMessageWmsGetRoutesOutput.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the QMI operation succeeded, FALSE if error -is set.

-
-

Since: 1.0

-
-
-
-

qmi_message_wms_get_routes_output_get_route_list ()

-
gboolean
-qmi_message_wms_get_routes_output_get_route_list
-                               (QmiMessageWmsGetRoutesOutput *self,
-                                GArray **value_route_list,
-                                GError **error);
-

Get the 'Route List' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessageWmsGetRoutesOutput.

 

value_route_list

a placeholder for the output GArray of QmiMessageWmsGetRoutesOutputRouteListElement elements, or NULL if not required. Do not free it, it is owned by self -.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.0

-
-
-
-

qmi_message_wms_get_routes_output_get_transfer_status_report ()

-
gboolean
-qmi_message_wms_get_routes_output_get_transfer_status_report
-                               (QmiMessageWmsGetRoutesOutput *self,
-                                QmiWmsTransferIndication *value_transfer_status_report,
-                                GError **error);
-

Get the 'Transfer Status Report' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessageWmsGetRoutesOutput.

 

value_transfer_status_report

a placeholder for the output QmiWmsTransferIndication, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.0

-
-
-
-

qmi_client_wms_get_routes ()

-
void
-qmi_client_wms_get_routes (QmiClientWms *self,
-                           gpointer unused,
-                           guint timeout,
-                           GCancellable *cancellable,
-                           GAsyncReadyCallback callback,
-                           gpointer user_data);
-

Asynchronously sends a Get Routes request to the device.

-

When the operation is finished, callback - will be invoked in the thread-default main loop of the thread you are calling this method from.

-

You can then call qmi_client_wms_get_routes_finish() to get the result of the operation.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

self

a QmiClientWms.

 

unused

NULL. This message doesn't have any input bundle.

 

timeout

maximum time to wait for the method to complete, in seconds.

 

cancellable

a GCancellable or NULL.

 

callback

a GAsyncReadyCallback to call when the request is satisfied.

 

user_data

user data to pass to callback -.

 
-
-

Since: 1.0

-
-
-
-

qmi_client_wms_get_routes_finish ()

-
QmiMessageWmsGetRoutesOutput *
-qmi_client_wms_get_routes_finish (QmiClientWms *self,
-                                  GAsyncResult *res,
-                                  GError **error);
-

Finishes an async operation started with qmi_client_wms_get_routes().

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiClientWms.

 

res

the GAsyncResult obtained from the GAsyncReadyCallback passed to qmi_client_wms_get_routes().

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

a QmiMessageWmsGetRoutesOutput, or NULL if error -is set. The returned value should be freed with qmi_message_wms_get_routes_output_unref().

-
-

Since: 1.0

-
-
-
-

Types and Values

-
-

QmiMessageWmsGetRoutesOutput

-
typedef struct _QmiMessageWmsGetRoutesOutput QmiMessageWmsGetRoutesOutput;
-

The QmiMessageWmsGetRoutesOutput structure contains private data and should only be accessed -using the provided API.

-

Since: 1.0

-
-
-
-

QmiMessageWmsGetRoutesOutputRouteListElement

-
typedef struct {
-    QmiWmsMessageType message_type;
-    QmiWmsMessageClass message_class;
-    QmiWmsStorageType storage;
-    QmiWmsReceiptAction receipt_action;
-} QmiMessageWmsGetRoutesOutputRouteListElement;
-
-

A QmiMessageWmsGetRoutesOutputRouteListElement struct.

-
-

Members

-
----- - - - - - - - - - - - - - - - - - - - - - - -

QmiWmsMessageType message_type;

a QmiWmsMessageType.

 

QmiWmsMessageClass message_class;

a QmiWmsMessageClass.

 

QmiWmsStorageType storage;

a QmiWmsStorageType.

 

QmiWmsReceiptAction receipt_action;

a QmiWmsReceiptAction.

 
-
-

Since: 1.0

-
-
-
- - - \ No newline at end of file diff -Nru libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-WMS-Get-Routes-request.html libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-WMS-Get-Routes-request.html --- libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-WMS-Get-Routes-request.html 1970-01-01 01:00:00.000000000 +0100 +++ libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-WMS-Get-Routes-request.html 2019-01-08 15:19:02.000000000 +0100 @@ -0,0 +1,472 @@ + + + + +WMS Get Routes request: libqmi-glib Reference Manual + + + + + + + + + + + + + + + + +
+
+
+ + +
+

WMS Get Routes request

+

WMS Get Routes request

+
+ +
+

Types and Values

+ +
+
+

Object Hierarchy

+
    GBoxed
+    ╰── QmiMessageWmsGetRoutesOutput
+
+
+
+

Description

+
+
+

Functions

+
+

qmi_message_wms_get_routes_output_ref ()

+
QmiMessageWmsGetRoutesOutput *
+qmi_message_wms_get_routes_output_ref (QmiMessageWmsGetRoutesOutput *self);
+

Atomically increments the reference count of self + by one.

+
+

Parameters

+
+++++ + + + + + +

self

a QmiMessageWmsGetRoutesOutput.

 
+
+
+

Returns

+

the new reference to self +.

+
+

Since: 1.0

+
+
+
+

qmi_message_wms_get_routes_output_unref ()

+
void
+qmi_message_wms_get_routes_output_unref
+                               (QmiMessageWmsGetRoutesOutput *self);
+

Atomically decrements the reference count of self + by one. +If the reference count drops to 0, self + is completely disposed.

+
+

Parameters

+
+++++ + + + + + +

self

a QmiMessageWmsGetRoutesOutput.

 
+
+

Since: 1.0

+
+
+
+

qmi_message_wms_get_routes_output_get_result ()

+
gboolean
+qmi_message_wms_get_routes_output_get_result
+                               (QmiMessageWmsGetRoutesOutput *self,
+                                GError **error);
+

Get the result of the QMI operation.

+
+

Parameters

+
+++++ + + + + + + + + + + + + +

self

a QmiMessageWmsGetRoutesOutput.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the QMI operation succeeded, FALSE if error +is set.

+
+

Since: 1.0

+
+
+
+

qmi_message_wms_get_routes_output_get_route_list ()

+
gboolean
+qmi_message_wms_get_routes_output_get_route_list
+                               (QmiMessageWmsGetRoutesOutput *self,
+                                GArray **value_route_list,
+                                GError **error);
+

Get the 'Route List' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageWmsGetRoutesOutput.

 

value_route_list

a placeholder for the output GArray of QmiMessageWmsGetRoutesOutputRouteListElement elements, or NULL if not required. Do not free it, it is owned by self +.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.0

+
+
+
+

qmi_message_wms_get_routes_output_get_transfer_status_report ()

+
gboolean
+qmi_message_wms_get_routes_output_get_transfer_status_report
+                               (QmiMessageWmsGetRoutesOutput *self,
+                                QmiWmsTransferIndication *value_transfer_status_report,
+                                GError **error);
+

Get the 'Transfer Status Report' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageWmsGetRoutesOutput.

 

value_transfer_status_report

a placeholder for the output QmiWmsTransferIndication, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.0

+
+
+
+

qmi_client_wms_get_routes ()

+
void
+qmi_client_wms_get_routes (QmiClientWms *self,
+                           gpointer unused,
+                           guint timeout,
+                           GCancellable *cancellable,
+                           GAsyncReadyCallback callback,
+                           gpointer user_data);
+

Asynchronously sends a Get Routes request to the device.

+

When the operation is finished, callback + will be invoked in the thread-default main loop of the thread you are calling this method from.

+

You can then call qmi_client_wms_get_routes_finish() to get the result of the operation.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

self

a QmiClientWms.

 

unused

NULL. This message doesn't have any input bundle.

 

timeout

maximum time to wait for the method to complete, in seconds.

 

cancellable

a GCancellable or NULL.

 

callback

a GAsyncReadyCallback to call when the request is satisfied.

 

user_data

user data to pass to callback +.

 
+
+

Since: 1.0

+
+
+
+

qmi_client_wms_get_routes_finish ()

+
QmiMessageWmsGetRoutesOutput *
+qmi_client_wms_get_routes_finish (QmiClientWms *self,
+                                  GAsyncResult *res,
+                                  GError **error);
+

Finishes an async operation started with qmi_client_wms_get_routes().

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiClientWms.

 

res

the GAsyncResult obtained from the GAsyncReadyCallback passed to qmi_client_wms_get_routes().

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

a QmiMessageWmsGetRoutesOutput, or NULL if error +is set. The returned value should be freed with qmi_message_wms_get_routes_output_unref().

+
+

Since: 1.0

+
+
+
+

Types and Values

+
+

QmiMessageWmsGetRoutesOutput

+
typedef struct _QmiMessageWmsGetRoutesOutput QmiMessageWmsGetRoutesOutput;
+

The QmiMessageWmsGetRoutesOutput structure contains private data and should only be accessed +using the provided API.

+

Since: 1.0

+
+
+
+

QmiMessageWmsGetRoutesOutputRouteListElement

+
typedef struct {
+    QmiWmsMessageType message_type;
+    QmiWmsMessageClass message_class;
+    QmiWmsStorageType storage;
+    QmiWmsReceiptAction receipt_action;
+} QmiMessageWmsGetRoutesOutputRouteListElement;
+
+

A QmiMessageWmsGetRoutesOutputRouteListElement struct.

+
+

Members

+
+++++ + + + + + + + + + + + + + + + + + + + + + + +

QmiWmsMessageType message_type;

a QmiWmsMessageType.

 

QmiWmsMessageClass message_class;

a QmiWmsMessageClass.

 

QmiWmsStorageType storage;

a QmiWmsStorageType.

 

QmiWmsReceiptAction receipt_action;

a QmiWmsReceiptAction.

 
+
+

Since: 1.0

+
+
+
+ + + \ No newline at end of file diff -Nru libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-WMS-Get-Supported-Messages.html libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-WMS-Get-Supported-Messages.html --- libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-WMS-Get-Supported-Messages.html 2017-03-22 12:28:28.000000000 +0100 +++ libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-WMS-Get-Supported-Messages.html 1970-01-01 01:00:00.000000000 +0100 @@ -1,372 +0,0 @@ - - - - -WMS Get Supported Messages: libqmi-glib Reference Manual - - - - - - - - - - - - - - - - -
-
-
- - -
-

WMS Get Supported Messages

-

WMS Get Supported Messages

-
- -
-

Types and Values

- -
-
-

Object Hierarchy

-
    GBoxed
-    ╰── QmiMessageWmsGetSupportedMessagesOutput
-
-
-
-

Description

-
-
-

Functions

-
-

qmi_message_wms_get_supported_messages_output_ref ()

-
QmiMessageWmsGetSupportedMessagesOutput *
-qmi_message_wms_get_supported_messages_output_ref
-                               (QmiMessageWmsGetSupportedMessagesOutput *self);
-

Atomically increments the reference count of self - by one.

-
-

Parameters

-
----- - - - - - -

self

a QmiMessageWmsGetSupportedMessagesOutput.

 
-
-
-

Returns

-

the new reference to self -.

-
-

Since: 1.14

-
-
-
-

qmi_message_wms_get_supported_messages_output_unref ()

-
void
-qmi_message_wms_get_supported_messages_output_unref
-                               (QmiMessageWmsGetSupportedMessagesOutput *self);
-

Atomically decrements the reference count of self - by one. -If the reference count drops to 0, self - is completely disposed.

-
-

Parameters

-
----- - - - - - -

self

a QmiMessageWmsGetSupportedMessagesOutput.

 
-
-

Since: 1.14

-
-
-
-

qmi_message_wms_get_supported_messages_output_get_result ()

-
gboolean
-qmi_message_wms_get_supported_messages_output_get_result
-                               (QmiMessageWmsGetSupportedMessagesOutput *self,
-                                GError **error);
-

Get the result of the QMI operation.

-
-

Parameters

-
----- - - - - - - - - - - - - -

self

a QmiMessageWmsGetSupportedMessagesOutput.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the QMI operation succeeded, FALSE if error -is set.

-
-

Since: 1.14

-
-
-
-

qmi_message_wms_get_supported_messages_output_get_list ()

-
gboolean
-qmi_message_wms_get_supported_messages_output_get_list
-                               (QmiMessageWmsGetSupportedMessagesOutput *self,
-                                GArray **value_list,
-                                GError **error);
-

Get the 'List' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessageWmsGetSupportedMessagesOutput.

 

value_list

a placeholder for the output GArray of guint8 elements, or NULL if not required. Do not free it, it is owned by self -.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.14

-
-
-
-

qmi_client_wms_get_supported_messages ()

-
void
-qmi_client_wms_get_supported_messages (QmiClientWms *self,
-                                       gpointer unused,
-                                       guint timeout,
-                                       GCancellable *cancellable,
-                                       GAsyncReadyCallback callback,
-                                       gpointer user_data);
-

Asynchronously sends a Get Supported Messages request to the device.

-

When the operation is finished, callback - will be invoked in the thread-default main loop of the thread you are calling this method from.

-

You can then call qmi_client_wms_get_supported_messages_finish() to get the result of the operation.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

self

a QmiClientWms.

 

unused

NULL. This message doesn't have any input bundle.

 

timeout

maximum time to wait for the method to complete, in seconds.

 

cancellable

a GCancellable or NULL.

 

callback

a GAsyncReadyCallback to call when the request is satisfied.

 

user_data

user data to pass to callback -.

 
-
-

Since: 1.14

-
-
-
-

qmi_client_wms_get_supported_messages_finish ()

-
QmiMessageWmsGetSupportedMessagesOutput *
-qmi_client_wms_get_supported_messages_finish
-                               (QmiClientWms *self,
-                                GAsyncResult *res,
-                                GError **error);
-

Finishes an async operation started with qmi_client_wms_get_supported_messages().

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiClientWms.

 

res

the GAsyncResult obtained from the GAsyncReadyCallback passed to qmi_client_wms_get_supported_messages().

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

a QmiMessageWmsGetSupportedMessagesOutput, or NULL if error -is set. The returned value should be freed with qmi_message_wms_get_supported_messages_output_unref().

-
-

Since: 1.14

-
-
-
-

Types and Values

-
-

QmiMessageWmsGetSupportedMessagesOutput

-
typedef struct _QmiMessageWmsGetSupportedMessagesOutput QmiMessageWmsGetSupportedMessagesOutput;
-

The QmiMessageWmsGetSupportedMessagesOutput structure contains private data and should only be accessed -using the provided API.

-

Since: 1.14

-
-
-
- - - \ No newline at end of file diff -Nru libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-WMS-Get-Supported-Messages-request.html libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-WMS-Get-Supported-Messages-request.html --- libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-WMS-Get-Supported-Messages-request.html 1970-01-01 01:00:00.000000000 +0100 +++ libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-WMS-Get-Supported-Messages-request.html 2019-01-08 15:19:02.000000000 +0100 @@ -0,0 +1,372 @@ + + + + +WMS Get Supported Messages request: libqmi-glib Reference Manual + + + + + + + + + + + + + + + + +
+
+
+ + +
+

WMS Get Supported Messages request

+

WMS Get Supported Messages request

+
+ +
+

Types and Values

+ +
+
+

Object Hierarchy

+
    GBoxed
+    ╰── QmiMessageWmsGetSupportedMessagesOutput
+
+
+
+

Description

+
+
+

Functions

+
+

qmi_message_wms_get_supported_messages_output_ref ()

+
QmiMessageWmsGetSupportedMessagesOutput *
+qmi_message_wms_get_supported_messages_output_ref
+                               (QmiMessageWmsGetSupportedMessagesOutput *self);
+

Atomically increments the reference count of self + by one.

+
+

Parameters

+
+++++ + + + + + +

self

a QmiMessageWmsGetSupportedMessagesOutput.

 
+
+
+

Returns

+

the new reference to self +.

+
+

Since: 1.14

+
+
+
+

qmi_message_wms_get_supported_messages_output_unref ()

+
void
+qmi_message_wms_get_supported_messages_output_unref
+                               (QmiMessageWmsGetSupportedMessagesOutput *self);
+

Atomically decrements the reference count of self + by one. +If the reference count drops to 0, self + is completely disposed.

+
+

Parameters

+
+++++ + + + + + +

self

a QmiMessageWmsGetSupportedMessagesOutput.

 
+
+

Since: 1.14

+
+
+
+

qmi_message_wms_get_supported_messages_output_get_result ()

+
gboolean
+qmi_message_wms_get_supported_messages_output_get_result
+                               (QmiMessageWmsGetSupportedMessagesOutput *self,
+                                GError **error);
+

Get the result of the QMI operation.

+
+

Parameters

+
+++++ + + + + + + + + + + + + +

self

a QmiMessageWmsGetSupportedMessagesOutput.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the QMI operation succeeded, FALSE if error +is set.

+
+

Since: 1.14

+
+
+
+

qmi_message_wms_get_supported_messages_output_get_list ()

+
gboolean
+qmi_message_wms_get_supported_messages_output_get_list
+                               (QmiMessageWmsGetSupportedMessagesOutput *self,
+                                GArray **value_list,
+                                GError **error);
+

Get the 'List' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageWmsGetSupportedMessagesOutput.

 

value_list

a placeholder for the output GArray of guint8 elements, or NULL if not required. Do not free it, it is owned by self +.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.14

+
+
+
+

qmi_client_wms_get_supported_messages ()

+
void
+qmi_client_wms_get_supported_messages (QmiClientWms *self,
+                                       gpointer unused,
+                                       guint timeout,
+                                       GCancellable *cancellable,
+                                       GAsyncReadyCallback callback,
+                                       gpointer user_data);
+

Asynchronously sends a Get Supported Messages request to the device.

+

When the operation is finished, callback + will be invoked in the thread-default main loop of the thread you are calling this method from.

+

You can then call qmi_client_wms_get_supported_messages_finish() to get the result of the operation.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

self

a QmiClientWms.

 

unused

NULL. This message doesn't have any input bundle.

 

timeout

maximum time to wait for the method to complete, in seconds.

 

cancellable

a GCancellable or NULL.

 

callback

a GAsyncReadyCallback to call when the request is satisfied.

 

user_data

user data to pass to callback +.

 
+
+

Since: 1.14

+
+
+
+

qmi_client_wms_get_supported_messages_finish ()

+
QmiMessageWmsGetSupportedMessagesOutput *
+qmi_client_wms_get_supported_messages_finish
+                               (QmiClientWms *self,
+                                GAsyncResult *res,
+                                GError **error);
+

Finishes an async operation started with qmi_client_wms_get_supported_messages().

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiClientWms.

 

res

the GAsyncResult obtained from the GAsyncReadyCallback passed to qmi_client_wms_get_supported_messages().

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

a QmiMessageWmsGetSupportedMessagesOutput, or NULL if error +is set. The returned value should be freed with qmi_message_wms_get_supported_messages_output_unref().

+
+

Since: 1.14

+
+
+
+

Types and Values

+
+

QmiMessageWmsGetSupportedMessagesOutput

+
typedef struct _QmiMessageWmsGetSupportedMessagesOutput QmiMessageWmsGetSupportedMessagesOutput;
+

The QmiMessageWmsGetSupportedMessagesOutput structure contains private data and should only be accessed +using the provided API.

+

Since: 1.14

+
+
+
+ + + \ No newline at end of file diff -Nru libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-WMS-List-Messages.html libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-WMS-List-Messages.html --- libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-WMS-List-Messages.html 2017-03-22 12:28:29.000000000 +0100 +++ libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-WMS-List-Messages.html 1970-01-01 01:00:00.000000000 +0100 @@ -1,823 +0,0 @@ - - - - -WMS List Messages: libqmi-glib Reference Manual - - - - - - - - - - - - - - - - -
-
-
- - -
-

WMS List Messages

-

WMS List Messages

-
- - -
-

Object Hierarchy

-
    GBoxed
-    ├── QmiMessageWmsListMessagesInput
-    ╰── QmiMessageWmsListMessagesOutput
-
-
-
-

Description

-
-
-

Functions

-
-

qmi_message_wms_list_messages_input_new ()

-
QmiMessageWmsListMessagesInput *
-qmi_message_wms_list_messages_input_new
-                               (void);
-

Allocates a new QmiMessageWmsListMessagesInput.

-
-

Returns

-

the newly created QmiMessageWmsListMessagesInput. The returned value should be freed with qmi_message_wms_list_messages_input_unref().

-
-

Since: 1.0

-
-
-
-

qmi_message_wms_list_messages_input_ref ()

-
QmiMessageWmsListMessagesInput *
-qmi_message_wms_list_messages_input_ref
-                               (QmiMessageWmsListMessagesInput *self);
-

Atomically increments the reference count of self - by one.

-
-

Parameters

-
----- - - - - - -

self

a QmiMessageWmsListMessagesInput.

 
-
-
-

Returns

-

the new reference to self -.

-
-

Since: 1.0

-
-
-
-

qmi_message_wms_list_messages_input_unref ()

-
void
-qmi_message_wms_list_messages_input_unref
-                               (QmiMessageWmsListMessagesInput *self);
-

Atomically decrements the reference count of self - by one. -If the reference count drops to 0, self - is completely disposed.

-
-

Parameters

-
----- - - - - - -

self

a QmiMessageWmsListMessagesInput.

 
-
-

Since: 1.0

-
-
-
-

qmi_message_wms_list_messages_input_get_message_mode ()

-
gboolean
-qmi_message_wms_list_messages_input_get_message_mode
-                               (QmiMessageWmsListMessagesInput *self,
-                                QmiWmsMessageMode *value_message_mode,
-                                GError **error);
-

Get the 'Message Mode' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessageWmsListMessagesInput.

 

value_message_mode

a placeholder for the output QmiWmsMessageMode, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.0

-
-
-
-

qmi_message_wms_list_messages_input_set_message_mode ()

-
gboolean
-qmi_message_wms_list_messages_input_set_message_mode
-                               (QmiMessageWmsListMessagesInput *self,
-                                QmiWmsMessageMode value_message_mode,
-                                GError **error);
-

Set the 'Message Mode' field in the message.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessageWmsListMessagesInput.

 

value_message_mode

a QmiWmsMessageMode.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if value -was successfully set, FALSE otherwise.

-
-

Since: 1.0

-
-
-
-

qmi_message_wms_list_messages_input_get_message_tag ()

-
gboolean
-qmi_message_wms_list_messages_input_get_message_tag
-                               (QmiMessageWmsListMessagesInput *self,
-                                QmiWmsMessageTagType *value_message_tag,
-                                GError **error);
-

Get the 'Message Tag' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessageWmsListMessagesInput.

 

value_message_tag

a placeholder for the output QmiWmsMessageTagType, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.0

-
-
-
-

qmi_message_wms_list_messages_input_set_message_tag ()

-
gboolean
-qmi_message_wms_list_messages_input_set_message_tag
-                               (QmiMessageWmsListMessagesInput *self,
-                                QmiWmsMessageTagType value_message_tag,
-                                GError **error);
-

Set the 'Message Tag' field in the message.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessageWmsListMessagesInput.

 

value_message_tag

a QmiWmsMessageTagType.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if value -was successfully set, FALSE otherwise.

-
-

Since: 1.0

-
-
-
-

qmi_message_wms_list_messages_input_get_storage_type ()

-
gboolean
-qmi_message_wms_list_messages_input_get_storage_type
-                               (QmiMessageWmsListMessagesInput *self,
-                                QmiWmsStorageType *value_storage_type,
-                                GError **error);
-

Get the 'Storage Type' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessageWmsListMessagesInput.

 

value_storage_type

a placeholder for the output QmiWmsStorageType, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.0

-
-
-
-

qmi_message_wms_list_messages_input_set_storage_type ()

-
gboolean
-qmi_message_wms_list_messages_input_set_storage_type
-                               (QmiMessageWmsListMessagesInput *self,
-                                QmiWmsStorageType value_storage_type,
-                                GError **error);
-

Set the 'Storage Type' field in the message.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessageWmsListMessagesInput.

 

value_storage_type

a QmiWmsStorageType.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if value -was successfully set, FALSE otherwise.

-
-

Since: 1.0

-
-
-
-

qmi_message_wms_list_messages_output_ref ()

-
QmiMessageWmsListMessagesOutput *
-qmi_message_wms_list_messages_output_ref
-                               (QmiMessageWmsListMessagesOutput *self);
-

Atomically increments the reference count of self - by one.

-
-

Parameters

-
----- - - - - - -

self

a QmiMessageWmsListMessagesOutput.

 
-
-
-

Returns

-

the new reference to self -.

-
-

Since: 1.0

-
-
-
-

qmi_message_wms_list_messages_output_unref ()

-
void
-qmi_message_wms_list_messages_output_unref
-                               (QmiMessageWmsListMessagesOutput *self);
-

Atomically decrements the reference count of self - by one. -If the reference count drops to 0, self - is completely disposed.

-
-

Parameters

-
----- - - - - - -

self

a QmiMessageWmsListMessagesOutput.

 
-
-

Since: 1.0

-
-
-
-

qmi_message_wms_list_messages_output_get_result ()

-
gboolean
-qmi_message_wms_list_messages_output_get_result
-                               (QmiMessageWmsListMessagesOutput *self,
-                                GError **error);
-

Get the result of the QMI operation.

-
-

Parameters

-
----- - - - - - - - - - - - - -

self

a QmiMessageWmsListMessagesOutput.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the QMI operation succeeded, FALSE if error -is set.

-
-

Since: 1.0

-
-
-
-

qmi_message_wms_list_messages_output_get_message_list ()

-
gboolean
-qmi_message_wms_list_messages_output_get_message_list
-                               (QmiMessageWmsListMessagesOutput *self,
-                                GArray **value_message_list,
-                                GError **error);
-

Get the 'Message List' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessageWmsListMessagesOutput.

 

value_message_list

a placeholder for the output GArray of QmiMessageWmsListMessagesOutputMessageListElement elements, or NULL if not required. Do not free it, it is owned by self -.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.0

-
-
-
-

qmi_client_wms_list_messages ()

-
void
-qmi_client_wms_list_messages (QmiClientWms *self,
-                              QmiMessageWmsListMessagesInput *input,
-                              guint timeout,
-                              GCancellable *cancellable,
-                              GAsyncReadyCallback callback,
-                              gpointer user_data);
-

Asynchronously sends a List Messages request to the device.

-

When the operation is finished, callback - will be invoked in the thread-default main loop of the thread you are calling this method from.

-

You can then call qmi_client_wms_list_messages_finish() to get the result of the operation.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

self

a QmiClientWms.

 

input

a QmiMessageWmsListMessagesInput.

 

timeout

maximum time to wait for the method to complete, in seconds.

 

cancellable

a GCancellable or NULL.

 

callback

a GAsyncReadyCallback to call when the request is satisfied.

 

user_data

user data to pass to callback -.

 
-
-

Since: 1.0

-
-
-
-

qmi_client_wms_list_messages_finish ()

-
QmiMessageWmsListMessagesOutput *
-qmi_client_wms_list_messages_finish (QmiClientWms *self,
-                                     GAsyncResult *res,
-                                     GError **error);
-

Finishes an async operation started with qmi_client_wms_list_messages().

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiClientWms.

 

res

the GAsyncResult obtained from the GAsyncReadyCallback passed to qmi_client_wms_list_messages().

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

a QmiMessageWmsListMessagesOutput, or NULL if error -is set. The returned value should be freed with qmi_message_wms_list_messages_output_unref().

-
-

Since: 1.0

-
-
-
-

Types and Values

-
-

QmiMessageWmsListMessagesInput

-
typedef struct _QmiMessageWmsListMessagesInput QmiMessageWmsListMessagesInput;
-

The QmiMessageWmsListMessagesInput structure contains private data and should only be accessed -using the provided API.

-

Since: 1.0

-
-
-
-

QmiMessageWmsListMessagesOutput

-
typedef struct _QmiMessageWmsListMessagesOutput QmiMessageWmsListMessagesOutput;
-

The QmiMessageWmsListMessagesOutput structure contains private data and should only be accessed -using the provided API.

-

Since: 1.0

-
-
-
-

QmiMessageWmsListMessagesOutputMessageListElement

-
typedef struct {
-    guint32 memory_index;
-    QmiWmsMessageTagType message_tag;
-} QmiMessageWmsListMessagesOutputMessageListElement;
-
-

A QmiMessageWmsListMessagesOutputMessageListElement struct.

-
-

Members

-
----- - - - - - - - - - - - - -

guint32 memory_index;

a guint32.

 

QmiWmsMessageTagType message_tag;

a QmiWmsMessageTagType.

 
-
-

Since: 1.0

-
-
-
- - - \ No newline at end of file diff -Nru libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-WMS-List-Messages-request.html libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-WMS-List-Messages-request.html --- libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-WMS-List-Messages-request.html 1970-01-01 01:00:00.000000000 +0100 +++ libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-WMS-List-Messages-request.html 2019-01-08 15:19:02.000000000 +0100 @@ -0,0 +1,823 @@ + + + + +WMS List Messages request: libqmi-glib Reference Manual + + + + + + + + + + + + + + + + +
+
+
+ + +
+

WMS List Messages request

+

WMS List Messages request

+
+ + +
+

Object Hierarchy

+
    GBoxed
+    ├── QmiMessageWmsListMessagesInput
+    ╰── QmiMessageWmsListMessagesOutput
+
+
+
+

Description

+
+
+

Functions

+
+

qmi_message_wms_list_messages_input_new ()

+
QmiMessageWmsListMessagesInput *
+qmi_message_wms_list_messages_input_new
+                               (void);
+

Allocates a new QmiMessageWmsListMessagesInput.

+
+

Returns

+

the newly created QmiMessageWmsListMessagesInput. The returned value should be freed with qmi_message_wms_list_messages_input_unref().

+
+

Since: 1.0

+
+
+
+

qmi_message_wms_list_messages_input_ref ()

+
QmiMessageWmsListMessagesInput *
+qmi_message_wms_list_messages_input_ref
+                               (QmiMessageWmsListMessagesInput *self);
+

Atomically increments the reference count of self + by one.

+
+

Parameters

+
+++++ + + + + + +

self

a QmiMessageWmsListMessagesInput.

 
+
+
+

Returns

+

the new reference to self +.

+
+

Since: 1.0

+
+
+
+

qmi_message_wms_list_messages_input_unref ()

+
void
+qmi_message_wms_list_messages_input_unref
+                               (QmiMessageWmsListMessagesInput *self);
+

Atomically decrements the reference count of self + by one. +If the reference count drops to 0, self + is completely disposed.

+
+

Parameters

+
+++++ + + + + + +

self

a QmiMessageWmsListMessagesInput.

 
+
+

Since: 1.0

+
+
+
+

qmi_message_wms_list_messages_input_get_message_mode ()

+
gboolean
+qmi_message_wms_list_messages_input_get_message_mode
+                               (QmiMessageWmsListMessagesInput *self,
+                                QmiWmsMessageMode *value_message_mode,
+                                GError **error);
+

Get the 'Message Mode' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageWmsListMessagesInput.

 

value_message_mode

a placeholder for the output QmiWmsMessageMode, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.0

+
+
+
+

qmi_message_wms_list_messages_input_set_message_mode ()

+
gboolean
+qmi_message_wms_list_messages_input_set_message_mode
+                               (QmiMessageWmsListMessagesInput *self,
+                                QmiWmsMessageMode value_message_mode,
+                                GError **error);
+

Set the 'Message Mode' field in the message.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageWmsListMessagesInput.

 

value_message_mode

a QmiWmsMessageMode.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if value +was successfully set, FALSE otherwise.

+
+

Since: 1.0

+
+
+
+

qmi_message_wms_list_messages_input_get_message_tag ()

+
gboolean
+qmi_message_wms_list_messages_input_get_message_tag
+                               (QmiMessageWmsListMessagesInput *self,
+                                QmiWmsMessageTagType *value_message_tag,
+                                GError **error);
+

Get the 'Message Tag' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageWmsListMessagesInput.

 

value_message_tag

a placeholder for the output QmiWmsMessageTagType, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.0

+
+
+
+

qmi_message_wms_list_messages_input_set_message_tag ()

+
gboolean
+qmi_message_wms_list_messages_input_set_message_tag
+                               (QmiMessageWmsListMessagesInput *self,
+                                QmiWmsMessageTagType value_message_tag,
+                                GError **error);
+

Set the 'Message Tag' field in the message.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageWmsListMessagesInput.

 

value_message_tag

a QmiWmsMessageTagType.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if value +was successfully set, FALSE otherwise.

+
+

Since: 1.0

+
+
+
+

qmi_message_wms_list_messages_input_get_storage_type ()

+
gboolean
+qmi_message_wms_list_messages_input_get_storage_type
+                               (QmiMessageWmsListMessagesInput *self,
+                                QmiWmsStorageType *value_storage_type,
+                                GError **error);
+

Get the 'Storage Type' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageWmsListMessagesInput.

 

value_storage_type

a placeholder for the output QmiWmsStorageType, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.0

+
+
+
+

qmi_message_wms_list_messages_input_set_storage_type ()

+
gboolean
+qmi_message_wms_list_messages_input_set_storage_type
+                               (QmiMessageWmsListMessagesInput *self,
+                                QmiWmsStorageType value_storage_type,
+                                GError **error);
+

Set the 'Storage Type' field in the message.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageWmsListMessagesInput.

 

value_storage_type

a QmiWmsStorageType.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if value +was successfully set, FALSE otherwise.

+
+

Since: 1.0

+
+
+
+

qmi_message_wms_list_messages_output_ref ()

+
QmiMessageWmsListMessagesOutput *
+qmi_message_wms_list_messages_output_ref
+                               (QmiMessageWmsListMessagesOutput *self);
+

Atomically increments the reference count of self + by one.

+
+

Parameters

+
+++++ + + + + + +

self

a QmiMessageWmsListMessagesOutput.

 
+
+
+

Returns

+

the new reference to self +.

+
+

Since: 1.0

+
+
+
+

qmi_message_wms_list_messages_output_unref ()

+
void
+qmi_message_wms_list_messages_output_unref
+                               (QmiMessageWmsListMessagesOutput *self);
+

Atomically decrements the reference count of self + by one. +If the reference count drops to 0, self + is completely disposed.

+
+

Parameters

+
+++++ + + + + + +

self

a QmiMessageWmsListMessagesOutput.

 
+
+

Since: 1.0

+
+
+
+

qmi_message_wms_list_messages_output_get_result ()

+
gboolean
+qmi_message_wms_list_messages_output_get_result
+                               (QmiMessageWmsListMessagesOutput *self,
+                                GError **error);
+

Get the result of the QMI operation.

+
+

Parameters

+
+++++ + + + + + + + + + + + + +

self

a QmiMessageWmsListMessagesOutput.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the QMI operation succeeded, FALSE if error +is set.

+
+

Since: 1.0

+
+
+
+

qmi_message_wms_list_messages_output_get_message_list ()

+
gboolean
+qmi_message_wms_list_messages_output_get_message_list
+                               (QmiMessageWmsListMessagesOutput *self,
+                                GArray **value_message_list,
+                                GError **error);
+

Get the 'Message List' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageWmsListMessagesOutput.

 

value_message_list

a placeholder for the output GArray of QmiMessageWmsListMessagesOutputMessageListElement elements, or NULL if not required. Do not free it, it is owned by self +.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.0

+
+
+
+

qmi_client_wms_list_messages ()

+
void
+qmi_client_wms_list_messages (QmiClientWms *self,
+                              QmiMessageWmsListMessagesInput *input,
+                              guint timeout,
+                              GCancellable *cancellable,
+                              GAsyncReadyCallback callback,
+                              gpointer user_data);
+

Asynchronously sends a List Messages request to the device.

+

When the operation is finished, callback + will be invoked in the thread-default main loop of the thread you are calling this method from.

+

You can then call qmi_client_wms_list_messages_finish() to get the result of the operation.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

self

a QmiClientWms.

 

input

a QmiMessageWmsListMessagesInput.

 

timeout

maximum time to wait for the method to complete, in seconds.

 

cancellable

a GCancellable or NULL.

 

callback

a GAsyncReadyCallback to call when the request is satisfied.

 

user_data

user data to pass to callback +.

 
+
+

Since: 1.0

+
+
+
+

qmi_client_wms_list_messages_finish ()

+
QmiMessageWmsListMessagesOutput *
+qmi_client_wms_list_messages_finish (QmiClientWms *self,
+                                     GAsyncResult *res,
+                                     GError **error);
+

Finishes an async operation started with qmi_client_wms_list_messages().

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiClientWms.

 

res

the GAsyncResult obtained from the GAsyncReadyCallback passed to qmi_client_wms_list_messages().

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

a QmiMessageWmsListMessagesOutput, or NULL if error +is set. The returned value should be freed with qmi_message_wms_list_messages_output_unref().

+
+

Since: 1.0

+
+
+
+

Types and Values

+
+

QmiMessageWmsListMessagesInput

+
typedef struct _QmiMessageWmsListMessagesInput QmiMessageWmsListMessagesInput;
+

The QmiMessageWmsListMessagesInput structure contains private data and should only be accessed +using the provided API.

+

Since: 1.0

+
+
+
+

QmiMessageWmsListMessagesOutput

+
typedef struct _QmiMessageWmsListMessagesOutput QmiMessageWmsListMessagesOutput;
+

The QmiMessageWmsListMessagesOutput structure contains private data and should only be accessed +using the provided API.

+

Since: 1.0

+
+
+
+

QmiMessageWmsListMessagesOutputMessageListElement

+
typedef struct {
+    guint32 memory_index;
+    QmiWmsMessageTagType message_tag;
+} QmiMessageWmsListMessagesOutputMessageListElement;
+
+

A QmiMessageWmsListMessagesOutputMessageListElement struct.

+
+

Members

+
+++++ + + + + + + + + + + + + +

guint32 memory_index;

a guint32.

 

QmiWmsMessageTagType message_tag;

a QmiWmsMessageTagType.

 
+
+

Since: 1.0

+
+
+
+ + + \ No newline at end of file diff -Nru libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-WMS-Modify-Tag.html libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-WMS-Modify-Tag.html --- libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-WMS-Modify-Tag.html 2017-03-22 12:28:28.000000000 +0100 +++ libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-WMS-Modify-Tag.html 1970-01-01 01:00:00.000000000 +0100 @@ -1,653 +0,0 @@ - - - - -WMS Modify Tag: libqmi-glib Reference Manual - - - - - - - - - - - - - - - - -
-
-
- - -
-

WMS Modify Tag

-

WMS Modify Tag

-
- -
-

Types and Values

- -
-
-

Object Hierarchy

-
    GBoxed
-    ├── QmiMessageWmsModifyTagInput
-    ╰── QmiMessageWmsModifyTagOutput
-
-
-
-

Description

-
-
-

Functions

-
-

qmi_message_wms_modify_tag_input_new ()

-
QmiMessageWmsModifyTagInput *
-qmi_message_wms_modify_tag_input_new (void);
-

Allocates a new QmiMessageWmsModifyTagInput.

-
-

Returns

-

the newly created QmiMessageWmsModifyTagInput. The returned value should be freed with qmi_message_wms_modify_tag_input_unref().

-
-

Since: 1.0

-
-
-
-

qmi_message_wms_modify_tag_input_ref ()

-
QmiMessageWmsModifyTagInput *
-qmi_message_wms_modify_tag_input_ref (QmiMessageWmsModifyTagInput *self);
-

Atomically increments the reference count of self - by one.

-
-

Parameters

-
----- - - - - - -

self

a QmiMessageWmsModifyTagInput.

 
-
-
-

Returns

-

the new reference to self -.

-
-

Since: 1.0

-
-
-
-

qmi_message_wms_modify_tag_input_unref ()

-
void
-qmi_message_wms_modify_tag_input_unref
-                               (QmiMessageWmsModifyTagInput *self);
-

Atomically decrements the reference count of self - by one. -If the reference count drops to 0, self - is completely disposed.

-
-

Parameters

-
----- - - - - - -

self

a QmiMessageWmsModifyTagInput.

 
-
-

Since: 1.0

-
-
-
-

qmi_message_wms_modify_tag_input_get_message_mode ()

-
gboolean
-qmi_message_wms_modify_tag_input_get_message_mode
-                               (QmiMessageWmsModifyTagInput *self,
-                                QmiWmsMessageMode *value_message_mode,
-                                GError **error);
-

Get the 'Message Mode' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessageWmsModifyTagInput.

 

value_message_mode

a placeholder for the output QmiWmsMessageMode, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.0

-
-
-
-

qmi_message_wms_modify_tag_input_set_message_mode ()

-
gboolean
-qmi_message_wms_modify_tag_input_set_message_mode
-                               (QmiMessageWmsModifyTagInput *self,
-                                QmiWmsMessageMode value_message_mode,
-                                GError **error);
-

Set the 'Message Mode' field in the message.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessageWmsModifyTagInput.

 

value_message_mode

a QmiWmsMessageMode.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if value -was successfully set, FALSE otherwise.

-
-

Since: 1.0

-
-
-
-

qmi_message_wms_modify_tag_input_get_message_tag ()

-
gboolean
-qmi_message_wms_modify_tag_input_get_message_tag
-                               (QmiMessageWmsModifyTagInput *self,
-                                QmiWmsStorageType *value_message_tag_storage_type,
-                                guint32 *value_message_tag_memory_index,
-                                QmiWmsMessageTagType *value_message_tag_message_tag,
-                                GError **error);
-

Get the 'Message Tag' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - - - - - - - - - - - -

self

a QmiMessageWmsModifyTagInput.

 

value_message_tag_storage_type

a placeholder for the output QmiWmsStorageType, or NULL if not required.

 

value_message_tag_memory_index

a placeholder for the output guint32, or NULL if not required.

 

value_message_tag_message_tag

a placeholder for the output QmiWmsMessageTagType, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.0

-
-
-
-

qmi_message_wms_modify_tag_input_set_message_tag ()

-
gboolean
-qmi_message_wms_modify_tag_input_set_message_tag
-                               (QmiMessageWmsModifyTagInput *self,
-                                QmiWmsStorageType value_message_tag_storage_type,
-                                guint32 value_message_tag_memory_index,
-                                QmiWmsMessageTagType value_message_tag_message_tag,
-                                GError **error);
-

Set the 'Message Tag' field in the message.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - - - - - - - - - - - -

self

a QmiMessageWmsModifyTagInput.

 

value_message_tag_storage_type

a QmiWmsStorageType.

 

value_message_tag_memory_index

a guint32.

 

value_message_tag_message_tag

a QmiWmsMessageTagType.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if value -was successfully set, FALSE otherwise.

-
-

Since: 1.0

-
-
-
-

qmi_message_wms_modify_tag_output_ref ()

-
QmiMessageWmsModifyTagOutput *
-qmi_message_wms_modify_tag_output_ref (QmiMessageWmsModifyTagOutput *self);
-

Atomically increments the reference count of self - by one.

-
-

Parameters

-
----- - - - - - -

self

a QmiMessageWmsModifyTagOutput.

 
-
-
-

Returns

-

the new reference to self -.

-
-

Since: 1.0

-
-
-
-

qmi_message_wms_modify_tag_output_unref ()

-
void
-qmi_message_wms_modify_tag_output_unref
-                               (QmiMessageWmsModifyTagOutput *self);
-

Atomically decrements the reference count of self - by one. -If the reference count drops to 0, self - is completely disposed.

-
-

Parameters

-
----- - - - - - -

self

a QmiMessageWmsModifyTagOutput.

 
-
-

Since: 1.0

-
-
-
-

qmi_message_wms_modify_tag_output_get_result ()

-
gboolean
-qmi_message_wms_modify_tag_output_get_result
-                               (QmiMessageWmsModifyTagOutput *self,
-                                GError **error);
-

Get the result of the QMI operation.

-
-

Parameters

-
----- - - - - - - - - - - - - -

self

a QmiMessageWmsModifyTagOutput.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the QMI operation succeeded, FALSE if error -is set.

-
-

Since: 1.0

-
-
-
-

qmi_client_wms_modify_tag ()

-
void
-qmi_client_wms_modify_tag (QmiClientWms *self,
-                           QmiMessageWmsModifyTagInput *input,
-                           guint timeout,
-                           GCancellable *cancellable,
-                           GAsyncReadyCallback callback,
-                           gpointer user_data);
-

Asynchronously sends a Modify Tag request to the device.

-

When the operation is finished, callback - will be invoked in the thread-default main loop of the thread you are calling this method from.

-

You can then call qmi_client_wms_modify_tag_finish() to get the result of the operation.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

self

a QmiClientWms.

 

input

a QmiMessageWmsModifyTagInput.

 

timeout

maximum time to wait for the method to complete, in seconds.

 

cancellable

a GCancellable or NULL.

 

callback

a GAsyncReadyCallback to call when the request is satisfied.

 

user_data

user data to pass to callback -.

 
-
-

Since: 1.0

-
-
-
-

qmi_client_wms_modify_tag_finish ()

-
QmiMessageWmsModifyTagOutput *
-qmi_client_wms_modify_tag_finish (QmiClientWms *self,
-                                  GAsyncResult *res,
-                                  GError **error);
-

Finishes an async operation started with qmi_client_wms_modify_tag().

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiClientWms.

 

res

the GAsyncResult obtained from the GAsyncReadyCallback passed to qmi_client_wms_modify_tag().

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

a QmiMessageWmsModifyTagOutput, or NULL if error -is set. The returned value should be freed with qmi_message_wms_modify_tag_output_unref().

-
-

Since: 1.0

-
-
-
-

Types and Values

-
-

QmiMessageWmsModifyTagInput

-
typedef struct _QmiMessageWmsModifyTagInput QmiMessageWmsModifyTagInput;
-

The QmiMessageWmsModifyTagInput structure contains private data and should only be accessed -using the provided API.

-

Since: 1.0

-
-
-
-

QmiMessageWmsModifyTagOutput

-
typedef struct _QmiMessageWmsModifyTagOutput QmiMessageWmsModifyTagOutput;
-

The QmiMessageWmsModifyTagOutput structure contains private data and should only be accessed -using the provided API.

-

Since: 1.0

-
-
-
- - - \ No newline at end of file diff -Nru libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-WMS-Modify-Tag-request.html libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-WMS-Modify-Tag-request.html --- libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-WMS-Modify-Tag-request.html 1970-01-01 01:00:00.000000000 +0100 +++ libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-WMS-Modify-Tag-request.html 2019-01-08 15:19:02.000000000 +0100 @@ -0,0 +1,653 @@ + + + + +WMS Modify Tag request: libqmi-glib Reference Manual + + + + + + + + + + + + + + + + +
+
+
+ + +
+

WMS Modify Tag request

+

WMS Modify Tag request

+
+ +
+

Types and Values

+ +
+
+

Object Hierarchy

+
    GBoxed
+    ├── QmiMessageWmsModifyTagInput
+    ╰── QmiMessageWmsModifyTagOutput
+
+
+
+

Description

+
+
+

Functions

+
+

qmi_message_wms_modify_tag_input_new ()

+
QmiMessageWmsModifyTagInput *
+qmi_message_wms_modify_tag_input_new (void);
+

Allocates a new QmiMessageWmsModifyTagInput.

+
+

Returns

+

the newly created QmiMessageWmsModifyTagInput. The returned value should be freed with qmi_message_wms_modify_tag_input_unref().

+
+

Since: 1.0

+
+
+
+

qmi_message_wms_modify_tag_input_ref ()

+
QmiMessageWmsModifyTagInput *
+qmi_message_wms_modify_tag_input_ref (QmiMessageWmsModifyTagInput *self);
+

Atomically increments the reference count of self + by one.

+
+

Parameters

+
+++++ + + + + + +

self

a QmiMessageWmsModifyTagInput.

 
+
+
+

Returns

+

the new reference to self +.

+
+

Since: 1.0

+
+
+
+

qmi_message_wms_modify_tag_input_unref ()

+
void
+qmi_message_wms_modify_tag_input_unref
+                               (QmiMessageWmsModifyTagInput *self);
+

Atomically decrements the reference count of self + by one. +If the reference count drops to 0, self + is completely disposed.

+
+

Parameters

+
+++++ + + + + + +

self

a QmiMessageWmsModifyTagInput.

 
+
+

Since: 1.0

+
+
+
+

qmi_message_wms_modify_tag_input_get_message_mode ()

+
gboolean
+qmi_message_wms_modify_tag_input_get_message_mode
+                               (QmiMessageWmsModifyTagInput *self,
+                                QmiWmsMessageMode *value_message_mode,
+                                GError **error);
+

Get the 'Message Mode' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageWmsModifyTagInput.

 

value_message_mode

a placeholder for the output QmiWmsMessageMode, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.0

+
+
+
+

qmi_message_wms_modify_tag_input_set_message_mode ()

+
gboolean
+qmi_message_wms_modify_tag_input_set_message_mode
+                               (QmiMessageWmsModifyTagInput *self,
+                                QmiWmsMessageMode value_message_mode,
+                                GError **error);
+

Set the 'Message Mode' field in the message.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageWmsModifyTagInput.

 

value_message_mode

a QmiWmsMessageMode.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if value +was successfully set, FALSE otherwise.

+
+

Since: 1.0

+
+
+
+

qmi_message_wms_modify_tag_input_get_message_tag ()

+
gboolean
+qmi_message_wms_modify_tag_input_get_message_tag
+                               (QmiMessageWmsModifyTagInput *self,
+                                QmiWmsStorageType *value_message_tag_storage_type,
+                                guint32 *value_message_tag_memory_index,
+                                QmiWmsMessageTagType *value_message_tag_message_tag,
+                                GError **error);
+

Get the 'Message Tag' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + + + + + + + + + + + +

self

a QmiMessageWmsModifyTagInput.

 

value_message_tag_storage_type

a placeholder for the output QmiWmsStorageType, or NULL if not required.

 

value_message_tag_memory_index

a placeholder for the output guint32, or NULL if not required.

 

value_message_tag_message_tag

a placeholder for the output QmiWmsMessageTagType, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.0

+
+
+
+

qmi_message_wms_modify_tag_input_set_message_tag ()

+
gboolean
+qmi_message_wms_modify_tag_input_set_message_tag
+                               (QmiMessageWmsModifyTagInput *self,
+                                QmiWmsStorageType value_message_tag_storage_type,
+                                guint32 value_message_tag_memory_index,
+                                QmiWmsMessageTagType value_message_tag_message_tag,
+                                GError **error);
+

Set the 'Message Tag' field in the message.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + + + + + + + + + + + +

self

a QmiMessageWmsModifyTagInput.

 

value_message_tag_storage_type

a QmiWmsStorageType.

 

value_message_tag_memory_index

a guint32.

 

value_message_tag_message_tag

a QmiWmsMessageTagType.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if value +was successfully set, FALSE otherwise.

+
+

Since: 1.0

+
+
+
+

qmi_message_wms_modify_tag_output_ref ()

+
QmiMessageWmsModifyTagOutput *
+qmi_message_wms_modify_tag_output_ref (QmiMessageWmsModifyTagOutput *self);
+

Atomically increments the reference count of self + by one.

+
+

Parameters

+
+++++ + + + + + +

self

a QmiMessageWmsModifyTagOutput.

 
+
+
+

Returns

+

the new reference to self +.

+
+

Since: 1.0

+
+
+
+

qmi_message_wms_modify_tag_output_unref ()

+
void
+qmi_message_wms_modify_tag_output_unref
+                               (QmiMessageWmsModifyTagOutput *self);
+

Atomically decrements the reference count of self + by one. +If the reference count drops to 0, self + is completely disposed.

+
+

Parameters

+
+++++ + + + + + +

self

a QmiMessageWmsModifyTagOutput.

 
+
+

Since: 1.0

+
+
+
+

qmi_message_wms_modify_tag_output_get_result ()

+
gboolean
+qmi_message_wms_modify_tag_output_get_result
+                               (QmiMessageWmsModifyTagOutput *self,
+                                GError **error);
+

Get the result of the QMI operation.

+
+

Parameters

+
+++++ + + + + + + + + + + + + +

self

a QmiMessageWmsModifyTagOutput.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the QMI operation succeeded, FALSE if error +is set.

+
+

Since: 1.0

+
+
+
+

qmi_client_wms_modify_tag ()

+
void
+qmi_client_wms_modify_tag (QmiClientWms *self,
+                           QmiMessageWmsModifyTagInput *input,
+                           guint timeout,
+                           GCancellable *cancellable,
+                           GAsyncReadyCallback callback,
+                           gpointer user_data);
+

Asynchronously sends a Modify Tag request to the device.

+

When the operation is finished, callback + will be invoked in the thread-default main loop of the thread you are calling this method from.

+

You can then call qmi_client_wms_modify_tag_finish() to get the result of the operation.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

self

a QmiClientWms.

 

input

a QmiMessageWmsModifyTagInput.

 

timeout

maximum time to wait for the method to complete, in seconds.

 

cancellable

a GCancellable or NULL.

 

callback

a GAsyncReadyCallback to call when the request is satisfied.

 

user_data

user data to pass to callback +.

 
+
+

Since: 1.0

+
+
+
+

qmi_client_wms_modify_tag_finish ()

+
QmiMessageWmsModifyTagOutput *
+qmi_client_wms_modify_tag_finish (QmiClientWms *self,
+                                  GAsyncResult *res,
+                                  GError **error);
+

Finishes an async operation started with qmi_client_wms_modify_tag().

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiClientWms.

 

res

the GAsyncResult obtained from the GAsyncReadyCallback passed to qmi_client_wms_modify_tag().

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

a QmiMessageWmsModifyTagOutput, or NULL if error +is set. The returned value should be freed with qmi_message_wms_modify_tag_output_unref().

+
+

Since: 1.0

+
+
+
+

Types and Values

+
+

QmiMessageWmsModifyTagInput

+
typedef struct _QmiMessageWmsModifyTagInput QmiMessageWmsModifyTagInput;
+

The QmiMessageWmsModifyTagInput structure contains private data and should only be accessed +using the provided API.

+

Since: 1.0

+
+
+
+

QmiMessageWmsModifyTagOutput

+
typedef struct _QmiMessageWmsModifyTagOutput QmiMessageWmsModifyTagOutput;
+

The QmiMessageWmsModifyTagOutput structure contains private data and should only be accessed +using the provided API.

+

Since: 1.0

+
+
+
+ + + \ No newline at end of file diff -Nru libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-WMS-Raw-Read.html libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-WMS-Raw-Read.html --- libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-WMS-Raw-Read.html 2017-03-22 12:28:29.000000000 +0100 +++ libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-WMS-Raw-Read.html 1970-01-01 01:00:00.000000000 +0100 @@ -1,805 +0,0 @@ - - - - -WMS Raw Read: libqmi-glib Reference Manual - - - - - - - - - - - - - - - - -
-
-
- - -
-

WMS Raw Read

-

WMS Raw Read

-
- -
-

Types and Values

- -
-
-

Object Hierarchy

-
    GBoxed
-    ├── QmiMessageWmsRawReadInput
-    ╰── QmiMessageWmsRawReadOutput
-
-
-
-

Description

-
-
-

Functions

-
-

qmi_message_wms_raw_read_input_new ()

-
QmiMessageWmsRawReadInput *
-qmi_message_wms_raw_read_input_new (void);
-

Allocates a new QmiMessageWmsRawReadInput.

-
-

Returns

-

the newly created QmiMessageWmsRawReadInput. The returned value should be freed with qmi_message_wms_raw_read_input_unref().

-
-

Since: 1.0

-
-
-
-

qmi_message_wms_raw_read_input_ref ()

-
QmiMessageWmsRawReadInput *
-qmi_message_wms_raw_read_input_ref (QmiMessageWmsRawReadInput *self);
-

Atomically increments the reference count of self - by one.

-
-

Parameters

-
----- - - - - - -

self

a QmiMessageWmsRawReadInput.

 
-
-
-

Returns

-

the new reference to self -.

-
-

Since: 1.0

-
-
-
-

qmi_message_wms_raw_read_input_unref ()

-
void
-qmi_message_wms_raw_read_input_unref (QmiMessageWmsRawReadInput *self);
-

Atomically decrements the reference count of self - by one. -If the reference count drops to 0, self - is completely disposed.

-
-

Parameters

-
----- - - - - - -

self

a QmiMessageWmsRawReadInput.

 
-
-

Since: 1.0

-
-
-
-

qmi_message_wms_raw_read_input_get_sms_on_ims ()

-
gboolean
-qmi_message_wms_raw_read_input_get_sms_on_ims
-                               (QmiMessageWmsRawReadInput *self,
-                                gboolean *value_sms_on_ims,
-                                GError **error);
-

Get the 'SMS on IMS' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessageWmsRawReadInput.

 

value_sms_on_ims

a placeholder for the output gboolean, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.0

-
-
-
-

qmi_message_wms_raw_read_input_set_sms_on_ims ()

-
gboolean
-qmi_message_wms_raw_read_input_set_sms_on_ims
-                               (QmiMessageWmsRawReadInput *self,
-                                gboolean value_sms_on_ims,
-                                GError **error);
-

Set the 'SMS on IMS' field in the message.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessageWmsRawReadInput.

 

value_sms_on_ims

a gboolean.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if value -was successfully set, FALSE otherwise.

-
-

Since: 1.0

-
-
-
-

qmi_message_wms_raw_read_input_get_message_mode ()

-
gboolean
-qmi_message_wms_raw_read_input_get_message_mode
-                               (QmiMessageWmsRawReadInput *self,
-                                QmiWmsMessageMode *value_message_mode,
-                                GError **error);
-

Get the 'Message Mode' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessageWmsRawReadInput.

 

value_message_mode

a placeholder for the output QmiWmsMessageMode, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.0

-
-
-
-

qmi_message_wms_raw_read_input_set_message_mode ()

-
gboolean
-qmi_message_wms_raw_read_input_set_message_mode
-                               (QmiMessageWmsRawReadInput *self,
-                                QmiWmsMessageMode value_message_mode,
-                                GError **error);
-

Set the 'Message Mode' field in the message.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessageWmsRawReadInput.

 

value_message_mode

a QmiWmsMessageMode.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if value -was successfully set, FALSE otherwise.

-
-

Since: 1.0

-
-
-
-

qmi_message_wms_raw_read_input_get_message_memory_storage_id ()

-
gboolean
-qmi_message_wms_raw_read_input_get_message_memory_storage_id
-                               (QmiMessageWmsRawReadInput *self,
-                                QmiWmsStorageType *value_message_memory_storage_id_storage_type,
-                                guint32 *value_message_memory_storage_id_memory_index,
-                                GError **error);
-

Get the 'Message Memory Storage ID' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - - - - - - -

self

a QmiMessageWmsRawReadInput.

 

value_message_memory_storage_id_storage_type

a placeholder for the output QmiWmsStorageType, or NULL if not required.

 

value_message_memory_storage_id_memory_index

a placeholder for the output guint32, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.0

-
-
-
-

qmi_message_wms_raw_read_input_set_message_memory_storage_id ()

-
gboolean
-qmi_message_wms_raw_read_input_set_message_memory_storage_id
-                               (QmiMessageWmsRawReadInput *self,
-                                QmiWmsStorageType value_message_memory_storage_id_storage_type,
-                                guint32 value_message_memory_storage_id_memory_index,
-                                GError **error);
-

Set the 'Message Memory Storage ID' field in the message.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - - - - - - -

self

a QmiMessageWmsRawReadInput.

 

value_message_memory_storage_id_storage_type

a QmiWmsStorageType.

 

value_message_memory_storage_id_memory_index

a guint32.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if value -was successfully set, FALSE otherwise.

-
-

Since: 1.0

-
-
-
-

qmi_message_wms_raw_read_output_ref ()

-
QmiMessageWmsRawReadOutput *
-qmi_message_wms_raw_read_output_ref (QmiMessageWmsRawReadOutput *self);
-

Atomically increments the reference count of self - by one.

-
-

Parameters

-
----- - - - - - -

self

a QmiMessageWmsRawReadOutput.

 
-
-
-

Returns

-

the new reference to self -.

-
-

Since: 1.0

-
-
-
-

qmi_message_wms_raw_read_output_unref ()

-
void
-qmi_message_wms_raw_read_output_unref (QmiMessageWmsRawReadOutput *self);
-

Atomically decrements the reference count of self - by one. -If the reference count drops to 0, self - is completely disposed.

-
-

Parameters

-
----- - - - - - -

self

a QmiMessageWmsRawReadOutput.

 
-
-

Since: 1.0

-
-
-
-

qmi_message_wms_raw_read_output_get_result ()

-
gboolean
-qmi_message_wms_raw_read_output_get_result
-                               (QmiMessageWmsRawReadOutput *self,
-                                GError **error);
-

Get the result of the QMI operation.

-
-

Parameters

-
----- - - - - - - - - - - - - -

self

a QmiMessageWmsRawReadOutput.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the QMI operation succeeded, FALSE if error -is set.

-
-

Since: 1.0

-
-
-
-

qmi_message_wms_raw_read_output_get_raw_message_data ()

-
gboolean
-qmi_message_wms_raw_read_output_get_raw_message_data
-                               (QmiMessageWmsRawReadOutput *self,
-                                QmiWmsMessageTagType *value_raw_message_data_message_tag,
-                                QmiWmsMessageFormat *value_raw_message_data_format,
-                                GArray **value_raw_message_data_raw_data,
-                                GError **error);
-

Get the 'Raw Message Data' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - - - - - - - - - - - -

self

a QmiMessageWmsRawReadOutput.

 

value_raw_message_data_message_tag

a placeholder for the output QmiWmsMessageTagType, or NULL if not required.

 

value_raw_message_data_format

a placeholder for the output QmiWmsMessageFormat, or NULL if not required.

 

value_raw_message_data_raw_data

a placeholder for the output GArray of guint8 elements, or NULL if not required. Do not free it, it is owned by self -.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.0

-
-
-
-

qmi_client_wms_raw_read ()

-
void
-qmi_client_wms_raw_read (QmiClientWms *self,
-                         QmiMessageWmsRawReadInput *input,
-                         guint timeout,
-                         GCancellable *cancellable,
-                         GAsyncReadyCallback callback,
-                         gpointer user_data);
-

Asynchronously sends a Raw Read request to the device.

-

When the operation is finished, callback - will be invoked in the thread-default main loop of the thread you are calling this method from.

-

You can then call qmi_client_wms_raw_read_finish() to get the result of the operation.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

self

a QmiClientWms.

 

input

a QmiMessageWmsRawReadInput.

 

timeout

maximum time to wait for the method to complete, in seconds.

 

cancellable

a GCancellable or NULL.

 

callback

a GAsyncReadyCallback to call when the request is satisfied.

 

user_data

user data to pass to callback -.

 
-
-

Since: 1.0

-
-
-
-

qmi_client_wms_raw_read_finish ()

-
QmiMessageWmsRawReadOutput *
-qmi_client_wms_raw_read_finish (QmiClientWms *self,
-                                GAsyncResult *res,
-                                GError **error);
-

Finishes an async operation started with qmi_client_wms_raw_read().

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiClientWms.

 

res

the GAsyncResult obtained from the GAsyncReadyCallback passed to qmi_client_wms_raw_read().

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

a QmiMessageWmsRawReadOutput, or NULL if error -is set. The returned value should be freed with qmi_message_wms_raw_read_output_unref().

-
-

Since: 1.0

-
-
-
-

Types and Values

-
-

QmiMessageWmsRawReadInput

-
typedef struct _QmiMessageWmsRawReadInput QmiMessageWmsRawReadInput;
-

The QmiMessageWmsRawReadInput structure contains private data and should only be accessed -using the provided API.

-

Since: 1.0

-
-
-
-

QmiMessageWmsRawReadOutput

-
typedef struct _QmiMessageWmsRawReadOutput QmiMessageWmsRawReadOutput;
-

The QmiMessageWmsRawReadOutput structure contains private data and should only be accessed -using the provided API.

-

Since: 1.0

-
-
-
- - - \ No newline at end of file diff -Nru libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-WMS-Raw-Read-request.html libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-WMS-Raw-Read-request.html --- libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-WMS-Raw-Read-request.html 1970-01-01 01:00:00.000000000 +0100 +++ libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-WMS-Raw-Read-request.html 2019-01-08 15:19:02.000000000 +0100 @@ -0,0 +1,805 @@ + + + + +WMS Raw Read request: libqmi-glib Reference Manual + + + + + + + + + + + + + + + + +
+
+
+ + +
+

WMS Raw Read request

+

WMS Raw Read request

+
+ +
+

Types and Values

+ +
+
+

Object Hierarchy

+
    GBoxed
+    ├── QmiMessageWmsRawReadInput
+    ╰── QmiMessageWmsRawReadOutput
+
+
+
+

Description

+
+
+

Functions

+
+

qmi_message_wms_raw_read_input_new ()

+
QmiMessageWmsRawReadInput *
+qmi_message_wms_raw_read_input_new (void);
+

Allocates a new QmiMessageWmsRawReadInput.

+
+

Returns

+

the newly created QmiMessageWmsRawReadInput. The returned value should be freed with qmi_message_wms_raw_read_input_unref().

+
+

Since: 1.0

+
+
+
+

qmi_message_wms_raw_read_input_ref ()

+
QmiMessageWmsRawReadInput *
+qmi_message_wms_raw_read_input_ref (QmiMessageWmsRawReadInput *self);
+

Atomically increments the reference count of self + by one.

+
+

Parameters

+
+++++ + + + + + +

self

a QmiMessageWmsRawReadInput.

 
+
+
+

Returns

+

the new reference to self +.

+
+

Since: 1.0

+
+
+
+

qmi_message_wms_raw_read_input_unref ()

+
void
+qmi_message_wms_raw_read_input_unref (QmiMessageWmsRawReadInput *self);
+

Atomically decrements the reference count of self + by one. +If the reference count drops to 0, self + is completely disposed.

+
+

Parameters

+
+++++ + + + + + +

self

a QmiMessageWmsRawReadInput.

 
+
+

Since: 1.0

+
+
+
+

qmi_message_wms_raw_read_input_get_sms_on_ims ()

+
gboolean
+qmi_message_wms_raw_read_input_get_sms_on_ims
+                               (QmiMessageWmsRawReadInput *self,
+                                gboolean *value_sms_on_ims,
+                                GError **error);
+

Get the 'SMS on IMS' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageWmsRawReadInput.

 

value_sms_on_ims

a placeholder for the output gboolean, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.0

+
+
+
+

qmi_message_wms_raw_read_input_set_sms_on_ims ()

+
gboolean
+qmi_message_wms_raw_read_input_set_sms_on_ims
+                               (QmiMessageWmsRawReadInput *self,
+                                gboolean value_sms_on_ims,
+                                GError **error);
+

Set the 'SMS on IMS' field in the message.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageWmsRawReadInput.

 

value_sms_on_ims

a gboolean.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if value +was successfully set, FALSE otherwise.

+
+

Since: 1.0

+
+
+
+

qmi_message_wms_raw_read_input_get_message_mode ()

+
gboolean
+qmi_message_wms_raw_read_input_get_message_mode
+                               (QmiMessageWmsRawReadInput *self,
+                                QmiWmsMessageMode *value_message_mode,
+                                GError **error);
+

Get the 'Message Mode' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageWmsRawReadInput.

 

value_message_mode

a placeholder for the output QmiWmsMessageMode, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.0

+
+
+
+

qmi_message_wms_raw_read_input_set_message_mode ()

+
gboolean
+qmi_message_wms_raw_read_input_set_message_mode
+                               (QmiMessageWmsRawReadInput *self,
+                                QmiWmsMessageMode value_message_mode,
+                                GError **error);
+

Set the 'Message Mode' field in the message.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageWmsRawReadInput.

 

value_message_mode

a QmiWmsMessageMode.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if value +was successfully set, FALSE otherwise.

+
+

Since: 1.0

+
+
+
+

qmi_message_wms_raw_read_input_get_message_memory_storage_id ()

+
gboolean
+qmi_message_wms_raw_read_input_get_message_memory_storage_id
+                               (QmiMessageWmsRawReadInput *self,
+                                QmiWmsStorageType *value_message_memory_storage_id_storage_type,
+                                guint32 *value_message_memory_storage_id_memory_index,
+                                GError **error);
+

Get the 'Message Memory Storage ID' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + + + + + + +

self

a QmiMessageWmsRawReadInput.

 

value_message_memory_storage_id_storage_type

a placeholder for the output QmiWmsStorageType, or NULL if not required.

 

value_message_memory_storage_id_memory_index

a placeholder for the output guint32, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.0

+
+
+
+

qmi_message_wms_raw_read_input_set_message_memory_storage_id ()

+
gboolean
+qmi_message_wms_raw_read_input_set_message_memory_storage_id
+                               (QmiMessageWmsRawReadInput *self,
+                                QmiWmsStorageType value_message_memory_storage_id_storage_type,
+                                guint32 value_message_memory_storage_id_memory_index,
+                                GError **error);
+

Set the 'Message Memory Storage ID' field in the message.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + + + + + + +

self

a QmiMessageWmsRawReadInput.

 

value_message_memory_storage_id_storage_type

a QmiWmsStorageType.

 

value_message_memory_storage_id_memory_index

a guint32.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if value +was successfully set, FALSE otherwise.

+
+

Since: 1.0

+
+
+
+

qmi_message_wms_raw_read_output_ref ()

+
QmiMessageWmsRawReadOutput *
+qmi_message_wms_raw_read_output_ref (QmiMessageWmsRawReadOutput *self);
+

Atomically increments the reference count of self + by one.

+
+

Parameters

+
+++++ + + + + + +

self

a QmiMessageWmsRawReadOutput.

 
+
+
+

Returns

+

the new reference to self +.

+
+

Since: 1.0

+
+
+
+

qmi_message_wms_raw_read_output_unref ()

+
void
+qmi_message_wms_raw_read_output_unref (QmiMessageWmsRawReadOutput *self);
+

Atomically decrements the reference count of self + by one. +If the reference count drops to 0, self + is completely disposed.

+
+

Parameters

+
+++++ + + + + + +

self

a QmiMessageWmsRawReadOutput.

 
+
+

Since: 1.0

+
+
+
+

qmi_message_wms_raw_read_output_get_result ()

+
gboolean
+qmi_message_wms_raw_read_output_get_result
+                               (QmiMessageWmsRawReadOutput *self,
+                                GError **error);
+

Get the result of the QMI operation.

+
+

Parameters

+
+++++ + + + + + + + + + + + + +

self

a QmiMessageWmsRawReadOutput.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the QMI operation succeeded, FALSE if error +is set.

+
+

Since: 1.0

+
+
+
+

qmi_message_wms_raw_read_output_get_raw_message_data ()

+
gboolean
+qmi_message_wms_raw_read_output_get_raw_message_data
+                               (QmiMessageWmsRawReadOutput *self,
+                                QmiWmsMessageTagType *value_raw_message_data_message_tag,
+                                QmiWmsMessageFormat *value_raw_message_data_format,
+                                GArray **value_raw_message_data_raw_data,
+                                GError **error);
+

Get the 'Raw Message Data' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + + + + + + + + + + + +

self

a QmiMessageWmsRawReadOutput.

 

value_raw_message_data_message_tag

a placeholder for the output QmiWmsMessageTagType, or NULL if not required.

 

value_raw_message_data_format

a placeholder for the output QmiWmsMessageFormat, or NULL if not required.

 

value_raw_message_data_raw_data

a placeholder for the output GArray of guint8 elements, or NULL if not required. Do not free it, it is owned by self +.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.0

+
+
+
+

qmi_client_wms_raw_read ()

+
void
+qmi_client_wms_raw_read (QmiClientWms *self,
+                         QmiMessageWmsRawReadInput *input,
+                         guint timeout,
+                         GCancellable *cancellable,
+                         GAsyncReadyCallback callback,
+                         gpointer user_data);
+

Asynchronously sends a Raw Read request to the device.

+

When the operation is finished, callback + will be invoked in the thread-default main loop of the thread you are calling this method from.

+

You can then call qmi_client_wms_raw_read_finish() to get the result of the operation.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

self

a QmiClientWms.

 

input

a QmiMessageWmsRawReadInput.

 

timeout

maximum time to wait for the method to complete, in seconds.

 

cancellable

a GCancellable or NULL.

 

callback

a GAsyncReadyCallback to call when the request is satisfied.

 

user_data

user data to pass to callback +.

 
+
+

Since: 1.0

+
+
+
+

qmi_client_wms_raw_read_finish ()

+
QmiMessageWmsRawReadOutput *
+qmi_client_wms_raw_read_finish (QmiClientWms *self,
+                                GAsyncResult *res,
+                                GError **error);
+

Finishes an async operation started with qmi_client_wms_raw_read().

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiClientWms.

 

res

the GAsyncResult obtained from the GAsyncReadyCallback passed to qmi_client_wms_raw_read().

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

a QmiMessageWmsRawReadOutput, or NULL if error +is set. The returned value should be freed with qmi_message_wms_raw_read_output_unref().

+
+

Since: 1.0

+
+
+
+

Types and Values

+
+

QmiMessageWmsRawReadInput

+
typedef struct _QmiMessageWmsRawReadInput QmiMessageWmsRawReadInput;
+

The QmiMessageWmsRawReadInput structure contains private data and should only be accessed +using the provided API.

+

Since: 1.0

+
+
+
+

QmiMessageWmsRawReadOutput

+
typedef struct _QmiMessageWmsRawReadOutput QmiMessageWmsRawReadOutput;
+

The QmiMessageWmsRawReadOutput structure contains private data and should only be accessed +using the provided API.

+

Since: 1.0

+
+
+
+ + + \ No newline at end of file diff -Nru libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-WMS-Raw-Send.html libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-WMS-Raw-Send.html --- libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-WMS-Raw-Send.html 2017-03-22 12:28:29.000000000 +0100 +++ libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-WMS-Raw-Send.html 1970-01-01 01:00:00.000000000 +0100 @@ -1,1220 +0,0 @@ - - - - -WMS Raw Send: libqmi-glib Reference Manual - - - - - - - - - - - - - - - - -
-
-
- - -
-

WMS Raw Send

-

WMS Raw Send

-
-
-

Functions

-
---- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
-QmiMessageWmsRawSendInput * - -qmi_message_wms_raw_send_input_new () -
-QmiMessageWmsRawSendInput * - -qmi_message_wms_raw_send_input_ref () -
-void - -qmi_message_wms_raw_send_input_unref () -
-gboolean - -qmi_message_wms_raw_send_input_get_sms_on_ims () -
-gboolean - -qmi_message_wms_raw_send_input_set_sms_on_ims () -
-gboolean - -qmi_message_wms_raw_send_input_get_gsm_wcdma_link_timer () -
-gboolean - -qmi_message_wms_raw_send_input_set_gsm_wcdma_link_timer () -
-gboolean - -qmi_message_wms_raw_send_input_get_cdma_follow_on_dc () -
-gboolean - -qmi_message_wms_raw_send_input_set_cdma_follow_on_dc () -
-gboolean - -qmi_message_wms_raw_send_input_get_cdma_force_on_dc () -
-gboolean - -qmi_message_wms_raw_send_input_set_cdma_force_on_dc () -
-gboolean - -qmi_message_wms_raw_send_input_get_raw_message_data () -
-gboolean - -qmi_message_wms_raw_send_input_set_raw_message_data () -
-QmiMessageWmsRawSendOutput * - -qmi_message_wms_raw_send_output_ref () -
-void - -qmi_message_wms_raw_send_output_unref () -
-gboolean - -qmi_message_wms_raw_send_output_get_result () -
-gboolean - -qmi_message_wms_raw_send_output_get_message_id () -
-gboolean - -qmi_message_wms_raw_send_output_get_cdma_cause_code () -
-gboolean - -qmi_message_wms_raw_send_output_get_cdma_error_class () -
-gboolean - -qmi_message_wms_raw_send_output_get_gsm_wcdma_cause_info () -
-gboolean - -qmi_message_wms_raw_send_output_get_message_delivery_failure_type () -
-void - -qmi_client_wms_raw_send () -
-QmiMessageWmsRawSendOutput * - -qmi_client_wms_raw_send_finish () -
-
-
-

Types and Values

- -
-
-

Object Hierarchy

-
    GBoxed
-    ├── QmiMessageWmsRawSendInput
-    ╰── QmiMessageWmsRawSendOutput
-
-
-
-

Description

-
-
-

Functions

-
-

qmi_message_wms_raw_send_input_new ()

-
QmiMessageWmsRawSendInput *
-qmi_message_wms_raw_send_input_new (void);
-

Allocates a new QmiMessageWmsRawSendInput.

-
-

Returns

-

the newly created QmiMessageWmsRawSendInput. The returned value should be freed with qmi_message_wms_raw_send_input_unref().

-
-

Since: 1.0

-
-
-
-

qmi_message_wms_raw_send_input_ref ()

-
QmiMessageWmsRawSendInput *
-qmi_message_wms_raw_send_input_ref (QmiMessageWmsRawSendInput *self);
-

Atomically increments the reference count of self - by one.

-
-

Parameters

-
----- - - - - - -

self

a QmiMessageWmsRawSendInput.

 
-
-
-

Returns

-

the new reference to self -.

-
-

Since: 1.0

-
-
-
-

qmi_message_wms_raw_send_input_unref ()

-
void
-qmi_message_wms_raw_send_input_unref (QmiMessageWmsRawSendInput *self);
-

Atomically decrements the reference count of self - by one. -If the reference count drops to 0, self - is completely disposed.

-
-

Parameters

-
----- - - - - - -

self

a QmiMessageWmsRawSendInput.

 
-
-

Since: 1.0

-
-
-
-

qmi_message_wms_raw_send_input_get_sms_on_ims ()

-
gboolean
-qmi_message_wms_raw_send_input_get_sms_on_ims
-                               (QmiMessageWmsRawSendInput *self,
-                                gboolean *value_sms_on_ims,
-                                GError **error);
-

Get the 'SMS on IMS' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessageWmsRawSendInput.

 

value_sms_on_ims

a placeholder for the output gboolean, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.0

-
-
-
-

qmi_message_wms_raw_send_input_set_sms_on_ims ()

-
gboolean
-qmi_message_wms_raw_send_input_set_sms_on_ims
-                               (QmiMessageWmsRawSendInput *self,
-                                gboolean value_sms_on_ims,
-                                GError **error);
-

Set the 'SMS on IMS' field in the message.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessageWmsRawSendInput.

 

value_sms_on_ims

a gboolean.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if value -was successfully set, FALSE otherwise.

-
-

Since: 1.0

-
-
-
-

qmi_message_wms_raw_send_input_get_gsm_wcdma_link_timer ()

-
gboolean
-qmi_message_wms_raw_send_input_get_gsm_wcdma_link_timer
-                               (QmiMessageWmsRawSendInput *self,
-                                guint8 *value_gsm_wcdma_link_timer,
-                                GError **error);
-

Get the 'GSM WCDMA Link Timer' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessageWmsRawSendInput.

 

value_gsm_wcdma_link_timer

a placeholder for the output guint8, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.0

-
-
-
-

qmi_message_wms_raw_send_input_set_gsm_wcdma_link_timer ()

-
gboolean
-qmi_message_wms_raw_send_input_set_gsm_wcdma_link_timer
-                               (QmiMessageWmsRawSendInput *self,
-                                guint8 value_gsm_wcdma_link_timer,
-                                GError **error);
-

Set the 'GSM WCDMA Link Timer' field in the message.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessageWmsRawSendInput.

 

value_gsm_wcdma_link_timer

a guint8.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if value -was successfully set, FALSE otherwise.

-
-

Since: 1.0

-
-
-
-

qmi_message_wms_raw_send_input_get_cdma_follow_on_dc ()

-
gboolean
-qmi_message_wms_raw_send_input_get_cdma_follow_on_dc
-                               (QmiMessageWmsRawSendInput *self,
-                                gboolean *value_cdma_follow_on_dc_follow,
-                                GError **error);
-

Get the 'CDMA Follow On DC' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessageWmsRawSendInput.

 

value_cdma_follow_on_dc_follow

a placeholder for the output gboolean, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.0

-
-
-
-

qmi_message_wms_raw_send_input_set_cdma_follow_on_dc ()

-
gboolean
-qmi_message_wms_raw_send_input_set_cdma_follow_on_dc
-                               (QmiMessageWmsRawSendInput *self,
-                                gboolean value_cdma_follow_on_dc_follow,
-                                GError **error);
-

Set the 'CDMA Follow On DC' field in the message.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessageWmsRawSendInput.

 

value_cdma_follow_on_dc_follow

a gboolean.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if value -was successfully set, FALSE otherwise.

-
-

Since: 1.0

-
-
-
-

qmi_message_wms_raw_send_input_get_cdma_force_on_dc ()

-
gboolean
-qmi_message_wms_raw_send_input_get_cdma_force_on_dc
-                               (QmiMessageWmsRawSendInput *self,
-                                gboolean *value_cdma_force_on_dc_force,
-                                QmiWmsCdmaServiceOption *value_cdma_force_on_dc_service_option,
-                                GError **error);
-

Get the 'CDMA Force On DC' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - - - - - - -

self

a QmiMessageWmsRawSendInput.

 

value_cdma_force_on_dc_force

a placeholder for the output gboolean, or NULL if not required.

 

value_cdma_force_on_dc_service_option

a placeholder for the output QmiWmsCdmaServiceOption, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.0

-
-
-
-

qmi_message_wms_raw_send_input_set_cdma_force_on_dc ()

-
gboolean
-qmi_message_wms_raw_send_input_set_cdma_force_on_dc
-                               (QmiMessageWmsRawSendInput *self,
-                                gboolean value_cdma_force_on_dc_force,
-                                QmiWmsCdmaServiceOption value_cdma_force_on_dc_service_option,
-                                GError **error);
-

Set the 'CDMA Force On DC' field in the message.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - - - - - - -

self

a QmiMessageWmsRawSendInput.

 

value_cdma_force_on_dc_force

a gboolean.

 

value_cdma_force_on_dc_service_option

a QmiWmsCdmaServiceOption.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if value -was successfully set, FALSE otherwise.

-
-

Since: 1.0

-
-
-
-

qmi_message_wms_raw_send_input_get_raw_message_data ()

-
gboolean
-qmi_message_wms_raw_send_input_get_raw_message_data
-                               (QmiMessageWmsRawSendInput *self,
-                                QmiWmsMessageFormat *value_raw_message_data_format,
-                                GArray **value_raw_message_data_raw_data,
-                                GError **error);
-

Get the 'Raw Message Data' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - - - - - - -

self

a QmiMessageWmsRawSendInput.

 

value_raw_message_data_format

a placeholder for the output QmiWmsMessageFormat, or NULL if not required.

 

value_raw_message_data_raw_data

a placeholder for the output GArray of guint8 elements, or NULL if not required. Do not free it, it is owned by self -.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.0

-
-
-
-

qmi_message_wms_raw_send_input_set_raw_message_data ()

-
gboolean
-qmi_message_wms_raw_send_input_set_raw_message_data
-                               (QmiMessageWmsRawSendInput *self,
-                                QmiWmsMessageFormat value_raw_message_data_format,
-                                GArray *value_raw_message_data_raw_data,
-                                GError **error);
-

Set the 'Raw Message Data' field in the message.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - - - - - - -

self

a QmiMessageWmsRawSendInput.

 

value_raw_message_data_format

a QmiWmsMessageFormat.

 

value_raw_message_data_raw_data

a GArray of guint8 elements. A new reference to value_raw_message_data_raw_data -will be taken.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if value -was successfully set, FALSE otherwise.

-
-

Since: 1.0

-
-
-
-

qmi_message_wms_raw_send_output_ref ()

-
QmiMessageWmsRawSendOutput *
-qmi_message_wms_raw_send_output_ref (QmiMessageWmsRawSendOutput *self);
-

Atomically increments the reference count of self - by one.

-
-

Parameters

-
----- - - - - - -

self

a QmiMessageWmsRawSendOutput.

 
-
-
-

Returns

-

the new reference to self -.

-
-

Since: 1.0

-
-
-
-

qmi_message_wms_raw_send_output_unref ()

-
void
-qmi_message_wms_raw_send_output_unref (QmiMessageWmsRawSendOutput *self);
-

Atomically decrements the reference count of self - by one. -If the reference count drops to 0, self - is completely disposed.

-
-

Parameters

-
----- - - - - - -

self

a QmiMessageWmsRawSendOutput.

 
-
-

Since: 1.0

-
-
-
-

qmi_message_wms_raw_send_output_get_result ()

-
gboolean
-qmi_message_wms_raw_send_output_get_result
-                               (QmiMessageWmsRawSendOutput *self,
-                                GError **error);
-

Get the result of the QMI operation.

-
-

Parameters

-
----- - - - - - - - - - - - - -

self

a QmiMessageWmsRawSendOutput.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the QMI operation succeeded, FALSE if error -is set.

-
-

Since: 1.0

-
-
-
-

qmi_message_wms_raw_send_output_get_message_id ()

-
gboolean
-qmi_message_wms_raw_send_output_get_message_id
-                               (QmiMessageWmsRawSendOutput *self,
-                                guint16 *value_message_id,
-                                GError **error);
-

Get the 'Message ID' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessageWmsRawSendOutput.

 

value_message_id

a placeholder for the output guint16, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.0

-
-
-
-

qmi_message_wms_raw_send_output_get_cdma_cause_code ()

-
gboolean
-qmi_message_wms_raw_send_output_get_cdma_cause_code
-                               (QmiMessageWmsRawSendOutput *self,
-                                QmiWmsCdmaCauseCode *value_cdma_cause_code,
-                                GError **error);
-

Get the 'CDMA Cause Code' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessageWmsRawSendOutput.

 

value_cdma_cause_code

a placeholder for the output QmiWmsCdmaCauseCode, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.0

-
-
-
-

qmi_message_wms_raw_send_output_get_cdma_error_class ()

-
gboolean
-qmi_message_wms_raw_send_output_get_cdma_error_class
-                               (QmiMessageWmsRawSendOutput *self,
-                                QmiWmsCdmaErrorClass *value_cdma_error_class,
-                                GError **error);
-

Get the 'CDMA Error Class' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessageWmsRawSendOutput.

 

value_cdma_error_class

a placeholder for the output QmiWmsCdmaErrorClass, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.0

-
-
-
-

qmi_message_wms_raw_send_output_get_gsm_wcdma_cause_info ()

-
gboolean
-qmi_message_wms_raw_send_output_get_gsm_wcdma_cause_info
-                               (QmiMessageWmsRawSendOutput *self,
-                                QmiWmsGsmUmtsRpCause *value_gsm_wcdma_cause_info_rp_cause,
-                                QmiWmsGsmUmtsTpCause *value_gsm_wcdma_cause_info_tp_cause,
-                                GError **error);
-

Get the 'GSM WCDMA Cause Info' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - - - - - - -

self

a QmiMessageWmsRawSendOutput.

 

value_gsm_wcdma_cause_info_rp_cause

a placeholder for the output QmiWmsGsmUmtsRpCause, or NULL if not required.

 

value_gsm_wcdma_cause_info_tp_cause

a placeholder for the output QmiWmsGsmUmtsTpCause, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.0

-
-
-
-

qmi_message_wms_raw_send_output_get_message_delivery_failure_type ()

-
gboolean
-qmi_message_wms_raw_send_output_get_message_delivery_failure_type
-                               (QmiMessageWmsRawSendOutput *self,
-                                QmiWmsMessageDeliveryFailureType *value_message_delivery_failure_type,
-                                GError **error);
-

Get the 'Message Delivery Failure Type' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessageWmsRawSendOutput.

 

value_message_delivery_failure_type

a placeholder for the output QmiWmsMessageDeliveryFailureType, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.0

-
-
-
-

qmi_client_wms_raw_send ()

-
void
-qmi_client_wms_raw_send (QmiClientWms *self,
-                         QmiMessageWmsRawSendInput *input,
-                         guint timeout,
-                         GCancellable *cancellable,
-                         GAsyncReadyCallback callback,
-                         gpointer user_data);
-

Asynchronously sends a Raw Send request to the device.

-

When the operation is finished, callback - will be invoked in the thread-default main loop of the thread you are calling this method from.

-

You can then call qmi_client_wms_raw_send_finish() to get the result of the operation.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

self

a QmiClientWms.

 

input

a QmiMessageWmsRawSendInput.

 

timeout

maximum time to wait for the method to complete, in seconds.

 

cancellable

a GCancellable or NULL.

 

callback

a GAsyncReadyCallback to call when the request is satisfied.

 

user_data

user data to pass to callback -.

 
-
-

Since: 1.0

-
-
-
-

qmi_client_wms_raw_send_finish ()

-
QmiMessageWmsRawSendOutput *
-qmi_client_wms_raw_send_finish (QmiClientWms *self,
-                                GAsyncResult *res,
-                                GError **error);
-

Finishes an async operation started with qmi_client_wms_raw_send().

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiClientWms.

 

res

the GAsyncResult obtained from the GAsyncReadyCallback passed to qmi_client_wms_raw_send().

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

a QmiMessageWmsRawSendOutput, or NULL if error -is set. The returned value should be freed with qmi_message_wms_raw_send_output_unref().

-
-

Since: 1.0

-
-
-
-

Types and Values

-
-

QmiMessageWmsRawSendInput

-
typedef struct _QmiMessageWmsRawSendInput QmiMessageWmsRawSendInput;
-

The QmiMessageWmsRawSendInput structure contains private data and should only be accessed -using the provided API.

-

Since: 1.0

-
-
-
-

QmiMessageWmsRawSendOutput

-
typedef struct _QmiMessageWmsRawSendOutput QmiMessageWmsRawSendOutput;
-

The QmiMessageWmsRawSendOutput structure contains private data and should only be accessed -using the provided API.

-

Since: 1.0

-
-
-
- - - \ No newline at end of file diff -Nru libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-WMS-Raw-Send-request.html libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-WMS-Raw-Send-request.html --- libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-WMS-Raw-Send-request.html 1970-01-01 01:00:00.000000000 +0100 +++ libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-WMS-Raw-Send-request.html 2019-01-08 15:19:02.000000000 +0100 @@ -0,0 +1,1220 @@ + + + + +WMS Raw Send request: libqmi-glib Reference Manual + + + + + + + + + + + + + + + + +
+
+
+ + +
+

WMS Raw Send request

+

WMS Raw Send request

+
+
+

Functions

+
++++ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+QmiMessageWmsRawSendInput * + +qmi_message_wms_raw_send_input_new () +
+QmiMessageWmsRawSendInput * + +qmi_message_wms_raw_send_input_ref () +
+void + +qmi_message_wms_raw_send_input_unref () +
+gboolean + +qmi_message_wms_raw_send_input_get_sms_on_ims () +
+gboolean + +qmi_message_wms_raw_send_input_set_sms_on_ims () +
+gboolean + +qmi_message_wms_raw_send_input_get_gsm_wcdma_link_timer () +
+gboolean + +qmi_message_wms_raw_send_input_set_gsm_wcdma_link_timer () +
+gboolean + +qmi_message_wms_raw_send_input_get_cdma_follow_on_dc () +
+gboolean + +qmi_message_wms_raw_send_input_set_cdma_follow_on_dc () +
+gboolean + +qmi_message_wms_raw_send_input_get_cdma_force_on_dc () +
+gboolean + +qmi_message_wms_raw_send_input_set_cdma_force_on_dc () +
+gboolean + +qmi_message_wms_raw_send_input_get_raw_message_data () +
+gboolean + +qmi_message_wms_raw_send_input_set_raw_message_data () +
+QmiMessageWmsRawSendOutput * + +qmi_message_wms_raw_send_output_ref () +
+void + +qmi_message_wms_raw_send_output_unref () +
+gboolean + +qmi_message_wms_raw_send_output_get_result () +
+gboolean + +qmi_message_wms_raw_send_output_get_message_id () +
+gboolean + +qmi_message_wms_raw_send_output_get_cdma_cause_code () +
+gboolean + +qmi_message_wms_raw_send_output_get_cdma_error_class () +
+gboolean + +qmi_message_wms_raw_send_output_get_gsm_wcdma_cause_info () +
+gboolean + +qmi_message_wms_raw_send_output_get_message_delivery_failure_type () +
+void + +qmi_client_wms_raw_send () +
+QmiMessageWmsRawSendOutput * + +qmi_client_wms_raw_send_finish () +
+
+
+

Types and Values

+ +
+
+

Object Hierarchy

+
    GBoxed
+    ├── QmiMessageWmsRawSendInput
+    ╰── QmiMessageWmsRawSendOutput
+
+
+
+

Description

+
+
+

Functions

+
+

qmi_message_wms_raw_send_input_new ()

+
QmiMessageWmsRawSendInput *
+qmi_message_wms_raw_send_input_new (void);
+

Allocates a new QmiMessageWmsRawSendInput.

+
+

Returns

+

the newly created QmiMessageWmsRawSendInput. The returned value should be freed with qmi_message_wms_raw_send_input_unref().

+
+

Since: 1.0

+
+
+
+

qmi_message_wms_raw_send_input_ref ()

+
QmiMessageWmsRawSendInput *
+qmi_message_wms_raw_send_input_ref (QmiMessageWmsRawSendInput *self);
+

Atomically increments the reference count of self + by one.

+
+

Parameters

+
+++++ + + + + + +

self

a QmiMessageWmsRawSendInput.

 
+
+
+

Returns

+

the new reference to self +.

+
+

Since: 1.0

+
+
+
+

qmi_message_wms_raw_send_input_unref ()

+
void
+qmi_message_wms_raw_send_input_unref (QmiMessageWmsRawSendInput *self);
+

Atomically decrements the reference count of self + by one. +If the reference count drops to 0, self + is completely disposed.

+
+

Parameters

+
+++++ + + + + + +

self

a QmiMessageWmsRawSendInput.

 
+
+

Since: 1.0

+
+
+
+

qmi_message_wms_raw_send_input_get_sms_on_ims ()

+
gboolean
+qmi_message_wms_raw_send_input_get_sms_on_ims
+                               (QmiMessageWmsRawSendInput *self,
+                                gboolean *value_sms_on_ims,
+                                GError **error);
+

Get the 'SMS on IMS' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageWmsRawSendInput.

 

value_sms_on_ims

a placeholder for the output gboolean, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.0

+
+
+
+

qmi_message_wms_raw_send_input_set_sms_on_ims ()

+
gboolean
+qmi_message_wms_raw_send_input_set_sms_on_ims
+                               (QmiMessageWmsRawSendInput *self,
+                                gboolean value_sms_on_ims,
+                                GError **error);
+

Set the 'SMS on IMS' field in the message.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageWmsRawSendInput.

 

value_sms_on_ims

a gboolean.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if value +was successfully set, FALSE otherwise.

+
+

Since: 1.0

+
+
+
+

qmi_message_wms_raw_send_input_get_gsm_wcdma_link_timer ()

+
gboolean
+qmi_message_wms_raw_send_input_get_gsm_wcdma_link_timer
+                               (QmiMessageWmsRawSendInput *self,
+                                guint8 *value_gsm_wcdma_link_timer,
+                                GError **error);
+

Get the 'GSM WCDMA Link Timer' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageWmsRawSendInput.

 

value_gsm_wcdma_link_timer

a placeholder for the output guint8, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.0

+
+
+
+

qmi_message_wms_raw_send_input_set_gsm_wcdma_link_timer ()

+
gboolean
+qmi_message_wms_raw_send_input_set_gsm_wcdma_link_timer
+                               (QmiMessageWmsRawSendInput *self,
+                                guint8 value_gsm_wcdma_link_timer,
+                                GError **error);
+

Set the 'GSM WCDMA Link Timer' field in the message.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageWmsRawSendInput.

 

value_gsm_wcdma_link_timer

a guint8.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if value +was successfully set, FALSE otherwise.

+
+

Since: 1.0

+
+
+
+

qmi_message_wms_raw_send_input_get_cdma_follow_on_dc ()

+
gboolean
+qmi_message_wms_raw_send_input_get_cdma_follow_on_dc
+                               (QmiMessageWmsRawSendInput *self,
+                                gboolean *value_cdma_follow_on_dc_follow,
+                                GError **error);
+

Get the 'CDMA Follow On DC' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageWmsRawSendInput.

 

value_cdma_follow_on_dc_follow

a placeholder for the output gboolean, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.0

+
+
+
+

qmi_message_wms_raw_send_input_set_cdma_follow_on_dc ()

+
gboolean
+qmi_message_wms_raw_send_input_set_cdma_follow_on_dc
+                               (QmiMessageWmsRawSendInput *self,
+                                gboolean value_cdma_follow_on_dc_follow,
+                                GError **error);
+

Set the 'CDMA Follow On DC' field in the message.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageWmsRawSendInput.

 

value_cdma_follow_on_dc_follow

a gboolean.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if value +was successfully set, FALSE otherwise.

+
+

Since: 1.0

+
+
+
+

qmi_message_wms_raw_send_input_get_cdma_force_on_dc ()

+
gboolean
+qmi_message_wms_raw_send_input_get_cdma_force_on_dc
+                               (QmiMessageWmsRawSendInput *self,
+                                gboolean *value_cdma_force_on_dc_force,
+                                QmiWmsCdmaServiceOption *value_cdma_force_on_dc_service_option,
+                                GError **error);
+

Get the 'CDMA Force On DC' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + + + + + + +

self

a QmiMessageWmsRawSendInput.

 

value_cdma_force_on_dc_force

a placeholder for the output gboolean, or NULL if not required.

 

value_cdma_force_on_dc_service_option

a placeholder for the output QmiWmsCdmaServiceOption, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.0

+
+
+
+

qmi_message_wms_raw_send_input_set_cdma_force_on_dc ()

+
gboolean
+qmi_message_wms_raw_send_input_set_cdma_force_on_dc
+                               (QmiMessageWmsRawSendInput *self,
+                                gboolean value_cdma_force_on_dc_force,
+                                QmiWmsCdmaServiceOption value_cdma_force_on_dc_service_option,
+                                GError **error);
+

Set the 'CDMA Force On DC' field in the message.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + + + + + + +

self

a QmiMessageWmsRawSendInput.

 

value_cdma_force_on_dc_force

a gboolean.

 

value_cdma_force_on_dc_service_option

a QmiWmsCdmaServiceOption.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if value +was successfully set, FALSE otherwise.

+
+

Since: 1.0

+
+
+
+

qmi_message_wms_raw_send_input_get_raw_message_data ()

+
gboolean
+qmi_message_wms_raw_send_input_get_raw_message_data
+                               (QmiMessageWmsRawSendInput *self,
+                                QmiWmsMessageFormat *value_raw_message_data_format,
+                                GArray **value_raw_message_data_raw_data,
+                                GError **error);
+

Get the 'Raw Message Data' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + + + + + + +

self

a QmiMessageWmsRawSendInput.

 

value_raw_message_data_format

a placeholder for the output QmiWmsMessageFormat, or NULL if not required.

 

value_raw_message_data_raw_data

a placeholder for the output GArray of guint8 elements, or NULL if not required. Do not free it, it is owned by self +.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.0

+
+
+
+

qmi_message_wms_raw_send_input_set_raw_message_data ()

+
gboolean
+qmi_message_wms_raw_send_input_set_raw_message_data
+                               (QmiMessageWmsRawSendInput *self,
+                                QmiWmsMessageFormat value_raw_message_data_format,
+                                GArray *value_raw_message_data_raw_data,
+                                GError **error);
+

Set the 'Raw Message Data' field in the message.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + + + + + + +

self

a QmiMessageWmsRawSendInput.

 

value_raw_message_data_format

a QmiWmsMessageFormat.

 

value_raw_message_data_raw_data

a GArray of guint8 elements. A new reference to value_raw_message_data_raw_data +will be taken.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if value +was successfully set, FALSE otherwise.

+
+

Since: 1.0

+
+
+
+

qmi_message_wms_raw_send_output_ref ()

+
QmiMessageWmsRawSendOutput *
+qmi_message_wms_raw_send_output_ref (QmiMessageWmsRawSendOutput *self);
+

Atomically increments the reference count of self + by one.

+
+

Parameters

+
+++++ + + + + + +

self

a QmiMessageWmsRawSendOutput.

 
+
+
+

Returns

+

the new reference to self +.

+
+

Since: 1.0

+
+
+
+

qmi_message_wms_raw_send_output_unref ()

+
void
+qmi_message_wms_raw_send_output_unref (QmiMessageWmsRawSendOutput *self);
+

Atomically decrements the reference count of self + by one. +If the reference count drops to 0, self + is completely disposed.

+
+

Parameters

+
+++++ + + + + + +

self

a QmiMessageWmsRawSendOutput.

 
+
+

Since: 1.0

+
+
+
+

qmi_message_wms_raw_send_output_get_result ()

+
gboolean
+qmi_message_wms_raw_send_output_get_result
+                               (QmiMessageWmsRawSendOutput *self,
+                                GError **error);
+

Get the result of the QMI operation.

+
+

Parameters

+
+++++ + + + + + + + + + + + + +

self

a QmiMessageWmsRawSendOutput.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the QMI operation succeeded, FALSE if error +is set.

+
+

Since: 1.0

+
+
+
+

qmi_message_wms_raw_send_output_get_message_id ()

+
gboolean
+qmi_message_wms_raw_send_output_get_message_id
+                               (QmiMessageWmsRawSendOutput *self,
+                                guint16 *value_message_id,
+                                GError **error);
+

Get the 'Message ID' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageWmsRawSendOutput.

 

value_message_id

a placeholder for the output guint16, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.0

+
+
+
+

qmi_message_wms_raw_send_output_get_cdma_cause_code ()

+
gboolean
+qmi_message_wms_raw_send_output_get_cdma_cause_code
+                               (QmiMessageWmsRawSendOutput *self,
+                                QmiWmsCdmaCauseCode *value_cdma_cause_code,
+                                GError **error);
+

Get the 'CDMA Cause Code' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageWmsRawSendOutput.

 

value_cdma_cause_code

a placeholder for the output QmiWmsCdmaCauseCode, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.0

+
+
+
+

qmi_message_wms_raw_send_output_get_cdma_error_class ()

+
gboolean
+qmi_message_wms_raw_send_output_get_cdma_error_class
+                               (QmiMessageWmsRawSendOutput *self,
+                                QmiWmsCdmaErrorClass *value_cdma_error_class,
+                                GError **error);
+

Get the 'CDMA Error Class' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageWmsRawSendOutput.

 

value_cdma_error_class

a placeholder for the output QmiWmsCdmaErrorClass, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.0

+
+
+
+

qmi_message_wms_raw_send_output_get_gsm_wcdma_cause_info ()

+
gboolean
+qmi_message_wms_raw_send_output_get_gsm_wcdma_cause_info
+                               (QmiMessageWmsRawSendOutput *self,
+                                QmiWmsGsmUmtsRpCause *value_gsm_wcdma_cause_info_rp_cause,
+                                QmiWmsGsmUmtsTpCause *value_gsm_wcdma_cause_info_tp_cause,
+                                GError **error);
+

Get the 'GSM WCDMA Cause Info' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + + + + + + +

self

a QmiMessageWmsRawSendOutput.

 

value_gsm_wcdma_cause_info_rp_cause

a placeholder for the output QmiWmsGsmUmtsRpCause, or NULL if not required.

 

value_gsm_wcdma_cause_info_tp_cause

a placeholder for the output QmiWmsGsmUmtsTpCause, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.0

+
+
+
+

qmi_message_wms_raw_send_output_get_message_delivery_failure_type ()

+
gboolean
+qmi_message_wms_raw_send_output_get_message_delivery_failure_type
+                               (QmiMessageWmsRawSendOutput *self,
+                                QmiWmsMessageDeliveryFailureType *value_message_delivery_failure_type,
+                                GError **error);
+

Get the 'Message Delivery Failure Type' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageWmsRawSendOutput.

 

value_message_delivery_failure_type

a placeholder for the output QmiWmsMessageDeliveryFailureType, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.0

+
+
+
+

qmi_client_wms_raw_send ()

+
void
+qmi_client_wms_raw_send (QmiClientWms *self,
+                         QmiMessageWmsRawSendInput *input,
+                         guint timeout,
+                         GCancellable *cancellable,
+                         GAsyncReadyCallback callback,
+                         gpointer user_data);
+

Asynchronously sends a Raw Send request to the device.

+

When the operation is finished, callback + will be invoked in the thread-default main loop of the thread you are calling this method from.

+

You can then call qmi_client_wms_raw_send_finish() to get the result of the operation.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

self

a QmiClientWms.

 

input

a QmiMessageWmsRawSendInput.

 

timeout

maximum time to wait for the method to complete, in seconds.

 

cancellable

a GCancellable or NULL.

 

callback

a GAsyncReadyCallback to call when the request is satisfied.

 

user_data

user data to pass to callback +.

 
+
+

Since: 1.0

+
+
+
+

qmi_client_wms_raw_send_finish ()

+
QmiMessageWmsRawSendOutput *
+qmi_client_wms_raw_send_finish (QmiClientWms *self,
+                                GAsyncResult *res,
+                                GError **error);
+

Finishes an async operation started with qmi_client_wms_raw_send().

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiClientWms.

 

res

the GAsyncResult obtained from the GAsyncReadyCallback passed to qmi_client_wms_raw_send().

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

a QmiMessageWmsRawSendOutput, or NULL if error +is set. The returned value should be freed with qmi_message_wms_raw_send_output_unref().

+
+

Since: 1.0

+
+
+
+

Types and Values

+
+

QmiMessageWmsRawSendInput

+
typedef struct _QmiMessageWmsRawSendInput QmiMessageWmsRawSendInput;
+

The QmiMessageWmsRawSendInput structure contains private data and should only be accessed +using the provided API.

+

Since: 1.0

+
+
+
+

QmiMessageWmsRawSendOutput

+
typedef struct _QmiMessageWmsRawSendOutput QmiMessageWmsRawSendOutput;
+

The QmiMessageWmsRawSendOutput structure contains private data and should only be accessed +using the provided API.

+

Since: 1.0

+
+
+
+ + + \ No newline at end of file diff -Nru libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-WMS-Raw-Write.html libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-WMS-Raw-Write.html --- libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-WMS-Raw-Write.html 2017-03-22 12:28:29.000000000 +0100 +++ libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-WMS-Raw-Write.html 1970-01-01 01:00:00.000000000 +0100 @@ -1,603 +0,0 @@ - - - - -WMS Raw Write: libqmi-glib Reference Manual - - - - - - - - - - - - - - - - -
-
-
- - -
-

WMS Raw Write

-

WMS Raw Write

-
- -
-

Types and Values

- -
-
-

Object Hierarchy

-
    GBoxed
-    ├── QmiMessageWmsRawWriteInput
-    ╰── QmiMessageWmsRawWriteOutput
-
-
-
-

Description

-
-
-

Functions

-
-

qmi_message_wms_raw_write_input_new ()

-
QmiMessageWmsRawWriteInput *
-qmi_message_wms_raw_write_input_new (void);
-

Allocates a new QmiMessageWmsRawWriteInput.

-
-

Returns

-

the newly created QmiMessageWmsRawWriteInput. The returned value should be freed with qmi_message_wms_raw_write_input_unref().

-
-

Since: 1.0

-
-
-
-

qmi_message_wms_raw_write_input_ref ()

-
QmiMessageWmsRawWriteInput *
-qmi_message_wms_raw_write_input_ref (QmiMessageWmsRawWriteInput *self);
-

Atomically increments the reference count of self - by one.

-
-

Parameters

-
----- - - - - - -

self

a QmiMessageWmsRawWriteInput.

 
-
-
-

Returns

-

the new reference to self -.

-
-

Since: 1.0

-
-
-
-

qmi_message_wms_raw_write_input_unref ()

-
void
-qmi_message_wms_raw_write_input_unref (QmiMessageWmsRawWriteInput *self);
-

Atomically decrements the reference count of self - by one. -If the reference count drops to 0, self - is completely disposed.

-
-

Parameters

-
----- - - - - - -

self

a QmiMessageWmsRawWriteInput.

 
-
-

Since: 1.0

-
-
-
-

qmi_message_wms_raw_write_input_get_raw_message_data ()

-
gboolean
-qmi_message_wms_raw_write_input_get_raw_message_data
-                               (QmiMessageWmsRawWriteInput *self,
-                                QmiWmsStorageType *value_raw_message_data_storage_type,
-                                QmiWmsMessageFormat *value_raw_message_data_format,
-                                GArray **value_raw_message_data_raw_data,
-                                GError **error);
-

Get the 'Raw Message Data' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - - - - - - - - - - - -

self

a QmiMessageWmsRawWriteInput.

 

value_raw_message_data_storage_type

a placeholder for the output QmiWmsStorageType, or NULL if not required.

 

value_raw_message_data_format

a placeholder for the output QmiWmsMessageFormat, or NULL if not required.

 

value_raw_message_data_raw_data

a placeholder for the output GArray of guint8 elements, or NULL if not required. Do not free it, it is owned by self -.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.0

-
-
-
-

qmi_message_wms_raw_write_input_set_raw_message_data ()

-
gboolean
-qmi_message_wms_raw_write_input_set_raw_message_data
-                               (QmiMessageWmsRawWriteInput *self,
-                                QmiWmsStorageType value_raw_message_data_storage_type,
-                                QmiWmsMessageFormat value_raw_message_data_format,
-                                GArray *value_raw_message_data_raw_data,
-                                GError **error);
-

Set the 'Raw Message Data' field in the message.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - - - - - - - - - - - -

self

a QmiMessageWmsRawWriteInput.

 

value_raw_message_data_storage_type

a QmiWmsStorageType.

 

value_raw_message_data_format

a QmiWmsMessageFormat.

 

value_raw_message_data_raw_data

a GArray of guint8 elements. A new reference to value_raw_message_data_raw_data -will be taken.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if value -was successfully set, FALSE otherwise.

-
-

Since: 1.0

-
-
-
-

qmi_message_wms_raw_write_output_ref ()

-
QmiMessageWmsRawWriteOutput *
-qmi_message_wms_raw_write_output_ref (QmiMessageWmsRawWriteOutput *self);
-

Atomically increments the reference count of self - by one.

-
-

Parameters

-
----- - - - - - -

self

a QmiMessageWmsRawWriteOutput.

 
-
-
-

Returns

-

the new reference to self -.

-
-

Since: 1.0

-
-
-
-

qmi_message_wms_raw_write_output_unref ()

-
void
-qmi_message_wms_raw_write_output_unref
-                               (QmiMessageWmsRawWriteOutput *self);
-

Atomically decrements the reference count of self - by one. -If the reference count drops to 0, self - is completely disposed.

-
-

Parameters

-
----- - - - - - -

self

a QmiMessageWmsRawWriteOutput.

 
-
-

Since: 1.0

-
-
-
-

qmi_message_wms_raw_write_output_get_result ()

-
gboolean
-qmi_message_wms_raw_write_output_get_result
-                               (QmiMessageWmsRawWriteOutput *self,
-                                GError **error);
-

Get the result of the QMI operation.

-
-

Parameters

-
----- - - - - - - - - - - - - -

self

a QmiMessageWmsRawWriteOutput.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the QMI operation succeeded, FALSE if error -is set.

-
-

Since: 1.0

-
-
-
-

qmi_message_wms_raw_write_output_get_memory_index ()

-
gboolean
-qmi_message_wms_raw_write_output_get_memory_index
-                               (QmiMessageWmsRawWriteOutput *self,
-                                guint32 *value_memory_index,
-                                GError **error);
-

Get the 'Memory Index' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessageWmsRawWriteOutput.

 

value_memory_index

a placeholder for the output guint32, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.0

-
-
-
-

qmi_client_wms_raw_write ()

-
void
-qmi_client_wms_raw_write (QmiClientWms *self,
-                          QmiMessageWmsRawWriteInput *input,
-                          guint timeout,
-                          GCancellable *cancellable,
-                          GAsyncReadyCallback callback,
-                          gpointer user_data);
-

Asynchronously sends a Raw Write request to the device.

-

When the operation is finished, callback - will be invoked in the thread-default main loop of the thread you are calling this method from.

-

You can then call qmi_client_wms_raw_write_finish() to get the result of the operation.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

self

a QmiClientWms.

 

input

a QmiMessageWmsRawWriteInput.

 

timeout

maximum time to wait for the method to complete, in seconds.

 

cancellable

a GCancellable or NULL.

 

callback

a GAsyncReadyCallback to call when the request is satisfied.

 

user_data

user data to pass to callback -.

 
-
-

Since: 1.0

-
-
-
-

qmi_client_wms_raw_write_finish ()

-
QmiMessageWmsRawWriteOutput *
-qmi_client_wms_raw_write_finish (QmiClientWms *self,
-                                 GAsyncResult *res,
-                                 GError **error);
-

Finishes an async operation started with qmi_client_wms_raw_write().

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiClientWms.

 

res

the GAsyncResult obtained from the GAsyncReadyCallback passed to qmi_client_wms_raw_write().

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

a QmiMessageWmsRawWriteOutput, or NULL if error -is set. The returned value should be freed with qmi_message_wms_raw_write_output_unref().

-
-

Since: 1.0

-
-
-
-

Types and Values

-
-

QmiMessageWmsRawWriteInput

-
typedef struct _QmiMessageWmsRawWriteInput QmiMessageWmsRawWriteInput;
-

The QmiMessageWmsRawWriteInput structure contains private data and should only be accessed -using the provided API.

-

Since: 1.0

-
-
-
-

QmiMessageWmsRawWriteOutput

-
typedef struct _QmiMessageWmsRawWriteOutput QmiMessageWmsRawWriteOutput;
-

The QmiMessageWmsRawWriteOutput structure contains private data and should only be accessed -using the provided API.

-

Since: 1.0

-
-
-
- - - \ No newline at end of file diff -Nru libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-WMS-Raw-Write-request.html libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-WMS-Raw-Write-request.html --- libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-WMS-Raw-Write-request.html 1970-01-01 01:00:00.000000000 +0100 +++ libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-WMS-Raw-Write-request.html 2019-01-08 15:19:02.000000000 +0100 @@ -0,0 +1,603 @@ + + + + +WMS Raw Write request: libqmi-glib Reference Manual + + + + + + + + + + + + + + + + +
+
+
+ + +
+

WMS Raw Write request

+

WMS Raw Write request

+
+ +
+

Types and Values

+ +
+
+

Object Hierarchy

+
    GBoxed
+    ├── QmiMessageWmsRawWriteInput
+    ╰── QmiMessageWmsRawWriteOutput
+
+
+
+

Description

+
+
+

Functions

+
+

qmi_message_wms_raw_write_input_new ()

+
QmiMessageWmsRawWriteInput *
+qmi_message_wms_raw_write_input_new (void);
+

Allocates a new QmiMessageWmsRawWriteInput.

+
+

Returns

+

the newly created QmiMessageWmsRawWriteInput. The returned value should be freed with qmi_message_wms_raw_write_input_unref().

+
+

Since: 1.0

+
+
+
+

qmi_message_wms_raw_write_input_ref ()

+
QmiMessageWmsRawWriteInput *
+qmi_message_wms_raw_write_input_ref (QmiMessageWmsRawWriteInput *self);
+

Atomically increments the reference count of self + by one.

+
+

Parameters

+
+++++ + + + + + +

self

a QmiMessageWmsRawWriteInput.

 
+
+
+

Returns

+

the new reference to self +.

+
+

Since: 1.0

+
+
+
+

qmi_message_wms_raw_write_input_unref ()

+
void
+qmi_message_wms_raw_write_input_unref (QmiMessageWmsRawWriteInput *self);
+

Atomically decrements the reference count of self + by one. +If the reference count drops to 0, self + is completely disposed.

+
+

Parameters

+
+++++ + + + + + +

self

a QmiMessageWmsRawWriteInput.

 
+
+

Since: 1.0

+
+
+
+

qmi_message_wms_raw_write_input_get_raw_message_data ()

+
gboolean
+qmi_message_wms_raw_write_input_get_raw_message_data
+                               (QmiMessageWmsRawWriteInput *self,
+                                QmiWmsStorageType *value_raw_message_data_storage_type,
+                                QmiWmsMessageFormat *value_raw_message_data_format,
+                                GArray **value_raw_message_data_raw_data,
+                                GError **error);
+

Get the 'Raw Message Data' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + + + + + + + + + + + +

self

a QmiMessageWmsRawWriteInput.

 

value_raw_message_data_storage_type

a placeholder for the output QmiWmsStorageType, or NULL if not required.

 

value_raw_message_data_format

a placeholder for the output QmiWmsMessageFormat, or NULL if not required.

 

value_raw_message_data_raw_data

a placeholder for the output GArray of guint8 elements, or NULL if not required. Do not free it, it is owned by self +.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.0

+
+
+
+

qmi_message_wms_raw_write_input_set_raw_message_data ()

+
gboolean
+qmi_message_wms_raw_write_input_set_raw_message_data
+                               (QmiMessageWmsRawWriteInput *self,
+                                QmiWmsStorageType value_raw_message_data_storage_type,
+                                QmiWmsMessageFormat value_raw_message_data_format,
+                                GArray *value_raw_message_data_raw_data,
+                                GError **error);
+

Set the 'Raw Message Data' field in the message.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + + + + + + + + + + + +

self

a QmiMessageWmsRawWriteInput.

 

value_raw_message_data_storage_type

a QmiWmsStorageType.

 

value_raw_message_data_format

a QmiWmsMessageFormat.

 

value_raw_message_data_raw_data

a GArray of guint8 elements. A new reference to value_raw_message_data_raw_data +will be taken.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if value +was successfully set, FALSE otherwise.

+
+

Since: 1.0

+
+
+
+

qmi_message_wms_raw_write_output_ref ()

+
QmiMessageWmsRawWriteOutput *
+qmi_message_wms_raw_write_output_ref (QmiMessageWmsRawWriteOutput *self);
+

Atomically increments the reference count of self + by one.

+
+

Parameters

+
+++++ + + + + + +

self

a QmiMessageWmsRawWriteOutput.

 
+
+
+

Returns

+

the new reference to self +.

+
+

Since: 1.0

+
+
+
+

qmi_message_wms_raw_write_output_unref ()

+
void
+qmi_message_wms_raw_write_output_unref
+                               (QmiMessageWmsRawWriteOutput *self);
+

Atomically decrements the reference count of self + by one. +If the reference count drops to 0, self + is completely disposed.

+
+

Parameters

+
+++++ + + + + + +

self

a QmiMessageWmsRawWriteOutput.

 
+
+

Since: 1.0

+
+
+
+

qmi_message_wms_raw_write_output_get_result ()

+
gboolean
+qmi_message_wms_raw_write_output_get_result
+                               (QmiMessageWmsRawWriteOutput *self,
+                                GError **error);
+

Get the result of the QMI operation.

+
+

Parameters

+
+++++ + + + + + + + + + + + + +

self

a QmiMessageWmsRawWriteOutput.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the QMI operation succeeded, FALSE if error +is set.

+
+

Since: 1.0

+
+
+
+

qmi_message_wms_raw_write_output_get_memory_index ()

+
gboolean
+qmi_message_wms_raw_write_output_get_memory_index
+                               (QmiMessageWmsRawWriteOutput *self,
+                                guint32 *value_memory_index,
+                                GError **error);
+

Get the 'Memory Index' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageWmsRawWriteOutput.

 

value_memory_index

a placeholder for the output guint32, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.0

+
+
+
+

qmi_client_wms_raw_write ()

+
void
+qmi_client_wms_raw_write (QmiClientWms *self,
+                          QmiMessageWmsRawWriteInput *input,
+                          guint timeout,
+                          GCancellable *cancellable,
+                          GAsyncReadyCallback callback,
+                          gpointer user_data);
+

Asynchronously sends a Raw Write request to the device.

+

When the operation is finished, callback + will be invoked in the thread-default main loop of the thread you are calling this method from.

+

You can then call qmi_client_wms_raw_write_finish() to get the result of the operation.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

self

a QmiClientWms.

 

input

a QmiMessageWmsRawWriteInput.

 

timeout

maximum time to wait for the method to complete, in seconds.

 

cancellable

a GCancellable or NULL.

 

callback

a GAsyncReadyCallback to call when the request is satisfied.

 

user_data

user data to pass to callback +.

 
+
+

Since: 1.0

+
+
+
+

qmi_client_wms_raw_write_finish ()

+
QmiMessageWmsRawWriteOutput *
+qmi_client_wms_raw_write_finish (QmiClientWms *self,
+                                 GAsyncResult *res,
+                                 GError **error);
+

Finishes an async operation started with qmi_client_wms_raw_write().

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiClientWms.

 

res

the GAsyncResult obtained from the GAsyncReadyCallback passed to qmi_client_wms_raw_write().

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

a QmiMessageWmsRawWriteOutput, or NULL if error +is set. The returned value should be freed with qmi_message_wms_raw_write_output_unref().

+
+

Since: 1.0

+
+
+
+

Types and Values

+
+

QmiMessageWmsRawWriteInput

+
typedef struct _QmiMessageWmsRawWriteInput QmiMessageWmsRawWriteInput;
+

The QmiMessageWmsRawWriteInput structure contains private data and should only be accessed +using the provided API.

+

Since: 1.0

+
+
+
+

QmiMessageWmsRawWriteOutput

+
typedef struct _QmiMessageWmsRawWriteOutput QmiMessageWmsRawWriteOutput;
+

The QmiMessageWmsRawWriteOutput structure contains private data and should only be accessed +using the provided API.

+

Since: 1.0

+
+
+
+ + + \ No newline at end of file diff -Nru libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-WMS-Reset.html libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-WMS-Reset.html --- libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-WMS-Reset.html 2017-03-22 12:28:29.000000000 +0100 +++ libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-WMS-Reset.html 1970-01-01 01:00:00.000000000 +0100 @@ -1,317 +0,0 @@ - - - - -WMS Reset: libqmi-glib Reference Manual - - - - - - - - - - - - - - - - -
-
-
- - -
-

WMS Reset

-

WMS Reset

-
-
-

Functions

- -
-
-

Types and Values

-
---- - - - - -
 QmiMessageWmsResetOutput
-
-
-

Object Hierarchy

-
    GBoxed
-    ╰── QmiMessageWmsResetOutput
-
-
-
-

Description

-
-
-

Functions

-
-

qmi_message_wms_reset_output_ref ()

-
QmiMessageWmsResetOutput *
-qmi_message_wms_reset_output_ref (QmiMessageWmsResetOutput *self);
-

Atomically increments the reference count of self - by one.

-
-

Parameters

-
----- - - - - - -

self

a QmiMessageWmsResetOutput.

 
-
-
-

Returns

-

the new reference to self -.

-
-

Since: 1.0

-
-
-
-

qmi_message_wms_reset_output_unref ()

-
void
-qmi_message_wms_reset_output_unref (QmiMessageWmsResetOutput *self);
-

Atomically decrements the reference count of self - by one. -If the reference count drops to 0, self - is completely disposed.

-
-

Parameters

-
----- - - - - - -

self

a QmiMessageWmsResetOutput.

 
-
-

Since: 1.0

-
-
-
-

qmi_message_wms_reset_output_get_result ()

-
gboolean
-qmi_message_wms_reset_output_get_result
-                               (QmiMessageWmsResetOutput *self,
-                                GError **error);
-

Get the result of the QMI operation.

-
-

Parameters

-
----- - - - - - - - - - - - - -

self

a QmiMessageWmsResetOutput.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the QMI operation succeeded, FALSE if error -is set.

-
-

Since: 1.0

-
-
-
-

qmi_client_wms_reset ()

-
void
-qmi_client_wms_reset (QmiClientWms *self,
-                      gpointer unused,
-                      guint timeout,
-                      GCancellable *cancellable,
-                      GAsyncReadyCallback callback,
-                      gpointer user_data);
-

Asynchronously sends a Reset request to the device.

-

When the operation is finished, callback - will be invoked in the thread-default main loop of the thread you are calling this method from.

-

You can then call qmi_client_wms_reset_finish() to get the result of the operation.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

self

a QmiClientWms.

 

unused

NULL. This message doesn't have any input bundle.

 

timeout

maximum time to wait for the method to complete, in seconds.

 

cancellable

a GCancellable or NULL.

 

callback

a GAsyncReadyCallback to call when the request is satisfied.

 

user_data

user data to pass to callback -.

 
-
-

Since: 1.0

-
-
-
-

qmi_client_wms_reset_finish ()

-
QmiMessageWmsResetOutput *
-qmi_client_wms_reset_finish (QmiClientWms *self,
-                             GAsyncResult *res,
-                             GError **error);
-

Finishes an async operation started with qmi_client_wms_reset().

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiClientWms.

 

res

the GAsyncResult obtained from the GAsyncReadyCallback passed to qmi_client_wms_reset().

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

a QmiMessageWmsResetOutput, or NULL if error -is set. The returned value should be freed with qmi_message_wms_reset_output_unref().

-
-

Since: 1.0

-
-
-
-

Types and Values

-
-

QmiMessageWmsResetOutput

-
typedef struct _QmiMessageWmsResetOutput QmiMessageWmsResetOutput;
-

The QmiMessageWmsResetOutput structure contains private data and should only be accessed -using the provided API.

-

Since: 1.0

-
-
-
- - - \ No newline at end of file diff -Nru libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-WMS-Reset-request.html libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-WMS-Reset-request.html --- libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-WMS-Reset-request.html 1970-01-01 01:00:00.000000000 +0100 +++ libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-WMS-Reset-request.html 2019-01-08 15:19:02.000000000 +0100 @@ -0,0 +1,317 @@ + + + + +WMS Reset request: libqmi-glib Reference Manual + + + + + + + + + + + + + + + + +
+
+
+ + +
+

WMS Reset request

+

WMS Reset request

+
+
+

Functions

+ +
+
+

Types and Values

+
++++ + + + + +
 QmiMessageWmsResetOutput
+
+
+

Object Hierarchy

+
    GBoxed
+    ╰── QmiMessageWmsResetOutput
+
+
+
+

Description

+
+
+

Functions

+
+

qmi_message_wms_reset_output_ref ()

+
QmiMessageWmsResetOutput *
+qmi_message_wms_reset_output_ref (QmiMessageWmsResetOutput *self);
+

Atomically increments the reference count of self + by one.

+
+

Parameters

+
+++++ + + + + + +

self

a QmiMessageWmsResetOutput.

 
+
+
+

Returns

+

the new reference to self +.

+
+

Since: 1.0

+
+
+
+

qmi_message_wms_reset_output_unref ()

+
void
+qmi_message_wms_reset_output_unref (QmiMessageWmsResetOutput *self);
+

Atomically decrements the reference count of self + by one. +If the reference count drops to 0, self + is completely disposed.

+
+

Parameters

+
+++++ + + + + + +

self

a QmiMessageWmsResetOutput.

 
+
+

Since: 1.0

+
+
+
+

qmi_message_wms_reset_output_get_result ()

+
gboolean
+qmi_message_wms_reset_output_get_result
+                               (QmiMessageWmsResetOutput *self,
+                                GError **error);
+

Get the result of the QMI operation.

+
+

Parameters

+
+++++ + + + + + + + + + + + + +

self

a QmiMessageWmsResetOutput.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the QMI operation succeeded, FALSE if error +is set.

+
+

Since: 1.0

+
+
+
+

qmi_client_wms_reset ()

+
void
+qmi_client_wms_reset (QmiClientWms *self,
+                      gpointer unused,
+                      guint timeout,
+                      GCancellable *cancellable,
+                      GAsyncReadyCallback callback,
+                      gpointer user_data);
+

Asynchronously sends a Reset request to the device.

+

When the operation is finished, callback + will be invoked in the thread-default main loop of the thread you are calling this method from.

+

You can then call qmi_client_wms_reset_finish() to get the result of the operation.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

self

a QmiClientWms.

 

unused

NULL. This message doesn't have any input bundle.

 

timeout

maximum time to wait for the method to complete, in seconds.

 

cancellable

a GCancellable or NULL.

 

callback

a GAsyncReadyCallback to call when the request is satisfied.

 

user_data

user data to pass to callback +.

 
+
+

Since: 1.0

+
+
+
+

qmi_client_wms_reset_finish ()

+
QmiMessageWmsResetOutput *
+qmi_client_wms_reset_finish (QmiClientWms *self,
+                             GAsyncResult *res,
+                             GError **error);
+

Finishes an async operation started with qmi_client_wms_reset().

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiClientWms.

 

res

the GAsyncResult obtained from the GAsyncReadyCallback passed to qmi_client_wms_reset().

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

a QmiMessageWmsResetOutput, or NULL if error +is set. The returned value should be freed with qmi_message_wms_reset_output_unref().

+
+

Since: 1.0

+
+
+
+

Types and Values

+
+

QmiMessageWmsResetOutput

+
typedef struct _QmiMessageWmsResetOutput QmiMessageWmsResetOutput;
+

The QmiMessageWmsResetOutput structure contains private data and should only be accessed +using the provided API.

+

Since: 1.0

+
+
+
+ + + \ No newline at end of file diff -Nru libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-WMS-Send-From-Memory-Storage.html libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-WMS-Send-From-Memory-Storage.html --- libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-WMS-Send-From-Memory-Storage.html 2017-03-22 12:28:29.000000000 +0100 +++ libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-WMS-Send-From-Memory-Storage.html 1970-01-01 01:00:00.000000000 +0100 @@ -1,919 +0,0 @@ - - - - -WMS Send From Memory Storage: libqmi-glib Reference Manual - - - - - - - - - - - - - - - - -
-
-
- - -
-

WMS Send From Memory Storage

-

WMS Send From Memory Storage

-
-
-

Functions

-
---- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
-QmiMessageWmsSendFromMemoryStorageInput * - -qmi_message_wms_send_from_memory_storage_input_new () -
-QmiMessageWmsSendFromMemoryStorageInput * - -qmi_message_wms_send_from_memory_storage_input_ref () -
-void - -qmi_message_wms_send_from_memory_storage_input_unref () -
-gboolean - -qmi_message_wms_send_from_memory_storage_input_get_sms_on_ims () -
-gboolean - -qmi_message_wms_send_from_memory_storage_input_set_sms_on_ims () -
-gboolean - -qmi_message_wms_send_from_memory_storage_input_get_information () -
-gboolean - -qmi_message_wms_send_from_memory_storage_input_set_information () -
-QmiMessageWmsSendFromMemoryStorageOutput * - -qmi_message_wms_send_from_memory_storage_output_ref () -
-void - -qmi_message_wms_send_from_memory_storage_output_unref () -
-gboolean - -qmi_message_wms_send_from_memory_storage_output_get_result () -
-gboolean - -qmi_message_wms_send_from_memory_storage_output_get_message_id () -
-gboolean - -qmi_message_wms_send_from_memory_storage_output_get_cdma_cause_code () -
-gboolean - -qmi_message_wms_send_from_memory_storage_output_get_cdma_error_class () -
-gboolean - -qmi_message_wms_send_from_memory_storage_output_get_gsm_wcdma_cause_info () -
-gboolean - -qmi_message_wms_send_from_memory_storage_output_get_message_delivery_failure_type () -
-void - -qmi_client_wms_send_from_memory_storage () -
-QmiMessageWmsSendFromMemoryStorageOutput * - -qmi_client_wms_send_from_memory_storage_finish () -
-
-
-

Types and Values

- -
-
-

Object Hierarchy

-
    GBoxed
-    ├── QmiMessageWmsSendFromMemoryStorageInput
-    ╰── QmiMessageWmsSendFromMemoryStorageOutput
-
-
-
-

Description

-
-
-

Functions

-
-

qmi_message_wms_send_from_memory_storage_input_new ()

-
QmiMessageWmsSendFromMemoryStorageInput *
-qmi_message_wms_send_from_memory_storage_input_new
-                               (void);
-

Allocates a new QmiMessageWmsSendFromMemoryStorageInput.

-
-

Returns

-

the newly created QmiMessageWmsSendFromMemoryStorageInput. The returned value should be freed with qmi_message_wms_send_from_memory_storage_input_unref().

-
-

Since: 1.0

-
-
-
-

qmi_message_wms_send_from_memory_storage_input_ref ()

-
QmiMessageWmsSendFromMemoryStorageInput *
-qmi_message_wms_send_from_memory_storage_input_ref
-                               (QmiMessageWmsSendFromMemoryStorageInput *self);
-

Atomically increments the reference count of self - by one.

-
-

Parameters

-
----- - - - - - -

self

a QmiMessageWmsSendFromMemoryStorageInput.

 
-
-
-

Returns

-

the new reference to self -.

-
-

Since: 1.0

-
-
-
-

qmi_message_wms_send_from_memory_storage_input_unref ()

-
void
-qmi_message_wms_send_from_memory_storage_input_unref
-                               (QmiMessageWmsSendFromMemoryStorageInput *self);
-

Atomically decrements the reference count of self - by one. -If the reference count drops to 0, self - is completely disposed.

-
-

Parameters

-
----- - - - - - -

self

a QmiMessageWmsSendFromMemoryStorageInput.

 
-
-

Since: 1.0

-
-
-
-

qmi_message_wms_send_from_memory_storage_input_get_sms_on_ims ()

-
gboolean
-qmi_message_wms_send_from_memory_storage_input_get_sms_on_ims
-                               (QmiMessageWmsSendFromMemoryStorageInput *self,
-                                gboolean *value_sms_on_ims,
-                                GError **error);
-

Get the 'SMS on IMS' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessageWmsSendFromMemoryStorageInput.

 

value_sms_on_ims

a placeholder for the output gboolean, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.0

-
-
-
-

qmi_message_wms_send_from_memory_storage_input_set_sms_on_ims ()

-
gboolean
-qmi_message_wms_send_from_memory_storage_input_set_sms_on_ims
-                               (QmiMessageWmsSendFromMemoryStorageInput *self,
-                                gboolean value_sms_on_ims,
-                                GError **error);
-

Set the 'SMS on IMS' field in the message.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessageWmsSendFromMemoryStorageInput.

 

value_sms_on_ims

a gboolean.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if value -was successfully set, FALSE otherwise.

-
-

Since: 1.0

-
-
-
-

qmi_message_wms_send_from_memory_storage_input_get_information ()

-
gboolean
-qmi_message_wms_send_from_memory_storage_input_get_information
-                               (QmiMessageWmsSendFromMemoryStorageInput *self,
-                                QmiWmsStorageType *value_information_storage_type,
-                                guint32 *value_information_memory_index,
-                                QmiWmsMessageMode *value_information_message_mode,
-                                GError **error);
-

Get the 'Information' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - - - - - - - - - - - -

self

a QmiMessageWmsSendFromMemoryStorageInput.

 

value_information_storage_type

a placeholder for the output QmiWmsStorageType, or NULL if not required.

 

value_information_memory_index

a placeholder for the output guint32, or NULL if not required.

 

value_information_message_mode

a placeholder for the output QmiWmsMessageMode, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.0

-
-
-
-

qmi_message_wms_send_from_memory_storage_input_set_information ()

-
gboolean
-qmi_message_wms_send_from_memory_storage_input_set_information
-                               (QmiMessageWmsSendFromMemoryStorageInput *self,
-                                QmiWmsStorageType value_information_storage_type,
-                                guint32 value_information_memory_index,
-                                QmiWmsMessageMode value_information_message_mode,
-                                GError **error);
-

Set the 'Information' field in the message.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - - - - - - - - - - - -

self

a QmiMessageWmsSendFromMemoryStorageInput.

 

value_information_storage_type

a QmiWmsStorageType.

 

value_information_memory_index

a guint32.

 

value_information_message_mode

a QmiWmsMessageMode.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if value -was successfully set, FALSE otherwise.

-
-

Since: 1.0

-
-
-
-

qmi_message_wms_send_from_memory_storage_output_ref ()

-
QmiMessageWmsSendFromMemoryStorageOutput *
-qmi_message_wms_send_from_memory_storage_output_ref
-                               (QmiMessageWmsSendFromMemoryStorageOutput *self);
-

Atomically increments the reference count of self - by one.

-
-

Parameters

-
----- - - - - - -

self

a QmiMessageWmsSendFromMemoryStorageOutput.

 
-
-
-

Returns

-

the new reference to self -.

-
-

Since: 1.0

-
-
-
-

qmi_message_wms_send_from_memory_storage_output_unref ()

-
void
-qmi_message_wms_send_from_memory_storage_output_unref
-                               (QmiMessageWmsSendFromMemoryStorageOutput *self);
-

Atomically decrements the reference count of self - by one. -If the reference count drops to 0, self - is completely disposed.

-
-

Parameters

-
----- - - - - - -

self

a QmiMessageWmsSendFromMemoryStorageOutput.

 
-
-

Since: 1.0

-
-
-
-

qmi_message_wms_send_from_memory_storage_output_get_result ()

-
gboolean
-qmi_message_wms_send_from_memory_storage_output_get_result
-                               (QmiMessageWmsSendFromMemoryStorageOutput *self,
-                                GError **error);
-

Get the result of the QMI operation.

-
-

Parameters

-
----- - - - - - - - - - - - - -

self

a QmiMessageWmsSendFromMemoryStorageOutput.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the QMI operation succeeded, FALSE if error -is set.

-
-

Since: 1.0

-
-
-
-

qmi_message_wms_send_from_memory_storage_output_get_message_id ()

-
gboolean
-qmi_message_wms_send_from_memory_storage_output_get_message_id
-                               (QmiMessageWmsSendFromMemoryStorageOutput *self,
-                                guint16 *value_message_id,
-                                GError **error);
-

Get the 'Message ID' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessageWmsSendFromMemoryStorageOutput.

 

value_message_id

a placeholder for the output guint16, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.0

-
-
-
-

qmi_message_wms_send_from_memory_storage_output_get_cdma_cause_code ()

-
gboolean
-qmi_message_wms_send_from_memory_storage_output_get_cdma_cause_code
-                               (QmiMessageWmsSendFromMemoryStorageOutput *self,
-                                QmiWmsCdmaCauseCode *value_cdma_cause_code,
-                                GError **error);
-

Get the 'CDMA Cause Code' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessageWmsSendFromMemoryStorageOutput.

 

value_cdma_cause_code

a placeholder for the output QmiWmsCdmaCauseCode, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.0

-
-
-
-

qmi_message_wms_send_from_memory_storage_output_get_cdma_error_class ()

-
gboolean
-qmi_message_wms_send_from_memory_storage_output_get_cdma_error_class
-                               (QmiMessageWmsSendFromMemoryStorageOutput *self,
-                                QmiWmsCdmaErrorClass *value_cdma_error_class,
-                                GError **error);
-

Get the 'CDMA Error Class' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessageWmsSendFromMemoryStorageOutput.

 

value_cdma_error_class

a placeholder for the output QmiWmsCdmaErrorClass, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.0

-
-
-
-

qmi_message_wms_send_from_memory_storage_output_get_gsm_wcdma_cause_info ()

-
gboolean
-qmi_message_wms_send_from_memory_storage_output_get_gsm_wcdma_cause_info
-                               (QmiMessageWmsSendFromMemoryStorageOutput *self,
-                                QmiWmsGsmUmtsRpCause *value_gsm_wcdma_cause_info_rp_cause,
-                                QmiWmsGsmUmtsTpCause *value_gsm_wcdma_cause_info_tp_cause,
-                                GError **error);
-

Get the 'GSM WCDMA Cause Info' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - - - - - - -

self

a QmiMessageWmsSendFromMemoryStorageOutput.

 

value_gsm_wcdma_cause_info_rp_cause

a placeholder for the output QmiWmsGsmUmtsRpCause, or NULL if not required.

 

value_gsm_wcdma_cause_info_tp_cause

a placeholder for the output QmiWmsGsmUmtsTpCause, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.0

-
-
-
-

qmi_message_wms_send_from_memory_storage_output_get_message_delivery_failure_type ()

-
gboolean
-qmi_message_wms_send_from_memory_storage_output_get_message_delivery_failure_type
-                               (QmiMessageWmsSendFromMemoryStorageOutput *self,
-                                QmiWmsMessageDeliveryFailureType *value_message_delivery_failure_type,
-                                GError **error);
-

Get the 'Message Delivery Failure Type' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessageWmsSendFromMemoryStorageOutput.

 

value_message_delivery_failure_type

a placeholder for the output QmiWmsMessageDeliveryFailureType, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.0

-
-
-
-

qmi_client_wms_send_from_memory_storage ()

-
void
-qmi_client_wms_send_from_memory_storage
-                               (QmiClientWms *self,
-                                QmiMessageWmsSendFromMemoryStorageInput *input,
-                                guint timeout,
-                                GCancellable *cancellable,
-                                GAsyncReadyCallback callback,
-                                gpointer user_data);
-

Asynchronously sends a Send From Memory Storage request to the device.

-

When the operation is finished, callback - will be invoked in the thread-default main loop of the thread you are calling this method from.

-

You can then call qmi_client_wms_send_from_memory_storage_finish() to get the result of the operation.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

self

a QmiClientWms.

 

input

a QmiMessageWmsSendFromMemoryStorageInput.

 

timeout

maximum time to wait for the method to complete, in seconds.

 

cancellable

a GCancellable or NULL.

 

callback

a GAsyncReadyCallback to call when the request is satisfied.

 

user_data

user data to pass to callback -.

 
-
-

Since: 1.0

-
-
-
-

qmi_client_wms_send_from_memory_storage_finish ()

-
QmiMessageWmsSendFromMemoryStorageOutput *
-qmi_client_wms_send_from_memory_storage_finish
-                               (QmiClientWms *self,
-                                GAsyncResult *res,
-                                GError **error);
-

Finishes an async operation started with qmi_client_wms_send_from_memory_storage().

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiClientWms.

 

res

the GAsyncResult obtained from the GAsyncReadyCallback passed to qmi_client_wms_send_from_memory_storage().

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

a QmiMessageWmsSendFromMemoryStorageOutput, or NULL if error -is set. The returned value should be freed with qmi_message_wms_send_from_memory_storage_output_unref().

-
-

Since: 1.0

-
-
-
-

Types and Values

-
-

QmiMessageWmsSendFromMemoryStorageInput

-
typedef struct _QmiMessageWmsSendFromMemoryStorageInput QmiMessageWmsSendFromMemoryStorageInput;
-

The QmiMessageWmsSendFromMemoryStorageInput structure contains private data and should only be accessed -using the provided API.

-

Since: 1.0

-
-
-
-

QmiMessageWmsSendFromMemoryStorageOutput

-
typedef struct _QmiMessageWmsSendFromMemoryStorageOutput QmiMessageWmsSendFromMemoryStorageOutput;
-

The QmiMessageWmsSendFromMemoryStorageOutput structure contains private data and should only be accessed -using the provided API.

-

Since: 1.0

-
-
-
- - - \ No newline at end of file diff -Nru libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-WMS-Send-From-Memory-Storage-request.html libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-WMS-Send-From-Memory-Storage-request.html --- libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-WMS-Send-From-Memory-Storage-request.html 1970-01-01 01:00:00.000000000 +0100 +++ libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-WMS-Send-From-Memory-Storage-request.html 2019-01-08 15:19:02.000000000 +0100 @@ -0,0 +1,919 @@ + + + + +WMS Send From Memory Storage request: libqmi-glib Reference Manual + + + + + + + + + + + + + + + + +
+
+
+ + +
+

WMS Send From Memory Storage request

+

WMS Send From Memory Storage request

+
+
+

Functions

+
++++ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+QmiMessageWmsSendFromMemoryStorageInput * + +qmi_message_wms_send_from_memory_storage_input_new () +
+QmiMessageWmsSendFromMemoryStorageInput * + +qmi_message_wms_send_from_memory_storage_input_ref () +
+void + +qmi_message_wms_send_from_memory_storage_input_unref () +
+gboolean + +qmi_message_wms_send_from_memory_storage_input_get_sms_on_ims () +
+gboolean + +qmi_message_wms_send_from_memory_storage_input_set_sms_on_ims () +
+gboolean + +qmi_message_wms_send_from_memory_storage_input_get_information () +
+gboolean + +qmi_message_wms_send_from_memory_storage_input_set_information () +
+QmiMessageWmsSendFromMemoryStorageOutput * + +qmi_message_wms_send_from_memory_storage_output_ref () +
+void + +qmi_message_wms_send_from_memory_storage_output_unref () +
+gboolean + +qmi_message_wms_send_from_memory_storage_output_get_result () +
+gboolean + +qmi_message_wms_send_from_memory_storage_output_get_message_id () +
+gboolean + +qmi_message_wms_send_from_memory_storage_output_get_cdma_cause_code () +
+gboolean + +qmi_message_wms_send_from_memory_storage_output_get_cdma_error_class () +
+gboolean + +qmi_message_wms_send_from_memory_storage_output_get_gsm_wcdma_cause_info () +
+gboolean + +qmi_message_wms_send_from_memory_storage_output_get_message_delivery_failure_type () +
+void + +qmi_client_wms_send_from_memory_storage () +
+QmiMessageWmsSendFromMemoryStorageOutput * + +qmi_client_wms_send_from_memory_storage_finish () +
+
+
+

Types and Values

+ +
+
+

Object Hierarchy

+
    GBoxed
+    ├── QmiMessageWmsSendFromMemoryStorageInput
+    ╰── QmiMessageWmsSendFromMemoryStorageOutput
+
+
+
+

Description

+
+
+

Functions

+
+

qmi_message_wms_send_from_memory_storage_input_new ()

+
QmiMessageWmsSendFromMemoryStorageInput *
+qmi_message_wms_send_from_memory_storage_input_new
+                               (void);
+

Allocates a new QmiMessageWmsSendFromMemoryStorageInput.

+
+

Returns

+

the newly created QmiMessageWmsSendFromMemoryStorageInput. The returned value should be freed with qmi_message_wms_send_from_memory_storage_input_unref().

+
+

Since: 1.0

+
+
+
+

qmi_message_wms_send_from_memory_storage_input_ref ()

+
QmiMessageWmsSendFromMemoryStorageInput *
+qmi_message_wms_send_from_memory_storage_input_ref
+                               (QmiMessageWmsSendFromMemoryStorageInput *self);
+

Atomically increments the reference count of self + by one.

+
+

Parameters

+
+++++ + + + + + +

self

a QmiMessageWmsSendFromMemoryStorageInput.

 
+
+
+

Returns

+

the new reference to self +.

+
+

Since: 1.0

+
+
+
+

qmi_message_wms_send_from_memory_storage_input_unref ()

+
void
+qmi_message_wms_send_from_memory_storage_input_unref
+                               (QmiMessageWmsSendFromMemoryStorageInput *self);
+

Atomically decrements the reference count of self + by one. +If the reference count drops to 0, self + is completely disposed.

+
+

Parameters

+
+++++ + + + + + +

self

a QmiMessageWmsSendFromMemoryStorageInput.

 
+
+

Since: 1.0

+
+
+
+

qmi_message_wms_send_from_memory_storage_input_get_sms_on_ims ()

+
gboolean
+qmi_message_wms_send_from_memory_storage_input_get_sms_on_ims
+                               (QmiMessageWmsSendFromMemoryStorageInput *self,
+                                gboolean *value_sms_on_ims,
+                                GError **error);
+

Get the 'SMS on IMS' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageWmsSendFromMemoryStorageInput.

 

value_sms_on_ims

a placeholder for the output gboolean, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.0

+
+
+
+

qmi_message_wms_send_from_memory_storage_input_set_sms_on_ims ()

+
gboolean
+qmi_message_wms_send_from_memory_storage_input_set_sms_on_ims
+                               (QmiMessageWmsSendFromMemoryStorageInput *self,
+                                gboolean value_sms_on_ims,
+                                GError **error);
+

Set the 'SMS on IMS' field in the message.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageWmsSendFromMemoryStorageInput.

 

value_sms_on_ims

a gboolean.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if value +was successfully set, FALSE otherwise.

+
+

Since: 1.0

+
+
+
+

qmi_message_wms_send_from_memory_storage_input_get_information ()

+
gboolean
+qmi_message_wms_send_from_memory_storage_input_get_information
+                               (QmiMessageWmsSendFromMemoryStorageInput *self,
+                                QmiWmsStorageType *value_information_storage_type,
+                                guint32 *value_information_memory_index,
+                                QmiWmsMessageMode *value_information_message_mode,
+                                GError **error);
+

Get the 'Information' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + + + + + + + + + + + +

self

a QmiMessageWmsSendFromMemoryStorageInput.

 

value_information_storage_type

a placeholder for the output QmiWmsStorageType, or NULL if not required.

 

value_information_memory_index

a placeholder for the output guint32, or NULL if not required.

 

value_information_message_mode

a placeholder for the output QmiWmsMessageMode, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.0

+
+
+
+

qmi_message_wms_send_from_memory_storage_input_set_information ()

+
gboolean
+qmi_message_wms_send_from_memory_storage_input_set_information
+                               (QmiMessageWmsSendFromMemoryStorageInput *self,
+                                QmiWmsStorageType value_information_storage_type,
+                                guint32 value_information_memory_index,
+                                QmiWmsMessageMode value_information_message_mode,
+                                GError **error);
+

Set the 'Information' field in the message.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + + + + + + + + + + + +

self

a QmiMessageWmsSendFromMemoryStorageInput.

 

value_information_storage_type

a QmiWmsStorageType.

 

value_information_memory_index

a guint32.

 

value_information_message_mode

a QmiWmsMessageMode.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if value +was successfully set, FALSE otherwise.

+
+

Since: 1.0

+
+
+
+

qmi_message_wms_send_from_memory_storage_output_ref ()

+
QmiMessageWmsSendFromMemoryStorageOutput *
+qmi_message_wms_send_from_memory_storage_output_ref
+                               (QmiMessageWmsSendFromMemoryStorageOutput *self);
+

Atomically increments the reference count of self + by one.

+
+

Parameters

+
+++++ + + + + + +

self

a QmiMessageWmsSendFromMemoryStorageOutput.

 
+
+
+

Returns

+

the new reference to self +.

+
+

Since: 1.0

+
+
+
+

qmi_message_wms_send_from_memory_storage_output_unref ()

+
void
+qmi_message_wms_send_from_memory_storage_output_unref
+                               (QmiMessageWmsSendFromMemoryStorageOutput *self);
+

Atomically decrements the reference count of self + by one. +If the reference count drops to 0, self + is completely disposed.

+
+

Parameters

+
+++++ + + + + + +

self

a QmiMessageWmsSendFromMemoryStorageOutput.

 
+
+

Since: 1.0

+
+
+
+

qmi_message_wms_send_from_memory_storage_output_get_result ()

+
gboolean
+qmi_message_wms_send_from_memory_storage_output_get_result
+                               (QmiMessageWmsSendFromMemoryStorageOutput *self,
+                                GError **error);
+

Get the result of the QMI operation.

+
+

Parameters

+
+++++ + + + + + + + + + + + + +

self

a QmiMessageWmsSendFromMemoryStorageOutput.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the QMI operation succeeded, FALSE if error +is set.

+
+

Since: 1.0

+
+
+
+

qmi_message_wms_send_from_memory_storage_output_get_message_id ()

+
gboolean
+qmi_message_wms_send_from_memory_storage_output_get_message_id
+                               (QmiMessageWmsSendFromMemoryStorageOutput *self,
+                                guint16 *value_message_id,
+                                GError **error);
+

Get the 'Message ID' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageWmsSendFromMemoryStorageOutput.

 

value_message_id

a placeholder for the output guint16, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.0

+
+
+
+

qmi_message_wms_send_from_memory_storage_output_get_cdma_cause_code ()

+
gboolean
+qmi_message_wms_send_from_memory_storage_output_get_cdma_cause_code
+                               (QmiMessageWmsSendFromMemoryStorageOutput *self,
+                                QmiWmsCdmaCauseCode *value_cdma_cause_code,
+                                GError **error);
+

Get the 'CDMA Cause Code' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageWmsSendFromMemoryStorageOutput.

 

value_cdma_cause_code

a placeholder for the output QmiWmsCdmaCauseCode, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.0

+
+
+
+

qmi_message_wms_send_from_memory_storage_output_get_cdma_error_class ()

+
gboolean
+qmi_message_wms_send_from_memory_storage_output_get_cdma_error_class
+                               (QmiMessageWmsSendFromMemoryStorageOutput *self,
+                                QmiWmsCdmaErrorClass *value_cdma_error_class,
+                                GError **error);
+

Get the 'CDMA Error Class' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageWmsSendFromMemoryStorageOutput.

 

value_cdma_error_class

a placeholder for the output QmiWmsCdmaErrorClass, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.0

+
+
+
+

qmi_message_wms_send_from_memory_storage_output_get_gsm_wcdma_cause_info ()

+
gboolean
+qmi_message_wms_send_from_memory_storage_output_get_gsm_wcdma_cause_info
+                               (QmiMessageWmsSendFromMemoryStorageOutput *self,
+                                QmiWmsGsmUmtsRpCause *value_gsm_wcdma_cause_info_rp_cause,
+                                QmiWmsGsmUmtsTpCause *value_gsm_wcdma_cause_info_tp_cause,
+                                GError **error);
+

Get the 'GSM WCDMA Cause Info' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + + + + + + +

self

a QmiMessageWmsSendFromMemoryStorageOutput.

 

value_gsm_wcdma_cause_info_rp_cause

a placeholder for the output QmiWmsGsmUmtsRpCause, or NULL if not required.

 

value_gsm_wcdma_cause_info_tp_cause

a placeholder for the output QmiWmsGsmUmtsTpCause, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.0

+
+
+
+

qmi_message_wms_send_from_memory_storage_output_get_message_delivery_failure_type ()

+
gboolean
+qmi_message_wms_send_from_memory_storage_output_get_message_delivery_failure_type
+                               (QmiMessageWmsSendFromMemoryStorageOutput *self,
+                                QmiWmsMessageDeliveryFailureType *value_message_delivery_failure_type,
+                                GError **error);
+

Get the 'Message Delivery Failure Type' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageWmsSendFromMemoryStorageOutput.

 

value_message_delivery_failure_type

a placeholder for the output QmiWmsMessageDeliveryFailureType, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.0

+
+
+
+

qmi_client_wms_send_from_memory_storage ()

+
void
+qmi_client_wms_send_from_memory_storage
+                               (QmiClientWms *self,
+                                QmiMessageWmsSendFromMemoryStorageInput *input,
+                                guint timeout,
+                                GCancellable *cancellable,
+                                GAsyncReadyCallback callback,
+                                gpointer user_data);
+

Asynchronously sends a Send From Memory Storage request to the device.

+

When the operation is finished, callback + will be invoked in the thread-default main loop of the thread you are calling this method from.

+

You can then call qmi_client_wms_send_from_memory_storage_finish() to get the result of the operation.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

self

a QmiClientWms.

 

input

a QmiMessageWmsSendFromMemoryStorageInput.

 

timeout

maximum time to wait for the method to complete, in seconds.

 

cancellable

a GCancellable or NULL.

 

callback

a GAsyncReadyCallback to call when the request is satisfied.

 

user_data

user data to pass to callback +.

 
+
+

Since: 1.0

+
+
+
+

qmi_client_wms_send_from_memory_storage_finish ()

+
QmiMessageWmsSendFromMemoryStorageOutput *
+qmi_client_wms_send_from_memory_storage_finish
+                               (QmiClientWms *self,
+                                GAsyncResult *res,
+                                GError **error);
+

Finishes an async operation started with qmi_client_wms_send_from_memory_storage().

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiClientWms.

 

res

the GAsyncResult obtained from the GAsyncReadyCallback passed to qmi_client_wms_send_from_memory_storage().

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

a QmiMessageWmsSendFromMemoryStorageOutput, or NULL if error +is set. The returned value should be freed with qmi_message_wms_send_from_memory_storage_output_unref().

+
+

Since: 1.0

+
+
+
+

Types and Values

+
+

QmiMessageWmsSendFromMemoryStorageInput

+
typedef struct _QmiMessageWmsSendFromMemoryStorageInput QmiMessageWmsSendFromMemoryStorageInput;
+

The QmiMessageWmsSendFromMemoryStorageInput structure contains private data and should only be accessed +using the provided API.

+

Since: 1.0

+
+
+
+

QmiMessageWmsSendFromMemoryStorageOutput

+
typedef struct _QmiMessageWmsSendFromMemoryStorageOutput QmiMessageWmsSendFromMemoryStorageOutput;
+

The QmiMessageWmsSendFromMemoryStorageOutput structure contains private data and should only be accessed +using the provided API.

+

Since: 1.0

+
+
+
+ + + \ No newline at end of file diff -Nru libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-WMS-Set-Event-Report.html libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-WMS-Set-Event-Report.html --- libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-WMS-Set-Event-Report.html 2017-03-22 12:28:29.000000000 +0100 +++ libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-WMS-Set-Event-Report.html 1970-01-01 01:00:00.000000000 +0100 @@ -1,531 +0,0 @@ - - - - -WMS Set Event Report: libqmi-glib Reference Manual - - - - - - - - - - - - - - - - -
-
-
- - -
-

WMS Set Event Report

-

WMS Set Event Report

-
- -
-

Types and Values

- -
-
-

Object Hierarchy

-
    GBoxed
-    ├── QmiMessageWmsSetEventReportInput
-    ╰── QmiMessageWmsSetEventReportOutput
-
-
-
-

Description

-
-
-

Functions

-
-

qmi_message_wms_set_event_report_input_new ()

-
QmiMessageWmsSetEventReportInput *
-qmi_message_wms_set_event_report_input_new
-                               (void);
-

Allocates a new QmiMessageWmsSetEventReportInput.

-
-

Returns

-

the newly created QmiMessageWmsSetEventReportInput. The returned value should be freed with qmi_message_wms_set_event_report_input_unref().

-
-

Since: 1.0

-
-
-
-

qmi_message_wms_set_event_report_input_ref ()

-
QmiMessageWmsSetEventReportInput *
-qmi_message_wms_set_event_report_input_ref
-                               (QmiMessageWmsSetEventReportInput *self);
-

Atomically increments the reference count of self - by one.

-
-

Parameters

-
----- - - - - - -

self

a QmiMessageWmsSetEventReportInput.

 
-
-
-

Returns

-

the new reference to self -.

-
-

Since: 1.0

-
-
-
-

qmi_message_wms_set_event_report_input_unref ()

-
void
-qmi_message_wms_set_event_report_input_unref
-                               (QmiMessageWmsSetEventReportInput *self);
-

Atomically decrements the reference count of self - by one. -If the reference count drops to 0, self - is completely disposed.

-
-

Parameters

-
----- - - - - - -

self

a QmiMessageWmsSetEventReportInput.

 
-
-

Since: 1.0

-
-
-
-

qmi_message_wms_set_event_report_input_get_new_mt_message_indicator ()

-
gboolean
-qmi_message_wms_set_event_report_input_get_new_mt_message_indicator
-                               (QmiMessageWmsSetEventReportInput *self,
-                                gboolean *value_new_mt_message_indicator_report,
-                                GError **error);
-

Get the 'New MT Message Indicator' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessageWmsSetEventReportInput.

 

value_new_mt_message_indicator_report

a placeholder for the output gboolean, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.0

-
-
-
-

qmi_message_wms_set_event_report_input_set_new_mt_message_indicator ()

-
gboolean
-qmi_message_wms_set_event_report_input_set_new_mt_message_indicator
-                               (QmiMessageWmsSetEventReportInput *self,
-                                gboolean value_new_mt_message_indicator_report,
-                                GError **error);
-

Set the 'New MT Message Indicator' field in the message.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessageWmsSetEventReportInput.

 

value_new_mt_message_indicator_report

a gboolean.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if value -was successfully set, FALSE otherwise.

-
-

Since: 1.0

-
-
-
-

qmi_message_wms_set_event_report_output_ref ()

-
QmiMessageWmsSetEventReportOutput *
-qmi_message_wms_set_event_report_output_ref
-                               (QmiMessageWmsSetEventReportOutput *self);
-

Atomically increments the reference count of self - by one.

-
-

Parameters

-
----- - - - - - -

self

a QmiMessageWmsSetEventReportOutput.

 
-
-
-

Returns

-

the new reference to self -.

-
-

Since: 1.0

-
-
-
-

qmi_message_wms_set_event_report_output_unref ()

-
void
-qmi_message_wms_set_event_report_output_unref
-                               (QmiMessageWmsSetEventReportOutput *self);
-

Atomically decrements the reference count of self - by one. -If the reference count drops to 0, self - is completely disposed.

-
-

Parameters

-
----- - - - - - -

self

a QmiMessageWmsSetEventReportOutput.

 
-
-

Since: 1.0

-
-
-
-

qmi_message_wms_set_event_report_output_get_result ()

-
gboolean
-qmi_message_wms_set_event_report_output_get_result
-                               (QmiMessageWmsSetEventReportOutput *self,
-                                GError **error);
-

Get the result of the QMI operation.

-
-

Parameters

-
----- - - - - - - - - - - - - -

self

a QmiMessageWmsSetEventReportOutput.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the QMI operation succeeded, FALSE if error -is set.

-
-

Since: 1.0

-
-
-
-

qmi_client_wms_set_event_report ()

-
void
-qmi_client_wms_set_event_report (QmiClientWms *self,
-                                 QmiMessageWmsSetEventReportInput *input,
-                                 guint timeout,
-                                 GCancellable *cancellable,
-                                 GAsyncReadyCallback callback,
-                                 gpointer user_data);
-

Asynchronously sends a Set Event Report request to the device.

-

When the operation is finished, callback - will be invoked in the thread-default main loop of the thread you are calling this method from.

-

You can then call qmi_client_wms_set_event_report_finish() to get the result of the operation.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

self

a QmiClientWms.

 

input

a QmiMessageWmsSetEventReportInput.

 

timeout

maximum time to wait for the method to complete, in seconds.

 

cancellable

a GCancellable or NULL.

 

callback

a GAsyncReadyCallback to call when the request is satisfied.

 

user_data

user data to pass to callback -.

 
-
-

Since: 1.0

-
-
-
-

qmi_client_wms_set_event_report_finish ()

-
QmiMessageWmsSetEventReportOutput *
-qmi_client_wms_set_event_report_finish
-                               (QmiClientWms *self,
-                                GAsyncResult *res,
-                                GError **error);
-

Finishes an async operation started with qmi_client_wms_set_event_report().

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiClientWms.

 

res

the GAsyncResult obtained from the GAsyncReadyCallback passed to qmi_client_wms_set_event_report().

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

a QmiMessageWmsSetEventReportOutput, or NULL if error -is set. The returned value should be freed with qmi_message_wms_set_event_report_output_unref().

-
-

Since: 1.0

-
-
-
-

Types and Values

-
-

QmiMessageWmsSetEventReportInput

-
typedef struct _QmiMessageWmsSetEventReportInput QmiMessageWmsSetEventReportInput;
-

The QmiMessageWmsSetEventReportInput structure contains private data and should only be accessed -using the provided API.

-

Since: 1.0

-
-
-
-

QmiMessageWmsSetEventReportOutput

-
typedef struct _QmiMessageWmsSetEventReportOutput QmiMessageWmsSetEventReportOutput;
-

The QmiMessageWmsSetEventReportOutput structure contains private data and should only be accessed -using the provided API.

-

Since: 1.0

-
-
-
- - - \ No newline at end of file diff -Nru libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-WMS-Set-Event-Report-request.html libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-WMS-Set-Event-Report-request.html --- libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-WMS-Set-Event-Report-request.html 1970-01-01 01:00:00.000000000 +0100 +++ libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-WMS-Set-Event-Report-request.html 2019-01-08 15:19:02.000000000 +0100 @@ -0,0 +1,531 @@ + + + + +WMS Set Event Report request: libqmi-glib Reference Manual + + + + + + + + + + + + + + + + +
+
+
+ + +
+

WMS Set Event Report request

+

WMS Set Event Report request

+
+ +
+

Types and Values

+ +
+
+

Object Hierarchy

+
    GBoxed
+    ├── QmiMessageWmsSetEventReportInput
+    ╰── QmiMessageWmsSetEventReportOutput
+
+
+
+

Description

+
+
+

Functions

+
+

qmi_message_wms_set_event_report_input_new ()

+
QmiMessageWmsSetEventReportInput *
+qmi_message_wms_set_event_report_input_new
+                               (void);
+

Allocates a new QmiMessageWmsSetEventReportInput.

+
+

Returns

+

the newly created QmiMessageWmsSetEventReportInput. The returned value should be freed with qmi_message_wms_set_event_report_input_unref().

+
+

Since: 1.0

+
+
+
+

qmi_message_wms_set_event_report_input_ref ()

+
QmiMessageWmsSetEventReportInput *
+qmi_message_wms_set_event_report_input_ref
+                               (QmiMessageWmsSetEventReportInput *self);
+

Atomically increments the reference count of self + by one.

+
+

Parameters

+
+++++ + + + + + +

self

a QmiMessageWmsSetEventReportInput.

 
+
+
+

Returns

+

the new reference to self +.

+
+

Since: 1.0

+
+
+
+

qmi_message_wms_set_event_report_input_unref ()

+
void
+qmi_message_wms_set_event_report_input_unref
+                               (QmiMessageWmsSetEventReportInput *self);
+

Atomically decrements the reference count of self + by one. +If the reference count drops to 0, self + is completely disposed.

+
+

Parameters

+
+++++ + + + + + +

self

a QmiMessageWmsSetEventReportInput.

 
+
+

Since: 1.0

+
+
+
+

qmi_message_wms_set_event_report_input_get_new_mt_message_indicator ()

+
gboolean
+qmi_message_wms_set_event_report_input_get_new_mt_message_indicator
+                               (QmiMessageWmsSetEventReportInput *self,
+                                gboolean *value_new_mt_message_indicator_report,
+                                GError **error);
+

Get the 'New MT Message Indicator' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageWmsSetEventReportInput.

 

value_new_mt_message_indicator_report

a placeholder for the output gboolean, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.0

+
+
+
+

qmi_message_wms_set_event_report_input_set_new_mt_message_indicator ()

+
gboolean
+qmi_message_wms_set_event_report_input_set_new_mt_message_indicator
+                               (QmiMessageWmsSetEventReportInput *self,
+                                gboolean value_new_mt_message_indicator_report,
+                                GError **error);
+

Set the 'New MT Message Indicator' field in the message.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageWmsSetEventReportInput.

 

value_new_mt_message_indicator_report

a gboolean.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if value +was successfully set, FALSE otherwise.

+
+

Since: 1.0

+
+
+
+

qmi_message_wms_set_event_report_output_ref ()

+
QmiMessageWmsSetEventReportOutput *
+qmi_message_wms_set_event_report_output_ref
+                               (QmiMessageWmsSetEventReportOutput *self);
+

Atomically increments the reference count of self + by one.

+
+

Parameters

+
+++++ + + + + + +

self

a QmiMessageWmsSetEventReportOutput.

 
+
+
+

Returns

+

the new reference to self +.

+
+

Since: 1.0

+
+
+
+

qmi_message_wms_set_event_report_output_unref ()

+
void
+qmi_message_wms_set_event_report_output_unref
+                               (QmiMessageWmsSetEventReportOutput *self);
+

Atomically decrements the reference count of self + by one. +If the reference count drops to 0, self + is completely disposed.

+
+

Parameters

+
+++++ + + + + + +

self

a QmiMessageWmsSetEventReportOutput.

 
+
+

Since: 1.0

+
+
+
+

qmi_message_wms_set_event_report_output_get_result ()

+
gboolean
+qmi_message_wms_set_event_report_output_get_result
+                               (QmiMessageWmsSetEventReportOutput *self,
+                                GError **error);
+

Get the result of the QMI operation.

+
+

Parameters

+
+++++ + + + + + + + + + + + + +

self

a QmiMessageWmsSetEventReportOutput.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the QMI operation succeeded, FALSE if error +is set.

+
+

Since: 1.0

+
+
+
+

qmi_client_wms_set_event_report ()

+
void
+qmi_client_wms_set_event_report (QmiClientWms *self,
+                                 QmiMessageWmsSetEventReportInput *input,
+                                 guint timeout,
+                                 GCancellable *cancellable,
+                                 GAsyncReadyCallback callback,
+                                 gpointer user_data);
+

Asynchronously sends a Set Event Report request to the device.

+

When the operation is finished, callback + will be invoked in the thread-default main loop of the thread you are calling this method from.

+

You can then call qmi_client_wms_set_event_report_finish() to get the result of the operation.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

self

a QmiClientWms.

 

input

a QmiMessageWmsSetEventReportInput.

 

timeout

maximum time to wait for the method to complete, in seconds.

 

cancellable

a GCancellable or NULL.

 

callback

a GAsyncReadyCallback to call when the request is satisfied.

 

user_data

user data to pass to callback +.

 
+
+

Since: 1.0

+
+
+
+

qmi_client_wms_set_event_report_finish ()

+
QmiMessageWmsSetEventReportOutput *
+qmi_client_wms_set_event_report_finish
+                               (QmiClientWms *self,
+                                GAsyncResult *res,
+                                GError **error);
+

Finishes an async operation started with qmi_client_wms_set_event_report().

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiClientWms.

 

res

the GAsyncResult obtained from the GAsyncReadyCallback passed to qmi_client_wms_set_event_report().

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

a QmiMessageWmsSetEventReportOutput, or NULL if error +is set. The returned value should be freed with qmi_message_wms_set_event_report_output_unref().

+
+

Since: 1.0

+
+
+
+

Types and Values

+
+

QmiMessageWmsSetEventReportInput

+
typedef struct _QmiMessageWmsSetEventReportInput QmiMessageWmsSetEventReportInput;
+

The QmiMessageWmsSetEventReportInput structure contains private data and should only be accessed +using the provided API.

+

Since: 1.0

+
+
+
+

QmiMessageWmsSetEventReportOutput

+
typedef struct _QmiMessageWmsSetEventReportOutput QmiMessageWmsSetEventReportOutput;
+

The QmiMessageWmsSetEventReportOutput structure contains private data and should only be accessed +using the provided API.

+

Since: 1.0

+
+
+
+ + + \ No newline at end of file diff -Nru libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-WMS-Set-Routes.html libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-WMS-Set-Routes.html --- libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-WMS-Set-Routes.html 2017-03-22 12:28:29.000000000 +0100 +++ libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-WMS-Set-Routes.html 1970-01-01 01:00:00.000000000 +0100 @@ -1,680 +0,0 @@ - - - - -WMS Set Routes: libqmi-glib Reference Manual - - - - - - - - - - - - - - - - -
-
-
- - -
-

WMS Set Routes

-

WMS Set Routes

-
- - -
-

Object Hierarchy

-
    GBoxed
-    ├── QmiMessageWmsSetRoutesInput
-    ╰── QmiMessageWmsSetRoutesOutput
-
-
-
-

Description

-
-
-

Functions

-
-

qmi_message_wms_set_routes_input_new ()

-
QmiMessageWmsSetRoutesInput *
-qmi_message_wms_set_routes_input_new (void);
-

Allocates a new QmiMessageWmsSetRoutesInput.

-
-

Returns

-

the newly created QmiMessageWmsSetRoutesInput. The returned value should be freed with qmi_message_wms_set_routes_input_unref().

-
-

Since: 1.0

-
-
-
-

qmi_message_wms_set_routes_input_ref ()

-
QmiMessageWmsSetRoutesInput *
-qmi_message_wms_set_routes_input_ref (QmiMessageWmsSetRoutesInput *self);
-

Atomically increments the reference count of self - by one.

-
-

Parameters

-
----- - - - - - -

self

a QmiMessageWmsSetRoutesInput.

 
-
-
-

Returns

-

the new reference to self -.

-
-

Since: 1.0

-
-
-
-

qmi_message_wms_set_routes_input_unref ()

-
void
-qmi_message_wms_set_routes_input_unref
-                               (QmiMessageWmsSetRoutesInput *self);
-

Atomically decrements the reference count of self - by one. -If the reference count drops to 0, self - is completely disposed.

-
-

Parameters

-
----- - - - - - -

self

a QmiMessageWmsSetRoutesInput.

 
-
-

Since: 1.0

-
-
-
-

qmi_message_wms_set_routes_input_get_transfer_status_report ()

-
gboolean
-qmi_message_wms_set_routes_input_get_transfer_status_report
-                               (QmiMessageWmsSetRoutesInput *self,
-                                QmiWmsTransferIndication *value_transfer_status_report,
-                                GError **error);
-

Get the 'Transfer Status Report' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessageWmsSetRoutesInput.

 

value_transfer_status_report

a placeholder for the output QmiWmsTransferIndication, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.0

-
-
-
-

qmi_message_wms_set_routes_input_set_transfer_status_report ()

-
gboolean
-qmi_message_wms_set_routes_input_set_transfer_status_report
-                               (QmiMessageWmsSetRoutesInput *self,
-                                QmiWmsTransferIndication value_transfer_status_report,
-                                GError **error);
-

Set the 'Transfer Status Report' field in the message.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessageWmsSetRoutesInput.

 

value_transfer_status_report

a QmiWmsTransferIndication.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if value -was successfully set, FALSE otherwise.

-
-

Since: 1.0

-
-
-
-

qmi_message_wms_set_routes_input_get_route_list ()

-
gboolean
-qmi_message_wms_set_routes_input_get_route_list
-                               (QmiMessageWmsSetRoutesInput *self,
-                                GArray **value_route_list,
-                                GError **error);
-

Get the 'Route List' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessageWmsSetRoutesInput.

 

value_route_list

a placeholder for the output GArray of QmiMessageWmsSetRoutesInputRouteListElement elements, or NULL if not required. Do not free it, it is owned by self -.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.0

-
-
-
-

qmi_message_wms_set_routes_input_set_route_list ()

-
gboolean
-qmi_message_wms_set_routes_input_set_route_list
-                               (QmiMessageWmsSetRoutesInput *self,
-                                GArray *value_route_list,
-                                GError **error);
-

Set the 'Route List' field in the message.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiMessageWmsSetRoutesInput.

 

value_route_list

a GArray of QmiMessageWmsSetRoutesInputRouteListElement elements. A new reference to value_route_list -will be taken.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if value -was successfully set, FALSE otherwise.

-
-

Since: 1.0

-
-
-
-

qmi_message_wms_set_routes_output_ref ()

-
QmiMessageWmsSetRoutesOutput *
-qmi_message_wms_set_routes_output_ref (QmiMessageWmsSetRoutesOutput *self);
-

Atomically increments the reference count of self - by one.

-
-

Parameters

-
----- - - - - - -

self

a QmiMessageWmsSetRoutesOutput.

 
-
-
-

Returns

-

the new reference to self -.

-
-

Since: 1.0

-
-
-
-

qmi_message_wms_set_routes_output_unref ()

-
void
-qmi_message_wms_set_routes_output_unref
-                               (QmiMessageWmsSetRoutesOutput *self);
-

Atomically decrements the reference count of self - by one. -If the reference count drops to 0, self - is completely disposed.

-
-

Parameters

-
----- - - - - - -

self

a QmiMessageWmsSetRoutesOutput.

 
-
-

Since: 1.0

-
-
-
-

qmi_message_wms_set_routes_output_get_result ()

-
gboolean
-qmi_message_wms_set_routes_output_get_result
-                               (QmiMessageWmsSetRoutesOutput *self,
-                                GError **error);
-

Get the result of the QMI operation.

-
-

Parameters

-
----- - - - - - - - - - - - - -

self

a QmiMessageWmsSetRoutesOutput.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the QMI operation succeeded, FALSE if error -is set.

-
-

Since: 1.0

-
-
-
-

qmi_client_wms_set_routes ()

-
void
-qmi_client_wms_set_routes (QmiClientWms *self,
-                           QmiMessageWmsSetRoutesInput *input,
-                           guint timeout,
-                           GCancellable *cancellable,
-                           GAsyncReadyCallback callback,
-                           gpointer user_data);
-

Asynchronously sends a Set Routes request to the device.

-

When the operation is finished, callback - will be invoked in the thread-default main loop of the thread you are calling this method from.

-

You can then call qmi_client_wms_set_routes_finish() to get the result of the operation.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

self

a QmiClientWms.

 

input

a QmiMessageWmsSetRoutesInput.

 

timeout

maximum time to wait for the method to complete, in seconds.

 

cancellable

a GCancellable or NULL.

 

callback

a GAsyncReadyCallback to call when the request is satisfied.

 

user_data

user data to pass to callback -.

 
-
-

Since: 1.0

-
-
-
-

qmi_client_wms_set_routes_finish ()

-
QmiMessageWmsSetRoutesOutput *
-qmi_client_wms_set_routes_finish (QmiClientWms *self,
-                                  GAsyncResult *res,
-                                  GError **error);
-

Finishes an async operation started with qmi_client_wms_set_routes().

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

self

a QmiClientWms.

 

res

the GAsyncResult obtained from the GAsyncReadyCallback passed to qmi_client_wms_set_routes().

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

a QmiMessageWmsSetRoutesOutput, or NULL if error -is set. The returned value should be freed with qmi_message_wms_set_routes_output_unref().

-
-

Since: 1.0

-
-
-
-

Types and Values

-
-

QmiMessageWmsSetRoutesInput

-
typedef struct _QmiMessageWmsSetRoutesInput QmiMessageWmsSetRoutesInput;
-

The QmiMessageWmsSetRoutesInput structure contains private data and should only be accessed -using the provided API.

-

Since: 1.0

-
-
-
-

QmiMessageWmsSetRoutesInputRouteListElement

-
typedef struct {
-    QmiWmsMessageType message_type;
-    QmiWmsMessageClass message_class;
-    QmiWmsStorageType storage;
-    QmiWmsReceiptAction receipt_action;
-} QmiMessageWmsSetRoutesInputRouteListElement;
-
-

A QmiMessageWmsSetRoutesInputRouteListElement struct.

-
-

Members

-
----- - - - - - - - - - - - - - - - - - - - - - - -

QmiWmsMessageType message_type;

a QmiWmsMessageType.

 

QmiWmsMessageClass message_class;

a QmiWmsMessageClass.

 

QmiWmsStorageType storage;

a QmiWmsStorageType.

 

QmiWmsReceiptAction receipt_action;

a QmiWmsReceiptAction.

 
-
-

Since: 1.0

-
-
-
-

QmiMessageWmsSetRoutesOutput

-
typedef struct _QmiMessageWmsSetRoutesOutput QmiMessageWmsSetRoutesOutput;
-

The QmiMessageWmsSetRoutesOutput structure contains private data and should only be accessed -using the provided API.

-

Since: 1.0

-
-
-
- - - \ No newline at end of file diff -Nru libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-WMS-Set-Routes-request.html libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-WMS-Set-Routes-request.html --- libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-WMS-Set-Routes-request.html 1970-01-01 01:00:00.000000000 +0100 +++ libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-WMS-Set-Routes-request.html 2019-01-08 15:19:02.000000000 +0100 @@ -0,0 +1,680 @@ + + + + +WMS Set Routes request: libqmi-glib Reference Manual + + + + + + + + + + + + + + + + +
+
+
+ + +
+

WMS Set Routes request

+

WMS Set Routes request

+
+ + +
+

Object Hierarchy

+
    GBoxed
+    ├── QmiMessageWmsSetRoutesInput
+    ╰── QmiMessageWmsSetRoutesOutput
+
+
+
+

Description

+
+
+

Functions

+
+

qmi_message_wms_set_routes_input_new ()

+
QmiMessageWmsSetRoutesInput *
+qmi_message_wms_set_routes_input_new (void);
+

Allocates a new QmiMessageWmsSetRoutesInput.

+
+

Returns

+

the newly created QmiMessageWmsSetRoutesInput. The returned value should be freed with qmi_message_wms_set_routes_input_unref().

+
+

Since: 1.0

+
+
+
+

qmi_message_wms_set_routes_input_ref ()

+
QmiMessageWmsSetRoutesInput *
+qmi_message_wms_set_routes_input_ref (QmiMessageWmsSetRoutesInput *self);
+

Atomically increments the reference count of self + by one.

+
+

Parameters

+
+++++ + + + + + +

self

a QmiMessageWmsSetRoutesInput.

 
+
+
+

Returns

+

the new reference to self +.

+
+

Since: 1.0

+
+
+
+

qmi_message_wms_set_routes_input_unref ()

+
void
+qmi_message_wms_set_routes_input_unref
+                               (QmiMessageWmsSetRoutesInput *self);
+

Atomically decrements the reference count of self + by one. +If the reference count drops to 0, self + is completely disposed.

+
+

Parameters

+
+++++ + + + + + +

self

a QmiMessageWmsSetRoutesInput.

 
+
+

Since: 1.0

+
+
+
+

qmi_message_wms_set_routes_input_get_transfer_status_report ()

+
gboolean
+qmi_message_wms_set_routes_input_get_transfer_status_report
+                               (QmiMessageWmsSetRoutesInput *self,
+                                QmiWmsTransferIndication *value_transfer_status_report,
+                                GError **error);
+

Get the 'Transfer Status Report' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageWmsSetRoutesInput.

 

value_transfer_status_report

a placeholder for the output QmiWmsTransferIndication, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.0

+
+
+
+

qmi_message_wms_set_routes_input_set_transfer_status_report ()

+
gboolean
+qmi_message_wms_set_routes_input_set_transfer_status_report
+                               (QmiMessageWmsSetRoutesInput *self,
+                                QmiWmsTransferIndication value_transfer_status_report,
+                                GError **error);
+

Set the 'Transfer Status Report' field in the message.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageWmsSetRoutesInput.

 

value_transfer_status_report

a QmiWmsTransferIndication.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if value +was successfully set, FALSE otherwise.

+
+

Since: 1.0

+
+
+
+

qmi_message_wms_set_routes_input_get_route_list ()

+
gboolean
+qmi_message_wms_set_routes_input_get_route_list
+                               (QmiMessageWmsSetRoutesInput *self,
+                                GArray **value_route_list,
+                                GError **error);
+

Get the 'Route List' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageWmsSetRoutesInput.

 

value_route_list

a placeholder for the output GArray of QmiMessageWmsSetRoutesInputRouteListElement elements, or NULL if not required. Do not free it, it is owned by self +.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.0

+
+
+
+

qmi_message_wms_set_routes_input_set_route_list ()

+
gboolean
+qmi_message_wms_set_routes_input_set_route_list
+                               (QmiMessageWmsSetRoutesInput *self,
+                                GArray *value_route_list,
+                                GError **error);
+

Set the 'Route List' field in the message.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiMessageWmsSetRoutesInput.

 

value_route_list

a GArray of QmiMessageWmsSetRoutesInputRouteListElement elements. A new reference to value_route_list +will be taken.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if value +was successfully set, FALSE otherwise.

+
+

Since: 1.0

+
+
+
+

qmi_message_wms_set_routes_output_ref ()

+
QmiMessageWmsSetRoutesOutput *
+qmi_message_wms_set_routes_output_ref (QmiMessageWmsSetRoutesOutput *self);
+

Atomically increments the reference count of self + by one.

+
+

Parameters

+
+++++ + + + + + +

self

a QmiMessageWmsSetRoutesOutput.

 
+
+
+

Returns

+

the new reference to self +.

+
+

Since: 1.0

+
+
+
+

qmi_message_wms_set_routes_output_unref ()

+
void
+qmi_message_wms_set_routes_output_unref
+                               (QmiMessageWmsSetRoutesOutput *self);
+

Atomically decrements the reference count of self + by one. +If the reference count drops to 0, self + is completely disposed.

+
+

Parameters

+
+++++ + + + + + +

self

a QmiMessageWmsSetRoutesOutput.

 
+
+

Since: 1.0

+
+
+
+

qmi_message_wms_set_routes_output_get_result ()

+
gboolean
+qmi_message_wms_set_routes_output_get_result
+                               (QmiMessageWmsSetRoutesOutput *self,
+                                GError **error);
+

Get the result of the QMI operation.

+
+

Parameters

+
+++++ + + + + + + + + + + + + +

self

a QmiMessageWmsSetRoutesOutput.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the QMI operation succeeded, FALSE if error +is set.

+
+

Since: 1.0

+
+
+
+

qmi_client_wms_set_routes ()

+
void
+qmi_client_wms_set_routes (QmiClientWms *self,
+                           QmiMessageWmsSetRoutesInput *input,
+                           guint timeout,
+                           GCancellable *cancellable,
+                           GAsyncReadyCallback callback,
+                           gpointer user_data);
+

Asynchronously sends a Set Routes request to the device.

+

When the operation is finished, callback + will be invoked in the thread-default main loop of the thread you are calling this method from.

+

You can then call qmi_client_wms_set_routes_finish() to get the result of the operation.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

self

a QmiClientWms.

 

input

a QmiMessageWmsSetRoutesInput.

 

timeout

maximum time to wait for the method to complete, in seconds.

 

cancellable

a GCancellable or NULL.

 

callback

a GAsyncReadyCallback to call when the request is satisfied.

 

user_data

user data to pass to callback +.

 
+
+

Since: 1.0

+
+
+
+

qmi_client_wms_set_routes_finish ()

+
QmiMessageWmsSetRoutesOutput *
+qmi_client_wms_set_routes_finish (QmiClientWms *self,
+                                  GAsyncResult *res,
+                                  GError **error);
+

Finishes an async operation started with qmi_client_wms_set_routes().

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

a QmiClientWms.

 

res

the GAsyncResult obtained from the GAsyncReadyCallback passed to qmi_client_wms_set_routes().

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

a QmiMessageWmsSetRoutesOutput, or NULL if error +is set. The returned value should be freed with qmi_message_wms_set_routes_output_unref().

+
+

Since: 1.0

+
+
+
+

Types and Values

+
+

QmiMessageWmsSetRoutesInput

+
typedef struct _QmiMessageWmsSetRoutesInput QmiMessageWmsSetRoutesInput;
+

The QmiMessageWmsSetRoutesInput structure contains private data and should only be accessed +using the provided API.

+

Since: 1.0

+
+
+
+

QmiMessageWmsSetRoutesInputRouteListElement

+
typedef struct {
+    QmiWmsMessageType message_type;
+    QmiWmsMessageClass message_class;
+    QmiWmsStorageType storage;
+    QmiWmsReceiptAction receipt_action;
+} QmiMessageWmsSetRoutesInputRouteListElement;
+
+

A QmiMessageWmsSetRoutesInputRouteListElement struct.

+
+

Members

+
+++++ + + + + + + + + + + + + + + + + + + + + + + +

QmiWmsMessageType message_type;

a QmiWmsMessageType.

 

QmiWmsMessageClass message_class;

a QmiWmsMessageClass.

 

QmiWmsStorageType storage;

a QmiWmsStorageType.

 

QmiWmsReceiptAction receipt_action;

a QmiWmsReceiptAction.

 
+
+

Since: 1.0

+
+
+
+

QmiMessageWmsSetRoutesOutput

+
typedef struct _QmiMessageWmsSetRoutesOutput QmiMessageWmsSetRoutesOutput;
+

The QmiMessageWmsSetRoutesOutput structure contains private data and should only be accessed +using the provided API.

+

Since: 1.0

+
+
+
+ + + \ No newline at end of file diff -Nru libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-WMS-SMSC-Address.html libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-WMS-SMSC-Address.html --- libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-WMS-SMSC-Address.html 2017-03-22 12:28:29.000000000 +0100 +++ libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-WMS-SMSC-Address.html 1970-01-01 01:00:00.000000000 +0100 @@ -1,214 +0,0 @@ - - - - -WMS SMSC Address: libqmi-glib Reference Manual - - - - - - - - - - - - - - - - -
-
-
- - -
-

WMS SMSC Address

-

WMS SMSC Address

-
- -
-

Types and Values

- -
-
-

Object Hierarchy

-
    GBoxed
-    ╰── QmiIndicationWmsSmscAddressOutput
-
-
-
-

Description

-
-
-

Functions

-
-

qmi_indication_wms_smsc_address_output_ref ()

-
QmiIndicationWmsSmscAddressOutput *
-qmi_indication_wms_smsc_address_output_ref
-                               (QmiIndicationWmsSmscAddressOutput *self);
-

Atomically increments the reference count of self - by one.

-
-

Parameters

-
----- - - - - - -

self

a QmiIndicationWmsSmscAddressOutput.

 
-
-
-

Returns

-

the new reference to self -.

-
-

Since: 1.14

-
-
-
-

qmi_indication_wms_smsc_address_output_unref ()

-
void
-qmi_indication_wms_smsc_address_output_unref
-                               (QmiIndicationWmsSmscAddressOutput *self);
-

Atomically decrements the reference count of self - by one. -If the reference count drops to 0, self - is completely disposed.

-
-

Parameters

-
----- - - - - - -

self

a QmiIndicationWmsSmscAddressOutput.

 
-
-

Since: 1.14

-
-
-
-

qmi_indication_wms_smsc_address_output_get_address ()

-
gboolean
-qmi_indication_wms_smsc_address_output_get_address
-                               (QmiIndicationWmsSmscAddressOutput *self,
-                                const gchar **value_address_type,
-                                const gchar **value_address_digits,
-                                GError **error);
-

Get the 'Address' field from self -.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - - - - - - -

self

a QmiIndicationWmsSmscAddressOutput.

 

value_address_type

a placeholder for the output constant string, or NULL if not required.

 

value_address_digits

a placeholder for the output constant string, or NULL if not required.

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if the field is found, FALSE otherwise.

-
-

Since: 1.14

-
-
-
-

Types and Values

-
-

QmiIndicationWmsSmscAddressOutput

-
typedef struct _QmiIndicationWmsSmscAddressOutput QmiIndicationWmsSmscAddressOutput;
-

The QmiIndicationWmsSmscAddressOutput structure contains private data and should only be accessed -using the provided API.

-

Since: 1.14

-
-
-
- - - \ No newline at end of file diff -Nru libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-WMS-SMSC-Address-indication.html libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-WMS-SMSC-Address-indication.html --- libqmi-1.18.0/docs/reference/libqmi-glib/html/libqmi-glib-WMS-SMSC-Address-indication.html 1970-01-01 01:00:00.000000000 +0100 +++ libqmi-1.22.0/docs/reference/libqmi-glib/html/libqmi-glib-WMS-SMSC-Address-indication.html 2019-01-08 15:19:02.000000000 +0100 @@ -0,0 +1,214 @@ + + + + +WMS SMSC Address indication: libqmi-glib Reference Manual + + + + + + + + + + + + + + + + +
+
+
+ + +
+

WMS SMSC Address indication

+

WMS SMSC Address indication

+
+ +
+

Types and Values

+ +
+
+

Object Hierarchy

+
    GBoxed
+    ╰── QmiIndicationWmsSmscAddressOutput
+
+
+
+

Description

+
+
+

Functions

+
+

qmi_indication_wms_smsc_address_output_ref ()

+
QmiIndicationWmsSmscAddressOutput *
+qmi_indication_wms_smsc_address_output_ref
+                               (QmiIndicationWmsSmscAddressOutput *self);
+

Atomically increments the reference count of self + by one.

+
+

Parameters

+
+++++ + + + + + +

self

a QmiIndicationWmsSmscAddressOutput.

 
+
+
+

Returns

+

the new reference to self +.

+
+

Since: 1.14

+
+
+
+

qmi_indication_wms_smsc_address_output_unref ()

+
void
+qmi_indication_wms_smsc_address_output_unref
+                               (QmiIndicationWmsSmscAddressOutput *self);
+

Atomically decrements the reference count of self + by one. +If the reference count drops to 0, self + is completely disposed.

+
+

Parameters

+
+++++ + + + + + +

self

a QmiIndicationWmsSmscAddressOutput.

 
+
+

Since: 1.14

+
+
+
+

qmi_indication_wms_smsc_address_output_get_address ()

+
gboolean
+qmi_indication_wms_smsc_address_output_get_address
+                               (QmiIndicationWmsSmscAddressOutput *self,
+                                const gchar **value_address_type,
+                                const gchar **value_address_digits,
+                                GError **error);
+

Get the 'Address' field from self +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + + + + + + +

self

a QmiIndicationWmsSmscAddressOutput.

 

value_address_type

a placeholder for the output constant string, or NULL if not required.

 

value_address_digits

a placeholder for the output constant string, or NULL if not required.

 

error

Return location for error or NULL.

 
+
+
+

Returns

+

TRUE if the field is found, FALSE otherwise.

+
+

Since: 1.14

+
+
+
+

Types and Values

+
+

QmiIndicationWmsSmscAddressOutput

+
typedef struct _QmiIndicationWmsSmscAddressOutput QmiIndicationWmsSmscAddressOutput;
+

The QmiIndicationWmsSmscAddressOutput structure contains private data and should only be accessed +using the provided API.

+

Since: 1.14

+
+
+
+ + + \ No newline at end of file diff -Nru libqmi-1.18.0/docs/reference/libqmi-glib/html/object-tree.html libqmi-1.22.0/docs/reference/libqmi-glib/html/object-tree.html --- libqmi-1.18.0/docs/reference/libqmi-glib/html/object-tree.html 2017-03-22 12:28:29.000000000 +0100 +++ libqmi-1.22.0/docs/reference/libqmi-glib/html/object-tree.html 2019-01-08 15:19:02.000000000 +0100 @@ -3,12 +3,12 @@ Object Hierarchy: libqmi-glib Reference Manual - + - + - + @@ -16,7 +16,7 @@ Home -Prev +Prev Next
@@ -26,11 +26,13 @@ GObject ├── QmiClient ├── QmiClientDms + ├── QmiClientLoc ├── QmiClientNas ├── QmiClientOma ├── QmiClientPbm ├── QmiClientPdc ├── QmiClientPds + ├── QmiClientQos ├── QmiClientUim ├── QmiClientVoice ├── QmiClientWda @@ -38,7 +40,7 @@ ╰── QmiClientWms ├── QmiDevice ╰── QmiProxy - GEnum + GEnum ├── QmiCoreError ├── QmiDataEndpointType ├── QmiDeviceExpectedDataFormat @@ -50,6 +52,7 @@ ├── QmiDmsOperatingMode ├── QmiDmsRadioInterface ├── QmiDmsSimCapability + ├── QmiDmsSwiUsbComposition ├── QmiDmsTimeReferenceType ├── QmiDmsTimeSource ├── QmiDmsUimFacility @@ -57,6 +60,20 @@ ├── QmiDmsUimPinId ├── QmiDmsUimPinStatus ├── QmiDmsUimState + ├── QmiLocEngineState + ├── QmiLocFixRecurrenceType + ├── QmiLocHealthStatus + ├── QmiLocIndicationStatus + ├── QmiLocIntermediateReportState + ├── QmiLocNavigationData + ├── QmiLocOperationMode + ├── QmiLocPredictedOrbitsDataFormat + ├── QmiLocReliability + ├── QmiLocSatelliteStatus + ├── QmiLocServerType + ├── QmiLocSessionStatus + ├── QmiLocSystem + ├── QmiLocTimeSource ├── QmiNasActiveBand ├── QmiNasAttachState ├── QmiNasCallBarringStatus @@ -82,6 +99,7 @@ ├── QmiNasPlmnNameCountryInitials ├── QmiNasPlmnNameSpareBits ├── QmiNasPreferenceDuration + ├── QmiNasPsAttachAction ├── QmiNasRadioInterface ├── QmiNasRegistrationState ├── QmiNasRoamingIndicatorStatus @@ -105,6 +123,8 @@ ├── QmiPdsPositionSessionStatus ├── QmiPdsTrackingSessionState ├── QmiProtocolError + ├── QmiQosEvent + ├── QmiQosStatus ├── QmiService ├── QmiUimCardApplicationPersonalizationFeature ├── QmiUimCardApplicationPersonalizationState @@ -149,6 +169,7 @@ ├── QmiWdsPdpDataCompressionType ├── QmiWdsPdpHeaderCompressionType ├── QmiWdsPdpType + ├── QmiWdsProfileFamily ├── QmiWdsProfileType ├── QmiWdsQosClassIdentifier ├── QmiWdsRadioAccessTechnology @@ -182,11 +203,17 @@ ├── QmiWmsReceiptAction ├── QmiWmsStorageType ╰── QmiWmsTransferIndication - GFlags + GFlags ├── QmiDeviceOpenFlags ├── QmiDeviceReleaseClientFlags ├── QmiDmsOfflineReason ├── QmiDmsPowerState + ├── QmiLocDeleteCellDatabase + ├── QmiLocDeleteClockInfo + ├── QmiLocDeleteSvInfo + ├── QmiLocSatelliteValidInformation + ├── QmiLocServerAddressType + ├── QmiLocTechnologyUsed ├── QmiNasNetworkNameDisplayCondition ├── QmiNasNetworkScanType ├── QmiNasNetworkStatus @@ -212,296 +239,350 @@ ├── QmiWdsSoEvdoRevA ├── QmiWdsSoEvdoRevB ╰── QmiWdsTechnologyPreference - GBoxed - ├── QmiIndicationDmsEventReportOutput - ├── QmiIndicationNasEventReportOutput - ├── QmiIndicationNasNetworkTimeOutput - ├── QmiIndicationNasOperatorNameOutput - ├── QmiIndicationNasServingSystemOutput - ├── QmiIndicationNasSignalInfoOutput - ├── QmiIndicationNasSystemInfoOutput - ├── QmiIndicationOmaEventReportOutput - ├── QmiIndicationPdcActivateConfigOutput - ├── QmiIndicationPdcDeactivateConfigOutput - ├── QmiIndicationPdcGetConfigInfoOutput - ├── QmiIndicationPdcGetSelectedConfigOutput - ├── QmiIndicationPdcListConfigsOutput - ├── QmiIndicationPdcLoadConfigOutput - ├── QmiIndicationPdcSetSelectedConfigOutput - ├── QmiIndicationPdsEventReportOutput - ├── QmiIndicationVoiceAllCallStatusOutput - ├── QmiIndicationWdsEventReportOutput - ├── QmiIndicationWdsPacketServiceStatusOutput - ├── QmiIndicationWmsEventReportOutput - ├── QmiIndicationWmsSmscAddressOutput + GBoxed + ├── QmiIndicationDmsEventReportOutput + ├── QmiIndicationLocDeleteAssistanceDataOutput + ├── QmiIndicationLocEngineStateOutput + ├── QmiIndicationLocFixRecurrenceTypeOutput + ├── QmiIndicationLocGetOperationModeOutput + ├── QmiIndicationLocGetPredictedOrbitsDataSourceOutput + ├── QmiIndicationLocGetServerOutput + ├── QmiIndicationLocGnssSvInfoOutput + ├── QmiIndicationLocInjectPredictedOrbitsDataOutput + ├── QmiIndicationLocInjectXtraDataOutput + ├── QmiIndicationLocNmeaOutput + ├── QmiIndicationLocPositionReportOutput + ├── QmiIndicationLocSetOperationModeOutput + ├── QmiIndicationLocSetServerOutput + ├── QmiIndicationNasEventReportOutput + ├── QmiIndicationNasNetworkTimeOutput + ├── QmiIndicationNasOperatorNameOutput + ├── QmiIndicationNasServingSystemOutput + ├── QmiIndicationNasSignalInfoOutput + ├── QmiIndicationNasSystemInfoOutput + ├── QmiIndicationOmaEventReportOutput + ├── QmiIndicationPdcActivateConfigOutput + ├── QmiIndicationPdcDeactivateConfigOutput + ├── QmiIndicationPdcGetConfigInfoOutput + ├── QmiIndicationPdcGetSelectedConfigOutput + ├── QmiIndicationPdcListConfigsOutput + ├── QmiIndicationPdcLoadConfigOutput + ├── QmiIndicationPdcSetSelectedConfigOutput + ├── QmiIndicationPdsEventReportOutput + ├── QmiIndicationQosFlowStatusOutput + ├── QmiIndicationQosNetworkStatusOutput + ├── QmiIndicationUimCardStatusOutput + ├── QmiIndicationVoiceAllCallStatusOutput + ├── QmiIndicationWdsEventReportOutput + ├── QmiIndicationWdsPacketServiceStatusOutput + ├── QmiIndicationWmsEventReportOutput + ├── QmiIndicationWmsSmscAddressOutput ├── QmiMessageContext - ├── QmiMessageDmsActivateAutomaticInput - ├── QmiMessageDmsActivateAutomaticOutput - ├── QmiMessageDmsActivateManualInput - ├── QmiMessageDmsActivateManualOutput - ├── QmiMessageDmsDeleteStoredImageInput - ├── QmiMessageDmsDeleteStoredImageOutput - ├── QmiMessageDmsGetActivationStateOutput - ├── QmiMessageDmsGetAltNetConfigOutput - ├── QmiMessageDmsGetBandCapabilitiesOutput - ├── QmiMessageDmsGetBootImageDownloadModeOutput - ├── QmiMessageDmsGetCapabilitiesOutput - ├── QmiMessageDmsGetFactorySkuOutput - ├── QmiMessageDmsGetFirmwarePreferenceOutput - ├── QmiMessageDmsGetHardwareRevisionOutput - ├── QmiMessageDmsGetIdsOutput - ├── QmiMessageDmsGetManufacturerOutput - ├── QmiMessageDmsGetModelOutput - ├── QmiMessageDmsGetMsisdnOutput - ├── QmiMessageDmsGetOperatingModeOutput - ├── QmiMessageDmsGetPowerStateOutput - ├── QmiMessageDmsGetPrlVersionOutput - ├── QmiMessageDmsGetRevisionOutput - ├── QmiMessageDmsGetSoftwareVersionOutput - ├── QmiMessageDmsGetStoredImageInfoInput - ├── QmiMessageDmsGetStoredImageInfoOutput - ├── QmiMessageDmsGetSupportedMessagesOutput - ├── QmiMessageDmsGetTimeOutput - ├── QmiMessageDmsGetUserLockStateOutput - ├── QmiMessageDmsHpChangeDeviceModeInput - ├── QmiMessageDmsHpChangeDeviceModeOutput - ├── QmiMessageDmsListStoredImagesOutput - ├── QmiMessageDmsReadEriFileOutput - ├── QmiMessageDmsReadUserDataOutput - ├── QmiMessageDmsResetOutput - ├── QmiMessageDmsRestoreFactoryDefaultsInput - ├── QmiMessageDmsRestoreFactoryDefaultsOutput - ├── QmiMessageDmsSetAltNetConfigInput - ├── QmiMessageDmsSetAltNetConfigOutput - ├── QmiMessageDmsSetBootImageDownloadModeInput - ├── QmiMessageDmsSetBootImageDownloadModeOutput - ├── QmiMessageDmsSetEventReportInput - ├── QmiMessageDmsSetEventReportOutput - ├── QmiMessageDmsSetFccAuthenticationOutput - ├── QmiMessageDmsSetFirmwareIdOutput - ├── QmiMessageDmsSetFirmwarePreferenceInput - ├── QmiMessageDmsSetFirmwarePreferenceOutput - ├── QmiMessageDmsSetOperatingModeInput - ├── QmiMessageDmsSetOperatingModeOutput - ├── QmiMessageDmsSetServiceProgrammingCodeInput - ├── QmiMessageDmsSetServiceProgrammingCodeOutput - ├── QmiMessageDmsSetTimeInput - ├── QmiMessageDmsSetTimeOutput - ├── QmiMessageDmsSetUserLockCodeInput - ├── QmiMessageDmsSetUserLockCodeOutput - ├── QmiMessageDmsSetUserLockStateInput - ├── QmiMessageDmsSetUserLockStateOutput - ├── QmiMessageDmsSwiGetCurrentFirmwareOutput - ├── QmiMessageDmsUimChangePinInput - ├── QmiMessageDmsUimChangePinOutput - ├── QmiMessageDmsUimGetCkStatusInput - ├── QmiMessageDmsUimGetCkStatusOutput - ├── QmiMessageDmsUimGetIccidOutput - ├── QmiMessageDmsUimGetImsiOutput - ├── QmiMessageDmsUimGetPinStatusOutput - ├── QmiMessageDmsUimGetStateOutput - ├── QmiMessageDmsUimSetCkProtectionInput - ├── QmiMessageDmsUimSetCkProtectionOutput - ├── QmiMessageDmsUimSetPinProtectionInput - ├── QmiMessageDmsUimSetPinProtectionOutput - ├── QmiMessageDmsUimUnblockCkInput - ├── QmiMessageDmsUimUnblockCkOutput - ├── QmiMessageDmsUimUnblockPinInput - ├── QmiMessageDmsUimUnblockPinOutput - ├── QmiMessageDmsUimVerifyPinInput - ├── QmiMessageDmsUimVerifyPinOutput - ├── QmiMessageDmsValidateServiceProgrammingCodeInput - ├── QmiMessageDmsValidateServiceProgrammingCodeOutput - ├── QmiMessageDmsWriteUserDataInput - ├── QmiMessageDmsWriteUserDataOutput - ├── QmiMessageNasConfigSignalInfoInput - ├── QmiMessageNasConfigSignalInfoOutput - ├── QmiMessageNasForceNetworkSearchOutput - ├── QmiMessageNasGetCdmaPositionInfoOutput - ├── QmiMessageNasGetCellLocationInfoOutput - ├── QmiMessageNasGetHomeNetworkOutput - ├── QmiMessageNasGetLteCphyCaInfoOutput - ├── QmiMessageNasGetOperatorNameOutput - ├── QmiMessageNasGetRfBandInformationOutput - ├── QmiMessageNasGetServingSystemOutput - ├── QmiMessageNasGetSignalInfoOutput - ├── QmiMessageNasGetSignalStrengthInput - ├── QmiMessageNasGetSignalStrengthOutput - ├── QmiMessageNasGetSupportedMessagesOutput - ├── QmiMessageNasGetSystemInfoOutput - ├── QmiMessageNasGetSystemSelectionPreferenceOutput - ├── QmiMessageNasGetTechnologyPreferenceOutput - ├── QmiMessageNasGetTxRxInfoInput - ├── QmiMessageNasGetTxRxInfoOutput - ├── QmiMessageNasInitiateNetworkRegisterInput - ├── QmiMessageNasInitiateNetworkRegisterOutput - ├── QmiMessageNasNetworkScanInput - ├── QmiMessageNasNetworkScanOutput - ├── QmiMessageNasRegisterIndicationsInput - ├── QmiMessageNasRegisterIndicationsOutput - ├── QmiMessageNasResetOutput - ├── QmiMessageNasSetEventReportInput - ├── QmiMessageNasSetEventReportOutput - ├── QmiMessageNasSetSystemSelectionPreferenceInput - ├── QmiMessageNasSetSystemSelectionPreferenceOutput - ├── QmiMessageNasSetTechnologyPreferenceInput - ├── QmiMessageNasSetTechnologyPreferenceOutput - ├── QmiMessageOmaCancelSessionOutput - ├── QmiMessageOmaGetFeatureSettingOutput - ├── QmiMessageOmaGetSessionInfoOutput - ├── QmiMessageOmaResetOutput - ├── QmiMessageOmaSendSelectionInput - ├── QmiMessageOmaSendSelectionOutput - ├── QmiMessageOmaSetEventReportInput - ├── QmiMessageOmaSetEventReportOutput - ├── QmiMessageOmaSetFeatureSettingInput - ├── QmiMessageOmaSetFeatureSettingOutput - ├── QmiMessageOmaStartSessionInput - ├── QmiMessageOmaStartSessionOutput - ├── QmiMessagePbmGetAllCapabilitiesOutput - ├── QmiMessagePbmGetCapabilitiesInput - ├── QmiMessagePbmGetCapabilitiesOutput - ├── QmiMessagePbmIndicationRegisterInput - ├── QmiMessagePbmIndicationRegisterOutput - ├── QmiMessagePdcActivateConfigInput - ├── QmiMessagePdcActivateConfigOutput - ├── QmiMessagePdcConfigChangeInput - ├── QmiMessagePdcConfigChangeOutput - ├── QmiMessagePdcDeactivateConfigInput - ├── QmiMessagePdcDeactivateConfigOutput - ├── QmiMessagePdcDeleteConfigInput - ├── QmiMessagePdcDeleteConfigOutput - ├── QmiMessagePdcGetConfigInfoInput - ├── QmiMessagePdcGetConfigInfoOutput - ├── QmiMessagePdcGetConfigLimitsInput - ├── QmiMessagePdcGetConfigLimitsOutput - ├── QmiMessagePdcGetDefaultConfigInfoInput - ├── QmiMessagePdcGetDefaultConfigInfoOutput - ├── QmiMessagePdcGetSelectedConfigInput - ├── QmiMessagePdcGetSelectedConfigOutput - ├── QmiMessagePdcListConfigsInput - ├── QmiMessagePdcListConfigsOutput - ├── QmiMessagePdcLoadConfigInput - ├── QmiMessagePdcLoadConfigOutput - ├── QmiMessagePdcRegisterInput - ├── QmiMessagePdcRegisterOutput - ├── QmiMessagePdcResetOutput - ├── QmiMessagePdcSetSelectedConfigInput - ├── QmiMessagePdcSetSelectedConfigOutput - ├── QmiMessagePdsGetAgpsConfigInput - ├── QmiMessagePdsGetAgpsConfigOutput - ├── QmiMessagePdsGetAutoTrackingStateOutput - ├── QmiMessagePdsGetDefaultTrackingSessionOutput - ├── QmiMessagePdsGetGpsServiceStateOutput - ├── QmiMessagePdsResetOutput - ├── QmiMessagePdsSetAgpsConfigInput - ├── QmiMessagePdsSetAgpsConfigOutput - ├── QmiMessagePdsSetAutoTrackingStateInput - ├── QmiMessagePdsSetAutoTrackingStateOutput - ├── QmiMessagePdsSetDefaultTrackingSessionInput - ├── QmiMessagePdsSetDefaultTrackingSessionOutput - ├── QmiMessagePdsSetEventReportInput - ├── QmiMessagePdsSetEventReportOutput - ├── QmiMessagePdsSetGpsServiceStateInput - ├── QmiMessagePdsSetGpsServiceStateOutput - ├── QmiMessageUimChangePinInput - ├── QmiMessageUimChangePinOutput - ├── QmiMessageUimGetCardStatusOutput - ├── QmiMessageUimGetFileAttributesInput - ├── QmiMessageUimGetFileAttributesOutput - ├── QmiMessageUimGetSupportedMessagesOutput - ├── QmiMessageUimPowerOffSimInput - ├── QmiMessageUimPowerOffSimOutput - ├── QmiMessageUimPowerOnSimInput - ├── QmiMessageUimPowerOnSimOutput - ├── QmiMessageUimReadRecordInput - ├── QmiMessageUimReadRecordOutput - ├── QmiMessageUimReadTransparentInput - ├── QmiMessageUimReadTransparentOutput - ├── QmiMessageUimResetOutput - ├── QmiMessageUimSetPinProtectionInput - ├── QmiMessageUimSetPinProtectionOutput - ├── QmiMessageUimUnblockPinInput - ├── QmiMessageUimUnblockPinOutput - ├── QmiMessageUimVerifyPinInput - ├── QmiMessageUimVerifyPinOutput - ├── QmiMessageVoiceAnswerCallInput - ├── QmiMessageVoiceAnswerCallOutput - ├── QmiMessageVoiceDialCallInput - ├── QmiMessageVoiceDialCallOutput - ├── QmiMessageVoiceEndCallInput - ├── QmiMessageVoiceEndCallOutput - ├── QmiMessageVoiceGetConfigInput - ├── QmiMessageVoiceGetConfigOutput - ├── QmiMessageVoiceGetSupportedMessagesOutput - ├── QmiMessageWdaGetDataFormatOutput - ├── QmiMessageWdaGetSupportedMessagesOutput - ├── QmiMessageWdaSetDataFormatInput - ├── QmiMessageWdaSetDataFormatOutput - ├── QmiMessageWdsBindMuxDataPortInput - ├── QmiMessageWdsBindMuxDataPortOutput - ├── QmiMessageWdsCreateProfileInput - ├── QmiMessageWdsCreateProfileOutput - ├── QmiMessageWdsDeleteProfileInput - ├── QmiMessageWdsDeleteProfileOutput - ├── QmiMessageWdsGetAutoconnectSettingsOutput - ├── QmiMessageWdsGetCurrentDataBearerTechnologyOutput - ├── QmiMessageWdsGetCurrentSettingsInput - ├── QmiMessageWdsGetCurrentSettingsOutput - ├── QmiMessageWdsGetDataBearerTechnologyOutput - ├── QmiMessageWdsGetDefaultSettingsInput - ├── QmiMessageWdsGetDefaultSettingsOutput - ├── QmiMessageWdsGetDormancyStatusOutput - ├── QmiMessageWdsGetPacketServiceStatusOutput - ├── QmiMessageWdsGetPacketStatisticsInput - ├── QmiMessageWdsGetPacketStatisticsOutput - ├── QmiMessageWdsGetPdnThrottleInfoInput - ├── QmiMessageWdsGetPdnThrottleInfoOutput - ├── QmiMessageWdsGetProfileListInput - ├── QmiMessageWdsGetProfileListOutput - ├── QmiMessageWdsGetProfileSettingsInput - ├── QmiMessageWdsGetProfileSettingsOutput - ├── QmiMessageWdsGetSupportedMessagesOutput - ├── QmiMessageWdsGoActiveOutput - ├── QmiMessageWdsGoDormantOutput - ├── QmiMessageWdsModifyProfileInput - ├── QmiMessageWdsModifyProfileOutput - ├── QmiMessageWdsResetOutput - ├── QmiMessageWdsSetAutoconnectSettingsInput - ├── QmiMessageWdsSetAutoconnectSettingsOutput - ├── QmiMessageWdsSetEventReportInput - ├── QmiMessageWdsSetEventReportOutput - ├── QmiMessageWdsSetIpFamilyInput - ├── QmiMessageWdsSetIpFamilyOutput - ├── QmiMessageWdsStartNetworkInput - ├── QmiMessageWdsStartNetworkOutput - ├── QmiMessageWdsStopNetworkInput - ├── QmiMessageWdsStopNetworkOutput - ├── QmiMessageWmsDeleteInput - ├── QmiMessageWmsDeleteOutput - ├── QmiMessageWmsGetMessageProtocolOutput - ├── QmiMessageWmsGetRoutesOutput - ├── QmiMessageWmsGetSupportedMessagesOutput - ├── QmiMessageWmsListMessagesInput - ├── QmiMessageWmsListMessagesOutput - ├── QmiMessageWmsModifyTagInput - ├── QmiMessageWmsModifyTagOutput - ├── QmiMessageWmsRawReadInput - ├── QmiMessageWmsRawReadOutput - ├── QmiMessageWmsRawSendInput - ├── QmiMessageWmsRawSendOutput - ├── QmiMessageWmsRawWriteInput - ├── QmiMessageWmsRawWriteOutput - ├── QmiMessageWmsResetOutput - ├── QmiMessageWmsSendFromMemoryStorageInput - ├── QmiMessageWmsSendFromMemoryStorageOutput - ├── QmiMessageWmsSetEventReportInput - ├── QmiMessageWmsSetEventReportOutput - ├── QmiMessageWmsSetRoutesInput - ╰── QmiMessageWmsSetRoutesOutput + ├── QmiMessageDmsActivateAutomaticInput + ├── QmiMessageDmsActivateAutomaticOutput + ├── QmiMessageDmsActivateManualInput + ├── QmiMessageDmsActivateManualOutput + ├── QmiMessageDmsDeleteStoredImageInput + ├── QmiMessageDmsDeleteStoredImageOutput + ├── QmiMessageDmsGetActivationStateOutput + ├── QmiMessageDmsGetAltNetConfigOutput + ├── QmiMessageDmsGetBandCapabilitiesOutput + ├── QmiMessageDmsGetBootImageDownloadModeOutput + ├── QmiMessageDmsGetCapabilitiesOutput + ├── QmiMessageDmsGetFactorySkuOutput + ├── QmiMessageDmsGetFirmwarePreferenceOutput + ├── QmiMessageDmsGetHardwareRevisionOutput + ├── QmiMessageDmsGetIdsOutput + ├── QmiMessageDmsGetManufacturerOutput + ├── QmiMessageDmsGetModelOutput + ├── QmiMessageDmsGetMsisdnOutput + ├── QmiMessageDmsGetOperatingModeOutput + ├── QmiMessageDmsGetPowerStateOutput + ├── QmiMessageDmsGetPrlVersionOutput + ├── QmiMessageDmsGetRevisionOutput + ├── QmiMessageDmsGetSoftwareVersionOutput + ├── QmiMessageDmsGetStoredImageInfoInput + ├── QmiMessageDmsGetStoredImageInfoOutput + ├── QmiMessageDmsGetSupportedMessagesOutput + ├── QmiMessageDmsGetTimeOutput + ├── QmiMessageDmsGetUserLockStateOutput + ├── QmiMessageDmsHpChangeDeviceModeInput + ├── QmiMessageDmsHpChangeDeviceModeOutput + ├── QmiMessageDmsListStoredImagesOutput + ├── QmiMessageDmsReadEriFileOutput + ├── QmiMessageDmsReadUserDataOutput + ├── QmiMessageDmsResetOutput + ├── QmiMessageDmsRestoreFactoryDefaultsInput + ├── QmiMessageDmsRestoreFactoryDefaultsOutput + ├── QmiMessageDmsSetAltNetConfigInput + ├── QmiMessageDmsSetAltNetConfigOutput + ├── QmiMessageDmsSetBootImageDownloadModeInput + ├── QmiMessageDmsSetBootImageDownloadModeOutput + ├── QmiMessageDmsSetEventReportInput + ├── QmiMessageDmsSetEventReportOutput + ├── QmiMessageDmsSetFccAuthenticationOutput + ├── QmiMessageDmsSetFirmwareIdOutput + ├── QmiMessageDmsSetFirmwarePreferenceInput + ├── QmiMessageDmsSetFirmwarePreferenceOutput + ├── QmiMessageDmsSetOperatingModeInput + ├── QmiMessageDmsSetOperatingModeOutput + ├── QmiMessageDmsSetServiceProgrammingCodeInput + ├── QmiMessageDmsSetServiceProgrammingCodeOutput + ├── QmiMessageDmsSetTimeInput + ├── QmiMessageDmsSetTimeOutput + ├── QmiMessageDmsSetUserLockCodeInput + ├── QmiMessageDmsSetUserLockCodeOutput + ├── QmiMessageDmsSetUserLockStateInput + ├── QmiMessageDmsSetUserLockStateOutput + ├── QmiMessageDmsSwiGetCurrentFirmwareOutput + ├── QmiMessageDmsSwiGetUsbCompositionOutput + ├── QmiMessageDmsSwiSetUsbCompositionInput + ├── QmiMessageDmsSwiSetUsbCompositionOutput + ├── QmiMessageDmsUimChangePinInput + ├── QmiMessageDmsUimChangePinOutput + ├── QmiMessageDmsUimGetCkStatusInput + ├── QmiMessageDmsUimGetCkStatusOutput + ├── QmiMessageDmsUimGetIccidOutput + ├── QmiMessageDmsUimGetImsiOutput + ├── QmiMessageDmsUimGetPinStatusOutput + ├── QmiMessageDmsUimGetStateOutput + ├── QmiMessageDmsUimSetCkProtectionInput + ├── QmiMessageDmsUimSetCkProtectionOutput + ├── QmiMessageDmsUimSetPinProtectionInput + ├── QmiMessageDmsUimSetPinProtectionOutput + ├── QmiMessageDmsUimUnblockCkInput + ├── QmiMessageDmsUimUnblockCkOutput + ├── QmiMessageDmsUimUnblockPinInput + ├── QmiMessageDmsUimUnblockPinOutput + ├── QmiMessageDmsUimVerifyPinInput + ├── QmiMessageDmsUimVerifyPinOutput + ├── QmiMessageDmsValidateServiceProgrammingCodeInput + ├── QmiMessageDmsValidateServiceProgrammingCodeOutput + ├── QmiMessageDmsWriteUserDataInput + ├── QmiMessageDmsWriteUserDataOutput + ├── QmiMessageLocDeleteAssistanceDataInput + ├── QmiMessageLocDeleteAssistanceDataOutput + ├── QmiMessageLocGetOperationModeOutput + ├── QmiMessageLocGetPredictedOrbitsDataSourceOutput + ├── QmiMessageLocGetServerInput + ├── QmiMessageLocGetServerOutput + ├── QmiMessageLocInjectPredictedOrbitsDataInput + ├── QmiMessageLocInjectPredictedOrbitsDataOutput + ├── QmiMessageLocInjectXtraDataInput + ├── QmiMessageLocInjectXtraDataOutput + ├── QmiMessageLocRegisterEventsInput + ├── QmiMessageLocRegisterEventsOutput + ├── QmiMessageLocSetOperationModeInput + ├── QmiMessageLocSetOperationModeOutput + ├── QmiMessageLocSetServerInput + ├── QmiMessageLocSetServerOutput + ├── QmiMessageLocStartInput + ├── QmiMessageLocStartOutput + ├── QmiMessageLocStopInput + ├── QmiMessageLocStopOutput + ├── QmiMessageNasAttachDetachInput + ├── QmiMessageNasAttachDetachOutput + ├── QmiMessageNasConfigSignalInfoInput + ├── QmiMessageNasConfigSignalInfoOutput + ├── QmiMessageNasForceNetworkSearchOutput + ├── QmiMessageNasGetCdmaPositionInfoOutput + ├── QmiMessageNasGetCellLocationInfoOutput + ├── QmiMessageNasGetHomeNetworkOutput + ├── QmiMessageNasGetLteCphyCaInfoOutput + ├── QmiMessageNasGetOperatorNameOutput + ├── QmiMessageNasGetRfBandInformationOutput + ├── QmiMessageNasGetServingSystemOutput + ├── QmiMessageNasGetSignalInfoOutput + ├── QmiMessageNasGetSignalStrengthInput + ├── QmiMessageNasGetSignalStrengthOutput + ├── QmiMessageNasGetSupportedMessagesOutput + ├── QmiMessageNasGetSystemInfoOutput + ├── QmiMessageNasGetSystemSelectionPreferenceOutput + ├── QmiMessageNasGetTechnologyPreferenceOutput + ├── QmiMessageNasGetTxRxInfoInput + ├── QmiMessageNasGetTxRxInfoOutput + ├── QmiMessageNasInitiateNetworkRegisterInput + ├── QmiMessageNasInitiateNetworkRegisterOutput + ├── QmiMessageNasNetworkScanInput + ├── QmiMessageNasNetworkScanOutput + ├── QmiMessageNasRegisterIndicationsInput + ├── QmiMessageNasRegisterIndicationsOutput + ├── QmiMessageNasResetOutput + ├── QmiMessageNasSetEventReportInput + ├── QmiMessageNasSetEventReportOutput + ├── QmiMessageNasSetSystemSelectionPreferenceInput + ├── QmiMessageNasSetSystemSelectionPreferenceOutput + ├── QmiMessageNasSetTechnologyPreferenceInput + ├── QmiMessageNasSetTechnologyPreferenceOutput + ├── QmiMessageOmaCancelSessionOutput + ├── QmiMessageOmaGetFeatureSettingOutput + ├── QmiMessageOmaGetSessionInfoOutput + ├── QmiMessageOmaResetOutput + ├── QmiMessageOmaSendSelectionInput + ├── QmiMessageOmaSendSelectionOutput + ├── QmiMessageOmaSetEventReportInput + ├── QmiMessageOmaSetEventReportOutput + ├── QmiMessageOmaSetFeatureSettingInput + ├── QmiMessageOmaSetFeatureSettingOutput + ├── QmiMessageOmaStartSessionInput + ├── QmiMessageOmaStartSessionOutput + ├── QmiMessagePbmGetAllCapabilitiesOutput + ├── QmiMessagePbmGetCapabilitiesInput + ├── QmiMessagePbmGetCapabilitiesOutput + ├── QmiMessagePbmIndicationRegisterInput + ├── QmiMessagePbmIndicationRegisterOutput + ├── QmiMessagePdcActivateConfigInput + ├── QmiMessagePdcActivateConfigOutput + ├── QmiMessagePdcConfigChangeInput + ├── QmiMessagePdcConfigChangeOutput + ├── QmiMessagePdcDeactivateConfigInput + ├── QmiMessagePdcDeactivateConfigOutput + ├── QmiMessagePdcDeleteConfigInput + ├── QmiMessagePdcDeleteConfigOutput + ├── QmiMessagePdcGetConfigInfoInput + ├── QmiMessagePdcGetConfigInfoOutput + ├── QmiMessagePdcGetConfigLimitsInput + ├── QmiMessagePdcGetConfigLimitsOutput + ├── QmiMessagePdcGetDefaultConfigInfoInput + ├── QmiMessagePdcGetDefaultConfigInfoOutput + ├── QmiMessagePdcGetSelectedConfigInput + ├── QmiMessagePdcGetSelectedConfigOutput + ├── QmiMessagePdcListConfigsInput + ├── QmiMessagePdcListConfigsOutput + ├── QmiMessagePdcLoadConfigInput + ├── QmiMessagePdcLoadConfigOutput + ├── QmiMessagePdcRegisterInput + ├── QmiMessagePdcRegisterOutput + ├── QmiMessagePdcResetOutput + ├── QmiMessagePdcSetSelectedConfigInput + ├── QmiMessagePdcSetSelectedConfigOutput + ├── QmiMessagePdsGetAgpsConfigInput + ├── QmiMessagePdsGetAgpsConfigOutput + ├── QmiMessagePdsGetAutoTrackingStateOutput + ├── QmiMessagePdsGetDefaultTrackingSessionOutput + ├── QmiMessagePdsGetGpsServiceStateOutput + ├── QmiMessagePdsResetOutput + ├── QmiMessagePdsSetAgpsConfigInput + ├── QmiMessagePdsSetAgpsConfigOutput + ├── QmiMessagePdsSetAutoTrackingStateInput + ├── QmiMessagePdsSetAutoTrackingStateOutput + ├── QmiMessagePdsSetDefaultTrackingSessionInput + ├── QmiMessagePdsSetDefaultTrackingSessionOutput + ├── QmiMessagePdsSetEventReportInput + ├── QmiMessagePdsSetEventReportOutput + ├── QmiMessagePdsSetGpsServiceStateInput + ├── QmiMessagePdsSetGpsServiceStateOutput + ├── QmiMessageQosGetFlowStatusInput + ├── QmiMessageQosGetFlowStatusOutput + ├── QmiMessageQosGetNetworkStatusOutput + ├── QmiMessageQosResetOutput + ├── QmiMessageQosSwiReadDataStatsInput + ├── QmiMessageQosSwiReadDataStatsOutput + ├── QmiMessageUimChangePinInput + ├── QmiMessageUimChangePinOutput + ├── QmiMessageUimGetCardStatusOutput + ├── QmiMessageUimGetFileAttributesInput + ├── QmiMessageUimGetFileAttributesOutput + ├── QmiMessageUimGetSupportedMessagesOutput + ├── QmiMessageUimPowerOffSimInput + ├── QmiMessageUimPowerOffSimOutput + ├── QmiMessageUimPowerOnSimInput + ├── QmiMessageUimPowerOnSimOutput + ├── QmiMessageUimReadRecordInput + ├── QmiMessageUimReadRecordOutput + ├── QmiMessageUimReadTransparentInput + ├── QmiMessageUimReadTransparentOutput + ├── QmiMessageUimResetOutput + ├── QmiMessageUimSetPinProtectionInput + ├── QmiMessageUimSetPinProtectionOutput + ├── QmiMessageUimUnblockPinInput + ├── QmiMessageUimUnblockPinOutput + ├── QmiMessageUimVerifyPinInput + ├── QmiMessageUimVerifyPinOutput + ├── QmiMessageVoiceAnswerCallInput + ├── QmiMessageVoiceAnswerCallOutput + ├── QmiMessageVoiceDialCallInput + ├── QmiMessageVoiceDialCallOutput + ├── QmiMessageVoiceEndCallInput + ├── QmiMessageVoiceEndCallOutput + ├── QmiMessageVoiceGetConfigInput + ├── QmiMessageVoiceGetConfigOutput + ├── QmiMessageVoiceGetSupportedMessagesOutput + ├── QmiMessageWdaGetDataFormatOutput + ├── QmiMessageWdaGetSupportedMessagesOutput + ├── QmiMessageWdaSetDataFormatInput + ├── QmiMessageWdaSetDataFormatOutput + ├── QmiMessageWdsBindMuxDataPortInput + ├── QmiMessageWdsBindMuxDataPortOutput + ├── QmiMessageWdsCreateProfileInput + ├── QmiMessageWdsCreateProfileOutput + ├── QmiMessageWdsDeleteProfileInput + ├── QmiMessageWdsDeleteProfileOutput + ├── QmiMessageWdsGetAutoconnectSettingsOutput + ├── QmiMessageWdsGetChannelRatesOutput + ├── QmiMessageWdsGetCurrentDataBearerTechnologyOutput + ├── QmiMessageWdsGetCurrentSettingsInput + ├── QmiMessageWdsGetCurrentSettingsOutput + ├── QmiMessageWdsGetDataBearerTechnologyOutput + ├── QmiMessageWdsGetDefaultProfileNumInput + ├── QmiMessageWdsGetDefaultProfileNumOutput + ├── QmiMessageWdsGetDefaultSettingsInput + ├── QmiMessageWdsGetDefaultSettingsOutput + ├── QmiMessageWdsGetDormancyStatusOutput + ├── QmiMessageWdsGetPacketServiceStatusOutput + ├── QmiMessageWdsGetPacketStatisticsInput + ├── QmiMessageWdsGetPacketStatisticsOutput + ├── QmiMessageWdsGetPdnThrottleInfoInput + ├── QmiMessageWdsGetPdnThrottleInfoOutput + ├── QmiMessageWdsGetProfileListInput + ├── QmiMessageWdsGetProfileListOutput + ├── QmiMessageWdsGetProfileSettingsInput + ├── QmiMessageWdsGetProfileSettingsOutput + ├── QmiMessageWdsGetSupportedMessagesOutput + ├── QmiMessageWdsGoActiveOutput + ├── QmiMessageWdsGoDormantOutput + ├── QmiMessageWdsModifyProfileInput + ├── QmiMessageWdsModifyProfileOutput + ├── QmiMessageWdsResetOutput + ├── QmiMessageWdsSetAutoconnectSettingsInput + ├── QmiMessageWdsSetAutoconnectSettingsOutput + ├── QmiMessageWdsSetDefaultProfileNumInput + ├── QmiMessageWdsSetDefaultProfileNumOutput + ├── QmiMessageWdsSetEventReportInput + ├── QmiMessageWdsSetEventReportOutput + ├── QmiMessageWdsSetIpFamilyInput + ├── QmiMessageWdsSetIpFamilyOutput + ├── QmiMessageWdsStartNetworkInput + ├── QmiMessageWdsStartNetworkOutput + ├── QmiMessageWdsStopNetworkInput + ├── QmiMessageWdsStopNetworkOutput + ├── QmiMessageWdsSwiCreateProfileIndexedInput + ├── QmiMessageWdsSwiCreateProfileIndexedOutput + ├── QmiMessageWmsDeleteInput + ├── QmiMessageWmsDeleteOutput + ├── QmiMessageWmsGetMessageProtocolOutput + ├── QmiMessageWmsGetRoutesOutput + ├── QmiMessageWmsGetSupportedMessagesOutput + ├── QmiMessageWmsListMessagesInput + ├── QmiMessageWmsListMessagesOutput + ├── QmiMessageWmsModifyTagInput + ├── QmiMessageWmsModifyTagOutput + ├── QmiMessageWmsRawReadInput + ├── QmiMessageWmsRawReadOutput + ├── QmiMessageWmsRawSendInput + ├── QmiMessageWmsRawSendOutput + ├── QmiMessageWmsRawWriteInput + ├── QmiMessageWmsRawWriteOutput + ├── QmiMessageWmsResetOutput + ├── QmiMessageWmsSendFromMemoryStorageInput + ├── QmiMessageWmsSendFromMemoryStorageOutput + ├── QmiMessageWmsSetEventReportInput + ├── QmiMessageWmsSetEventReportOutput + ├── QmiMessageWmsSetRoutesInput + ╰── QmiMessageWmsSetRoutesOutput
+
Generated by GTK-Doc V1.29 \ No newline at end of file diff -Nru libqmi-1.18.0/docs/reference/libqmi-glib/html/QmiClientDms.html libqmi-1.22.0/docs/reference/libqmi-glib/html/QmiClientDms.html --- libqmi-1.18.0/docs/reference/libqmi-glib/html/QmiClientDms.html 2017-03-22 12:28:29.000000000 +0100 +++ libqmi-1.22.0/docs/reference/libqmi-glib/html/QmiClientDms.html 2019-01-08 15:19:01.000000000 +0100 @@ -3,12 +3,12 @@ QmiClientDms: libqmi-glib Reference Manual - + - + @@ -92,9 +92,9 @@

The “event-report” signal

void
 user_function (QmiClientDms                      *object,
-               QmiIndicationDmsEventReportOutput *output,
+               QmiIndicationDmsEventReportOutput *output,
                gpointer                           user_data)
-

The ::event-report signal gets emitted when a 'Event Report' indication is received.

+

The ::event-report signal gets emitted when a 'Event Report' indication is received.

Parameters

@@ -111,7 +111,7 @@ - + @@ -128,6 +128,6 @@ +
Generated by GTK-Doc V1.29 \ No newline at end of file diff -Nru libqmi-1.18.0/docs/reference/libqmi-glib/html/QmiClient.html libqmi-1.22.0/docs/reference/libqmi-glib/html/QmiClient.html --- libqmi-1.18.0/docs/reference/libqmi-glib/html/QmiClient.html 2017-03-22 12:28:29.000000000 +0100 +++ libqmi-1.22.0/docs/reference/libqmi-glib/html/QmiClient.html 2019-01-08 15:19:01.000000000 +0100 @@ -3,12 +3,12 @@ QmiClient: libqmi-glib Reference Manual - + - + @@ -78,6 +78,14 @@ gboolean + + + + @@ -126,6 +134,11 @@ + + + + + @@ -175,6 +188,10 @@ + + + + @@ -186,11 +203,13 @@
    GObject
     ╰── QmiClient
         ├── QmiClientDms
+        ├── QmiClientLoc
         ├── QmiClientNas
         ├── QmiClientOma
         ├── QmiClientPbm
         ├── QmiClientPdc
         ├── QmiClientPds
+        ├── QmiClientQos
         ├── QmiClientUim
         ├── QmiClientVoice
         ├── QmiClientWda
@@ -319,6 +338,38 @@
 
 
+

qmi_client_is_valid ()

+
gboolean
+qmi_client_is_valid (QmiClient *self);
+

Checks whether QmiClient is a valid and usable client.

+

The client is marked as invalid as soon as the client id is released or when +the associated QmiDevice is closed.

+

This method may be used if the caller needs to ensure validity before a +command is attempted, e.g. if the lifecycle of the object is managed in some +other place and the caller just has a reference to the QmiClient.

+
+

Parameters

+

output

A QmiIndicationDmsEventReportOutput.

A QmiIndicationDmsEventReportOutput.

 
+qmi_client_is_valid () +
+gboolean + qmi_client_get_version ()
Read / Write
gbooleanclient-validRead
guint client-version-major Read / WriteQMI_CLIENT_VERSION_MINOR
#defineQMI_CLIENT_VALID
struct QmiClient
+++++ + + + + + +

self

a QmiClient.

 
+
+
+

Returns

+

TRUE if the client is valid, FALSE otherwise.

+
+

Since: 1.20

+ +
+

qmi_client_get_version ()

gboolean
 qmi_client_get_version (QmiClient *self,
@@ -488,6 +539,14 @@
 

+

QMI_CLIENT_VALID

+
#define QMI_CLIENT_VALID "client-valid"
+
+

Symbol defining the “client-valid” property.

+

Since: 1.20

+
+
+

struct QmiClient

struct QmiClient;

The QmiClient structure contains private data and should only be accessed @@ -525,6 +584,15 @@


+

The “client-valid” property

+
  “client-valid”             gboolean
+

Whether the client is valid and usable.

+

Flags: Read

+

Default value: FALSE

+

Since: 1.20

+
+
+

The “client-version-major” property

  “client-version-major”     guint

Major version of the service handled by this client.

@@ -544,6 +612,6 @@
+
Generated by GTK-Doc V1.29 \ No newline at end of file diff -Nru libqmi-1.18.0/docs/reference/libqmi-glib/html/QmiClientLoc.html libqmi-1.22.0/docs/reference/libqmi-glib/html/QmiClientLoc.html --- libqmi-1.18.0/docs/reference/libqmi-glib/html/QmiClientLoc.html 1970-01-01 01:00:00.000000000 +0100 +++ libqmi-1.22.0/docs/reference/libqmi-glib/html/QmiClientLoc.html 2019-01-08 15:19:01.000000000 +0100 @@ -0,0 +1,651 @@ + + + + +QmiClientLoc: libqmi-glib Reference Manual + + + + + + + + + + + + + + + + +
+
+
+ + +
+

QmiClientLoc

+

QmiClientLoc — QmiClient for the LOC service.

+
+ +
+

Types and Values

+
++++ + + + + +
structQmiClientLoc
+
+
+

Object Hierarchy

+
    GObject
+    ╰── QmiClient
+        ╰── QmiClientLoc
+
+
+
+

Description

+

QmiClient which handles operations in the LOC service.

+
+
+

Functions

+

+
+
+

Types and Values

+
+

struct QmiClientLoc

+
struct QmiClientLoc;
+

The QmiClientLoc structure contains private data and should only be accessed +using the provided API.

+

Since: 1.0

+
+
+
+

Signal Details

+
+

The “delete-assistance-data” signal

+
void
+user_function (QmiClientLoc                               *object,
+               QmiIndicationLocDeleteAssistanceDataOutput *output,
+               gpointer                                    user_data)
+

The ::delete-assistance-data signal gets emitted when a 'Delete Assistance Data' indication is received.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

object

A QmiClientLoc.

 

output

A QmiIndicationLocDeleteAssistanceDataOutput.

 

user_data

user data set when the signal handler was connected.

 
+
+

Flags: Run Last

+

Since: 1.22

+
+
+
+

The “engine-state” signal

+
void
+user_function (QmiClientLoc                      *object,
+               QmiIndicationLocEngineStateOutput *output,
+               gpointer                           user_data)
+

The ::engine-state signal gets emitted when a 'Engine State' indication is received.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

object

A QmiClientLoc.

 

output

A QmiIndicationLocEngineStateOutput.

 

user_data

user data set when the signal handler was connected.

 
+
+

Flags: Run Last

+

Since: 1.22

+
+
+
+

The “fix-recurrence-type” signal

+
void
+user_function (QmiClientLoc                            *object,
+               QmiIndicationLocFixRecurrenceTypeOutput *output,
+               gpointer                                 user_data)
+

The ::fix-recurrence-type signal gets emitted when a 'Fix Recurrence Type' indication is received.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

object

A QmiClientLoc.

 

output

A QmiIndicationLocFixRecurrenceTypeOutput.

 

user_data

user data set when the signal handler was connected.

 
+
+

Flags: Run Last

+

Since: 1.22

+
+
+
+

The “get-operation-mode” signal

+
void
+user_function (QmiClientLoc                           *object,
+               QmiIndicationLocGetOperationModeOutput *output,
+               gpointer                                user_data)
+

The ::get-operation-mode signal gets emitted when a 'Get Operation Mode' indication is received.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

object

A QmiClientLoc.

 

output

A QmiIndicationLocGetOperationModeOutput.

 

user_data

user data set when the signal handler was connected.

 
+
+

Flags: Run Last

+

Since: 1.22

+
+
+
+

The “get-predicted-orbits-data-source” signal

+
void
+user_function (QmiClientLoc                                       *object,
+               QmiIndicationLocGetPredictedOrbitsDataSourceOutput *output,
+               gpointer                                            user_data)
+

The ::get-predicted-orbits-data-source signal gets emitted when a 'Get Predicted Orbits Data Source' indication is received.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

object

A QmiClientLoc.

 

output

A QmiIndicationLocGetPredictedOrbitsDataSourceOutput.

 

user_data

user data set when the signal handler was connected.

 
+
+

Flags: Run Last

+

Since: 1.22

+
+
+
+

The “get-server” signal

+
void
+user_function (QmiClientLoc                    *object,
+               QmiIndicationLocGetServerOutput *output,
+               gpointer                         user_data)
+

The ::get-server signal gets emitted when a 'Get Server' indication is received.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

object

A QmiClientLoc.

 

output

A QmiIndicationLocGetServerOutput.

 

user_data

user data set when the signal handler was connected.

 
+
+

Flags: Run Last

+

Since: 1.22

+
+
+
+

The “gnss-sv-info” signal

+
void
+user_function (QmiClientLoc                     *object,
+               QmiIndicationLocGnssSvInfoOutput *output,
+               gpointer                          user_data)
+

The ::gnss-sv-info signal gets emitted when a 'GNSS Sv Info' indication is received.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

object

A QmiClientLoc.

 

output

A QmiIndicationLocGnssSvInfoOutput.

 

user_data

user data set when the signal handler was connected.

 
+
+

Flags: Run Last

+

Since: 1.22

+
+
+
+

The “inject-predicted-orbits-data” signal

+
void
+user_function (QmiClientLoc                                    *object,
+               QmiIndicationLocInjectPredictedOrbitsDataOutput *output,
+               gpointer                                         user_data)
+

The ::inject-predicted-orbits-data signal gets emitted when a 'Inject Predicted Orbits Data' indication is received.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

object

A QmiClientLoc.

 

output

A QmiIndicationLocInjectPredictedOrbitsDataOutput.

 

user_data

user data set when the signal handler was connected.

 
+
+

Flags: Run Last

+

Since: 1.22

+
+
+
+

The “inject-xtra-data” signal

+
void
+user_function (QmiClientLoc                         *object,
+               QmiIndicationLocInjectXtraDataOutput *output,
+               gpointer                              user_data)
+

The ::inject-xtra-data signal gets emitted when a 'Inject Xtra Data' indication is received.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

object

A QmiClientLoc.

 

output

A QmiIndicationLocInjectXtraDataOutput.

 

user_data

user data set when the signal handler was connected.

 
+
+

Flags: Run Last

+

Since: 1.22

+
+
+
+

The “nmea” signal

+
void
+user_function (QmiClientLoc               *object,
+               QmiIndicationLocNmeaOutput *output,
+               gpointer                    user_data)
+

The ::nmea signal gets emitted when a 'NMEA' indication is received.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

object

A QmiClientLoc.

 

output

A QmiIndicationLocNmeaOutput.

 

user_data

user data set when the signal handler was connected.

 
+
+

Flags: Run Last

+

Since: 1.22

+
+
+
+

The “position-report” signal

+
void
+user_function (QmiClientLoc                         *object,
+               QmiIndicationLocPositionReportOutput *output,
+               gpointer                              user_data)
+

The ::position-report signal gets emitted when a 'Position Report' indication is received.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

object

A QmiClientLoc.

 

output

A QmiIndicationLocPositionReportOutput.

 

user_data

user data set when the signal handler was connected.

 
+
+

Flags: Run Last

+

Since: 1.22

+
+
+
+

The “set-operation-mode” signal

+
void
+user_function (QmiClientLoc                           *object,
+               QmiIndicationLocSetOperationModeOutput *output,
+               gpointer                                user_data)
+

The ::set-operation-mode signal gets emitted when a 'Set Operation Mode' indication is received.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

object

A QmiClientLoc.

 

output

A QmiIndicationLocSetOperationModeOutput.

 

user_data

user data set when the signal handler was connected.

 
+
+

Flags: Run Last

+

Since: 1.22

+
+
+
+

The “set-server” signal

+
void
+user_function (QmiClientLoc                    *object,
+               QmiIndicationLocSetServerOutput *output,
+               gpointer                         user_data)
+

The ::set-server signal gets emitted when a 'Set Server' indication is received.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

object

A QmiClientLoc.

 

output

A QmiIndicationLocSetServerOutput.

 

user_data

user data set when the signal handler was connected.

 
+
+

Flags: Run Last

+

Since: 1.22

+
+
+
+ + + \ No newline at end of file diff -Nru libqmi-1.18.0/docs/reference/libqmi-glib/html/QmiClientNas.html libqmi-1.22.0/docs/reference/libqmi-glib/html/QmiClientNas.html --- libqmi-1.18.0/docs/reference/libqmi-glib/html/QmiClientNas.html 2017-03-22 12:28:29.000000000 +0100 +++ libqmi-1.22.0/docs/reference/libqmi-glib/html/QmiClientNas.html 2019-01-08 15:19:01.000000000 +0100 @@ -3,12 +3,12 @@ QmiClientNas: libqmi-glib Reference Manual - + - + @@ -119,9 +119,9 @@

The “event-report” signal

void
 user_function (QmiClientNas                      *object,
-               QmiIndicationNasEventReportOutput *output,
+               QmiIndicationNasEventReportOutput *output,
                gpointer                           user_data)
-

The ::event-report signal gets emitted when a 'Event Report' indication is received.

+

The ::event-report signal gets emitted when a 'Event Report' indication is received.

Parameters

@@ -138,7 +138,7 @@ - + @@ -157,9 +157,9 @@

The “network-time” signal

void
 user_function (QmiClientNas                      *object,
-               QmiIndicationNasNetworkTimeOutput *output,
+               QmiIndicationNasNetworkTimeOutput *output,
                gpointer                           user_data)
-

The ::network-time signal gets emitted when a 'Network Time' indication is received.

+

The ::network-time signal gets emitted when a 'Network Time' indication is received.

Parameters

output

A QmiIndicationNasEventReportOutput.

A QmiIndicationNasEventReportOutput.

 
@@ -176,7 +176,7 @@ - + @@ -195,9 +195,9 @@

The “operator-name” signal

void
 user_function (QmiClientNas                       *object,
-               QmiIndicationNasOperatorNameOutput *output,
+               QmiIndicationNasOperatorNameOutput *output,
                gpointer                            user_data)
-

The ::operator-name signal gets emitted when a 'Operator Name' indication is received.

+

The ::operator-name signal gets emitted when a 'Operator Name' indication is received.

Parameters

output

A QmiIndicationNasNetworkTimeOutput.

A QmiIndicationNasNetworkTimeOutput.

 
@@ -214,7 +214,7 @@ - + @@ -233,9 +233,9 @@

The “serving-system” signal

void
 user_function (QmiClientNas                        *object,
-               QmiIndicationNasServingSystemOutput *output,
+               QmiIndicationNasServingSystemOutput *output,
                gpointer                             user_data)
-

The ::serving-system signal gets emitted when a 'Serving System' indication is received.

+

The ::serving-system signal gets emitted when a 'Serving System' indication is received.

Parameters

output

A QmiIndicationNasOperatorNameOutput.

A QmiIndicationNasOperatorNameOutput.

 
@@ -252,7 +252,7 @@ - + @@ -271,9 +271,9 @@

The “signal-info” signal

void
 user_function (QmiClientNas                     *object,
-               QmiIndicationNasSignalInfoOutput *output,
+               QmiIndicationNasSignalInfoOutput *output,
                gpointer                          user_data)
-

The ::signal-info signal gets emitted when a 'Signal Info' indication is received.

+

The ::signal-info signal gets emitted when a 'Signal Info' indication is received.

Parameters

output

A QmiIndicationNasServingSystemOutput.

A QmiIndicationNasServingSystemOutput.

 
@@ -290,7 +290,7 @@ - + @@ -309,9 +309,9 @@

The “system-info” signal

void
 user_function (QmiClientNas                     *object,
-               QmiIndicationNasSystemInfoOutput *output,
+               QmiIndicationNasSystemInfoOutput *output,
                gpointer                          user_data)
-

The ::system-info signal gets emitted when a 'System Info' indication is received.

+

The ::system-info signal gets emitted when a 'System Info' indication is received.

Parameters

output

A QmiIndicationNasSignalInfoOutput.

A QmiIndicationNasSignalInfoOutput.

 
@@ -328,7 +328,7 @@ - + @@ -345,6 +345,6 @@ +
Generated by GTK-Doc V1.29 \ No newline at end of file diff -Nru libqmi-1.18.0/docs/reference/libqmi-glib/html/QmiClientOma.html libqmi-1.22.0/docs/reference/libqmi-glib/html/QmiClientOma.html --- libqmi-1.18.0/docs/reference/libqmi-glib/html/QmiClientOma.html 2017-03-22 12:28:29.000000000 +0100 +++ libqmi-1.22.0/docs/reference/libqmi-glib/html/QmiClientOma.html 2019-01-08 15:19:01.000000000 +0100 @@ -3,12 +3,12 @@ QmiClientOma: libqmi-glib Reference Manual - + - + @@ -92,9 +92,9 @@

The “event-report” signal

void
 user_function (QmiClientOma                      *object,
-               QmiIndicationOmaEventReportOutput *output,
+               QmiIndicationOmaEventReportOutput *output,
                gpointer                           user_data)
-

The ::event-report signal gets emitted when a 'Event Report' indication is received.

+

The ::event-report signal gets emitted when a 'Event Report' indication is received.

Parameters

output

A QmiIndicationNasSystemInfoOutput.

A QmiIndicationNasSystemInfoOutput.

 
@@ -111,7 +111,7 @@ - + @@ -128,6 +128,6 @@ +
Generated by GTK-Doc V1.29 \ No newline at end of file diff -Nru libqmi-1.18.0/docs/reference/libqmi-glib/html/QmiClientPbm.html libqmi-1.22.0/docs/reference/libqmi-glib/html/QmiClientPbm.html --- libqmi-1.18.0/docs/reference/libqmi-glib/html/QmiClientPbm.html 2017-03-22 12:28:29.000000000 +0100 +++ libqmi-1.22.0/docs/reference/libqmi-glib/html/QmiClientPbm.html 2019-01-08 15:19:01.000000000 +0100 @@ -3,12 +3,12 @@ QmiClientPbm: libqmi-glib Reference Manual - + - + @@ -72,6 +72,6 @@ +
Generated by GTK-Doc V1.29 \ No newline at end of file diff -Nru libqmi-1.18.0/docs/reference/libqmi-glib/html/QmiClientPdc.html libqmi-1.22.0/docs/reference/libqmi-glib/html/QmiClientPdc.html --- libqmi-1.18.0/docs/reference/libqmi-glib/html/QmiClientPdc.html 2017-03-22 12:28:29.000000000 +0100 +++ libqmi-1.22.0/docs/reference/libqmi-glib/html/QmiClientPdc.html 2019-01-08 15:19:01.000000000 +0100 @@ -3,12 +3,12 @@ QmiClientPdc: libqmi-glib Reference Manual - + - + @@ -124,9 +124,9 @@

The “activate-config” signal

void
 user_function (QmiClientPdc                         *object,
-               QmiIndicationPdcActivateConfigOutput *output,
+               QmiIndicationPdcActivateConfigOutput *output,
                gpointer                              user_data)
-

The ::activate-config signal gets emitted when a 'Activate Config' indication is received.

+

The ::activate-config signal gets emitted when a 'Activate Config' indication is received.

Parameters

output

A QmiIndicationOmaEventReportOutput.

A QmiIndicationOmaEventReportOutput.

 
@@ -143,7 +143,7 @@ - + @@ -162,9 +162,9 @@

The “deactivate-config” signal

void
 user_function (QmiClientPdc                           *object,
-               QmiIndicationPdcDeactivateConfigOutput *output,
+               QmiIndicationPdcDeactivateConfigOutput *output,
                gpointer                                user_data)
-

The ::deactivate-config signal gets emitted when a 'Deactivate Config' indication is received.

+

The ::deactivate-config signal gets emitted when a 'Deactivate Config' indication is received.

Parameters

output

A QmiIndicationPdcActivateConfigOutput.

A QmiIndicationPdcActivateConfigOutput.

 
@@ -181,7 +181,7 @@ - + @@ -200,9 +200,9 @@

The “get-config-info” signal

void
 user_function (QmiClientPdc                        *object,
-               QmiIndicationPdcGetConfigInfoOutput *output,
+               QmiIndicationPdcGetConfigInfoOutput *output,
                gpointer                             user_data)
-

The ::get-config-info signal gets emitted when a 'Get Config Info' indication is received.

+

The ::get-config-info signal gets emitted when a 'Get Config Info' indication is received.

Parameters

output

A QmiIndicationPdcDeactivateConfigOutput.

A QmiIndicationPdcDeactivateConfigOutput.

 
@@ -219,7 +219,7 @@ - + @@ -238,9 +238,9 @@

The “get-selected-config” signal

void
 user_function (QmiClientPdc                            *object,
-               QmiIndicationPdcGetSelectedConfigOutput *output,
+               QmiIndicationPdcGetSelectedConfigOutput *output,
                gpointer                                 user_data)
-

The ::get-selected-config signal gets emitted when a 'Get Selected Config' indication is received.

+

The ::get-selected-config signal gets emitted when a 'Get Selected Config' indication is received.

Parameters

output

A QmiIndicationPdcGetConfigInfoOutput.

A QmiIndicationPdcGetConfigInfoOutput.

 
@@ -257,7 +257,7 @@ - + @@ -276,9 +276,9 @@

The “list-configs” signal

void
 user_function (QmiClientPdc                      *object,
-               QmiIndicationPdcListConfigsOutput *output,
+               QmiIndicationPdcListConfigsOutput *output,
                gpointer                           user_data)
-

The ::list-configs signal gets emitted when a 'List Configs' indication is received.

+

The ::list-configs signal gets emitted when a 'List Configs' indication is received.

Parameters

output

A QmiIndicationPdcGetSelectedConfigOutput.

A QmiIndicationPdcGetSelectedConfigOutput.

 
@@ -295,7 +295,7 @@ - + @@ -314,9 +314,9 @@

The “load-config” signal

void
 user_function (QmiClientPdc                     *object,
-               QmiIndicationPdcLoadConfigOutput *output,
+               QmiIndicationPdcLoadConfigOutput *output,
                gpointer                          user_data)
-

The ::load-config signal gets emitted when a 'Load Config' indication is received.

+

The ::load-config signal gets emitted when a 'Load Config' indication is received.

Parameters

output

A QmiIndicationPdcListConfigsOutput.

A QmiIndicationPdcListConfigsOutput.

 
@@ -333,7 +333,7 @@ - + @@ -352,9 +352,9 @@

The “set-selected-config” signal

void
 user_function (QmiClientPdc                            *object,
-               QmiIndicationPdcSetSelectedConfigOutput *output,
+               QmiIndicationPdcSetSelectedConfigOutput *output,
                gpointer                                 user_data)
-

The ::set-selected-config signal gets emitted when a 'Set Selected Config' indication is received.

+

The ::set-selected-config signal gets emitted when a 'Set Selected Config' indication is received.

Parameters

output

A QmiIndicationPdcLoadConfigOutput.

A QmiIndicationPdcLoadConfigOutput.

 
@@ -371,7 +371,7 @@ - + @@ -388,6 +388,6 @@ +
Generated by GTK-Doc V1.29 \ No newline at end of file diff -Nru libqmi-1.18.0/docs/reference/libqmi-glib/html/QmiClientPds.html libqmi-1.22.0/docs/reference/libqmi-glib/html/QmiClientPds.html --- libqmi-1.18.0/docs/reference/libqmi-glib/html/QmiClientPds.html 2017-03-22 12:28:28.000000000 +0100 +++ libqmi-1.22.0/docs/reference/libqmi-glib/html/QmiClientPds.html 2019-01-08 15:19:01.000000000 +0100 @@ -3,12 +3,12 @@ QmiClientPds: libqmi-glib Reference Manual - + - + @@ -99,9 +99,9 @@

The “event-report” signal

void
 user_function (QmiClientPds                      *object,
-               QmiIndicationPdsEventReportOutput *output,
+               QmiIndicationPdsEventReportOutput *output,
                gpointer                           user_data)
-

The ::event-report signal gets emitted when a 'Event Report' indication is received.

+

The ::event-report signal gets emitted when a 'Event Report' indication is received.

Parameters

output

A QmiIndicationPdcSetSelectedConfigOutput.

A QmiIndicationPdcSetSelectedConfigOutput.

 
@@ -118,7 +118,7 @@ - + @@ -167,6 +167,6 @@ +
Generated by GTK-Doc V1.29 \ No newline at end of file diff -Nru libqmi-1.18.0/docs/reference/libqmi-glib/html/QmiClientQos.html libqmi-1.22.0/docs/reference/libqmi-glib/html/QmiClientQos.html --- libqmi-1.18.0/docs/reference/libqmi-glib/html/QmiClientQos.html 1970-01-01 01:00:00.000000000 +0100 +++ libqmi-1.22.0/docs/reference/libqmi-glib/html/QmiClientQos.html 2019-01-08 15:19:01.000000000 +0100 @@ -0,0 +1,178 @@ + + + + +QmiClientQos: libqmi-glib Reference Manual + + + + + + + + + +

output

A QmiIndicationPdsEventReportOutput.

A QmiIndicationPdsEventReportOutput.

 
+ + + + + + +
+
+
+ + +
+

QmiClientQos

+

QmiClientQos — QmiClient for the QOS service.

+
+
+

Signals

+
+++++ + + + + + + + + + + + + +
voidflow-statusRun Last
voidnetwork-statusRun Last
+
+
+

Types and Values

+
++++ + + + + +
structQmiClientQos
+
+
+

Object Hierarchy

+
    GObject
+    ╰── QmiClient
+        ╰── QmiClientQos
+
+
+
+

Description

+

QmiClient which handles operations in the QOS service.

+
+
+

Functions

+

+
+
+

Types and Values

+
+

struct QmiClientQos

+
struct QmiClientQos;
+

The QmiClientQos structure contains private data and should only be accessed +using the provided API.

+

Since: 1.0

+
+
+
+

Signal Details

+
+

The “flow-status” signal

+
void
+user_function (QmiClientQos                     *object,
+               QmiIndicationQosFlowStatusOutput *output,
+               gpointer                          user_data)
+

The ::flow-status signal gets emitted when a 'Flow Status' indication is received.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

object

A QmiClientQos.

 

output

A QmiIndicationQosFlowStatusOutput.

 

user_data

user data set when the signal handler was connected.

 
+
+

Flags: Run Last

+

Since: 1.22

+
+
+
+

The “network-status” signal

+
void
+user_function (QmiClientQos                        *object,
+               QmiIndicationQosNetworkStatusOutput *output,
+               gpointer                             user_data)
+

The ::network-status signal gets emitted when a 'Network Status' indication is received.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

object

A QmiClientQos.

 

output

A QmiIndicationQosNetworkStatusOutput.

 

user_data

user data set when the signal handler was connected.

 
+
+

Flags: Run Last

+

Since: 1.22

+
+
+
+ + + \ No newline at end of file diff -Nru libqmi-1.18.0/docs/reference/libqmi-glib/html/QmiClientUim.html libqmi-1.22.0/docs/reference/libqmi-glib/html/QmiClientUim.html --- libqmi-1.18.0/docs/reference/libqmi-glib/html/QmiClientUim.html 2017-03-22 12:28:29.000000000 +0100 +++ libqmi-1.22.0/docs/reference/libqmi-glib/html/QmiClientUim.html 2019-01-08 15:19:01.000000000 +0100 @@ -3,12 +3,12 @@ QmiClientUim: libqmi-glib Reference Manual - + - + @@ -16,7 +16,8 @@ Top  |  Description  |  - Object Hierarchy + Object Hierarchy  |  + Signals Home Up @@ -33,6 +34,21 @@
+

Signals

+
+++++ + + + + + +
voidcard-statusRun Last
+
+

Types and Values

@@ -70,8 +86,48 @@

Since: 1.6

+
+

Signal Details

+
+

The “card-status” signal

+
void
+user_function (QmiClientUim                     *object,
+               QmiIndicationUimCardStatusOutput *output,
+               gpointer                          user_data)
+

The ::card-status signal gets emitted when a 'Card Status' indication is received.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

object

A QmiClientUim.

 

output

A QmiIndicationUimCardStatusOutput.

 

user_data

user data set when the signal handler was connected.

 
+
+

Flags: Run Last

+

Since: 1.22

+
+ +
Generated by GTK-Doc V1.29 \ No newline at end of file diff -Nru libqmi-1.18.0/docs/reference/libqmi-glib/html/QmiClientVoice.html libqmi-1.22.0/docs/reference/libqmi-glib/html/QmiClientVoice.html --- libqmi-1.18.0/docs/reference/libqmi-glib/html/QmiClientVoice.html 2017-03-22 12:28:29.000000000 +0100 +++ libqmi-1.22.0/docs/reference/libqmi-glib/html/QmiClientVoice.html 2019-01-08 15:19:01.000000000 +0100 @@ -3,12 +3,12 @@ QmiClientVoice: libqmi-glib Reference Manual - + - + @@ -92,9 +92,9 @@

The “all-call-status” signal

void
 user_function (QmiClientVoice                        *object,
-               QmiIndicationVoiceAllCallStatusOutput *output,
+               QmiIndicationVoiceAllCallStatusOutput *output,
                gpointer                               user_data)
-

The ::all-call-status signal gets emitted when a 'All Call Status' indication is received.

+

The ::all-call-status signal gets emitted when a 'All Call Status' indication is received.

Parameters

@@ -111,7 +111,7 @@ - + @@ -128,6 +128,6 @@ +
Generated by GTK-Doc V1.29 \ No newline at end of file diff -Nru libqmi-1.18.0/docs/reference/libqmi-glib/html/QmiClientWda.html libqmi-1.22.0/docs/reference/libqmi-glib/html/QmiClientWda.html --- libqmi-1.18.0/docs/reference/libqmi-glib/html/QmiClientWda.html 2017-03-22 12:28:29.000000000 +0100 +++ libqmi-1.22.0/docs/reference/libqmi-glib/html/QmiClientWda.html 2019-01-08 15:19:01.000000000 +0100 @@ -3,12 +3,12 @@ QmiClientWda: libqmi-glib Reference Manual - + - + @@ -72,6 +72,6 @@ +
Generated by GTK-Doc V1.29 \ No newline at end of file diff -Nru libqmi-1.18.0/docs/reference/libqmi-glib/html/QmiClientWds.html libqmi-1.22.0/docs/reference/libqmi-glib/html/QmiClientWds.html --- libqmi-1.18.0/docs/reference/libqmi-glib/html/QmiClientWds.html 2017-03-22 12:28:29.000000000 +0100 +++ libqmi-1.22.0/docs/reference/libqmi-glib/html/QmiClientWds.html 2019-01-08 15:19:01.000000000 +0100 @@ -3,12 +3,12 @@ QmiClientWds: libqmi-glib Reference Manual - + - + @@ -99,9 +99,9 @@

The “event-report” signal

void
 user_function (QmiClientWds                      *object,
-               QmiIndicationWdsEventReportOutput *output,
+               QmiIndicationWdsEventReportOutput *output,
                gpointer                           user_data)
-

The ::event-report signal gets emitted when a 'Event Report' indication is received.

+

The ::event-report signal gets emitted when a 'Event Report' indication is received.

Parameters

output

A QmiIndicationVoiceAllCallStatusOutput.

A QmiIndicationVoiceAllCallStatusOutput.

 
@@ -118,7 +118,7 @@ - + @@ -137,9 +137,9 @@

The “packet-service-status” signal

void
 user_function (QmiClientWds                              *object,
-               QmiIndicationWdsPacketServiceStatusOutput *output,
+               QmiIndicationWdsPacketServiceStatusOutput *output,
                gpointer                                   user_data)
-

The ::packet-service-status signal gets emitted when a 'Packet Service Status' indication is received.

+

The ::packet-service-status signal gets emitted when a 'Packet Service Status' indication is received.

Parameters

output

A QmiIndicationWdsEventReportOutput.

A QmiIndicationWdsEventReportOutput.

 
@@ -156,7 +156,7 @@ - + @@ -173,6 +173,6 @@ +
Generated by GTK-Doc V1.29 \ No newline at end of file diff -Nru libqmi-1.18.0/docs/reference/libqmi-glib/html/QmiClientWms.html libqmi-1.22.0/docs/reference/libqmi-glib/html/QmiClientWms.html --- libqmi-1.18.0/docs/reference/libqmi-glib/html/QmiClientWms.html 2017-03-22 12:28:29.000000000 +0100 +++ libqmi-1.22.0/docs/reference/libqmi-glib/html/QmiClientWms.html 2019-01-08 15:19:01.000000000 +0100 @@ -3,12 +3,12 @@ QmiClientWms: libqmi-glib Reference Manual - + - + @@ -99,9 +99,9 @@

The “event-report” signal

void
 user_function (QmiClientWms                      *object,
-               QmiIndicationWmsEventReportOutput *output,
+               QmiIndicationWmsEventReportOutput *output,
                gpointer                           user_data)
-

The ::event-report signal gets emitted when a 'Event Report' indication is received.

+

The ::event-report signal gets emitted when a 'Event Report' indication is received.

Parameters

output

A QmiIndicationWdsPacketServiceStatusOutput.

A QmiIndicationWdsPacketServiceStatusOutput.

 
@@ -118,7 +118,7 @@ - + @@ -137,9 +137,9 @@

The “smsc-address” signal

void
 user_function (QmiClientWms                      *object,
-               QmiIndicationWmsSmscAddressOutput *output,
+               QmiIndicationWmsSmscAddressOutput *output,
                gpointer                           user_data)
-

The ::smsc-address signal gets emitted when a 'SMSC Address' indication is received.

+

The ::smsc-address signal gets emitted when a 'SMSC Address' indication is received.

Parameters

output

A QmiIndicationWmsEventReportOutput.

A QmiIndicationWmsEventReportOutput.

 
@@ -156,7 +156,7 @@ - + @@ -173,6 +173,6 @@ +
Generated by GTK-Doc V1.29 \ No newline at end of file diff -Nru libqmi-1.18.0/docs/reference/libqmi-glib/html/QmiDevice.html libqmi-1.22.0/docs/reference/libqmi-glib/html/QmiDevice.html --- libqmi-1.18.0/docs/reference/libqmi-glib/html/QmiDevice.html 2017-03-22 12:28:28.000000000 +0100 +++ libqmi-1.22.0/docs/reference/libqmi-glib/html/QmiDevice.html 2019-01-08 15:19:01.000000000 +0100 @@ -3,12 +3,12 @@ QmiDevice: libqmi-glib Reference Manual - + - + @@ -138,14 +138,6 @@ - - - - - + + + + + + + - + +

output

A QmiIndicationWmsSmscAddressOutput.

A QmiIndicationWmsSmscAddressOutput.

 
-gboolean - -qmi_device_close () -
void @@ -325,11 +317,18 @@
voiddevice-removedRun Last
void indication Run Last
@@ -361,6 +360,10 @@ QMI_DEVICE_SIGNAL_INDICATION +#define +QMI_DEVICE_SIGNAL_REMOVED + + struct QmiDevice @@ -385,9 +388,9 @@

Object Hierarchy

-
    GEnum
+
    GEnum
     ╰── QmiDeviceExpectedDataFormat
-    GFlags
+    GFlags
     ├── QmiDeviceOpenFlags
     ╰── QmiDeviceReleaseClientFlags
     GObject
@@ -842,51 +845,6 @@
 

-

qmi_device_close ()

-
gboolean
-qmi_device_close (QmiDevice *self,
-                  GError **error);
-
-

qmi_device_close has been deprecated since version 1.18 and should not be used in newly-written code.

-

Use qmi_device_close_async() instead.

-
-

Synchronously closes a QmiDevice, preventing any further I/O.

-

If this device was opened with QMI_DEVICE_OPEN_FLAGS_MBIM -, this -operation will not wait for the response of the underlying MBIM -close sequence.

-

Closing a QmiDevice multiple times will not return an error.

-
-

Parameters

-
----- - - - - - - - - - - - - -

self

a QmiDevice

 

error

Return location for error or NULL.

 
-
-
-

Returns

-

TRUE if successful, FALSE if error -is set.

-
-

Since: 1.0

-
-
-

qmi_device_close_async ()

void
 qmi_device_close_async (QmiDevice *self,
@@ -1655,7 +1613,7 @@
 

Returns

-

a string with the list of nicknames, or NULL if none given. The returned value should be freed with g_free().

+

a string with the list of nicknames, or NULL if none given. The returned value should be freed with g_free().

[transfer full]

Since: 1.0

@@ -1686,7 +1644,7 @@

Returns

-

a string with the list of nicknames, or NULL if none given. The returned value should be freed with g_free().

+

a string with the list of nicknames, or NULL if none given. The returned value should be freed with g_free().

[transfer full]

Since: 1.0

@@ -1716,7 +1674,7 @@

Returns

-

a string with the nickname, or NULL if not found. Do not free the returned value.

+

a string with the nickname, or NULL if not found. Do not free the returned value.

[transfer none]

Since: 1.14

@@ -1765,6 +1723,12 @@
+

QMI_DEVICE_SIGNAL_REMOVED

+
#define QMI_DEVICE_SIGNAL_REMOVED "device-removed"
+
+
+
+

struct QmiDevice

struct QmiDevice;

The QmiDevice structure contains private data and should only be accessed @@ -1858,6 +1822,13 @@   + +

QMI_DEVICE_OPEN_FLAGS_EXPECT_INDICATIONS

+ +

Explicitly state that indications are wanted (implicit in QMI mode, optional when in MBIM mode).

+ +  +
@@ -2014,6 +1985,43 @@

Signal Details

+

The “device-removed” signal

+
void
+user_function (QmiDevice *object,
+               gpointer   user_data)
+

The ::device-removed signal is emitted when an unexpected port hang-up is received.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

object

A QmiDevice.

 

output

none

 

user_data

user data set when the signal handler was connected.

 
+
+

Flags: Run Last

+

Since: 1.20

+
+
+

The “indication” signal

void
 user_function (QmiDevice  *object,
@@ -2053,6 +2061,6 @@
 
+
Generated by GTK-Doc V1.29 \ No newline at end of file diff -Nru libqmi-1.18.0/docs/reference/libqmi-glib/html/QmiMessageContext.html libqmi-1.22.0/docs/reference/libqmi-glib/html/QmiMessageContext.html --- libqmi-1.18.0/docs/reference/libqmi-glib/html/QmiMessageContext.html 2017-03-22 12:28:29.000000000 +0100 +++ libqmi-1.22.0/docs/reference/libqmi-glib/html/QmiMessageContext.html 2019-01-08 15:19:01.000000000 +0100 @@ -3,12 +3,12 @@ QmiMessageContext: libqmi-glib Reference Manual - + - + @@ -104,7 +104,7 @@

Object Hierarchy

-
    GBoxed
+
    GBoxed
     ╰── QmiMessageContext
 
@@ -124,7 +124,7 @@

Create a new empty QmiMessageContext.

Returns

-

a newly created QmiMessageContext. The returned value should be freed with qmi_message_context_unref().

+

a newly created QmiMessageContext. The returned value should be freed with qmi_message_context_unref().

[transfer full]

Since: 1.18

@@ -261,6 +261,6 @@ +
Generated by GTK-Doc V1.29 \ No newline at end of file diff -Nru libqmi-1.18.0/docs/reference/libqmi-glib/html/QmiProxy.html libqmi-1.22.0/docs/reference/libqmi-glib/html/QmiProxy.html --- libqmi-1.18.0/docs/reference/libqmi-glib/html/QmiProxy.html 2017-03-22 12:28:29.000000000 +0100 +++ libqmi-1.22.0/docs/reference/libqmi-glib/html/QmiProxy.html 2019-01-08 15:19:01.000000000 +0100 @@ -3,12 +3,12 @@ QmiProxy: libqmi-glib Reference Manual - + - + @@ -210,6 +210,6 @@ +
Generated by GTK-Doc V1.29 \ No newline at end of file diff -Nru libqmi-1.18.0/docs/reference/libqmi-glib/html/style.css libqmi-1.22.0/docs/reference/libqmi-glib/html/style.css --- libqmi-1.18.0/docs/reference/libqmi-glib/html/style.css 2017-03-22 12:28:28.000000000 +0100 +++ libqmi-1.22.0/docs/reference/libqmi-glib/html/style.css 2019-01-08 15:19:01.000000000 +0100 @@ -30,6 +30,10 @@ vertical-align: top; } +span.nowrap { + white-space: nowrap; +} + div.gallery-float { float: left; diff -Nru libqmi-1.18.0/docs/reference/libqmi-glib/libqmi-glib-common.sections libqmi-1.22.0/docs/reference/libqmi-glib/libqmi-glib-common.sections --- libqmi-1.18.0/docs/reference/libqmi-glib/libqmi-glib-common.sections 2017-03-21 14:26:54.000000000 +0100 +++ libqmi-1.22.0/docs/reference/libqmi-glib/libqmi-glib-common.sections 2019-01-08 14:09:47.000000000 +0100 @@ -18,11 +18,13 @@ QMI_CLIENT_CID QMI_CLIENT_VERSION_MAJOR QMI_CLIENT_VERSION_MINOR +QMI_CLIENT_VALID QmiClient qmi_client_get_device qmi_client_peek_device qmi_client_get_service qmi_client_get_cid +qmi_client_is_valid qmi_client_get_version qmi_client_check_version qmi_client_get_next_transaction_id @@ -48,6 +50,7 @@ QMI_DEVICE_PROXY_PATH QMI_DEVICE_WWAN_IFACE QMI_DEVICE_SIGNAL_INDICATION +QMI_DEVICE_SIGNAL_REMOVED QmiDevice QmiDeviceOpenFlags QmiDeviceReleaseClientFlags @@ -65,7 +68,6 @@ qmi_device_is_open qmi_device_open qmi_device_open_finish -qmi_device_close qmi_device_close_async qmi_device_close_finish qmi_device_allocate_client @@ -163,6 +165,7 @@ QmiDmsFirmwareImageType QmiDmsBootImageDownloadMode QmiDmsHpDeviceMode +QmiDmsSwiUsbComposition qmi_dms_data_service_capability_get_string qmi_dms_sim_capability_get_string @@ -183,6 +186,8 @@ qmi_dms_firmware_image_type_get_string qmi_dms_boot_image_download_mode_get_string qmi_dms_hp_device_mode_get_string +qmi_dms_swi_usb_composition_get_string +qmi_dms_swi_usb_composition_get_description qmi_dms_data_service_capability_build_string_from_mask qmi_dms_sim_capability_build_string_from_mask @@ -201,6 +206,7 @@ qmi_dms_firmware_image_type_build_string_from_mask qmi_dms_boot_image_download_mode_build_string_from_mask qmi_dms_hp_device_mode_build_string_from_mask +qmi_dms_swi_usb_composition_build_string_from_mask QMI_TYPE_DMS_ACTIVATION_STATE QMI_TYPE_DMS_BOOT_IMAGE_DOWNLOAD_MODE @@ -219,6 +225,7 @@ QMI_TYPE_DMS_UIM_PIN_STATUS QMI_TYPE_DMS_UIM_STATE QMI_TYPE_DMS_HP_DEVICE_MODE +QMI_TYPE_DMS_SWI_USB_COMPOSITION qmi_dms_activation_state_get_type qmi_dms_boot_image_download_mode_get_type qmi_dms_data_service_capability_get_type @@ -236,6 +243,7 @@ qmi_dms_uim_pin_status_get_type qmi_dms_uim_state_get_type qmi_dms_hp_device_mode_get_type +qmi_dms_swi_usb_composition_get_type
@@ -260,6 +268,7 @@ QmiNasNetworkDescriptionEncoding QmiNasRadioTechnologyPreference QmiNasPreferenceDuration +QmiNasPsAttachAction QmiNasRatModePreference QmiNasCdmaPrlPreference QmiNasRoamingPreference @@ -306,6 +315,7 @@ qmi_nas_network_description_encoding_get_string qmi_nas_radio_technology_preference_build_string_from_mask qmi_nas_preference_duration_get_string +qmi_nas_ps_attach_action_get_string qmi_nas_rat_mode_preference_build_string_from_mask qmi_nas_cdma_prl_preference_get_string qmi_nas_roaming_preference_get_string @@ -375,6 +385,7 @@ qmi_nas_plmn_encoding_scheme_build_string_from_mask qmi_nas_plmn_name_country_initials_build_string_from_mask qmi_nas_plmn_name_spare_bits_build_string_from_mask +qmi_nas_ps_attach_action_build_string_from_mask QMI_TYPE_NAS_ACTIVE_BAND QMI_TYPE_NAS_ATTACH_STATE @@ -396,6 +407,7 @@ QMI_TYPE_NAS_NETWORK_STATUS QMI_TYPE_NAS_NETWORK_TYPE QMI_TYPE_NAS_PREFERENCE_DURATION +QMI_TYPE_NAS_PS_ATTACH_ACTION QMI_TYPE_NAS_RADIO_INTERFACE QMI_TYPE_NAS_RADIO_TECHNOLOGY_PREFERENCE QMI_TYPE_NAS_RAT_MODE_PREFERENCE @@ -439,6 +451,7 @@ qmi_nas_network_status_get_type qmi_nas_network_type_get_type qmi_nas_preference_duration_get_type +qmi_nas_ps_attach_action_get_type qmi_nas_radio_interface_get_type qmi_nas_radio_technology_preference_get_type qmi_nas_rat_mode_preference_get_type @@ -467,6 +480,7 @@
qmi-enums-wds QmiWdsIpFamily +QmiWdsProfileFamily QmiWdsTechnologyPreference QmiWdsExtendedTechnologyPreference QmiWdsCallType @@ -517,6 +531,7 @@ QmiWdsClientType qmi_wds_ip_family_get_string +qmi_wds_profile_family_get_string qmi_wds_technology_preference_build_string_from_mask qmi_wds_extended_technology_preference_get_string qmi_wds_call_type_get_string @@ -568,6 +583,7 @@ qmi_wds_client_type_get_string qmi_wds_ip_family_build_string_from_mask +qmi_wds_profile_family_build_string_from_mask qmi_wds_technology_preference_get_string qmi_wds_extended_technology_preference_build_string_from_mask qmi_wds_call_type_build_string_from_mask @@ -627,6 +643,7 @@ QMI_TYPE_WDS_EXTENDED_TECHNOLOGY_PREFERENCE QMI_TYPE_WDS_GET_CURRENT_SETTINGS_REQUESTED_SETTINGS QMI_TYPE_WDS_IP_FAMILY +QMI_TYPE_WDS_PROFILE_FAMILY QMI_TYPE_WDS_NETWORK_TYPE QMI_TYPE_WDS_DATA_SYSTEM_NETWORK_TYPE QMI_TYPE_WDS_PDP_TYPE @@ -676,6 +693,7 @@ qmi_wds_extended_technology_preference_get_type qmi_wds_get_current_settings_requested_settings_get_type qmi_wds_ip_family_get_type +qmi_wds_profile_family_get_type qmi_wds_network_type_get_type qmi_wds_data_system_network_type_get_type qmi_wds_pdp_type_get_type @@ -1054,6 +1072,136 @@
+qmi-enums-loc +QmiLocIntermediateReportState +QmiLocEventRegistrationFlag +QmiLocFixRecurrenceType +QmiLocOperationMode +QmiLocEngineState +QmiLocSatelliteValidInformation +QmiLocSystem +QmiLocHealthStatus +QmiLocSatelliteStatus +QmiLocNavigationData +QmiLocIndicationStatus +QmiLocSensorDataUsage +QmiLocTimeSource +QmiLocTechnologyUsed +QmiLocReliability +QmiLocSessionStatus +QmiLocServerType +QmiLocServerAddressType +QmiLocPredictedOrbitsDataFormat +QmiLocDeleteCellDatabase +QmiLocDeleteClockInfo +QmiLocDeleteGnssData +QmiLocDeleteSvInfo + +qmi_loc_intermediate_report_state_get_string +qmi_loc_fix_recurrence_type_get_string +qmi_loc_operation_mode_get_string +qmi_loc_engine_state_get_string +qmi_loc_health_status_get_string +qmi_loc_indication_status_get_string +qmi_loc_navigation_data_get_string +qmi_loc_reliability_get_string +qmi_loc_satellite_status_get_string +qmi_loc_satellite_valid_information_build_string_from_mask +qmi_loc_session_status_get_string +qmi_loc_system_get_string +qmi_loc_technology_used_build_string_from_mask +qmi_loc_time_source_get_string +qmi_loc_server_type_get_string +qmi_loc_server_address_type_build_string_from_mask +qmi_loc_predicted_orbits_data_format_get_string +qmi_loc_delete_cell_database_build_string_from_mask +qmi_loc_delete_clock_info_build_string_from_mask +qmi_loc_delete_gnss_data_build_string_from_mask +qmi_loc_delete_sv_info_build_string_from_mask + +qmi_loc_intermediate_report_state_build_string_from_mask +qmi_loc_operation_mode_build_string_from_mask +qmi_loc_fix_recurrence_type_build_string_from_mask +qmi_loc_event_registration_flag_build_string_from_mask +qmi_loc_engine_state_build_string_from_mask +qmi_loc_health_status_build_string_from_mask +qmi_loc_indication_status_build_string_from_mask +qmi_loc_navigation_data_build_string_from_mask +qmi_loc_reliability_build_string_from_mask +qmi_loc_satellite_status_build_string_from_mask +qmi_loc_satellite_valid_information_get_string +qmi_loc_sensor_data_usage_build_string_from_mask +qmi_loc_session_status_build_string_from_mask +qmi_loc_system_build_string_from_mask +qmi_loc_technology_used_get_string +qmi_loc_time_source_build_string_from_mask +qmi_loc_server_type_build_string_from_mask +qmi_loc_server_address_type_get_string +qmi_loc_predicted_orbits_data_format_build_string_from_mask +qmi_loc_delete_cell_database_get_string +qmi_loc_delete_clock_info_get_string +qmi_loc_delete_sv_info_get_string + +QMI_TYPE_LOC_INTERMEDIATE_REPORT_STATE +QMI_TYPE_LOC_FIX_RECURRENCE_TYPE +QMI_TYPE_LOC_OPERATION_MODE +QMI_TYPE_LOC_ENGINE_STATE +QMI_TYPE_LOC_HEALTH_STATUS +QMI_TYPE_LOC_INDICATION_STATUS +QMI_TYPE_LOC_NAVIGATION_DATA +QMI_TYPE_LOC_RELIABILITY +QMI_TYPE_LOC_SATELLITE_STATUS +QMI_TYPE_LOC_SATELLITE_VALID_INFORMATION +QMI_TYPE_LOC_SESSION_STATUS +QMI_TYPE_LOC_SYSTEM +QMI_TYPE_LOC_TECHNOLOGY_USED +QMI_TYPE_LOC_TIME_SOURCE +QMI_TYPE_LOC_SERVER_TYPE +QMI_TYPE_LOC_SERVER_ADDRESS_TYPE +QMI_TYPE_LOC_PREDICTED_ORBITS_DATA_FORMAT +QMI_TYPE_LOC_DELETE_CELL_DATABASE +QMI_TYPE_LOC_DELETE_CLOCK_INFO +QMI_TYPE_LOC_DELETE_SV_INFO +qmi_loc_intermediate_report_state_get_type +qmi_loc_fix_recurrence_type_get_type +qmi_loc_operation_mode_get_type +qmi_loc_engine_state_get_type +qmi_loc_health_status_get_type +qmi_loc_indication_status_get_type +qmi_loc_navigation_data_get_type +qmi_loc_reliability_get_type +qmi_loc_satellite_status_get_type +qmi_loc_satellite_valid_information_get_type +qmi_loc_session_status_get_type +qmi_loc_system_get_type +qmi_loc_technology_used_get_type +qmi_loc_time_source_get_type +qmi_loc_server_type_get_type +qmi_loc_server_address_type_get_type +qmi_loc_predicted_orbits_data_format_get_type +qmi_loc_delete_cell_database_get_type +qmi_loc_delete_clock_info_get_type +qmi_loc_delete_sv_info_get_type +
+ +
+qmi-enums-qos +QmiQosStatus +QmiQosEvent + +qmi_qos_status_get_string +qmi_qos_event_get_string + +qmi_qos_status_build_string_from_mask +qmi_qos_event_build_string_from_mask + +QMI_TYPE_QOS_STATUS +QMI_TYPE_QOS_EVENT +qmi_qos_status_get_type +qmi_qos_event_get_type +
+ +
qmi-errors QmiCoreError QmiProtocolError @@ -1094,7 +1242,6 @@ qmi_message_get_message_id qmi_message_get_length qmi_message_get_raw -qmi_message_get_version_introduced qmi_message_get_version_introduced_full qmi_message_tlv_write_init @@ -1121,7 +1268,8 @@ qmi_message_tlv_read_guint64 qmi_message_tlv_read_gint64 qmi_message_tlv_read_sized_guint -qmi_message_tlv_read_gfloat +qmi_message_tlv_read_gfloat_endian +qmi_message_tlv_read_gdouble qmi_message_tlv_read_string qmi_message_tlv_read_fixed_size_string @@ -1132,7 +1280,6 @@ qmi_message_set_transaction_id -qmi_message_get_printable qmi_message_get_printable_full qmi_message_get_tlv_printable
@@ -1157,7 +1304,13 @@ qmi_utils_get_traces_enabled qmi_utils_set_traces_enabled - +
+ +
+qmi-compat + +qmi_device_close + qmi_utils_read_guint8_from_buffer qmi_utils_read_gint8_from_buffer qmi_utils_read_guint16_from_buffer @@ -1170,7 +1323,6 @@ qmi_utils_read_gfloat_from_buffer qmi_utils_read_string_from_buffer qmi_utils_read_fixed_size_string_from_buffer - qmi_utils_write_guint8_to_buffer qmi_utils_write_gint8_to_buffer qmi_utils_write_guint16_to_buffer @@ -1182,15 +1334,28 @@ qmi_utils_write_sized_guint_to_buffer qmi_utils_write_string_to_buffer qmi_utils_write_fixed_size_string_to_buffer -
- -
-qmi-compat - + +qmi_message_get_version_introduced +qmi_message_get_printable qmi_message_dms_set_service_programming_code_input_get_new qmi_message_dms_set_service_programming_code_input_set_new qmi_message_dms_set_service_programming_code_input_get_current qmi_message_dms_set_service_programming_code_input_set_current +qmi_message_tlv_read_gfloat +qmi_message_uim_change_pin_input_get_session_information +qmi_message_uim_change_pin_input_set_session_information +qmi_message_uim_get_file_attributes_input_get_session_information +qmi_message_uim_get_file_attributes_input_set_session_information +qmi_message_uim_read_record_input_get_session_information +qmi_message_uim_read_record_input_set_session_information +qmi_message_uim_read_transparent_input_get_session_information +qmi_message_uim_read_transparent_input_set_session_information +qmi_message_uim_set_pin_protection_input_get_session_information +qmi_message_uim_set_pin_protection_input_set_session_information +qmi_message_uim_unblock_pin_input_get_session_information +qmi_message_uim_unblock_pin_input_set_session_information +qmi_message_uim_verify_pin_input_get_session_information +qmi_message_uim_verify_pin_input_set_session_information QMI_NAS_SIM_REJECT_STATE_SIM_VAILABLE QMI_WDS_CDMA_CAUSE_CODE_NETWORK_ADDRESS_VACANT @@ -1221,4 +1386,8 @@ QMI_WDS_CDMA_CAUSE_CODE_GENERAL_UNEXPECTED_PARAMETER_VALUE QMI_WDS_CDMA_CAUSE_CODE_GENERAL_USER_DATA_SIZE_ERROR QMI_WDS_CDMA_CAUSE_CODE_GENERAL_OTHER +QMI_PROTOCOL_ERROR_QOS_UNAVAILABLE + +QmiDeprecatedNasSimRejectState +QmiDeprecatedWdsCdmaCauseCode
diff -Nru libqmi-1.18.0/docs/reference/libqmi-glib/libqmi-glib-docs.xml libqmi-1.22.0/docs/reference/libqmi-glib/libqmi-glib-docs.xml --- libqmi-1.18.0/docs/reference/libqmi-glib/libqmi-glib-docs.xml 2017-03-21 14:26:54.000000000 +0100 +++ libqmi-1.22.0/docs/reference/libqmi-glib/libqmi-glib-docs.xml 2019-01-08 15:15:35.000000000 +0100 @@ -17,6 +17,8 @@ 2015 2016 2017 + 2018 + 2019 The libqmi-glib authors @@ -118,6 +120,8 @@ + + @@ -144,6 +148,7 @@ + @@ -188,6 +193,8 @@ + + @@ -199,6 +206,8 @@ + + @@ -301,6 +310,10 @@
+ UIM Indications + +
+
UIM Requests @@ -369,6 +382,60 @@ + Location Service (LOC) + + +
+ LOC Indications + + + + + + + + + + + + + +
+
+ LOC Requests + + + + + + + + + + + +
+
+ + + QoS Service (QoS) + + +
+ QoS Indications + + +
+
+ QoS Requests + + + + +
+
+ + Compatibility with older versions @@ -389,10 +456,6 @@ Index of new core symbols in 1.0 - - Index of new core symbols in 1.2 - - Index of new core symbols in 1.4 @@ -425,6 +488,14 @@ Index of new core symbols in 1.18 + + Index of new core symbols in 1.20 + + + + Index of new core symbols in 1.22 + + diff -Nru libqmi-1.18.0/docs/reference/libqmi-glib/libqmi-glib-sections.txt libqmi-1.22.0/docs/reference/libqmi-glib/libqmi-glib-sections.txt --- libqmi-1.18.0/docs/reference/libqmi-glib/libqmi-glib-sections.txt 2017-03-22 12:28:28.000000000 +0100 +++ libqmi-1.22.0/docs/reference/libqmi-glib/libqmi-glib-sections.txt 2019-01-08 15:19:01.000000000 +0100 @@ -18,11 +18,13 @@ QMI_CLIENT_CID QMI_CLIENT_VERSION_MAJOR QMI_CLIENT_VERSION_MINOR +QMI_CLIENT_VALID QmiClient qmi_client_get_device qmi_client_peek_device qmi_client_get_service qmi_client_get_cid +qmi_client_is_valid qmi_client_get_version qmi_client_check_version qmi_client_get_next_transaction_id @@ -48,6 +50,7 @@ QMI_DEVICE_PROXY_PATH QMI_DEVICE_WWAN_IFACE QMI_DEVICE_SIGNAL_INDICATION +QMI_DEVICE_SIGNAL_REMOVED QmiDevice QmiDeviceOpenFlags QmiDeviceReleaseClientFlags @@ -65,7 +68,6 @@ qmi_device_is_open qmi_device_open qmi_device_open_finish -qmi_device_close qmi_device_close_async qmi_device_close_finish qmi_device_allocate_client @@ -163,6 +165,7 @@ QmiDmsFirmwareImageType QmiDmsBootImageDownloadMode QmiDmsHpDeviceMode +QmiDmsSwiUsbComposition qmi_dms_data_service_capability_get_string qmi_dms_sim_capability_get_string @@ -183,6 +186,8 @@ qmi_dms_firmware_image_type_get_string qmi_dms_boot_image_download_mode_get_string qmi_dms_hp_device_mode_get_string +qmi_dms_swi_usb_composition_get_string +qmi_dms_swi_usb_composition_get_description qmi_dms_data_service_capability_build_string_from_mask qmi_dms_sim_capability_build_string_from_mask @@ -201,6 +206,7 @@ qmi_dms_firmware_image_type_build_string_from_mask qmi_dms_boot_image_download_mode_build_string_from_mask qmi_dms_hp_device_mode_build_string_from_mask +qmi_dms_swi_usb_composition_build_string_from_mask QMI_TYPE_DMS_ACTIVATION_STATE QMI_TYPE_DMS_BOOT_IMAGE_DOWNLOAD_MODE @@ -219,6 +225,7 @@ QMI_TYPE_DMS_UIM_PIN_STATUS QMI_TYPE_DMS_UIM_STATE QMI_TYPE_DMS_HP_DEVICE_MODE +QMI_TYPE_DMS_SWI_USB_COMPOSITION qmi_dms_activation_state_get_type qmi_dms_boot_image_download_mode_get_type qmi_dms_data_service_capability_get_type @@ -236,6 +243,7 @@ qmi_dms_uim_pin_status_get_type qmi_dms_uim_state_get_type qmi_dms_hp_device_mode_get_type +qmi_dms_swi_usb_composition_get_type
@@ -260,6 +268,7 @@ QmiNasNetworkDescriptionEncoding QmiNasRadioTechnologyPreference QmiNasPreferenceDuration +QmiNasPsAttachAction QmiNasRatModePreference QmiNasCdmaPrlPreference QmiNasRoamingPreference @@ -306,6 +315,7 @@ qmi_nas_network_description_encoding_get_string qmi_nas_radio_technology_preference_build_string_from_mask qmi_nas_preference_duration_get_string +qmi_nas_ps_attach_action_get_string qmi_nas_rat_mode_preference_build_string_from_mask qmi_nas_cdma_prl_preference_get_string qmi_nas_roaming_preference_get_string @@ -375,6 +385,7 @@ qmi_nas_plmn_encoding_scheme_build_string_from_mask qmi_nas_plmn_name_country_initials_build_string_from_mask qmi_nas_plmn_name_spare_bits_build_string_from_mask +qmi_nas_ps_attach_action_build_string_from_mask QMI_TYPE_NAS_ACTIVE_BAND QMI_TYPE_NAS_ATTACH_STATE @@ -396,6 +407,7 @@ QMI_TYPE_NAS_NETWORK_STATUS QMI_TYPE_NAS_NETWORK_TYPE QMI_TYPE_NAS_PREFERENCE_DURATION +QMI_TYPE_NAS_PS_ATTACH_ACTION QMI_TYPE_NAS_RADIO_INTERFACE QMI_TYPE_NAS_RADIO_TECHNOLOGY_PREFERENCE QMI_TYPE_NAS_RAT_MODE_PREFERENCE @@ -439,6 +451,7 @@ qmi_nas_network_status_get_type qmi_nas_network_type_get_type qmi_nas_preference_duration_get_type +qmi_nas_ps_attach_action_get_type qmi_nas_radio_interface_get_type qmi_nas_radio_technology_preference_get_type qmi_nas_rat_mode_preference_get_type @@ -467,6 +480,7 @@
qmi-enums-wds QmiWdsIpFamily +QmiWdsProfileFamily QmiWdsTechnologyPreference QmiWdsExtendedTechnologyPreference QmiWdsCallType @@ -517,6 +531,7 @@ QmiWdsClientType qmi_wds_ip_family_get_string +qmi_wds_profile_family_get_string qmi_wds_technology_preference_build_string_from_mask qmi_wds_extended_technology_preference_get_string qmi_wds_call_type_get_string @@ -568,6 +583,7 @@ qmi_wds_client_type_get_string qmi_wds_ip_family_build_string_from_mask +qmi_wds_profile_family_build_string_from_mask qmi_wds_technology_preference_get_string qmi_wds_extended_technology_preference_build_string_from_mask qmi_wds_call_type_build_string_from_mask @@ -627,6 +643,7 @@ QMI_TYPE_WDS_EXTENDED_TECHNOLOGY_PREFERENCE QMI_TYPE_WDS_GET_CURRENT_SETTINGS_REQUESTED_SETTINGS QMI_TYPE_WDS_IP_FAMILY +QMI_TYPE_WDS_PROFILE_FAMILY QMI_TYPE_WDS_NETWORK_TYPE QMI_TYPE_WDS_DATA_SYSTEM_NETWORK_TYPE QMI_TYPE_WDS_PDP_TYPE @@ -676,6 +693,7 @@ qmi_wds_extended_technology_preference_get_type qmi_wds_get_current_settings_requested_settings_get_type qmi_wds_ip_family_get_type +qmi_wds_profile_family_get_type qmi_wds_network_type_get_type qmi_wds_data_system_network_type_get_type qmi_wds_pdp_type_get_type @@ -1054,6 +1072,136 @@
+qmi-enums-loc +QmiLocIntermediateReportState +QmiLocEventRegistrationFlag +QmiLocFixRecurrenceType +QmiLocOperationMode +QmiLocEngineState +QmiLocSatelliteValidInformation +QmiLocSystem +QmiLocHealthStatus +QmiLocSatelliteStatus +QmiLocNavigationData +QmiLocIndicationStatus +QmiLocSensorDataUsage +QmiLocTimeSource +QmiLocTechnologyUsed +QmiLocReliability +QmiLocSessionStatus +QmiLocServerType +QmiLocServerAddressType +QmiLocPredictedOrbitsDataFormat +QmiLocDeleteCellDatabase +QmiLocDeleteClockInfo +QmiLocDeleteGnssData +QmiLocDeleteSvInfo + +qmi_loc_intermediate_report_state_get_string +qmi_loc_fix_recurrence_type_get_string +qmi_loc_operation_mode_get_string +qmi_loc_engine_state_get_string +qmi_loc_health_status_get_string +qmi_loc_indication_status_get_string +qmi_loc_navigation_data_get_string +qmi_loc_reliability_get_string +qmi_loc_satellite_status_get_string +qmi_loc_satellite_valid_information_build_string_from_mask +qmi_loc_session_status_get_string +qmi_loc_system_get_string +qmi_loc_technology_used_build_string_from_mask +qmi_loc_time_source_get_string +qmi_loc_server_type_get_string +qmi_loc_server_address_type_build_string_from_mask +qmi_loc_predicted_orbits_data_format_get_string +qmi_loc_delete_cell_database_build_string_from_mask +qmi_loc_delete_clock_info_build_string_from_mask +qmi_loc_delete_gnss_data_build_string_from_mask +qmi_loc_delete_sv_info_build_string_from_mask + +qmi_loc_intermediate_report_state_build_string_from_mask +qmi_loc_operation_mode_build_string_from_mask +qmi_loc_fix_recurrence_type_build_string_from_mask +qmi_loc_event_registration_flag_build_string_from_mask +qmi_loc_engine_state_build_string_from_mask +qmi_loc_health_status_build_string_from_mask +qmi_loc_indication_status_build_string_from_mask +qmi_loc_navigation_data_build_string_from_mask +qmi_loc_reliability_build_string_from_mask +qmi_loc_satellite_status_build_string_from_mask +qmi_loc_satellite_valid_information_get_string +qmi_loc_sensor_data_usage_build_string_from_mask +qmi_loc_session_status_build_string_from_mask +qmi_loc_system_build_string_from_mask +qmi_loc_technology_used_get_string +qmi_loc_time_source_build_string_from_mask +qmi_loc_server_type_build_string_from_mask +qmi_loc_server_address_type_get_string +qmi_loc_predicted_orbits_data_format_build_string_from_mask +qmi_loc_delete_cell_database_get_string +qmi_loc_delete_clock_info_get_string +qmi_loc_delete_sv_info_get_string + +QMI_TYPE_LOC_INTERMEDIATE_REPORT_STATE +QMI_TYPE_LOC_FIX_RECURRENCE_TYPE +QMI_TYPE_LOC_OPERATION_MODE +QMI_TYPE_LOC_ENGINE_STATE +QMI_TYPE_LOC_HEALTH_STATUS +QMI_TYPE_LOC_INDICATION_STATUS +QMI_TYPE_LOC_NAVIGATION_DATA +QMI_TYPE_LOC_RELIABILITY +QMI_TYPE_LOC_SATELLITE_STATUS +QMI_TYPE_LOC_SATELLITE_VALID_INFORMATION +QMI_TYPE_LOC_SESSION_STATUS +QMI_TYPE_LOC_SYSTEM +QMI_TYPE_LOC_TECHNOLOGY_USED +QMI_TYPE_LOC_TIME_SOURCE +QMI_TYPE_LOC_SERVER_TYPE +QMI_TYPE_LOC_SERVER_ADDRESS_TYPE +QMI_TYPE_LOC_PREDICTED_ORBITS_DATA_FORMAT +QMI_TYPE_LOC_DELETE_CELL_DATABASE +QMI_TYPE_LOC_DELETE_CLOCK_INFO +QMI_TYPE_LOC_DELETE_SV_INFO +qmi_loc_intermediate_report_state_get_type +qmi_loc_fix_recurrence_type_get_type +qmi_loc_operation_mode_get_type +qmi_loc_engine_state_get_type +qmi_loc_health_status_get_type +qmi_loc_indication_status_get_type +qmi_loc_navigation_data_get_type +qmi_loc_reliability_get_type +qmi_loc_satellite_status_get_type +qmi_loc_satellite_valid_information_get_type +qmi_loc_session_status_get_type +qmi_loc_system_get_type +qmi_loc_technology_used_get_type +qmi_loc_time_source_get_type +qmi_loc_server_type_get_type +qmi_loc_server_address_type_get_type +qmi_loc_predicted_orbits_data_format_get_type +qmi_loc_delete_cell_database_get_type +qmi_loc_delete_clock_info_get_type +qmi_loc_delete_sv_info_get_type +
+ +
+qmi-enums-qos +QmiQosStatus +QmiQosEvent + +qmi_qos_status_get_string +qmi_qos_event_get_string + +qmi_qos_status_build_string_from_mask +qmi_qos_event_build_string_from_mask + +QMI_TYPE_QOS_STATUS +QMI_TYPE_QOS_EVENT +qmi_qos_status_get_type +qmi_qos_event_get_type +
+ +
qmi-errors QmiCoreError QmiProtocolError @@ -1094,7 +1242,6 @@ qmi_message_get_message_id qmi_message_get_length qmi_message_get_raw -qmi_message_get_version_introduced qmi_message_get_version_introduced_full qmi_message_tlv_write_init @@ -1121,7 +1268,8 @@ qmi_message_tlv_read_guint64 qmi_message_tlv_read_gint64 qmi_message_tlv_read_sized_guint -qmi_message_tlv_read_gfloat +qmi_message_tlv_read_gfloat_endian +qmi_message_tlv_read_gdouble qmi_message_tlv_read_string qmi_message_tlv_read_fixed_size_string @@ -1132,7 +1280,6 @@ qmi_message_set_transaction_id -qmi_message_get_printable qmi_message_get_printable_full qmi_message_get_tlv_printable
@@ -1157,7 +1304,13 @@ qmi_utils_get_traces_enabled qmi_utils_set_traces_enabled - +
+ +
+qmi-compat + +qmi_device_close + qmi_utils_read_guint8_from_buffer qmi_utils_read_gint8_from_buffer qmi_utils_read_guint16_from_buffer @@ -1170,7 +1323,6 @@ qmi_utils_read_gfloat_from_buffer qmi_utils_read_string_from_buffer qmi_utils_read_fixed_size_string_from_buffer - qmi_utils_write_guint8_to_buffer qmi_utils_write_gint8_to_buffer qmi_utils_write_guint16_to_buffer @@ -1182,15 +1334,28 @@ qmi_utils_write_sized_guint_to_buffer qmi_utils_write_string_to_buffer qmi_utils_write_fixed_size_string_to_buffer -
- -
-qmi-compat - + +qmi_message_get_version_introduced +qmi_message_get_printable qmi_message_dms_set_service_programming_code_input_get_new qmi_message_dms_set_service_programming_code_input_set_new qmi_message_dms_set_service_programming_code_input_get_current qmi_message_dms_set_service_programming_code_input_set_current +qmi_message_tlv_read_gfloat +qmi_message_uim_change_pin_input_get_session_information +qmi_message_uim_change_pin_input_set_session_information +qmi_message_uim_get_file_attributes_input_get_session_information +qmi_message_uim_get_file_attributes_input_set_session_information +qmi_message_uim_read_record_input_get_session_information +qmi_message_uim_read_record_input_set_session_information +qmi_message_uim_read_transparent_input_get_session_information +qmi_message_uim_read_transparent_input_set_session_information +qmi_message_uim_set_pin_protection_input_get_session_information +qmi_message_uim_set_pin_protection_input_set_session_information +qmi_message_uim_unblock_pin_input_get_session_information +qmi_message_uim_unblock_pin_input_set_session_information +qmi_message_uim_verify_pin_input_get_session_information +qmi_message_uim_verify_pin_input_set_session_information QMI_NAS_SIM_REJECT_STATE_SIM_VAILABLE QMI_WDS_CDMA_CAUSE_CODE_NETWORK_ADDRESS_VACANT @@ -1221,6 +1386,10 @@ QMI_WDS_CDMA_CAUSE_CODE_GENERAL_UNEXPECTED_PARAMETER_VALUE QMI_WDS_CDMA_CAUSE_CODE_GENERAL_USER_DATA_SIZE_ERROR QMI_WDS_CDMA_CAUSE_CODE_GENERAL_OTHER +QMI_PROTOCOL_ERROR_QOS_UNAVAILABLE + +QmiDeprecatedNasSimRejectState +QmiDeprecatedWdsCdmaCauseCode
qmi-client-dms @@ -1239,7 +1408,7 @@
qmi-message-dms-reset -DMS Reset +DMS Reset request QmiMessageDmsResetOutput qmi_message_dms_reset_output_ref @@ -1256,7 +1425,7 @@
qmi-message-dms-set-event-report -DMS Set Event Report +DMS Set Event Report request QmiMessageDmsSetEventReportInput QmiMessageDmsSetEventReportOutput @@ -1296,7 +1465,7 @@
qmi-indication-dms-event-report -DMS Event Report +DMS Event Report indication QmiIndicationDmsEventReportOutput qmi_indication_dms_event_report_output_ref @@ -1317,7 +1486,7 @@
qmi-message-dms-get-capabilities -DMS Get Capabilities +DMS Get Capabilities request QmiMessageDmsGetCapabilitiesOutput qmi_message_dms_get_capabilities_output_ref @@ -1335,7 +1504,7 @@
qmi-message-dms-get-manufacturer -DMS Get Manufacturer +DMS Get Manufacturer request QmiMessageDmsGetManufacturerOutput qmi_message_dms_get_manufacturer_output_ref @@ -1353,7 +1522,7 @@
qmi-message-dms-get-model -DMS Get Model +DMS Get Model request QmiMessageDmsGetModelOutput qmi_message_dms_get_model_output_ref @@ -1371,7 +1540,7 @@
qmi-message-dms-get-revision -DMS Get Revision +DMS Get Revision request QmiMessageDmsGetRevisionOutput qmi_message_dms_get_revision_output_ref @@ -1389,7 +1558,7 @@
qmi-message-dms-get-msisdn -DMS Get MSISDN +DMS Get MSISDN request QmiMessageDmsGetMsisdnOutput qmi_message_dms_get_msisdn_output_ref @@ -1407,7 +1576,7 @@
qmi-message-dms-get-ids -DMS Get IDs +DMS Get IDs request QmiMessageDmsGetIdsOutput qmi_message_dms_get_ids_output_ref @@ -1427,7 +1596,7 @@
qmi-message-dms-get-power-state -DMS Get Power State +DMS Get Power State request QmiMessageDmsGetPowerStateOutput qmi_message_dms_get_power_state_output_ref @@ -1445,7 +1614,7 @@
qmi-message-dms-uim-set-pin-protection -DMS UIM Set PIN Protection +DMS UIM Set PIN Protection request QmiMessageDmsUimSetPinProtectionInput QmiMessageDmsUimSetPinProtectionOutput @@ -1472,7 +1641,7 @@
qmi-message-dms-uim-verify-pin -DMS UIM Verify PIN +DMS UIM Verify PIN request QmiMessageDmsUimVerifyPinInput QmiMessageDmsUimVerifyPinOutput @@ -1499,7 +1668,7 @@
qmi-message-dms-uim-unblock-pin -DMS UIM Unblock PIN +DMS UIM Unblock PIN request QmiMessageDmsUimUnblockPinInput QmiMessageDmsUimUnblockPinOutput @@ -1526,7 +1695,7 @@
qmi-message-dms-uim-change-pin -DMS UIM Change PIN +DMS UIM Change PIN request QmiMessageDmsUimChangePinInput QmiMessageDmsUimChangePinOutput @@ -1553,7 +1722,7 @@
qmi-message-dms-uim-get-pin-status -DMS UIM Get PIN Status +DMS UIM Get PIN Status request QmiMessageDmsUimGetPinStatusOutput qmi_message_dms_uim_get_pin_status_output_ref @@ -1572,7 +1741,7 @@
qmi-message-dms-get-hardware-revision -DMS Get Hardware Revision +DMS Get Hardware Revision request QmiMessageDmsGetHardwareRevisionOutput qmi_message_dms_get_hardware_revision_output_ref @@ -1590,7 +1759,7 @@
qmi-message-dms-get-operating-mode -DMS Get Operating Mode +DMS Get Operating Mode request QmiMessageDmsGetOperatingModeOutput qmi_message_dms_get_operating_mode_output_ref @@ -1610,7 +1779,7 @@
qmi-message-dms-set-operating-mode -DMS Set Operating Mode +DMS Set Operating Mode request QmiMessageDmsSetOperatingModeInput QmiMessageDmsSetOperatingModeOutput @@ -1636,7 +1805,7 @@
qmi-message-dms-get-time -DMS Get Time +DMS Get Time request QmiMessageDmsGetTimeOutput qmi_message_dms_get_time_output_ref @@ -1656,7 +1825,7 @@
qmi-message-dms-get-prl-version -DMS Get PRL Version +DMS Get PRL Version request QmiMessageDmsGetPrlVersionOutput qmi_message_dms_get_prl_version_output_ref @@ -1675,7 +1844,7 @@
qmi-message-dms-get-activation-state -DMS Get Activation State +DMS Get Activation State request QmiMessageDmsGetActivationStateOutput qmi_message_dms_get_activation_state_output_ref @@ -1693,7 +1862,7 @@
qmi-message-dms-activate-automatic -DMS Activate Automatic +DMS Activate Automatic request QmiMessageDmsActivateAutomaticInput QmiMessageDmsActivateAutomaticOutput @@ -1719,7 +1888,7 @@
qmi-message-dms-activate-manual -DMS Activate Manual +DMS Activate Manual request QmiMessageDmsActivateManualInput QmiMessageDmsActivateManualOutput @@ -1751,7 +1920,7 @@
qmi-message-dms-get-user-lock-state -DMS Get User Lock State +DMS Get User Lock State request QmiMessageDmsGetUserLockStateOutput qmi_message_dms_get_user_lock_state_output_ref @@ -1769,7 +1938,7 @@
qmi-message-dms-set-user-lock-state -DMS Set User Lock State +DMS Set User Lock State request QmiMessageDmsSetUserLockStateInput QmiMessageDmsSetUserLockStateOutput @@ -1795,7 +1964,7 @@
qmi-message-dms-set-user-lock-code -DMS Set User Lock Code +DMS Set User Lock Code request QmiMessageDmsSetUserLockCodeInput QmiMessageDmsSetUserLockCodeOutput @@ -1821,7 +1990,7 @@
qmi-message-dms-read-user-data -DMS Read User Data +DMS Read User Data request QmiMessageDmsReadUserDataOutput qmi_message_dms_read_user_data_output_ref @@ -1839,7 +2008,7 @@
qmi-message-dms-write-user-data -DMS Write User Data +DMS Write User Data request QmiMessageDmsWriteUserDataInput QmiMessageDmsWriteUserDataOutput @@ -1865,7 +2034,7 @@
qmi-message-dms-read-eri-file -DMS Read ERI File +DMS Read ERI File request QmiMessageDmsReadEriFileOutput qmi_message_dms_read_eri_file_output_ref @@ -1883,7 +2052,7 @@
qmi-message-dms-restore-factory-defaults -DMS Restore Factory Defaults +DMS Restore Factory Defaults request QmiMessageDmsRestoreFactoryDefaultsInput QmiMessageDmsRestoreFactoryDefaultsOutput @@ -1909,7 +2078,7 @@
qmi-message-dms-validate-service-programming-code -DMS Validate Service Programming Code +DMS Validate Service Programming Code request QmiMessageDmsValidateServiceProgrammingCodeInput QmiMessageDmsValidateServiceProgrammingCodeOutput @@ -1935,7 +2104,7 @@
qmi-message-dms-uim-get-iccid -DMS UIM Get ICCID +DMS UIM Get ICCID request QmiMessageDmsUimGetIccidOutput qmi_message_dms_uim_get_iccid_output_ref @@ -1953,7 +2122,7 @@
qmi-message-dms-set-firmware-id -DMS Set Firmware ID +DMS Set Firmware ID request QmiMessageDmsSetFirmwareIdOutput qmi_message_dms_set_firmware_id_output_ref @@ -1970,7 +2139,7 @@
qmi-message-dms-uim-get-ck-status -DMS UIM Get CK Status +DMS UIM Get CK Status request QmiMessageDmsUimGetCkStatusInput QmiMessageDmsUimGetCkStatusOutput @@ -1998,7 +2167,7 @@
qmi-message-dms-uim-set-ck-protection -DMS UIM Set CK Protection +DMS UIM Set CK Protection request QmiMessageDmsUimSetCkProtectionInput QmiMessageDmsUimSetCkProtectionOutput @@ -2025,7 +2194,7 @@
qmi-message-dms-uim-unblock-ck -DMS UIM Unblock CK +DMS UIM Unblock CK request QmiMessageDmsUimUnblockCkInput QmiMessageDmsUimUnblockCkOutput @@ -2052,7 +2221,7 @@
qmi-message-dms-uim-get-imsi -DMS UIM Get IMSI +DMS UIM Get IMSI request QmiMessageDmsUimGetImsiOutput qmi_message_dms_uim_get_imsi_output_ref @@ -2070,7 +2239,7 @@
qmi-message-dms-uim-get-state -DMS UIM Get State +DMS UIM Get State request QmiMessageDmsUimGetStateOutput qmi_message_dms_uim_get_state_output_ref @@ -2088,7 +2257,7 @@
qmi-message-dms-get-band-capabilities -DMS Get Band Capabilities +DMS Get Band Capabilities request QmiMessageDmsGetBandCapabilitiesOutput qmi_message_dms_get_band_capabilities_output_ref @@ -2096,6 +2265,7 @@ qmi_message_dms_get_band_capabilities_output_get_result qmi_message_dms_get_band_capabilities_output_get_band_capability qmi_message_dms_get_band_capabilities_output_get_lte_band_capability +qmi_message_dms_get_band_capabilities_output_get_extended_lte_band_capability qmi_client_dms_get_band_capabilities qmi_client_dms_get_band_capabilities_finish @@ -2107,7 +2277,7 @@
qmi-message-dms-get-factory-sku -DMS Get Factory SKU +DMS Get Factory SKU request QmiMessageDmsGetFactorySkuOutput qmi_message_dms_get_factory_sku_output_ref @@ -2125,7 +2295,7 @@
qmi-message-dms-get-firmware-preference -DMS Get Firmware Preference +DMS Get Firmware Preference request QmiMessageDmsGetFirmwarePreferenceOutput QmiMessageDmsGetFirmwarePreferenceOutputListImage @@ -2144,7 +2314,7 @@
qmi-message-dms-set-firmware-preference -DMS Set Firmware Preference +DMS Set Firmware Preference request QmiMessageDmsSetFirmwarePreferenceInput QmiMessageDmsSetFirmwarePreferenceInputListImage QmiMessageDmsSetFirmwarePreferenceOutput @@ -2176,7 +2346,7 @@
qmi-message-dms-list-stored-images -DMS List Stored Images +DMS List Stored Images request QmiMessageDmsListStoredImagesOutput QmiMessageDmsListStoredImagesOutputListImageSublistSublistElement QmiMessageDmsListStoredImagesOutputListImage @@ -2196,7 +2366,7 @@
qmi-message-dms-delete-stored-image -DMS Delete Stored Image +DMS Delete Stored Image request QmiMessageDmsDeleteStoredImageInput QmiMessageDmsDeleteStoredImageInputImage QmiMessageDmsDeleteStoredImageOutput @@ -2223,7 +2393,7 @@
qmi-message-dms-set-time -DMS Set Time +DMS Set Time request QmiMessageDmsSetTimeInput QmiMessageDmsSetTimeOutput @@ -2251,7 +2421,7 @@
qmi-message-dms-get-stored-image-info -DMS Get Stored Image Info +DMS Get Stored Image Info request QmiMessageDmsGetStoredImageInfoInput QmiMessageDmsGetStoredImageInfoInputImage QmiMessageDmsGetStoredImageInfoOutput @@ -2281,7 +2451,7 @@
qmi-message-dms-get-alt-net-config -DMS Get Alt Net Config +DMS Get Alt Net Config request QmiMessageDmsGetAltNetConfigOutput qmi_message_dms_get_alt_net_config_output_ref @@ -2299,7 +2469,7 @@
qmi-message-dms-set-alt-net-config -DMS Set Alt Net Config +DMS Set Alt Net Config request QmiMessageDmsSetAltNetConfigInput QmiMessageDmsSetAltNetConfigOutput @@ -2325,7 +2495,7 @@
qmi-message-dms-get-boot-image-download-mode -DMS Get Boot Image Download Mode +DMS Get Boot Image Download Mode request QmiMessageDmsGetBootImageDownloadModeOutput qmi_message_dms_get_boot_image_download_mode_output_ref @@ -2343,7 +2513,7 @@
qmi-message-dms-set-boot-image-download-mode -DMS Set Boot Image Download Mode +DMS Set Boot Image Download Mode request QmiMessageDmsSetBootImageDownloadModeInput QmiMessageDmsSetBootImageDownloadModeOutput @@ -2369,7 +2539,7 @@
qmi-message-dms-get-software-version -DMS Get Software Version +DMS Get Software Version request QmiMessageDmsGetSoftwareVersionOutput qmi_message_dms_get_software_version_output_ref @@ -2387,7 +2557,7 @@
qmi-message-dms-set-service-programming-code -DMS Set Service Programming Code +DMS Set Service Programming Code request QmiMessageDmsSetServiceProgrammingCodeInput QmiMessageDmsSetServiceProgrammingCodeOutput @@ -2415,7 +2585,7 @@
qmi-message-dms-get-supported-messages -DMS Get Supported Messages +DMS Get Supported Messages request QmiMessageDmsGetSupportedMessagesOutput qmi_message_dms_get_supported_messages_output_ref @@ -2433,7 +2603,7 @@
qmi-message-dms-hp-change-device-mode -DMS HP Change Device Mode +DMS HP Change Device Mode request QmiMessageDmsHpChangeDeviceModeInput QmiMessageDmsHpChangeDeviceModeOutput @@ -2459,7 +2629,7 @@
qmi-message-dms-swi-get-current-firmware -DMS Swi Get Current Firmware +DMS Swi Get Current Firmware request QmiMessageDmsSwiGetCurrentFirmwareOutput qmi_message_dms_swi_get_current_firmware_output_ref @@ -2484,8 +2654,53 @@
+qmi-message-dms-swi-get-usb-composition +DMS Swi Get USB Composition request +QmiMessageDmsSwiGetUsbCompositionOutput + +qmi_message_dms_swi_get_usb_composition_output_ref +qmi_message_dms_swi_get_usb_composition_output_unref +qmi_message_dms_swi_get_usb_composition_output_get_result +qmi_message_dms_swi_get_usb_composition_output_get_current +qmi_message_dms_swi_get_usb_composition_output_get_supported + +qmi_client_dms_swi_get_usb_composition +qmi_client_dms_swi_get_usb_composition_finish + + +qmi_message_dms_swi_get_usb_composition_output_get_type +QMI_TYPE_MESSAGE_DMS_SWI_GET_USB_COMPOSITION_OUTPUT +
+ +
+qmi-message-dms-swi-set-usb-composition +DMS Swi Set USB Composition request +QmiMessageDmsSwiSetUsbCompositionInput +QmiMessageDmsSwiSetUsbCompositionOutput + +qmi_message_dms_swi_set_usb_composition_input_new +qmi_message_dms_swi_set_usb_composition_input_ref +qmi_message_dms_swi_set_usb_composition_input_unref +qmi_message_dms_swi_set_usb_composition_input_get_current +qmi_message_dms_swi_set_usb_composition_input_set_current + +qmi_message_dms_swi_set_usb_composition_output_ref +qmi_message_dms_swi_set_usb_composition_output_unref +qmi_message_dms_swi_set_usb_composition_output_get_result + +qmi_client_dms_swi_set_usb_composition +qmi_client_dms_swi_set_usb_composition_finish + + +qmi_message_dms_swi_set_usb_composition_input_get_type +QMI_TYPE_MESSAGE_DMS_SWI_SET_USB_COMPOSITION_INPUT +qmi_message_dms_swi_set_usb_composition_output_get_type +QMI_TYPE_MESSAGE_DMS_SWI_SET_USB_COMPOSITION_OUTPUT +
+ +
qmi-message-dms-set-fcc-authentication -DMS Set FCC Authentication +DMS Set FCC Authentication request QmiMessageDmsSetFccAuthenticationOutput qmi_message_dms_set_fcc_authentication_output_ref @@ -2517,7 +2732,7 @@
qmi-message-nas-reset -NAS Reset +NAS Reset request QmiMessageNasResetOutput qmi_message_nas_reset_output_ref @@ -2534,7 +2749,7 @@
qmi-message-nas-set-event-report -NAS Set Event Report +NAS Set Event Report request QmiMessageNasSetEventReportInput QmiMessageNasSetEventReportOutput @@ -2582,7 +2797,7 @@
qmi-indication-nas-event-report -NAS Event Report +NAS Event Report indication QmiIndicationNasEventReportOutput QmiIndicationNasEventReportOutputRfBandInformationElement @@ -2607,7 +2822,7 @@
qmi-message-nas-register-indications -NAS Register Indications +NAS Register Indications request QmiMessageNasRegisterIndicationsInput QmiMessageNasRegisterIndicationsOutput @@ -2661,7 +2876,7 @@
qmi-message-nas-get-supported-messages -NAS Get Supported Messages +NAS Get Supported Messages request QmiMessageNasGetSupportedMessagesOutput qmi_message_nas_get_supported_messages_output_ref @@ -2679,7 +2894,7 @@
qmi-message-nas-get-signal-strength -NAS Get Signal Strength +NAS Get Signal Strength request QmiMessageNasGetSignalStrengthInput QmiMessageNasGetSignalStrengthOutput QmiMessageNasGetSignalStrengthOutputErrorRateListElement @@ -2719,7 +2934,7 @@
qmi-message-nas-network-scan -NAS Network Scan +NAS Network Scan request QmiMessageNasNetworkScanInput QmiMessageNasNetworkScanOutput QmiMessageNasNetworkScanOutputMncPcsDigitIncludeStatusElement @@ -2751,7 +2966,7 @@
qmi-message-nas-initiate-network-register -NAS Initiate Network Register +NAS Initiate Network Register request QmiMessageNasInitiateNetworkRegisterInput QmiMessageNasInitiateNetworkRegisterOutput @@ -2782,8 +2997,34 @@
+qmi-message-nas-attach-detach +NAS Attach Detach request +QmiMessageNasAttachDetachInput +QmiMessageNasAttachDetachOutput + +qmi_message_nas_attach_detach_input_new +qmi_message_nas_attach_detach_input_ref +qmi_message_nas_attach_detach_input_unref +qmi_message_nas_attach_detach_input_get_action +qmi_message_nas_attach_detach_input_set_action + +qmi_message_nas_attach_detach_output_ref +qmi_message_nas_attach_detach_output_unref +qmi_message_nas_attach_detach_output_get_result + +qmi_client_nas_attach_detach +qmi_client_nas_attach_detach_finish + + +qmi_message_nas_attach_detach_input_get_type +QMI_TYPE_MESSAGE_NAS_ATTACH_DETACH_INPUT +qmi_message_nas_attach_detach_output_get_type +QMI_TYPE_MESSAGE_NAS_ATTACH_DETACH_OUTPUT +
+ +
qmi-message-nas-get-serving-system -NAS Get Serving System +NAS Get Serving System request QmiMessageNasGetServingSystemOutput QmiMessageNasGetServingSystemOutputRoamingIndicatorListElement @@ -2825,7 +3066,7 @@
qmi-indication-nas-serving-system -NAS Serving System +NAS Serving System indication QmiIndicationNasServingSystemOutput QmiIndicationNasServingSystemOutputRoamingIndicatorListElement @@ -2866,7 +3107,7 @@
qmi-message-nas-get-home-network -NAS Get Home Network +NAS Get Home Network request QmiMessageNasGetHomeNetworkOutput qmi_message_nas_get_home_network_output_ref @@ -2887,7 +3128,7 @@
qmi-message-nas-set-technology-preference -NAS Set Technology Preference +NAS Set Technology Preference request QmiMessageNasSetTechnologyPreferenceInput QmiMessageNasSetTechnologyPreferenceOutput @@ -2913,7 +3154,7 @@
qmi-message-nas-get-technology-preference -NAS Get Technology Preference +NAS Get Technology Preference request QmiMessageNasGetTechnologyPreferenceOutput qmi_message_nas_get_technology_preference_output_ref @@ -2932,7 +3173,7 @@
qmi-message-nas-get-rf-band-information -NAS Get RF Band Information +NAS Get RF Band Information request QmiMessageNasGetRfBandInformationOutput QmiMessageNasGetRfBandInformationOutputListElement @@ -2951,13 +3192,17 @@
qmi-message-nas-set-system-selection-preference -NAS Set System Selection Preference +NAS Set System Selection Preference request QmiMessageNasSetSystemSelectionPreferenceInput QmiMessageNasSetSystemSelectionPreferenceOutput qmi_message_nas_set_system_selection_preference_input_new qmi_message_nas_set_system_selection_preference_input_ref qmi_message_nas_set_system_selection_preference_input_unref +qmi_message_nas_set_system_selection_preference_input_get_extended_lte_band_preference +qmi_message_nas_set_system_selection_preference_input_set_extended_lte_band_preference +qmi_message_nas_set_system_selection_preference_input_get_acquisition_order_preference +qmi_message_nas_set_system_selection_preference_input_set_acquisition_order_preference qmi_message_nas_set_system_selection_preference_input_get_td_scdma_band_preference qmi_message_nas_set_system_selection_preference_input_set_td_scdma_band_preference qmi_message_nas_set_system_selection_preference_input_get_mnc_pds_digit_include_status @@ -2999,12 +3244,14 @@
qmi-message-nas-get-system-selection-preference -NAS Get System Selection Preference +NAS Get System Selection Preference request QmiMessageNasGetSystemSelectionPreferenceOutput qmi_message_nas_get_system_selection_preference_output_ref qmi_message_nas_get_system_selection_preference_output_unref +qmi_message_nas_get_system_selection_preference_output_get_extended_lte_band_preference qmi_message_nas_get_system_selection_preference_output_get_manual_network_selection +qmi_message_nas_get_system_selection_preference_output_get_acquisition_order_preference qmi_message_nas_get_system_selection_preference_output_get_td_scdma_band_preference qmi_message_nas_get_system_selection_preference_output_get_gsm_wcdma_acquisition_order_preference qmi_message_nas_get_system_selection_preference_output_get_service_domain_preference @@ -3027,7 +3274,7 @@
qmi-message-nas-get-operator-name -NAS Get Operator Name +NAS Get Operator Name request QmiMessageNasGetOperatorNameOutput QmiMessageNasGetOperatorNameOutputOperatorPlmnListElement QmiMessageNasGetOperatorNameOutputOperatorPlmnNameElement @@ -3051,7 +3298,7 @@
qmi-indication-nas-operator-name -NAS Operator Name +NAS Operator Name indication QmiIndicationNasOperatorNameOutput QmiIndicationNasOperatorNameOutputOperatorPlmnNameElement QmiIndicationNasOperatorNameOutputOperatorPlmnListElement @@ -3071,7 +3318,7 @@
qmi-message-nas-get-cell-location-info -NAS Get Cell Location Info +NAS Get Cell Location Info request QmiMessageNasGetCellLocationInfoOutput QmiMessageNasGetCellLocationInfoOutputUmtsInfoNeighboringLteFrequencyElement QmiMessageNasGetCellLocationInfoOutputLteInfoNeighboringWcdmaFrequencyElementCellElement @@ -3108,7 +3355,7 @@
qmi-indication-nas-network-time -NAS Network Time +NAS Network Time indication QmiIndicationNasNetworkTimeOutput qmi_indication_nas_network_time_output_ref @@ -3125,7 +3372,7 @@
qmi-message-nas-get-system-info -NAS Get System Info +NAS Get System Info request QmiMessageNasGetSystemInfoOutput qmi_message_nas_get_system_info_output_ref @@ -3166,7 +3413,7 @@
qmi-indication-nas-system-info -NAS System Info +NAS System Info indication QmiIndicationNasSystemInfoOutput qmi_indication_nas_system_info_output_ref @@ -3204,7 +3451,7 @@
qmi-message-nas-get-signal-info -NAS Get Signal Info +NAS Get Signal Info request QmiMessageNasGetSignalInfoOutput qmi_message_nas_get_signal_info_output_ref @@ -3227,7 +3474,7 @@
qmi-message-nas-config-signal-info -NAS Config Signal Info +NAS Config Signal Info request QmiMessageNasConfigSignalInfoInput QmiMessageNasConfigSignalInfoOutput @@ -3269,7 +3516,7 @@
qmi-indication-nas-signal-info -NAS Signal Info +NAS Signal Info indication QmiIndicationNasSignalInfoOutput qmi_indication_nas_signal_info_output_ref @@ -3288,7 +3535,7 @@
qmi-message-nas-get-tx-rx-info -NAS Get Tx Rx Info +NAS Get Tx Rx Info request QmiMessageNasGetTxRxInfoInput QmiMessageNasGetTxRxInfoOutput @@ -3317,7 +3564,7 @@
qmi-message-nas-force-network-search -NAS Force Network Search +NAS Force Network Search request QmiMessageNasForceNetworkSearchOutput qmi_message_nas_force_network_search_output_ref @@ -3334,7 +3581,7 @@
qmi-message-nas-get-cdma-position-info -NAS Get CDMA Position Info +NAS Get CDMA Position Info request QmiMessageNasGetCdmaPositionInfoOutput QmiMessageNasGetCdmaPositionInfoOutputCdmaPositionInfoBasestationsBasestation @@ -3353,8 +3600,9 @@
qmi-message-nas-get-lte-cphy-ca-info -NAS Get LTE Cphy CA Info +NAS Get LTE Cphy CA Info request QmiMessageNasGetLteCphyCaInfoOutput +QmiMessageNasGetLteCphyCaInfoOutputPhyCaAggSecondaryCellsSsc qmi_message_nas_get_lte_cphy_ca_info_output_ref qmi_message_nas_get_lte_cphy_ca_info_output_unref @@ -3363,6 +3611,7 @@ qmi_message_nas_get_lte_cphy_ca_info_output_get_phy_ca_agg_scell_info qmi_message_nas_get_lte_cphy_ca_info_output_get_phy_ca_agg_pcell_info qmi_message_nas_get_lte_cphy_ca_info_output_get_scell_index +qmi_message_nas_get_lte_cphy_ca_info_output_get_phy_ca_agg_secondary_cells qmi_client_nas_get_lte_cphy_ca_info qmi_client_nas_get_lte_cphy_ca_info_finish @@ -3389,7 +3638,7 @@
qmi-message-wds-reset -WDS Reset +WDS Reset request QmiMessageWdsResetOutput qmi_message_wds_reset_output_ref @@ -3406,7 +3655,7 @@
qmi-message-wds-set-event-report -WDS Set Event Report +WDS Set Event Report request QmiMessageWdsSetEventReportInput QmiMessageWdsSetEventReportOutput @@ -3458,7 +3707,7 @@
qmi-indication-wds-event-report -WDS Event Report +WDS Event Report indication QmiIndicationWdsEventReportOutput QmiIndicationWdsEventReportOutputDataSystemsNetworksNetwork @@ -3496,7 +3745,7 @@
qmi-message-wds-get-supported-messages -WDS Get Supported Messages +WDS Get Supported Messages request QmiMessageWdsGetSupportedMessagesOutput qmi_message_wds_get_supported_messages_output_ref @@ -3514,7 +3763,7 @@
qmi-message-wds-start-network -WDS Start Network +WDS Start Network request QmiMessageWdsStartNetworkInput QmiMessageWdsStartNetworkOutput @@ -3573,7 +3822,7 @@
qmi-message-wds-stop-network -WDS Stop Network +WDS Stop Network request QmiMessageWdsStopNetworkInput QmiMessageWdsStopNetworkOutput @@ -3601,7 +3850,7 @@
qmi-message-wds-get-packet-service-status -WDS Get Packet Service Status +WDS Get Packet Service Status request QmiMessageWdsGetPacketServiceStatusOutput qmi_message_wds_get_packet_service_status_output_ref @@ -3619,7 +3868,7 @@
qmi-indication-wds-packet-service-status -WDS Packet Service Status +WDS Packet Service Status indication QmiIndicationWdsPacketServiceStatusOutput qmi_indication_wds_packet_service_status_output_ref @@ -3636,8 +3885,26 @@
+qmi-message-wds-get-channel-rates +WDS Get Channel Rates request +QmiMessageWdsGetChannelRatesOutput + +qmi_message_wds_get_channel_rates_output_ref +qmi_message_wds_get_channel_rates_output_unref +qmi_message_wds_get_channel_rates_output_get_channel_rates +qmi_message_wds_get_channel_rates_output_get_result + +qmi_client_wds_get_channel_rates +qmi_client_wds_get_channel_rates_finish + + +qmi_message_wds_get_channel_rates_output_get_type +QMI_TYPE_MESSAGE_WDS_GET_CHANNEL_RATES_OUTPUT +
+ +
qmi-message-wds-get-packet-statistics -WDS Get Packet Statistics +WDS Get Packet Statistics request QmiMessageWdsGetPacketStatisticsInput QmiMessageWdsGetPacketStatisticsOutput @@ -3675,7 +3942,7 @@
qmi-message-wds-go-dormant -WDS Go Dormant +WDS Go Dormant request QmiMessageWdsGoDormantOutput qmi_message_wds_go_dormant_output_ref @@ -3692,7 +3959,7 @@
qmi-message-wds-go-active -WDS Go Active +WDS Go Active request QmiMessageWdsGoActiveOutput qmi_message_wds_go_active_output_ref @@ -3709,13 +3976,17 @@
qmi-message-wds-create-profile -WDS Create Profile +WDS Create Profile request QmiMessageWdsCreateProfileInput QmiMessageWdsCreateProfileOutput qmi_message_wds_create_profile_input_new qmi_message_wds_create_profile_input_ref qmi_message_wds_create_profile_input_unref +qmi_message_wds_create_profile_input_get_roaming_disallowed_flag +qmi_message_wds_create_profile_input_set_roaming_disallowed_flag +qmi_message_wds_create_profile_input_get_apn_disabled_flag +qmi_message_wds_create_profile_input_set_apn_disabled_flag qmi_message_wds_create_profile_input_get_lte_qos_parameters qmi_message_wds_create_profile_input_set_lte_qos_parameters qmi_message_wds_create_profile_input_get_ipv6_secondary_dns_address_preference @@ -3791,13 +4062,17 @@
qmi-message-wds-modify-profile -WDS Modify Profile +WDS Modify Profile request QmiMessageWdsModifyProfileInput QmiMessageWdsModifyProfileOutput qmi_message_wds_modify_profile_input_new qmi_message_wds_modify_profile_input_ref qmi_message_wds_modify_profile_input_unref +qmi_message_wds_modify_profile_input_get_roaming_disallowed_flag +qmi_message_wds_modify_profile_input_set_roaming_disallowed_flag +qmi_message_wds_modify_profile_input_get_apn_disabled_flag +qmi_message_wds_modify_profile_input_set_apn_disabled_flag qmi_message_wds_modify_profile_input_get_lte_qos_parameters qmi_message_wds_modify_profile_input_set_lte_qos_parameters qmi_message_wds_modify_profile_input_get_ipv6_secondary_dns_address_preference @@ -3872,7 +4147,7 @@
qmi-message-wds-delete-profile -WDS Delete Profile +WDS Delete Profile request QmiMessageWdsDeleteProfileInput QmiMessageWdsDeleteProfileOutput @@ -3899,7 +4174,7 @@
qmi-message-wds-get-profile-list -WDS Get Profile List +WDS Get Profile List request QmiMessageWdsGetProfileListInput QmiMessageWdsGetProfileListOutput QmiMessageWdsGetProfileListOutputProfileListProfile @@ -3928,7 +4203,7 @@
qmi-message-wds-get-profile-settings -WDS Get Profile Settings +WDS Get Profile Settings request QmiMessageWdsGetProfileSettingsInput QmiMessageWdsGetProfileSettingsOutput @@ -3968,6 +4243,8 @@ qmi_message_wds_get_profile_settings_output_get_ipv6_primary_dns_address_preference qmi_message_wds_get_profile_settings_output_get_ipv6_secondary_dns_address_preference qmi_message_wds_get_profile_settings_output_get_lte_qos_parameters +qmi_message_wds_get_profile_settings_output_get_apn_disabled_flag +qmi_message_wds_get_profile_settings_output_get_roaming_disallowed_flag qmi_message_wds_get_profile_settings_output_get_extended_error_code qmi_client_wds_get_profile_settings @@ -3982,7 +4259,7 @@
qmi-message-wds-get-default-settings -WDS Get Default Settings +WDS Get Default Settings request QmiMessageWdsGetDefaultSettingsInput QmiMessageWdsGetDefaultSettingsOutput @@ -4036,7 +4313,7 @@
qmi-message-wds-get-current-settings -WDS Get Current Settings +WDS Get Current Settings request QmiMessageWdsGetCurrentSettingsInput QmiMessageWdsGetCurrentSettingsOutput @@ -4087,7 +4364,7 @@
qmi-message-wds-get-dormancy-status -WDS Get Dormancy Status +WDS Get Dormancy Status request QmiMessageWdsGetDormancyStatusOutput qmi_message_wds_get_dormancy_status_output_ref @@ -4105,7 +4382,7 @@
qmi-message-wds-get-autoconnect-settings -WDS Get Autoconnect Settings +WDS Get Autoconnect Settings request QmiMessageWdsGetAutoconnectSettingsOutput qmi_message_wds_get_autoconnect_settings_output_ref @@ -4124,7 +4401,7 @@
qmi-message-wds-get-data-bearer-technology -WDS Get Data Bearer Technology +WDS Get Data Bearer Technology request QmiMessageWdsGetDataBearerTechnologyOutput qmi_message_wds_get_data_bearer_technology_output_ref @@ -4143,7 +4420,7 @@
qmi-message-wds-get-current-data-bearer-technology -WDS Get Current Data Bearer Technology +WDS Get Current Data Bearer Technology request QmiMessageWdsGetCurrentDataBearerTechnologyOutput qmi_message_wds_get_current_data_bearer_technology_output_ref @@ -4161,8 +4438,63 @@
+qmi-message-wds-get-default-profile-num +WDS Get Default Profile Num request +QmiMessageWdsGetDefaultProfileNumInput +QmiMessageWdsGetDefaultProfileNumOutput + +qmi_message_wds_get_default_profile_num_input_new +qmi_message_wds_get_default_profile_num_input_ref +qmi_message_wds_get_default_profile_num_input_unref +qmi_message_wds_get_default_profile_num_input_get_profile_type +qmi_message_wds_get_default_profile_num_input_set_profile_type + +qmi_message_wds_get_default_profile_num_output_ref +qmi_message_wds_get_default_profile_num_output_unref +qmi_message_wds_get_default_profile_num_output_get_result +qmi_message_wds_get_default_profile_num_output_get_default_profile_number +qmi_message_wds_get_default_profile_num_output_get_extended_error_code + +qmi_client_wds_get_default_profile_num +qmi_client_wds_get_default_profile_num_finish + + +qmi_message_wds_get_default_profile_num_input_get_type +QMI_TYPE_MESSAGE_WDS_GET_DEFAULT_PROFILE_NUM_INPUT +qmi_message_wds_get_default_profile_num_output_get_type +QMI_TYPE_MESSAGE_WDS_GET_DEFAULT_PROFILE_NUM_OUTPUT +
+ +
+qmi-message-wds-set-default-profile-num +WDS Set Default Profile Num request +QmiMessageWdsSetDefaultProfileNumInput +QmiMessageWdsSetDefaultProfileNumOutput + +qmi_message_wds_set_default_profile_num_input_new +qmi_message_wds_set_default_profile_num_input_ref +qmi_message_wds_set_default_profile_num_input_unref +qmi_message_wds_set_default_profile_num_input_get_profile_identifier +qmi_message_wds_set_default_profile_num_input_set_profile_identifier + +qmi_message_wds_set_default_profile_num_output_ref +qmi_message_wds_set_default_profile_num_output_unref +qmi_message_wds_set_default_profile_num_output_get_result +qmi_message_wds_set_default_profile_num_output_get_extended_error_code + +qmi_client_wds_set_default_profile_num +qmi_client_wds_set_default_profile_num_finish + + +qmi_message_wds_set_default_profile_num_input_get_type +QMI_TYPE_MESSAGE_WDS_SET_DEFAULT_PROFILE_NUM_INPUT +qmi_message_wds_set_default_profile_num_output_get_type +QMI_TYPE_MESSAGE_WDS_SET_DEFAULT_PROFILE_NUM_OUTPUT +
+ +
qmi-message-wds-set-ip-family -WDS Set IP Family +WDS Set IP Family request QmiMessageWdsSetIpFamilyInput QmiMessageWdsSetIpFamilyOutput @@ -4188,7 +4520,7 @@
qmi-message-wds-set-autoconnect-settings -WDS Set Autoconnect Settings +WDS Set Autoconnect Settings request QmiMessageWdsSetAutoconnectSettingsInput QmiMessageWdsSetAutoconnectSettingsOutput @@ -4216,7 +4548,7 @@
qmi-message-wds-get-pdn-throttle-info -WDS Get PDN Throttle Info +WDS Get PDN Throttle Info request QmiMessageWdsGetPdnThrottleInfoInput QmiMessageWdsGetPdnThrottleInfoOutput QmiMessageWdsGetPdnThrottleInfoOutputInfoElement @@ -4244,7 +4576,7 @@
qmi-message-wds-bind-mux-data-port -WDS Bind Mux Data Port +WDS Bind Mux Data Port request QmiMessageWdsBindMuxDataPortInput QmiMessageWdsBindMuxDataPortOutput @@ -4273,6 +4605,57 @@
+qmi-message-wds-swi-create-profile-indexed +WDS Swi Create Profile Indexed request +QmiMessageWdsSwiCreateProfileIndexedInput +QmiMessageWdsSwiCreateProfileIndexedOutput + +qmi_message_wds_swi_create_profile_indexed_input_new +qmi_message_wds_swi_create_profile_indexed_input_ref +qmi_message_wds_swi_create_profile_indexed_input_unref +qmi_message_wds_swi_create_profile_indexed_input_get_roaming_disallowed_flag +qmi_message_wds_swi_create_profile_indexed_input_set_roaming_disallowed_flag +qmi_message_wds_swi_create_profile_indexed_input_get_apn_disabled_flag +qmi_message_wds_swi_create_profile_indexed_input_set_apn_disabled_flag +qmi_message_wds_swi_create_profile_indexed_input_get_pdp_context_number +qmi_message_wds_swi_create_profile_indexed_input_set_pdp_context_number +qmi_message_wds_swi_create_profile_indexed_input_get_ipv4_address_preference +qmi_message_wds_swi_create_profile_indexed_input_set_ipv4_address_preference +qmi_message_wds_swi_create_profile_indexed_input_get_authentication +qmi_message_wds_swi_create_profile_indexed_input_set_authentication +qmi_message_wds_swi_create_profile_indexed_input_get_password +qmi_message_wds_swi_create_profile_indexed_input_set_password +qmi_message_wds_swi_create_profile_indexed_input_get_username +qmi_message_wds_swi_create_profile_indexed_input_set_username +qmi_message_wds_swi_create_profile_indexed_input_get_secondary_ipv4_dns_address +qmi_message_wds_swi_create_profile_indexed_input_set_secondary_ipv4_dns_address +qmi_message_wds_swi_create_profile_indexed_input_get_primary_ipv4_dns_address +qmi_message_wds_swi_create_profile_indexed_input_set_primary_ipv4_dns_address +qmi_message_wds_swi_create_profile_indexed_input_get_apn_name +qmi_message_wds_swi_create_profile_indexed_input_set_apn_name +qmi_message_wds_swi_create_profile_indexed_input_get_pdp_type +qmi_message_wds_swi_create_profile_indexed_input_set_pdp_type +qmi_message_wds_swi_create_profile_indexed_input_get_profile_name +qmi_message_wds_swi_create_profile_indexed_input_set_profile_name +qmi_message_wds_swi_create_profile_indexed_input_get_profile_identifier +qmi_message_wds_swi_create_profile_indexed_input_set_profile_identifier + +qmi_message_wds_swi_create_profile_indexed_output_ref +qmi_message_wds_swi_create_profile_indexed_output_unref +qmi_message_wds_swi_create_profile_indexed_output_get_result +qmi_message_wds_swi_create_profile_indexed_output_get_profile_identifier + +qmi_client_wds_swi_create_profile_indexed +qmi_client_wds_swi_create_profile_indexed_finish + + +qmi_message_wds_swi_create_profile_indexed_input_get_type +QMI_TYPE_MESSAGE_WDS_SWI_CREATE_PROFILE_INDEXED_INPUT +qmi_message_wds_swi_create_profile_indexed_output_get_type +QMI_TYPE_MESSAGE_WDS_SWI_CREATE_PROFILE_INDEXED_OUTPUT +
+ +
qmi-client-wms QmiClientWms QmiClientWms @@ -4289,7 +4672,7 @@
qmi-message-wms-reset -WMS Reset +WMS Reset request QmiMessageWmsResetOutput qmi_message_wms_reset_output_ref @@ -4306,7 +4689,7 @@
qmi-message-wms-set-event-report -WMS Set Event Report +WMS Set Event Report request QmiMessageWmsSetEventReportInput QmiMessageWmsSetEventReportOutput @@ -4332,7 +4715,7 @@
qmi-indication-wms-event-report -WMS Event Report +WMS Event Report indication QmiIndicationWmsEventReportOutput qmi_indication_wms_event_report_output_ref @@ -4352,7 +4735,7 @@
qmi-message-wms-get-supported-messages -WMS Get Supported Messages +WMS Get Supported Messages request QmiMessageWmsGetSupportedMessagesOutput qmi_message_wms_get_supported_messages_output_ref @@ -4370,7 +4753,7 @@
qmi-message-wms-raw-send -WMS Raw Send +WMS Raw Send request QmiMessageWmsRawSendInput QmiMessageWmsRawSendOutput @@ -4409,7 +4792,7 @@
qmi-message-wms-raw-write -WMS Raw Write +WMS Raw Write request QmiMessageWmsRawWriteInput QmiMessageWmsRawWriteOutput @@ -4436,7 +4819,7 @@
qmi-message-wms-raw-read -WMS Raw Read +WMS Raw Read request QmiMessageWmsRawReadInput QmiMessageWmsRawReadOutput @@ -4467,7 +4850,7 @@
qmi-message-wms-modify-tag -WMS Modify Tag +WMS Modify Tag request QmiMessageWmsModifyTagInput QmiMessageWmsModifyTagOutput @@ -4495,7 +4878,7 @@
qmi-message-wms-delete -WMS Delete +WMS Delete request QmiMessageWmsDeleteInput QmiMessageWmsDeleteOutput @@ -4527,7 +4910,7 @@
qmi-message-wms-get-message-protocol -WMS Get Message Protocol +WMS Get Message Protocol request QmiMessageWmsGetMessageProtocolOutput qmi_message_wms_get_message_protocol_output_ref @@ -4545,7 +4928,7 @@
qmi-message-wms-list-messages -WMS List Messages +WMS List Messages request QmiMessageWmsListMessagesInput QmiMessageWmsListMessagesOutput QmiMessageWmsListMessagesOutputMessageListElement @@ -4577,7 +4960,7 @@
qmi-message-wms-set-routes -WMS Set Routes +WMS Set Routes request QmiMessageWmsSetRoutesInput QmiMessageWmsSetRoutesInputRouteListElement QmiMessageWmsSetRoutesOutput @@ -4606,7 +4989,7 @@
qmi-message-wms-get-routes -WMS Get Routes +WMS Get Routes request QmiMessageWmsGetRoutesOutput QmiMessageWmsGetRoutesOutputRouteListElement @@ -4626,7 +5009,7 @@
qmi-message-wms-send-from-memory-storage -WMS Send From Memory Storage +WMS Send From Memory Storage request QmiMessageWmsSendFromMemoryStorageInput QmiMessageWmsSendFromMemoryStorageOutput @@ -4659,7 +5042,7 @@
qmi-indication-wms-smsc-address -WMS SMSC Address +WMS SMSC Address indication QmiIndicationWmsSmscAddressOutput qmi_indication_wms_smsc_address_output_ref @@ -4688,7 +5071,7 @@
qmi-message-pdc-reset -PDC Reset +PDC Reset request QmiMessagePdcResetOutput qmi_message_pdc_reset_output_ref @@ -4705,7 +5088,7 @@
qmi-message-pdc-register -PDC Register +PDC Register request QmiMessagePdcRegisterInput QmiMessagePdcRegisterOutput @@ -4731,7 +5114,7 @@
qmi-message-pdc-config-change -PDC Config Change +PDC Config Change request QmiMessagePdcConfigChangeInput QmiConfigTypeAndId QmiMessagePdcConfigChangeOutput @@ -4759,7 +5142,7 @@
qmi-message-pdc-get-selected-config -PDC Get Selected Config +PDC Get Selected Config request QmiMessagePdcGetSelectedConfigInput QmiMessagePdcGetSelectedConfigOutput @@ -4788,7 +5171,7 @@
qmi-indication-pdc-get-selected-config -PDC Get Selected Config +PDC Get Selected Config indication QmiIndicationPdcGetSelectedConfigOutput qmi_indication_pdc_get_selected_config_output_ref @@ -4805,7 +5188,7 @@
qmi-message-pdc-set-selected-config -PDC Set Selected Config +PDC Set Selected Config request QmiMessagePdcSetSelectedConfigInput QmiMessagePdcSetSelectedConfigOutput @@ -4834,7 +5217,7 @@
qmi-indication-pdc-set-selected-config -PDC Set Selected Config +PDC Set Selected Config indication QmiIndicationPdcSetSelectedConfigOutput qmi_indication_pdc_set_selected_config_output_ref @@ -4849,7 +5232,7 @@
qmi-message-pdc-list-configs -PDC List Configs +PDC List Configs request QmiMessagePdcListConfigsInput QmiMessagePdcListConfigsOutput @@ -4877,7 +5260,7 @@
qmi-indication-pdc-list-configs -PDC List Configs +PDC List Configs indication QmiIndicationPdcListConfigsOutput QmiIndicationPdcListConfigsOutputConfigsElement @@ -4894,7 +5277,7 @@
qmi-message-pdc-delete-config -PDC Delete Config +PDC Delete Config request QmiMessagePdcDeleteConfigInput QmiMessagePdcDeleteConfigOutput @@ -4925,7 +5308,7 @@
qmi-message-pdc-load-config -PDC Load Config +PDC Load Config request QmiMessagePdcLoadConfigInput QmiMessagePdcLoadConfigOutput @@ -4954,7 +5337,7 @@
qmi-indication-pdc-load-config -PDC Load Config +PDC Load Config indication QmiIndicationPdcLoadConfigOutput qmi_indication_pdc_load_config_output_ref @@ -4972,7 +5355,7 @@
qmi-message-pdc-activate-config -PDC Activate Config +PDC Activate Config request QmiMessagePdcActivateConfigInput QmiMessagePdcActivateConfigOutput @@ -5001,7 +5384,7 @@
qmi-indication-pdc-activate-config -PDC Activate Config +PDC Activate Config indication QmiIndicationPdcActivateConfigOutput qmi_indication_pdc_activate_config_output_ref @@ -5016,7 +5399,7 @@
qmi-message-pdc-get-config-info -PDC Get Config Info +PDC Get Config Info request QmiMessagePdcGetConfigInfoInput QmiMessagePdcGetConfigInfoOutput @@ -5044,7 +5427,7 @@
qmi-indication-pdc-get-config-info -PDC Get Config Info +PDC Get Config Info indication QmiIndicationPdcGetConfigInfoOutput qmi_indication_pdc_get_config_info_output_ref @@ -5062,7 +5445,7 @@
qmi-message-pdc-get-config-limits -PDC Get Config Limits +PDC Get Config Limits request QmiMessagePdcGetConfigLimitsInput QmiMessagePdcGetConfigLimitsOutput @@ -5093,7 +5476,7 @@
qmi-message-pdc-get-default-config-info -PDC Get Default Config Info +PDC Get Default Config Info request QmiMessagePdcGetDefaultConfigInfoInput QmiMessagePdcGetDefaultConfigInfoOutput @@ -5125,7 +5508,7 @@
qmi-message-pdc-deactivate-config -PDC Deactivate Config +PDC Deactivate Config request QmiMessagePdcDeactivateConfigInput QmiMessagePdcDeactivateConfigOutput @@ -5154,7 +5537,7 @@
qmi-indication-pdc-deactivate-config -PDC Deactivate Config +PDC Deactivate Config indication QmiIndicationPdcDeactivateConfigOutput qmi_indication_pdc_deactivate_config_output_ref @@ -5184,7 +5567,7 @@
qmi-message-pds-reset -PDS Reset +PDS Reset request QmiMessagePdsResetOutput qmi_message_pds_reset_output_ref @@ -5201,7 +5584,7 @@
qmi-message-pds-set-event-report -PDS Set Event Report +PDS Set Event Report request QmiMessagePdsSetEventReportInput QmiMessagePdsSetEventReportOutput @@ -5265,7 +5648,7 @@
qmi-indication-pds-event-report -PDS Event Report +PDS Event Report indication QmiIndicationPdsEventReportOutput qmi_indication_pds_event_report_output_ref @@ -5281,7 +5664,7 @@
qmi-message-pds-get-gps-service-state -PDS Get GPS Service State +PDS Get GPS Service State request QmiMessagePdsGetGpsServiceStateOutput qmi_message_pds_get_gps_service_state_output_ref @@ -5299,7 +5682,7 @@
qmi-message-pds-set-gps-service-state -PDS Set GPS Service State +PDS Set GPS Service State request QmiMessagePdsSetGpsServiceStateInput QmiMessagePdsSetGpsServiceStateOutput @@ -5325,7 +5708,7 @@
qmi-message-pds-get-default-tracking-session -PDS Get Default Tracking Session +PDS Get Default Tracking Session request QmiMessagePdsGetDefaultTrackingSessionOutput qmi_message_pds_get_default_tracking_session_output_ref @@ -5343,7 +5726,7 @@
qmi-message-pds-set-default-tracking-session -PDS Set Default Tracking Session +PDS Set Default Tracking Session request QmiMessagePdsSetDefaultTrackingSessionInput QmiMessagePdsSetDefaultTrackingSessionOutput @@ -5369,7 +5752,7 @@
qmi-message-pds-get-agps-config -PDS Get AGPS Config +PDS Get AGPS Config request QmiMessagePdsGetAgpsConfigInput QmiMessagePdsGetAgpsConfigOutput @@ -5397,7 +5780,7 @@
qmi-message-pds-set-agps-config -PDS Set AGPS Config +PDS Set AGPS Config request QmiMessagePdsSetAgpsConfigInput QmiMessagePdsSetAgpsConfigOutput @@ -5427,7 +5810,7 @@
qmi-message-pds-get-auto-tracking-state -PDS Get Auto Tracking State +PDS Get Auto Tracking State request QmiMessagePdsGetAutoTrackingStateOutput qmi_message_pds_get_auto_tracking_state_output_ref @@ -5445,7 +5828,7 @@
qmi-message-pds-set-auto-tracking-state -PDS Set Auto Tracking State +PDS Set Auto Tracking State request QmiMessagePdsSetAutoTrackingStateInput QmiMessagePdsSetAutoTrackingStateOutput @@ -5471,7 +5854,7 @@
qmi-indication-pds-gps-ready -PDS GPS Ready +PDS GPS Ready indication
@@ -5493,7 +5876,7 @@
qmi-message-pbm-indication-register -PBM Indication Register +PBM Indication Register request QmiMessagePbmIndicationRegisterInput QmiMessagePbmIndicationRegisterOutput @@ -5520,7 +5903,7 @@
qmi-message-pbm-get-capabilities -PBM Get Capabilities +PBM Get Capabilities request QmiMessagePbmGetCapabilitiesInput QmiMessagePbmGetCapabilitiesOutput @@ -5554,7 +5937,7 @@
qmi-message-pbm-get-all-capabilities -PBM Get All Capabilities +PBM Get All Capabilities request QmiMessagePbmGetAllCapabilitiesOutput QmiMessagePbmGetAllCapabilitiesOutputCapabilityBasicInformationElementPhonebooksElement QmiMessagePbmGetAllCapabilitiesOutputCapabilityBasicInformationElement @@ -5603,7 +5986,7 @@
qmi-message-uim-reset -UIM Reset +UIM Reset request QmiMessageUimResetOutput qmi_message_uim_reset_output_ref @@ -5620,7 +6003,7 @@
qmi-message-uim-get-supported-messages -UIM Get Supported Messages +UIM Get Supported Messages request QmiMessageUimGetSupportedMessagesOutput qmi_message_uim_get_supported_messages_output_ref @@ -5638,7 +6021,7 @@
qmi-message-uim-read-transparent -UIM Read Transparent +UIM Read Transparent request QmiMessageUimReadTransparentInput QmiMessageUimReadTransparentOutput @@ -5653,8 +6036,8 @@ qmi_message_uim_read_transparent_input_set_read_information qmi_message_uim_read_transparent_input_get_file qmi_message_uim_read_transparent_input_set_file -qmi_message_uim_read_transparent_input_get_session_information -qmi_message_uim_read_transparent_input_set_session_information +qmi_message_uim_read_transparent_input_get_session +qmi_message_uim_read_transparent_input_set_session qmi_message_uim_read_transparent_output_ref qmi_message_uim_read_transparent_output_unref @@ -5676,7 +6059,7 @@
qmi-message-uim-read-record -UIM Read Record +UIM Read Record request QmiMessageUimReadRecordInput QmiMessageUimReadRecordOutput @@ -5691,8 +6074,8 @@ qmi_message_uim_read_record_input_set_record qmi_message_uim_read_record_input_get_file qmi_message_uim_read_record_input_set_file -qmi_message_uim_read_record_input_get_session_information -qmi_message_uim_read_record_input_set_session_information +qmi_message_uim_read_record_input_get_session +qmi_message_uim_read_record_input_set_session qmi_message_uim_read_record_output_ref qmi_message_uim_read_record_output_unref @@ -5714,7 +6097,7 @@
qmi-message-uim-get-file-attributes -UIM Get File Attributes +UIM Get File Attributes request QmiMessageUimGetFileAttributesInput QmiMessageUimGetFileAttributesOutput @@ -5725,8 +6108,8 @@ qmi_message_uim_get_file_attributes_input_set_response_in_indication_token qmi_message_uim_get_file_attributes_input_get_file qmi_message_uim_get_file_attributes_input_set_file -qmi_message_uim_get_file_attributes_input_get_session_information -qmi_message_uim_get_file_attributes_input_set_session_information +qmi_message_uim_get_file_attributes_input_get_session +qmi_message_uim_get_file_attributes_input_set_session qmi_message_uim_get_file_attributes_output_ref qmi_message_uim_get_file_attributes_output_unref @@ -5747,7 +6130,7 @@
qmi-message-uim-set-pin-protection -UIM Set PIN Protection +UIM Set PIN Protection request QmiMessageUimSetPinProtectionInput QmiMessageUimSetPinProtectionOutput @@ -5758,8 +6141,8 @@ qmi_message_uim_set_pin_protection_input_set_response_in_indication_token qmi_message_uim_set_pin_protection_input_get_info qmi_message_uim_set_pin_protection_input_set_info -qmi_message_uim_set_pin_protection_input_get_session_information -qmi_message_uim_set_pin_protection_input_set_session_information +qmi_message_uim_set_pin_protection_input_get_session +qmi_message_uim_set_pin_protection_input_set_session qmi_message_uim_set_pin_protection_output_ref qmi_message_uim_set_pin_protection_output_unref @@ -5779,7 +6162,7 @@
qmi-message-uim-verify-pin -UIM Verify PIN +UIM Verify PIN request QmiMessageUimVerifyPinInput QmiMessageUimVerifyPinOutput @@ -5790,8 +6173,8 @@ qmi_message_uim_verify_pin_input_set_response_in_indication_token qmi_message_uim_verify_pin_input_get_info qmi_message_uim_verify_pin_input_set_info -qmi_message_uim_verify_pin_input_get_session_information -qmi_message_uim_verify_pin_input_set_session_information +qmi_message_uim_verify_pin_input_get_session +qmi_message_uim_verify_pin_input_set_session qmi_message_uim_verify_pin_output_ref qmi_message_uim_verify_pin_output_unref @@ -5812,7 +6195,7 @@
qmi-message-uim-unblock-pin -UIM Unblock PIN +UIM Unblock PIN request QmiMessageUimUnblockPinInput QmiMessageUimUnblockPinOutput @@ -5823,8 +6206,8 @@ qmi_message_uim_unblock_pin_input_set_response_in_indication_token qmi_message_uim_unblock_pin_input_get_info qmi_message_uim_unblock_pin_input_set_info -qmi_message_uim_unblock_pin_input_get_session_information -qmi_message_uim_unblock_pin_input_set_session_information +qmi_message_uim_unblock_pin_input_get_session +qmi_message_uim_unblock_pin_input_set_session qmi_message_uim_unblock_pin_output_ref qmi_message_uim_unblock_pin_output_unref @@ -5845,7 +6228,7 @@
qmi-message-uim-change-pin -UIM Change PIN +UIM Change PIN request QmiMessageUimChangePinInput QmiMessageUimChangePinOutput @@ -5856,8 +6239,8 @@ qmi_message_uim_change_pin_input_set_response_in_indication_token qmi_message_uim_change_pin_input_get_info qmi_message_uim_change_pin_input_set_info -qmi_message_uim_change_pin_input_get_session_information -qmi_message_uim_change_pin_input_set_session_information +qmi_message_uim_change_pin_input_get_session +qmi_message_uim_change_pin_input_set_session qmi_message_uim_change_pin_output_ref qmi_message_uim_change_pin_output_unref @@ -5878,7 +6261,7 @@
qmi-message-uim-get-card-status -UIM Get Card Status +UIM Get Card Status request QmiMessageUimGetCardStatusOutput QmiMessageUimGetCardStatusOutputCardStatusCardsElementApplicationsElement QmiMessageUimGetCardStatusOutputCardStatusCardsElement @@ -5898,7 +6281,7 @@
qmi-message-uim-power-off-sim -UIM Power Off SIM +UIM Power Off SIM request QmiMessageUimPowerOffSimInput QmiMessageUimPowerOffSimOutput @@ -5924,7 +6307,7 @@
qmi-message-uim-power-on-sim -UIM Power On SIM +UIM Power On SIM request QmiMessageUimPowerOnSimInput QmiMessageUimPowerOnSimOutput @@ -5949,6 +6332,22 @@
+qmi-indication-uim-card-status +UIM Card Status indication +QmiIndicationUimCardStatusOutput +QmiIndicationUimCardStatusOutputCardStatusCardsElementApplicationsElement +QmiIndicationUimCardStatusOutputCardStatusCardsElement + +qmi_indication_uim_card_status_output_ref +qmi_indication_uim_card_status_output_unref +qmi_indication_uim_card_status_output_get_card_status + + +qmi_indication_uim_card_status_output_get_type +QMI_TYPE_INDICATION_UIM_CARD_STATUS_OUTPUT +
+ +
qmi-client-oma QmiClientOma QmiClientOma @@ -5965,7 +6364,7 @@
qmi-message-oma-reset -OMA Reset +OMA Reset request QmiMessageOmaResetOutput qmi_message_oma_reset_output_ref @@ -5982,7 +6381,7 @@
qmi-message-oma-set-event-report -OMA Set Event Report +OMA Set Event Report request QmiMessageOmaSetEventReportInput QmiMessageOmaSetEventReportOutput @@ -6010,7 +6409,7 @@
qmi-indication-oma-event-report -OMA Event Report +OMA Event Report indication QmiIndicationOmaEventReportOutput qmi_indication_oma_event_report_output_ref @@ -6026,7 +6425,7 @@
qmi-message-oma-start-session -OMA Start Session +OMA Start Session request QmiMessageOmaStartSessionInput QmiMessageOmaStartSessionOutput @@ -6052,7 +6451,7 @@
qmi-message-oma-cancel-session -OMA Cancel Session +OMA Cancel Session request QmiMessageOmaCancelSessionOutput qmi_message_oma_cancel_session_output_ref @@ -6069,7 +6468,7 @@
qmi-message-oma-get-session-info -OMA Get Session Info +OMA Get Session Info request QmiMessageOmaGetSessionInfoOutput qmi_message_oma_get_session_info_output_ref @@ -6090,7 +6489,7 @@
qmi-message-oma-send-selection -OMA Send Selection +OMA Send Selection request QmiMessageOmaSendSelectionInput QmiMessageOmaSendSelectionOutput @@ -6116,7 +6515,7 @@
qmi-message-oma-get-feature-setting -OMA Get Feature Setting +OMA Get Feature Setting request QmiMessageOmaGetFeatureSettingOutput qmi_message_oma_get_feature_setting_output_ref @@ -6137,7 +6536,7 @@
qmi-message-oma-set-feature-setting -OMA Set Feature Setting +OMA Set Feature Setting request QmiMessageOmaSetFeatureSettingInput QmiMessageOmaSetFeatureSettingOutput @@ -6182,7 +6581,7 @@
qmi-message-wda-get-supported-messages -WDA Get Supported Messages +WDA Get Supported Messages request QmiMessageWdaGetSupportedMessagesOutput qmi_message_wda_get_supported_messages_output_ref @@ -6200,7 +6599,7 @@
qmi-message-wda-set-data-format -WDA Set Data Format +WDA Set Data Format request QmiMessageWdaSetDataFormatInput QmiMessageWdaSetDataFormatOutput @@ -6247,7 +6646,7 @@
qmi-message-wda-get-data-format -WDA Get Data Format +WDA Get Data Format request QmiMessageWdaGetDataFormatOutput qmi_message_wda_get_data_format_output_ref @@ -6286,7 +6685,7 @@
qmi-message-voice-get-supported-messages -VOICE Get Supported Messages +VOICE Get Supported Messages request QmiMessageVoiceGetSupportedMessagesOutput qmi_message_voice_get_supported_messages_output_ref @@ -6304,7 +6703,7 @@
qmi-message-voice-dial-call -VOICE Dial Call +VOICE Dial Call request QmiMessageVoiceDialCallInput QmiMessageVoiceDialCallOutput @@ -6331,7 +6730,7 @@
qmi-message-voice-end-call -VOICE End Call +VOICE End Call request QmiMessageVoiceEndCallInput QmiMessageVoiceEndCallOutput @@ -6358,7 +6757,7 @@
qmi-message-voice-answer-call -VOICE Answer Call +VOICE Answer Call request QmiMessageVoiceAnswerCallInput QmiMessageVoiceAnswerCallOutput @@ -6385,7 +6784,7 @@
qmi-indication-voice-all-call-status -VOICE All Call Status +VOICE All Call Status indication QmiIndicationVoiceAllCallStatusOutput QmiIndicationVoiceAllCallStatusOutputRemotePartyNumberCall QmiIndicationVoiceAllCallStatusOutputCallInformationCall @@ -6402,7 +6801,7 @@
qmi-message-voice-get-config -VOICE Get Config +VOICE Get Config request QmiMessageVoiceGetConfigInput QmiMessageVoiceGetConfigOutput @@ -6450,3 +6849,683 @@ QMI_TYPE_MESSAGE_VOICE_GET_CONFIG_OUTPUT
+
+qmi-client-loc +QmiClientLoc +QmiClientLoc + +QmiClientLocClass +QMI_TYPE_CLIENT_LOC +QMI_CLIENT_LOC +QMI_CLIENT_LOC_CLASS +QMI_IS_CLIENT_LOC +QMI_IS_CLIENT_LOC_CLASS +QMI_CLIENT_LOC_GET_CLASS +qmi_client_loc_get_type +
+ +
+qmi-message-loc-register-events +LOC Register Events request +QmiMessageLocRegisterEventsInput +QmiMessageLocRegisterEventsOutput + +qmi_message_loc_register_events_input_new +qmi_message_loc_register_events_input_ref +qmi_message_loc_register_events_input_unref +qmi_message_loc_register_events_input_get_event_registration_mask +qmi_message_loc_register_events_input_set_event_registration_mask + +qmi_message_loc_register_events_output_ref +qmi_message_loc_register_events_output_unref +qmi_message_loc_register_events_output_get_result + +qmi_client_loc_register_events +qmi_client_loc_register_events_finish + + +qmi_message_loc_register_events_input_get_type +QMI_TYPE_MESSAGE_LOC_REGISTER_EVENTS_INPUT +qmi_message_loc_register_events_output_get_type +QMI_TYPE_MESSAGE_LOC_REGISTER_EVENTS_OUTPUT +
+ +
+qmi-message-loc-start +LOC Start request +QmiMessageLocStartInput +QmiMessageLocStartOutput + +qmi_message_loc_start_input_new +qmi_message_loc_start_input_ref +qmi_message_loc_start_input_unref +qmi_message_loc_start_input_get_minimum_interval_between_position_reports +qmi_message_loc_start_input_set_minimum_interval_between_position_reports +qmi_message_loc_start_input_get_intermediate_report_state +qmi_message_loc_start_input_set_intermediate_report_state +qmi_message_loc_start_input_get_fix_recurrence_type +qmi_message_loc_start_input_set_fix_recurrence_type +qmi_message_loc_start_input_get_session_id +qmi_message_loc_start_input_set_session_id + +qmi_message_loc_start_output_ref +qmi_message_loc_start_output_unref +qmi_message_loc_start_output_get_result + +qmi_client_loc_start +qmi_client_loc_start_finish + + +qmi_message_loc_start_input_get_type +QMI_TYPE_MESSAGE_LOC_START_INPUT +qmi_message_loc_start_output_get_type +QMI_TYPE_MESSAGE_LOC_START_OUTPUT +
+ +
+qmi-message-loc-stop +LOC Stop request +QmiMessageLocStopInput +QmiMessageLocStopOutput + +qmi_message_loc_stop_input_new +qmi_message_loc_stop_input_ref +qmi_message_loc_stop_input_unref +qmi_message_loc_stop_input_get_session_id +qmi_message_loc_stop_input_set_session_id + +qmi_message_loc_stop_output_ref +qmi_message_loc_stop_output_unref +qmi_message_loc_stop_output_get_result + +qmi_client_loc_stop +qmi_client_loc_stop_finish + + +qmi_message_loc_stop_input_get_type +QMI_TYPE_MESSAGE_LOC_STOP_INPUT +qmi_message_loc_stop_output_get_type +QMI_TYPE_MESSAGE_LOC_STOP_OUTPUT +
+ +
+qmi-indication-loc-position-report +LOC Position Report indication +QmiIndicationLocPositionReportOutput +QmiIndicationLocPositionReportOutputGpsTime +QmiIndicationLocPositionReportOutputDilutionOfPrecision + +qmi_indication_loc_position_report_output_ref +qmi_indication_loc_position_report_output_unref +qmi_indication_loc_position_report_output_get_altitude_assumed +qmi_indication_loc_position_report_output_get_satellites_used +qmi_indication_loc_position_report_output_get_session_fix_count +qmi_indication_loc_position_report_output_get_sensor_data_usage +qmi_indication_loc_position_report_output_get_time_source +qmi_indication_loc_position_report_output_get_time_uncertainty +qmi_indication_loc_position_report_output_get_gps_time +qmi_indication_loc_position_report_output_get_leap_seconds +qmi_indication_loc_position_report_output_get_utc_timestamp +qmi_indication_loc_position_report_output_get_dilution_of_precision +qmi_indication_loc_position_report_output_get_technology_used +qmi_indication_loc_position_report_output_get_magnetic_deviation +qmi_indication_loc_position_report_output_get_heading_uncertainty +qmi_indication_loc_position_report_output_get_heading +qmi_indication_loc_position_report_output_get_vertical_speed +qmi_indication_loc_position_report_output_get_vertical_reliability +qmi_indication_loc_position_report_output_get_vertical_confidence +qmi_indication_loc_position_report_output_get_vertical_uncertainty +qmi_indication_loc_position_report_output_get_altitude_from_sealevel +qmi_indication_loc_position_report_output_get_altitude_from_ellipsoid +qmi_indication_loc_position_report_output_get_speed_uncertainty +qmi_indication_loc_position_report_output_get_horizontal_speed +qmi_indication_loc_position_report_output_get_horizontal_reliability +qmi_indication_loc_position_report_output_get_horizontal_confidence +qmi_indication_loc_position_report_output_get_horizontal_uncertainty_elliptical_azimuth +qmi_indication_loc_position_report_output_get_horizontal_uncertainty_elliptical_major +qmi_indication_loc_position_report_output_get_horizontal_uncertainty_elliptical_minor +qmi_indication_loc_position_report_output_get_horizontal_uncertainty_circular +qmi_indication_loc_position_report_output_get_longitude +qmi_indication_loc_position_report_output_get_latitude +qmi_indication_loc_position_report_output_get_session_id +qmi_indication_loc_position_report_output_get_session_status + + +qmi_indication_loc_position_report_output_get_type +QMI_TYPE_INDICATION_LOC_POSITION_REPORT_OUTPUT +
+ +
+qmi-indication-loc-nmea +LOC NMEA indication +QmiIndicationLocNmeaOutput + +qmi_indication_loc_nmea_output_ref +qmi_indication_loc_nmea_output_unref +qmi_indication_loc_nmea_output_get_nmea_string + + +qmi_indication_loc_nmea_output_get_type +QMI_TYPE_INDICATION_LOC_NMEA_OUTPUT +
+ +
+qmi-indication-loc-engine-state +LOC Engine State indication +QmiIndicationLocEngineStateOutput + +qmi_indication_loc_engine_state_output_ref +qmi_indication_loc_engine_state_output_unref +qmi_indication_loc_engine_state_output_get_engine_state + + +qmi_indication_loc_engine_state_output_get_type +QMI_TYPE_INDICATION_LOC_ENGINE_STATE_OUTPUT +
+ +
+qmi-indication-loc-fix-recurrence-type +LOC Fix Recurrence Type indication +QmiIndicationLocFixRecurrenceTypeOutput + +qmi_indication_loc_fix_recurrence_type_output_ref +qmi_indication_loc_fix_recurrence_type_output_unref +qmi_indication_loc_fix_recurrence_type_output_get_fix_recurrence_type + + +qmi_indication_loc_fix_recurrence_type_output_get_type +QMI_TYPE_INDICATION_LOC_FIX_RECURRENCE_TYPE_OUTPUT +
+ +
+qmi-indication-loc-gnss-sv-info +LOC GNSS Sv Info indication +QmiIndicationLocGnssSvInfoOutput +QmiIndicationLocGnssSvInfoOutputListElement + +qmi_indication_loc_gnss_sv_info_output_ref +qmi_indication_loc_gnss_sv_info_output_unref +qmi_indication_loc_gnss_sv_info_output_get_list +qmi_indication_loc_gnss_sv_info_output_get_altitude_assumed + + +qmi_indication_loc_gnss_sv_info_output_get_type +QMI_TYPE_INDICATION_LOC_GNSS_SV_INFO_OUTPUT +
+ +
+qmi-message-loc-inject-predicted-orbits-data +LOC Inject Predicted Orbits Data request +QmiMessageLocInjectPredictedOrbitsDataInput +QmiMessageLocInjectPredictedOrbitsDataOutput + +qmi_message_loc_inject_predicted_orbits_data_input_new +qmi_message_loc_inject_predicted_orbits_data_input_ref +qmi_message_loc_inject_predicted_orbits_data_input_unref +qmi_message_loc_inject_predicted_orbits_data_input_get_format_type +qmi_message_loc_inject_predicted_orbits_data_input_set_format_type +qmi_message_loc_inject_predicted_orbits_data_input_get_part_data +qmi_message_loc_inject_predicted_orbits_data_input_set_part_data +qmi_message_loc_inject_predicted_orbits_data_input_get_part_number +qmi_message_loc_inject_predicted_orbits_data_input_set_part_number +qmi_message_loc_inject_predicted_orbits_data_input_get_total_parts +qmi_message_loc_inject_predicted_orbits_data_input_set_total_parts +qmi_message_loc_inject_predicted_orbits_data_input_get_total_size +qmi_message_loc_inject_predicted_orbits_data_input_set_total_size + +qmi_message_loc_inject_predicted_orbits_data_output_ref +qmi_message_loc_inject_predicted_orbits_data_output_unref +qmi_message_loc_inject_predicted_orbits_data_output_get_result + +qmi_client_loc_inject_predicted_orbits_data +qmi_client_loc_inject_predicted_orbits_data_finish + + +qmi_message_loc_inject_predicted_orbits_data_input_get_type +QMI_TYPE_MESSAGE_LOC_INJECT_PREDICTED_ORBITS_DATA_INPUT +qmi_message_loc_inject_predicted_orbits_data_output_get_type +QMI_TYPE_MESSAGE_LOC_INJECT_PREDICTED_ORBITS_DATA_OUTPUT +
+ +
+qmi-indication-loc-inject-predicted-orbits-data +LOC Inject Predicted Orbits Data indication +QmiIndicationLocInjectPredictedOrbitsDataOutput + +qmi_indication_loc_inject_predicted_orbits_data_output_ref +qmi_indication_loc_inject_predicted_orbits_data_output_unref +qmi_indication_loc_inject_predicted_orbits_data_output_get_part_number +qmi_indication_loc_inject_predicted_orbits_data_output_get_indication_status + + +qmi_indication_loc_inject_predicted_orbits_data_output_get_type +QMI_TYPE_INDICATION_LOC_INJECT_PREDICTED_ORBITS_DATA_OUTPUT +
+ +
+qmi-message-loc-get-predicted-orbits-data-source +LOC Get Predicted Orbits Data Source request +QmiMessageLocGetPredictedOrbitsDataSourceOutput + +qmi_message_loc_get_predicted_orbits_data_source_output_ref +qmi_message_loc_get_predicted_orbits_data_source_output_unref +qmi_message_loc_get_predicted_orbits_data_source_output_get_result + +qmi_client_loc_get_predicted_orbits_data_source +qmi_client_loc_get_predicted_orbits_data_source_finish + + +qmi_message_loc_get_predicted_orbits_data_source_output_get_type +QMI_TYPE_MESSAGE_LOC_GET_PREDICTED_ORBITS_DATA_SOURCE_OUTPUT +
+ +
+qmi-indication-loc-get-predicted-orbits-data-source +LOC Get Predicted Orbits Data Source indication +QmiIndicationLocGetPredictedOrbitsDataSourceOutput + +qmi_indication_loc_get_predicted_orbits_data_source_output_ref +qmi_indication_loc_get_predicted_orbits_data_source_output_unref +qmi_indication_loc_get_predicted_orbits_data_source_output_get_server_list +qmi_indication_loc_get_predicted_orbits_data_source_output_get_allowed_sizes +qmi_indication_loc_get_predicted_orbits_data_source_output_get_indication_status + + +qmi_indication_loc_get_predicted_orbits_data_source_output_get_type +QMI_TYPE_INDICATION_LOC_GET_PREDICTED_ORBITS_DATA_SOURCE_OUTPUT +
+ +
+qmi-message-loc-set-server +LOC Set Server request +QmiMessageLocSetServerInput +QmiMessageLocSetServerOutput + +qmi_message_loc_set_server_input_new +qmi_message_loc_set_server_input_ref +qmi_message_loc_set_server_input_unref +qmi_message_loc_set_server_input_get_url +qmi_message_loc_set_server_input_set_url +qmi_message_loc_set_server_input_get_ipv6 +qmi_message_loc_set_server_input_set_ipv6 +qmi_message_loc_set_server_input_get_ipv4 +qmi_message_loc_set_server_input_set_ipv4 +qmi_message_loc_set_server_input_get_server_type +qmi_message_loc_set_server_input_set_server_type + +qmi_message_loc_set_server_output_ref +qmi_message_loc_set_server_output_unref +qmi_message_loc_set_server_output_get_result + +qmi_client_loc_set_server +qmi_client_loc_set_server_finish + + +qmi_message_loc_set_server_input_get_type +QMI_TYPE_MESSAGE_LOC_SET_SERVER_INPUT +qmi_message_loc_set_server_output_get_type +QMI_TYPE_MESSAGE_LOC_SET_SERVER_OUTPUT +
+ +
+qmi-indication-loc-set-server +LOC Set Server indication +QmiIndicationLocSetServerOutput + +qmi_indication_loc_set_server_output_ref +qmi_indication_loc_set_server_output_unref +qmi_indication_loc_set_server_output_get_indication_status + + +qmi_indication_loc_set_server_output_get_type +QMI_TYPE_INDICATION_LOC_SET_SERVER_OUTPUT +
+ +
+qmi-message-loc-get-server +LOC Get Server request +QmiMessageLocGetServerInput +QmiMessageLocGetServerOutput + +qmi_message_loc_get_server_input_new +qmi_message_loc_get_server_input_ref +qmi_message_loc_get_server_input_unref +qmi_message_loc_get_server_input_get_server_address_type +qmi_message_loc_get_server_input_set_server_address_type +qmi_message_loc_get_server_input_get_server_type +qmi_message_loc_get_server_input_set_server_type + +qmi_message_loc_get_server_output_ref +qmi_message_loc_get_server_output_unref +qmi_message_loc_get_server_output_get_result + +qmi_client_loc_get_server +qmi_client_loc_get_server_finish + + +qmi_message_loc_get_server_input_get_type +QMI_TYPE_MESSAGE_LOC_GET_SERVER_INPUT +qmi_message_loc_get_server_output_get_type +QMI_TYPE_MESSAGE_LOC_GET_SERVER_OUTPUT +
+ +
+qmi-indication-loc-get-server +LOC Get Server indication +QmiIndicationLocGetServerOutput + +qmi_indication_loc_get_server_output_ref +qmi_indication_loc_get_server_output_unref +qmi_indication_loc_get_server_output_get_url +qmi_indication_loc_get_server_output_get_ipv6 +qmi_indication_loc_get_server_output_get_ipv4 +qmi_indication_loc_get_server_output_get_server_type +qmi_indication_loc_get_server_output_get_indication_status + + +qmi_indication_loc_get_server_output_get_type +QMI_TYPE_INDICATION_LOC_GET_SERVER_OUTPUT +
+ +
+qmi-message-loc-delete-assistance-data +LOC Delete Assistance Data request +QmiMessageLocDeleteAssistanceDataInput +QmiMessageLocDeleteAssistanceDataInputDeleteSvInfoElement +QmiMessageLocDeleteAssistanceDataOutput + +qmi_message_loc_delete_assistance_data_input_new +qmi_message_loc_delete_assistance_data_input_ref +qmi_message_loc_delete_assistance_data_input_unref +qmi_message_loc_delete_assistance_data_input_get_delete_clock_info_mask +qmi_message_loc_delete_assistance_data_input_set_delete_clock_info_mask +qmi_message_loc_delete_assistance_data_input_get_delete_cell_database_mask +qmi_message_loc_delete_assistance_data_input_set_delete_cell_database_mask +qmi_message_loc_delete_assistance_data_input_get_delete_gnss_data_mask +qmi_message_loc_delete_assistance_data_input_set_delete_gnss_data_mask +qmi_message_loc_delete_assistance_data_input_get_delete_sv_info +qmi_message_loc_delete_assistance_data_input_set_delete_sv_info +qmi_message_loc_delete_assistance_data_input_get_delete_all +qmi_message_loc_delete_assistance_data_input_set_delete_all + +qmi_message_loc_delete_assistance_data_output_ref +qmi_message_loc_delete_assistance_data_output_unref +qmi_message_loc_delete_assistance_data_output_get_result + +qmi_client_loc_delete_assistance_data +qmi_client_loc_delete_assistance_data_finish + + +qmi_message_loc_delete_assistance_data_input_get_type +QMI_TYPE_MESSAGE_LOC_DELETE_ASSISTANCE_DATA_INPUT +qmi_message_loc_delete_assistance_data_output_get_type +QMI_TYPE_MESSAGE_LOC_DELETE_ASSISTANCE_DATA_OUTPUT +
+ +
+qmi-indication-loc-delete-assistance-data +LOC Delete Assistance Data indication +QmiIndicationLocDeleteAssistanceDataOutput + +qmi_indication_loc_delete_assistance_data_output_ref +qmi_indication_loc_delete_assistance_data_output_unref +qmi_indication_loc_delete_assistance_data_output_get_indication_status + + +qmi_indication_loc_delete_assistance_data_output_get_type +QMI_TYPE_INDICATION_LOC_DELETE_ASSISTANCE_DATA_OUTPUT +
+ +
+qmi-message-loc-set-operation-mode +LOC Set Operation Mode request +QmiMessageLocSetOperationModeInput +QmiMessageLocSetOperationModeOutput + +qmi_message_loc_set_operation_mode_input_new +qmi_message_loc_set_operation_mode_input_ref +qmi_message_loc_set_operation_mode_input_unref +qmi_message_loc_set_operation_mode_input_get_operation_mode +qmi_message_loc_set_operation_mode_input_set_operation_mode + +qmi_message_loc_set_operation_mode_output_ref +qmi_message_loc_set_operation_mode_output_unref +qmi_message_loc_set_operation_mode_output_get_result + +qmi_client_loc_set_operation_mode +qmi_client_loc_set_operation_mode_finish + + +qmi_message_loc_set_operation_mode_input_get_type +QMI_TYPE_MESSAGE_LOC_SET_OPERATION_MODE_INPUT +qmi_message_loc_set_operation_mode_output_get_type +QMI_TYPE_MESSAGE_LOC_SET_OPERATION_MODE_OUTPUT +
+ +
+qmi-indication-loc-set-operation-mode +LOC Set Operation Mode indication +QmiIndicationLocSetOperationModeOutput + +qmi_indication_loc_set_operation_mode_output_ref +qmi_indication_loc_set_operation_mode_output_unref +qmi_indication_loc_set_operation_mode_output_get_indication_status + + +qmi_indication_loc_set_operation_mode_output_get_type +QMI_TYPE_INDICATION_LOC_SET_OPERATION_MODE_OUTPUT +
+ +
+qmi-message-loc-get-operation-mode +LOC Get Operation Mode request +QmiMessageLocGetOperationModeOutput + +qmi_message_loc_get_operation_mode_output_ref +qmi_message_loc_get_operation_mode_output_unref +qmi_message_loc_get_operation_mode_output_get_result + +qmi_client_loc_get_operation_mode +qmi_client_loc_get_operation_mode_finish + + +qmi_message_loc_get_operation_mode_output_get_type +QMI_TYPE_MESSAGE_LOC_GET_OPERATION_MODE_OUTPUT +
+ +
+qmi-indication-loc-get-operation-mode +LOC Get Operation Mode indication +QmiIndicationLocGetOperationModeOutput + +qmi_indication_loc_get_operation_mode_output_ref +qmi_indication_loc_get_operation_mode_output_unref +qmi_indication_loc_get_operation_mode_output_get_operation_mode +qmi_indication_loc_get_operation_mode_output_get_indication_status + + +qmi_indication_loc_get_operation_mode_output_get_type +QMI_TYPE_INDICATION_LOC_GET_OPERATION_MODE_OUTPUT +
+ +
+qmi-message-loc-inject-xtra-data +LOC Inject Xtra Data request +QmiMessageLocInjectXtraDataInput +QmiMessageLocInjectXtraDataOutput + +qmi_message_loc_inject_xtra_data_input_new +qmi_message_loc_inject_xtra_data_input_ref +qmi_message_loc_inject_xtra_data_input_unref +qmi_message_loc_inject_xtra_data_input_get_part_data +qmi_message_loc_inject_xtra_data_input_set_part_data +qmi_message_loc_inject_xtra_data_input_get_part_number +qmi_message_loc_inject_xtra_data_input_set_part_number +qmi_message_loc_inject_xtra_data_input_get_total_parts +qmi_message_loc_inject_xtra_data_input_set_total_parts +qmi_message_loc_inject_xtra_data_input_get_total_size +qmi_message_loc_inject_xtra_data_input_set_total_size + +qmi_message_loc_inject_xtra_data_output_ref +qmi_message_loc_inject_xtra_data_output_unref +qmi_message_loc_inject_xtra_data_output_get_result + +qmi_client_loc_inject_xtra_data +qmi_client_loc_inject_xtra_data_finish + + +qmi_message_loc_inject_xtra_data_input_get_type +QMI_TYPE_MESSAGE_LOC_INJECT_XTRA_DATA_INPUT +qmi_message_loc_inject_xtra_data_output_get_type +QMI_TYPE_MESSAGE_LOC_INJECT_XTRA_DATA_OUTPUT +
+ +
+qmi-indication-loc-inject-xtra-data +LOC Inject Xtra Data indication +QmiIndicationLocInjectXtraDataOutput + +qmi_indication_loc_inject_xtra_data_output_ref +qmi_indication_loc_inject_xtra_data_output_unref +qmi_indication_loc_inject_xtra_data_output_get_part_number +qmi_indication_loc_inject_xtra_data_output_get_indication_status + + +qmi_indication_loc_inject_xtra_data_output_get_type +QMI_TYPE_INDICATION_LOC_INJECT_XTRA_DATA_OUTPUT +
+ +
+qmi-client-qos +QmiClientQos +QmiClientQos + +QmiClientQosClass +QMI_TYPE_CLIENT_QOS +QMI_CLIENT_QOS +QMI_CLIENT_QOS_CLASS +QMI_IS_CLIENT_QOS +QMI_IS_CLIENT_QOS_CLASS +QMI_CLIENT_QOS_GET_CLASS +qmi_client_qos_get_type +
+ +
+qmi-message-qos-reset +QOS Reset request +QmiMessageQosResetOutput + +qmi_message_qos_reset_output_ref +qmi_message_qos_reset_output_unref +qmi_message_qos_reset_output_get_result + +qmi_client_qos_reset +qmi_client_qos_reset_finish + + +qmi_message_qos_reset_output_get_type +QMI_TYPE_MESSAGE_QOS_RESET_OUTPUT +
+ +
+qmi-message-qos-get-flow-status +QOS Get Flow Status request +QmiMessageQosGetFlowStatusInput +QmiMessageQosGetFlowStatusOutput + +qmi_message_qos_get_flow_status_input_new +qmi_message_qos_get_flow_status_input_ref +qmi_message_qos_get_flow_status_input_unref +qmi_message_qos_get_flow_status_input_get_qos_id +qmi_message_qos_get_flow_status_input_set_qos_id + +qmi_message_qos_get_flow_status_output_ref +qmi_message_qos_get_flow_status_output_unref +qmi_message_qos_get_flow_status_output_get_result +qmi_message_qos_get_flow_status_output_get_value + +qmi_client_qos_get_flow_status +qmi_client_qos_get_flow_status_finish + + +qmi_message_qos_get_flow_status_input_get_type +QMI_TYPE_MESSAGE_QOS_GET_FLOW_STATUS_INPUT +qmi_message_qos_get_flow_status_output_get_type +QMI_TYPE_MESSAGE_QOS_GET_FLOW_STATUS_OUTPUT +
+ +
+qmi-indication-qos-flow-status +QOS Flow Status indication +QmiIndicationQosFlowStatusOutput + +qmi_indication_qos_flow_status_output_ref +qmi_indication_qos_flow_status_output_unref +qmi_indication_qos_flow_status_output_get_value + + +qmi_indication_qos_flow_status_output_get_type +QMI_TYPE_INDICATION_QOS_FLOW_STATUS_OUTPUT +
+ +
+qmi-message-qos-get-network-status +QOS Get Network Status request +QmiMessageQosGetNetworkStatusOutput + +qmi_message_qos_get_network_status_output_ref +qmi_message_qos_get_network_status_output_unref +qmi_message_qos_get_network_status_output_get_result +qmi_message_qos_get_network_status_output_get_qos_supported + +qmi_client_qos_get_network_status +qmi_client_qos_get_network_status_finish + + +qmi_message_qos_get_network_status_output_get_type +QMI_TYPE_MESSAGE_QOS_GET_NETWORK_STATUS_OUTPUT +
+ +
+qmi-indication-qos-network-status +QOS Network Status indication +QmiIndicationQosNetworkStatusOutput + +qmi_indication_qos_network_status_output_ref +qmi_indication_qos_network_status_output_unref +qmi_indication_qos_network_status_output_get_qos_supported + + +qmi_indication_qos_network_status_output_get_type +QMI_TYPE_INDICATION_QOS_NETWORK_STATUS_OUTPUT +
+ +
+qmi-message-qos-swi-read-data-stats +QOS Swi Read Data Stats request +QmiMessageQosSwiReadDataStatsInput +QmiMessageQosSwiReadDataStatsOutput +QmiMessageQosSwiReadDataStatsOutputFlowElement + +qmi_message_qos_swi_read_data_stats_input_new +qmi_message_qos_swi_read_data_stats_input_ref +qmi_message_qos_swi_read_data_stats_input_unref +qmi_message_qos_swi_read_data_stats_input_get_apn_id +qmi_message_qos_swi_read_data_stats_input_set_apn_id + +qmi_message_qos_swi_read_data_stats_output_ref +qmi_message_qos_swi_read_data_stats_output_unref +qmi_message_qos_swi_read_data_stats_output_get_result +qmi_message_qos_swi_read_data_stats_output_get_apn +qmi_message_qos_swi_read_data_stats_output_get_flow + +qmi_client_qos_swi_read_data_stats +qmi_client_qos_swi_read_data_stats_finish + + +qmi_message_qos_swi_read_data_stats_input_get_type +QMI_TYPE_MESSAGE_QOS_SWI_READ_DATA_STATS_INPUT +qmi_message_qos_swi_read_data_stats_output_get_type +QMI_TYPE_MESSAGE_QOS_SWI_READ_DATA_STATS_OUTPUT +
+ diff -Nru libqmi-1.18.0/docs/reference/libqmi-glib/libqmi-glib.types libqmi-1.22.0/docs/reference/libqmi-glib/libqmi-glib.types --- libqmi-1.18.0/docs/reference/libqmi-glib/libqmi-glib.types 2017-03-22 12:28:28.000000000 +0100 +++ libqmi-1.22.0/docs/reference/libqmi-glib/libqmi-glib.types 2019-01-08 15:19:01.000000000 +0100 @@ -1,10 +1,12 @@ qmi_client_dms_get_type qmi_client_get_type +qmi_client_loc_get_type qmi_client_nas_get_type qmi_client_oma_get_type qmi_client_pbm_get_type qmi_client_pdc_get_type qmi_client_pds_get_type +qmi_client_qos_get_type qmi_client_uim_get_type qmi_client_voice_get_type qmi_client_wda_get_type @@ -26,6 +28,7 @@ qmi_dms_power_state_get_type qmi_dms_radio_interface_get_type qmi_dms_sim_capability_get_type +qmi_dms_swi_usb_composition_get_type qmi_dms_time_reference_type_get_type qmi_dms_time_source_get_type qmi_dms_uim_facility_get_type @@ -34,6 +37,19 @@ qmi_dms_uim_pin_status_get_type qmi_dms_uim_state_get_type qmi_indication_dms_event_report_output_get_type +qmi_indication_loc_delete_assistance_data_output_get_type +qmi_indication_loc_engine_state_output_get_type +qmi_indication_loc_fix_recurrence_type_output_get_type +qmi_indication_loc_get_operation_mode_output_get_type +qmi_indication_loc_get_predicted_orbits_data_source_output_get_type +qmi_indication_loc_get_server_output_get_type +qmi_indication_loc_gnss_sv_info_output_get_type +qmi_indication_loc_inject_predicted_orbits_data_output_get_type +qmi_indication_loc_inject_xtra_data_output_get_type +qmi_indication_loc_nmea_output_get_type +qmi_indication_loc_position_report_output_get_type +qmi_indication_loc_set_operation_mode_output_get_type +qmi_indication_loc_set_server_output_get_type qmi_indication_nas_event_report_output_get_type qmi_indication_nas_network_time_output_get_type qmi_indication_nas_operator_name_output_get_type @@ -49,11 +65,34 @@ qmi_indication_pdc_load_config_output_get_type qmi_indication_pdc_set_selected_config_output_get_type qmi_indication_pds_event_report_output_get_type +qmi_indication_qos_flow_status_output_get_type +qmi_indication_qos_network_status_output_get_type +qmi_indication_uim_card_status_output_get_type qmi_indication_voice_all_call_status_output_get_type qmi_indication_wds_event_report_output_get_type qmi_indication_wds_packet_service_status_output_get_type qmi_indication_wms_event_report_output_get_type qmi_indication_wms_smsc_address_output_get_type +qmi_loc_delete_cell_database_get_type +qmi_loc_delete_clock_info_get_type +qmi_loc_delete_sv_info_get_type +qmi_loc_engine_state_get_type +qmi_loc_fix_recurrence_type_get_type +qmi_loc_health_status_get_type +qmi_loc_indication_status_get_type +qmi_loc_intermediate_report_state_get_type +qmi_loc_navigation_data_get_type +qmi_loc_operation_mode_get_type +qmi_loc_predicted_orbits_data_format_get_type +qmi_loc_reliability_get_type +qmi_loc_satellite_status_get_type +qmi_loc_satellite_valid_information_get_type +qmi_loc_server_address_type_get_type +qmi_loc_server_type_get_type +qmi_loc_session_status_get_type +qmi_loc_system_get_type +qmi_loc_technology_used_get_type +qmi_loc_time_source_get_type qmi_message_context_get_type qmi_message_dms_activate_automatic_input_get_type qmi_message_dms_activate_automatic_output_get_type @@ -112,6 +151,9 @@ qmi_message_dms_set_user_lock_state_input_get_type qmi_message_dms_set_user_lock_state_output_get_type qmi_message_dms_swi_get_current_firmware_output_get_type +qmi_message_dms_swi_get_usb_composition_output_get_type +qmi_message_dms_swi_set_usb_composition_input_get_type +qmi_message_dms_swi_set_usb_composition_output_get_type qmi_message_dms_uim_change_pin_input_get_type qmi_message_dms_uim_change_pin_output_get_type qmi_message_dms_uim_get_ck_status_input_get_type @@ -134,6 +176,28 @@ qmi_message_dms_validate_service_programming_code_output_get_type qmi_message_dms_write_user_data_input_get_type qmi_message_dms_write_user_data_output_get_type +qmi_message_loc_delete_assistance_data_input_get_type +qmi_message_loc_delete_assistance_data_output_get_type +qmi_message_loc_get_operation_mode_output_get_type +qmi_message_loc_get_predicted_orbits_data_source_output_get_type +qmi_message_loc_get_server_input_get_type +qmi_message_loc_get_server_output_get_type +qmi_message_loc_inject_predicted_orbits_data_input_get_type +qmi_message_loc_inject_predicted_orbits_data_output_get_type +qmi_message_loc_inject_xtra_data_input_get_type +qmi_message_loc_inject_xtra_data_output_get_type +qmi_message_loc_register_events_input_get_type +qmi_message_loc_register_events_output_get_type +qmi_message_loc_set_operation_mode_input_get_type +qmi_message_loc_set_operation_mode_output_get_type +qmi_message_loc_set_server_input_get_type +qmi_message_loc_set_server_output_get_type +qmi_message_loc_start_input_get_type +qmi_message_loc_start_output_get_type +qmi_message_loc_stop_input_get_type +qmi_message_loc_stop_output_get_type +qmi_message_nas_attach_detach_input_get_type +qmi_message_nas_attach_detach_output_get_type qmi_message_nas_config_signal_info_input_get_type qmi_message_nas_config_signal_info_output_get_type qmi_message_nas_force_network_search_output_get_type @@ -224,6 +288,12 @@ qmi_message_pds_set_event_report_output_get_type qmi_message_pds_set_gps_service_state_input_get_type qmi_message_pds_set_gps_service_state_output_get_type +qmi_message_qos_get_flow_status_input_get_type +qmi_message_qos_get_flow_status_output_get_type +qmi_message_qos_get_network_status_output_get_type +qmi_message_qos_reset_output_get_type +qmi_message_qos_swi_read_data_stats_input_get_type +qmi_message_qos_swi_read_data_stats_output_get_type qmi_message_uim_change_pin_input_get_type qmi_message_uim_change_pin_output_get_type qmi_message_uim_get_card_status_output_get_type @@ -265,10 +335,13 @@ qmi_message_wds_delete_profile_input_get_type qmi_message_wds_delete_profile_output_get_type qmi_message_wds_get_autoconnect_settings_output_get_type +qmi_message_wds_get_channel_rates_output_get_type qmi_message_wds_get_current_data_bearer_technology_output_get_type qmi_message_wds_get_current_settings_input_get_type qmi_message_wds_get_current_settings_output_get_type qmi_message_wds_get_data_bearer_technology_output_get_type +qmi_message_wds_get_default_profile_num_input_get_type +qmi_message_wds_get_default_profile_num_output_get_type qmi_message_wds_get_default_settings_input_get_type qmi_message_wds_get_default_settings_output_get_type qmi_message_wds_get_dormancy_status_output_get_type @@ -289,6 +362,8 @@ qmi_message_wds_reset_output_get_type qmi_message_wds_set_autoconnect_settings_input_get_type qmi_message_wds_set_autoconnect_settings_output_get_type +qmi_message_wds_set_default_profile_num_input_get_type +qmi_message_wds_set_default_profile_num_output_get_type qmi_message_wds_set_event_report_input_get_type qmi_message_wds_set_event_report_output_get_type qmi_message_wds_set_ip_family_input_get_type @@ -297,6 +372,8 @@ qmi_message_wds_start_network_output_get_type qmi_message_wds_stop_network_input_get_type qmi_message_wds_stop_network_output_get_type +qmi_message_wds_swi_create_profile_indexed_input_get_type +qmi_message_wds_swi_create_profile_indexed_output_get_type qmi_message_wms_delete_input_get_type qmi_message_wms_delete_output_get_type qmi_message_wms_get_message_protocol_output_get_type @@ -347,6 +424,7 @@ qmi_nas_plmn_name_country_initials_get_type qmi_nas_plmn_name_spare_bits_get_type qmi_nas_preference_duration_get_type +qmi_nas_ps_attach_action_get_type qmi_nas_radio_interface_get_type qmi_nas_radio_technology_preference_get_type qmi_nas_rat_mode_preference_get_type @@ -378,6 +456,8 @@ qmi_pds_tracking_session_state_get_type qmi_protocol_error_get_type qmi_proxy_get_type +qmi_qos_event_get_type +qmi_qos_status_get_type qmi_service_get_type qmi_uim_card_application_personalization_feature_get_type qmi_uim_card_application_personalization_state_get_type @@ -429,6 +509,7 @@ qmi_wds_pdp_data_compression_type_get_type qmi_wds_pdp_header_compression_type_get_type qmi_wds_pdp_type_get_type +qmi_wds_profile_family_get_type qmi_wds_profile_type_get_type qmi_wds_qos_class_identifier_get_type qmi_wds_radio_access_technology_get_type diff -Nru libqmi-1.18.0/docs/reference/libqmi-glib/Makefile.am libqmi-1.22.0/docs/reference/libqmi-glib/Makefile.am --- libqmi-1.18.0/docs/reference/libqmi-glib/Makefile.am 2017-03-21 14:26:54.000000000 +0100 +++ libqmi-1.22.0/docs/reference/libqmi-glib/Makefile.am 2019-01-08 14:09:47.000000000 +0100 @@ -18,7 +18,10 @@ $(top_builddir)/src/libqmi-glib/generated/qmi-uim.sections \ $(top_builddir)/src/libqmi-glib/generated/qmi-oma.sections \ $(top_builddir)/src/libqmi-glib/generated/qmi-wda.sections \ - $(top_builddir)/src/libqmi-glib/generated/qmi-voice.sections + $(top_builddir)/src/libqmi-glib/generated/qmi-voice.sections \ + $(top_builddir)/src/libqmi-glib/generated/qmi-loc.sections \ + $(top_builddir)/src/libqmi-glib/generated/qmi-qos.sections \ + $(NULL) $(DOC_MODULE)-sections.mstamp: $(ALL_SECTIONS) $(AM_V_GEN) \ @@ -29,7 +32,7 @@ BUILT_SOURCES = $(DOC_MODULE)-sections.mstamp # Extra options to supply to gtkdoc-scan -SCAN_OPTIONS = --rebuild-types +SCAN_OPTIONS = --rebuild-types --deprecated-guards="QMI_DISABLE_DEPRECATED" # The directory containing the source code. DOC_SOURCE_DIR = \ diff -Nru libqmi-1.18.0/docs/reference/libqmi-glib/Makefile.in libqmi-1.22.0/docs/reference/libqmi-glib/Makefile.in --- libqmi-1.18.0/docs/reference/libqmi-glib/Makefile.in 2017-03-22 12:20:25.000000000 +0100 +++ libqmi-1.22.0/docs/reference/libqmi-glib/Makefile.in 2019-01-08 15:17:16.000000000 +0100 @@ -1,7 +1,7 @@ -# Makefile.in generated by automake 1.15 from Makefile.am. +# Makefile.in generated by automake 1.16.1 from Makefile.am. # @configure_input@ -# Copyright (C) 1994-2014 Free Software Foundation, Inc. +# Copyright (C) 1994-2018 Free Software Foundation, Inc. # This Makefile.in is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, @@ -206,6 +206,11 @@ PKG_CONFIG = @PKG_CONFIG@ PKG_CONFIG_LIBDIR = @PKG_CONFIG_LIBDIR@ PKG_CONFIG_PATH = @PKG_CONFIG_PATH@ +PYTHON = @PYTHON@ +PYTHON_EXEC_PREFIX = @PYTHON_EXEC_PREFIX@ +PYTHON_PLATFORM = @PYTHON_PLATFORM@ +PYTHON_PREFIX = @PYTHON_PREFIX@ +PYTHON_VERSION = @PYTHON_VERSION@ QMI_GLIB_LT_AGE = @QMI_GLIB_LT_AGE@ QMI_GLIB_LT_CURRENT = @QMI_GLIB_LT_CURRENT@ QMI_GLIB_LT_REVISION = @QMI_GLIB_LT_REVISION@ @@ -263,9 +268,13 @@ mkdir_p = @mkdir_p@ oldincludedir = @oldincludedir@ pdfdir = @pdfdir@ +pkgpyexecdir = @pkgpyexecdir@ +pkgpythondir = @pkgpythondir@ prefix = @prefix@ program_transform_name = @program_transform_name@ psdir = @psdir@ +pyexecdir = @pyexecdir@ +pythondir = @pythondir@ sbindir = @sbindir@ sharedstatedir = @sharedstatedir@ srcdir = @srcdir@ @@ -294,12 +303,15 @@ $(top_builddir)/src/libqmi-glib/generated/qmi-uim.sections \ $(top_builddir)/src/libqmi-glib/generated/qmi-oma.sections \ $(top_builddir)/src/libqmi-glib/generated/qmi-wda.sections \ - $(top_builddir)/src/libqmi-glib/generated/qmi-voice.sections + $(top_builddir)/src/libqmi-glib/generated/qmi-voice.sections \ + $(top_builddir)/src/libqmi-glib/generated/qmi-loc.sections \ + $(top_builddir)/src/libqmi-glib/generated/qmi-qos.sections \ + $(NULL) BUILT_SOURCES = $(DOC_MODULE)-sections.mstamp # Extra options to supply to gtkdoc-scan -SCAN_OPTIONS = --rebuild-types +SCAN_OPTIONS = --rebuild-types --deprecated-guards="QMI_DISABLE_DEPRECATED" # The directory containing the source code. DOC_SOURCE_DIR = \ @@ -403,34 +415,34 @@ @GTK_DOC_BUILD_PDF_TRUE@PDF_BUILD_STAMP = pdf-build.stamp #### setup #### -GTK_DOC_V_SETUP = $(GTK_DOC_V_SETUP_$(V)) -GTK_DOC_V_SETUP_ = $(GTK_DOC_V_SETUP_$(AM_DEFAULT_VERBOSITY)) +GTK_DOC_V_SETUP = $(GTK_DOC_V_SETUP_@AM_V@) +GTK_DOC_V_SETUP_ = $(GTK_DOC_V_SETUP_@AM_DEFAULT_V@) GTK_DOC_V_SETUP_0 = @echo " DOC Preparing build"; #### scan #### -GTK_DOC_V_SCAN = $(GTK_DOC_V_SCAN_$(V)) -GTK_DOC_V_SCAN_ = $(GTK_DOC_V_SCAN_$(AM_DEFAULT_VERBOSITY)) +GTK_DOC_V_SCAN = $(GTK_DOC_V_SCAN_@AM_V@) +GTK_DOC_V_SCAN_ = $(GTK_DOC_V_SCAN_@AM_DEFAULT_V@) GTK_DOC_V_SCAN_0 = @echo " DOC Scanning header files"; -GTK_DOC_V_INTROSPECT = $(GTK_DOC_V_INTROSPECT_$(V)) -GTK_DOC_V_INTROSPECT_ = $(GTK_DOC_V_INTROSPECT_$(AM_DEFAULT_VERBOSITY)) +GTK_DOC_V_INTROSPECT = $(GTK_DOC_V_INTROSPECT_@AM_V@) +GTK_DOC_V_INTROSPECT_ = $(GTK_DOC_V_INTROSPECT_@AM_DEFAULT_V@) GTK_DOC_V_INTROSPECT_0 = @echo " DOC Introspecting gobjects"; #### xml #### -GTK_DOC_V_XML = $(GTK_DOC_V_XML_$(V)) -GTK_DOC_V_XML_ = $(GTK_DOC_V_XML_$(AM_DEFAULT_VERBOSITY)) +GTK_DOC_V_XML = $(GTK_DOC_V_XML_@AM_V@) +GTK_DOC_V_XML_ = $(GTK_DOC_V_XML_@AM_DEFAULT_V@) GTK_DOC_V_XML_0 = @echo " DOC Building XML"; #### html #### -GTK_DOC_V_HTML = $(GTK_DOC_V_HTML_$(V)) -GTK_DOC_V_HTML_ = $(GTK_DOC_V_HTML_$(AM_DEFAULT_VERBOSITY)) +GTK_DOC_V_HTML = $(GTK_DOC_V_HTML_@AM_V@) +GTK_DOC_V_HTML_ = $(GTK_DOC_V_HTML_@AM_DEFAULT_V@) GTK_DOC_V_HTML_0 = @echo " DOC Building HTML"; -GTK_DOC_V_XREF = $(GTK_DOC_V_XREF_$(V)) -GTK_DOC_V_XREF_ = $(GTK_DOC_V_XREF_$(AM_DEFAULT_VERBOSITY)) +GTK_DOC_V_XREF = $(GTK_DOC_V_XREF_@AM_V@) +GTK_DOC_V_XREF_ = $(GTK_DOC_V_XREF_@AM_DEFAULT_V@) GTK_DOC_V_XREF_0 = @echo " DOC Fixing cross-references"; #### pdf #### -GTK_DOC_V_PDF = $(GTK_DOC_V_PDF_$(V)) -GTK_DOC_V_PDF_ = $(GTK_DOC_V_PDF_$(AM_DEFAULT_VERBOSITY)) +GTK_DOC_V_PDF = $(GTK_DOC_V_PDF_@AM_V@) +GTK_DOC_V_PDF_ = $(GTK_DOC_V_PDF_@AM_DEFAULT_V@) GTK_DOC_V_PDF_0 = @echo " DOC Building PDF"; all: $(BUILT_SOURCES) $(MAKE) $(AM_MAKEFLAGS) all-am @@ -453,8 +465,8 @@ *config.status*) \ cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ *) \ - echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ - cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ + echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles)'; \ + cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles);; \ esac; $(top_srcdir)/gtk-doc.make $(am__empty): @@ -481,7 +493,10 @@ cscope cscopelist: -distdir: $(DISTFILES) +distdir: $(BUILT_SOURCES) + $(MAKE) $(AM_MAKEFLAGS) distdir-am + +distdir-am: $(DISTFILES) @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ list='$(DISTFILES)'; \ @@ -661,38 +676,38 @@ setup-build.stamp: -$(GTK_DOC_V_SETUP)if test "$(abs_srcdir)" != "$(abs_builddir)" ; then \ - files=`echo $(SETUP_FILES) $(DOC_MODULE).types`; \ - if test "x$$files" != "x" ; then \ - for file in $$files ; do \ - destdir=`dirname $(abs_builddir)/$$file`; \ - test -d "$$destdir" || mkdir -p "$$destdir"; \ - test -f $(abs_srcdir)/$$file && \ - cp -pf $(abs_srcdir)/$$file $(abs_builddir)/$$file || true; \ - done; \ - fi; \ + files=`echo $(SETUP_FILES) $(DOC_MODULE).types`; \ + if test "x$$files" != "x" ; then \ + for file in $$files ; do \ + destdir=`dirname $(abs_builddir)/$$file`; \ + test -d "$$destdir" || mkdir -p "$$destdir"; \ + test -f $(abs_srcdir)/$$file && \ + cp -pf $(abs_srcdir)/$$file $(abs_builddir)/$$file || true; \ + done; \ + fi; \ fi $(AM_V_at)touch setup-build.stamp scan-build.stamp: setup-build.stamp $(HFILE_GLOB) $(CFILE_GLOB) $(GTK_DOC_V_SCAN)_source_dir='' ; \ for i in $(DOC_SOURCE_DIR) ; do \ - _source_dir="$${_source_dir} --source-dir=$$i" ; \ + _source_dir="$${_source_dir} --source-dir=$$i" ; \ done ; \ gtkdoc-scan --module=$(DOC_MODULE) --ignore-headers="$(IGNORE_HFILES)" $${_source_dir} $(SCAN_OPTIONS) $(EXTRA_HFILES) $(GTK_DOC_V_INTROSPECT)if grep -l '^..*$$' $(DOC_MODULE).types > /dev/null 2>&1 ; then \ - scanobj_options=""; \ - gtkdoc-scangobj 2>&1 --help | grep >/dev/null "\-\-verbose"; \ - if test "$$?" = "0"; then \ - if test "x$(V)" = "x1"; then \ - scanobj_options="--verbose"; \ - fi; \ + scanobj_options=""; \ + gtkdoc-scangobj 2>&1 --help | grep >/dev/null "\-\-verbose"; \ + if test "$$?" = "0"; then \ + if test "x$(V)" = "x1"; then \ + scanobj_options="--verbose"; \ fi; \ - CC="$(GTKDOC_CC)" LD="$(GTKDOC_LD)" RUN="$(GTKDOC_RUN)" CFLAGS="$(GTKDOC_CFLAGS) $(CFLAGS)" LDFLAGS="$(GTKDOC_LIBS) $(LDFLAGS)" \ - gtkdoc-scangobj $(SCANGOBJ_OPTIONS) $$scanobj_options --module=$(DOC_MODULE); \ + fi; \ + CC="$(GTKDOC_CC)" LD="$(GTKDOC_LD)" RUN="$(GTKDOC_RUN)" CFLAGS="$(GTKDOC_CFLAGS) $(CFLAGS)" LDFLAGS="$(GTKDOC_LIBS) $(LDFLAGS)" \ + gtkdoc-scangobj $(SCANGOBJ_OPTIONS) $$scanobj_options --module=$(DOC_MODULE); \ else \ - for i in $(SCANOBJ_FILES) ; do \ - test -f $$i || touch $$i ; \ - done \ + for i in $(SCANOBJ_FILES) ; do \ + test -f $$i || touch $$i ; \ + done \ fi $(AM_V_at)touch scan-build.stamp @@ -702,7 +717,7 @@ sgml-build.stamp: setup-build.stamp $(DOC_MODULE)-decl.txt $(SCANOBJ_FILES) $(HFILE_GLOB) $(CFILE_GLOB) $(DOC_MODULE)-sections.txt $(DOC_MODULE)-overrides.txt $(expand_content_files) xml/gtkdocentities.ent $(GTK_DOC_V_XML)_source_dir='' ; \ for i in $(DOC_SOURCE_DIR) ; do \ - _source_dir="$${_source_dir} --source-dir=$$i" ; \ + _source_dir="$${_source_dir} --source-dir=$$i" ; \ done ; \ gtkdoc-mkdb --module=$(DOC_MODULE) --output-format=xml --expand-content-files="$(expand_content_files)" --main-sgml-file=$(DOC_MAIN_SGML_FILE) $${_source_dir} $(MKDB_OPTIONS) $(AM_V_at)touch sgml-build.stamp @@ -710,6 +725,9 @@ sgml.stamp: sgml-build.stamp @true +$(DOC_MAIN_SGML_FILE): sgml-build.stamp + @true + xml/gtkdocentities.ent: Makefile $(GTK_DOC_V_XML)$(MKDIR_P) $(@D) && ( \ echo ""; \ @@ -737,12 +755,8 @@ cd html && gtkdoc-mkhtml $$mkhtml_options $(MKHTML_OPTIONS) $(DOC_MODULE) ../$(DOC_MAIN_SGML_FILE) -@test "x$(HTML_IMAGES)" = "x" || \ for file in $(HTML_IMAGES) ; do \ - if test -f $(abs_srcdir)/$$file ; then \ - cp $(abs_srcdir)/$$file $(abs_builddir)/html; \ - fi; \ - if test -f $(abs_builddir)/$$file ; then \ - cp $(abs_builddir)/$$file $(abs_builddir)/html; \ - fi; \ + test -f $(abs_srcdir)/$$file && cp $(abs_srcdir)/$$file $(abs_builddir)/html; \ + test -f $(abs_builddir)/$$file && cp $(abs_builddir)/$$file $(abs_builddir)/html; \ done; $(GTK_DOC_V_XREF)gtkdoc-fixxref --module=$(DOC_MODULE) --module-dir=html --html-dir=$(HTML_DIR) $(FIXXREF_OPTIONS) $(AM_V_at)touch html-build.stamp diff -Nru libqmi-1.18.0/docs/reference/libqmi-glib/version.xml libqmi-1.22.0/docs/reference/libqmi-glib/version.xml --- libqmi-1.18.0/docs/reference/libqmi-glib/version.xml 2017-03-22 12:20:32.000000000 +0100 +++ libqmi-1.22.0/docs/reference/libqmi-glib/version.xml 2019-01-08 15:17:21.000000000 +0100 @@ -1 +1 @@ -1.18.0 +1.22.0 diff -Nru libqmi-1.18.0/docs/reference/Makefile.in libqmi-1.22.0/docs/reference/Makefile.in --- libqmi-1.18.0/docs/reference/Makefile.in 2017-03-22 12:20:25.000000000 +0100 +++ libqmi-1.22.0/docs/reference/Makefile.in 2019-01-08 15:17:16.000000000 +0100 @@ -1,7 +1,7 @@ -# Makefile.in generated by automake 1.15 from Makefile.am. +# Makefile.in generated by automake 1.16.1 from Makefile.am. # @configure_input@ -# Copyright (C) 1994-2014 Free Software Foundation, Inc. +# Copyright (C) 1994-2018 Free Software Foundation, Inc. # This Makefile.in is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, @@ -135,7 +135,7 @@ $(RECURSIVE_CLEAN_TARGETS) \ $(am__extra_recursive_targets) AM_RECURSIVE_TARGETS = $(am__recursive_targets:-recursive=) TAGS CTAGS \ - distdir + distdir distdir-am am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP) # Read a list of newline-separated strings from the standard input, # and print each of them once, without duplicates. Input order is @@ -259,6 +259,11 @@ PKG_CONFIG = @PKG_CONFIG@ PKG_CONFIG_LIBDIR = @PKG_CONFIG_LIBDIR@ PKG_CONFIG_PATH = @PKG_CONFIG_PATH@ +PYTHON = @PYTHON@ +PYTHON_EXEC_PREFIX = @PYTHON_EXEC_PREFIX@ +PYTHON_PLATFORM = @PYTHON_PLATFORM@ +PYTHON_PREFIX = @PYTHON_PREFIX@ +PYTHON_VERSION = @PYTHON_VERSION@ QMI_GLIB_LT_AGE = @QMI_GLIB_LT_AGE@ QMI_GLIB_LT_CURRENT = @QMI_GLIB_LT_CURRENT@ QMI_GLIB_LT_REVISION = @QMI_GLIB_LT_REVISION@ @@ -316,9 +321,13 @@ mkdir_p = @mkdir_p@ oldincludedir = @oldincludedir@ pdfdir = @pdfdir@ +pkgpyexecdir = @pkgpyexecdir@ +pkgpythondir = @pkgpythondir@ prefix = @prefix@ program_transform_name = @program_transform_name@ psdir = @psdir@ +pyexecdir = @pyexecdir@ +pythondir = @pythondir@ sbindir = @sbindir@ sharedstatedir = @sharedstatedir@ srcdir = @srcdir@ @@ -348,8 +357,8 @@ *config.status*) \ cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ *) \ - echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ - cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ + echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles)'; \ + cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles);; \ esac; $(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) @@ -466,7 +475,10 @@ distclean-tags: -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags -distdir: $(DISTFILES) +distdir: $(BUILT_SOURCES) + $(MAKE) $(AM_MAKEFLAGS) distdir-am + +distdir-am: $(DISTFILES) @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ list='$(DISTFILES)'; \ diff -Nru libqmi-1.18.0/gtk-doc.make libqmi-1.22.0/gtk-doc.make --- libqmi-1.18.0/gtk-doc.make 2017-01-26 22:08:45.000000000 +0100 +++ libqmi-1.22.0/gtk-doc.make 2018-03-20 21:33:05.000000000 +0100 @@ -81,55 +81,54 @@ #### setup #### -GTK_DOC_V_SETUP=$(GTK_DOC_V_SETUP_$(V)) -GTK_DOC_V_SETUP_=$(GTK_DOC_V_SETUP_$(AM_DEFAULT_VERBOSITY)) +GTK_DOC_V_SETUP=$(GTK_DOC_V_SETUP_@AM_V@) +GTK_DOC_V_SETUP_=$(GTK_DOC_V_SETUP_@AM_DEFAULT_V@) GTK_DOC_V_SETUP_0=@echo " DOC Preparing build"; setup-build.stamp: -$(GTK_DOC_V_SETUP)if test "$(abs_srcdir)" != "$(abs_builddir)" ; then \ - files=`echo $(SETUP_FILES) $(DOC_MODULE).types`; \ - if test "x$$files" != "x" ; then \ - for file in $$files ; do \ - destdir=`dirname $(abs_builddir)/$$file`; \ - test -d "$$destdir" || mkdir -p "$$destdir"; \ - test -f $(abs_srcdir)/$$file && \ - cp -pf $(abs_srcdir)/$$file $(abs_builddir)/$$file || true; \ - done; \ - fi; \ + files=`echo $(SETUP_FILES) $(DOC_MODULE).types`; \ + if test "x$$files" != "x" ; then \ + for file in $$files ; do \ + destdir=`dirname $(abs_builddir)/$$file`; \ + test -d "$$destdir" || mkdir -p "$$destdir"; \ + test -f $(abs_srcdir)/$$file && \ + cp -pf $(abs_srcdir)/$$file $(abs_builddir)/$$file || true; \ + done; \ + fi; \ fi $(AM_V_at)touch setup-build.stamp - #### scan #### -GTK_DOC_V_SCAN=$(GTK_DOC_V_SCAN_$(V)) -GTK_DOC_V_SCAN_=$(GTK_DOC_V_SCAN_$(AM_DEFAULT_VERBOSITY)) +GTK_DOC_V_SCAN=$(GTK_DOC_V_SCAN_@AM_V@) +GTK_DOC_V_SCAN_=$(GTK_DOC_V_SCAN_@AM_DEFAULT_V@) GTK_DOC_V_SCAN_0=@echo " DOC Scanning header files"; -GTK_DOC_V_INTROSPECT=$(GTK_DOC_V_INTROSPECT_$(V)) -GTK_DOC_V_INTROSPECT_=$(GTK_DOC_V_INTROSPECT_$(AM_DEFAULT_VERBOSITY)) +GTK_DOC_V_INTROSPECT=$(GTK_DOC_V_INTROSPECT_@AM_V@) +GTK_DOC_V_INTROSPECT_=$(GTK_DOC_V_INTROSPECT_@AM_DEFAULT_V@) GTK_DOC_V_INTROSPECT_0=@echo " DOC Introspecting gobjects"; scan-build.stamp: setup-build.stamp $(HFILE_GLOB) $(CFILE_GLOB) $(GTK_DOC_V_SCAN)_source_dir='' ; \ for i in $(DOC_SOURCE_DIR) ; do \ - _source_dir="$${_source_dir} --source-dir=$$i" ; \ + _source_dir="$${_source_dir} --source-dir=$$i" ; \ done ; \ gtkdoc-scan --module=$(DOC_MODULE) --ignore-headers="$(IGNORE_HFILES)" $${_source_dir} $(SCAN_OPTIONS) $(EXTRA_HFILES) $(GTK_DOC_V_INTROSPECT)if grep -l '^..*$$' $(DOC_MODULE).types > /dev/null 2>&1 ; then \ - scanobj_options=""; \ - gtkdoc-scangobj 2>&1 --help | grep >/dev/null "\-\-verbose"; \ - if test "$$?" = "0"; then \ - if test "x$(V)" = "x1"; then \ - scanobj_options="--verbose"; \ - fi; \ + scanobj_options=""; \ + gtkdoc-scangobj 2>&1 --help | grep >/dev/null "\-\-verbose"; \ + if test "$$?" = "0"; then \ + if test "x$(V)" = "x1"; then \ + scanobj_options="--verbose"; \ fi; \ - CC="$(GTKDOC_CC)" LD="$(GTKDOC_LD)" RUN="$(GTKDOC_RUN)" CFLAGS="$(GTKDOC_CFLAGS) $(CFLAGS)" LDFLAGS="$(GTKDOC_LIBS) $(LDFLAGS)" \ - gtkdoc-scangobj $(SCANGOBJ_OPTIONS) $$scanobj_options --module=$(DOC_MODULE); \ + fi; \ + CC="$(GTKDOC_CC)" LD="$(GTKDOC_LD)" RUN="$(GTKDOC_RUN)" CFLAGS="$(GTKDOC_CFLAGS) $(CFLAGS)" LDFLAGS="$(GTKDOC_LIBS) $(LDFLAGS)" \ + gtkdoc-scangobj $(SCANGOBJ_OPTIONS) $$scanobj_options --module=$(DOC_MODULE); \ else \ - for i in $(SCANOBJ_FILES) ; do \ - test -f $$i || touch $$i ; \ - done \ + for i in $(SCANOBJ_FILES) ; do \ + test -f $$i || touch $$i ; \ + done \ fi $(AM_V_at)touch scan-build.stamp @@ -138,14 +137,14 @@ #### xml #### -GTK_DOC_V_XML=$(GTK_DOC_V_XML_$(V)) -GTK_DOC_V_XML_=$(GTK_DOC_V_XML_$(AM_DEFAULT_VERBOSITY)) +GTK_DOC_V_XML=$(GTK_DOC_V_XML_@AM_V@) +GTK_DOC_V_XML_=$(GTK_DOC_V_XML_@AM_DEFAULT_V@) GTK_DOC_V_XML_0=@echo " DOC Building XML"; sgml-build.stamp: setup-build.stamp $(DOC_MODULE)-decl.txt $(SCANOBJ_FILES) $(HFILE_GLOB) $(CFILE_GLOB) $(DOC_MODULE)-sections.txt $(DOC_MODULE)-overrides.txt $(expand_content_files) xml/gtkdocentities.ent $(GTK_DOC_V_XML)_source_dir='' ; \ for i in $(DOC_SOURCE_DIR) ; do \ - _source_dir="$${_source_dir} --source-dir=$$i" ; \ + _source_dir="$${_source_dir} --source-dir=$$i" ; \ done ; \ gtkdoc-mkdb --module=$(DOC_MODULE) --output-format=xml --expand-content-files="$(expand_content_files)" --main-sgml-file=$(DOC_MAIN_SGML_FILE) $${_source_dir} $(MKDB_OPTIONS) $(AM_V_at)touch sgml-build.stamp @@ -153,6 +152,9 @@ sgml.stamp: sgml-build.stamp @true +$(DOC_MAIN_SGML_FILE): sgml-build.stamp + @true + xml/gtkdocentities.ent: Makefile $(GTK_DOC_V_XML)$(MKDIR_P) $(@D) && ( \ echo ""; \ @@ -166,12 +168,12 @@ #### html #### -GTK_DOC_V_HTML=$(GTK_DOC_V_HTML_$(V)) -GTK_DOC_V_HTML_=$(GTK_DOC_V_HTML_$(AM_DEFAULT_VERBOSITY)) +GTK_DOC_V_HTML=$(GTK_DOC_V_HTML_@AM_V@) +GTK_DOC_V_HTML_=$(GTK_DOC_V_HTML_@AM_DEFAULT_V@) GTK_DOC_V_HTML_0=@echo " DOC Building HTML"; -GTK_DOC_V_XREF=$(GTK_DOC_V_XREF_$(V)) -GTK_DOC_V_XREF_=$(GTK_DOC_V_XREF_$(AM_DEFAULT_VERBOSITY)) +GTK_DOC_V_XREF=$(GTK_DOC_V_XREF_@AM_V@) +GTK_DOC_V_XREF_=$(GTK_DOC_V_XREF_@AM_DEFAULT_V@) GTK_DOC_V_XREF_0=@echo " DOC Fixing cross-references"; html-build.stamp: sgml.stamp $(DOC_MAIN_SGML_FILE) $(content_files) $(expand_content_files) @@ -190,20 +192,16 @@ cd html && gtkdoc-mkhtml $$mkhtml_options $(MKHTML_OPTIONS) $(DOC_MODULE) ../$(DOC_MAIN_SGML_FILE) -@test "x$(HTML_IMAGES)" = "x" || \ for file in $(HTML_IMAGES) ; do \ - if test -f $(abs_srcdir)/$$file ; then \ - cp $(abs_srcdir)/$$file $(abs_builddir)/html; \ - fi; \ - if test -f $(abs_builddir)/$$file ; then \ - cp $(abs_builddir)/$$file $(abs_builddir)/html; \ - fi; \ + test -f $(abs_srcdir)/$$file && cp $(abs_srcdir)/$$file $(abs_builddir)/html; \ + test -f $(abs_builddir)/$$file && cp $(abs_builddir)/$$file $(abs_builddir)/html; \ done; $(GTK_DOC_V_XREF)gtkdoc-fixxref --module=$(DOC_MODULE) --module-dir=html --html-dir=$(HTML_DIR) $(FIXXREF_OPTIONS) $(AM_V_at)touch html-build.stamp #### pdf #### -GTK_DOC_V_PDF=$(GTK_DOC_V_PDF_$(V)) -GTK_DOC_V_PDF_=$(GTK_DOC_V_PDF_$(AM_DEFAULT_VERBOSITY)) +GTK_DOC_V_PDF=$(GTK_DOC_V_PDF_@AM_V@) +GTK_DOC_V_PDF_=$(GTK_DOC_V_PDF_@AM_DEFAULT_V@) GTK_DOC_V_PDF_0=@echo " DOC Building PDF"; pdf-build.stamp: sgml.stamp $(DOC_MAIN_SGML_FILE) $(content_files) $(expand_content_files) diff -Nru libqmi-1.18.0/INSTALL libqmi-1.22.0/INSTALL --- libqmi-1.18.0/INSTALL 2017-03-22 12:20:25.000000000 +0100 +++ libqmi-1.22.0/INSTALL 2019-01-08 15:17:16.000000000 +0100 @@ -1,8 +1,8 @@ Installation Instructions ************************* -Copyright (C) 1994-1996, 1999-2002, 2004-2013 Free Software Foundation, -Inc. + Copyright (C) 1994-1996, 1999-2002, 2004-2016 Free Software +Foundation, Inc. Copying and distribution of this file, with or without modification, are permitted in any medium without royalty provided the copyright @@ -12,97 +12,96 @@ Basic Installation ================== - Briefly, the shell command `./configure && make && make install' + Briefly, the shell command './configure && make && make install' should configure, build, and install this package. The following -more-detailed instructions are generic; see the `README' file for +more-detailed instructions are generic; see the 'README' file for instructions specific to this package. Some packages provide this -`INSTALL' file but do not implement all of the features documented +'INSTALL' file but do not implement all of the features documented below. The lack of an optional feature in a given package is not necessarily a bug. More recommendations for GNU packages can be found in *note Makefile Conventions: (standards)Makefile Conventions. - The `configure' shell script attempts to guess correct values for + The 'configure' shell script attempts to guess correct values for various system-dependent variables used during compilation. It uses -those values to create a `Makefile' in each directory of the package. -It may also create one or more `.h' files containing system-dependent -definitions. Finally, it creates a shell script `config.status' that +those values to create a 'Makefile' in each directory of the package. +It may also create one or more '.h' files containing system-dependent +definitions. Finally, it creates a shell script 'config.status' that you can run in the future to recreate the current configuration, and a -file `config.log' containing compiler output (useful mainly for -debugging `configure'). +file 'config.log' containing compiler output (useful mainly for +debugging 'configure'). - It can also use an optional file (typically called `config.cache' -and enabled with `--cache-file=config.cache' or simply `-C') that saves -the results of its tests to speed up reconfiguring. Caching is -disabled by default to prevent problems with accidental use of stale -cache files. + It can also use an optional file (typically called 'config.cache' and +enabled with '--cache-file=config.cache' or simply '-C') that saves the +results of its tests to speed up reconfiguring. Caching is disabled by +default to prevent problems with accidental use of stale cache files. If you need to do unusual things to compile the package, please try -to figure out how `configure' could check whether to do them, and mail -diffs or instructions to the address given in the `README' so they can +to figure out how 'configure' could check whether to do them, and mail +diffs or instructions to the address given in the 'README' so they can be considered for the next release. If you are using the cache, and at -some point `config.cache' contains results you don't want to keep, you +some point 'config.cache' contains results you don't want to keep, you may remove or edit it. - The file `configure.ac' (or `configure.in') is used to create -`configure' by a program called `autoconf'. You need `configure.ac' if -you want to change it or regenerate `configure' using a newer version -of `autoconf'. + The file 'configure.ac' (or 'configure.in') is used to create +'configure' by a program called 'autoconf'. You need 'configure.ac' if +you want to change it or regenerate 'configure' using a newer version of +'autoconf'. The simplest way to compile this package is: - 1. `cd' to the directory containing the package's source code and type - `./configure' to configure the package for your system. + 1. 'cd' to the directory containing the package's source code and type + './configure' to configure the package for your system. - Running `configure' might take a while. While running, it prints + Running 'configure' might take a while. While running, it prints some messages telling which features it is checking for. - 2. Type `make' to compile the package. + 2. Type 'make' to compile the package. - 3. Optionally, type `make check' to run any self-tests that come with + 3. Optionally, type 'make check' to run any self-tests that come with the package, generally using the just-built uninstalled binaries. - 4. Type `make install' to install the programs and any data files and + 4. Type 'make install' to install the programs and any data files and documentation. When installing into a prefix owned by root, it is recommended that the package be configured and built as a regular - user, and only the `make install' phase executed with root + user, and only the 'make install' phase executed with root privileges. - 5. Optionally, type `make installcheck' to repeat any self-tests, but + 5. Optionally, type 'make installcheck' to repeat any self-tests, but this time using the binaries in their final installed location. This target does not install anything. Running this target as a - regular user, particularly if the prior `make install' required + regular user, particularly if the prior 'make install' required root privileges, verifies that the installation completed correctly. 6. You can remove the program binaries and object files from the - source code directory by typing `make clean'. To also remove the - files that `configure' created (so you can compile the package for - a different kind of computer), type `make distclean'. There is - also a `make maintainer-clean' target, but that is intended mainly + source code directory by typing 'make clean'. To also remove the + files that 'configure' created (so you can compile the package for + a different kind of computer), type 'make distclean'. There is + also a 'make maintainer-clean' target, but that is intended mainly for the package's developers. If you use it, you may have to get all sorts of other programs in order to regenerate files that came with the distribution. - 7. Often, you can also type `make uninstall' to remove the installed + 7. Often, you can also type 'make uninstall' to remove the installed files again. In practice, not all packages have tested that uninstallation works correctly, even though it is required by the GNU Coding Standards. - 8. Some packages, particularly those that use Automake, provide `make + 8. Some packages, particularly those that use Automake, provide 'make distcheck', which can by used by developers to test that all other - targets like `make install' and `make uninstall' work correctly. + targets like 'make install' and 'make uninstall' work correctly. This target is generally not run by end users. Compilers and Options ===================== Some systems require unusual options for compilation or linking that -the `configure' script does not know about. Run `./configure --help' +the 'configure' script does not know about. Run './configure --help' for details on some of the pertinent environment variables. - You can give `configure' initial values for configuration parameters -by setting variables in the command line or in the environment. Here -is an example: + You can give 'configure' initial values for configuration parameters +by setting variables in the command line or in the environment. Here is +an example: ./configure CC=c99 CFLAGS=-g LIBS=-lposix @@ -113,21 +112,21 @@ You can compile the package for more than one kind of computer at the same time, by placing the object files for each architecture in their -own directory. To do this, you can use GNU `make'. `cd' to the +own directory. To do this, you can use GNU 'make'. 'cd' to the directory where you want the object files and executables to go and run -the `configure' script. `configure' automatically checks for the -source code in the directory that `configure' is in and in `..'. This -is known as a "VPATH" build. +the 'configure' script. 'configure' automatically checks for the source +code in the directory that 'configure' is in and in '..'. This is known +as a "VPATH" build. - With a non-GNU `make', it is safer to compile the package for one + With a non-GNU 'make', it is safer to compile the package for one architecture at a time in the source code directory. After you have -installed the package for one architecture, use `make distclean' before +installed the package for one architecture, use 'make distclean' before reconfiguring for another architecture. On MacOS X 10.5 and later systems, you can create libraries and executables that work on multiple system types--known as "fat" or -"universal" binaries--by specifying multiple `-arch' options to the -compiler but only a single `-arch' option to the preprocessor. Like +"universal" binaries--by specifying multiple '-arch' options to the +compiler but only a single '-arch' option to the preprocessor. Like this: ./configure CC="gcc -arch i386 -arch x86_64 -arch ppc -arch ppc64" \ @@ -136,105 +135,104 @@ This is not guaranteed to produce working output in all cases, you may have to build one architecture at a time and combine the results -using the `lipo' tool if you have problems. +using the 'lipo' tool if you have problems. Installation Names ================== - By default, `make install' installs the package's commands under -`/usr/local/bin', include files under `/usr/local/include', etc. You -can specify an installation prefix other than `/usr/local' by giving -`configure' the option `--prefix=PREFIX', where PREFIX must be an + By default, 'make install' installs the package's commands under +'/usr/local/bin', include files under '/usr/local/include', etc. You +can specify an installation prefix other than '/usr/local' by giving +'configure' the option '--prefix=PREFIX', where PREFIX must be an absolute file name. You can specify separate installation prefixes for architecture-specific files and architecture-independent files. If you -pass the option `--exec-prefix=PREFIX' to `configure', the package uses +pass the option '--exec-prefix=PREFIX' to 'configure', the package uses PREFIX as the prefix for installing programs and libraries. Documentation and other data files still use the regular prefix. In addition, if you use an unusual directory layout you can give -options like `--bindir=DIR' to specify different values for particular -kinds of files. Run `configure --help' for a list of the directories -you can set and what kinds of files go in them. In general, the -default for these options is expressed in terms of `${prefix}', so that -specifying just `--prefix' will affect all of the other directory +options like '--bindir=DIR' to specify different values for particular +kinds of files. Run 'configure --help' for a list of the directories +you can set and what kinds of files go in them. In general, the default +for these options is expressed in terms of '${prefix}', so that +specifying just '--prefix' will affect all of the other directory specifications that were not explicitly provided. The most portable way to affect installation locations is to pass the -correct locations to `configure'; however, many packages provide one or +correct locations to 'configure'; however, many packages provide one or both of the following shortcuts of passing variable assignments to the -`make install' command line to change installation locations without +'make install' command line to change installation locations without having to reconfigure or recompile. The first method involves providing an override variable for each -affected directory. For example, `make install +affected directory. For example, 'make install prefix=/alternate/directory' will choose an alternate location for all directory configuration variables that were expressed in terms of -`${prefix}'. Any directories that were specified during `configure', -but not in terms of `${prefix}', must each be overridden at install -time for the entire installation to be relocated. The approach of -makefile variable overrides for each directory variable is required by -the GNU Coding Standards, and ideally causes no recompilation. -However, some platforms have known limitations with the semantics of -shared libraries that end up requiring recompilation when using this -method, particularly noticeable in packages that use GNU Libtool. - - The second method involves providing the `DESTDIR' variable. For -example, `make install DESTDIR=/alternate/directory' will prepend -`/alternate/directory' before all installation names. The approach of -`DESTDIR' overrides is not required by the GNU Coding Standards, and +'${prefix}'. Any directories that were specified during 'configure', +but not in terms of '${prefix}', must each be overridden at install time +for the entire installation to be relocated. The approach of makefile +variable overrides for each directory variable is required by the GNU +Coding Standards, and ideally causes no recompilation. However, some +platforms have known limitations with the semantics of shared libraries +that end up requiring recompilation when using this method, particularly +noticeable in packages that use GNU Libtool. + + The second method involves providing the 'DESTDIR' variable. For +example, 'make install DESTDIR=/alternate/directory' will prepend +'/alternate/directory' before all installation names. The approach of +'DESTDIR' overrides is not required by the GNU Coding Standards, and does not work on platforms that have drive letters. On the other hand, it does better at avoiding recompilation issues, and works well even -when some directory options were not specified in terms of `${prefix}' -at `configure' time. +when some directory options were not specified in terms of '${prefix}' +at 'configure' time. Optional Features ================= If the package supports it, you can cause programs to be installed -with an extra prefix or suffix on their names by giving `configure' the -option `--program-prefix=PREFIX' or `--program-suffix=SUFFIX'. +with an extra prefix or suffix on their names by giving 'configure' the +option '--program-prefix=PREFIX' or '--program-suffix=SUFFIX'. - Some packages pay attention to `--enable-FEATURE' options to -`configure', where FEATURE indicates an optional part of the package. -They may also pay attention to `--with-PACKAGE' options, where PACKAGE -is something like `gnu-as' or `x' (for the X Window System). The -`README' should mention any `--enable-' and `--with-' options that the + Some packages pay attention to '--enable-FEATURE' options to +'configure', where FEATURE indicates an optional part of the package. +They may also pay attention to '--with-PACKAGE' options, where PACKAGE +is something like 'gnu-as' or 'x' (for the X Window System). The +'README' should mention any '--enable-' and '--with-' options that the package recognizes. - For packages that use the X Window System, `configure' can usually + For packages that use the X Window System, 'configure' can usually find the X include and library files automatically, but if it doesn't, -you can use the `configure' options `--x-includes=DIR' and -`--x-libraries=DIR' to specify their locations. +you can use the 'configure' options '--x-includes=DIR' and +'--x-libraries=DIR' to specify their locations. Some packages offer the ability to configure how verbose the -execution of `make' will be. For these packages, running `./configure +execution of 'make' will be. For these packages, running './configure --enable-silent-rules' sets the default to minimal output, which can be -overridden with `make V=1'; while running `./configure +overridden with 'make V=1'; while running './configure --disable-silent-rules' sets the default to verbose, which can be -overridden with `make V=0'. +overridden with 'make V=0'. Particular systems ================== - On HP-UX, the default C compiler is not ANSI C compatible. If GNU -CC is not installed, it is recommended to use the following options in + On HP-UX, the default C compiler is not ANSI C compatible. If GNU CC +is not installed, it is recommended to use the following options in order to use an ANSI C compiler: ./configure CC="cc -Ae -D_XOPEN_SOURCE=500" and if that doesn't work, install pre-built binaries of GCC for HP-UX. - HP-UX `make' updates targets which have the same time stamps as -their prerequisites, which makes it generally unusable when shipped -generated files such as `configure' are involved. Use GNU `make' -instead. + HP-UX 'make' updates targets which have the same time stamps as their +prerequisites, which makes it generally unusable when shipped generated +files such as 'configure' are involved. Use GNU 'make' instead. On OSF/1 a.k.a. Tru64, some versions of the default C compiler cannot -parse its `' header file. The option `-nodtk' can be used as -a workaround. If GNU CC is not installed, it is therefore recommended -to try +parse its '' header file. The option '-nodtk' can be used as a +workaround. If GNU CC is not installed, it is therefore recommended to +try ./configure CC="cc" @@ -242,26 +240,26 @@ ./configure CC="cc -nodtk" - On Solaris, don't put `/usr/ucb' early in your `PATH'. This + On Solaris, don't put '/usr/ucb' early in your 'PATH'. This directory contains several dysfunctional programs; working variants of -these programs are available in `/usr/bin'. So, if you need `/usr/ucb' -in your `PATH', put it _after_ `/usr/bin'. +these programs are available in '/usr/bin'. So, if you need '/usr/ucb' +in your 'PATH', put it _after_ '/usr/bin'. - On Haiku, software installed for all users goes in `/boot/common', -not `/usr/local'. It is recommended to use the following options: + On Haiku, software installed for all users goes in '/boot/common', +not '/usr/local'. It is recommended to use the following options: ./configure --prefix=/boot/common Specifying the System Type ========================== - There may be some features `configure' cannot figure out + There may be some features 'configure' cannot figure out automatically, but needs to determine by the type of machine the package will run on. Usually, assuming the package is built to be run on the -_same_ architectures, `configure' can figure that out, but if it prints +_same_ architectures, 'configure' can figure that out, but if it prints a message saying it cannot guess the machine type, give it the -`--build=TYPE' option. TYPE can either be a short name for the system -type, such as `sun4', or a canonical name which has the form: +'--build=TYPE' option. TYPE can either be a short name for the system +type, such as 'sun4', or a canonical name which has the form: CPU-COMPANY-SYSTEM @@ -270,101 +268,101 @@ OS KERNEL-OS - See the file `config.sub' for the possible values of each field. If -`config.sub' isn't included in this package, then this package doesn't + See the file 'config.sub' for the possible values of each field. If +'config.sub' isn't included in this package, then this package doesn't need to know the machine type. If you are _building_ compiler tools for cross-compiling, you should -use the option `--target=TYPE' to select the type of system they will +use the option '--target=TYPE' to select the type of system they will produce code for. If you want to _use_ a cross compiler, that generates code for a platform different from the build platform, you should specify the "host" platform (i.e., that on which the generated programs will -eventually be run) with `--host=TYPE'. +eventually be run) with '--host=TYPE'. Sharing Defaults ================ - If you want to set default values for `configure' scripts to share, -you can create a site shell script called `config.site' that gives -default values for variables like `CC', `cache_file', and `prefix'. -`configure' looks for `PREFIX/share/config.site' if it exists, then -`PREFIX/etc/config.site' if it exists. Or, you can set the -`CONFIG_SITE' environment variable to the location of the site script. -A warning: not all `configure' scripts look for a site script. + If you want to set default values for 'configure' scripts to share, +you can create a site shell script called 'config.site' that gives +default values for variables like 'CC', 'cache_file', and 'prefix'. +'configure' looks for 'PREFIX/share/config.site' if it exists, then +'PREFIX/etc/config.site' if it exists. Or, you can set the +'CONFIG_SITE' environment variable to the location of the site script. +A warning: not all 'configure' scripts look for a site script. Defining Variables ================== Variables not defined in a site shell script can be set in the -environment passed to `configure'. However, some packages may run +environment passed to 'configure'. However, some packages may run configure again during the build, and the customized values of these variables may be lost. In order to avoid this problem, you should set -them in the `configure' command line, using `VAR=value'. For example: +them in the 'configure' command line, using 'VAR=value'. For example: ./configure CC=/usr/local2/bin/gcc -causes the specified `gcc' to be used as the C compiler (unless it is +causes the specified 'gcc' to be used as the C compiler (unless it is overridden in the site shell script). -Unfortunately, this technique does not work for `CONFIG_SHELL' due to -an Autoconf limitation. Until the limitation is lifted, you can use -this workaround: +Unfortunately, this technique does not work for 'CONFIG_SHELL' due to an +Autoconf limitation. Until the limitation is lifted, you can use this +workaround: CONFIG_SHELL=/bin/bash ./configure CONFIG_SHELL=/bin/bash -`configure' Invocation +'configure' Invocation ====================== - `configure' recognizes the following options to control how it + 'configure' recognizes the following options to control how it operates. -`--help' -`-h' - Print a summary of all of the options to `configure', and exit. +'--help' +'-h' + Print a summary of all of the options to 'configure', and exit. -`--help=short' -`--help=recursive' +'--help=short' +'--help=recursive' Print a summary of the options unique to this package's - `configure', and exit. The `short' variant lists options used - only in the top level, while the `recursive' variant lists options - also present in any nested packages. - -`--version' -`-V' - Print the version of Autoconf used to generate the `configure' + 'configure', and exit. The 'short' variant lists options used only + in the top level, while the 'recursive' variant lists options also + present in any nested packages. + +'--version' +'-V' + Print the version of Autoconf used to generate the 'configure' script, and exit. -`--cache-file=FILE' +'--cache-file=FILE' Enable the cache: use and save the results of the tests in FILE, - traditionally `config.cache'. FILE defaults to `/dev/null' to + traditionally 'config.cache'. FILE defaults to '/dev/null' to disable caching. -`--config-cache' -`-C' - Alias for `--cache-file=config.cache'. - -`--quiet' -`--silent' -`-q' +'--config-cache' +'-C' + Alias for '--cache-file=config.cache'. + +'--quiet' +'--silent' +'-q' Do not print messages saying which checks are being made. To - suppress all normal output, redirect it to `/dev/null' (any error + suppress all normal output, redirect it to '/dev/null' (any error messages will still be shown). -`--srcdir=DIR' +'--srcdir=DIR' Look for the package's source code in directory DIR. Usually - `configure' can determine that directory automatically. + 'configure' can determine that directory automatically. -`--prefix=DIR' - Use DIR as the installation prefix. *note Installation Names:: - for more details, including other options available for fine-tuning - the installation locations. +'--prefix=DIR' + Use DIR as the installation prefix. *note Installation Names:: for + more details, including other options available for fine-tuning the + installation locations. -`--no-create' -`-n' +'--no-create' +'-n' Run the configure checks, but stop before creating any output files. -`configure' also accepts some other, not widely useful, options. Run -`configure --help' for more details. +'configure' also accepts some other, not widely useful, options. Run +'configure --help' for more details. diff -Nru libqmi-1.18.0/install-sh libqmi-1.22.0/install-sh --- libqmi-1.18.0/install-sh 2017-03-22 12:20:25.000000000 +0100 +++ libqmi-1.22.0/install-sh 2019-01-08 15:17:16.000000000 +0100 @@ -1,7 +1,7 @@ #!/bin/sh # install - install a program, script, or datafile -scriptversion=2013-12-25.23; # UTC +scriptversion=2018-03-11.20; # UTC # This originates from X11R5 (mit/util/scripts/install.sh), which was # later released in X11R6 (xc/config/util/install.sh) with the @@ -271,15 +271,18 @@ fi dst=$dst_arg - # If destination is a directory, append the input filename; won't work - # if double slashes aren't ignored. + # If destination is a directory, append the input filename. if test -d "$dst"; then if test "$is_target_a_directory" = never; then echo "$0: $dst_arg: Is a directory" >&2 exit 1 fi dstdir=$dst - dst=$dstdir/`basename "$src"` + dstbase=`basename "$src"` + case $dst in + */) dst=$dst$dstbase;; + *) dst=$dst/$dstbase;; + esac dstdir_status=0 else dstdir=`dirname "$dst"` @@ -288,6 +291,11 @@ fi fi + case $dstdir in + */) dstdirslash=$dstdir;; + *) dstdirslash=$dstdir/;; + esac + obsolete_mkdir_used=false if test $dstdir_status != 0; then @@ -324,34 +332,43 @@ # is incompatible with FreeBSD 'install' when (umask & 300) != 0. ;; *) + # Note that $RANDOM variable is not portable (e.g. dash); Use it + # here however when possible just to lower collision chance. tmpdir=${TMPDIR-/tmp}/ins$RANDOM-$$ - trap 'ret=$?; rmdir "$tmpdir/d" "$tmpdir" 2>/dev/null; exit $ret' 0 + trap 'ret=$?; rmdir "$tmpdir/a/b" "$tmpdir/a" "$tmpdir" 2>/dev/null; exit $ret' 0 + + # Because "mkdir -p" follows existing symlinks and we likely work + # directly in world-writeable /tmp, make sure that the '$tmpdir' + # directory is successfully created first before we actually test + # 'mkdir -p' feature. if (umask $mkdir_umask && - exec $mkdirprog $mkdir_mode -p -- "$tmpdir/d") >/dev/null 2>&1 + $mkdirprog $mkdir_mode "$tmpdir" && + exec $mkdirprog $mkdir_mode -p -- "$tmpdir/a/b") >/dev/null 2>&1 then if test -z "$dir_arg" || { # Check for POSIX incompatibilities with -m. # HP-UX 11.23 and IRIX 6.5 mkdir -m -p sets group- or # other-writable bit of parent directory when it shouldn't. # FreeBSD 6.1 mkdir -m -p sets mode of existing directory. - ls_ld_tmpdir=`ls -ld "$tmpdir"` + test_tmpdir="$tmpdir/a" + ls_ld_tmpdir=`ls -ld "$test_tmpdir"` case $ls_ld_tmpdir in d????-?r-*) different_mode=700;; d????-?--*) different_mode=755;; *) false;; esac && - $mkdirprog -m$different_mode -p -- "$tmpdir" && { - ls_ld_tmpdir_1=`ls -ld "$tmpdir"` + $mkdirprog -m$different_mode -p -- "$test_tmpdir" && { + ls_ld_tmpdir_1=`ls -ld "$test_tmpdir"` test "$ls_ld_tmpdir" = "$ls_ld_tmpdir_1" } } then posix_mkdir=: fi - rmdir "$tmpdir/d" "$tmpdir" + rmdir "$tmpdir/a/b" "$tmpdir/a" "$tmpdir" else # Remove any dirs left behind by ancient mkdir implementations. - rmdir ./$mkdir_mode ./-p ./-- 2>/dev/null + rmdir ./$mkdir_mode ./-p ./-- "$tmpdir" 2>/dev/null fi trap '' 0;; esac;; @@ -427,8 +444,8 @@ else # Make a couple of temp file names in the proper directory. - dsttmp=$dstdir/_inst.$$_ - rmtmp=$dstdir/_rm.$$_ + dsttmp=${dstdirslash}_inst.$$_ + rmtmp=${dstdirslash}_rm.$$_ # Trap to clean up those temp files at exit. trap 'ret=$?; rm -f "$dsttmp" "$rmtmp" && exit $ret' 0 @@ -493,9 +510,9 @@ done # Local variables: -# eval: (add-hook 'write-file-hooks 'time-stamp) +# eval: (add-hook 'before-save-hook 'time-stamp) # time-stamp-start: "scriptversion=" # time-stamp-format: "%:y-%02m-%02d.%02H" -# time-stamp-time-zone: "UTC" +# time-stamp-time-zone: "UTC0" # time-stamp-end: "; # UTC" # End: diff -Nru libqmi-1.18.0/ltmain.sh libqmi-1.22.0/ltmain.sh --- libqmi-1.18.0/ltmain.sh 2017-03-22 12:20:17.000000000 +0100 +++ libqmi-1.22.0/ltmain.sh 2019-01-08 15:17:11.000000000 +0100 @@ -1,12 +1,12 @@ #! /bin/sh ## DO NOT EDIT - This file generated from ./build-aux/ltmain.in -## by inline-source v2014-01-03.01 +## by inline-source v2018-07-24.06 -# libtool (GNU libtool) 2.4.6 +# libtool (GNU libtool) 2.4.6.42-b88ce # Provide generalized library-building support services. # Written by Gordon Matzigkeit , 1996 -# Copyright (C) 1996-2015 Free Software Foundation, Inc. +# Copyright (C) 1996-2018 Free Software Foundation, Inc. # This is free software; see the source for copying conditions. There is NO # warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. @@ -31,8 +31,8 @@ PROGRAM=libtool PACKAGE=libtool -VERSION=2.4.6 -package_revision=2.4.6 +VERSION=2.4.6.42-b88ce +package_revision=2.4.6.42 ## ------ ## @@ -64,34 +64,25 @@ # libraries, which are installed to $pkgauxdir. # Set a version string for this script. -scriptversion=2015-01-20.17; # UTC +scriptversion=2018-07-24.06; # UTC # General shell script boiler plate, and helper functions. # Written by Gary V. Vaughan, 2004 -# Copyright (C) 2004-2015 Free Software Foundation, Inc. -# This is free software; see the source for copying conditions. There is NO -# warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. - -# This program is free software; you can redistribute it and/or modify -# it under the terms of the GNU General Public License as published by -# the Free Software Foundation; either version 3 of the License, or -# (at your option) any later version. - -# As a special exception to the GNU General Public License, if you distribute -# this file as part of a program or library that is built using GNU Libtool, -# you may include this file under the same distribution terms that you use -# for the rest of that program. - -# This program is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNES FOR A PARTICULAR PURPOSE. See the GNU -# General Public License for more details. - -# You should have received a copy of the GNU General Public License -# along with this program. If not, see . +# This is free software. There is NO warranty; not even for +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. +# +# Copyright (C) 2004-2018 Bootstrap Authors +# +# This file is dual licensed under the terms of the MIT license +# , and GPL version 3 or later +# . You must apply one of +# these licenses when using or redistributing this software or any of +# the files within it. See the URLs above, or the file `LICENSE` +# included in the Bootstrap distribution for the full license texts. -# Please report bugs or propose patches to gary@gnu.org. +# Please report bugs or propose patches to: +# ## ------ ## @@ -140,9 +131,6 @@ fi" done -# CDPATH. -(unset CDPATH) >/dev/null 2>&1 && unset CDPATH - # Make sure IFS has a sensible default sp=' ' nl=' @@ -159,6 +147,26 @@ fi +# func_unset VAR +# -------------- +# Portably unset VAR. +# In some shells, an 'unset VAR' statement leaves a non-zero return +# status if VAR is already unset, which might be problematic if the +# statement is used at the end of a function (thus poisoning its return +# value) or when 'set -e' is active (causing even a spurious abort of +# the script in this case). +func_unset () +{ + { eval $1=; (eval unset $1) >/dev/null 2>&1 && eval unset $1 || : ; } +} + + +# Make sure CDPATH doesn't cause `cd` commands to output the target dir. +func_unset CDPATH + +# Make sure ${,E,F}GREP behave sanely. +func_unset GREP_OPTIONS + ## ------------------------- ## ## Locate command utilities. ## @@ -259,7 +267,7 @@ rm -f conftest.in conftest.tmp conftest.nl conftest.out } - func_path_progs "sed gsed" func_check_prog_sed $PATH:/usr/xpg4/bin + func_path_progs "sed gsed" func_check_prog_sed "$PATH:/usr/xpg4/bin" rm -f conftest.sed SED=$func_path_progs_result } @@ -295,7 +303,7 @@ rm -f conftest.in conftest.tmp conftest.nl conftest.out } - func_path_progs "grep ggrep" func_check_prog_grep $PATH:/usr/xpg4/bin + func_path_progs "grep ggrep" func_check_prog_grep "$PATH:/usr/xpg4/bin" GREP=$func_path_progs_result } @@ -580,16 +588,16 @@ { $debug_cmd - func_quote_for_eval "$2" - eval "$1+=\\ \$func_quote_for_eval_result" + func_quote_arg pretty "$2" + eval "$1+=\\ \$func_quote_arg_result" }' else func_append_quoted () { $debug_cmd - func_quote_for_eval "$2" - eval "$1=\$$1\\ \$func_quote_for_eval_result" + func_quote_arg pretty "$2" + eval "$1=\$$1\\ \$func_quote_arg_result" } fi @@ -1091,85 +1099,199 @@ } -# func_quote_for_eval ARG... -# -------------------------- -# Aesthetically quote ARGs to be evaled later. -# This function returns two values: -# i) func_quote_for_eval_result -# double-quoted, suitable for a subsequent eval -# ii) func_quote_for_eval_unquoted_result -# has all characters that are still active within double -# quotes backslashified. -func_quote_for_eval () +# func_quote_portable EVAL ARG +# ---------------------------- +# Internal function to portably implement func_quote_arg. Note that we still +# keep attention to performance here so we as much as possible try to avoid +# calling sed binary (so far O(N) complexity as long as func_append is O(1)). +func_quote_portable () { $debug_cmd - func_quote_for_eval_unquoted_result= - func_quote_for_eval_result= - while test 0 -lt $#; do - case $1 in - *[\\\`\"\$]*) - _G_unquoted_arg=`printf '%s\n' "$1" |$SED "$sed_quote_subst"` ;; - *) - _G_unquoted_arg=$1 ;; - esac - if test -n "$func_quote_for_eval_unquoted_result"; then - func_append func_quote_for_eval_unquoted_result " $_G_unquoted_arg" - else - func_append func_quote_for_eval_unquoted_result "$_G_unquoted_arg" + func_quote_portable_result=$2 + + # one-time-loop (easy break) + while true + do + if $1; then + func_quote_portable_result=`$ECHO "$2" | $SED \ + -e "$sed_double_quote_subst" -e "$sed_double_backslash"` + break fi - case $_G_unquoted_arg in - # Double-quote args containing shell metacharacters to delay - # word splitting, command substitution and variable expansion - # for a subsequent eval. - # Many Bourne shells cannot handle close brackets correctly - # in scan sets, so we specify it separately. - *[\[\~\#\^\&\*\(\)\{\}\|\;\<\>\?\'\ \ ]*|*]*|"") - _G_quoted_arg=\"$_G_unquoted_arg\" + # Quote for eval. + case $func_quote_portable_result in + *[\\\`\"\$]*) + case $func_quote_portable_result in + *[\[\*\?]*) + func_quote_portable_result=`$ECHO "$func_quote_portable_result" \ + | $SED "$sed_quote_subst"` + break + ;; + esac + + func_quote_portable_old_IFS=$IFS + for _G_char in '\' '`' '"' '$' + do + # STATE($1) PREV($2) SEPARATOR($3) + set start "" "" + func_quote_portable_result=dummy"$_G_char$func_quote_portable_result$_G_char"dummy + IFS=$_G_char + for _G_part in $func_quote_portable_result + do + case $1 in + quote) + func_append func_quote_portable_result "$3$2" + set quote "$_G_part" "\\$_G_char" + ;; + start) + set first "" "" + func_quote_portable_result= + ;; + first) + set quote "$_G_part" "" + ;; + esac + done + done + IFS=$func_quote_portable_old_IFS ;; - *) - _G_quoted_arg=$_G_unquoted_arg - ;; + *) ;; esac - - if test -n "$func_quote_for_eval_result"; then - func_append func_quote_for_eval_result " $_G_quoted_arg" - else - func_append func_quote_for_eval_result "$_G_quoted_arg" - fi - shift + break done + + func_quote_portable_unquoted_result=$func_quote_portable_result + case $func_quote_portable_result in + # double-quote args containing shell metacharacters to delay + # word splitting, command substitution and variable expansion + # for a subsequent eval. + # many bourne shells cannot handle close brackets correctly + # in scan sets, so we specify it separately. + *[\[\~\#\^\&\*\(\)\{\}\|\;\<\>\?\'\ \ ]*|*]*|"") + func_quote_portable_result=\"$func_quote_portable_result\" + ;; + esac } -# func_quote_for_expand ARG -# ------------------------- -# Aesthetically quote ARG to be evaled later; same as above, -# but do not quote variable references. -func_quote_for_expand () -{ - $debug_cmd +# func_quotefast_eval ARG +# ----------------------- +# Quote one ARG (internal). This is equivalent to 'func_quote_arg eval ARG', +# but optimized for speed. Result is stored in $func_quotefast_eval. +if test xyes = `(x=; printf -v x %q yes; echo x"$x") 2>/dev/null`; then + printf -v _GL_test_printf_tilde %q '~' + if test '\~' = "$_GL_test_printf_tilde"; then + func_quotefast_eval () + { + printf -v func_quotefast_eval_result %q "$1" + } + else + # Broken older Bash implementations. Make those faster too if possible. + func_quotefast_eval () + { + case $1 in + '~'*) + func_quote_portable false "$1" + func_quotefast_eval_result=$func_quote_portable_result + ;; + *) + printf -v func_quotefast_eval_result %q "$1" + ;; + esac + } + fi +else + func_quotefast_eval () + { + func_quote_portable false "$1" + func_quotefast_eval_result=$func_quote_portable_result + } +fi - case $1 in - *[\\\`\"]*) - _G_arg=`$ECHO "$1" | $SED \ - -e "$sed_double_quote_subst" -e "$sed_double_backslash"` ;; - *) - _G_arg=$1 ;; + +# func_quote_arg MODEs ARG +# ------------------------ +# Quote one ARG to be evaled later. MODEs argument may contain zero or more +# specifiers listed below separated by ',' character. This function returns two +# values: +# i) func_quote_arg_result +# double-quoted (when needed), suitable for a subsequent eval +# ii) func_quote_arg_unquoted_result +# has all characters that are still active within double +# quotes backslashified. Available only if 'unquoted' is specified. +# +# Available modes: +# ---------------- +# 'eval' (default) +# - escape shell special characters +# 'expand' +# - the same as 'eval'; but do not quote variable references +# 'pretty' +# - request aesthetic output, i.e. '"a b"' instead of 'a\ b'. This might +# be used later in func_quote to get output like: 'echo "a b"' instead +# of 'echo a\ b'. This is slower than default on some shells. +# 'unquoted' +# - produce also $func_quote_arg_unquoted_result which does not contain +# wrapping double-quotes. +# +# Examples for 'func_quote_arg pretty,unquoted string': +# +# string | *_result | *_unquoted_result +# ------------+-----------------------+------------------- +# " | \" | \" +# a b | "a b" | a b +# "a b" | "\"a b\"" | \"a b\" +# * | "*" | * +# z="${x-$y}" | "z=\"\${x-\$y}\"" | z=\"\${x-\$y}\" +# +# Examples for 'func_quote_arg pretty,unquoted,expand string': +# +# string | *_result | *_unquoted_result +# --------------+---------------------+-------------------- +# z="${x-$y}" | "z=\"${x-$y}\"" | z=\"${x-$y}\" +func_quote_arg () +{ + _G_quote_expand=false + case ,$1, in + *,expand,*) + _G_quote_expand=: + ;; esac - case $_G_arg in - # Double-quote args containing shell metacharacters to delay - # word splitting and command substitution for a subsequent eval. - # Many Bourne shells cannot handle close brackets correctly - # in scan sets, so we specify it separately. - *[\[\~\#\^\&\*\(\)\{\}\|\;\<\>\?\'\ \ ]*|*]*|"") - _G_arg=\"$_G_arg\" + case ,$1, in + *,pretty,*|*,expand,*|*,unquoted,*) + func_quote_portable $_G_quote_expand "$2" + func_quote_arg_result=$func_quote_portable_result + func_quote_arg_unquoted_result=$func_quote_portable_unquoted_result + ;; + *) + # Faster quote-for-eval for some shells. + func_quotefast_eval "$2" + func_quote_arg_result=$func_quotefast_eval_result ;; esac +} + - func_quote_for_expand_result=$_G_arg +# func_quote MODEs ARGs... +# ------------------------ +# Quote all ARGs to be evaled later and join them into single command. See +# func_quote_arg's description for more info. +func_quote () +{ + $debug_cmd + _G_func_quote_mode=$1 ; shift + func_quote_result= + while test 0 -lt $#; do + func_quote_arg "$_G_func_quote_mode" "$1" + if test -n "$func_quote_result"; then + func_append func_quote_result " $func_quote_arg_result" + else + func_append func_quote_result "$func_quote_arg_result" + fi + shift + done } @@ -1215,8 +1337,8 @@ _G_cmd=$1 _G_fail_exp=${2-':'} - func_quote_for_expand "$_G_cmd" - eval "func_notquiet $func_quote_for_expand_result" + func_quote_arg pretty,expand "$_G_cmd" + eval "func_notquiet $func_quote_arg_result" $opt_dry_run || { eval "$_G_cmd" @@ -1241,8 +1363,8 @@ _G_fail_exp=${2-':'} $opt_quiet || { - func_quote_for_expand "$_G_cmd" - eval "func_echo $func_quote_for_expand_result" + func_quote_arg expand,pretty "$_G_cmd" + eval "func_echo $func_quote_arg_result" } $opt_dry_run || { @@ -1369,30 +1491,26 @@ # End: #! /bin/sh -# Set a version string for this script. -scriptversion=2014-01-07.03; # UTC - # A portable, pluggable option parser for Bourne shell. # Written by Gary V. Vaughan, 2010 -# Copyright (C) 2010-2015 Free Software Foundation, Inc. -# This is free software; see the source for copying conditions. There is NO -# warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. - -# This program is free software: you can redistribute it and/or modify -# it under the terms of the GNU General Public License as published by -# the Free Software Foundation, either version 3 of the License, or -# (at your option) any later version. - -# This program is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -# GNU General Public License for more details. +# This is free software. There is NO warranty; not even for +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. +# +# Copyright (C) 2010-2018 Bootstrap Authors +# +# This file is dual licensed under the terms of the MIT license +# , and GPL version 3 or later +# . You must apply one of +# these licenses when using or redistributing this software or any of +# the files within it. See the URLs above, or the file `LICENSE` +# included in the Bootstrap distribution for the full license texts. -# You should have received a copy of the GNU General Public License -# along with this program. If not, see . +# Please report bugs or propose patches to: +# -# Please report bugs or propose patches to gary@gnu.org. +# Set a version string for this script. +scriptversion=2018-07-24.06; # UTC ## ------ ## @@ -1415,7 +1533,7 @@ # # In order for the '--version' option to work, you will need to have a # suitably formatted comment like the one at the top of this file -# starting with '# Written by ' and ending with '# warranty; '. +# starting with '# Written by ' and ending with '# Copyright'. # # For '-h' and '--help' to work, you will also need a one line # description of your script's purpose in a comment directly above the @@ -1427,7 +1545,7 @@ # to display verbose messages only when your user has specified # '--verbose'. # -# After sourcing this file, you can plug processing for additional +# After sourcing this file, you can plug in processing for additional # options by amending the variables from the 'Configuration' section # below, and following the instructions in the 'Option parsing' # section further down. @@ -1476,8 +1594,8 @@ ## ------------------------- ## # This section contains functions for adding, removing, and running hooks -# to the main code. A hook is just a named list of of function, that can -# be run in order later on. +# in the main code. A hook is just a list of function names that can be +# run in order later on. # func_hookable FUNC_NAME # ----------------------- @@ -1510,7 +1628,8 @@ # func_remove_hook FUNC_NAME HOOK_FUNC # ------------------------------------ -# Remove HOOK_FUNC from the list of functions called by FUNC_NAME. +# Remove HOOK_FUNC from the list of hook functions to be called by +# FUNC_NAME. func_remove_hook () { $debug_cmd @@ -1519,10 +1638,28 @@ } +# func_propagate_result FUNC_NAME_A FUNC_NAME_B +# --------------------------------------------- +# If the *_result variable of FUNC_NAME_A _is set_, assign its value to +# *_result variable of FUNC_NAME_B. +func_propagate_result () +{ + $debug_cmd + + func_propagate_result_result=: + if eval "test \"\${${1}_result+set}\" = set" + then + eval "${2}_result=\$${1}_result" + else + func_propagate_result_result=false + fi +} + + # func_run_hooks FUNC_NAME [ARG]... # --------------------------------- # Run all hook functions registered to FUNC_NAME. -# It is assumed that the list of hook functions contains nothing more +# It's assumed that the list of hook functions contains nothing more # than a whitespace-delimited list of legal shell function names, and # no effort is wasted trying to catch shell meta-characters or preserve # whitespace. @@ -1532,22 +1669,19 @@ case " $hookable_fns " in *" $1 "*) ;; - *) func_fatal_error "'$1' does not support hook funcions.n" ;; + *) func_fatal_error "'$1' does not support hook functions." ;; esac eval _G_hook_fns=\$$1_hooks; shift for _G_hook in $_G_hook_fns; do - eval $_G_hook '"$@"' - - # store returned options list back into positional - # parameters for next 'cmd' execution. - eval _G_hook_result=\$${_G_hook}_result - eval set dummy "$_G_hook_result"; shift + func_unset "${_G_hook}_result" + eval $_G_hook '${1+"$@"}' + func_propagate_result $_G_hook func_run_hooks + if $func_propagate_result_result; then + eval set dummy "$func_run_hooks_result"; shift + fi done - - func_quote_for_eval ${1+"$@"} - func_run_hooks_result=$func_quote_for_eval_result } @@ -1557,10 +1691,18 @@ ## --------------- ## # In order to add your own option parsing hooks, you must accept the -# full positional parameter list in your hook function, remove any -# options that you action, and then pass back the remaining unprocessed -# options in '_result', escaped suitably for -# 'eval'. Like this: +# full positional parameter list from your hook function. You may remove +# or edit any options that you action, and then pass back the remaining +# unprocessed options in '_result', escaped +# suitably for 'eval'. +# +# The '_result' variable is automatically unset +# before your hook gets called; for best performance, only set the +# *_result variable when necessary (i.e. don't call the 'func_quote' +# function unnecessarily because it can be an expensive operation on some +# machines). +# +# Like this: # # my_options_prep () # { @@ -1570,9 +1712,8 @@ # usage_message=$usage_message' # -s, --silent don'\''t print informational messages # ' -# -# func_quote_for_eval ${1+"$@"} -# my_options_prep_result=$func_quote_for_eval_result +# # No change in '$@' (ignored completely by this hook). Leave +# # my_options_prep_result variable intact. # } # func_add_hook func_options_prep my_options_prep # @@ -1581,25 +1722,36 @@ # { # $debug_cmd # -# # Note that for efficiency, we parse as many options as we can +# args_changed=false +# +# # Note that, for efficiency, we parse as many options as we can # # recognise in a loop before passing the remainder back to the # # caller on the first unrecognised argument we encounter. # while test $# -gt 0; do # opt=$1; shift # case $opt in -# --silent|-s) opt_silent=: ;; +# --silent|-s) opt_silent=: +# args_changed=: +# ;; # # Separate non-argument short options: # -s*) func_split_short_opt "$_G_opt" # set dummy "$func_split_short_opt_name" \ # "-$func_split_short_opt_arg" ${1+"$@"} # shift +# args_changed=: # ;; -# *) set dummy "$_G_opt" "$*"; shift; break ;; +# *) # Make sure the first unrecognised option "$_G_opt" +# # is added back to "$@" in case we need it later, +# # if $args_changed was set to 'true'. +# set dummy "$_G_opt" ${1+"$@"}; shift; break ;; # esac # done # -# func_quote_for_eval ${1+"$@"} -# my_silent_option_result=$func_quote_for_eval_result +# # Only call 'func_quote' here if we processed at least one argument. +# if $args_changed; then +# func_quote eval ${1+"$@"} +# my_silent_option_result=$func_quote_result +# fi # } # func_add_hook func_parse_options my_silent_option # @@ -1610,17 +1762,26 @@ # # $opt_silent && $opt_verbose && func_fatal_help "\ # '--silent' and '--verbose' options are mutually exclusive." -# -# func_quote_for_eval ${1+"$@"} -# my_option_validation_result=$func_quote_for_eval_result # } # func_add_hook func_validate_options my_option_validation # -# You'll alse need to manually amend $usage_message to reflect the extra +# You'll also need to manually amend $usage_message to reflect the extra # options you parse. It's preferable to append if you can, so that # multiple option parsing hooks can be added safely. +# func_options_finish [ARG]... +# ---------------------------- +# Finishing the option parse loop (call 'func_options' hooks ATM). +func_options_finish () +{ + $debug_cmd + + func_run_hooks func_options ${1+"$@"} + func_propagate_result func_run_hooks func_options_finish +} + + # func_options [ARG]... # --------------------- # All the functions called inside func_options are hookable. See the @@ -1630,17 +1791,27 @@ { $debug_cmd - func_options_prep ${1+"$@"} - eval func_parse_options \ - ${func_options_prep_result+"$func_options_prep_result"} - eval func_validate_options \ - ${func_parse_options_result+"$func_parse_options_result"} + _G_options_quoted=false - eval func_run_hooks func_options \ - ${func_validate_options_result+"$func_validate_options_result"} + for my_func in options_prep parse_options validate_options options_finish + do + func_unset func_${my_func}_result + func_unset func_run_hooks_result + eval func_$my_func '${1+"$@"}' + func_propagate_result func_$my_func func_options + if $func_propagate_result_result; then + eval set dummy "$func_options_result"; shift + _G_options_quoted=: + fi + done - # save modified positional parameters for caller - func_options_result=$func_run_hooks_result + $_G_options_quoted || { + # As we (func_options) are top-level options-parser function and + # nobody quoted "$@" for us yet, we need to do it explicitly for + # caller. + func_quote eval ${1+"$@"} + func_options_result=$func_quote_result + } } @@ -1649,9 +1820,8 @@ # All initialisations required before starting the option parse loop. # Note that when calling hook functions, we pass through the list of # positional parameters. If a hook function modifies that list, and -# needs to propogate that back to rest of this script, then the complete -# modified list must be put in 'func_run_hooks_result' before -# returning. +# needs to propagate that back to rest of this script, then the complete +# modified list must be put in 'func_run_hooks_result' before returning. func_hookable func_options_prep func_options_prep () { @@ -1662,9 +1832,7 @@ opt_warning_types= func_run_hooks func_options_prep ${1+"$@"} - - # save modified positional parameters for caller - func_options_prep_result=$func_run_hooks_result + func_propagate_result func_run_hooks func_options_prep } @@ -1676,25 +1844,32 @@ { $debug_cmd - func_parse_options_result= - + _G_parse_options_requote=false # this just eases exit handling while test $# -gt 0; do # Defer to hook functions for initial option parsing, so they # get priority in the event of reusing an option name. func_run_hooks func_parse_options ${1+"$@"} - - # Adjust func_parse_options positional parameters to match - eval set dummy "$func_run_hooks_result"; shift + func_propagate_result func_run_hooks func_parse_options + if $func_propagate_result_result; then + eval set dummy "$func_parse_options_result"; shift + # Even though we may have changed "$@", we passed the "$@" array + # down into the hook and it quoted it for us (because we are in + # this if-branch). No need to quote it again. + _G_parse_options_requote=false + fi # Break out of the loop if we already parsed every option. test $# -gt 0 || break + # We expect that one of the options parsed in this function matches + # and thus we remove _G_opt from "$@" and need to re-quote. + _G_match_parse_options=: _G_opt=$1 shift case $_G_opt in --debug|-x) debug_cmd='set -x' - func_echo "enabling shell trace mode" + func_echo "enabling shell trace mode" >&2 $debug_cmd ;; @@ -1704,7 +1879,10 @@ ;; --warnings|--warning|-W) - test $# = 0 && func_missing_arg $_G_opt && break + if test $# = 0 && func_missing_arg $_G_opt; then + _G_parse_options_requote=: + break + fi case " $warning_categories $1" in *" $1 "*) # trailing space prevents matching last $1 above @@ -1757,15 +1935,24 @@ shift ;; - --) break ;; + --) _G_parse_options_requote=: ; break ;; -*) func_fatal_help "unrecognised option: '$_G_opt'" ;; - *) set dummy "$_G_opt" ${1+"$@"}; shift; break ;; + *) set dummy "$_G_opt" ${1+"$@"}; shift + _G_match_parse_options=false + break + ;; esac + + if $_G_match_parse_options; then + _G_parse_options_requote=: + fi done - # save modified positional parameters for caller - func_quote_for_eval ${1+"$@"} - func_parse_options_result=$func_quote_for_eval_result + if $_G_parse_options_requote; then + # save modified positional parameters for caller + func_quote eval ${1+"$@"} + func_parse_options_result=$func_quote_result + fi } @@ -1782,12 +1969,10 @@ test -n "$opt_warning_types" || opt_warning_types=" $warning_categories" func_run_hooks func_validate_options ${1+"$@"} + func_propagate_result func_run_hooks func_validate_options # Bail if the options were screwed! $exit_cmd $EXIT_FAILURE - - # save modified positional parameters for caller - func_validate_options_result=$func_run_hooks_result } @@ -1843,8 +2028,8 @@ # func_split_equals STRING # ------------------------ -# Set func_split_equals_lhs and func_split_equals_rhs shell variables after -# splitting STRING at the '=' sign. +# Set func_split_equals_lhs and func_split_equals_rhs shell variables +# after splitting STRING at the '=' sign. test -z "$_G_HAVE_XSI_OPS" \ && (eval 'x=a/b/c; test 5aa/bb/cc = "${#x}${x%%/*}${x%/*}${x#*/}${x##*/}"') 2>/dev/null \ @@ -1859,8 +2044,9 @@ func_split_equals_lhs=${1%%=*} func_split_equals_rhs=${1#*=} - test "x$func_split_equals_lhs" = "x$1" \ - && func_split_equals_rhs= + if test "x$func_split_equals_lhs" = "x$1"; then + func_split_equals_rhs= + fi }' else # ...otherwise fall back to using expr, which is often a shell builtin. @@ -1938,31 +2124,44 @@ # func_version # ------------ # Echo version message to standard output and exit. +# The version message is extracted from the calling file's header +# comments, with leading '# ' stripped: +# 1. First display the progname and version +# 2. Followed by the header comment line matching /^# Written by / +# 3. Then a blank line followed by the first following line matching +# /^# Copyright / +# 4. Immediately followed by any lines between the previous matches, +# except lines preceding the intervening completely blank line. +# For example, see the header comments of this file. func_version () { $debug_cmd printf '%s\n' "$progname $scriptversion" $SED -n ' - /(C)/!b go - :more - /\./!{ - N - s|\n# | | - b more - } - :go - /^# Written by /,/# warranty; / { - s|^# || - s|^# *$|| - s|\((C)\)[ 0-9,-]*[ ,-]\([1-9][0-9]* \)|\1 \2| - p + /^# Written by /!b + s|^# ||; p; n + + :fwd2blnk + /./ { + n + b fwd2blnk } - /^# Written by / { - s|^# || - p + p; n + + :holdwrnt + s|^# || + s|^# *$|| + /^Copyright /!{ + /./H + n + b holdwrnt } - /^warranty; /q' < "$progpath" + + s|\((C)\)[ 0-9,-]*[ ,-]\([1-9][0-9]* \)|\1 \2| + G + s|\(\n\)\n*|\1|g + p; q' < "$progpath" exit $? } @@ -1972,12 +2171,12 @@ # mode: shell-script # sh-indentation: 2 # eval: (add-hook 'before-save-hook 'time-stamp) -# time-stamp-pattern: "10/scriptversion=%:y-%02m-%02d.%02H; # UTC" +# time-stamp-pattern: "30/scriptversion=%:y-%02m-%02d.%02H; # UTC" # time-stamp-time-zone: "UTC" # End: # Set a version string. -scriptversion='(GNU libtool) 2.4.6' +scriptversion='(GNU libtool) 2.4.6.42-b88ce' # func_echo ARG... @@ -2068,12 +2267,12 @@ compiler: $LTCC compiler flags: $LTCFLAGS linker: $LD (gnu? $with_gnu_ld) - version: $progname (GNU libtool) 2.4.6 + version: $progname (GNU libtool) 2.4.6.42-b88ce automake: `($AUTOMAKE --version) 2>/dev/null |$SED 1q` autoconf: `($AUTOCONF --version) 2>/dev/null |$SED 1q` Report bugs to . -GNU libtool home page: . +GNU libtool home page: . General help using GNU software: ." exit 0 } @@ -2124,7 +2323,7 @@ # a configuration failure hint, and exit. func_fatal_configuration () { - func__fatal_error ${1+"$@"} \ + func_fatal_error ${1+"$@"} \ "See the $PACKAGE documentation for more information." \ "Fatal configuration error." } @@ -2270,6 +2469,8 @@ nonopt= preserve_args= + _G_rc_lt_options_prep=: + # Shorthand for --mode=foo, only valid as the first argument case $1 in clean|clea|cle|cl) @@ -2293,11 +2494,16 @@ uninstall|uninstal|uninsta|uninst|unins|unin|uni|un|u) shift; set dummy --mode uninstall ${1+"$@"}; shift ;; + *) + _G_rc_lt_options_prep=false + ;; esac - # Pass back the list of options. - func_quote_for_eval ${1+"$@"} - libtool_options_prep_result=$func_quote_for_eval_result + if $_G_rc_lt_options_prep; then + # Pass back the list of options. + func_quote eval ${1+"$@"} + libtool_options_prep_result=$func_quote_result + fi } func_add_hook func_options_prep libtool_options_prep @@ -2309,9 +2515,12 @@ { $debug_cmd + _G_rc_lt_parse_options=false + # Perform our own loop to consume as many options as possible in # each iteration. while test $# -gt 0; do + _G_match_lt_parse_options=: _G_opt=$1 shift case $_G_opt in @@ -2386,15 +2595,20 @@ func_append preserve_args " $_G_opt" ;; - # An option not handled by this hook function: - *) set dummy "$_G_opt" ${1+"$@"}; shift; break ;; + # An option not handled by this hook function: + *) set dummy "$_G_opt" ${1+"$@"} ; shift + _G_match_lt_parse_options=false + break + ;; esac + $_G_match_lt_parse_options && _G_rc_lt_parse_options=: done - - # save modified positional parameters for caller - func_quote_for_eval ${1+"$@"} - libtool_parse_options_result=$func_quote_for_eval_result + if $_G_rc_lt_parse_options; then + # save modified positional parameters for caller + func_quote eval ${1+"$@"} + libtool_parse_options_result=$func_quote_result + fi } func_add_hook func_parse_options libtool_parse_options @@ -2451,8 +2665,8 @@ } # Pass back the unparsed argument list - func_quote_for_eval ${1+"$@"} - libtool_validate_options_result=$func_quote_for_eval_result + func_quote eval ${1+"$@"} + libtool_validate_options_result=$func_quote_result } func_add_hook func_validate_options libtool_validate_options @@ -3418,8 +3632,8 @@ esac done - func_quote_for_eval "$libobj" - test "X$libobj" != "X$func_quote_for_eval_result" \ + func_quote_arg pretty "$libobj" + test "X$libobj" != "X$func_quote_arg_result" \ && $ECHO "X$libobj" | $GREP '[]~#^*{};<>?"'"'"' &()|`$[]' \ && func_warning "libobj name '$libobj' may not contain shell special characters." func_dirname_and_basename "$obj" "/" "" @@ -3492,8 +3706,8 @@ func_to_tool_file "$srcfile" func_convert_file_msys_to_w32 srcfile=$func_to_tool_file_result - func_quote_for_eval "$srcfile" - qsrcfile=$func_quote_for_eval_result + func_quote_arg pretty "$srcfile" + qsrcfile=$func_quote_arg_result # Only build a PIC object if we are building libtool libraries. if test yes = "$build_libtool_libs"; then @@ -4096,8 +4310,8 @@ case $nonopt in *shtool*) :;; *) false;; esac then # Aesthetically quote it. - func_quote_for_eval "$nonopt" - install_prog="$func_quote_for_eval_result " + func_quote_arg pretty "$nonopt" + install_prog="$func_quote_arg_result " arg=$1 shift else @@ -4107,8 +4321,8 @@ # The real first argument should be the name of the installation program. # Aesthetically quote it. - func_quote_for_eval "$arg" - func_append install_prog "$func_quote_for_eval_result" + func_quote_arg pretty "$arg" + func_append install_prog "$func_quote_arg_result" install_shared_prog=$install_prog case " $install_prog " in *[\\\ /]cp\ *) install_cp=: ;; @@ -4165,12 +4379,12 @@ esac # Aesthetically quote the argument. - func_quote_for_eval "$arg" - func_append install_prog " $func_quote_for_eval_result" + func_quote_arg pretty "$arg" + func_append install_prog " $func_quote_arg_result" if test -n "$arg2"; then - func_quote_for_eval "$arg2" + func_quote_arg pretty "$arg2" fi - func_append install_shared_prog " $func_quote_for_eval_result" + func_append install_shared_prog " $func_quote_arg_result" done test -z "$install_prog" && \ @@ -4181,8 +4395,8 @@ if test -n "$install_override_mode" && $no_mode; then if $install_cp; then :; else - func_quote_for_eval "$install_override_mode" - func_append install_shared_prog " -m $func_quote_for_eval_result" + func_quote_arg pretty "$install_override_mode" + func_append install_shared_prog " -m $func_quote_arg_result" fi fi @@ -4478,8 +4692,8 @@ relink_command=`$ECHO "$relink_command" | $SED 's%@OUTPUT@%'"$outputname"'%g'` $opt_quiet || { - func_quote_for_expand "$relink_command" - eval "func_echo $func_quote_for_expand_result" + func_quote_arg expand,pretty "$relink_command" + eval "func_echo $func_quote_arg_result" } if eval "$relink_command"; then : else @@ -5258,7 +5472,8 @@ if test \"\$libtool_execute_magic\" != \"$magic\"; then file=\"\$0\"" - qECHO=`$ECHO "$ECHO" | $SED "$sed_quote_subst"` + func_quote_arg pretty "$ECHO" + qECHO=$func_quote_arg_result $ECHO "\ # A function that is used when there is no print builtin or printf. @@ -5268,7 +5483,7 @@ \$1 _LTECHO_EOF' } - ECHO=\"$qECHO\" + ECHO=$qECHO fi # Very basic option parsing. These options are (a) specific to @@ -6611,9 +6826,9 @@ while test "$#" -gt 0; do arg=$1 shift - func_quote_for_eval "$arg" - qarg=$func_quote_for_eval_unquoted_result - func_append libtool_args " $func_quote_for_eval_result" + func_quote_arg pretty,unquoted "$arg" + qarg=$func_quote_arg_unquoted_result + func_append libtool_args " $func_quote_arg_result" # If the previous option needs an argument, assign it. if test -n "$prev"; then @@ -7211,9 +7426,9 @@ save_ifs=$IFS; IFS=, for flag in $args; do IFS=$save_ifs - func_quote_for_eval "$flag" - func_append arg " $func_quote_for_eval_result" - func_append compiler_flags " $func_quote_for_eval_result" + func_quote_arg pretty "$flag" + func_append arg " $func_quote_arg_result" + func_append compiler_flags " $func_quote_arg_result" done IFS=$save_ifs func_stripname ' ' '' "$arg" @@ -7227,10 +7442,10 @@ save_ifs=$IFS; IFS=, for flag in $args; do IFS=$save_ifs - func_quote_for_eval "$flag" - func_append arg " $wl$func_quote_for_eval_result" - func_append compiler_flags " $wl$func_quote_for_eval_result" - func_append linker_flags " $func_quote_for_eval_result" + func_quote_arg pretty "$flag" + func_append arg " $wl$func_quote_arg_result" + func_append compiler_flags " $wl$func_quote_arg_result" + func_append linker_flags " $func_quote_arg_result" done IFS=$save_ifs func_stripname ' ' '' "$arg" @@ -7254,8 +7469,8 @@ # -msg_* for osf cc -msg_*) - func_quote_for_eval "$arg" - arg=$func_quote_for_eval_result + func_quote_arg pretty "$arg" + arg=$func_quote_arg_result ;; # Flags to be passed through unchanged, with rationale: @@ -7272,12 +7487,16 @@ # -tp=* Portland pgcc target processor selection # --sysroot=* for sysroot support # -O*, -g*, -flto*, -fwhopr*, -fuse-linker-plugin GCC link-time optimization + # -specs=* GCC specs files # -stdlib=* select c++ std lib with clang + # -fsanitize=* Clang/GCC memory and address sanitizer + # -fuse-ld=* Linker select flags for GCC -64|-mips[0-9]|-r[0-9][0-9]*|-xarch=*|-xtarget=*|+DA*|+DD*|-q*|-m*| \ -t[45]*|-txscale*|-p|-pg|--coverage|-fprofile-*|-F*|@*|-tp=*|--sysroot=*| \ - -O*|-g*|-flto*|-fwhopr*|-fuse-linker-plugin|-fstack-protector*|-stdlib=*) - func_quote_for_eval "$arg" - arg=$func_quote_for_eval_result + -O*|-g*|-flto*|-fwhopr*|-fuse-linker-plugin|-fstack-protector*|-stdlib=*| \ + -specs=*|-fsanitize=*|-fuse-ld=*) + func_quote_arg pretty "$arg" + arg=$func_quote_arg_result func_append compile_command " $arg" func_append finalize_command " $arg" func_append compiler_flags " $arg" @@ -7298,15 +7517,15 @@ continue else # Otherwise treat like 'Some other compiler flag' below - func_quote_for_eval "$arg" - arg=$func_quote_for_eval_result + func_quote_arg pretty "$arg" + arg=$func_quote_arg_result fi ;; # Some other compiler flag. -* | +*) - func_quote_for_eval "$arg" - arg=$func_quote_for_eval_result + func_quote_arg pretty "$arg" + arg=$func_quote_arg_result ;; *.$objext) @@ -7426,8 +7645,8 @@ *) # Unknown arguments in both finalize_command and compile_command need # to be aesthetically quoted because they are evaled later. - func_quote_for_eval "$arg" - arg=$func_quote_for_eval_result + func_quote_arg pretty "$arg" + arg=$func_quote_arg_result ;; esac # arg @@ -9933,8 +10152,8 @@ for cmd in $concat_cmds; do IFS=$save_ifs $opt_quiet || { - func_quote_for_expand "$cmd" - eval "func_echo $func_quote_for_expand_result" + func_quote_arg expand,pretty "$cmd" + eval "func_echo $func_quote_arg_result" } $opt_dry_run || eval "$cmd" || { lt_exit=$? @@ -10027,8 +10246,8 @@ eval cmd=\"$cmd\" IFS=$save_ifs $opt_quiet || { - func_quote_for_expand "$cmd" - eval "func_echo $func_quote_for_expand_result" + func_quote_arg expand,pretty "$cmd" + eval "func_echo $func_quote_arg_result" } $opt_dry_run || eval "$cmd" || { lt_exit=$? @@ -10502,12 +10721,13 @@ elif eval var_value=\$$var; test -z "$var_value"; then relink_command="$var=; export $var; $relink_command" else - func_quote_for_eval "$var_value" - relink_command="$var=$func_quote_for_eval_result; export $var; $relink_command" + func_quote_arg pretty "$var_value" + relink_command="$var=$func_quote_arg_result; export $var; $relink_command" fi done - relink_command="(cd `pwd`; $relink_command)" - relink_command=`$ECHO "$relink_command" | $SED "$sed_quote_subst"` + func_quote eval cd "`pwd`" + func_quote_arg pretty,unquoted "($func_quote_result; $relink_command)" + relink_command=$func_quote_arg_unquoted_result fi # Only actually do things if not in dry run mode. @@ -10747,13 +10967,15 @@ elif eval var_value=\$$var; test -z "$var_value"; then relink_command="$var=; export $var; $relink_command" else - func_quote_for_eval "$var_value" - relink_command="$var=$func_quote_for_eval_result; export $var; $relink_command" + func_quote_arg pretty,unquoted "$var_value" + relink_command="$var=$func_quote_arg_unquoted_result; export $var; $relink_command" fi done # Quote the link command for shipping. - relink_command="(cd `pwd`; $SHELL \"$progpath\" $preserve_args --mode=relink $libtool_args @inst_prefix_dir@)" - relink_command=`$ECHO "$relink_command" | $SED "$sed_quote_subst"` + func_quote eval cd "`pwd`" + relink_command="($func_quote_result; $SHELL \"$progpath\" $preserve_args --mode=relink $libtool_args @inst_prefix_dir@)" + func_quote_arg pretty,unquoted "$relink_command" + relink_command=$func_quote_arg_unquoted_result if test yes = "$hardcode_automatic"; then relink_command= fi diff -Nru libqmi-1.18.0/m4/libtool.m4 libqmi-1.22.0/m4/libtool.m4 --- libqmi-1.18.0/m4/libtool.m4 2017-03-22 12:20:17.000000000 +0100 +++ libqmi-1.22.0/m4/libtool.m4 2019-01-08 15:17:11.000000000 +0100 @@ -1,6 +1,6 @@ # libtool.m4 - Configure libtool for the host system. -*-Autoconf-*- # -# Copyright (C) 1996-2001, 2003-2015 Free Software Foundation, Inc. +# Copyright (C) 1996-2001, 2003-2018 Free Software Foundation, Inc. # Written by Gordon Matzigkeit, 1996 # # This file is free software; the Free Software Foundation gives @@ -219,8 +219,8 @@ ofile=libtool can_build_shared=yes -# All known linkers require a '.a' archive for static linking (except MSVC, -# which needs '.lib'). +# All known linkers require a '.a' archive for static linking (except MSVC and +# ICC, which need '.lib'). libext=a with_gnu_ld=$lt_cv_prog_gnu_ld @@ -1042,8 +1042,8 @@ _LT_EOF echo "$LTCC $LTCFLAGS -c -o conftest.o conftest.c" >&AS_MESSAGE_LOG_FD $LTCC $LTCFLAGS -c -o conftest.o conftest.c 2>&AS_MESSAGE_LOG_FD - echo "$AR cru libconftest.a conftest.o" >&AS_MESSAGE_LOG_FD - $AR cru libconftest.a conftest.o 2>&AS_MESSAGE_LOG_FD + echo "$AR $AR_FLAGS libconftest.a conftest.o" >&AS_MESSAGE_LOG_FD + $AR $AR_FLAGS libconftest.a conftest.o 2>&AS_MESSAGE_LOG_FD echo "$RANLIB libconftest.a" >&AS_MESSAGE_LOG_FD $RANLIB libconftest.a 2>&AS_MESSAGE_LOG_FD cat > conftest.c << _LT_EOF @@ -1493,9 +1493,22 @@ m4_defun([_LT_PROG_AR], [AC_CHECK_TOOLS(AR, [ar], false) : ${AR=ar} -: ${AR_FLAGS=cru} _LT_DECL([], [AR], [1], [The archiver]) -_LT_DECL([], [AR_FLAGS], [1], [Flags to create an archive]) + +# Use ARFLAGS variable as AR's operation code to sync the variable naming with +# Automake. If both AR_FLAGS and ARFLAGS are specified, AR_FLAGS should have +# higher priority because thats what people were doing historically (setting +# ARFLAGS for automake and AR_FLAGS for libtool). FIXME: Make the AR_FLAGS +# variable obsoleted/removed. + +test ${AR_FLAGS+y} || AR_FLAGS=${ARFLAGS-cr} +lt_ar_flags=$AR_FLAGS +_LT_DECL([], [lt_ar_flags], [0], [Flags to create an archive (by configure)]) + +# Make AR_FLAGS overridable by 'make ARFLAGS='. Don't try to run-time override +# by AR_FLAGS because that was never working and AR_FLAGS is about to die. +_LT_DECL([], [AR_FLAGS], [\@S|@{ARFLAGS-"\@S|@lt_ar_flags"}], + [Flags to create an archive]) AC_CACHE_CHECK([for archiver @FILE support], [lt_cv_ar_at_file], [lt_cv_ar_at_file=no @@ -2207,26 +2220,35 @@ striplib= old_striplib= AC_MSG_CHECKING([whether stripping libraries is possible]) -if test -n "$STRIP" && $STRIP -V 2>&1 | $GREP "GNU strip" >/dev/null; then - test -z "$old_striplib" && old_striplib="$STRIP --strip-debug" - test -z "$striplib" && striplib="$STRIP --strip-unneeded" - AC_MSG_RESULT([yes]) +if test -z "$STRIP"; then + AC_MSG_RESULT([no]) else -# FIXME - insert some real tests, host_os isn't really good enough - case $host_os in - darwin*) - if test -n "$STRIP"; then + if $STRIP -V 2>&1 | $GREP "GNU strip" >/dev/null; then + old_striplib="$STRIP --strip-debug" + striplib="$STRIP --strip-unneeded" + AC_MSG_RESULT([yes]) + else + case $host_os in + darwin*) + # FIXME - insert some real tests, host_os isn't really good enough striplib="$STRIP -x" old_striplib="$STRIP -S" AC_MSG_RESULT([yes]) - else + ;; + freebsd*) + if $STRIP -V 2>&1 | $GREP "elftoolchain" >/dev/null; then + old_striplib="$STRIP --strip-debug" + striplib="$STRIP --strip-unneeded" + AC_MSG_RESULT([yes]) + else + AC_MSG_RESULT([no]) + fi + ;; + *) AC_MSG_RESULT([no]) - fi - ;; - *) - AC_MSG_RESULT([no]) - ;; - esac + ;; + esac + fi fi _LT_DECL([], [old_striplib], [1], [Commands to strip libraries]) _LT_DECL([], [striplib], [1]) @@ -2565,8 +2587,8 @@ dynamic_linker='Win32 ld.exe' ;; - *,cl*) - # Native MSVC + *,cl* | *,icl*) + # Native MSVC or ICC libname_spec='$name' soname_spec='$libname`echo $release | $SED -e 's/[[.]]/-/g'`$versuffix$shared_ext' library_names_spec='$libname.dll.lib' @@ -2622,7 +2644,7 @@ ;; *) - # Assume MSVC wrapper + # Assume MSVC and ICC wrapper library_names_spec='$libname`echo $release | $SED -e 's/[[.]]/-/g'`$versuffix$shared_ext $libname.lib' dynamic_linker='Win32 ld.exe' ;; @@ -4010,7 +4032,7 @@ if test "$lt_cv_nm_interface" = "MS dumpbin"; then # Fake it for dumpbin and say T for any non-static function, # D for any global variable and I for any imported variable. - # Also find C++ and __fastcall symbols from MSVC++, + # Also find C++ and __fastcall symbols from MSVC++ or ICC, # which start with @ or ?. lt_cv_sys_global_symbol_pipe="$AWK ['"\ " {last_section=section; section=\$ 3};"\ @@ -4919,7 +4941,7 @@ if $NM -V 2>&1 | $GREP 'GNU' > /dev/null; then _LT_TAGVAR(export_symbols_cmds, $1)='$NM -Bpg $libobjs $convenience | awk '\''{ if (((\$ 2 == "T") || (\$ 2 == "D") || (\$ 2 == "B") || (\$ 2 == "W")) && ([substr](\$ 3,1,1) != ".")) { if (\$ 2 == "W") { print \$ 3 " weak" } else { print \$ 3 } } }'\'' | sort -u > $export_symbols' else - _LT_TAGVAR(export_symbols_cmds, $1)='`func_echo_all $NM | $SED -e '\''s/B\([[^B]]*\)$/P\1/'\''` -PCpgl $libobjs $convenience | awk '\''{ if (((\$ 2 == "T") || (\$ 2 == "D") || (\$ 2 == "B") || (\$ 2 == "W") || (\$ 2 == "V") || (\$ 2 == "Z")) && ([substr](\$ 1,1,1) != ".")) { if ((\$ 2 == "W") || (\$ 2 == "V") || (\$ 2 == "Z")) { print \$ 1 " weak" } else { print \$ 1 } } }'\'' | sort -u > $export_symbols' + _LT_TAGVAR(export_symbols_cmds, $1)='`func_echo_all $NM | $SED -e '\''s/B\([[^B]]*\)$/P\1/'\''` -PCpgl $libobjs $convenience | awk '\''{ if (((\$ 2 == "T") || (\$ 2 == "D") || (\$ 2 == "B") || (\$ 2 == "L") || (\$ 2 == "W") || (\$ 2 == "V") || (\$ 2 == "Z")) && ([substr](\$ 1,1,1) != ".")) { if ((\$ 2 == "W") || (\$ 2 == "V") || (\$ 2 == "Z")) { print \$ 1 " weak" } else { print \$ 1 } } }'\'' | sort -u > $export_symbols' fi ;; pw32*) @@ -4927,7 +4949,7 @@ ;; cygwin* | mingw* | cegcc*) case $cc_basename in - cl*) + cl* | icl*) _LT_TAGVAR(exclude_expsyms, $1)='_NULL_IMPORT_DESCRIPTOR|_IMPORT_DESCRIPTOR_.*' ;; *) @@ -4984,15 +5006,15 @@ case $host_os in cygwin* | mingw* | pw32* | cegcc*) - # FIXME: the MSVC++ port hasn't been tested in a loooong time + # FIXME: the MSVC++ and ICC port hasn't been tested in a loooong time # When not using gcc, we currently assume that we are using - # Microsoft Visual C++. + # Microsoft Visual C++ or Intel C++ Compiler. if test yes != "$GCC"; then with_gnu_ld=no fi ;; interix*) - # we just hope/assume this is gcc and not c89 (= MSVC++) + # we just hope/assume this is gcc and not c89 (= MSVC++ or ICC) with_gnu_ld=yes ;; openbsd* | bitrig*) @@ -5156,6 +5178,7 @@ emximp -o $lib $output_objdir/$libname.def' _LT_TAGVAR(old_archive_From_new_cmds, $1)='emximp -o $output_objdir/${libname}_dll.a $output_objdir/$libname.def' _LT_TAGVAR(enable_shared_with_static_runtimes, $1)=yes + _LT_TAGVAR(file_list_spec, $1)='@' ;; interix[[3-9]]*) @@ -5373,7 +5396,7 @@ if $NM -V 2>&1 | $GREP 'GNU' > /dev/null; then _LT_TAGVAR(export_symbols_cmds, $1)='$NM -Bpg $libobjs $convenience | awk '\''{ if (((\$ 2 == "T") || (\$ 2 == "D") || (\$ 2 == "B") || (\$ 2 == "W")) && ([substr](\$ 3,1,1) != ".")) { if (\$ 2 == "W") { print \$ 3 " weak" } else { print \$ 3 } } }'\'' | sort -u > $export_symbols' else - _LT_TAGVAR(export_symbols_cmds, $1)='`func_echo_all $NM | $SED -e '\''s/B\([[^B]]*\)$/P\1/'\''` -PCpgl $libobjs $convenience | awk '\''{ if (((\$ 2 == "T") || (\$ 2 == "D") || (\$ 2 == "B") || (\$ 2 == "W") || (\$ 2 == "V") || (\$ 2 == "Z")) && ([substr](\$ 1,1,1) != ".")) { if ((\$ 2 == "W") || (\$ 2 == "V") || (\$ 2 == "Z")) { print \$ 1 " weak" } else { print \$ 1 } } }'\'' | sort -u > $export_symbols' + _LT_TAGVAR(export_symbols_cmds, $1)='`func_echo_all $NM | $SED -e '\''s/B\([[^B]]*\)$/P\1/'\''` -PCpgl $libobjs $convenience | awk '\''{ if (((\$ 2 == "T") || (\$ 2 == "D") || (\$ 2 == "B") || (\$ 2 == "L") || (\$ 2 == "W") || (\$ 2 == "V") || (\$ 2 == "Z")) && ([substr](\$ 1,1,1) != ".")) { if ((\$ 2 == "W") || (\$ 2 == "V") || (\$ 2 == "Z")) { print \$ 1 " weak" } else { print \$ 1 } } }'\'' | sort -u > $export_symbols' fi aix_use_runtimelinking=no @@ -5556,12 +5579,12 @@ cygwin* | mingw* | pw32* | cegcc*) # When not using gcc, we currently assume that we are using - # Microsoft Visual C++. + # Microsoft Visual C++ or Intel C++ Compiler. # hardcode_libdir_flag_spec is actually meaningless, as there is # no search path for DLLs. case $cc_basename in - cl*) - # Native MSVC + cl* | icl*) + # Native MSVC or ICC _LT_TAGVAR(hardcode_libdir_flag_spec, $1)=' ' _LT_TAGVAR(allow_undefined_flag, $1)=unsupported _LT_TAGVAR(always_export_symbols, $1)=yes @@ -5602,7 +5625,7 @@ fi' ;; *) - # Assume MSVC wrapper + # Assume MSVC and ICC wrapper _LT_TAGVAR(hardcode_libdir_flag_spec, $1)=' ' _LT_TAGVAR(allow_undefined_flag, $1)=unsupported # Tell ltmain to make .lib files, not .a files. @@ -5861,6 +5884,7 @@ emximp -o $lib $output_objdir/$libname.def' _LT_TAGVAR(old_archive_From_new_cmds, $1)='emximp -o $output_objdir/${libname}_dll.a $output_objdir/$libname.def' _LT_TAGVAR(enable_shared_with_static_runtimes, $1)=yes + _LT_TAGVAR(file_list_spec, $1)='@' ;; osf3*) @@ -6631,8 +6655,8 @@ cygwin* | mingw* | pw32* | cegcc*) case $GXX,$cc_basename in - ,cl* | no,cl*) - # Native MSVC + ,cl* | no,cl* | ,icl* | no,icl*) + # Native MSVC or ICC # hardcode_libdir_flag_spec is actually meaningless, as there is # no search path for DLLs. _LT_TAGVAR(hardcode_libdir_flag_spec, $1)=' ' @@ -6730,6 +6754,7 @@ emximp -o $lib $output_objdir/$libname.def' _LT_TAGVAR(old_archive_From_new_cmds, $1)='emximp -o $output_objdir/${libname}_dll.a $output_objdir/$libname.def' _LT_TAGVAR(enable_shared_with_static_runtimes, $1)=yes + _LT_TAGVAR(file_list_spec, $1)='@' ;; dgux*) diff -Nru libqmi-1.18.0/m4/lt~obsolete.m4 libqmi-1.22.0/m4/lt~obsolete.m4 --- libqmi-1.18.0/m4/lt~obsolete.m4 2017-03-22 12:20:17.000000000 +0100 +++ libqmi-1.22.0/m4/lt~obsolete.m4 2019-01-08 15:17:11.000000000 +0100 @@ -1,6 +1,6 @@ # lt~obsolete.m4 -- aclocal satisfying obsolete definitions. -*-Autoconf-*- # -# Copyright (C) 2004-2005, 2007, 2009, 2011-2015 Free Software +# Copyright (C) 2004-2005, 2007, 2009, 2011-2018 Free Software # Foundation, Inc. # Written by Scott James Remnant, 2004. # diff -Nru libqmi-1.18.0/m4/ltoptions.m4 libqmi-1.22.0/m4/ltoptions.m4 --- libqmi-1.18.0/m4/ltoptions.m4 2017-03-22 12:20:17.000000000 +0100 +++ libqmi-1.22.0/m4/ltoptions.m4 2019-01-08 15:17:11.000000000 +0100 @@ -1,6 +1,6 @@ # Helper functions for option handling. -*- Autoconf -*- # -# Copyright (C) 2004-2005, 2007-2009, 2011-2015 Free Software +# Copyright (C) 2004-2005, 2007-2009, 2011-2018 Free Software # Foundation, Inc. # Written by Gary V. Vaughan, 2004 # diff -Nru libqmi-1.18.0/m4/ltsugar.m4 libqmi-1.22.0/m4/ltsugar.m4 --- libqmi-1.18.0/m4/ltsugar.m4 2017-03-22 12:20:17.000000000 +0100 +++ libqmi-1.22.0/m4/ltsugar.m4 2019-01-08 15:17:11.000000000 +0100 @@ -1,6 +1,6 @@ # ltsugar.m4 -- libtool m4 base layer. -*-Autoconf-*- # -# Copyright (C) 2004-2005, 2007-2008, 2011-2015 Free Software +# Copyright (C) 2004-2005, 2007-2008, 2011-2018 Free Software # Foundation, Inc. # Written by Gary V. Vaughan, 2004 # diff -Nru libqmi-1.18.0/m4/ltversion.m4 libqmi-1.22.0/m4/ltversion.m4 --- libqmi-1.18.0/m4/ltversion.m4 2017-03-22 12:20:17.000000000 +0100 +++ libqmi-1.22.0/m4/ltversion.m4 2019-01-08 15:17:11.000000000 +0100 @@ -1,6 +1,6 @@ # ltversion.m4 -- version numbers -*- Autoconf -*- # -# Copyright (C) 2004, 2011-2015 Free Software Foundation, Inc. +# Copyright (C) 2004, 2011-2018 Free Software Foundation, Inc. # Written by Scott James Remnant, 2004 # # This file is free software; the Free Software Foundation gives @@ -9,15 +9,15 @@ # @configure_input@ -# serial 4179 ltversion.m4 +# serial 4221 ltversion.m4 # This file is part of GNU Libtool -m4_define([LT_PACKAGE_VERSION], [2.4.6]) -m4_define([LT_PACKAGE_REVISION], [2.4.6]) +m4_define([LT_PACKAGE_VERSION], [2.4.6.42-b88ce]) +m4_define([LT_PACKAGE_REVISION], [2.4.6.42]) AC_DEFUN([LTVERSION_VERSION], -[macro_version='2.4.6' -macro_revision='2.4.6' +[macro_version='2.4.6.42-b88ce' +macro_revision='2.4.6.42' _LT_DECL(, macro_version, 0, [Which release of libtool.m4 was used?]) _LT_DECL(, macro_revision, 0) ]) diff -Nru libqmi-1.18.0/Makefile.am libqmi-1.22.0/Makefile.am --- libqmi-1.18.0/Makefile.am 2017-03-21 12:59:11.000000000 +0100 +++ libqmi-1.22.0/Makefile.am 2018-03-20 21:33:05.000000000 +0100 @@ -9,6 +9,19 @@ --enable-mbim-qmux \ $(NULL) +ChangeLog: + $(AM_V_GEN) if test -d "$(srcdir)/.git"; then \ + (GIT_DIR=$(top_srcdir)/.git $(top_srcdir)/missing --run git log --stat) | fmt --split-only > $@.tmp \ + && mv -f $@.tmp $@ \ + || ($(RM) $@.tmp; \ + echo Failed to generate ChangeLog, your ChangeLog may be outdated >&2; \ + (test -f $@ || echo git-log is required to generate this file >> $@)); \ + else \ + test -f $@ || \ + (echo A git checkout and git-log is required to generate ChangeLog >&2 && \ + echo A git checkout and git-log is required to generate this file >> $@); \ + fi + EXTRA_DIST = \ gtester.make \ COPYING.LIB diff -Nru libqmi-1.18.0/Makefile.in libqmi-1.22.0/Makefile.in --- libqmi-1.18.0/Makefile.in 2017-03-22 12:20:25.000000000 +0100 +++ libqmi-1.22.0/Makefile.in 2019-01-08 15:17:16.000000000 +0100 @@ -1,7 +1,7 @@ -# Makefile.in generated by automake 1.15 from Makefile.am. +# Makefile.in generated by automake 1.16.1 from Makefile.am. # @configure_input@ -# Copyright (C) 1994-2014 Free Software Foundation, Inc. +# Copyright (C) 1994-2018 Free Software Foundation, Inc. # This Makefile.in is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, @@ -138,7 +138,7 @@ $(RECURSIVE_CLEAN_TARGETS) \ $(am__extra_recursive_targets) AM_RECURSIVE_TARGETS = $(am__recursive_targets:-recursive=) TAGS CTAGS \ - cscope distdir dist dist-all distcheck + cscope distdir distdir-am dist dist-all distcheck am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) \ $(LISP)config.h.in # Read a list of newline-separated strings from the standard input, @@ -282,6 +282,11 @@ PKG_CONFIG = @PKG_CONFIG@ PKG_CONFIG_LIBDIR = @PKG_CONFIG_LIBDIR@ PKG_CONFIG_PATH = @PKG_CONFIG_PATH@ +PYTHON = @PYTHON@ +PYTHON_EXEC_PREFIX = @PYTHON_EXEC_PREFIX@ +PYTHON_PLATFORM = @PYTHON_PLATFORM@ +PYTHON_PREFIX = @PYTHON_PREFIX@ +PYTHON_VERSION = @PYTHON_VERSION@ QMI_GLIB_LT_AGE = @QMI_GLIB_LT_AGE@ QMI_GLIB_LT_CURRENT = @QMI_GLIB_LT_CURRENT@ QMI_GLIB_LT_REVISION = @QMI_GLIB_LT_REVISION@ @@ -339,9 +344,13 @@ mkdir_p = @mkdir_p@ oldincludedir = @oldincludedir@ pdfdir = @pdfdir@ +pkgpyexecdir = @pkgpyexecdir@ +pkgpythondir = @pkgpythondir@ prefix = @prefix@ program_transform_name = @program_transform_name@ psdir = @psdir@ +pyexecdir = @pyexecdir@ +pythondir = @pythondir@ sbindir = @sbindir@ sharedstatedir = @sharedstatedir@ srcdir = @srcdir@ @@ -387,8 +396,8 @@ echo ' $(SHELL) ./config.status'; \ $(SHELL) ./config.status;; \ *) \ - echo ' cd $(top_builddir) && $(SHELL) ./config.status $@ $(am__depfiles_maybe)'; \ - cd $(top_builddir) && $(SHELL) ./config.status $@ $(am__depfiles_maybe);; \ + echo ' cd $(top_builddir) && $(SHELL) ./config.status $@ $(am__maybe_remake_depfiles)'; \ + cd $(top_builddir) && $(SHELL) ./config.status $@ $(am__maybe_remake_depfiles);; \ esac; $(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) @@ -530,7 +539,10 @@ -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags -rm -f cscope.out cscope.in.out cscope.po.out cscope.files -distdir: $(DISTFILES) +distdir: $(BUILT_SOURCES) + $(MAKE) $(AM_MAKEFLAGS) distdir-am + +distdir-am: $(DISTFILES) $(am__remove_distdir) test -d "$(distdir)" || mkdir "$(distdir)" @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ @@ -844,6 +856,19 @@ .PRECIOUS: Makefile +ChangeLog: + $(AM_V_GEN) if test -d "$(srcdir)/.git"; then \ + (GIT_DIR=$(top_srcdir)/.git $(top_srcdir)/missing --run git log --stat) | fmt --split-only > $@.tmp \ + && mv -f $@.tmp $@ \ + || ($(RM) $@.tmp; \ + echo Failed to generate ChangeLog, your ChangeLog may be outdated >&2; \ + (test -f $@ || echo git-log is required to generate this file >> $@)); \ + else \ + test -f $@ || \ + (echo A git checkout and git-log is required to generate ChangeLog >&2 && \ + echo A git checkout and git-log is required to generate this file >> $@); \ + fi + # Tell versions [3.59,3.63) of GNU make to not export all variables. # Otherwise a system limit (for SysV at least) may be exceeded. .NOEXPORT: diff -Nru libqmi-1.18.0/missing libqmi-1.22.0/missing --- libqmi-1.18.0/missing 2017-03-22 12:20:25.000000000 +0100 +++ libqmi-1.22.0/missing 2019-01-08 15:17:16.000000000 +0100 @@ -1,9 +1,9 @@ #! /bin/sh # Common wrapper for a few potentially missing GNU programs. -scriptversion=2013-10-28.13; # UTC +scriptversion=2018-03-07.03; # UTC -# Copyright (C) 1996-2014 Free Software Foundation, Inc. +# Copyright (C) 1996-2018 Free Software Foundation, Inc. # Originally written by Fran,cois Pinard , 1996. # This program is free software; you can redistribute it and/or modify @@ -17,7 +17,7 @@ # GNU General Public License for more details. # You should have received a copy of the GNU General Public License -# along with this program. If not, see . +# along with this program. If not, see . # As a special exception to the GNU General Public License, if you # distribute this file as part of a program that contains a @@ -101,9 +101,9 @@ exit $st fi -perl_URL=http://www.perl.org/ -flex_URL=http://flex.sourceforge.net/ -gnu_software_URL=http://www.gnu.org/software +perl_URL=https://www.perl.org/ +flex_URL=https://github.com/westes/flex +gnu_software_URL=https://www.gnu.org/software program_details () { @@ -207,9 +207,9 @@ exit $st # Local variables: -# eval: (add-hook 'write-file-hooks 'time-stamp) +# eval: (add-hook 'before-save-hook 'time-stamp) # time-stamp-start: "scriptversion=" # time-stamp-format: "%:y-%02m-%02d.%02H" -# time-stamp-time-zone: "UTC" +# time-stamp-time-zone: "UTC0" # time-stamp-end: "; # UTC" # End: diff -Nru libqmi-1.18.0/NEWS libqmi-1.22.0/NEWS --- libqmi-1.18.0/NEWS 2017-03-22 12:19:49.000000000 +0100 +++ libqmi-1.22.0/NEWS 2019-01-08 15:15:35.000000000 +0100 @@ -1,4 +1,151 @@ +Overview of changes in libqmi 1.22.0 +---------------------------------------- + + * Build now looks for the correct python provider in the system during + configure. + + * New services: + ** New 'QoS' (Quality of Service) service, with some minimal initial + implementation to support flow/network status querying. Additionally, + some Sierra-specific commands are also implemented that allow querying + per-bearer statistics (e.g. if multiple dedicated and default LTE bearers + are used). + + * New request/responses/indications: + ** loc: new "Register Events" request/response. + ** loc: new "NMEA" indication. + ** loc: new "Engine State" indication. + ** loc: new "Fix Recurrence Type" indication. + ** loc: new "GNSS Sv Info" indication. + ** loc: new "Inject Predicted Orbits Data" request/response/indication. + ** loc: new "Get Predicted Orbits Data Source" request/response/indication. + ** loc: new "Set Server" request/response/indication. + ** loc: new "Get Server" request/response/indication. + ** loc: new "Delete Assistance Data" request/response/indication. + ** loc: new "Set Operation Mode" request/response/indication. + ** loc: new "Get Operation Mode" request/response/indication. + ** loc: new "Inject XTRA Data" request/response/indication. + ** uim: new "Card Status" indication. + ** wds: new "Get Default Profile Num" request/response. + ** wds: new "Set Default Profile Num" request/response. + ** wds: new Sierra-specific "Swi Create Profile Indexed" request/response. + + * New TLVs supported in existing messages: + ** loc: added multiple new TLVs in the "Position Report" indication, which + was a minimal skeleton in previous releases. + ** loc: added 'Fix Recurrence Type' TLV in "Start". + ** loc: added 'Minimum Interval between Position Reports' TLV in "Start". + ** nas: added 'Acquisition Order Preference' TLV in "Set System Selection + Preference" and "Get System Selection Preference". + ** nas: added 'Phy CA Agg Secondary Cells' TLV in "Get LTE Cphy CA Info". + ** wds: added 'WDS APN Disabled Flag' TLV in "Create Profile", "Modify + Profile" and "Get Profile Settings". + ** wds: added 'WDS Roaming Disallowed Flag' TLV in "Create Profile", + "Modify Profile" and "Get Profile Settings". + + * libqmi: + ** Assume TLVs < 0x10 are mandatory by default. + ** Fixed some missing QmiProtocolErrors and updated some existing ones. + ** Implemented support to allow enabling QMI indications when in MBIM mode. + ** Addded missing QmiNasBandPreference and QmiDmsLteBandCapability flags. + ** Deprecate QMI_CORE_ERROR_TLV_EMPTY, as empty TLVs are allowed by the + protocol and totally valid e.g. in 0-sized string-type TLVs. + ** Moved all deprecated APIs to 'qmi-compat.h' header. + + * qmicli: + ** New '--loc-get-position-report' command. + ** New '--loc-get-gnss-sv-info' command. + ** New '--loc-follow-position-report' command. + ** New '--loc-follow-gnss-sv-info' command. + ** New '--loc-follow-nmea' command. + ** New '--loc-delete-assistance-data' command. + ** New '--qos-get-flow-status' command. + ** New '--qos-get-network-status' command. + ** New '--qos-swi-read-data-stats' command. + ** New '--qos-reset' command. + ** New '--wds-create-profile' command. + ** New '--wds-modify-profile' command. + ** New '--wds-delete-profile' command. + ** New '--wds-get-default-profile-num' command. + ** New '--wds-set-default-profile-num' command. + ** New '--wds-swi-create-profile-indexed' command. + ** Added support to request acquisition order preference updates when using + '--nas-set-system-selection-preference'. + ** Fixed slot indices in '--uim-get-card-status'. + ** Fixed '--uim-set-pin-protection', '--uim-verify-pin", "--uim-unblock-pin", + and '--uim-change-pin', so that a dummy application identifier is always + used. + ** Updated so that all commands work even through QMI over MBIM, even if + indications are required to complete the command (e.g. most PDC and LOC + commands). + + * qmi-network: + ** Avoid creating invalid --wds-start-network when APN is not set. + + * Several other minor improvements and fixes. + +The following features which were backported to 1.20.x releases are also present +in libqmi 1.22.0: + + * qmicli: + ** Exit on --wds-start-network parse errors. + ** Fix reading current technology in --wds-get-data-bearer-technology. + + * qmi-firmware-update: + ** Fix --ignore-version-errors. + ** Fix byte counts in error message. + + * libqmi-glib: + ** dms: factory settings related operations since 1.0 + ** Avoid closing same file descriptor twice. + ** Don't leak the inner MbimDevice if MBIM_QMUX_ENABLED. + + +Overview of changes in libqmi 1.20.0 +---------------------------------------- + + * New services: + ** loc: new "LOC" (location) service, which e.g. allows controlling GPS + devices in newer modules that don't implement the PDS service. Just some + very basic implementation for now. + + * New request/responses: + ** nas: new "Attach/Detach" request/response messages. + ** wds: new "Get Channel Rates" request/response messages. + ** dms: new 'Swi Get/Set USB Composition' request/response messages. + + * New TLVs supported in existing messages: + ** nas: new 'Extended LTE Band Preference' TLV in "Set/Get SSP". + ** dms: new 'Extended LTE Band Capability' TLV in "Get Band Capabilities". + + * libqmi: + ** New 'QMI_DEVICE_SIGNAL_REMOVED' signal in the QmiDevice object, propagated + through the qmi-proxy. + ** New 'QMI_CLIENT_VALID' property in the QmiClient that allows detecting + whether the underlying QmiDevice is usable or not. + ** Defined additional LTE bands. + + * qmicli: + ** New '--wds-set-ip-family' command. + ** New '--wds-get-channel-rates' command. + ** New '--uim-read-record' command. + ** New '--dms-swi-get-usb-composition' and '--dms-swi-set-usb-composition' + commands. + + * Several other minor improvements and fixes. + +The following features which were backported to 1.18.x releases are also present +in libqmi 1.20.0: + + * libqmi-glib: + ** Prefer realpath() to canonicalize_file_name(). + ** Avoid signals sent to the qmi-proxy process. + + * qmi-firmware-update: + ** Support USB3->USB2 mode changes during upgrade. + + Overview of changes in libqmi 1.18.0 ---------------------------------------- diff -Nru libqmi-1.18.0/src/libqmi-glib/generated/Makefile.am libqmi-1.22.0/src/libqmi-glib/generated/Makefile.am --- libqmi-1.18.0/src/libqmi-glib/generated/Makefile.am 2017-03-21 14:26:54.000000000 +0100 +++ libqmi-1.22.0/src/libqmi-glib/generated/Makefile.am 2019-01-08 14:09:47.000000000 +0100 @@ -17,7 +17,10 @@ qmi-uim.h \ qmi-oma.h \ qmi-wda.h \ - qmi-voice.h + qmi-voice.h \ + qmi-loc.h \ + qmi-qos.h \ + $(NULL) GENERATED_C = \ qmi-error-types.c \ @@ -36,7 +39,10 @@ qmi-uim.c \ qmi-oma.c \ qmi-wda.c \ - qmi-voice.c + qmi-voice.c \ + qmi-loc.c \ + qmi-qos.c \ + $(NULL) GENERATED_SECTIONS = \ qmi-ctl.sections \ @@ -50,7 +56,10 @@ qmi-uim.sections \ qmi-oma.sections \ qmi-wda.sections \ - qmi-voice.sections + qmi-voice.sections \ + qmi-loc.sections \ + qmi-qos.sections \ + $(NULL) # Error types qmi-error-types.h: $(top_srcdir)/src/libqmi-glib/qmi-errors.h $(top_srcdir)/build-aux/templates/qmi-error-types-template.h @@ -86,10 +95,12 @@ $(top_srcdir)/src/libqmi-glib/qmi-enums-oma.h \ $(top_srcdir)/src/libqmi-glib/qmi-enums-wda.h \ $(top_srcdir)/src/libqmi-glib/qmi-enums-voice.h \ + $(top_srcdir)/src/libqmi-glib/qmi-enums-loc.h \ + $(top_srcdir)/src/libqmi-glib/qmi-enums-qos.h \ $(top_srcdir)/src/libqmi-glib/qmi-device.h qmi-enum-types.h: $(ENUMS) $(top_srcdir)/build-aux/templates/qmi-enum-types-template.h $(AM_V_GEN) $(GLIB_MKENUMS) \ - --fhead "#ifndef __LIBQMI_GLIB_ENUM_TYPES_H__\n#define __LIBQMI_GLIB_ENUM_TYPES_H__\n#include \"qmi-enums.h\"\n#include \"qmi-enums-wds.h\"\n#include \"qmi-enums-dms.h\"\n#include \"qmi-enums-nas.h\"\n#include \"qmi-enums-wms.h\"\n#include \"qmi-enums-pds.h\"\n#include \"qmi-enums-pdc.h\"\n#include \"qmi-enums-pbm.h\"\n#include \"qmi-enums-uim.h\"\n#include \"qmi-enums-oma.h\"\n#include \"qmi-enums-wda.h\"\n#include \"qmi-enums-voice.h\"\n#include \"qmi-device.h\"\n" \ + --fhead "#ifndef __LIBQMI_GLIB_ENUM_TYPES_H__\n#define __LIBQMI_GLIB_ENUM_TYPES_H__\n#include \"qmi-enums.h\"\n#include \"qmi-enums-wds.h\"\n#include \"qmi-enums-dms.h\"\n#include \"qmi-enums-nas.h\"\n#include \"qmi-enums-wms.h\"\n#include \"qmi-enums-pds.h\"\n#include \"qmi-enums-pdc.h\"\n#include \"qmi-enums-pbm.h\"\n#include \"qmi-enums-uim.h\"\n#include \"qmi-enums-oma.h\"\n#include \"qmi-enums-wda.h\"\n#include \"qmi-enums-voice.h\"\n#include \"qmi-enums-loc.h\"\n#include \"qmi-enums-qos.h\"\n#include \"qmi-device.h\"\n" \ --template $(top_srcdir)/build-aux/templates/qmi-enum-types-template.h \ --ftail "#endif /* __LIBQMI_GLIB_ENUM_TYPES_H__ */\n" \ $(ENUMS) > $@ @@ -117,10 +128,10 @@ $(PRIVATE_ENUMS) > $@ # 64bit flag types -FLAGS64 = $(top_srcdir)/src/libqmi-glib/qmi-flags64-dms.h $(top_srcdir)/src/libqmi-glib/qmi-flags64-nas.h +FLAGS64 = $(top_srcdir)/src/libqmi-glib/qmi-flags64-dms.h $(top_srcdir)/src/libqmi-glib/qmi-flags64-nas.h $(top_srcdir)/src/libqmi-glib/qmi-flags64-loc.h qmi-flags64-types.h: $(FLAGS64) $(top_srcdir)/build-aux/templates/qmi-flags64-types-template.h $(AM_V_GEN) $(GLIB_MKENUMS) \ - --fhead "#ifndef __LIBQMI_GLIB_FLAGS64_TYPES_H__\n#define __LIBQMI_GLIB_FLAGS64_TYPES_H__\n#include \"qmi-flags64-dms.h\"\n#include \"qmi-flags64-nas.h\"\n" \ + --fhead "#ifndef __LIBQMI_GLIB_FLAGS64_TYPES_H__\n#define __LIBQMI_GLIB_FLAGS64_TYPES_H__\n#include \"qmi-flags64-dms.h\"\n#include \"qmi-flags64-nas.h\"\n#include \"qmi-flags64-loc.h\"\n" \ --template $(top_srcdir)/build-aux/templates/qmi-flags64-types-template.h \ --ftail "#endif /* __LIBQMI_GLIB_FLAGS64_TYPES_H__ */\n" \ $(FLAGS64) > $@ @@ -136,7 +147,7 @@ $(AM_V_GEN) \ rm -f qmi-ctl.h && \ rm -f qmi-ctl.c && \ - $(top_srcdir)/build-aux/qmi-codegen/qmi-codegen \ + $(PYTHON) $(top_srcdir)/build-aux/qmi-codegen/qmi-codegen \ --input $(top_srcdir)/data/qmi-service-ctl.json \ --include $(top_srcdir)/data/qmi-common.json \ --output qmi-ctl @@ -146,7 +157,7 @@ $(AM_V_GEN) \ rm -f qmi-dms.h && \ rm -f qmi-dms.c && \ - $(top_srcdir)/build-aux/qmi-codegen/qmi-codegen \ + $(PYTHON) $(top_srcdir)/build-aux/qmi-codegen/qmi-codegen \ --input $(top_srcdir)/data/qmi-service-dms.json \ --include $(top_srcdir)/data/qmi-common.json \ --output qmi-dms @@ -156,7 +167,7 @@ $(AM_V_GEN) \ rm -f qmi-wds.h && \ rm -f qmi-wds.c && \ - $(top_srcdir)/build-aux/qmi-codegen/qmi-codegen \ + $(PYTHON) $(top_srcdir)/build-aux/qmi-codegen/qmi-codegen \ --input $(top_srcdir)/data/qmi-service-wds.json \ --include $(top_srcdir)/data/qmi-common.json \ --output qmi-wds @@ -166,7 +177,7 @@ $(AM_V_GEN) \ rm -f qmi-nas.h && \ rm -f qmi-nas.c && \ - $(top_srcdir)/build-aux/qmi-codegen/qmi-codegen \ + $(PYTHON) $(top_srcdir)/build-aux/qmi-codegen/qmi-codegen \ --input $(top_srcdir)/data/qmi-service-nas.json \ --include $(top_srcdir)/data/qmi-common.json \ --output qmi-nas @@ -176,7 +187,7 @@ $(AM_V_GEN) \ rm -f qmi-wms.h && \ rm -f qmi-wms.c && \ - $(top_srcdir)/build-aux/qmi-codegen/qmi-codegen \ + $(PYTHON) $(top_srcdir)/build-aux/qmi-codegen/qmi-codegen \ --input $(top_srcdir)/data/qmi-service-wms.json \ --include $(top_srcdir)/data/qmi-common.json \ --output qmi-wms @@ -186,7 +197,7 @@ $(AM_V_GEN) \ rm -f qmi-pds.h && \ rm -f qmi-pds.c && \ - $(top_srcdir)/build-aux/qmi-codegen/qmi-codegen \ + $(PYTHON) $(top_srcdir)/build-aux/qmi-codegen/qmi-codegen \ --input $(top_srcdir)/data/qmi-service-pds.json \ --include $(top_srcdir)/data/qmi-common.json \ --output qmi-pds @@ -196,7 +207,7 @@ $(AM_V_GEN) \ rm -f qmi-pdc.h && \ rm -f qmi-pdc.c && \ - $(top_srcdir)/build-aux/qmi-codegen/qmi-codegen \ + $(PYTHON) $(top_srcdir)/build-aux/qmi-codegen/qmi-codegen \ --input $(top_srcdir)/data/qmi-service-pdc.json \ --include $(top_srcdir)/data/qmi-common.json \ --output qmi-pdc @@ -206,7 +217,7 @@ $(AM_V_GEN) \ rm -f qmi-pbm.h && \ rm -f qmi-pbm.c && \ - $(top_srcdir)/build-aux/qmi-codegen/qmi-codegen \ + $(PYTHON) $(top_srcdir)/build-aux/qmi-codegen/qmi-codegen \ --input $(top_srcdir)/data/qmi-service-pbm.json \ --include $(top_srcdir)/data/qmi-common.json \ --output qmi-pbm @@ -216,7 +227,7 @@ $(AM_V_GEN) \ rm -f qmi-uim.h && \ rm -f qmi-uim.c && \ - $(top_srcdir)/build-aux/qmi-codegen/qmi-codegen \ + $(PYTHON) $(top_srcdir)/build-aux/qmi-codegen/qmi-codegen \ --input $(top_srcdir)/data/qmi-service-uim.json \ --include $(top_srcdir)/data/qmi-common.json \ --output qmi-uim @@ -226,7 +237,7 @@ $(AM_V_GEN) \ rm -f qmi-oma.h && \ rm -f qmi-oma.c && \ - $(top_srcdir)/build-aux/qmi-codegen/qmi-codegen \ + $(PYTHON) $(top_srcdir)/build-aux/qmi-codegen/qmi-codegen \ --input $(top_srcdir)/data/qmi-service-oma.json \ --include $(top_srcdir)/data/qmi-common.json \ --output qmi-oma @@ -236,7 +247,7 @@ $(AM_V_GEN) \ rm -f qmi-wda.h && \ rm -f qmi-wda.c && \ - $(top_srcdir)/build-aux/qmi-codegen/qmi-codegen \ + $(PYTHON) $(top_srcdir)/build-aux/qmi-codegen/qmi-codegen \ --input $(top_srcdir)/data/qmi-service-wda.json \ --include $(top_srcdir)/data/qmi-common.json \ --output qmi-wda @@ -246,11 +257,31 @@ $(AM_V_GEN) \ rm -f qmi-voice.h && \ rm -f qmi-voice.c && \ - $(top_srcdir)/build-aux/qmi-codegen/qmi-codegen \ + $(PYTHON) $(top_srcdir)/build-aux/qmi-codegen/qmi-codegen \ --input $(top_srcdir)/data/qmi-service-voice.json \ --include $(top_srcdir)/data/qmi-common.json \ --output qmi-voice +# LOC service +qmi-loc.h qmi-loc.c qmi-loc.sections: $(top_srcdir)/data/qmi-service-loc.json $(top_srcdir)/build-aux/qmi-codegen/*.py $(top_srcdir)/build-aux/qmi-codegen/qmi-codegen + $(AM_V_GEN) \ + rm -f qmi-loc.h && \ + rm -f qmi-loc.c && \ + $(PYTHON) $(top_srcdir)/build-aux/qmi-codegen/qmi-codegen \ + --input $(top_srcdir)/data/qmi-service-loc.json \ + --include $(top_srcdir)/data/qmi-common.json \ + --output qmi-loc + +# QoS service +qmi-qos.h qmi-qos.c qmi-qos.sections: $(top_srcdir)/data/qmi-service-qos.json $(top_srcdir)/build-aux/qmi-codegen/*.py $(top_srcdir)/build-aux/qmi-codegen/qmi-codegen + $(AM_V_GEN) \ + rm -f qmi-qos.h && \ + rm -f qmi-qos.c && \ + $(PYTHON) $(top_srcdir)/build-aux/qmi-codegen/qmi-codegen \ + --input $(top_srcdir)/data/qmi-service-qos.json \ + --include $(top_srcdir)/data/qmi-common.json \ + --output qmi-qos + BUILT_SOURCES = $(GENERATED_H) $(GENERATED_C) nodist_libqmi_glib_generated_la_SOURCES = \ @@ -284,6 +315,9 @@ qmi-uim.h \ qmi-oma.h \ qmi-wda.h \ - qmi-voice.h + qmi-voice.h \ + qmi-loc.h \ + qmi-qos.h \ + $(NULL) CLEANFILES = $(GENERATED_H) $(GENERATED_C) $(GENERATED_SECTIONS) diff -Nru libqmi-1.18.0/src/libqmi-glib/generated/Makefile.in libqmi-1.22.0/src/libqmi-glib/generated/Makefile.in --- libqmi-1.18.0/src/libqmi-glib/generated/Makefile.in 2017-03-22 12:20:26.000000000 +0100 +++ libqmi-1.22.0/src/libqmi-glib/generated/Makefile.in 2019-01-08 15:17:16.000000000 +0100 @@ -1,7 +1,7 @@ -# Makefile.in generated by automake 1.15 from Makefile.am. +# Makefile.in generated by automake 1.16.1 from Makefile.am. # @configure_input@ -# Copyright (C) 1994-2014 Free Software Foundation, Inc. +# Copyright (C) 1994-2018 Free Software Foundation, Inc. # This Makefile.in is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, @@ -123,7 +123,9 @@ libqmi_glib_generated_la-qmi-uim.lo \ libqmi_glib_generated_la-qmi-oma.lo \ libqmi_glib_generated_la-qmi-wda.lo \ - libqmi_glib_generated_la-qmi-voice.lo + libqmi_glib_generated_la-qmi-voice.lo \ + libqmi_glib_generated_la-qmi-loc.lo \ + libqmi_glib_generated_la-qmi-qos.lo nodist_libqmi_glib_generated_la_OBJECTS = $(am__objects_1) \ $(am__objects_2) libqmi_glib_generated_la_OBJECTS = \ @@ -146,7 +148,27 @@ am__v_at_1 = DEFAULT_INCLUDES = -I.@am__isrc@ -I$(top_builddir) depcomp = $(SHELL) $(top_srcdir)/depcomp -am__depfiles_maybe = depfiles +am__maybe_remake_depfiles = depfiles +am__depfiles_remade = \ + ./$(DEPDIR)/libqmi_glib_generated_la-qmi-ctl.Plo \ + ./$(DEPDIR)/libqmi_glib_generated_la-qmi-dms.Plo \ + ./$(DEPDIR)/libqmi_glib_generated_la-qmi-enum-types-private.Plo \ + ./$(DEPDIR)/libqmi_glib_generated_la-qmi-enum-types.Plo \ + ./$(DEPDIR)/libqmi_glib_generated_la-qmi-error-quarks.Plo \ + ./$(DEPDIR)/libqmi_glib_generated_la-qmi-error-types.Plo \ + ./$(DEPDIR)/libqmi_glib_generated_la-qmi-flags64-types.Plo \ + ./$(DEPDIR)/libqmi_glib_generated_la-qmi-loc.Plo \ + ./$(DEPDIR)/libqmi_glib_generated_la-qmi-nas.Plo \ + ./$(DEPDIR)/libqmi_glib_generated_la-qmi-oma.Plo \ + ./$(DEPDIR)/libqmi_glib_generated_la-qmi-pbm.Plo \ + ./$(DEPDIR)/libqmi_glib_generated_la-qmi-pdc.Plo \ + ./$(DEPDIR)/libqmi_glib_generated_la-qmi-pds.Plo \ + ./$(DEPDIR)/libqmi_glib_generated_la-qmi-qos.Plo \ + ./$(DEPDIR)/libqmi_glib_generated_la-qmi-uim.Plo \ + ./$(DEPDIR)/libqmi_glib_generated_la-qmi-voice.Plo \ + ./$(DEPDIR)/libqmi_glib_generated_la-qmi-wda.Plo \ + ./$(DEPDIR)/libqmi_glib_generated_la-qmi-wds.Plo \ + ./$(DEPDIR)/libqmi_glib_generated_la-qmi-wms.Plo am__mv = mv -f COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \ $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) @@ -299,6 +321,11 @@ PKG_CONFIG = @PKG_CONFIG@ PKG_CONFIG_LIBDIR = @PKG_CONFIG_LIBDIR@ PKG_CONFIG_PATH = @PKG_CONFIG_PATH@ +PYTHON = @PYTHON@ +PYTHON_EXEC_PREFIX = @PYTHON_EXEC_PREFIX@ +PYTHON_PLATFORM = @PYTHON_PLATFORM@ +PYTHON_PREFIX = @PYTHON_PREFIX@ +PYTHON_VERSION = @PYTHON_VERSION@ QMI_GLIB_LT_AGE = @QMI_GLIB_LT_AGE@ QMI_GLIB_LT_CURRENT = @QMI_GLIB_LT_CURRENT@ QMI_GLIB_LT_REVISION = @QMI_GLIB_LT_REVISION@ @@ -356,9 +383,13 @@ mkdir_p = @mkdir_p@ oldincludedir = @oldincludedir@ pdfdir = @pdfdir@ +pkgpyexecdir = @pkgpyexecdir@ +pkgpythondir = @pkgpythondir@ prefix = @prefix@ program_transform_name = @program_transform_name@ psdir = @psdir@ +pyexecdir = @pyexecdir@ +pythondir = @pythondir@ sbindir = @sbindir@ sharedstatedir = @sharedstatedir@ srcdir = @srcdir@ @@ -384,7 +415,10 @@ qmi-uim.h \ qmi-oma.h \ qmi-wda.h \ - qmi-voice.h + qmi-voice.h \ + qmi-loc.h \ + qmi-qos.h \ + $(NULL) GENERATED_C = \ qmi-error-types.c \ @@ -403,7 +437,10 @@ qmi-uim.c \ qmi-oma.c \ qmi-wda.c \ - qmi-voice.c + qmi-voice.c \ + qmi-loc.c \ + qmi-qos.c \ + $(NULL) GENERATED_SECTIONS = \ qmi-ctl.sections \ @@ -417,7 +454,10 @@ qmi-uim.sections \ qmi-oma.sections \ qmi-wda.sections \ - qmi-voice.sections + qmi-voice.sections \ + qmi-loc.sections \ + qmi-qos.sections \ + $(NULL) # Enum/Flag types @@ -434,6 +474,8 @@ $(top_srcdir)/src/libqmi-glib/qmi-enums-oma.h \ $(top_srcdir)/src/libqmi-glib/qmi-enums-wda.h \ $(top_srcdir)/src/libqmi-glib/qmi-enums-voice.h \ + $(top_srcdir)/src/libqmi-glib/qmi-enums-loc.h \ + $(top_srcdir)/src/libqmi-glib/qmi-enums-qos.h \ $(top_srcdir)/src/libqmi-glib/qmi-device.h @@ -443,7 +485,7 @@ # 64bit flag types -FLAGS64 = $(top_srcdir)/src/libqmi-glib/qmi-flags64-dms.h $(top_srcdir)/src/libqmi-glib/qmi-flags64-nas.h +FLAGS64 = $(top_srcdir)/src/libqmi-glib/qmi-flags64-dms.h $(top_srcdir)/src/libqmi-glib/qmi-flags64-nas.h $(top_srcdir)/src/libqmi-glib/qmi-flags64-loc.h BUILT_SOURCES = $(GENERATED_H) $(GENERATED_C) nodist_libqmi_glib_generated_la_SOURCES = \ $(GENERATED_H) \ @@ -475,7 +517,10 @@ qmi-uim.h \ qmi-oma.h \ qmi-wda.h \ - qmi-voice.h + qmi-voice.h \ + qmi-loc.h \ + qmi-qos.h \ + $(NULL) CLEANFILES = $(GENERATED_H) $(GENERATED_C) $(GENERATED_SECTIONS) all: $(BUILT_SOURCES) @@ -500,8 +545,8 @@ *config.status*) \ cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ *) \ - echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ - cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ + echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles)'; \ + cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles);; \ esac; $(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) @@ -533,23 +578,31 @@ distclean-compile: -rm -f *.tab.c -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libqmi_glib_generated_la-qmi-ctl.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libqmi_glib_generated_la-qmi-dms.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libqmi_glib_generated_la-qmi-enum-types-private.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libqmi_glib_generated_la-qmi-enum-types.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libqmi_glib_generated_la-qmi-error-quarks.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libqmi_glib_generated_la-qmi-error-types.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libqmi_glib_generated_la-qmi-flags64-types.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libqmi_glib_generated_la-qmi-nas.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libqmi_glib_generated_la-qmi-oma.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libqmi_glib_generated_la-qmi-pbm.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libqmi_glib_generated_la-qmi-pdc.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libqmi_glib_generated_la-qmi-pds.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libqmi_glib_generated_la-qmi-uim.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libqmi_glib_generated_la-qmi-voice.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libqmi_glib_generated_la-qmi-wda.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libqmi_glib_generated_la-qmi-wds.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libqmi_glib_generated_la-qmi-wms.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libqmi_glib_generated_la-qmi-ctl.Plo@am__quote@ # am--include-marker +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libqmi_glib_generated_la-qmi-dms.Plo@am__quote@ # am--include-marker +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libqmi_glib_generated_la-qmi-enum-types-private.Plo@am__quote@ # am--include-marker +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libqmi_glib_generated_la-qmi-enum-types.Plo@am__quote@ # am--include-marker +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libqmi_glib_generated_la-qmi-error-quarks.Plo@am__quote@ # am--include-marker +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libqmi_glib_generated_la-qmi-error-types.Plo@am__quote@ # am--include-marker +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libqmi_glib_generated_la-qmi-flags64-types.Plo@am__quote@ # am--include-marker +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libqmi_glib_generated_la-qmi-loc.Plo@am__quote@ # am--include-marker +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libqmi_glib_generated_la-qmi-nas.Plo@am__quote@ # am--include-marker +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libqmi_glib_generated_la-qmi-oma.Plo@am__quote@ # am--include-marker +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libqmi_glib_generated_la-qmi-pbm.Plo@am__quote@ # am--include-marker +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libqmi_glib_generated_la-qmi-pdc.Plo@am__quote@ # am--include-marker +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libqmi_glib_generated_la-qmi-pds.Plo@am__quote@ # am--include-marker +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libqmi_glib_generated_la-qmi-qos.Plo@am__quote@ # am--include-marker +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libqmi_glib_generated_la-qmi-uim.Plo@am__quote@ # am--include-marker +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libqmi_glib_generated_la-qmi-voice.Plo@am__quote@ # am--include-marker +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libqmi_glib_generated_la-qmi-wda.Plo@am__quote@ # am--include-marker +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libqmi_glib_generated_la-qmi-wds.Plo@am__quote@ # am--include-marker +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libqmi_glib_generated_la-qmi-wms.Plo@am__quote@ # am--include-marker + +$(am__depfiles_remade): + @$(MKDIR_P) $(@D) + @echo '# dummy' >$@-t && $(am__mv) $@-t $@ + +am--depfiles: $(am__depfiles_remade) .c.o: @am__fastdepCC_TRUE@ $(AM_V_CC)$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< @@ -691,6 +744,20 @@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libqmi_glib_generated_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libqmi_glib_generated_la-qmi-voice.lo `test -f 'qmi-voice.c' || echo '$(srcdir)/'`qmi-voice.c +libqmi_glib_generated_la-qmi-loc.lo: qmi-loc.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libqmi_glib_generated_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libqmi_glib_generated_la-qmi-loc.lo -MD -MP -MF $(DEPDIR)/libqmi_glib_generated_la-qmi-loc.Tpo -c -o libqmi_glib_generated_la-qmi-loc.lo `test -f 'qmi-loc.c' || echo '$(srcdir)/'`qmi-loc.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libqmi_glib_generated_la-qmi-loc.Tpo $(DEPDIR)/libqmi_glib_generated_la-qmi-loc.Plo +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='qmi-loc.c' object='libqmi_glib_generated_la-qmi-loc.lo' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libqmi_glib_generated_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libqmi_glib_generated_la-qmi-loc.lo `test -f 'qmi-loc.c' || echo '$(srcdir)/'`qmi-loc.c + +libqmi_glib_generated_la-qmi-qos.lo: qmi-qos.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libqmi_glib_generated_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libqmi_glib_generated_la-qmi-qos.lo -MD -MP -MF $(DEPDIR)/libqmi_glib_generated_la-qmi-qos.Tpo -c -o libqmi_glib_generated_la-qmi-qos.lo `test -f 'qmi-qos.c' || echo '$(srcdir)/'`qmi-qos.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libqmi_glib_generated_la-qmi-qos.Tpo $(DEPDIR)/libqmi_glib_generated_la-qmi-qos.Plo +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='qmi-qos.c' object='libqmi_glib_generated_la-qmi-qos.lo' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libqmi_glib_generated_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libqmi_glib_generated_la-qmi-qos.lo `test -f 'qmi-qos.c' || echo '$(srcdir)/'`qmi-qos.c + mostlyclean-libtool: -rm -f *.lo @@ -770,7 +837,10 @@ distclean-tags: -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags -distdir: $(DISTFILES) +distdir: $(BUILT_SOURCES) + $(MAKE) $(AM_MAKEFLAGS) distdir-am + +distdir-am: $(DISTFILES) @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ list='$(DISTFILES)'; \ @@ -847,7 +917,25 @@ mostlyclean-am distclean: distclean-am - -rm -rf ./$(DEPDIR) + -rm -f ./$(DEPDIR)/libqmi_glib_generated_la-qmi-ctl.Plo + -rm -f ./$(DEPDIR)/libqmi_glib_generated_la-qmi-dms.Plo + -rm -f ./$(DEPDIR)/libqmi_glib_generated_la-qmi-enum-types-private.Plo + -rm -f ./$(DEPDIR)/libqmi_glib_generated_la-qmi-enum-types.Plo + -rm -f ./$(DEPDIR)/libqmi_glib_generated_la-qmi-error-quarks.Plo + -rm -f ./$(DEPDIR)/libqmi_glib_generated_la-qmi-error-types.Plo + -rm -f ./$(DEPDIR)/libqmi_glib_generated_la-qmi-flags64-types.Plo + -rm -f ./$(DEPDIR)/libqmi_glib_generated_la-qmi-loc.Plo + -rm -f ./$(DEPDIR)/libqmi_glib_generated_la-qmi-nas.Plo + -rm -f ./$(DEPDIR)/libqmi_glib_generated_la-qmi-oma.Plo + -rm -f ./$(DEPDIR)/libqmi_glib_generated_la-qmi-pbm.Plo + -rm -f ./$(DEPDIR)/libqmi_glib_generated_la-qmi-pdc.Plo + -rm -f ./$(DEPDIR)/libqmi_glib_generated_la-qmi-pds.Plo + -rm -f ./$(DEPDIR)/libqmi_glib_generated_la-qmi-qos.Plo + -rm -f ./$(DEPDIR)/libqmi_glib_generated_la-qmi-uim.Plo + -rm -f ./$(DEPDIR)/libqmi_glib_generated_la-qmi-voice.Plo + -rm -f ./$(DEPDIR)/libqmi_glib_generated_la-qmi-wda.Plo + -rm -f ./$(DEPDIR)/libqmi_glib_generated_la-qmi-wds.Plo + -rm -f ./$(DEPDIR)/libqmi_glib_generated_la-qmi-wms.Plo -rm -f Makefile distclean-am: clean-am distclean-compile distclean-generic \ distclean-tags @@ -893,7 +981,25 @@ installcheck-am: maintainer-clean: maintainer-clean-am - -rm -rf ./$(DEPDIR) + -rm -f ./$(DEPDIR)/libqmi_glib_generated_la-qmi-ctl.Plo + -rm -f ./$(DEPDIR)/libqmi_glib_generated_la-qmi-dms.Plo + -rm -f ./$(DEPDIR)/libqmi_glib_generated_la-qmi-enum-types-private.Plo + -rm -f ./$(DEPDIR)/libqmi_glib_generated_la-qmi-enum-types.Plo + -rm -f ./$(DEPDIR)/libqmi_glib_generated_la-qmi-error-quarks.Plo + -rm -f ./$(DEPDIR)/libqmi_glib_generated_la-qmi-error-types.Plo + -rm -f ./$(DEPDIR)/libqmi_glib_generated_la-qmi-flags64-types.Plo + -rm -f ./$(DEPDIR)/libqmi_glib_generated_la-qmi-loc.Plo + -rm -f ./$(DEPDIR)/libqmi_glib_generated_la-qmi-nas.Plo + -rm -f ./$(DEPDIR)/libqmi_glib_generated_la-qmi-oma.Plo + -rm -f ./$(DEPDIR)/libqmi_glib_generated_la-qmi-pbm.Plo + -rm -f ./$(DEPDIR)/libqmi_glib_generated_la-qmi-pdc.Plo + -rm -f ./$(DEPDIR)/libqmi_glib_generated_la-qmi-pds.Plo + -rm -f ./$(DEPDIR)/libqmi_glib_generated_la-qmi-qos.Plo + -rm -f ./$(DEPDIR)/libqmi_glib_generated_la-qmi-uim.Plo + -rm -f ./$(DEPDIR)/libqmi_glib_generated_la-qmi-voice.Plo + -rm -f ./$(DEPDIR)/libqmi_glib_generated_la-qmi-wda.Plo + -rm -f ./$(DEPDIR)/libqmi_glib_generated_la-qmi-wds.Plo + -rm -f ./$(DEPDIR)/libqmi_glib_generated_la-qmi-wms.Plo -rm -f Makefile maintainer-clean-am: distclean-am maintainer-clean-generic @@ -914,19 +1020,20 @@ .MAKE: all check install install-am install-strip -.PHONY: CTAGS GTAGS TAGS all all-am check check-am clean clean-generic \ - clean-libtool clean-noinstLTLIBRARIES cscopelist-am ctags \ - ctags-am distclean distclean-compile distclean-generic \ - distclean-libtool distclean-tags distdir dvi dvi-am html \ - html-am info info-am install install-am install-data \ - install-data-am install-dvi install-dvi-am install-exec \ - install-exec-am install-html install-html-am install-info \ - install-info-am install-man install-nodist_includeHEADERS \ - install-pdf install-pdf-am install-ps install-ps-am \ - install-strip installcheck installcheck-am installdirs \ - maintainer-clean maintainer-clean-generic mostlyclean \ - mostlyclean-compile mostlyclean-generic mostlyclean-libtool \ - pdf pdf-am ps ps-am tags tags-am uninstall uninstall-am \ +.PHONY: CTAGS GTAGS TAGS all all-am am--depfiles check check-am clean \ + clean-generic clean-libtool clean-noinstLTLIBRARIES \ + cscopelist-am ctags ctags-am distclean distclean-compile \ + distclean-generic distclean-libtool distclean-tags distdir dvi \ + dvi-am html html-am info info-am install install-am \ + install-data install-data-am install-dvi install-dvi-am \ + install-exec install-exec-am install-html install-html-am \ + install-info install-info-am install-man \ + install-nodist_includeHEADERS install-pdf install-pdf-am \ + install-ps install-ps-am install-strip installcheck \ + installcheck-am installdirs maintainer-clean \ + maintainer-clean-generic mostlyclean mostlyclean-compile \ + mostlyclean-generic mostlyclean-libtool pdf pdf-am ps ps-am \ + tags tags-am uninstall uninstall-am \ uninstall-nodist_includeHEADERS .PRECIOUS: Makefile @@ -953,7 +1060,7 @@ $(top_srcdir)/src/libqmi-glib/qmi-errors.h > $@ qmi-enum-types.h: $(ENUMS) $(top_srcdir)/build-aux/templates/qmi-enum-types-template.h $(AM_V_GEN) $(GLIB_MKENUMS) \ - --fhead "#ifndef __LIBQMI_GLIB_ENUM_TYPES_H__\n#define __LIBQMI_GLIB_ENUM_TYPES_H__\n#include \"qmi-enums.h\"\n#include \"qmi-enums-wds.h\"\n#include \"qmi-enums-dms.h\"\n#include \"qmi-enums-nas.h\"\n#include \"qmi-enums-wms.h\"\n#include \"qmi-enums-pds.h\"\n#include \"qmi-enums-pdc.h\"\n#include \"qmi-enums-pbm.h\"\n#include \"qmi-enums-uim.h\"\n#include \"qmi-enums-oma.h\"\n#include \"qmi-enums-wda.h\"\n#include \"qmi-enums-voice.h\"\n#include \"qmi-device.h\"\n" \ + --fhead "#ifndef __LIBQMI_GLIB_ENUM_TYPES_H__\n#define __LIBQMI_GLIB_ENUM_TYPES_H__\n#include \"qmi-enums.h\"\n#include \"qmi-enums-wds.h\"\n#include \"qmi-enums-dms.h\"\n#include \"qmi-enums-nas.h\"\n#include \"qmi-enums-wms.h\"\n#include \"qmi-enums-pds.h\"\n#include \"qmi-enums-pdc.h\"\n#include \"qmi-enums-pbm.h\"\n#include \"qmi-enums-uim.h\"\n#include \"qmi-enums-oma.h\"\n#include \"qmi-enums-wda.h\"\n#include \"qmi-enums-voice.h\"\n#include \"qmi-enums-loc.h\"\n#include \"qmi-enums-qos.h\"\n#include \"qmi-device.h\"\n" \ --template $(top_srcdir)/build-aux/templates/qmi-enum-types-template.h \ --ftail "#endif /* __LIBQMI_GLIB_ENUM_TYPES_H__ */\n" \ $(ENUMS) > $@ @@ -977,7 +1084,7 @@ $(PRIVATE_ENUMS) > $@ qmi-flags64-types.h: $(FLAGS64) $(top_srcdir)/build-aux/templates/qmi-flags64-types-template.h $(AM_V_GEN) $(GLIB_MKENUMS) \ - --fhead "#ifndef __LIBQMI_GLIB_FLAGS64_TYPES_H__\n#define __LIBQMI_GLIB_FLAGS64_TYPES_H__\n#include \"qmi-flags64-dms.h\"\n#include \"qmi-flags64-nas.h\"\n" \ + --fhead "#ifndef __LIBQMI_GLIB_FLAGS64_TYPES_H__\n#define __LIBQMI_GLIB_FLAGS64_TYPES_H__\n#include \"qmi-flags64-dms.h\"\n#include \"qmi-flags64-nas.h\"\n#include \"qmi-flags64-loc.h\"\n" \ --template $(top_srcdir)/build-aux/templates/qmi-flags64-types-template.h \ --ftail "#endif /* __LIBQMI_GLIB_FLAGS64_TYPES_H__ */\n" \ $(FLAGS64) > $@ @@ -993,7 +1100,7 @@ $(AM_V_GEN) \ rm -f qmi-ctl.h && \ rm -f qmi-ctl.c && \ - $(top_srcdir)/build-aux/qmi-codegen/qmi-codegen \ + $(PYTHON) $(top_srcdir)/build-aux/qmi-codegen/qmi-codegen \ --input $(top_srcdir)/data/qmi-service-ctl.json \ --include $(top_srcdir)/data/qmi-common.json \ --output qmi-ctl @@ -1003,7 +1110,7 @@ $(AM_V_GEN) \ rm -f qmi-dms.h && \ rm -f qmi-dms.c && \ - $(top_srcdir)/build-aux/qmi-codegen/qmi-codegen \ + $(PYTHON) $(top_srcdir)/build-aux/qmi-codegen/qmi-codegen \ --input $(top_srcdir)/data/qmi-service-dms.json \ --include $(top_srcdir)/data/qmi-common.json \ --output qmi-dms @@ -1013,7 +1120,7 @@ $(AM_V_GEN) \ rm -f qmi-wds.h && \ rm -f qmi-wds.c && \ - $(top_srcdir)/build-aux/qmi-codegen/qmi-codegen \ + $(PYTHON) $(top_srcdir)/build-aux/qmi-codegen/qmi-codegen \ --input $(top_srcdir)/data/qmi-service-wds.json \ --include $(top_srcdir)/data/qmi-common.json \ --output qmi-wds @@ -1023,7 +1130,7 @@ $(AM_V_GEN) \ rm -f qmi-nas.h && \ rm -f qmi-nas.c && \ - $(top_srcdir)/build-aux/qmi-codegen/qmi-codegen \ + $(PYTHON) $(top_srcdir)/build-aux/qmi-codegen/qmi-codegen \ --input $(top_srcdir)/data/qmi-service-nas.json \ --include $(top_srcdir)/data/qmi-common.json \ --output qmi-nas @@ -1033,7 +1140,7 @@ $(AM_V_GEN) \ rm -f qmi-wms.h && \ rm -f qmi-wms.c && \ - $(top_srcdir)/build-aux/qmi-codegen/qmi-codegen \ + $(PYTHON) $(top_srcdir)/build-aux/qmi-codegen/qmi-codegen \ --input $(top_srcdir)/data/qmi-service-wms.json \ --include $(top_srcdir)/data/qmi-common.json \ --output qmi-wms @@ -1043,7 +1150,7 @@ $(AM_V_GEN) \ rm -f qmi-pds.h && \ rm -f qmi-pds.c && \ - $(top_srcdir)/build-aux/qmi-codegen/qmi-codegen \ + $(PYTHON) $(top_srcdir)/build-aux/qmi-codegen/qmi-codegen \ --input $(top_srcdir)/data/qmi-service-pds.json \ --include $(top_srcdir)/data/qmi-common.json \ --output qmi-pds @@ -1053,7 +1160,7 @@ $(AM_V_GEN) \ rm -f qmi-pdc.h && \ rm -f qmi-pdc.c && \ - $(top_srcdir)/build-aux/qmi-codegen/qmi-codegen \ + $(PYTHON) $(top_srcdir)/build-aux/qmi-codegen/qmi-codegen \ --input $(top_srcdir)/data/qmi-service-pdc.json \ --include $(top_srcdir)/data/qmi-common.json \ --output qmi-pdc @@ -1063,7 +1170,7 @@ $(AM_V_GEN) \ rm -f qmi-pbm.h && \ rm -f qmi-pbm.c && \ - $(top_srcdir)/build-aux/qmi-codegen/qmi-codegen \ + $(PYTHON) $(top_srcdir)/build-aux/qmi-codegen/qmi-codegen \ --input $(top_srcdir)/data/qmi-service-pbm.json \ --include $(top_srcdir)/data/qmi-common.json \ --output qmi-pbm @@ -1073,7 +1180,7 @@ $(AM_V_GEN) \ rm -f qmi-uim.h && \ rm -f qmi-uim.c && \ - $(top_srcdir)/build-aux/qmi-codegen/qmi-codegen \ + $(PYTHON) $(top_srcdir)/build-aux/qmi-codegen/qmi-codegen \ --input $(top_srcdir)/data/qmi-service-uim.json \ --include $(top_srcdir)/data/qmi-common.json \ --output qmi-uim @@ -1083,7 +1190,7 @@ $(AM_V_GEN) \ rm -f qmi-oma.h && \ rm -f qmi-oma.c && \ - $(top_srcdir)/build-aux/qmi-codegen/qmi-codegen \ + $(PYTHON) $(top_srcdir)/build-aux/qmi-codegen/qmi-codegen \ --input $(top_srcdir)/data/qmi-service-oma.json \ --include $(top_srcdir)/data/qmi-common.json \ --output qmi-oma @@ -1093,7 +1200,7 @@ $(AM_V_GEN) \ rm -f qmi-wda.h && \ rm -f qmi-wda.c && \ - $(top_srcdir)/build-aux/qmi-codegen/qmi-codegen \ + $(PYTHON) $(top_srcdir)/build-aux/qmi-codegen/qmi-codegen \ --input $(top_srcdir)/data/qmi-service-wda.json \ --include $(top_srcdir)/data/qmi-common.json \ --output qmi-wda @@ -1103,11 +1210,31 @@ $(AM_V_GEN) \ rm -f qmi-voice.h && \ rm -f qmi-voice.c && \ - $(top_srcdir)/build-aux/qmi-codegen/qmi-codegen \ + $(PYTHON) $(top_srcdir)/build-aux/qmi-codegen/qmi-codegen \ --input $(top_srcdir)/data/qmi-service-voice.json \ --include $(top_srcdir)/data/qmi-common.json \ --output qmi-voice +# LOC service +qmi-loc.h qmi-loc.c qmi-loc.sections: $(top_srcdir)/data/qmi-service-loc.json $(top_srcdir)/build-aux/qmi-codegen/*.py $(top_srcdir)/build-aux/qmi-codegen/qmi-codegen + $(AM_V_GEN) \ + rm -f qmi-loc.h && \ + rm -f qmi-loc.c && \ + $(PYTHON) $(top_srcdir)/build-aux/qmi-codegen/qmi-codegen \ + --input $(top_srcdir)/data/qmi-service-loc.json \ + --include $(top_srcdir)/data/qmi-common.json \ + --output qmi-loc + +# QoS service +qmi-qos.h qmi-qos.c qmi-qos.sections: $(top_srcdir)/data/qmi-service-qos.json $(top_srcdir)/build-aux/qmi-codegen/*.py $(top_srcdir)/build-aux/qmi-codegen/qmi-codegen + $(AM_V_GEN) \ + rm -f qmi-qos.h && \ + rm -f qmi-qos.c && \ + $(PYTHON) $(top_srcdir)/build-aux/qmi-codegen/qmi-codegen \ + --input $(top_srcdir)/data/qmi-service-qos.json \ + --include $(top_srcdir)/data/qmi-common.json \ + --output qmi-qos + # Tell versions [3.59,3.63) of GNU make to not export all variables. # Otherwise a system limit (for SysV at least) may be exceeded. .NOEXPORT: diff -Nru libqmi-1.18.0/src/libqmi-glib/libqmi-glib.h libqmi-1.22.0/src/libqmi-glib/libqmi-glib.h --- libqmi-1.18.0/src/libqmi-glib/libqmi-glib.h 2017-03-21 14:26:54.000000000 +0100 +++ libqmi-1.22.0/src/libqmi-glib/libqmi-glib.h 2019-01-08 14:09:47.000000000 +0100 @@ -74,6 +74,13 @@ #include "qmi-enums-voice.h" #include "qmi-voice.h" +#include "qmi-flags64-loc.h" +#include "qmi-enums-loc.h" +#include "qmi-loc.h" + +#include "qmi-enums-qos.h" +#include "qmi-qos.h" + /* generated */ #include "qmi-error-types.h" #include "qmi-enum-types.h" diff -Nru libqmi-1.18.0/src/libqmi-glib/Makefile.am libqmi-1.22.0/src/libqmi-glib/Makefile.am --- libqmi-1.18.0/src/libqmi-glib/Makefile.am 2017-03-21 14:26:54.000000000 +0100 +++ libqmi-1.22.0/src/libqmi-glib/Makefile.am 2019-01-08 14:09:47.000000000 +0100 @@ -21,7 +21,7 @@ qmi-version.h \ qmi-errors.h \ qmi-enums-wds.h qmi-enums-wds.c \ - qmi-enums-dms.h qmi-flags64-dms.h \ + qmi-enums-dms.h qmi-flags64-dms.h qmi-enums-dms.c \ qmi-enums-nas.h qmi-flags64-nas.h\ qmi-enums-wms.h \ qmi-enums-pds.h \ @@ -31,6 +31,8 @@ qmi-enums-oma.h \ qmi-enums-wda.h \ qmi-enums-voice.h \ + qmi-enums-loc.h qmi-flags64-loc.h \ + qmi-enums-qos.h \ qmi-enums.h qmi-enums-private.h \ qmi-utils.h qmi-utils.c \ qmi-compat.h qmi-compat.c \ @@ -67,6 +69,8 @@ qmi-enums-oma.h \ qmi-enums-wda.h \ qmi-enums-voice.h \ + qmi-enums-loc.h qmi-flags64-loc.h \ + qmi-enums-qos.h \ qmi-utils.h \ qmi-message.h \ qmi-message-context.h \ diff -Nru libqmi-1.18.0/src/libqmi-glib/Makefile.in libqmi-1.22.0/src/libqmi-glib/Makefile.in --- libqmi-1.18.0/src/libqmi-glib/Makefile.in 2017-03-22 12:20:26.000000000 +0100 +++ libqmi-1.22.0/src/libqmi-glib/Makefile.in 2019-01-08 15:17:16.000000000 +0100 @@ -1,7 +1,7 @@ -# Makefile.in generated by automake 1.15 from Makefile.am. +# Makefile.in generated by automake 1.16.1 from Makefile.am. # @configure_input@ -# Copyright (C) 1994-2014 Free Software Foundation, Inc. +# Copyright (C) 1994-2018 Free Software Foundation, Inc. # This Makefile.in is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, @@ -137,8 +137,8 @@ libqmi_glib_la_DEPENDENCIES = ${top_builddir}/src/libqmi-glib/generated/libqmi-glib-generated.la \ $(am__DEPENDENCIES_1) $(am__DEPENDENCIES_1) am_libqmi_glib_la_OBJECTS = libqmi_glib_la-qmi-enums-wds.lo \ - libqmi_glib_la-qmi-utils.lo libqmi_glib_la-qmi-compat.lo \ - libqmi_glib_la-qmi-message.lo \ + libqmi_glib_la-qmi-enums-dms.lo libqmi_glib_la-qmi-utils.lo \ + libqmi_glib_la-qmi-compat.lo libqmi_glib_la-qmi-message.lo \ libqmi_glib_la-qmi-message-context.lo \ libqmi_glib_la-qmi-device.lo libqmi_glib_la-qmi-client.lo \ libqmi_glib_la-qmi-proxy.lo @@ -165,7 +165,16 @@ am__v_at_1 = DEFAULT_INCLUDES = -I.@am__isrc@ -I$(top_builddir) depcomp = $(SHELL) $(top_srcdir)/depcomp -am__depfiles_maybe = depfiles +am__maybe_remake_depfiles = depfiles +am__depfiles_remade = ./$(DEPDIR)/libqmi_glib_la-qmi-client.Plo \ + ./$(DEPDIR)/libqmi_glib_la-qmi-compat.Plo \ + ./$(DEPDIR)/libqmi_glib_la-qmi-device.Plo \ + ./$(DEPDIR)/libqmi_glib_la-qmi-enums-dms.Plo \ + ./$(DEPDIR)/libqmi_glib_la-qmi-enums-wds.Plo \ + ./$(DEPDIR)/libqmi_glib_la-qmi-message-context.Plo \ + ./$(DEPDIR)/libqmi_glib_la-qmi-message.Plo \ + ./$(DEPDIR)/libqmi_glib_la-qmi-proxy.Plo \ + ./$(DEPDIR)/libqmi_glib_la-qmi-utils.Plo am__mv = mv -f COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \ $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) @@ -208,7 +217,7 @@ $(RECURSIVE_CLEAN_TARGETS) \ $(am__extra_recursive_targets) AM_RECURSIVE_TARGETS = $(am__recursive_targets:-recursive=) TAGS CTAGS \ - distdir + distdir distdir-am am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP) # Read a list of newline-separated strings from the standard input, # and print each of them once, without duplicates. Input order is @@ -333,6 +342,11 @@ PKG_CONFIG = @PKG_CONFIG@ PKG_CONFIG_LIBDIR = @PKG_CONFIG_LIBDIR@ PKG_CONFIG_PATH = @PKG_CONFIG_PATH@ +PYTHON = @PYTHON@ +PYTHON_EXEC_PREFIX = @PYTHON_EXEC_PREFIX@ +PYTHON_PLATFORM = @PYTHON_PLATFORM@ +PYTHON_PREFIX = @PYTHON_PREFIX@ +PYTHON_VERSION = @PYTHON_VERSION@ QMI_GLIB_LT_AGE = @QMI_GLIB_LT_AGE@ QMI_GLIB_LT_CURRENT = @QMI_GLIB_LT_CURRENT@ QMI_GLIB_LT_REVISION = @QMI_GLIB_LT_REVISION@ @@ -390,9 +404,13 @@ mkdir_p = @mkdir_p@ oldincludedir = @oldincludedir@ pdfdir = @pdfdir@ +pkgpyexecdir = @pkgpyexecdir@ +pkgpythondir = @pkgpythondir@ prefix = @prefix@ program_transform_name = @program_transform_name@ psdir = @psdir@ +pyexecdir = @pyexecdir@ +pythondir = @pythondir@ sbindir = @sbindir@ sharedstatedir = @sharedstatedir@ srcdir = @srcdir@ @@ -421,7 +439,7 @@ qmi-version.h \ qmi-errors.h \ qmi-enums-wds.h qmi-enums-wds.c \ - qmi-enums-dms.h qmi-flags64-dms.h \ + qmi-enums-dms.h qmi-flags64-dms.h qmi-enums-dms.c \ qmi-enums-nas.h qmi-flags64-nas.h\ qmi-enums-wms.h \ qmi-enums-pds.h \ @@ -431,6 +449,8 @@ qmi-enums-oma.h \ qmi-enums-wda.h \ qmi-enums-voice.h \ + qmi-enums-loc.h qmi-flags64-loc.h \ + qmi-enums-qos.h \ qmi-enums.h qmi-enums-private.h \ qmi-utils.h qmi-utils.c \ qmi-compat.h qmi-compat.c \ @@ -466,6 +486,8 @@ qmi-enums-oma.h \ qmi-enums-wda.h \ qmi-enums-voice.h \ + qmi-enums-loc.h qmi-flags64-loc.h \ + qmi-enums-qos.h \ qmi-utils.h \ qmi-message.h \ qmi-message-context.h \ @@ -497,8 +519,8 @@ *config.status*) \ cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ *) \ - echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ - cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ + echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles)'; \ + cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles);; \ esac; $(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) @@ -556,14 +578,21 @@ distclean-compile: -rm -f *.tab.c -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libqmi_glib_la-qmi-client.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libqmi_glib_la-qmi-compat.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libqmi_glib_la-qmi-device.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libqmi_glib_la-qmi-enums-wds.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libqmi_glib_la-qmi-message-context.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libqmi_glib_la-qmi-message.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libqmi_glib_la-qmi-proxy.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libqmi_glib_la-qmi-utils.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libqmi_glib_la-qmi-client.Plo@am__quote@ # am--include-marker +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libqmi_glib_la-qmi-compat.Plo@am__quote@ # am--include-marker +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libqmi_glib_la-qmi-device.Plo@am__quote@ # am--include-marker +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libqmi_glib_la-qmi-enums-dms.Plo@am__quote@ # am--include-marker +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libqmi_glib_la-qmi-enums-wds.Plo@am__quote@ # am--include-marker +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libqmi_glib_la-qmi-message-context.Plo@am__quote@ # am--include-marker +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libqmi_glib_la-qmi-message.Plo@am__quote@ # am--include-marker +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libqmi_glib_la-qmi-proxy.Plo@am__quote@ # am--include-marker +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libqmi_glib_la-qmi-utils.Plo@am__quote@ # am--include-marker + +$(am__depfiles_remade): + @$(MKDIR_P) $(@D) + @echo '# dummy' >$@-t && $(am__mv) $@-t $@ + +am--depfiles: $(am__depfiles_remade) .c.o: @am__fastdepCC_TRUE@ $(AM_V_CC)$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< @@ -593,6 +622,13 @@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libqmi_glib_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libqmi_glib_la-qmi-enums-wds.lo `test -f 'qmi-enums-wds.c' || echo '$(srcdir)/'`qmi-enums-wds.c +libqmi_glib_la-qmi-enums-dms.lo: qmi-enums-dms.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libqmi_glib_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libqmi_glib_la-qmi-enums-dms.lo -MD -MP -MF $(DEPDIR)/libqmi_glib_la-qmi-enums-dms.Tpo -c -o libqmi_glib_la-qmi-enums-dms.lo `test -f 'qmi-enums-dms.c' || echo '$(srcdir)/'`qmi-enums-dms.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libqmi_glib_la-qmi-enums-dms.Tpo $(DEPDIR)/libqmi_glib_la-qmi-enums-dms.Plo +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='qmi-enums-dms.c' object='libqmi_glib_la-qmi-enums-dms.lo' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libqmi_glib_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libqmi_glib_la-qmi-enums-dms.lo `test -f 'qmi-enums-dms.c' || echo '$(srcdir)/'`qmi-enums-dms.c + libqmi_glib_la-qmi-utils.lo: qmi-utils.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libqmi_glib_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libqmi_glib_la-qmi-utils.lo -MD -MP -MF $(DEPDIR)/libqmi_glib_la-qmi-utils.Tpo -c -o libqmi_glib_la-qmi-utils.lo `test -f 'qmi-utils.c' || echo '$(srcdir)/'`qmi-utils.c @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libqmi_glib_la-qmi-utils.Tpo $(DEPDIR)/libqmi_glib_la-qmi-utils.Plo @@ -768,7 +804,10 @@ distclean-tags: -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags -distdir: $(DISTFILES) +distdir: $(BUILT_SOURCES) + $(MAKE) $(AM_MAKEFLAGS) distdir-am + +distdir-am: $(DISTFILES) @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ list='$(DISTFILES)'; \ @@ -867,7 +906,15 @@ mostlyclean-am distclean: distclean-recursive - -rm -rf ./$(DEPDIR) + -rm -f ./$(DEPDIR)/libqmi_glib_la-qmi-client.Plo + -rm -f ./$(DEPDIR)/libqmi_glib_la-qmi-compat.Plo + -rm -f ./$(DEPDIR)/libqmi_glib_la-qmi-device.Plo + -rm -f ./$(DEPDIR)/libqmi_glib_la-qmi-enums-dms.Plo + -rm -f ./$(DEPDIR)/libqmi_glib_la-qmi-enums-wds.Plo + -rm -f ./$(DEPDIR)/libqmi_glib_la-qmi-message-context.Plo + -rm -f ./$(DEPDIR)/libqmi_glib_la-qmi-message.Plo + -rm -f ./$(DEPDIR)/libqmi_glib_la-qmi-proxy.Plo + -rm -f ./$(DEPDIR)/libqmi_glib_la-qmi-utils.Plo -rm -f Makefile distclean-am: clean-am distclean-compile distclean-generic \ distclean-tags @@ -913,7 +960,15 @@ installcheck-am: maintainer-clean: maintainer-clean-recursive - -rm -rf ./$(DEPDIR) + -rm -f ./$(DEPDIR)/libqmi_glib_la-qmi-client.Plo + -rm -f ./$(DEPDIR)/libqmi_glib_la-qmi-compat.Plo + -rm -f ./$(DEPDIR)/libqmi_glib_la-qmi-device.Plo + -rm -f ./$(DEPDIR)/libqmi_glib_la-qmi-enums-dms.Plo + -rm -f ./$(DEPDIR)/libqmi_glib_la-qmi-enums-wds.Plo + -rm -f ./$(DEPDIR)/libqmi_glib_la-qmi-message-context.Plo + -rm -f ./$(DEPDIR)/libqmi_glib_la-qmi-message.Plo + -rm -f ./$(DEPDIR)/libqmi_glib_la-qmi-proxy.Plo + -rm -f ./$(DEPDIR)/libqmi_glib_la-qmi-utils.Plo -rm -f Makefile maintainer-clean-am: distclean-am maintainer-clean-generic @@ -934,21 +989,22 @@ .MAKE: $(am__recursive_targets) install-am install-strip -.PHONY: $(am__recursive_targets) CTAGS GTAGS TAGS all all-am check \ - check-am clean clean-generic clean-libLTLIBRARIES \ - clean-libtool cscopelist-am ctags ctags-am distclean \ - distclean-compile distclean-generic distclean-libtool \ - distclean-tags distdir dvi dvi-am html html-am info info-am \ - install install-am install-data install-data-am install-dvi \ - install-dvi-am install-exec install-exec-am install-html \ - install-html-am install-includeHEADERS install-info \ - install-info-am install-libLTLIBRARIES install-man install-pdf \ - install-pdf-am install-ps install-ps-am install-strip \ - installcheck installcheck-am installdirs installdirs-am \ - maintainer-clean maintainer-clean-generic mostlyclean \ - mostlyclean-compile mostlyclean-generic mostlyclean-libtool \ - pdf pdf-am ps ps-am tags tags-am uninstall uninstall-am \ - uninstall-includeHEADERS uninstall-libLTLIBRARIES +.PHONY: $(am__recursive_targets) CTAGS GTAGS TAGS all all-am \ + am--depfiles check check-am clean clean-generic \ + clean-libLTLIBRARIES clean-libtool cscopelist-am ctags \ + ctags-am distclean distclean-compile distclean-generic \ + distclean-libtool distclean-tags distdir dvi dvi-am html \ + html-am info info-am install install-am install-data \ + install-data-am install-dvi install-dvi-am install-exec \ + install-exec-am install-html install-html-am \ + install-includeHEADERS install-info install-info-am \ + install-libLTLIBRARIES install-man install-pdf install-pdf-am \ + install-ps install-ps-am install-strip installcheck \ + installcheck-am installdirs installdirs-am maintainer-clean \ + maintainer-clean-generic mostlyclean mostlyclean-compile \ + mostlyclean-generic mostlyclean-libtool pdf pdf-am ps ps-am \ + tags tags-am uninstall uninstall-am uninstall-includeHEADERS \ + uninstall-libLTLIBRARIES .PRECIOUS: Makefile diff -Nru libqmi-1.18.0/src/libqmi-glib/qmi-client.c libqmi-1.22.0/src/libqmi-glib/qmi-client.c --- libqmi-1.18.0/src/libqmi-glib/qmi-client.c 2017-03-21 14:26:54.000000000 +0100 +++ libqmi-1.22.0/src/libqmi-glib/qmi-client.c 2018-03-20 21:33:05.000000000 +0100 @@ -37,6 +37,7 @@ PROP_CID, PROP_VERSION_MAJOR, PROP_VERSION_MINOR, + PROP_VALID, PROP_LAST }; @@ -93,6 +94,16 @@ } gboolean +qmi_client_is_valid (QmiClient *self) +{ + g_return_val_if_fail (QMI_IS_CLIENT (self), FALSE); + + return (self->priv->service != QMI_SERVICE_UNKNOWN && + QMI_IS_DEVICE (self->priv->device) && + ((self->priv->cid != QMI_CID_NONE || self->priv->service == QMI_SERVICE_CTL))); +} + +gboolean qmi_client_get_version (QmiClient *self, guint *major, guint *minor) @@ -218,6 +229,9 @@ case PROP_VERSION_MINOR: g_value_set_uint (value, self->priv->version_minor); break; + case PROP_VALID: + g_value_set_boolean (value, qmi_client_is_valid (self)); + break; default: G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec); break; @@ -320,4 +334,17 @@ 0, G_PARAM_READWRITE); g_object_class_install_property (object_class, PROP_VERSION_MINOR, properties[PROP_VERSION_MINOR]); + + /** + * QmiClient:client-valid: + * + * Since: 1.20 + */ + properties[PROP_VALID] = + g_param_spec_boolean (QMI_CLIENT_VALID, + "Valid", + "Whether the client is valid and usable", + FALSE, + G_PARAM_READABLE); + g_object_class_install_property (object_class, PROP_VALID, properties[PROP_VALID]); } diff -Nru libqmi-1.18.0/src/libqmi-glib/qmi-client.h libqmi-1.22.0/src/libqmi-glib/qmi-client.h --- libqmi-1.18.0/src/libqmi-glib/qmi-client.h 2017-03-21 14:26:54.000000000 +0100 +++ libqmi-1.22.0/src/libqmi-glib/qmi-client.h 2019-01-08 14:09:47.000000000 +0100 @@ -122,6 +122,15 @@ #define QMI_CLIENT_VERSION_MINOR "client-version-minor" /** + * QMI_CLIENT_VALID: + * + * Symbol defining the #QmiClient:client-valid property. + * + * Since: 1.20 + */ +#define QMI_CLIENT_VALID "client-valid" + +/** * QmiClient: * * The #QmiClient structure contains private data and should only be accessed @@ -196,6 +205,25 @@ guint8 qmi_client_get_cid (QmiClient *self); /** + * qmi_client_is_valid: + * @self: a #QmiClient. + * + * Checks whether #QmiClient is a valid and usable client. + * + * The client is marked as invalid as soon as the client id is released or when + * the associated #QmiDevice is closed. + * + * This method may be used if the caller needs to ensure validity before a + * command is attempted, e.g. if the lifecycle of the object is managed in some + * other place and the caller just has a reference to the #QmiClient. + * + * Returns: %TRUE if the client is valid, %FALSE otherwise. + * + * Since: 1.20 + */ +gboolean qmi_client_is_valid (QmiClient *self); + +/** * qmi_client_get_version: * @self: A #QmiClient * @major: placeholder for the output major version. diff -Nru libqmi-1.18.0/src/libqmi-glib/qmi-compat.c libqmi-1.22.0/src/libqmi-glib/qmi-compat.c --- libqmi-1.18.0/src/libqmi-glib/qmi-compat.c 2017-03-21 14:26:54.000000000 +0100 +++ libqmi-1.22.0/src/libqmi-glib/qmi-compat.c 2019-01-08 14:09:47.000000000 +0100 @@ -16,10 +16,614 @@ * Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, * Boston, MA 02110-1301 USA. * - * Copyright (C) 2016-2017 Aleksander Morgado + * Copyright (C) 2016-2018 Aleksander Morgado */ +#include + #include "qmi-compat.h" +#include "qmi-utils.h" + +#ifndef QMI_DISABLE_DEPRECATED + + +#if defined UTILS_ENABLE_TRACE +static void +print_read_bytes_trace (const gchar *type, + gconstpointer buffer, + gconstpointer out, + guint n_bytes) +{ + gchar *str1; + gchar *str2; + + str1 = __qmi_utils_str_hex (buffer, n_bytes, ':'); + str2 = __qmi_utils_str_hex (out, n_bytes, ':'); + + g_debug ("Read %s (%s) --> (%s)", type, str1, str2); + g_warn_if_fail (g_str_equal (str1, str2)); + + g_free (str1); + g_free (str2); +} +#else +#define print_read_bytes_trace(...) +#endif + +void +qmi_utils_read_guint8_from_buffer (const guint8 **buffer, + guint16 *buffer_size, + guint8 *out) +{ + g_assert (out != NULL); + g_assert (buffer != NULL); + g_assert (buffer_size != NULL); + g_assert (*buffer_size >= 1); + + *out = (*buffer)[0]; + + print_read_bytes_trace ("guint8", &(*buffer)[0], out, 1); + + *buffer = &((*buffer)[1]); + *buffer_size = (*buffer_size) - 1; +} + +void +qmi_utils_read_gint8_from_buffer (const guint8 **buffer, + guint16 *buffer_size, + gint8 *out) +{ + g_assert (out != NULL); + g_assert (buffer != NULL); + g_assert (buffer_size != NULL); + g_assert (*buffer_size >= 1); + + *out = (gint8)(*buffer)[0]; + + print_read_bytes_trace ("gint8", &(*buffer)[0], out, 1); + + *buffer = &((*buffer)[1]); + *buffer_size = (*buffer_size) - 1; +} + +void +qmi_utils_read_guint16_from_buffer (const guint8 **buffer, + guint16 *buffer_size, + QmiEndian endian, + guint16 *out) +{ + g_assert (out != NULL); + g_assert (buffer != NULL); + g_assert (buffer_size != NULL); + g_assert (*buffer_size >= 2); + + memcpy (out, &((*buffer)[0]), 2); + if (endian == QMI_ENDIAN_BIG) + *out = GUINT16_FROM_BE (*out); + else + *out = GUINT16_FROM_LE (*out); + + print_read_bytes_trace ("guint16", &(*buffer)[0], out, 2); + + *buffer = &((*buffer)[2]); + *buffer_size = (*buffer_size) - 2; +} + +void +qmi_utils_read_gint16_from_buffer (const guint8 **buffer, + guint16 *buffer_size, + QmiEndian endian, + gint16 *out) +{ + g_assert (out != NULL); + g_assert (buffer != NULL); + g_assert (buffer_size != NULL); + g_assert (*buffer_size >= 2); + + memcpy (out, &((*buffer)[0]), 2); + if (endian == QMI_ENDIAN_BIG) + *out = GINT16_FROM_BE (*out); + else + *out = GINT16_FROM_LE (*out); + + print_read_bytes_trace ("gint16", &(*buffer)[0], out, 2); + + *buffer = &((*buffer)[2]); + *buffer_size = (*buffer_size) - 2; +} + +void +qmi_utils_read_guint32_from_buffer (const guint8 **buffer, + guint16 *buffer_size, + QmiEndian endian, + guint32 *out) +{ + g_assert (out != NULL); + g_assert (buffer != NULL); + g_assert (buffer_size != NULL); + g_assert (*buffer_size >= 4); + + memcpy (out, &((*buffer)[0]), 4); + if (endian == QMI_ENDIAN_BIG) + *out = GUINT32_FROM_BE (*out); + else + *out = GUINT32_FROM_LE (*out); + + print_read_bytes_trace ("guint32", &(*buffer)[0], out, 4); + + *buffer = &((*buffer)[4]); + *buffer_size = (*buffer_size) - 4; +} + +void +qmi_utils_read_gint32_from_buffer (const guint8 **buffer, + guint16 *buffer_size, + QmiEndian endian, + gint32 *out) +{ + g_assert (out != NULL); + g_assert (buffer != NULL); + g_assert (buffer_size != NULL); + g_assert (*buffer_size >= 4); + + memcpy (out, &((*buffer)[0]), 4); + if (endian == QMI_ENDIAN_BIG) + *out = GINT32_FROM_BE (*out); + else + *out = GINT32_FROM_LE (*out); + + print_read_bytes_trace ("gint32", &(*buffer)[0], out, 4); + + *buffer = &((*buffer)[4]); + *buffer_size = (*buffer_size) - 4; +} + +void +qmi_utils_read_guint64_from_buffer (const guint8 **buffer, + guint16 *buffer_size, + QmiEndian endian, + guint64 *out) +{ + g_assert (out != NULL); + g_assert (buffer != NULL); + g_assert (buffer_size != NULL); + g_assert (*buffer_size >= 8); + + memcpy (out, &((*buffer)[0]), 8); + if (endian == QMI_ENDIAN_BIG) + *out = GUINT64_FROM_BE (*out); + else + *out = GUINT64_FROM_LE (*out); + + print_read_bytes_trace ("guint64", &(*buffer)[0], out, 8); + + *buffer = &((*buffer)[8]); + *buffer_size = (*buffer_size) - 8; +} + +void +qmi_utils_read_gint64_from_buffer (const guint8 **buffer, + guint16 *buffer_size, + QmiEndian endian, + gint64 *out) +{ + g_assert (out != NULL); + g_assert (buffer != NULL); + g_assert (buffer_size != NULL); + g_assert (*buffer_size >= 8); + + memcpy (out, &((*buffer)[0]), 8); + if (endian == QMI_ENDIAN_BIG) + *out = GINT64_FROM_BE (*out); + else + *out = GINT64_FROM_LE (*out); + + print_read_bytes_trace ("gint64", &(*buffer)[0], out, 8); + + *buffer = &((*buffer)[8]); + *buffer_size = (*buffer_size) - 8; +} + +void +qmi_utils_read_sized_guint_from_buffer (const guint8 **buffer, + guint16 *buffer_size, + guint n_bytes, + QmiEndian endian, + guint64 *out) +{ + g_assert (out != NULL); + g_assert (buffer != NULL); + g_assert (buffer_size != NULL); + g_assert (*buffer_size >= n_bytes); + g_assert (n_bytes <= 8); + + *out = 0; + + /* In Little Endian, we copy the bytes to the beginning of the output + * buffer. */ + if (endian == QMI_ENDIAN_LITTLE) { + memcpy (out, *buffer, n_bytes); + *out = GUINT64_FROM_LE (*out); + } + /* In Big Endian, we copy the bytes to the end of the output buffer */ + else { + guint8 tmp[8] = { 0 }; + + memcpy (&tmp[8 - n_bytes], *buffer, n_bytes); + memcpy (out, &tmp[0], 8); + *out = GUINT64_FROM_BE (*out); + } + + *buffer = &((*buffer)[n_bytes]); + *buffer_size = (*buffer_size) - n_bytes; +} + +void +qmi_utils_read_gfloat_from_buffer (const guint8 **buffer, + guint16 *buffer_size, + gfloat *out) +{ + g_assert (out != NULL); + g_assert (buffer != NULL); + g_assert (buffer_size != NULL); + g_assert (*buffer_size >= 4); + + /* Yeah, do this for now */ + memcpy (out, &((*buffer)[0]), 4); + + print_read_bytes_trace ("gfloat", &(*buffer)[0], out, 4); + + *buffer = &((*buffer)[4]); + *buffer_size = (*buffer_size) - 4; +} + +void +qmi_utils_write_guint8_to_buffer (guint8 **buffer, + guint16 *buffer_size, + guint8 *in) +{ + g_assert (in != NULL); + g_assert (buffer != NULL); + g_assert (buffer_size != NULL); + g_assert (*buffer_size >= 1); + + memcpy (&(*buffer)[0], in, sizeof (*in)); + + *buffer = &((*buffer)[1]); + *buffer_size = (*buffer_size) - 1; +} + +void +qmi_utils_write_gint8_to_buffer (guint8 **buffer, + guint16 *buffer_size, + gint8 *in) +{ + g_assert (in != NULL); + g_assert (buffer != NULL); + g_assert (buffer_size != NULL); + g_assert (*buffer_size >= 1); + + memcpy (&(*buffer)[0], in, sizeof (*in)); + + *buffer = &((*buffer)[1]); + *buffer_size = (*buffer_size) - 1; +} + +void +qmi_utils_write_guint16_to_buffer (guint8 **buffer, + guint16 *buffer_size, + QmiEndian endian, + guint16 *in) +{ + guint16 tmp; + + g_assert (in != NULL); + g_assert (buffer != NULL); + g_assert (buffer_size != NULL); + g_assert (*buffer_size >= 2); + + if (endian == QMI_ENDIAN_BIG) + tmp = GUINT16_TO_BE (*in); + else + tmp = GUINT16_TO_LE (*in); + memcpy (&(*buffer)[0], &tmp, sizeof (tmp)); + + *buffer = &((*buffer)[2]); + *buffer_size = (*buffer_size) - 2; +} + +void +qmi_utils_write_gint16_to_buffer (guint8 **buffer, + guint16 *buffer_size, + QmiEndian endian, + gint16 *in) +{ + gint16 tmp; + + g_assert (in != NULL); + g_assert (buffer != NULL); + g_assert (buffer_size != NULL); + g_assert (*buffer_size >= 2); + + if (endian == QMI_ENDIAN_BIG) + tmp = GINT16_TO_BE (*in); + else + tmp = GINT16_TO_LE (*in); + memcpy (&(*buffer)[0], &tmp, sizeof (tmp)); + + *buffer = &((*buffer)[2]); + *buffer_size = (*buffer_size) - 2; +} + +void +qmi_utils_write_guint32_to_buffer (guint8 **buffer, + guint16 *buffer_size, + QmiEndian endian, + guint32 *in) +{ + guint32 tmp; + + g_assert (in != NULL); + g_assert (buffer != NULL); + g_assert (buffer_size != NULL); + g_assert (*buffer_size >= 4); + + if (endian == QMI_ENDIAN_BIG) + tmp = GUINT32_TO_BE (*in); + else + tmp = GUINT32_TO_LE (*in); + memcpy (&(*buffer)[0], &tmp, sizeof (tmp)); + + *buffer = &((*buffer)[4]); + *buffer_size = (*buffer_size) - 4; +} + +void +qmi_utils_write_gint32_to_buffer (guint8 **buffer, + guint16 *buffer_size, + QmiEndian endian, + gint32 *in) +{ + gint32 tmp; + + g_assert (in != NULL); + g_assert (buffer != NULL); + g_assert (buffer_size != NULL); + g_assert (*buffer_size >= 4); + + if (endian == QMI_ENDIAN_BIG) + tmp = GINT32_TO_BE (*in); + else + tmp = GINT32_TO_LE (*in); + memcpy (&(*buffer)[0], &tmp, sizeof (tmp)); + + *buffer = &((*buffer)[4]); + *buffer_size = (*buffer_size) - 4; +} + +void +qmi_utils_write_guint64_to_buffer (guint8 **buffer, + guint16 *buffer_size, + QmiEndian endian, + guint64 *in) +{ + guint64 tmp; + + g_assert (in != NULL); + g_assert (buffer != NULL); + g_assert (buffer_size != NULL); + g_assert (*buffer_size >= 8); + + if (endian == QMI_ENDIAN_BIG) + tmp = GUINT64_TO_BE (*in); + else + tmp = GUINT64_TO_LE (*in); + memcpy (&(*buffer)[0], &tmp, sizeof (tmp)); + + *buffer = &((*buffer)[8]); + *buffer_size = (*buffer_size) - 8; +} + +void +qmi_utils_write_gint64_to_buffer (guint8 **buffer, + guint16 *buffer_size, + QmiEndian endian, + gint64 *in) +{ + gint64 tmp; + + g_assert (in != NULL); + g_assert (buffer != NULL); + g_assert (buffer_size != NULL); + g_assert (*buffer_size >= 8); + + if (endian == QMI_ENDIAN_BIG) + tmp = GINT64_TO_BE (*in); + else + tmp = GINT64_TO_LE (*in); + memcpy (&(*buffer)[0], &tmp, sizeof (tmp)); + + *buffer = &((*buffer)[8]); + *buffer_size = (*buffer_size) - 8; +} + +void +qmi_utils_write_sized_guint_to_buffer (guint8 **buffer, + guint16 *buffer_size, + guint n_bytes, + QmiEndian endian, + guint64 *in) +{ + guint64 tmp; + + g_assert (in != NULL); + g_assert (buffer != NULL); + g_assert (buffer_size != NULL); + g_assert (*buffer_size >= n_bytes); + g_assert (n_bytes <= 8); + + if (endian == QMI_ENDIAN_BIG) + tmp = GUINT64_TO_BE (*in); + else + tmp = GUINT64_TO_LE (*in); + + /* In Little Endian, we read the bytes from the beginning of the buffer */ + if (endian == QMI_ENDIAN_LITTLE) { + memcpy (*buffer, &tmp, n_bytes); + } + /* In Big Endian, we read the bytes from the end of the buffer */ + else { + guint8 tmp_buffer[8]; + + memcpy (&tmp_buffer[0], &tmp, 8); + memcpy (*buffer, &tmp_buffer[8 - n_bytes], n_bytes); + } + + *buffer = &((*buffer)[n_bytes]); + *buffer_size = (*buffer_size) - n_bytes; +} + +void +qmi_utils_read_string_from_buffer (const guint8 **buffer, + guint16 *buffer_size, + guint8 length_prefix_size, + guint16 max_size, + gchar **out) +{ + guint16 string_length; + guint16 valid_string_length; + guint8 string_length_8; + guint16 string_length_16; + + g_assert (out != NULL); + g_assert (buffer != NULL); + g_assert (buffer_size != NULL); + g_assert (length_prefix_size == 0 || + length_prefix_size == 8 || + length_prefix_size == 16); + + switch (length_prefix_size) { + case 0: + /* If no length prefix given, read the whole buffer into a string */ + string_length = *buffer_size; + break; + case 8: + qmi_utils_read_guint8_from_buffer (buffer, + buffer_size, + &string_length_8); + string_length = string_length_8; + break; + case 16: + qmi_utils_read_guint16_from_buffer (buffer, + buffer_size, + QMI_ENDIAN_LITTLE, + &string_length_16); + string_length = string_length_16; + break; + default: + g_assert_not_reached (); + } + + if (max_size > 0 && string_length > max_size) + valid_string_length = max_size; + else + valid_string_length = string_length; + + /* Read 'valid_string_length' bytes */ + *out = g_malloc (valid_string_length + 1); + memcpy (*out, *buffer, valid_string_length); + (*out)[valid_string_length] = '\0'; + + /* And walk 'string_length' bytes */ + *buffer = &((*buffer)[string_length]); + *buffer_size = (*buffer_size) - string_length; +} + +void +qmi_utils_read_fixed_size_string_from_buffer (const guint8 **buffer, + guint16 *buffer_size, + guint16 fixed_size, + gchar *out) +{ + g_assert (out != NULL); + g_assert (buffer != NULL); + g_assert (buffer_size != NULL); + g_assert (fixed_size > 0); + + memcpy (out, *buffer, fixed_size); + + *buffer = &((*buffer)[fixed_size]); + *buffer_size = (*buffer_size) - fixed_size; +} + +void +qmi_utils_write_string_to_buffer (guint8 **buffer, + guint16 *buffer_size, + guint8 length_prefix_size, + const gchar *in) +{ + gsize len; + guint8 len_8; + guint16 len_16; + + g_assert (in != NULL); + g_assert (buffer != NULL); + g_assert (buffer_size != NULL); + g_assert (length_prefix_size == 0 || + length_prefix_size == 8 || + length_prefix_size == 16); + + len = strlen (in); + + g_assert ( len + (length_prefix_size/8) <= *buffer_size + || (length_prefix_size==8 && ((int) G_MAXUINT8 + 1) < *buffer_size)); + + switch (length_prefix_size) { + case 0: + break; + case 8: + if (len > G_MAXUINT8) { + g_warn_if_reached (); + len = G_MAXUINT8; + } + len_8 = (guint8)len; + qmi_utils_write_guint8_to_buffer (buffer, + buffer_size, + &len_8); + break; + case 16: + /* already asserted that @len is no larger then @buffer_size */ + len_16 = (guint16)len; + qmi_utils_write_guint16_to_buffer (buffer, + buffer_size, + QMI_ENDIAN_LITTLE, + &len_16); + break; + default: + g_assert_not_reached (); + } + + memcpy (*buffer, in, len); + *buffer = &((*buffer)[len]); + *buffer_size = (*buffer_size) - len; +} + +void +qmi_utils_write_fixed_size_string_to_buffer (guint8 **buffer, + guint16 *buffer_size, + guint16 fixed_size, + const gchar *in) +{ + g_assert (in != NULL); + g_assert (buffer != NULL); + g_assert (buffer_size != NULL); + g_assert (fixed_size > 0); + g_assert (fixed_size <= *buffer_size); + + memcpy (*buffer, in, fixed_size); + *buffer = &((*buffer)[fixed_size]); + *buffer_size = (*buffer_size) - fixed_size; +} gboolean qmi_message_dms_set_service_programming_code_input_get_new ( @@ -56,3 +660,82 @@ { return qmi_message_dms_set_service_programming_code_input_set_current_code (self, arg_current, error); } + +gchar * +qmi_message_get_printable (QmiMessage *self, + const gchar *line_prefix) +{ + return qmi_message_get_printable_full (self, NULL, line_prefix); +} + +gboolean +qmi_message_get_version_introduced (QmiMessage *self, + guint *major, + guint *minor) +{ + return qmi_message_get_version_introduced_full (self, NULL, major, minor); +} + +gboolean +qmi_message_tlv_read_gfloat (QmiMessage *self, + gsize tlv_offset, + gsize *offset, + gfloat *out, + GError **error) +{ + return qmi_message_tlv_read_gfloat_endian (self, tlv_offset, offset, __QMI_ENDIAN_HOST, out, error); +} + +#define SESSION_INFORMATION_DEPRECATED_METHOD(BUNDLE_SUBSTR,METHOD_SUBSTR) \ + gboolean \ + qmi_message_uim_##METHOD_SUBSTR##_input_get_session_information ( \ + QmiMessageUim##BUNDLE_SUBSTR##Input *self, \ + QmiUimSessionType *value_session_session_type, \ + const gchar **value_session_information_application_identifier, \ + GError **error) \ + { \ + /* just ignore the output string */ \ + return qmi_message_uim_##METHOD_SUBSTR##_input_get_session (self, \ + value_session_session_type, \ + NULL, \ + error); \ + } \ + gboolean \ + qmi_message_uim_##METHOD_SUBSTR##_input_set_session_information ( \ + QmiMessageUim##BUNDLE_SUBSTR##Input *self, \ + QmiUimSessionType value_session_information_session_type, \ + const gchar *value_session_information_application_identifier, \ + GError **error) \ + { \ + GArray *array; \ + gboolean ret; \ + \ + array = g_array_append_vals (g_array_new (FALSE, FALSE, sizeof (guint8)), \ + value_session_information_application_identifier, \ + strlen (value_session_information_application_identifier)); \ + ret = qmi_message_uim_##METHOD_SUBSTR##_input_set_session (self, \ + value_session_information_session_type, \ + array, \ + error); \ + g_array_unref (array); \ + return ret; \ + } + +SESSION_INFORMATION_DEPRECATED_METHOD (ReadTransparent, read_transparent) +SESSION_INFORMATION_DEPRECATED_METHOD (ReadRecord, read_record) +SESSION_INFORMATION_DEPRECATED_METHOD (GetFileAttributes, get_file_attributes) +SESSION_INFORMATION_DEPRECATED_METHOD (SetPinProtection, set_pin_protection) +SESSION_INFORMATION_DEPRECATED_METHOD (VerifyPin, verify_pin) +SESSION_INFORMATION_DEPRECATED_METHOD (UnblockPin, unblock_pin) +SESSION_INFORMATION_DEPRECATED_METHOD (ChangePin, change_pin) + +gboolean +qmi_device_close (QmiDevice *self, + GError **error) +{ + g_return_val_if_fail (QMI_IS_DEVICE (self), FALSE); + qmi_device_close_async (self, 0, NULL, NULL, NULL); + return TRUE; +} + +#endif /* QMI_DISABLE_DEPRECATED */ diff -Nru libqmi-1.18.0/src/libqmi-glib/qmi-compat.h libqmi-1.22.0/src/libqmi-glib/qmi-compat.h --- libqmi-1.18.0/src/libqmi-glib/qmi-compat.h 2017-03-21 14:26:54.000000000 +0100 +++ libqmi-1.22.0/src/libqmi-glib/qmi-compat.h 2019-01-08 14:09:47.000000000 +0100 @@ -26,19 +26,589 @@ #error "Only can be included directly." #endif +#include "qmi-device.h" #include "qmi-dms.h" +#include "qmi-uim.h" #include "qmi-enums-nas.h" #include "qmi-enums-wms.h" /** * SECTION:qmi-compat - * @title: API break replacements + * @title: Deprecated interface * - * These compatibility types and methods are flagged as deprecated and therefore + * These types and methods are flagged as deprecated and therefore * shouldn't be used in newly written code. They are provided to avoid - * innecessary API/ABI breaks. + * innecessary API/ABI breaks, for compatibility purposes only. */ +#ifndef QMI_DISABLE_DEPRECATED + +/** + * qmi_utils_read_guint8_from_buffer: + * @buffer: a buffer with raw binary data. + * @buffer_size: size of @buffer. + * @out: return location for the read variable. + * + * Reads an unsigned byte from the buffer. + * + * The user needs to make sure that at least 1 byte is available + * in the buffer. + * + * Also note that both @buffer and @buffer_size get updated after the 1 byte + * read. + * + * Since: 1.0 + * Deprecated: 1.12: Use qmi_message_tlv_read_guint8() instead. + */ +G_DEPRECATED_FOR (qmi_message_tlv_read_guint8) +void qmi_utils_read_guint8_from_buffer (const guint8 **buffer, + guint16 *buffer_size, + guint8 *out); + +/** + * qmi_utils_read_gint8_from_buffer: + * @buffer: a buffer with raw binary data. + * @buffer_size: size of @buffer. + * @out: return location for the read variable. + * + * Reads a signed byte from the buffer. + * + * The user needs to make sure that at least 1 byte is available + * in the buffer. + * + * Also note that both @buffer and @buffer_size get updated after the 1 byte + * read. + * + * Since: 1.0 + * Deprecated: 1.12: Use qmi_message_tlv_read_gint8() instead. + */ +G_DEPRECATED_FOR (qmi_message_tlv_read_gint8) +void qmi_utils_read_gint8_from_buffer (const guint8 **buffer, + guint16 *buffer_size, + gint8 *out); + +/** + * qmi_utils_read_guint16_from_buffer: + * @buffer: a buffer with raw binary data. + * @buffer_size: size of @buffer. + * @endian: endianness of firmware value; swapped to host byte order if necessary + * @out: return location for the read variable. + * + * Reads an unsigned 16-bit integer from the buffer. The number in the buffer is + * expected to be given in the byte order specificed by @endian, and this method + * takes care of converting the read value to the proper host endianness. + * + * The user needs to make sure that at least 2 bytes are available + * in the buffer. + * + * Also note that both @buffer and @buffer_size get updated after the 2 bytes + * read. + * + * Since: 1.0 + * Deprecated: 1.12: Use qmi_message_tlv_read_guint16() instead. + */ +G_DEPRECATED_FOR (qmi_message_tlv_read_guint16) +void qmi_utils_read_guint16_from_buffer (const guint8 **buffer, + guint16 *buffer_size, + QmiEndian endian, + guint16 *out); + +/** + * qmi_utils_read_gint16_from_buffer: + * @buffer: a buffer with raw binary data. + * @buffer_size: size of @buffer. + * @endian: endianness of firmware value; swapped to host byte order if necessary + * @out: return location for the read variable. + * + * Reads a signed 16-bit integer from the buffer. The number in the buffer is + * expected to be given in the byte order specified by @endian, and this method + * takes care of converting the read value to the proper host endianness. + * + * The user needs to make sure that at least 2 bytes are available + * in the buffer. + * + * Also note that both @buffer and @buffer_size get updated after the 2 bytes + * read. + * + * Since: 1.0 + * Deprecated: 1.12: Use qmi_message_tlv_read_gint16() instead. + */ +G_DEPRECATED_FOR (qmi_message_tlv_read_gint16) +void qmi_utils_read_gint16_from_buffer (const guint8 **buffer, + guint16 *buffer_size, + QmiEndian endian, + gint16 *out); + +/** + * qmi_utils_read_guint32_from_buffer: + * @buffer: a buffer with raw binary data. + * @buffer_size: size of @buffer. + * @endian: endianness of firmware value; swapped to host byte order if necessary + * @out: return location for the read variable. + * + * Reads an unsigned 32-bit integer from the buffer. The number in the buffer is + * expected to be given in the byte order specified by @endian, and this method + * takes care of converting the read value to the proper host endianness. + * + * The user needs to make sure that at least 4 bytes are available + * in the buffer. + * + * Also note that both @buffer and @buffer_size get updated after the 4 bytes + * read. + * + * Since: 1.0 + * Deprecated: 1.12: Use qmi_message_tlv_read_guint32() instead. + */ +G_DEPRECATED_FOR (qmi_message_tlv_read_guint32) +void qmi_utils_read_guint32_from_buffer (const guint8 **buffer, + guint16 *buffer_size, + QmiEndian endian, + guint32 *out); + +/** + * qmi_utils_read_gint32_from_buffer: + * @buffer: a buffer with raw binary data. + * @buffer_size: size of @buffer. + * @endian: endianness of firmware value; swapped to host byte order if necessary + * @out: return location for the read variable. + * + * Reads a signed 32-bit integer from the buffer. The number in the buffer is + * expected to be given in the byte order specified by @endian, and this method + * takes care of converting the read value to the proper host endianness. + * + * The user needs to make sure that at least 4 bytes are available + * in the buffer. + * + * Also note that both @buffer and @buffer_size get updated after the 4 bytes + * read. + * + * Since: 1.0 + * Deprecated: 1.12: Use qmi_message_tlv_read_gint32() instead. + */ +G_DEPRECATED_FOR (qmi_message_tlv_read_gint32) +void qmi_utils_read_gint32_from_buffer (const guint8 **buffer, + guint16 *buffer_size, + QmiEndian endian, + gint32 *out); + +/** + * qmi_utils_read_guint64_from_buffer: + * @buffer: a buffer with raw binary data. + * @buffer_size: size of @buffer. + * @endian: endianness of firmware value; swapped to host byte order if necessary + * @out: return location for the read variable. + * + * Reads an unsigned 64-bit integer from the buffer. The number in the buffer is + * expected to be given in the byte order specified by @endian, and this method + * takes care of converting the read value to the proper host endianness. + * + * The user needs to make sure that at least 8 bytes are available + * in the buffer. + * + * Also note that both @buffer and @buffer_size get updated after the 8 bytes + * read. + * + * Since: 1.0 + * Deprecated: 1.12: Use qmi_message_tlv_read_guint64() instead. + */ +G_DEPRECATED_FOR (qmi_message_tlv_read_guint64) +void qmi_utils_read_guint64_from_buffer (const guint8 **buffer, + guint16 *buffer_size, + QmiEndian endian, + guint64 *out); + +/** + * qmi_utils_read_gint64_from_buffer: + * @buffer: a buffer with raw binary data. + * @buffer_size: size of @buffer. + * @endian: endianness of firmware value; swapped to host byte order if necessary + * @out: return location for the read variable. + * + * Reads a signed 64-bit integer from the buffer. The number in the buffer is + * expected to be given in the byte order specified by @endian, and this method + * takes care of converting the read value to the proper host endianness. + * + * The user needs to make sure that at least 8 bytes are available + * in the buffer. + * + * Also note that both @buffer and @buffer_size get updated after the 8 bytes + * read. + * + * Since: 1.0 + * Deprecated: 1.12: Use qmi_message_tlv_read_gint64() instead. + */ +G_DEPRECATED_FOR (qmi_message_tlv_read_gint64) +void qmi_utils_read_gint64_from_buffer (const guint8 **buffer, + guint16 *buffer_size, + QmiEndian endian, + gint64 *out); + +/** + * qmi_utils_read_sized_guint_from_buffer: + * @buffer: a buffer with raw binary data. + * @buffer_size: size of @buffer. + * @n_bytes: number of bytes to read. + * @endian: endianness of firmware value; swapped to host byte order if necessary + * @out: return location for the read variable. + * + * Reads a @n_bytes-sized unsigned integer from the buffer. The number in the + * buffer is expected to be given in the byte order specified by @endian, and + * this method takes care of converting the read value to the proper host + * endianness. + * + * The user needs to make sure that at least @n_bytes bytes are available + * in the buffer. + * + * Also note that both @buffer and @buffer_size get updated after the @n_bytes + * bytes read. + * + * Since: 1.0 + * Deprecated: 1.12: Use qmi_message_tlv_read_sized_guint() instead. + */ +G_DEPRECATED_FOR (qmi_message_tlv_read_sized_guint) +void qmi_utils_read_sized_guint_from_buffer (const guint8 **buffer, + guint16 *buffer_size, + guint n_bytes, + QmiEndian endian, + guint64 *out); + +/** + * qmi_utils_read_gfloat_from_buffer: + * @buffer: a buffer with raw binary data. + * @buffer_size: size of @buffer. + * @out: return location for the read variable. + * + * Reads a 32-bit floating-point number from the buffer. + * + * The user needs to make sure that at least 4 bytes are available + * in the buffer. + * + * Also note that both @buffer and @buffer_size get updated after the 4 bytes + * read. + * + * Since: 1.10 + * Deprecated: 1.12: Use qmi_message_tlv_read_gfloat() instead. + */ +G_DEPRECATED_FOR (qmi_message_tlv_read_gfloat) +void qmi_utils_read_gfloat_from_buffer (const guint8 **buffer, + guint16 *buffer_size, + gfloat *out); + +/** + * qmi_utils_write_guint8_to_buffer: + * @buffer: a buffer. + * @buffer_size: size of @buffer. + * @in: location of the variable to be written. + * + * Writes an unsigned byte into the buffer. + * + * The user needs to make sure that the buffer is at least 1 byte long. + * + * Also note that both @buffer and @buffer_size get updated after the 1 byte + * write. + * + * Since: 1.0 + * Deprecated: 1.12: Use qmi_message_tlv_write_guint8() instead. + */ +G_DEPRECATED_FOR (qmi_message_tlv_write_guint8) +void qmi_utils_write_guint8_to_buffer (guint8 **buffer, + guint16 *buffer_size, + guint8 *in); + +/** + * qmi_utils_write_gint8_to_buffer: + * @buffer: a buffer. + * @buffer_size: size of @buffer. + * @in: location of the variable to be written. + * + * Writes a signed byte into the buffer. + * + * The user needs to make sure that the buffer is at least 1 byte long. + * + * Also note that both @buffer and @buffer_size get updated after the 1 byte + * write. + * + * Since: 1.0 + * Deprecated: 1.12: Use qmi_message_tlv_write_gint8() instead. + */ +G_DEPRECATED_FOR (qmi_message_tlv_write_gint8) +void qmi_utils_write_gint8_to_buffer (guint8 **buffer, + guint16 *buffer_size, + gint8 *in); + +/** + * qmi_utils_write_guint16_to_buffer: + * @buffer: a buffer. + * @buffer_size: size of @buffer. + * @endian: endianness of firmware value; swapped from host byte order if necessary + * @in: location of the variable to be written. + * + * Writes an unsigned 16-bit integer into the buffer. The number to be written + * is expected to be given in host endianness, and this method takes care of + * converting the value written to the byte order specified by @endian. + * + * The user needs to make sure that the buffer is at least 2 bytes long. + * + * Also note that both @buffer and @buffer_size get updated after the 2 bytes + * write. + * + * Since: 1.0 + * Deprecated: 1.12: Use qmi_message_tlv_write_guint16() instead. + */ +G_DEPRECATED_FOR (qmi_message_tlv_write_guint16) +void qmi_utils_write_guint16_to_buffer (guint8 **buffer, + guint16 *buffer_size, + QmiEndian endian, + guint16 *in); + +/** + * qmi_utils_write_gint16_to_buffer: + * @buffer: a buffer. + * @buffer_size: size of @buffer. + * @endian: endianness of firmware value; swapped from host byte order if necessary + * @in: location of the variable to be written. + * + * Writes a signed 16-bit integer into the buffer. The number to be written + * is expected to be given in host endianness, and this method takes care of + * converting the value written to the byte order specified by @endian. + * + * The user needs to make sure that the buffer is at least 2 bytes long. + * + * Also note that both @buffer and @buffer_size get updated after the 2 bytes + * write. + * + * Since: 1.0 + * Deprecated: 1.12: Use qmi_message_tlv_write_gint16() instead. + */ +G_DEPRECATED_FOR (qmi_message_tlv_write_gint16) +void qmi_utils_write_gint16_to_buffer (guint8 **buffer, + guint16 *buffer_size, + QmiEndian endian, + gint16 *in); + +/** + * qmi_utils_write_guint32_to_buffer: + * @buffer: a buffer. + * @buffer_size: size of @buffer. + * @endian: endianness of firmware value; swapped from host byte order if necessary + * @in: location of the variable to be written. + * + * Writes an unsigned 32-bit integer into the buffer. The number to be written + * is expected to be given in host endianness, and this method takes care of + * converting the value written to the byte order specified by @endian. + * + * The user needs to make sure that the buffer is at least 4 bytes long. + * + * Also note that both @buffer and @buffer_size get updated after the 4 bytes + * write. + * + * Since: 1.0 + * Deprecated: 1.12: Use qmi_message_tlv_write_guint32() instead. + */ +G_DEPRECATED_FOR (qmi_message_tlv_write_guint32) +void qmi_utils_write_guint32_to_buffer (guint8 **buffer, + guint16 *buffer_size, + QmiEndian endian, + guint32 *in); + +/** + * qmi_utils_write_gint32_to_buffer: + * @buffer: a buffer. + * @buffer_size: size of @buffer. + * @endian: endianness of firmware value; swapped from host byte order if necessary + * @in: location of the variable to be written. + * + * Writes a signed 32-bit integer into the buffer. The number to be written + * is expected to be given in host endianness, and this method takes care of + * converting the value written to the byte order specified by @endian. + * + * The user needs to make sure that the buffer is at least 4 bytes long. + * + * Also note that both @buffer and @buffer_size get updated after the 4 bytes + * write. + * + * Since: 1.0 + * Deprecated: 1.12: Use qmi_message_tlv_write_gint32() instead. + */ +G_DEPRECATED_FOR (qmi_message_tlv_write_gint32) +void qmi_utils_write_gint32_to_buffer (guint8 **buffer, + guint16 *buffer_size, + QmiEndian endian, + gint32 *in); + +/** + * qmi_utils_write_guint64_to_buffer: + * @buffer: a buffer. + * @buffer_size: size of @buffer. + * @endian: endianness of firmware value; swapped from host byte order if necessary + * @in: location of the variable to be written. + * + * Writes an unsigned 64-bit integer into the buffer. The number to be written + * is expected to be given in host endianness, and this method takes care of + * converting the value written to the byte order specified by @endian. + * + * The user needs to make sure that the buffer is at least 8 bytes long. + * + * Also note that both @buffer and @buffer_size get updated after the 8 bytes + * write. + * + * Since: 1.0 + * Deprecated: 1.12: Use qmi_message_tlv_write_guint64() instead. + */ +G_DEPRECATED_FOR (qmi_message_tlv_write_guint64) +void qmi_utils_write_guint64_to_buffer (guint8 **buffer, + guint16 *buffer_size, + QmiEndian endian, + guint64 *in); + +/** + * qmi_utils_write_gint64_to_buffer: + * @buffer: a buffer. + * @buffer_size: size of @buffer. + * @endian: endianness of firmware value; swapped from host byte order if necessary + * @in: location of the variable to be written. + * + * Writes a signed 64-bit integer into the buffer. The number to be written + * is expected to be given in host endianness, and this method takes care of + * converting the value written to the byte order specified by @endian. + * + * The user needs to make sure that the buffer is at least 8 bytes long. + * + * Also note that both @buffer and @buffer_size get updated after the 8 bytes + * write. + * + * Since: 1.0 + * Deprecated: 1.12: Use qmi_message_tlv_write_gint64() instead. + */ +G_DEPRECATED_FOR (qmi_message_tlv_write_gint64) +void qmi_utils_write_gint64_to_buffer (guint8 **buffer, + guint16 *buffer_size, + QmiEndian endian, + gint64 *in); + +/** + * qmi_utils_write_sized_guint_to_buffer: + * @buffer: a buffer. + * @buffer_size: size of @buffer. + * @n_bytes: number of bytes to write. + * @endian: endianness of firmware value; swapped from host byte order if necessary + * @in: location of the variable to be written. + * + * Writes a @n_bytes-sized unsigned integer into the buffer. The number to be + * written is expected to be given in host endianness, and this method takes + * care of converting the value written to the byte order specified by @endian. + * + * The user needs to make sure that the buffer is at least @n_bytes bytes long. + * + * Also note that both @buffer and @buffer_size get updated after the @n_bytes + * bytes write. + * + * Since: 1.0 + * Deprecated: 1.12: Use qmi_message_tlv_write_sized_guint() instead. + */ +G_DEPRECATED_FOR (qmi_message_tlv_write_sized_guint) +void qmi_utils_write_sized_guint_to_buffer (guint8 **buffer, + guint16 *buffer_size, + guint n_bytes, + QmiEndian endian, + guint64 *in); + +/** + * qmi_utils_read_string_from_buffer: + * @buffer: a buffer with raw binary data. + * @buffer_size: size of @buffer. + * @length_prefix_size: size of the length prefix integer in bits. + * @max_size: maximum number of bytes to read, or 0 to read all available bytes. + * @out: return location for the read string. The returned value should be freed with g_free(). + * + * Reads a string from the buffer. + * + * If @length_prefix_size is greater than 0, only the amount of bytes given + * there will be read. Otherwise, up to @buffer_size bytes will be read. + * + * Also note that both @buffer and @buffer_size get updated after the write. + * + * Since: 1.0 + * Deprecated: 1.12: Use qmi_message_tlv_read_string() instead. + */ +G_DEPRECATED_FOR (qmi_message_tlv_read_string) +void qmi_utils_read_string_from_buffer (const guint8 **buffer, + guint16 *buffer_size, + guint8 length_prefix_size, + guint16 max_size, + gchar **out); + +/** + * qmi_utils_write_string_to_buffer: + * @buffer: a buffer. + * @buffer_size: size of @buffer. + * @length_prefix_size: size of the length prefix integer in bits. + * @in: string to write. + * + * Writes a string to the buffer. + * + * If @length_prefix_size is greater than 0, a length prefix integer will be + * included in the write operation. + * + * The user needs to make sure that the buffer has enough space for both the + * whole string and the length prefix. + * + * Also note that both @buffer and @buffer_size get updated after the write. + * + * Since: 1.0 + * Deprecated: 1.12: Use qmi_message_tlv_write_string() instead. + */ +G_DEPRECATED_FOR (qmi_message_tlv_write_string) +void qmi_utils_write_string_to_buffer (guint8 **buffer, + guint16 *buffer_size, + guint8 length_prefix_size, + const gchar *in); + +/** + * qmi_utils_read_fixed_size_string_from_buffer: + * @buffer: a buffer with raw binary data. + * @buffer_size: size of @buffer. + * @fixed_size: number of bytes to read. + * @out: buffer preallocated by the client, with at least @fixed_size bytes. + * + * Reads a @fixed_size-sized string from the buffer into the @out buffer. + * + * Also note that both @buffer and @buffer_size get updated after the + * @fixed_size bytes read. + * + * Since: 1.0 + * Deprecated: 1.12: Use qmi_message_tlv_read_fixed_size_string() instead. + */ +G_DEPRECATED_FOR (qmi_message_tlv_read_fixed_size_string) +void qmi_utils_read_fixed_size_string_from_buffer (const guint8 **buffer, + guint16 *buffer_size, + guint16 fixed_size, + gchar *out); + +/** + * qmi_utils_write_fixed_size_string_to_buffer: + * @buffer: a buffer. + * @buffer_size: size of @buffer. + * @fixed_size: number of bytes to write. + * @in: string to write. + * + * Writes a @fixed_size-sized string to the buffer, without any length prefix. + * + * The user needs to make sure that the buffer is at least @fixed_size bytes + * long. + * + * Also note that both @buffer and @buffer_size get updated after the + * @fixed_size bytes write. + * + * Since: 1.0 + * Deprecated: 1.12: Use qmi_message_tlv_write_string() instead. + */ +G_DEPRECATED_FOR (qmi_message_tlv_write_string) +void qmi_utils_write_fixed_size_string_to_buffer (guint8 **buffer, + guint16 *buffer_size, + guint16 fixed_size, + const gchar *in); + /** * qmi_message_dms_set_service_programming_code_input_get_new: * @self: a #QmiMessageDmsSetServiceProgrammingCodeInput. @@ -115,6 +685,10 @@ const gchar *arg_current, GError **error); +/* The following type exists just so that we can get deprecation warnings */ +G_DEPRECATED +typedef int QmiDeprecatedNasSimRejectState; + /** * QMI_NAS_SIM_REJECT_STATE_SIM_VAILABLE: * @@ -123,8 +697,71 @@ * Since: 1.0 * Deprecated: 1.14.0: Use the correct #QMI_NAS_SIM_REJECT_STATE_SIM_AVAILABLE name instead. */ -G_DEPRECATED_FOR (QMI_NAS_SIM_REJECT_STATE_SIM_AVAILABLE) -#define QMI_NAS_SIM_REJECT_STATE_SIM_VAILABLE QMI_NAS_SIM_REJECT_STATE_SIM_AVAILABLE +#define QMI_NAS_SIM_REJECT_STATE_SIM_VAILABLE (QmiDeprecatedNasSimRejectState) QMI_NAS_SIM_REJECT_STATE_SIM_AVAILABLE + +/** + * qmi_message_get_printable: + * @self: a #QmiMessage. + * @line_prefix: prefix string to use in each new generated line. + * + * Gets a printable string with the contents of the whole QMI message. + * + * If known, the printable string will contain translated TLV values as well as the raw + * data buffer contents. + * + * Returns: (transfer full): a newly allocated string, which should be freed with g_free(). + * + * Since: 1.0 + * Deprecated: 1.18: Use qmi_message_get_printable_full() instead. + */ +G_DEPRECATED_FOR (qmi_message_get_printable_full) +gchar *qmi_message_get_printable (QmiMessage *self, + const gchar *line_prefix); + +/** + * qmi_message_get_version_introduced: + * @self: a #QmiMessage. + * @major: (out) return location for the major version. + * @minor: (out) return location for the minor version. + * + * Gets, if known, the service version in which the given message was first + * introduced. + * + * Returns: %TRUE if @major and @minor are set, %FALSE otherwise. + * + * Since: 1.0 + * Deprecated: 1.18: Use qmi_message_get_version_introduced_full() instead. + */ +G_DEPRECATED_FOR (qmi_message_get_version_introduced_full) +gboolean qmi_message_get_version_introduced (QmiMessage *self, + guint *major, + guint *minor); + +/** + * qmi_device_close: + * @self: a #QmiDevice + * @error: Return location for error or %NULL. + * + * Synchronously closes a #QmiDevice, preventing any further I/O. + * + * If this device was opened with @QMI_DEVICE_OPEN_FLAGS_MBIM, this + * operation will not wait for the response of the underlying MBIM + * close sequence. + * + * Closing a #QmiDevice multiple times will not return an error. + * + * Returns: %TRUE if successful, %FALSE if @error is set. + * + * Since: 1.0 + * Deprecated: 1.18: Use qmi_device_close_async() instead. + */ +G_DEPRECATED_FOR (qmi_device_close_async) +gboolean qmi_device_close (QmiDevice *self, + GError **error); + +/* The following type exists just so that we can get deprecation warnings */ +G_DEPRECATED +typedef int QmiDeprecatedWdsCdmaCauseCode; /** * QMI_WDS_CDMA_CAUSE_CODE_NETWORK_ADDRESS_VACANT: @@ -134,8 +771,7 @@ * Since: 1.0 * Deprecated: 1.18.0: Use the correct #QMI_WMS_CDMA_CAUSE_CODE_NETWORK_ADDRESS_VACANT name instead. */ -G_DEPRECATED_FOR (QMI_WMS_CDMA_CAUSE_CODE_NETWORK_ADDRESS_VACANT) -#define QMI_WDS_CDMA_CAUSE_CODE_NETWORK_ADDRESS_VACANT QMI_WMS_CDMA_CAUSE_CODE_NETWORK_ADDRESS_VACANT +#define QMI_WDS_CDMA_CAUSE_CODE_NETWORK_ADDRESS_VACANT (QmiDeprecatedWdsCdmaCauseCode) QMI_WMS_CDMA_CAUSE_CODE_NETWORK_ADDRESS_VACANT /** * QMI_WDS_CDMA_CAUSE_CODE_NETWORK_ADDRESS_TRANSLATION_FAILURE: @@ -145,8 +781,7 @@ * Since: 1.0 * Deprecated: 1.18.0: Use the correct #QMI_WMS_CDMA_CAUSE_CODE_NETWORK_ADDRESS_TRANSLATION_FAILURE name instead. */ -G_DEPRECATED_FOR (QMI_WMS_CDMA_CAUSE_CODE_NETWORK_ADDRESS_TRANSLATION_FAILURE) -#define QMI_WDS_CDMA_CAUSE_CODE_NETWORK_ADDRESS_TRANSLATION_FAILURE QMI_WMS_CDMA_CAUSE_CODE_NETWORK_ADDRESS_TRANSLATION_FAILURE +#define QMI_WDS_CDMA_CAUSE_CODE_NETWORK_ADDRESS_TRANSLATION_FAILURE (QmiDeprecatedWdsCdmaCauseCode) QMI_WMS_CDMA_CAUSE_CODE_NETWORK_ADDRESS_TRANSLATION_FAILURE /** * QMI_WDS_CDMA_CAUSE_CODE_NETWORK_RESOURCE_SHORTAGE: @@ -156,8 +791,7 @@ * Since: 1.0 * Deprecated: 1.18.0: Use the correct #QMI_WMS_CDMA_CAUSE_CODE_NETWORK_RESOURCE_SHORTAGE name instead. */ -G_DEPRECATED_FOR (QMI_WMS_CDMA_CAUSE_CODE_NETWORK_RESOURCE_SHORTAGE) -#define QMI_WDS_CDMA_CAUSE_CODE_NETWORK_RESOURCE_SHORTAGE QMI_WMS_CDMA_CAUSE_CODE_NETWORK_RESOURCE_SHORTAGE +#define QMI_WDS_CDMA_CAUSE_CODE_NETWORK_RESOURCE_SHORTAGE (QmiDeprecatedWdsCdmaCauseCode) QMI_WMS_CDMA_CAUSE_CODE_NETWORK_RESOURCE_SHORTAGE /** * QMI_WDS_CDMA_CAUSE_CODE_NETWORK_FAILURE: @@ -167,8 +801,7 @@ * Since: 1.0 * Deprecated: 1.18.0: Use the correct #QMI_WMS_CDMA_CAUSE_CODE_NETWORK_FAILURE name instead. */ -G_DEPRECATED_FOR (QMI_WMS_CDMA_CAUSE_CODE_NETWORK_FAILURE) -#define QMI_WDS_CDMA_CAUSE_CODE_NETWORK_FAILURE QMI_WMS_CDMA_CAUSE_CODE_NETWORK_FAILURE +#define QMI_WDS_CDMA_CAUSE_CODE_NETWORK_FAILURE (QmiDeprecatedWdsCdmaCauseCode) QMI_WMS_CDMA_CAUSE_CODE_NETWORK_FAILURE /** * QMI_WDS_CDMA_CAUSE_CODE_NETWORK_INVALID_TELESERVICE_ID: @@ -178,8 +811,7 @@ * Since: 1.0 * Deprecated: 1.18.0: Use the correct #QMI_WMS_CDMA_CAUSE_CODE_NETWORK_INVALID_TELESERVICE_ID name instead. */ -G_DEPRECATED_FOR (QMI_WMS_CDMA_CAUSE_CODE_NETWORK_INVALID_TELESERVICE_ID) -#define QMI_WDS_CDMA_CAUSE_CODE_NETWORK_INVALID_TELESERVICE_ID QMI_WMS_CDMA_CAUSE_CODE_NETWORK_INVALID_TELESERVICE_ID +#define QMI_WDS_CDMA_CAUSE_CODE_NETWORK_INVALID_TELESERVICE_ID (QmiDeprecatedWdsCdmaCauseCode) QMI_WMS_CDMA_CAUSE_CODE_NETWORK_INVALID_TELESERVICE_ID /** * QMI_WDS_CDMA_CAUSE_CODE_NETWORK_OTHER: @@ -189,8 +821,7 @@ * Since: 1.0 * Deprecated: 1.18.0: Use the correct #QMI_WMS_CDMA_CAUSE_CODE_NETWORK_OTHER name instead. */ -G_DEPRECATED_FOR (QMI_WMS_CDMA_CAUSE_CODE_NETWORK_OTHER) -#define QMI_WDS_CDMA_CAUSE_CODE_NETWORK_OTHER QMI_WMS_CDMA_CAUSE_CODE_NETWORK_OTHER +#define QMI_WDS_CDMA_CAUSE_CODE_NETWORK_OTHER (QmiDeprecatedWdsCdmaCauseCode) QMI_WMS_CDMA_CAUSE_CODE_NETWORK_OTHER /** * QMI_WDS_CDMA_CAUSE_CODE_DESTINATION_NO_PAGE_RESPONSE: @@ -200,8 +831,7 @@ * Since: 1.0 * Deprecated: 1.18.0: Use the correct #QMI_WMS_CDMA_CAUSE_CODE_DESTINATION_NO_PAGE_RESPONSE name instead. */ -G_DEPRECATED_FOR (QMI_WMS_CDMA_CAUSE_CODE_DESTINATION_NO_PAGE_RESPONSE) -#define QMI_WDS_CDMA_CAUSE_CODE_DESTINATION_NO_PAGE_RESPONSE QMI_WMS_CDMA_CAUSE_CODE_DESTINATION_NO_PAGE_RESPONSE +#define QMI_WDS_CDMA_CAUSE_CODE_DESTINATION_NO_PAGE_RESPONSE (QmiDeprecatedWdsCdmaCauseCode) QMI_WMS_CDMA_CAUSE_CODE_DESTINATION_NO_PAGE_RESPONSE /** * QMI_WDS_CDMA_CAUSE_CODE_DESTINATION_BUSY: @@ -211,8 +841,7 @@ * Since: 1.0 * Deprecated: 1.18.0: Use the correct #QMI_WMS_CDMA_CAUSE_CODE_DESTINATION_BUSY name instead. */ -G_DEPRECATED_FOR (QMI_WMS_CDMA_CAUSE_CODE_DESTINATION_BUSY) -#define QMI_WDS_CDMA_CAUSE_CODE_DESTINATION_BUSY QMI_WMS_CDMA_CAUSE_CODE_DESTINATION_BUSY +#define QMI_WDS_CDMA_CAUSE_CODE_DESTINATION_BUSY (QmiDeprecatedWdsCdmaCauseCode) QMI_WMS_CDMA_CAUSE_CODE_DESTINATION_BUSY /** * QMI_WDS_CDMA_CAUSE_CODE_DESTINATION_NO_ACK: @@ -222,8 +851,7 @@ * Since: 1.0 * Deprecated: 1.18.0: Use the correct #QMI_WMS_CDMA_CAUSE_CODE_DESTINATION_NO_ACK name instead. */ -G_DEPRECATED_FOR (QMI_WMS_CDMA_CAUSE_CODE_DESTINATION_NO_ACK) -#define QMI_WDS_CDMA_CAUSE_CODE_DESTINATION_NO_ACK QMI_WMS_CDMA_CAUSE_CODE_DESTINATION_NO_ACK +#define QMI_WDS_CDMA_CAUSE_CODE_DESTINATION_NO_ACK (QmiDeprecatedWdsCdmaCauseCode) QMI_WMS_CDMA_CAUSE_CODE_DESTINATION_NO_ACK /** @@ -234,8 +862,7 @@ * Since: 1.0 * Deprecated: 1.18.0: Use the correct #QMI_WMS_CDMA_CAUSE_CODE_DESTINATION_RESOURCE_SHORTAGE name instead. */ -G_DEPRECATED_FOR (QMI_WMS_CDMA_CAUSE_CODE_DESTINATION_RESOURCE_SHORTAGE) -#define QMI_WDS_CDMA_CAUSE_CODE_DESTINATION_RESOURCE_SHORTAGE QMI_WMS_CDMA_CAUSE_CODE_DESTINATION_RESOURCE_SHORTAGE +#define QMI_WDS_CDMA_CAUSE_CODE_DESTINATION_RESOURCE_SHORTAGE (QmiDeprecatedWdsCdmaCauseCode) QMI_WMS_CDMA_CAUSE_CODE_DESTINATION_RESOURCE_SHORTAGE /** * QMI_WDS_CDMA_CAUSE_CODE_DESTINATION_SMS_DELIVERY_POSTPONED: @@ -245,8 +872,7 @@ * Since: 1.0 * Deprecated: 1.18.0: Use the correct #QMI_WMS_CDMA_CAUSE_CODE_DESTINATION_SMS_DELIVERY_POSTPONED name instead. */ -G_DEPRECATED_FOR (QMI_WMS_CDMA_CAUSE_CODE_DESTINATION_SMS_DELIVERY_POSTPONED) -#define QMI_WDS_CDMA_CAUSE_CODE_DESTINATION_SMS_DELIVERY_POSTPONED QMI_WMS_CDMA_CAUSE_CODE_DESTINATION_SMS_DELIVERY_POSTPONED +#define QMI_WDS_CDMA_CAUSE_CODE_DESTINATION_SMS_DELIVERY_POSTPONED (QmiDeprecatedWdsCdmaCauseCode) QMI_WMS_CDMA_CAUSE_CODE_DESTINATION_SMS_DELIVERY_POSTPONED /** * QMI_WDS_CDMA_CAUSE_CODE_DESTINATION_OUT_OF_SERVICE: @@ -256,8 +882,7 @@ * Since: 1.0 * Deprecated: 1.18.0: Use the correct #QMI_WMS_CDMA_CAUSE_CODE_DESTINATION_OUT_OF_SERVICE name instead. */ -G_DEPRECATED_FOR (QMI_WMS_CDMA_CAUSE_CODE_DESTINATION_OUT_OF_SERVICE) -#define QMI_WDS_CDMA_CAUSE_CODE_DESTINATION_OUT_OF_SERVICE QMI_WMS_CDMA_CAUSE_CODE_DESTINATION_OUT_OF_SERVICE +#define QMI_WDS_CDMA_CAUSE_CODE_DESTINATION_OUT_OF_SERVICE (QmiDeprecatedWdsCdmaCauseCode) QMI_WMS_CDMA_CAUSE_CODE_DESTINATION_OUT_OF_SERVICE /** * QMI_WDS_CDMA_CAUSE_CODE_DESTINATION_NOT_AT_ADDRESS: @@ -267,8 +892,7 @@ * Since: 1.0 * Deprecated: 1.18.0: Use the correct #QMI_WMS_CDMA_CAUSE_CODE_DESTINATION_NOT_AT_ADDRESS name instead. */ -G_DEPRECATED_FOR (QMI_WMS_CDMA_CAUSE_CODE_DESTINATION_NOT_AT_ADDRESS) -#define QMI_WDS_CDMA_CAUSE_CODE_DESTINATION_NOT_AT_ADDRESS QMI_WMS_CDMA_CAUSE_CODE_DESTINATION_NOT_AT_ADDRESS +#define QMI_WDS_CDMA_CAUSE_CODE_DESTINATION_NOT_AT_ADDRESS (QmiDeprecatedWdsCdmaCauseCode) QMI_WMS_CDMA_CAUSE_CODE_DESTINATION_NOT_AT_ADDRESS /** * QMI_WDS_CDMA_CAUSE_CODE_DESTINATION_OTHER: @@ -278,8 +902,7 @@ * Since: 1.0 * Deprecated: 1.18.0: Use the correct #QMI_WMS_CDMA_CAUSE_CODE_DESTINATION_OTHER name instead. */ -G_DEPRECATED_FOR (QMI_WMS_CDMA_CAUSE_CODE_DESTINATION_OTHER) -#define QMI_WDS_CDMA_CAUSE_CODE_DESTINATION_OTHER QMI_WMS_CDMA_CAUSE_CODE_DESTINATION_OTHER +#define QMI_WDS_CDMA_CAUSE_CODE_DESTINATION_OTHER (QmiDeprecatedWdsCdmaCauseCode) QMI_WMS_CDMA_CAUSE_CODE_DESTINATION_OTHER /** * QMI_WDS_CDMA_CAUSE_CODE_RADIO_INTERFACE_RESOURCE_SHORTAGE: @@ -289,8 +912,7 @@ * Since: 1.0 * Deprecated: 1.18.0: Use the correct #QMI_WMS_CDMA_CAUSE_CODE_RADIO_INTERFACE_RESOURCE_SHORTAGE name instead. */ -G_DEPRECATED_FOR (QMI_WMS_CDMA_CAUSE_CODE_RADIO_INTERFACE_RESOURCE_SHORTAGE) -#define QMI_WDS_CDMA_CAUSE_CODE_RADIO_INTERFACE_RESOURCE_SHORTAGE QMI_WMS_CDMA_CAUSE_CODE_RADIO_INTERFACE_RESOURCE_SHORTAGE +#define QMI_WDS_CDMA_CAUSE_CODE_RADIO_INTERFACE_RESOURCE_SHORTAGE (QmiDeprecatedWdsCdmaCauseCode) QMI_WMS_CDMA_CAUSE_CODE_RADIO_INTERFACE_RESOURCE_SHORTAGE /** * QMI_WDS_CDMA_CAUSE_CODE_RADIO_INTERFACE_INCOMPATIBILITY: @@ -300,8 +922,7 @@ * Since: 1.0 * Deprecated: 1.18.0: Use the correct #QMI_WMS_CDMA_CAUSE_CODE_RADIO_INTERFACE_INCOMPATIBILITY name instead. */ -G_DEPRECATED_FOR (QMI_WMS_CDMA_CAUSE_CODE_RADIO_INTERFACE_INCOMPATIBILITY) -#define QMI_WDS_CDMA_CAUSE_CODE_RADIO_INTERFACE_INCOMPATIBILITY QMI_WMS_CDMA_CAUSE_CODE_RADIO_INTERFACE_INCOMPATIBILITY +#define QMI_WDS_CDMA_CAUSE_CODE_RADIO_INTERFACE_INCOMPATIBILITY (QmiDeprecatedWdsCdmaCauseCode) QMI_WMS_CDMA_CAUSE_CODE_RADIO_INTERFACE_INCOMPATIBILITY /** * QMI_WDS_CDMA_CAUSE_CODE_RADIO_INTERFACE_OTHER: @@ -311,8 +932,7 @@ * Since: 1.0 * Deprecated: 1.18.0: Use the correct #QMI_WMS_CDMA_CAUSE_CODE_RADIO_INTERFACE_OTHER name instead. */ -G_DEPRECATED_FOR (QMI_WMS_CDMA_CAUSE_CODE_RADIO_INTERFACE_OTHER) -#define QMI_WDS_CDMA_CAUSE_CODE_RADIO_INTERFACE_OTHER QMI_WMS_CDMA_CAUSE_CODE_RADIO_INTERFACE_OTHER +#define QMI_WDS_CDMA_CAUSE_CODE_RADIO_INTERFACE_OTHER (QmiDeprecatedWdsCdmaCauseCode) QMI_WMS_CDMA_CAUSE_CODE_RADIO_INTERFACE_OTHER /** * QMI_WDS_CDMA_CAUSE_CODE_GENERAL_ENCODING: @@ -322,8 +942,7 @@ * Since: 1.0 * Deprecated: 1.18.0: Use the correct #QMI_WMS_CDMA_CAUSE_CODE_GENERAL_ENCODING name instead. */ -G_DEPRECATED_FOR (QMI_WMS_CDMA_CAUSE_CODE_GENERAL_ENCODING) -#define QMI_WDS_CDMA_CAUSE_CODE_GENERAL_ENCODING QMI_WMS_CDMA_CAUSE_CODE_GENERAL_ENCODING +#define QMI_WDS_CDMA_CAUSE_CODE_GENERAL_ENCODING (QmiDeprecatedWdsCdmaCauseCode) QMI_WMS_CDMA_CAUSE_CODE_GENERAL_ENCODING /** * QMI_WDS_CDMA_CAUSE_CODE_GENERAL_SMS_ORIGIN_DENIED: @@ -333,8 +952,7 @@ * Since: 1.0 * Deprecated: 1.18.0: Use the correct #QMI_WMS_CDMA_CAUSE_CODE_GENERAL_SMS_ORIGIN_DENIED name instead. */ -G_DEPRECATED_FOR (QMI_WMS_CDMA_CAUSE_CODE_GENERAL_SMS_ORIGIN_DENIED) -#define QMI_WDS_CDMA_CAUSE_CODE_GENERAL_SMS_ORIGIN_DENIED QMI_WMS_CDMA_CAUSE_CODE_GENERAL_SMS_ORIGIN_DENIED +#define QMI_WDS_CDMA_CAUSE_CODE_GENERAL_SMS_ORIGIN_DENIED (QmiDeprecatedWdsCdmaCauseCode) QMI_WMS_CDMA_CAUSE_CODE_GENERAL_SMS_ORIGIN_DENIED /** * QMI_WDS_CDMA_CAUSE_CODE_GENERAL_SMS_DESTINATION_DENIED: @@ -344,8 +962,7 @@ * Since: 1.0 * Deprecated: 1.18.0: Use the correct #QMI_WMS_CDMA_CAUSE_CODE_GENERAL_SMS_DESTINATION_DENIED name instead. */ -G_DEPRECATED_FOR (QMI_WMS_CDMA_CAUSE_CODE_GENERAL_SMS_DESTINATION_DENIED) -#define QMI_WDS_CDMA_CAUSE_CODE_GENERAL_SMS_DESTINATION_DENIED QMI_WMS_CDMA_CAUSE_CODE_GENERAL_SMS_DESTINATION_DENIED +#define QMI_WDS_CDMA_CAUSE_CODE_GENERAL_SMS_DESTINATION_DENIED (QmiDeprecatedWdsCdmaCauseCode) QMI_WMS_CDMA_CAUSE_CODE_GENERAL_SMS_DESTINATION_DENIED /** * QMI_WDS_CDMA_CAUSE_CODE_GENERAL_SUPPLEMENTARY_SERVICE_NOT_SUPPORTED: @@ -355,8 +972,7 @@ * Since: 1.0 * Deprecated: 1.18.0: Use the correct #QMI_WMS_CDMA_CAUSE_CODE_GENERAL_SUPPLEMENTARY_SERVICE_NOT_SUPPORTED name instead. */ -G_DEPRECATED_FOR (QMI_WMS_CDMA_CAUSE_CODE_GENERAL_SUPPLEMENTARY_SERVICE_NOT_SUPPORTED) -#define QMI_WDS_CDMA_CAUSE_CODE_GENERAL_SUPPLEMENTARY_SERVICE_NOT_SUPPORTED QMI_WMS_CDMA_CAUSE_CODE_GENERAL_SUPPLEMENTARY_SERVICE_NOT_SUPPORTED +#define QMI_WDS_CDMA_CAUSE_CODE_GENERAL_SUPPLEMENTARY_SERVICE_NOT_SUPPORTED (QmiDeprecatedWdsCdmaCauseCode) QMI_WMS_CDMA_CAUSE_CODE_GENERAL_SUPPLEMENTARY_SERVICE_NOT_SUPPORTED /** * QMI_WDS_CDMA_CAUSE_CODE_GENERAL_SMS_NOT_SUPPORTED: @@ -366,8 +982,7 @@ * Since: 1.0 * Deprecated: 1.18.0: Use the correct #QMI_WMS_CDMA_CAUSE_CODE_GENERAL_SMS_NOT_SUPPORTED name instead. */ -G_DEPRECATED_FOR (QMI_WMS_CDMA_CAUSE_CODE_GENERAL_SMS_SMS_NOT_SUPPORTED) -#define QMI_WDS_CDMA_CAUSE_CODE_GENERAL_SMS_NOT_SUPPORTED QMI_WMS_CDMA_CAUSE_CODE_GENERAL_SMS_NOT_SUPPORTED +#define QMI_WDS_CDMA_CAUSE_CODE_GENERAL_SMS_NOT_SUPPORTED (QmiDeprecatedWdsCdmaCauseCode) QMI_WMS_CDMA_CAUSE_CODE_GENERAL_SMS_NOT_SUPPORTED /** * QMI_WDS_CDMA_CAUSE_CODE_GENERAL_MISSING_EXPECTED_PARAMETER: @@ -377,8 +992,7 @@ * Since: 1.0 * Deprecated: 1.18.0: Use the correct #QMI_WMS_CDMA_CAUSE_CODE_GENERAL_MISSING_EXPECTED_PARAMETER name instead. */ -G_DEPRECATED_FOR (QMI_WMS_CDMA_CAUSE_CODE_GENERAL_MISSING_EXPECTED_PARAMETER) -#define QMI_WDS_CDMA_CAUSE_CODE_GENERAL_MISSING_EXPECTED_PARAMETER QMI_WMS_CDMA_CAUSE_CODE_GENERAL_MISSING_EXPECTED_PARAMETER +#define QMI_WDS_CDMA_CAUSE_CODE_GENERAL_MISSING_EXPECTED_PARAMETER (QmiDeprecatedWdsCdmaCauseCode) QMI_WMS_CDMA_CAUSE_CODE_GENERAL_MISSING_EXPECTED_PARAMETER /** * QMI_WDS_CDMA_CAUSE_CODE_GENERAL_MISSING_MANDATORY_PARAMETER: @@ -388,8 +1002,7 @@ * Since: 1.0 * Deprecated: 1.18.0: Use the correct #QMI_WMS_CDMA_CAUSE_CODE_GENERAL_MISSING_MANDATORY_PARAMETER name instead. */ -G_DEPRECATED_FOR (QMI_WMS_CDMA_CAUSE_CODE_GENERAL_MISSING_MANDATORY_PARAMETER) -#define QMI_WDS_CDMA_CAUSE_CODE_GENERAL_MISSING_MANDATORY_PARAMETER QMI_WMS_CDMA_CAUSE_CODE_GENERAL_MISSING_MANDATORY_PARAMETER +#define QMI_WDS_CDMA_CAUSE_CODE_GENERAL_MISSING_MANDATORY_PARAMETER (QmiDeprecatedWdsCdmaCauseCode) QMI_WMS_CDMA_CAUSE_CODE_GENERAL_MISSING_MANDATORY_PARAMETER /** * QMI_WDS_CDMA_CAUSE_CODE_GENERAL_UNRECOGNIZED_PARAMETER_VALUE: @@ -399,8 +1012,7 @@ * Since: 1.0 * Deprecated: 1.18.0: Use the correct #QMI_WMS_CDMA_CAUSE_CODE_GENERAL_UNRECOGNIZED_PARAMETER_VALUE name instead. */ -G_DEPRECATED_FOR (QMI_WMS_CDMA_CAUSE_CODE_GENERAL_UNRECOGNIZED_PARAMETER_VALUE) -#define QMI_WDS_CDMA_CAUSE_CODE_GENERAL_UNRECOGNIZED_PARAMETER_VALUE QMI_WMS_CDMA_CAUSE_CODE_GENERAL_UNRECOGNIZED_PARAMETER_VALUE +#define QMI_WDS_CDMA_CAUSE_CODE_GENERAL_UNRECOGNIZED_PARAMETER_VALUE (QmiDeprecatedWdsCdmaCauseCode) QMI_WMS_CDMA_CAUSE_CODE_GENERAL_UNRECOGNIZED_PARAMETER_VALUE /** * QMI_WDS_CDMA_CAUSE_CODE_GENERAL_UNEXPECTED_PARAMETER_VALUE: @@ -410,8 +1022,7 @@ * Since: 1.0 * Deprecated: 1.18.0: Use the correct #QMI_WMS_CDMA_CAUSE_CODE_GENERAL_UNEXPECTED_PARAMETER_VALUE name instead. */ -G_DEPRECATED_FOR (QMI_WMS_CDMA_CAUSE_CODE_GENERAL_UNEXPECTED_PARAMETER_VALUE) -#define QMI_WDS_CDMA_CAUSE_CODE_GENERAL_UNEXPECTED_PARAMETER_VALUE QMI_WMS_CDMA_CAUSE_CODE_GENERAL_UNEXPECTED_PARAMETER_VALUE +#define QMI_WDS_CDMA_CAUSE_CODE_GENERAL_UNEXPECTED_PARAMETER_VALUE (QmiDeprecatedWdsCdmaCauseCode) QMI_WMS_CDMA_CAUSE_CODE_GENERAL_UNEXPECTED_PARAMETER_VALUE /** * QMI_WDS_CDMA_CAUSE_CODE_GENERAL_USER_DATA_SIZE_ERROR: @@ -421,8 +1032,7 @@ * Since: 1.0 * Deprecated: 1.18.0: Use the correct #QMI_WMS_CDMA_CAUSE_CODE_GENERAL_USER_DATA_SIZE_ERROR name instead. */ -G_DEPRECATED_FOR (QMI_WMS_CDMA_CAUSE_CODE_GENERAL_USER_DATA_SIZE_ERROR) -#define QMI_WDS_CDMA_CAUSE_CODE_GENERAL_USER_DATA_SIZE_ERROR QMI_WMS_CDMA_CAUSE_CODE_GENERAL_USER_DATA_SIZE_ERROR +#define QMI_WDS_CDMA_CAUSE_CODE_GENERAL_USER_DATA_SIZE_ERROR (QmiDeprecatedWdsCdmaCauseCode) QMI_WMS_CDMA_CAUSE_CODE_GENERAL_USER_DATA_SIZE_ERROR /** * QMI_WDS_CDMA_CAUSE_CODE_GENERAL_OTHER: @@ -432,7 +1042,342 @@ * Since: 1.0 * Deprecated: 1.18.0: Use the correct #QMI_WMS_CDMA_CAUSE_CODE_GENERAL_OTHER name instead. */ -G_DEPRECATED_FOR (QMI_WMS_CDMA_CAUSE_CODE_GENERAL_OTHER) -#define QMI_WDS_CDMA_CAUSE_CODE_GENERAL_OTHER QMI_WMS_CDMA_CAUSE_CODE_GENERAL_OTHER +#define QMI_WDS_CDMA_CAUSE_CODE_GENERAL_OTHER (QmiDeprecatedWdsCdmaCauseCode) QMI_WMS_CDMA_CAUSE_CODE_GENERAL_OTHER + +/** + * QMI_PROTOCOL_ERROR_QOS_UNAVAILABLE: + * + * QoS unavailable. + * + * Since: 1.0 + * Deprecated: 1.22.0: Use the #QMI_PROTOCOL_ERROR_REQUESTED_NUMBER_UNSUPPORTED instead. + */ +#define QMI_PROTOCOL_ERROR_QOS_UNAVAILABLE (QmiProtocolError) QMI_PROTOCOL_ERROR_REQUESTED_NUMBER_UNSUPPORTED + +/** + * qmi_message_tlv_read_gfloat: + * @self: a #QmiMessage. + * @tlv_offset: offset that was returned by qmi_message_tlv_read_init(). + * @offset: address of a the offset within the TLV value. + * @out: return location for the read #gfloat. + * @error: return location for error or %NULL. + * + * Reads a 32-bit floating-point number from the TLV. + * + * @offset needs to point to a valid @gsize specifying the index to start + * reading from within the TLV value (0 for the first item). If the variable + * is successfully read, @offset will be updated to point past the read item. + * + * The implementation assumes the float is encoded with the same endianness as + * the host, which may not be true. The use of this method is discouraged, and + * new code should use qmi_message_tlv_read_gfloat_endian() instead. + * + * Returns: %TRUE if the variable is successfully read, otherwise %FALSE is returned and @error is set. + * + * Since: 1.12 + * Deprecated: 1.22: Use qmi_message_tlv_read_gfloat_endian() instead. + */ +G_DEPRECATED_FOR (qmi_message_tlv_read_gfloat_endian) +gboolean qmi_message_tlv_read_gfloat (QmiMessage *self, + gsize tlv_offset, + gsize *offset, + gfloat *out, + GError **error); + +/** + * qmi_message_uim_read_transparent_input_get_session_information: + * @self: a #QmiMessageUimReadTransparentInput. + * @value_session_information_session_type: a placeholder for the output #QmiUimSessionType, or %NULL if not required. + * @value_session_information_application_identifier: a placeholder for the output constant string, or %NULL if not required. + * @error: Return location for error or %NULL. + * + * Get the 'Session Information' field from @self. + * + * Returns: %TRUE if the field is found, %FALSE otherwise. + * + * Since: 1.6 + * Deprecated: 1.22: Use qmi_message_uim_read_transparent_input_get_session() instead. + */ +G_DEPRECATED_FOR (qmi_message_uim_read_transparent_input_get_session) +gboolean qmi_message_uim_read_transparent_input_get_session_information ( + QmiMessageUimReadTransparentInput *self, + QmiUimSessionType *value_session_information_session_type, + const gchar **value_session_information_application_identifier, + GError **error); + +/** + * qmi_message_uim_read_transparent_input_set_session_information: + * @self: a #QmiMessageUimReadTransparentInput. + * @value_session_information_session_type: a #QmiUimSessionType. + * @value_session_information_application_identifier: a constant string. + * @error: Return location for error or %NULL. + * + * Set the 'Session Information' field in the message. + * + * Returns: %TRUE if @value was successfully set, %FALSE otherwise. + * + * Since: 1.6 + * Deprecated: 1.22: Use qmi_message_uim_read_transparent_input_set_session() instead. + */ +G_DEPRECATED_FOR (qmi_message_uim_read_transparent_input_set_session) +gboolean qmi_message_uim_read_transparent_input_set_session_information ( + QmiMessageUimReadTransparentInput *self, + QmiUimSessionType value_session_information_session_type, + const gchar *value_session_information_application_identifier, + GError **error); + +/** + * qmi_message_uim_read_record_input_get_session_information: + * @self: a #QmiMessageUimReadRecordInput. + * @value_session_information_session_type: a placeholder for the output #QmiUimSessionType, or %NULL if not required. + * @value_session_information_application_identifier: a placeholder for the output constant string, or %NULL if not required. + * @error: Return location for error or %NULL. + * + * Get the 'Session Information' field from @self. + * + * Returns: %TRUE if the field is found, %FALSE otherwise. + * + * Since: 1.6 + * Deprecated: 1.22: Use qmi_message_uim_read_record_input_get_session_information() instead. + */ +G_DEPRECATED_FOR (qmi_message_uim_read_record_input_get_session_information) +gboolean qmi_message_uim_read_record_input_get_session_information ( + QmiMessageUimReadRecordInput *self, + QmiUimSessionType *value_session_information_session_type, + const gchar **value_session_information_application_identifier, + GError **error); + +/** + * qmi_message_uim_read_record_input_set_session_information: + * @self: a #QmiMessageUimReadRecordInput. + * @value_session_information_session_type: a #QmiUimSessionType. + * @value_session_information_application_identifier: a constant string. + * @error: Return location for error or %NULL. + * + * Set the 'Session Information' field in the message. + * + * Returns: %TRUE if @value was successfully set, %FALSE otherwise. + * + * Since: 1.6 + * Deprecated: 1.22: Use qmi_message_uim_read_record_input_set_session() instead. + */ +G_DEPRECATED_FOR (qmi_message_uim_read_record_input_set_session) +gboolean qmi_message_uim_read_record_input_set_session_information ( + QmiMessageUimReadRecordInput *self, + QmiUimSessionType value_session_information_session_type, + const gchar *value_session_information_application_identifier, + GError **error); + +/** + * qmi_message_uim_get_file_attributes_input_get_session_information: + * @self: a #QmiMessageUimGetFileAttributesInput. + * @value_session_information_session_type: a placeholder for the output #QmiUimSessionType, or %NULL if not required. + * @value_session_information_application_identifier: a placeholder for the output constant string, or %NULL if not required. + * @error: Return location for error or %NULL. + * + * Get the 'Session Information' field from @self. + * + * Returns: %TRUE if the field is found, %FALSE otherwise. + * + * Since: 1.6 + * Deprecated: 1.22: Use qmi_message_uim_get_file_attributes_input_get_session() instead. + */ +G_DEPRECATED_FOR (qmi_message_uim_get_file_attributes_input_get_session) +gboolean qmi_message_uim_get_file_attributes_input_get_session_information ( + QmiMessageUimGetFileAttributesInput *self, + QmiUimSessionType *value_session_information_session_type, + const gchar **value_session_information_application_identifier, + GError **error); + +/** + * qmi_message_uim_get_file_attributes_input_set_session_information: + * @self: a #QmiMessageUimGetFileAttributesInput. + * @value_session_information_session_type: a #QmiUimSessionType. + * @value_session_information_application_identifier: a constant string. + * @error: Return location for error or %NULL. + * + * Set the 'Session Information' field in the message. + * + * Returns: %TRUE if @value was successfully set, %FALSE otherwise. + * + * Since: 1.6 + * Deprecated: 1.22: Use qmi_message_uim_get_file_attributes_input_set_session() instead. + */ +G_DEPRECATED_FOR (qmi_message_uim_get_file_attributes_input_set_session) +gboolean qmi_message_uim_get_file_attributes_input_set_session_information ( + QmiMessageUimGetFileAttributesInput *self, + QmiUimSessionType value_session_information_session_type, + const gchar *value_session_information_application_identifier, + GError **error); + +/** + * qmi_message_uim_set_pin_protection_input_get_session_information: + * @self: a #QmiMessageUimSetPinProtectionInput. + * @value_session_information_session_type: a placeholder for the output #QmiUimSessionType, or %NULL if not required. + * @value_session_information_application_identifier: a placeholder for the output constant string, or %NULL if not required. + * @error: Return location for error or %NULL. + * + * Get the 'Session Information' field from @self. + * + * Returns: %TRUE if the field is found, %FALSE otherwise. + * + * Since: 1.14 + * Deprecated: 1.22: Use qmi_message_uim_set_pin_protection_input_get_session() instead. + */ +G_DEPRECATED_FOR (qmi_message_uim_set_pin_protection_input_get_session) +gboolean qmi_message_uim_set_pin_protection_input_get_session_information ( + QmiMessageUimSetPinProtectionInput *self, + QmiUimSessionType *value_session_information_session_type, + const gchar **value_session_information_application_identifier, + GError **error); + +/** + * qmi_message_uim_set_pin_protection_input_set_session_information: + * @self: a #QmiMessageUimSetPinProtectionInput. + * @value_session_information_session_type: a #QmiUimSessionType. + * @value_session_information_application_identifier: a constant string. + * @error: Return location for error or %NULL. + * + * Set the 'Session Information' field in the message. + * + * Returns: %TRUE if @value was successfully set, %FALSE otherwise. + * + * Since: 1.14 + * Deprecated: 1.22: Use qmi_message_uim_set_pin_protection_input_set_session() instead. + */ +G_DEPRECATED_FOR (qmi_message_uim_set_pin_protection_input_set_session) +gboolean qmi_message_uim_set_pin_protection_input_set_session_information ( + QmiMessageUimSetPinProtectionInput *self, + QmiUimSessionType value_session_information_session_type, + const gchar *value_session_information_application_identifier, + GError **error); + +/** + * qmi_message_uim_verify_pin_input_get_session_information: + * @self: a #QmiMessageUimVerifyPinInput. + * @value_session_information_session_type: a placeholder for the output #QmiUimSessionType, or %NULL if not required. + * @value_session_information_application_identifier: a placeholder for the output constant string, or %NULL if not required. + * @error: Return location for error or %NULL. + * + * Get the 'Session Information' field from @self. + * + * Returns: %TRUE if the field is found, %FALSE otherwise. + * + * Since: 1.14 + * Deprecated: 1.22: Use qmi_message_uim_verify_pin_input_get_session() instead. + */ +G_DEPRECATED_FOR (qmi_message_uim_verify_pin_input_get_session) +gboolean qmi_message_uim_verify_pin_input_get_session_information ( + QmiMessageUimVerifyPinInput *self, + QmiUimSessionType *value_session_information_session_type, + const gchar **value_session_information_application_identifier, + GError **error); + +/** + * qmi_message_uim_verify_pin_input_set_session_information: + * @self: a #QmiMessageUimVerifyPinInput. + * @value_session_information_session_type: a #QmiUimSessionType. + * @value_session_information_application_identifier: a constant string. + * @error: Return location for error or %NULL. + * + * Set the 'Session Information' field in the message. + * + * Returns: %TRUE if @value was successfully set, %FALSE otherwise. + * + * Since: 1.14 + * Deprecated: 1.22: Use qmi_message_uim_verify_pin_input_set_session() instead. + */ +G_DEPRECATED_FOR (qmi_message_uim_verify_pin_input_set_session) +gboolean qmi_message_uim_verify_pin_input_set_session_information ( + QmiMessageUimVerifyPinInput *self, + QmiUimSessionType value_session_information_session_type, + const gchar *value_session_information_application_identifier, + GError **error); + +/** + * qmi_message_uim_unblock_pin_input_get_session_information: + * @self: a #QmiMessageUimUnblockPinInput. + * @value_session_information_session_type: a placeholder for the output #QmiUimSessionType, or %NULL if not required. + * @value_session_information_application_identifier: a placeholder for the output constant string, or %NULL if not required. + * @error: Return location for error or %NULL. + * + * Get the 'Session Information' field from @self. + * + * Returns: %TRUE if the field is found, %FALSE otherwise. + * + * Since: 1.14 + * Deprecated: 1.22: Use qmi_message_uim_unblock_pin_input_get_session() instead. + */ +G_DEPRECATED_FOR (qmi_message_uim_unblock_pin_input_get_session) +gboolean qmi_message_uim_unblock_pin_input_get_session_information ( + QmiMessageUimUnblockPinInput *self, + QmiUimSessionType *value_session_information_session_type, + const gchar **value_session_information_application_identifier, + GError **error); + +/** + * qmi_message_uim_unblock_pin_input_set_session_information: + * @self: a #QmiMessageUimUnblockPinInput. + * @value_session_information_session_type: a #QmiUimSessionType. + * @value_session_information_application_identifier: a constant string. + * @error: Return location for error or %NULL. + * + * Set the 'Session Information' field in the message. + * + * Returns: %TRUE if @value was successfully set, %FALSE otherwise. + * + * Since: 1.14 + * Deprecated: 1.22: Use qmi_message_uim_unblock_pin_input_set_session() instead. + */ +G_DEPRECATED_FOR (qmi_message_uim_unblock_pin_input_set_session) +gboolean qmi_message_uim_unblock_pin_input_set_session_information ( + QmiMessageUimUnblockPinInput *self, + QmiUimSessionType value_session_information_session_type, + const gchar *value_session_information_application_identifier, + GError **error); + +/** + * qmi_message_uim_change_pin_input_get_session_information: + * @self: a #QmiMessageUimChangePinInput. + * @value_session_information_session_type: a placeholder for the output #QmiUimSessionType, or %NULL if not required. + * @value_session_information_application_identifier: a placeholder for the output constant string, or %NULL if not required. + * @error: Return location for error or %NULL. + * + * Get the 'Session Information' field from @self. + * + * Returns: %TRUE if the field is found, %FALSE otherwise. + * + * Since: 1.14 + * Deprecated: 1.22: Use qmi_message_uim_change_pin_input_get_session() instead. + */ +G_DEPRECATED_FOR (qmi_message_uim_change_pin_input_get_session) +gboolean qmi_message_uim_change_pin_input_get_session_information ( + QmiMessageUimChangePinInput *self, + QmiUimSessionType *value_session_information_session_type, + const gchar **value_session_information_application_identifier, + GError **error); + +/** + * qmi_message_uim_change_pin_input_set_session_information: + * @self: a #QmiMessageUimChangePinInput. + * @value_session_information_session_type: a #QmiUimSessionType. + * @value_session_information_application_identifier: a constant string. + * @error: Return location for error or %NULL. + * + * Set the 'Session Information' field in the message. + * + * Returns: %TRUE if @value was successfully set, %FALSE otherwise. + * + * Since: 1.14 + * Deprecated: 1.22: Use qmi_message_uim_change_pin_input_set_session() instead. + */ +G_DEPRECATED_FOR (qmi_message_uim_change_pin_input_set_session) +gboolean qmi_message_uim_change_pin_input_set_session_information ( + QmiMessageUimChangePinInput *self, + QmiUimSessionType value_session_information_session_type, + const gchar *value_session_information_application_identifier, + GError **error); + +#endif /* QMI_DISABLE_DEPRECATED */ #endif /* _LIBQMI_GLIB_QMI_COMPAT_H_ */ diff -Nru libqmi-1.18.0/src/libqmi-glib/qmi-device.c libqmi-1.22.0/src/libqmi-glib/qmi-device.c --- libqmi-1.18.0/src/libqmi-glib/qmi-device.c 2017-03-21 14:26:54.000000000 +0100 +++ libqmi-1.22.0/src/libqmi-glib/qmi-device.c 2019-01-08 14:09:47.000000000 +0100 @@ -52,6 +52,8 @@ #include "qmi-oma.h" #include "qmi-wda.h" #include "qmi-voice.h" +#include "qmi-loc.h" +#include "qmi-qos.h" #include "qmi-utils.h" #include "qmi-error-types.h" #include "qmi-enum-types.h" @@ -75,6 +77,7 @@ enum { SIGNAL_INDICATION, + SIGNAL_REMOVED, SIGNAL_LAST }; @@ -91,6 +94,7 @@ #if defined MBIM_QMUX_ENABLED MbimDevice *mbimdev; + guint mbim_notification_id; #endif /* WWAN interface */ @@ -105,6 +109,7 @@ GArray *supported_services; /* I/O stream, set when the file is open */ + gint fd; GInputStream *istream; GOutputStream *ostream; GSource *input_source; @@ -123,6 +128,8 @@ #define BUFFER_SIZE 2048 +static void destroy_iostream (QmiDevice *self); + /*****************************************************************************/ /* Message transactions (private) */ @@ -354,16 +361,13 @@ GAsyncResult *res, GError **error) { - if (g_simple_async_result_propagate_error (G_SIMPLE_ASYNC_RESULT (res), error)) - return NULL; - - return g_array_ref (g_simple_async_result_get_op_res_gpointer (G_SIMPLE_ASYNC_RESULT (res))); + return g_task_propagate_pointer (G_TASK (res), error); } static void version_info_ready (QmiClientCtl *client_ctl, GAsyncResult *res, - GSimpleAsyncResult *simple) + GTask *task) { GArray *service_list = NULL; GArray *out; @@ -374,18 +378,16 @@ /* Check result of the async operation */ output = qmi_client_ctl_get_version_info_finish (client_ctl, res, &error); if (!output) { - g_simple_async_result_take_error (simple, error); - g_simple_async_result_complete (simple); - g_object_unref (simple); + g_task_return_error (task, error); + g_object_unref (task); return; } /* Check result of the QMI operation */ if (!qmi_message_ctl_get_version_info_output_get_result (output, &error)) { qmi_message_ctl_get_version_info_output_unref (output); - g_simple_async_result_take_error (simple, error); - g_simple_async_result_complete (simple); - g_object_unref (simple); + g_task_return_error (task, error); + g_object_unref (task); return; } @@ -406,9 +408,8 @@ } qmi_message_ctl_get_version_info_output_unref (output); - g_simple_async_result_set_op_res_gpointer (simple, out, (GDestroyNotify)g_array_unref); - g_simple_async_result_complete (simple); - g_object_unref (simple); + g_task_return_pointer (task, out, (GDestroyNotify)g_array_unref); + g_object_unref (task); } void @@ -424,10 +425,7 @@ timeout, cancellable, (GAsyncReadyCallback)version_info_ready, - g_simple_async_result_new (G_OBJECT (self), - callback, - user_data, - qmi_device_get_service_version_info)); + g_task_new (self, cancellable, callback, user_data)); } /*****************************************************************************/ @@ -492,7 +490,7 @@ /* If we cannot get in which version this message was introduced, we'll just * assume it's supported */ - if (!qmi_message_get_version_introduced (message, &message_major, &message_minor)) + if (!qmi_message_get_version_introduced_full (message, NULL, &message_major, &message_minor)) return TRUE; /* Get version info. It MUST exist because we allowed creating a client @@ -867,19 +865,14 @@ /* Allocate new client */ typedef struct { - QmiDevice *self; - GSimpleAsyncResult *result; QmiService service; GType client_type; guint8 cid; } AllocateClientContext; static void -allocate_client_context_complete_and_free (AllocateClientContext *ctx) +allocate_client_context_free (AllocateClientContext *ctx) { - g_simple_async_result_complete_in_idle (ctx->result); - g_object_unref (ctx->result); - g_object_unref (ctx->self); g_slice_free (AllocateClientContext, ctx); } @@ -888,30 +881,32 @@ GAsyncResult *res, GError **error) { - if (g_simple_async_result_propagate_error (G_SIMPLE_ASYNC_RESULT (res), error)) - return NULL; - - return QMI_CLIENT (g_object_ref (g_simple_async_result_get_op_res_gpointer (G_SIMPLE_ASYNC_RESULT (res)))); + return g_task_propagate_pointer (G_TASK (res), error); } static void -build_client_object (AllocateClientContext *ctx) +build_client_object (GTask *task) { + QmiDevice *self; + AllocateClientContext *ctx; gchar *version_string = NULL; QmiClient *client; GError *error = NULL; const QmiMessageCtlGetVersionInfoOutputServiceListService *version_info; + self = g_task_get_source_object (task); + ctx = g_task_get_task_data (task); + /* We now have a proper CID for the client, we should be able to create it * right away */ client = g_object_new (ctx->client_type, - QMI_CLIENT_DEVICE, ctx->self, + QMI_CLIENT_DEVICE, self, QMI_CLIENT_SERVICE, ctx->service, QMI_CLIENT_CID, ctx->cid, NULL); /* Add version info to the client if it was retrieved */ - version_info = find_service_version_info (ctx->self, ctx->service); + version_info = find_service_version_info (self, ctx->service); if (version_info) g_object_set (client, QMI_CLIENT_VERSION_MAJOR, version_info->major_version, @@ -919,28 +914,28 @@ NULL); /* Register the client to get indications */ - if (!register_client (ctx->self, client, &error)) { + if (!register_client (self, client, &error)) { g_prefix_error (&error, "Cannot register new client with CID '%u' and service '%s'", ctx->cid, qmi_service_get_string (ctx->service)); - g_simple_async_result_take_error (ctx->result, error); - allocate_client_context_complete_and_free (ctx); + g_task_return_error (task, error); + g_object_unref (task); g_object_unref (client); return; } /* Build version string for the logging */ - if (ctx->self->priv->supported_services) { + if (self->priv->supported_services) { const QmiMessageCtlGetVersionInfoOutputServiceListService *info; - info = find_service_version_info (ctx->self, ctx->service); + info = find_service_version_info (self, ctx->service); if (info) version_string = g_strdup_printf ("%u.%u", info->major_version, info->minor_version); } g_debug ("[%s] Registered '%s' (version %s) client with ID '%u'", - ctx->self->priv->path_display, + self->priv->path_display, qmi_service_get_string (ctx->service), version_string ? version_string : "unknown", ctx->cid); @@ -948,35 +943,34 @@ g_free (version_string); /* Client created and registered, complete successfully */ - g_simple_async_result_set_op_res_gpointer (ctx->result, - client, - (GDestroyNotify)g_object_unref); - allocate_client_context_complete_and_free (ctx); + g_task_return_pointer (task, client, g_object_unref); + g_object_unref (task); } static void allocate_cid_ready (QmiClientCtl *client_ctl, GAsyncResult *res, - AllocateClientContext *ctx) + GTask *task) { QmiMessageCtlAllocateCidOutput *output; QmiService service; guint8 cid; GError *error = NULL; + AllocateClientContext *ctx; /* Check result of the async operation */ output = qmi_client_ctl_allocate_cid_finish (client_ctl, res, &error); if (!output) { g_prefix_error (&error, "CID allocation failed in the CTL client: "); - g_simple_async_result_take_error (ctx->result, error); - allocate_client_context_complete_and_free (ctx); + g_task_return_error (task, error); + g_object_unref (task); return; } /* Check result of the QMI operation */ if (!qmi_message_ctl_allocate_cid_output_get_result (output, &error)) { - g_simple_async_result_take_error (ctx->result, error); - allocate_client_context_complete_and_free (ctx); + g_task_return_error (task, error); + g_object_unref (task); qmi_message_ctl_allocate_cid_output_unref (output); return; } @@ -984,22 +978,24 @@ /* Allocation info is mandatory when result is success */ g_assert (qmi_message_ctl_allocate_cid_output_get_allocation_info (output, &service, &cid, NULL)); + ctx = g_task_get_task_data (task); + if (service != ctx->service) { - g_simple_async_result_set_error ( - ctx->result, + g_task_return_new_error ( + task, QMI_CORE_ERROR, QMI_CORE_ERROR_FAILED, "CID allocation failed in the CTL client: " "Service mismatch (requested '%s', got '%s')", qmi_service_get_string (ctx->service), qmi_service_get_string (service)); - allocate_client_context_complete_and_free (ctx); + g_object_unref (task); qmi_message_ctl_allocate_cid_output_unref (output); return; } ctx->cid = cid; - build_client_object (ctx); + build_client_object (task); qmi_message_ctl_allocate_cid_output_unref (output); } @@ -1013,36 +1009,37 @@ gpointer user_data) { AllocateClientContext *ctx; + GTask *task; g_return_if_fail (QMI_IS_DEVICE (self)); g_return_if_fail (service != QMI_SERVICE_UNKNOWN); ctx = g_slice_new0 (AllocateClientContext); - ctx->self = g_object_ref (self); - ctx->result = g_simple_async_result_new (G_OBJECT (self), - callback, - user_data, - qmi_device_allocate_client); ctx->service = service; + task = g_task_new (self, cancellable, callback, user_data); + g_task_set_task_data (task, + ctx, + (GDestroyNotify)allocate_client_context_free); + /* Check if the requested service is supported by the device */ if (!check_service_supported (self, service)) { - g_simple_async_result_set_error (ctx->result, - QMI_CORE_ERROR, - QMI_CORE_ERROR_UNSUPPORTED, - "Service '%s' not supported by the device", - qmi_service_get_string (service)); - allocate_client_context_complete_and_free (ctx); + g_task_return_new_error (task, + QMI_CORE_ERROR, + QMI_CORE_ERROR_UNSUPPORTED, + "Service '%s' not supported by the device", + qmi_service_get_string (service)); + g_object_unref (task); return; } switch (service) { case QMI_SERVICE_CTL: - g_simple_async_result_set_error (ctx->result, - QMI_CORE_ERROR, - QMI_CORE_ERROR_INVALID_ARGS, - "Cannot create additional clients for the CTL service"); - allocate_client_context_complete_and_free (ctx); + g_task_return_new_error (task, + QMI_CORE_ERROR, + QMI_CORE_ERROR_INVALID_ARGS, + "Cannot create additional clients for the CTL service"); + g_object_unref (task); return; case QMI_SERVICE_DMS: @@ -1089,13 +1086,21 @@ ctx->client_type = QMI_TYPE_CLIENT_VOICE; break; + case QMI_SERVICE_LOC: + ctx->client_type = QMI_TYPE_CLIENT_LOC; + break; + + case QMI_SERVICE_QOS: + ctx->client_type = QMI_TYPE_CLIENT_QOS; + break; + default: - g_simple_async_result_set_error (ctx->result, - QMI_CORE_ERROR, - QMI_CORE_ERROR_INVALID_ARGS, - "Clients for service '%s' not yet supported", - qmi_service_get_string (service)); - allocate_client_context_complete_and_free (ctx); + g_task_return_new_error (task, + QMI_CORE_ERROR, + QMI_CORE_ERROR_INVALID_ARGS, + "Clients for service '%s' not yet supported", + qmi_service_get_string (service)); + g_object_unref (task); return; } @@ -1107,13 +1112,13 @@ qmi_message_ctl_allocate_cid_input_set_service (input, ctx->service, NULL); g_debug ("[%s] Allocating new client ID...", - ctx->self->priv->path_display); + self->priv->path_display); qmi_client_ctl_allocate_cid (self->priv->client_ctl, input, timeout, cancellable, (GAsyncReadyCallback)allocate_cid_ready, - ctx); + task); qmi_message_ctl_allocate_cid_input_unref (input); return; @@ -1121,41 +1126,27 @@ /* Reuse the given CID */ g_debug ("[%s] Reusing client CID '%u'...", - ctx->self->priv->path_display, + self->priv->path_display, cid); ctx->cid = cid; - build_client_object (ctx); + build_client_object (task); } /*****************************************************************************/ /* Release client */ -typedef struct { - QmiClient *client; - GSimpleAsyncResult *result; -} ReleaseClientContext; - -static void -release_client_context_complete_and_free (ReleaseClientContext *ctx) -{ - g_simple_async_result_complete_in_idle (ctx->result); - g_object_unref (ctx->result); - g_object_unref (ctx->client); - g_slice_free (ReleaseClientContext, ctx); -} - gboolean qmi_device_release_client_finish (QmiDevice *self, GAsyncResult *res, GError **error) { - return !g_simple_async_result_propagate_error (G_SIMPLE_ASYNC_RESULT (res), error); + return g_task_propagate_boolean (G_TASK (res), error); } static void client_ctl_release_cid_ready (QmiClientCtl *client_ctl, GAsyncResult *res, - ReleaseClientContext *ctx) + GTask *task) { GError *error = NULL; QmiMessageCtlReleaseCidOutput *output; @@ -1166,21 +1157,21 @@ /* Check result of the async operation */ output = qmi_client_ctl_release_cid_finish (client_ctl, res, &error); if (!output) { - g_simple_async_result_take_error (ctx->result, error); - release_client_context_complete_and_free (ctx); + g_task_return_error (task, error); + g_object_unref (task); return; } /* Check result of the QMI operation */ if (!qmi_message_ctl_release_cid_output_get_result (output, &error)) { - g_simple_async_result_take_error (ctx->result, error); - release_client_context_complete_and_free (ctx); + g_task_return_error (task, error); + g_object_unref (task); qmi_message_ctl_release_cid_output_unref (output); return; } - g_simple_async_result_set_op_res_gboolean (ctx->result, TRUE); - release_client_context_complete_and_free (ctx); + g_task_return_boolean (task, TRUE); + g_object_unref (task); qmi_message_ctl_release_cid_output_unref (output); } @@ -1193,7 +1184,7 @@ GAsyncReadyCallback callback, gpointer user_data) { - ReleaseClientContext *ctx; + GTask *task; QmiService service; guint8 cid; gchar *flags_str; @@ -1214,26 +1205,21 @@ flags_str); g_free (flags_str); - /* NOTE! The operation must not take a reference to self, or we won't be - * able to use it implicitly from our dispose() */ - - ctx = g_slice_new0 (ReleaseClientContext); - ctx->client = g_object_ref (client); - ctx->result = g_simple_async_result_new (G_OBJECT (self), - callback, - user_data, - qmi_device_release_client); + task = g_task_new (self, cancellable, callback, user_data); /* Do not try to release an already released client */ if (cid == QMI_CID_NONE) { - g_simple_async_result_set_error (ctx->result, - QMI_CORE_ERROR, - QMI_CORE_ERROR_INVALID_ARGS, - "Client is already released"); - release_client_context_complete_and_free (ctx); + g_task_return_new_error (task, + QMI_CORE_ERROR, + QMI_CORE_ERROR_INVALID_ARGS, + "Client is already released"); + g_object_unref (task); return; } + /* Keep the client object valid until after we reset its contents below */ + g_object_ref (client); + /* Unregister from device */ unregister_client (self, client); @@ -1242,35 +1228,36 @@ qmi_service_get_string (service), cid); - /* Reset the contents of the client object, making it unusable */ + /* Reset the contents of the client object, making it invalid */ g_object_set (client, QMI_CLIENT_CID, QMI_CID_NONE, QMI_CLIENT_SERVICE, QMI_SERVICE_UNKNOWN, QMI_CLIENT_DEVICE, NULL, NULL); + g_object_unref (client); + if (flags & QMI_DEVICE_RELEASE_CLIENT_FLAGS_RELEASE_CID) { QmiMessageCtlReleaseCidInput *input; /* And now, really try to release the CID */ input = qmi_message_ctl_release_cid_input_new (); - qmi_message_ctl_release_cid_input_set_release_info (input, service,cid, NULL); + qmi_message_ctl_release_cid_input_set_release_info (input, service, cid, NULL); - /* And now, really try to release the CID */ qmi_client_ctl_release_cid (self->priv->client_ctl, input, timeout, cancellable, (GAsyncReadyCallback)client_ctl_release_cid_ready, - ctx); + task); qmi_message_ctl_release_cid_input_unref (input); return; } /* No need to release the CID, so just done */ - g_simple_async_result_set_op_res_gboolean (ctx->result, TRUE); - release_client_context_complete_and_free (ctx); + g_task_return_boolean (task, TRUE); + g_object_unref (task); return; } @@ -1283,19 +1270,22 @@ guint16 *link_id, GError **error) { + gssize value; - if (g_simple_async_result_propagate_error (G_SIMPLE_ASYNC_RESULT (res), error)) + value = g_task_propagate_int (G_TASK (res), error); + if (value == -1) return FALSE; if (link_id) - *link_id = ((guint16) GPOINTER_TO_UINT (g_simple_async_result_get_op_res_gpointer (G_SIMPLE_ASYNC_RESULT (res)))); + *link_id = (guint16)value; + return TRUE; } static void set_instance_id_ready (QmiClientCtl *client_ctl, GAsyncResult *res, - GSimpleAsyncResult *simple) + GTask *task) { QmiMessageCtlSetInstanceIdOutput *output; GError *error = NULL; @@ -1303,21 +1293,21 @@ /* Check result of the async operation */ output = qmi_client_ctl_set_instance_id_finish (client_ctl, res, &error); if (!output) - g_simple_async_result_take_error (simple, error); + g_task_return_error (task, error); else { /* Check result of the QMI operation */ if (!qmi_message_ctl_set_instance_id_output_get_result (output, &error)) - g_simple_async_result_take_error (simple, error); + g_task_return_error (task, error); else { guint16 link_id; qmi_message_ctl_set_instance_id_output_get_link_id (output, &link_id, NULL); - g_simple_async_result_set_op_res_gpointer (simple, GUINT_TO_POINTER ((guint)link_id), NULL); + g_task_return_int (task, link_id); } qmi_message_ctl_set_instance_id_output_unref (output); } - g_simple_async_result_complete (simple); + g_object_unref (task); } void @@ -1328,14 +1318,10 @@ GAsyncReadyCallback callback, gpointer user_data) { - GSimpleAsyncResult *result; + GTask *task; QmiMessageCtlSetInstanceIdInput *input; - - result = g_simple_async_result_new (G_OBJECT (self), - callback, - user_data, - qmi_device_set_instance_id); + task = g_task_new (self, cancellable, callback, user_data); input = qmi_message_ctl_set_instance_id_input_new (); qmi_message_ctl_set_instance_id_input_set_id ( @@ -1347,7 +1333,7 @@ timeout, cancellable, (GAsyncReadyCallback)set_instance_id_ready, - result); + task); qmi_message_ctl_set_instance_id_input_unref (input); } @@ -1577,14 +1563,15 @@ if (error) g_error_free (error); /* Close the device */ - qmi_device_close (self, NULL); - return FALSE; + qmi_device_close_async (self, 0, NULL, NULL, NULL); + return G_SOURCE_REMOVE; } if (r == 0) { /* HUP! */ g_warning ("Cannot read from istream: connection broken"); - return FALSE; + g_signal_emit (self, signals[SIGNAL_REMOVED], 0); + return G_SOURCE_REMOVE; } /* else, r > 0 */ @@ -1594,21 +1581,16 @@ parse_response (self); - return TRUE; + return G_SOURCE_CONTINUE; } typedef struct { - QmiDevice *self; - GSimpleAsyncResult *result; guint spawn_retries; } CreateIostreamContext; static void -create_iostream_context_complete_and_free (CreateIostreamContext *ctx) +create_iostream_context_free (CreateIostreamContext *ctx) { - g_simple_async_result_complete_in_idle (ctx->result); - g_object_unref (ctx->result); - g_object_unref (ctx->self); g_slice_free (CreateIostreamContext, ctx); } @@ -1617,118 +1599,131 @@ GAsyncResult *res, GError **error) { - return !g_simple_async_result_propagate_error (G_SIMPLE_ASYNC_RESULT (res), error); + return g_task_propagate_boolean (G_TASK (res), error); } static void -setup_iostream (CreateIostreamContext *ctx) +setup_iostream (GTask *task) { + QmiDevice *self; + + self = g_task_get_source_object (task); + /* Check in/out streams */ - if (!ctx->self->priv->istream || !ctx->self->priv->ostream) { - g_simple_async_result_set_error ( - ctx->result, - QMI_CORE_ERROR, - QMI_CORE_ERROR_FAILED, - "Cannot get input/output streams"); - g_clear_object (&ctx->self->priv->istream); - g_clear_object (&ctx->self->priv->ostream); - g_clear_object (&ctx->self->priv->socket_connection); - g_clear_object (&ctx->self->priv->socket_client); - create_iostream_context_complete_and_free (ctx); + if (!self->priv->istream || !self->priv->ostream) { + destroy_iostream (self); + g_task_return_new_error (task, + QMI_CORE_ERROR, + QMI_CORE_ERROR_FAILED, + "Cannot get input/output streams"); + g_object_unref (task); return; } /* Setup input events */ - ctx->self->priv->input_source = (g_pollable_input_stream_create_source ( - G_POLLABLE_INPUT_STREAM ( - ctx->self->priv->istream), - NULL)); - g_source_set_callback (ctx->self->priv->input_source, + self->priv->input_source = g_pollable_input_stream_create_source ( + G_POLLABLE_INPUT_STREAM (self->priv->istream), + NULL); + g_source_set_callback (self->priv->input_source, (GSourceFunc)input_ready_cb, - ctx->self, + self, NULL); - g_source_attach (ctx->self->priv->input_source, g_main_context_get_thread_default ()); - g_source_unref (ctx->self->priv->input_source); + g_source_attach (self->priv->input_source, g_main_context_get_thread_default ()); - g_simple_async_result_set_op_res_gboolean (ctx->result, TRUE); - create_iostream_context_complete_and_free (ctx); + g_task_return_boolean (task, TRUE); + g_object_unref (task); } static void -create_iostream_with_fd (CreateIostreamContext *ctx) +create_iostream_with_fd (GTask *task) { + QmiDevice *self; gint fd; - fd = open (ctx->self->priv->path, O_RDWR | O_EXCL | O_NONBLOCK | O_NOCTTY); + self = g_task_get_source_object (task); + fd = open (self->priv->path, O_RDWR | O_EXCL | O_NONBLOCK | O_NOCTTY); if (fd < 0) { - g_simple_async_result_set_error ( - ctx->result, - QMI_CORE_ERROR, - QMI_CORE_ERROR_FAILED, - "Cannot open device file '%s': %s", - ctx->self->priv->path_display, - strerror (errno)); - create_iostream_context_complete_and_free (ctx); + g_task_return_new_error (task, + QMI_CORE_ERROR, + QMI_CORE_ERROR_FAILED, + "Cannot open device file '%s': %s", + self->priv->path_display, + strerror (errno)); + g_object_unref (task); return; } - ctx->self->priv->istream = g_unix_input_stream_new (fd, TRUE); - ctx->self->priv->ostream = g_unix_output_stream_new (fd, TRUE); + g_assert (self->priv->fd < 0); + self->priv->fd = fd; + self->priv->istream = g_unix_input_stream_new (fd, FALSE); + self->priv->ostream = g_unix_output_stream_new (fd, FALSE); - setup_iostream (ctx); + setup_iostream (task); } -static void create_iostream_with_socket (CreateIostreamContext *ctx); +static void create_iostream_with_socket (GTask *task); static gboolean -wait_for_proxy_cb (CreateIostreamContext *ctx) +wait_for_proxy_cb (GTask *task) { - create_iostream_with_socket (ctx); + create_iostream_with_socket (task); return FALSE; } static void -create_iostream_with_socket (CreateIostreamContext *ctx) +spawn_child_setup (void) +{ + if (setpgid (0, 0) < 0) + g_warning ("couldn't setup proxy specific process group"); +} + +static void +create_iostream_with_socket (GTask *task) { + QmiDevice *self; + CreateIostreamContext *ctx; GSocketAddress *socket_address; GError *error = NULL; + self = g_task_get_source_object (task); + ctx = g_task_get_task_data (task); + /* Create socket client */ - ctx->self->priv->socket_client = g_socket_client_new (); - g_socket_client_set_family (ctx->self->priv->socket_client, G_SOCKET_FAMILY_UNIX); - g_socket_client_set_socket_type (ctx->self->priv->socket_client, G_SOCKET_TYPE_STREAM); - g_socket_client_set_protocol (ctx->self->priv->socket_client, G_SOCKET_PROTOCOL_DEFAULT); + self->priv->socket_client = g_socket_client_new (); + g_socket_client_set_family (self->priv->socket_client, G_SOCKET_FAMILY_UNIX); + g_socket_client_set_socket_type (self->priv->socket_client, G_SOCKET_TYPE_STREAM); + g_socket_client_set_protocol (self->priv->socket_client, G_SOCKET_PROTOCOL_DEFAULT); /* Setup socket address */ - socket_address = (g_unix_socket_address_new_with_type ( - ctx->self->priv->proxy_path, - -1, - G_UNIX_SOCKET_ADDRESS_ABSTRACT)); + socket_address = g_unix_socket_address_new_with_type ( + self->priv->proxy_path, + -1, + G_UNIX_SOCKET_ADDRESS_ABSTRACT); /* Connect to address */ - ctx->self->priv->socket_connection = (g_socket_client_connect ( - ctx->self->priv->socket_client, - G_SOCKET_CONNECTABLE (socket_address), - NULL, - &error)); + self->priv->socket_connection = g_socket_client_connect ( + self->priv->socket_client, + G_SOCKET_CONNECTABLE (socket_address), + NULL, + &error); g_object_unref (socket_address); - if (!ctx->self->priv->socket_connection) { + if (!self->priv->socket_connection) { gchar **argc; GSource *source; g_debug ("cannot connect to proxy: %s", error->message); g_clear_error (&error); - g_clear_object (&ctx->self->priv->socket_client); + g_clear_object (&self->priv->socket_client); /* Don't retry forever */ ctx->spawn_retries++; if (ctx->spawn_retries > MAX_SPAWN_RETRIES) { - g_simple_async_result_set_error (ctx->result, - QMI_CORE_ERROR, - QMI_CORE_ERROR_FAILED, - "Couldn't spawn the qmi-proxy"); - create_iostream_context_complete_and_free (ctx); + g_task_return_new_error (task, + QMI_CORE_ERROR, + QMI_CORE_ERROR_FAILED, + "Couldn't spawn the qmi-proxy"); + g_object_unref (task); return; } @@ -1740,7 +1735,7 @@ argc, NULL, /* envp */ G_SPAWN_STDOUT_TO_DEV_NULL | G_SPAWN_STDERR_TO_DEV_NULL, - NULL, /* child_setup */ + (GSpawnChildSetupFunc) spawn_child_setup, NULL, /* child_setup_user_data */ NULL, &error)) { @@ -1751,21 +1746,21 @@ /* Wait some ms and retry */ source = g_timeout_source_new (100); - g_source_set_callback (source, (GSourceFunc)wait_for_proxy_cb, ctx, NULL); + g_source_set_callback (source, (GSourceFunc)wait_for_proxy_cb, task, NULL); g_source_attach (source, g_main_context_get_thread_default ()); g_source_unref (source); return; } - ctx->self->priv->istream = g_io_stream_get_input_stream (G_IO_STREAM (ctx->self->priv->socket_connection)); - if (ctx->self->priv->istream) - g_object_ref (ctx->self->priv->istream); - - ctx->self->priv->ostream = g_io_stream_get_output_stream (G_IO_STREAM (ctx->self->priv->socket_connection)); - if (ctx->self->priv->ostream) - g_object_ref (ctx->self->priv->ostream); + self->priv->istream = g_io_stream_get_input_stream (G_IO_STREAM (self->priv->socket_connection)); + if (self->priv->istream) + g_object_ref (self->priv->istream); + + self->priv->ostream = g_io_stream_get_output_stream (G_IO_STREAM (self->priv->socket_connection)); + if (self->priv->ostream) + g_object_ref (self->priv->ostream); - setup_iostream (ctx); + setup_iostream (task); } static void @@ -1775,21 +1770,22 @@ gpointer user_data) { CreateIostreamContext *ctx; + GTask *task; ctx = g_slice_new (CreateIostreamContext); - ctx->self = g_object_ref (self); - ctx->result = g_simple_async_result_new (G_OBJECT (self), - callback, - user_data, - create_iostream); ctx->spawn_retries = 0; + task = g_task_new (self, NULL, callback, user_data); + g_task_set_task_data (task, + ctx, + (GDestroyNotify)create_iostream_context_free); + if (self->priv->istream || self->priv->ostream) { - g_simple_async_result_set_error (ctx->result, - QMI_CORE_ERROR, - QMI_CORE_ERROR_WRONG_STATE, - "Already open"); - create_iostream_context_complete_and_free (ctx); + g_task_return_new_error (task, + QMI_CORE_ERROR, + QMI_CORE_ERROR_WRONG_STATE, + "Already open"); + g_object_unref (task); return; } @@ -1797,9 +1793,9 @@ g_assert (self->priv->path); if (proxy) - create_iostream_with_socket (ctx); + create_iostream_with_socket (task); else - create_iostream_with_fd (ctx); + create_iostream_with_fd (task); } /*****************************************************************************/ @@ -1817,13 +1813,13 @@ DEVICE_OPEN_CONTEXT_STEP_FLAGS_VERSION_INFO, DEVICE_OPEN_CONTEXT_STEP_FLAGS_SYNC, DEVICE_OPEN_CONTEXT_STEP_FLAGS_NETPORT, +#if defined MBIM_QMUX_ENABLED + DEVICE_OPEN_CONTEXT_STEP_FLAGS_EXPECT_INDICATIONS, +#endif DEVICE_OPEN_CONTEXT_STEP_LAST } DeviceOpenContextStep; typedef struct { - QmiDevice *self; - GSimpleAsyncResult *result; - GCancellable *cancellable; DeviceOpenContextStep step; QmiDeviceOpenFlags flags; guint timeout; @@ -1832,14 +1828,9 @@ } DeviceOpenContext; static void -device_open_context_complete_and_free (DeviceOpenContext *ctx) +device_open_context_free (DeviceOpenContext *ctx) { - g_simple_async_result_complete_in_idle (ctx->result); - g_object_unref (ctx->result); g_free (ctx->driver); - if (ctx->cancellable) - g_object_unref (ctx->cancellable); - g_object_unref (ctx->self); g_slice_free (DeviceOpenContext, ctx); } @@ -1848,89 +1839,193 @@ GAsyncResult *res, GError **error) { - return !g_simple_async_result_propagate_error (G_SIMPLE_ASYNC_RESULT (res), error); + return g_task_propagate_boolean (G_TASK (res), error); } -static void device_open_context_step (DeviceOpenContext *ctx); +static void device_open_step (GTask *task); + +#if defined MBIM_QMUX_ENABLED + +static void +mbim_qmi_notification_cb (MbimDevice *device, + MbimMessage *notification, + QmiDevice *self) +{ + GByteArray *bytearray; + QmiMessage *message; + MbimService service; + const guint8 *buf; + guint32 len; + GError *error = NULL; + + service = mbim_message_indicate_status_get_service (notification); + if (service != MBIM_SERVICE_QMI) + return; + + buf = mbim_message_indicate_status_get_raw_information_buffer (notification, &len); + bytearray = g_byte_array_append (g_byte_array_sized_new (len), buf, len); + + message = qmi_message_new_from_raw (bytearray, &error); + if (!message) { + if (error) { + g_warning ("[%s] couldn't create QMI message: %s", + self->priv->path_display, error->message); + g_free (error); + } else + g_warning ("[%s] couldn't create QMI message: missing data", + self->priv->path_display); + + if (qmi_utils_get_traces_enabled ()) { + gchar *printable; + + printable = __qmi_utils_str_hex (buf, len, ':'); + g_debug ("<<<<<< RAW INVALID MESSAGE:\n" + "<<<<<< length = %u\n" + "<<<<<< data = %s\n", + len, + printable); + g_free (printable); + } + + goto out; + } + + process_message (self, message); + qmi_message_unref (message); +out: + g_byte_array_unref (bytearray); +} + +static void +mbim_subscribe_list_set_ready_cb (MbimDevice *device, + GAsyncResult *res, + GTask *task) +{ + QmiDevice *self; + DeviceOpenContext *ctx; + MbimMessage *response; + GError *error = NULL; + + self = g_task_get_source_object (task); + + response = mbim_device_command_finish (device, res, &error); + if (response) { + mbim_message_response_get_result (response, MBIM_MESSAGE_TYPE_COMMAND_DONE, &error); + mbim_message_unref (response); + } + + if (error) { + g_warning ("[%s] couldn't enable QMI indications via MBIM: %s", + self->priv->path_display, error->message); + g_error_free (error); + } else { + g_debug ("[%s] enabled QMI indications via MBIM", self->priv->path_display); + self->priv->mbim_notification_id = g_signal_connect (device, + MBIM_DEVICE_SIGNAL_INDICATE_STATUS, + G_CALLBACK (mbim_qmi_notification_cb), + self); + } + + /* Go on */ + ctx = g_task_get_task_data (task); + ctx->step++; + device_open_step (task); +} + +#endif static void ctl_set_data_format_ready (QmiClientCtl *client, GAsyncResult *res, - DeviceOpenContext *ctx) + GTask *task) { + QmiDevice *self; + DeviceOpenContext *ctx; QmiMessageCtlSetDataFormatOutput *output = NULL; GError *error = NULL; output = qmi_client_ctl_set_data_format_finish (client, res, &error); /* Check result of the async operation */ if (!output) { - g_simple_async_result_take_error (ctx->result, error); - device_open_context_complete_and_free (ctx); + g_task_return_error (task, error); + g_object_unref (task); return; } /* Check result of the QMI operation */ if (!qmi_message_ctl_set_data_format_output_get_result (output, &error)) { - g_simple_async_result_take_error (ctx->result, error); - device_open_context_complete_and_free (ctx); + g_task_return_error (task, error); + g_object_unref (task); qmi_message_ctl_set_data_format_output_unref (output); return; } + self = g_task_get_source_object (task); + g_debug ("[%s] Network port data format operation finished", - ctx->self->priv->path_display); + self->priv->path_display); qmi_message_ctl_set_data_format_output_unref (output); /* Go on */ + ctx = g_task_get_task_data (task); ctx->step++; - device_open_context_step (ctx); + device_open_step (task); } static void sync_ready (QmiClientCtl *client_ctl, GAsyncResult *res, - DeviceOpenContext *ctx) + GTask *task) { + QmiDevice *self; + DeviceOpenContext *ctx; GError *error = NULL; QmiMessageCtlSyncOutput *output; /* Check result of the async operation */ output = qmi_client_ctl_sync_finish (client_ctl, res, &error); - if(!output) { - g_simple_async_result_take_error (ctx->result, error); - device_open_context_complete_and_free (ctx); + if (!output) { + g_task_return_error (task, error); + g_object_unref (task); return; } /* Check result of the QMI operation */ if (!qmi_message_ctl_sync_output_get_result (output, &error)) { - g_simple_async_result_take_error (ctx->result, error); - device_open_context_complete_and_free (ctx); + g_task_return_error (task, error); + g_object_unref (task); qmi_message_ctl_sync_output_unref (output); return; } + self = g_task_get_source_object (task); g_debug ("[%s] Sync operation finished", - ctx->self->priv->path_display); + self->priv->path_display); qmi_message_ctl_sync_output_unref (output); /* Go on */ + ctx = g_task_get_task_data (task); ctx->step++; - device_open_context_step (ctx); + device_open_step (task); } static void open_version_info_ready (QmiClientCtl *client_ctl, GAsyncResult *res, - DeviceOpenContext *ctx) + GTask *task) { + QmiDevice *self; + DeviceOpenContext *ctx; GArray *service_list; QmiMessageCtlGetVersionInfoOutput *output; GError *error = NULL; guint i; + self = g_task_get_source_object (task); + ctx = g_task_get_task_data (task); + /* Check result of the async operation */ output = qmi_client_ctl_get_version_info_finish (client_ctl, res, &error); if (!output) { @@ -1940,27 +2035,27 @@ /* If retries left, retry */ if (ctx->version_check_retries > 0) { g_error_free (error); - qmi_client_ctl_get_version_info (ctx->self->priv->client_ctl, + qmi_client_ctl_get_version_info (self->priv->client_ctl, NULL, 1, - ctx->cancellable, + g_task_get_cancellable (task), (GAsyncReadyCallback)open_version_info_ready, - ctx); + task); return; } /* Otherwise, propagate the error */ } - g_simple_async_result_take_error (ctx->result, error); - device_open_context_complete_and_free (ctx); + g_task_return_error (task, error); + g_object_unref (task); return; } /* Check result of the QMI operation */ if (!qmi_message_ctl_get_version_info_output_get_result (output, &error)) { - g_simple_async_result_take_error (ctx->result, error); - device_open_context_complete_and_free (ctx); + g_task_return_error (task, error); + g_object_unref (task); qmi_message_ctl_get_version_info_output_unref (output); return; } @@ -1970,28 +2065,28 @@ qmi_message_ctl_get_version_info_output_get_service_list (output, &service_list, NULL); - ctx->self->priv->supported_services = g_array_ref (service_list); + self->priv->supported_services = g_array_ref (service_list); g_debug ("[%s] QMI Device supports %u services:", - ctx->self->priv->path_display, - ctx->self->priv->supported_services->len); - for (i = 0; i < ctx->self->priv->supported_services->len; i++) { + self->priv->path_display, + self->priv->supported_services->len); + for (i = 0; i < self->priv->supported_services->len; i++) { QmiMessageCtlGetVersionInfoOutputServiceListService *info; const gchar *service_str; - info = &g_array_index (ctx->self->priv->supported_services, + info = &g_array_index (self->priv->supported_services, QmiMessageCtlGetVersionInfoOutputServiceListService, i); service_str = qmi_service_get_string (info->service); if (service_str) g_debug ("[%s] %s (%u.%u)", - ctx->self->priv->path_display, + self->priv->path_display, service_str, info->major_version, info->minor_version); else g_debug ("[%s] unknown [0x%02x] (%u.%u)", - ctx->self->priv->path_display, + self->priv->path_display, info->service, info->major_version, info->minor_version); @@ -2001,29 +2096,30 @@ /* Go on */ ctx->step++; - device_open_context_step (ctx); + device_open_step (task); } static void internal_proxy_open_ready (QmiClientCtl *client_ctl, GAsyncResult *res, - DeviceOpenContext *ctx) + GTask *task) { + DeviceOpenContext *ctx; QmiMessageCtlInternalProxyOpenOutput *output; GError *error = NULL; /* Check result of the async operation */ output = qmi_client_ctl_internal_proxy_open_finish (client_ctl, res, &error); if (!output) { - g_simple_async_result_take_error (ctx->result, error); - device_open_context_complete_and_free (ctx); + g_task_return_error (task, error); + g_object_unref (task); return; } /* Check result of the QMI operation */ if (!qmi_message_ctl_internal_proxy_open_output_get_result (output, &error)) { - g_simple_async_result_take_error (ctx->result, error); - device_open_context_complete_and_free (ctx); + g_task_return_error (task, error); + g_object_unref (task); qmi_message_ctl_internal_proxy_open_output_unref (output); return; } @@ -2031,110 +2127,128 @@ qmi_message_ctl_internal_proxy_open_output_unref (output); /* Go on */ + ctx = g_task_get_task_data (task); ctx->step++; - device_open_context_step (ctx); + device_open_step (task); } static void create_iostream_ready (QmiDevice *self, GAsyncResult *res, - DeviceOpenContext *ctx) + GTask *task) { + DeviceOpenContext *ctx; GError *error = NULL; if (!create_iostream_finish (self, res, &error)) { - g_simple_async_result_take_error (ctx->result, error); - device_open_context_complete_and_free (ctx); + g_task_return_error (task, error); + g_object_unref (task); return; } /* Go on */ + ctx = g_task_get_task_data (task); ctx->step++; - device_open_context_step (ctx); + device_open_step (task); } #if defined MBIM_QMUX_ENABLED static void -mbim_device_open_ready (MbimDevice *dev, +mbim_device_open_ready (MbimDevice *dev, GAsyncResult *res, - DeviceOpenContext *ctx) + GTask *task) { - GError *error = NULL; + QmiDevice *self; + DeviceOpenContext *ctx; + GError *error = NULL; if (!mbim_device_open_finish (dev, res, &error)) { - g_simple_async_result_take_error (ctx->result, error); - device_open_context_complete_and_free (ctx); + g_task_return_error (task, error); + g_object_unref (task); return; } - g_debug ("[%s] MBIM device open", ctx->self->priv->path_display); + self = g_task_get_source_object (task); + g_debug ("[%s] MBIM device open", self->priv->path_display); /* Go on */ + ctx = g_task_get_task_data (task); ctx->step++; - device_open_context_step (ctx); + device_open_step (task); } static void -open_mbim_device (DeviceOpenContext *ctx) +open_mbim_device (GTask *task) { + QmiDevice *self; + DeviceOpenContext *ctx; MbimDeviceOpenFlags open_flags = MBIM_DEVICE_OPEN_FLAGS_NONE; + self = g_task_get_source_object (task); + ctx = g_task_get_task_data (task); + /* If QMI proxy was requested, use MBIM proxy instead */ if (ctx->flags & QMI_DEVICE_OPEN_FLAGS_PROXY) open_flags |= MBIM_DEVICE_OPEN_FLAGS_PROXY; /* We pass the original timeout of the request to the open operation */ - g_debug ("[%s] opening MBIM device...", ctx->self->priv->path_display); - mbim_device_open_full (ctx->self->priv->mbimdev, + g_debug ("[%s] opening MBIM device...", self->priv->path_display); + mbim_device_open_full (self->priv->mbimdev, open_flags, ctx->timeout, - ctx->cancellable, + g_task_get_cancellable (task), (GAsyncReadyCallback) mbim_device_open_ready, - ctx); + task); } static void mbim_device_new_ready (GObject *source, GAsyncResult *res, - DeviceOpenContext *ctx) + GTask *task) { + QmiDevice *self; + DeviceOpenContext *ctx; GError *error = NULL; - ctx->self->priv->mbimdev = mbim_device_new_finish (res, &error); - if (!ctx->self->priv->mbimdev) { - g_simple_async_result_take_error (ctx->result, error); - device_open_context_complete_and_free (ctx); + self = g_task_get_source_object (task); + self->priv->mbimdev = mbim_device_new_finish (res, &error); + if (!self->priv->mbimdev) { + g_task_return_error (task, error); + g_object_unref (task); return; } - g_debug ("[%s] MBIM device created", ctx->self->priv->path_display); + g_debug ("[%s] MBIM device created", self->priv->path_display); /* Go on */ + ctx = g_task_get_task_data (task); ctx->step++; - device_open_context_step (ctx); + device_open_step (task); } static void -create_mbim_device (DeviceOpenContext *ctx) +create_mbim_device (GTask *task) { + QmiDevice *self; GFile *file; - if (ctx->self->priv->mbimdev) { - g_simple_async_result_set_error (ctx->result, - QMI_CORE_ERROR, - QMI_CORE_ERROR_WRONG_STATE, - "Already open"); - device_open_context_complete_and_free (ctx); + self = g_task_get_source_object (task); + if (self->priv->mbimdev) { + g_task_return_new_error (task, + QMI_CORE_ERROR, + QMI_CORE_ERROR_WRONG_STATE, + "Already open"); + g_object_unref (task); return; } - g_debug ("[%s] creating MBIM device...", ctx->self->priv->path_display); - file = g_file_new_for_path (ctx->self->priv->path); + g_debug ("[%s] creating MBIM device...", self->priv->path_display); + file = g_file_new_for_path (self->priv->path); mbim_device_new (file, - ctx->cancellable, + g_task_get_cancellable (task), (GAsyncReadyCallback) mbim_device_new_ready, - ctx); + task); g_object_unref (file); } @@ -2146,60 +2260,68 @@ QMI_DEVICE_OPEN_FLAGS_NET_NO_QOS_HEADER) static void -device_open_context_step (DeviceOpenContext *ctx) +device_open_step (GTask *task) { + QmiDevice *self; + DeviceOpenContext *ctx; + + self = g_task_get_source_object (task); + ctx = g_task_get_task_data (task); + switch (ctx->step) { case DEVICE_OPEN_CONTEXT_STEP_FIRST: ctx->step++; /* Fall down */ case DEVICE_OPEN_CONTEXT_STEP_DRIVER: - ctx->driver = __qmi_utils_get_driver (ctx->self->priv->path); + ctx->driver = __qmi_utils_get_driver (self->priv->path); if (ctx->driver) - g_debug ("[%s] loaded driver of cdc-wdm port: %s", ctx->self->priv->path_display, ctx->driver); - else if (!ctx->self->priv->no_file_check) - g_warning ("[%s] couldn't load driver of cdc-wdm port", ctx->self->priv->path_display); + g_debug ("[%s] loaded driver of cdc-wdm port: %s", self->priv->path_display, ctx->driver); + else if (!self->priv->no_file_check) + g_warning ("[%s] couldn't load driver of cdc-wdm port", self->priv->path_display); #if defined MBIM_QMUX_ENABLED /* Auto mode requested? */ if (ctx->flags & QMI_DEVICE_OPEN_FLAGS_AUTO) { if (!g_strcmp0 (ctx->driver, "cdc_mbim")) { - g_debug ("[%s] automatically selecting MBIM mode", ctx->self->priv->path_display); + g_debug ("[%s] automatically selecting MBIM mode", self->priv->path_display); ctx->flags |= QMI_DEVICE_OPEN_FLAGS_MBIM; goto next_step; } if (!g_strcmp0 (ctx->driver, "qmi_wwan")) { - g_debug ("[%s] automatically selecting QMI mode", ctx->self->priv->path_display); + g_debug ("[%s] automatically selecting QMI mode", self->priv->path_display); ctx->flags &= ~QMI_DEVICE_OPEN_FLAGS_MBIM; goto next_step; } - g_simple_async_result_set_error (ctx->result, QMI_CORE_ERROR, QMI_CORE_ERROR_FAILED, - "Cannot automatically select QMI/MBIM mode: driver %s", - ctx->driver ? ctx->driver : "unknown"); - device_open_context_complete_and_free (ctx); + g_task_return_new_error (task, + QMI_CORE_ERROR, + QMI_CORE_ERROR_FAILED, + "Cannot automatically select QMI/MBIM mode: driver %s", + ctx->driver ? ctx->driver : "unknown"); + g_object_unref (task); return; } /* MBIM mode requested? */ if (ctx->flags & QMI_DEVICE_OPEN_FLAGS_MBIM) { - if (g_strcmp0 (ctx->driver, "cdc_mbim") && !ctx->self->priv->no_file_check) - g_warning ("[%s] requested MBIM mode but unexpected driver found: %s", ctx->self->priv->path_display, ctx->driver); + if (g_strcmp0 (ctx->driver, "cdc_mbim") && !self->priv->no_file_check) + g_warning ("[%s] requested MBIM mode but unexpected driver found: %s", self->priv->path_display, ctx->driver); goto next_step; } #else if (ctx->flags & QMI_DEVICE_OPEN_FLAGS_AUTO) - g_warning ("[%s] requested auto mode but no MBIM QMUX support available", ctx->self->priv->path_display); + g_warning ("[%s] requested auto mode but no MBIM QMUX support available", self->priv->path_display); if (ctx->flags & QMI_DEVICE_OPEN_FLAGS_MBIM) - g_warning ("[%s] requested MBIM mode but no MBIM QMUX support available", ctx->self->priv->path_display); + g_warning ("[%s] requested MBIM mode but no MBIM QMUX support available", self->priv->path_display); #endif /* MBIM_QMUX_ENABLED */ /* QMI mode requested? */ - if (g_strcmp0 (ctx->driver, "qmi_wwan") && !ctx->self->priv->no_file_check) + if (g_strcmp0 (ctx->driver, "qmi_wwan") && !self->priv->no_file_check) g_warning ("[%s] requested QMI mode but unexpected driver found: %s", - ctx->self->priv->path_display, ctx->driver ? ctx->driver : "unknown"); + self->priv->path_display, ctx->driver ? ctx->driver : "unknown"); #if defined MBIM_QMUX_ENABLED next_step: @@ -2210,7 +2332,7 @@ #if defined MBIM_QMUX_ENABLED case DEVICE_OPEN_CONTEXT_STEP_DEVICE_MBIM: if (ctx->flags & QMI_DEVICE_OPEN_FLAGS_MBIM) { - create_mbim_device (ctx); + create_mbim_device (task); return; } ctx->step++; @@ -2218,7 +2340,7 @@ case DEVICE_OPEN_CONTEXT_STEP_OPEN_DEVICE_MBIM: if (ctx->flags & QMI_DEVICE_OPEN_FLAGS_MBIM) { - open_mbim_device (ctx); + open_mbim_device (task); return; } ctx->step++; @@ -2227,10 +2349,10 @@ case DEVICE_OPEN_CONTEXT_STEP_CREATE_IOSTREAM: if (!(ctx->flags & QMI_DEVICE_OPEN_FLAGS_MBIM)) { - create_iostream (ctx->self, + create_iostream (self, !!(ctx->flags & QMI_DEVICE_OPEN_FLAGS_PROXY), (GAsyncReadyCallback)create_iostream_ready, - ctx); + task); return; } ctx->step++; @@ -2242,13 +2364,13 @@ QmiMessageCtlInternalProxyOpenInput *input; input = qmi_message_ctl_internal_proxy_open_input_new (); - qmi_message_ctl_internal_proxy_open_input_set_device_path (input, ctx->self->priv->path, NULL); - qmi_client_ctl_internal_proxy_open (ctx->self->priv->client_ctl, + qmi_message_ctl_internal_proxy_open_input_set_device_path (input, self->priv->path, NULL); + qmi_client_ctl_internal_proxy_open (self->priv->client_ctl, input, 5, - ctx->cancellable, + g_task_get_cancellable (task), (GAsyncReadyCallback)internal_proxy_open_ready, - ctx); + task); qmi_message_ctl_internal_proxy_open_input_unref (input); return; } @@ -2261,14 +2383,14 @@ /* Setup how many times to retry... We'll retry once per second */ ctx->version_check_retries = ctx->timeout > 0 ? ctx->timeout : 1; g_debug ("[%s] Checking version info (%u retries)...", - ctx->self->priv->path_display, + self->priv->path_display, ctx->version_check_retries); - qmi_client_ctl_get_version_info (ctx->self->priv->client_ctl, + qmi_client_ctl_get_version_info (self->priv->client_ctl, NULL, 1, - ctx->cancellable, + g_task_get_cancellable (task), (GAsyncReadyCallback)open_version_info_ready, - ctx); + task); return; } ctx->step++; @@ -2278,13 +2400,13 @@ /* Sync? */ if (ctx->flags & QMI_DEVICE_OPEN_FLAGS_SYNC) { g_debug ("[%s] Running sync...", - ctx->self->priv->path_display); - qmi_client_ctl_sync (ctx->self->priv->client_ctl, + self->priv->path_display); + qmi_client_ctl_sync (self->priv->client_ctl, NULL, ctx->timeout, - ctx->cancellable, + g_task_get_cancellable (task), (GAsyncReadyCallback)sync_ready, - ctx); + task); return; } ctx->step++; @@ -2298,7 +2420,7 @@ QmiCtlDataLinkProtocol link_protocol = QMI_CTL_DATA_LINK_PROTOCOL_802_3; g_debug ("[%s] Setting network port data format...", - ctx->self->priv->path_display); + self->priv->path_display); input = qmi_message_ctl_set_data_format_input_new (); @@ -2310,22 +2432,58 @@ link_protocol = QMI_CTL_DATA_LINK_PROTOCOL_RAW_IP; qmi_message_ctl_set_data_format_input_set_protocol (input, link_protocol, NULL); - qmi_client_ctl_set_data_format (ctx->self->priv->client_ctl, + qmi_client_ctl_set_data_format (self->priv->client_ctl, input, 5, NULL, (GAsyncReadyCallback)ctl_set_data_format_ready, - ctx); + task); qmi_message_ctl_set_data_format_input_unref (input); return; } ctx->step++; /* Fall down */ +#if defined MBIM_QMUX_ENABLED + case DEVICE_OPEN_CONTEXT_STEP_FLAGS_EXPECT_INDICATIONS: + /* Enable MBIM indications explicitly ONLY after knowing this is + * a QMI-capable MBIM device. */ + if (self->priv->mbimdev && ctx->flags & QMI_DEVICE_OPEN_FLAGS_EXPECT_INDICATIONS) { + MbimEventEntry **entries; + guint n_entries = 0; + MbimMessage *request; + + g_debug ("[%s] Enabling QMI indications via MBIM...", self->priv->path_display); + entries = g_new0 (MbimEventEntry *, 2); + entries[n_entries] = g_new (MbimEventEntry, 1); + memcpy (&(entries[n_entries]->device_service_id), MBIM_UUID_QMI, sizeof (MbimUuid)); + entries[n_entries]->cids_count = 1; + entries[n_entries]->cids = g_new0 (guint32, 1); + entries[n_entries]->cids[0] = MBIM_CID_QMI_MSG; + n_entries++; + + request = mbim_message_device_service_subscribe_list_set_new ( + n_entries, + (const MbimEventEntry *const *)entries, + NULL); + mbim_device_command (self->priv->mbimdev, + request, + 10, + NULL, + (GAsyncReadyCallback)mbim_subscribe_list_set_ready_cb, + task); + mbim_message_unref (request); + mbim_event_entry_array_free (entries); + return; + } + ctx->step++; + /* Fall down */ +#endif + case DEVICE_OPEN_CONTEXT_STEP_LAST: /* Nothing else to process, done we are */ - g_simple_async_result_set_op_res_gboolean (ctx->result, TRUE); - device_open_context_complete_and_free (ctx); + g_task_return_boolean (task, TRUE); + g_object_unref (task); return; default: @@ -2345,6 +2503,7 @@ { DeviceOpenContext *ctx; gchar *flags_str; + GTask *task; /* Raw IP and 802.3 are mutually exclusive */ g_return_if_fail (!((flags & QMI_DEVICE_OPEN_FLAGS_NET_802_3) && @@ -2367,18 +2526,15 @@ g_free (flags_str); ctx = g_slice_new (DeviceOpenContext); - ctx->self = g_object_ref (self); - ctx->result = g_simple_async_result_new (G_OBJECT (self), - callback, - user_data, - qmi_device_open); ctx->step = DEVICE_OPEN_CONTEXT_STEP_FIRST; ctx->flags = flags; ctx->timeout = timeout; - ctx->cancellable = (cancellable ? g_object_ref (cancellable) : NULL); + + task = g_task_new (self, cancellable, callback, user_data); + g_task_set_task_data (task, ctx, (GDestroyNotify)device_open_context_free); /* Start processing */ - device_open_context_step (ctx); + device_open_step (task); } /*****************************************************************************/ @@ -2387,12 +2543,19 @@ static void destroy_iostream (QmiDevice *self) { - g_clear_pointer (&self->priv->input_source, g_source_destroy); + if (self->priv->input_source) { + g_source_destroy (self->priv->input_source); + g_clear_pointer (&self->priv->input_source, g_source_unref); + } g_clear_pointer (&self->priv->buffer, g_byte_array_unref); g_clear_object (&self->priv->istream); g_clear_object (&self->priv->ostream); g_clear_object (&self->priv->socket_connection); g_clear_object (&self->priv->socket_client); + if (self->priv->fd >= 0) { + close (self->priv->fd); + self->priv->fd = -1; + } } #if defined MBIM_QMUX_ENABLED @@ -2442,6 +2605,10 @@ task); /* Cleanup right away, we don't want multiple close attempts on the * device */ + if (self->priv->mbim_notification_id) { + g_signal_handler_disconnect (self->priv->mbimdev, self->priv->mbim_notification_id); + self->priv->mbim_notification_id = 0; + } g_clear_object (&self->priv->mbimdev); return; } @@ -2453,15 +2620,6 @@ g_object_unref (task); } -gboolean -qmi_device_close (QmiDevice *self, - GError **error) -{ - g_return_val_if_fail (QMI_IS_DEVICE (self), FALSE); - qmi_device_close_async (self, 0, NULL, NULL, NULL); - return TRUE; -} - #if defined MBIM_QMUX_ENABLED typedef struct { @@ -2564,7 +2722,7 @@ g_debug ("[%s] sending message as MBIM...", self->priv->path_display); - mbim_message = (mbim_message_qmi_msg_set_new (raw_message_len, raw_message, error)); + mbim_message = mbim_message_qmi_msg_set_new (raw_message_len, raw_message, error); if (!mbim_message) return FALSE; @@ -2800,29 +2958,12 @@ /*****************************************************************************/ /* Async init */ -typedef struct { - QmiDevice *self; - GSimpleAsyncResult *result; - GCancellable *cancellable; -} InitContext; - -static void -init_context_complete_and_free (InitContext *ctx) -{ - g_simple_async_result_complete_in_idle (ctx->result); - if (ctx->cancellable) - g_object_unref (ctx->cancellable); - g_object_unref (ctx->result); - g_object_unref (ctx->self); - g_slice_free (InitContext, ctx); -} - static gboolean initable_init_finish (GAsyncInitable *initable, GAsyncResult *result, GError **error) { - return !g_simple_async_result_propagate_error (G_SIMPLE_ASYNC_RESULT (result), error); + return g_task_propagate_boolean (G_TASK (result), error); } static void @@ -2835,39 +2976,42 @@ } static void -client_ctl_setup (InitContext *ctx) +client_ctl_setup (GTask *task) { + QmiDevice *self; GError *error = NULL; + self = g_task_get_source_object (task); + /* Create the implicit CTL client */ - ctx->self->priv->client_ctl = g_object_new (QMI_TYPE_CLIENT_CTL, - QMI_CLIENT_DEVICE, ctx->self, - QMI_CLIENT_SERVICE, QMI_SERVICE_CTL, - QMI_CLIENT_CID, QMI_CID_NONE, - NULL); + self->priv->client_ctl = g_object_new (QMI_TYPE_CLIENT_CTL, + QMI_CLIENT_DEVICE, self, + QMI_CLIENT_SERVICE, QMI_SERVICE_CTL, + QMI_CLIENT_CID, QMI_CID_NONE, + NULL); /* Register the CTL client to get indications */ - register_client (ctx->self, - QMI_CLIENT (ctx->self->priv->client_ctl), + register_client (self, + QMI_CLIENT (self->priv->client_ctl), &error); g_assert_no_error (error); /* Connect to 'Sync' indications */ - ctx->self->priv->sync_indication_id = - g_signal_connect (ctx->self->priv->client_ctl, + self->priv->sync_indication_id = + g_signal_connect (self->priv->client_ctl, "sync", G_CALLBACK (sync_indication_cb), - ctx->self); + self); /* Done we are */ - g_simple_async_result_set_op_res_gboolean (ctx->result, TRUE); - init_context_complete_and_free (ctx); + g_task_return_boolean (task, TRUE); + g_object_unref (task); } static void query_info_async_ready (GFile *file, GAsyncResult *res, - InitContext *ctx) + GTask *task) { GError *error = NULL; GFileInfo *info; @@ -2876,24 +3020,24 @@ if (!info) { g_prefix_error (&error, "Couldn't query file info: "); - g_simple_async_result_take_error (ctx->result, error); - init_context_complete_and_free (ctx); + g_task_return_error (task, error); + g_object_unref (task); return; } /* Our QMI device must be of SPECIAL type */ if (g_file_info_get_file_type (info) != G_FILE_TYPE_SPECIAL) { - g_simple_async_result_set_error (ctx->result, - QMI_CORE_ERROR, - QMI_CORE_ERROR_FAILED, - "Wrong file type"); - init_context_complete_and_free (ctx); + g_task_return_new_error (task, + QMI_CORE_ERROR, + QMI_CORE_ERROR_FAILED, + "Wrong file type"); + g_object_unref (task); return; } g_object_unref (info); /* Go on with client CTL setup */ - client_ctl_setup (ctx); + client_ctl_setup (task); } static void @@ -2903,43 +3047,38 @@ GAsyncReadyCallback callback, gpointer user_data) { - InitContext *ctx; + QmiDevice *self; + GTask *task; - ctx = g_slice_new0 (InitContext); - ctx->self = g_object_ref (initable); - if (cancellable) - ctx->cancellable = g_object_ref (cancellable); - ctx->result = g_simple_async_result_new (G_OBJECT (initable), - callback, - user_data, - initable_init_async); + self = QMI_DEVICE (initable); + task = g_task_new (self, cancellable, callback, user_data); /* We need a proper file to initialize */ - if (!ctx->self->priv->file) { - g_simple_async_result_set_error (ctx->result, - QMI_CORE_ERROR, - QMI_CORE_ERROR_INVALID_ARGS, - "Cannot initialize QMI device: No file given"); - init_context_complete_and_free (ctx); + if (!self->priv->file) { + g_task_return_new_error (task, + QMI_CORE_ERROR, + QMI_CORE_ERROR_INVALID_ARGS, + "Cannot initialize QMI device: No file given"); + g_object_unref (task); return; } /* If no file check requested, don't do it */ - if (ctx->self->priv->no_file_check) { - client_ctl_setup (ctx); + if (self->priv->no_file_check) { + client_ctl_setup (task); return; } /* Check the file type. Note that this is just a quick check to avoid * creating QmiDevices pointing to a location already known not to be a QMI * device. */ - g_file_query_info_async (ctx->self->priv->file, + g_file_query_info_async (self->priv->file, G_FILE_ATTRIBUTE_STANDARD_TYPE, G_FILE_QUERY_INFO_NONE, G_PRIORITY_DEFAULT, - ctx->cancellable, + cancellable, (GAsyncReadyCallback)query_info_async_ready, - ctx); + task); } /*****************************************************************************/ @@ -3011,6 +3150,7 @@ NULL, g_object_unref); self->priv->proxy_path = g_strdup (QMI_PROXY_SOCKET_PATH); + self->priv->fd = -1; } static gboolean @@ -3044,6 +3184,18 @@ (GHRFunc)foreach_warning, self); +#if defined MBIM_QMUX_ENABLED + if (self->priv->mbimdev) { + g_warning ("[%s] MBIM device wasn't explicitly closed", + self->priv->path_display); + if (self->priv->mbim_notification_id) { + g_signal_handler_disconnect (self->priv->mbimdev, self->priv->mbim_notification_id); + self->priv->mbim_notification_id = 0; + } + g_clear_object (&self->priv->mbimdev); + } +#endif + if (self->priv->sync_indication_id && self->priv->client_ctl) { g_signal_handler_disconnect (self->priv->client_ctl, @@ -3173,4 +3325,24 @@ G_TYPE_NONE, 1, G_TYPE_BYTE_ARRAY); + + /** + * QmiDevice::device-removed: + * @object: A #QmiDevice. + * @output: none + * + * The ::device-removed signal is emitted when an unexpected port hang-up is received. + * + * Since: 1.20 + */ + signals[SIGNAL_REMOVED] = + g_signal_new (QMI_DEVICE_SIGNAL_REMOVED, + G_OBJECT_CLASS_TYPE (G_OBJECT_CLASS (klass)), + G_SIGNAL_RUN_LAST, + 0, + NULL, + NULL, + NULL, + G_TYPE_NONE, + 0); } diff -Nru libqmi-1.18.0/src/libqmi-glib/qmi-device.h libqmi-1.22.0/src/libqmi-glib/qmi-device.h --- libqmi-1.18.0/src/libqmi-glib/qmi-device.h 2017-03-21 14:26:54.000000000 +0100 +++ libqmi-1.22.0/src/libqmi-glib/qmi-device.h 2019-01-08 14:09:47.000000000 +0100 @@ -105,6 +105,15 @@ #define QMI_DEVICE_SIGNAL_INDICATION "indication" /** + * QMI_DEVICE_REMOVED: + * + * Symbol defining the #QmiDevice::device-removed signal. + * + * Since: 1.20 + */ +#define QMI_DEVICE_SIGNAL_REMOVED "device-removed" + +/** * QmiDevice: * * The #QmiDevice structure contains private data and should only be accessed @@ -243,22 +252,24 @@ * @QMI_DEVICE_OPEN_FLAGS_PROXY: Try to open the port through the 'qmi-proxy'. Since: 1.8. * @QMI_DEVICE_OPEN_FLAGS_MBIM: open an MBIM port with QMUX tunneling service. Since: 1.16. * @QMI_DEVICE_OPEN_FLAGS_AUTO: open a port either in QMI or MBIM mode, depending on device driver. Since: 1.18. + * @QMI_DEVICE_OPEN_FLAGS_EXPECT_INDICATIONS: Explicitly state that indications are wanted (implicit in QMI mode, optional when in MBIM mode). * * Flags to specify which actions to be performed when the device is open. * * Since: 1.0 */ typedef enum { - QMI_DEVICE_OPEN_FLAGS_NONE = 0, - QMI_DEVICE_OPEN_FLAGS_VERSION_INFO = 1 << 0, - QMI_DEVICE_OPEN_FLAGS_SYNC = 1 << 1, - QMI_DEVICE_OPEN_FLAGS_NET_802_3 = 1 << 2, - QMI_DEVICE_OPEN_FLAGS_NET_RAW_IP = 1 << 3, - QMI_DEVICE_OPEN_FLAGS_NET_QOS_HEADER = 1 << 4, - QMI_DEVICE_OPEN_FLAGS_NET_NO_QOS_HEADER = 1 << 5, - QMI_DEVICE_OPEN_FLAGS_PROXY = 1 << 6, - QMI_DEVICE_OPEN_FLAGS_MBIM = 1 << 7, - QMI_DEVICE_OPEN_FLAGS_AUTO = 1 << 8, + QMI_DEVICE_OPEN_FLAGS_NONE = 0, + QMI_DEVICE_OPEN_FLAGS_VERSION_INFO = 1 << 0, + QMI_DEVICE_OPEN_FLAGS_SYNC = 1 << 1, + QMI_DEVICE_OPEN_FLAGS_NET_802_3 = 1 << 2, + QMI_DEVICE_OPEN_FLAGS_NET_RAW_IP = 1 << 3, + QMI_DEVICE_OPEN_FLAGS_NET_QOS_HEADER = 1 << 4, + QMI_DEVICE_OPEN_FLAGS_NET_NO_QOS_HEADER = 1 << 5, + QMI_DEVICE_OPEN_FLAGS_PROXY = 1 << 6, + QMI_DEVICE_OPEN_FLAGS_MBIM = 1 << 7, + QMI_DEVICE_OPEN_FLAGS_AUTO = 1 << 8, + QMI_DEVICE_OPEN_FLAGS_EXPECT_INDICATIONS = 1 << 9, } QmiDeviceOpenFlags; /** @@ -307,28 +318,6 @@ GError **error); /** - * qmi_device_close: - * @self: a #QmiDevice - * @error: Return location for error or %NULL. - * - * Synchronously closes a #QmiDevice, preventing any further I/O. - * - * If this device was opened with @QMI_DEVICE_OPEN_FLAGS_MBIM, this - * operation will not wait for the response of the underlying MBIM - * close sequence. - * - * Closing a #QmiDevice multiple times will not return an error. - * - * Returns: %TRUE if successful, %FALSE if @error is set. - * - * Since: 1.0 - * Deprecated: 1.18: Use qmi_device_close_async() instead. - */ -G_DEPRECATED -gboolean qmi_device_close (QmiDevice *self, - GError **error); - -/** * qmi_device_close_async: * @self: a #QmiDevice. * @timeout: maximum time, in seconds, to wait for the device to be closed. diff -Nru libqmi-1.18.0/src/libqmi-glib/qmi-enums-dms.c libqmi-1.22.0/src/libqmi-glib/qmi-enums-dms.c --- libqmi-1.18.0/src/libqmi-glib/qmi-enums-dms.c 1970-01-01 01:00:00.000000000 +0100 +++ libqmi-1.22.0/src/libqmi-glib/qmi-enums-dms.c 2018-03-20 21:33:05.000000000 +0100 @@ -0,0 +1,59 @@ +/* -*- Mode: C; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */ +/* + * libqmi-glib -- GLib/GIO based library to control QMI devices + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation; either + * version 2 of the License, or (at your option) any later version. + * + * This library is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with this library; if not, write to the + * Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, + * Boston, MA 02110-1301 USA. + * + * Copyright (C) 2017 Aleksander Morgado + */ + +#include +#include "qmi-enums-dms.h" + +/*****************************************************************************/ +/* Helper for the 'QMI DMS Swi Get USB Composition' message */ + +static const gchar *usb_composition_description[] = { + [QMI_DMS_SWI_USB_COMPOSITION_0] = "HIP, DM, NMEA, AT, MDM1, MDM2, MDM3, MS", + [QMI_DMS_SWI_USB_COMPOSITION_1] = "HIP, DM, NMEA, AT, MDM1, MS", + [QMI_DMS_SWI_USB_COMPOSITION_2] = "HIP, DM, NMEA, AT, NIC1, MS", + [QMI_DMS_SWI_USB_COMPOSITION_3] = "HIP, DM, NMEA, AT, MDM1, NIC1, MS", + [QMI_DMS_SWI_USB_COMPOSITION_4] = "HIP, DM, NMEA, AT, NIC1, NIC2, NIC3, MS", + [QMI_DMS_SWI_USB_COMPOSITION_5] = "HIP, DM, NMEA, AT, ECM1, MS", + [QMI_DMS_SWI_USB_COMPOSITION_6] = "DM, NMEA, AT, QMI", + [QMI_DMS_SWI_USB_COMPOSITION_7] = "DM, NMEA, AT, RMNET1, RMNET2, RMNET3", + [QMI_DMS_SWI_USB_COMPOSITION_8] = "DM, NMEA, AT, MBIM", + [QMI_DMS_SWI_USB_COMPOSITION_9] = "MBIM", + [QMI_DMS_SWI_USB_COMPOSITION_10] = "NMEA, MBIM", + [QMI_DMS_SWI_USB_COMPOSITION_11] = "DM, MBIM", + [QMI_DMS_SWI_USB_COMPOSITION_12] = "DM, NMEA, MBIM", + [QMI_DMS_SWI_USB_COMPOSITION_13] = "Dual configuration: USB composition 6 and USB composition 8", + [QMI_DMS_SWI_USB_COMPOSITION_14] = "Dual configuration: USB composition 6 and USB composition 9", + [QMI_DMS_SWI_USB_COMPOSITION_15] = "Dual configuration: USB composition 6 and USB composition 10", + [QMI_DMS_SWI_USB_COMPOSITION_16] = "Dual configuration: USB composition 6 and USB composition 11", + [QMI_DMS_SWI_USB_COMPOSITION_17] = "Dual configuration: USB composition 6 and USB composition 12", + [QMI_DMS_SWI_USB_COMPOSITION_18] = "Dual configuration: USB composition 7 and USB composition 8", + [QMI_DMS_SWI_USB_COMPOSITION_19] = "Dual configuration: USB composition 7 and USB composition 9", + [QMI_DMS_SWI_USB_COMPOSITION_20] = "Dual configuration: USB composition 7 and USB composition 10", + [QMI_DMS_SWI_USB_COMPOSITION_21] = "Dual configuration: USB composition 7 and USB composition 11", + [QMI_DMS_SWI_USB_COMPOSITION_22] = "Dual configuration: USB composition 7 and USB composition 12", +}; + +const gchar * +qmi_dms_swi_usb_composition_get_description (QmiDmsSwiUsbComposition value) +{ + return ((value > QMI_DMS_SWI_USB_COMPOSITION_UNKNOWN && value < G_N_ELEMENTS (usb_composition_description)) ? usb_composition_description[value] : NULL); +} diff -Nru libqmi-1.18.0/src/libqmi-glib/qmi-enums-dms.h libqmi-1.22.0/src/libqmi-glib/qmi-enums-dms.h --- libqmi-1.18.0/src/libqmi-glib/qmi-enums-dms.h 2017-03-21 14:26:54.000000000 +0100 +++ libqmi-1.22.0/src/libqmi-glib/qmi-enums-dms.h 2018-03-20 21:33:05.000000000 +0100 @@ -24,6 +24,8 @@ #ifndef _LIBQMI_GLIB_QMI_ENUMS_DMS_H_ #define _LIBQMI_GLIB_QMI_ENUMS_DMS_H_ +#include + #if !defined (__LIBQMI_GLIB_H_INSIDE__) && !defined (LIBQMI_GLIB_COMPILATION) #error "Only can be included directly." #endif @@ -502,4 +504,82 @@ * Since: 1.18 */ +/*****************************************************************************/ +/* Helper enums for the 'QMI DMS Swi Get USB Composition' message */ + +/** + * QmiDmsSwiUsbComposition: + * @QMI_DMS_SWI_USB_COMPOSITION_UNKNOWN: Unknown. + * @QMI_DMS_SWI_USB_COMPOSITION_0: HIP, DM, NMEA, AT, MDM1, MDM2, MDM3, MS. + * @QMI_DMS_SWI_USB_COMPOSITION_1: HIP, DM, NMEA, AT, MDM1, MS. + * @QMI_DMS_SWI_USB_COMPOSITION_2: HIP, DM, NMEA, AT, NIC1, MS. + * @QMI_DMS_SWI_USB_COMPOSITION_3: HIP, DM, NMEA, AT, MDM1, NIC1, MS. + * @QMI_DMS_SWI_USB_COMPOSITION_4: HIP, DM, NMEA, AT, NIC1, NIC2, NIC3, MS. + * @QMI_DMS_SWI_USB_COMPOSITION_5: HIP, DM, NMEA, AT, ECM1, MS. + * @QMI_DMS_SWI_USB_COMPOSITION_6: DM, NMEA, AT, QMI. + * @QMI_DMS_SWI_USB_COMPOSITION_7: DM, NMEA, AT, RMNET1, RMNET2, RMNET3. + * @QMI_DMS_SWI_USB_COMPOSITION_8: DM, NMEA, AT, MBIM. + * @QMI_DMS_SWI_USB_COMPOSITION_9: MBIM. + * @QMI_DMS_SWI_USB_COMPOSITION_10: NMEA, MBIM. + * @QMI_DMS_SWI_USB_COMPOSITION_11: DM, MBIM. + * @QMI_DMS_SWI_USB_COMPOSITION_12: DM, NMEA, MBIM. + * @QMI_DMS_SWI_USB_COMPOSITION_13: Dual configuration: USB composition 6 and USB composition 8. + * @QMI_DMS_SWI_USB_COMPOSITION_14: Dual configuration: USB composition 6 and USB composition 9. + * @QMI_DMS_SWI_USB_COMPOSITION_15: Dual configuration: USB composition 6 and USB composition 10. + * @QMI_DMS_SWI_USB_COMPOSITION_16: Dual configuration: USB composition 6 and USB composition 11. + * @QMI_DMS_SWI_USB_COMPOSITION_17: Dual configuration: USB composition 6 and USB composition 12. + * @QMI_DMS_SWI_USB_COMPOSITION_18: Dual configuration: USB composition 7 and USB composition 8. + * @QMI_DMS_SWI_USB_COMPOSITION_19: Dual configuration: USB composition 7 and USB composition 9. + * @QMI_DMS_SWI_USB_COMPOSITION_20: Dual configuration: USB composition 7 and USB composition 10. + * @QMI_DMS_SWI_USB_COMPOSITION_21: Dual configuration: USB composition 7 and USB composition 11. + * @QMI_DMS_SWI_USB_COMPOSITION_22: Dual configuration: USB composition 7 and USB composition 12. + * + * Sierra Wireless USB composition modes. + * + * Since: 1.20 + */ +typedef enum { + QMI_DMS_SWI_USB_COMPOSITION_UNKNOWN = -1, + QMI_DMS_SWI_USB_COMPOSITION_0 = 0, + QMI_DMS_SWI_USB_COMPOSITION_1 = 1, + QMI_DMS_SWI_USB_COMPOSITION_2 = 2, + QMI_DMS_SWI_USB_COMPOSITION_3 = 3, + QMI_DMS_SWI_USB_COMPOSITION_4 = 4, + QMI_DMS_SWI_USB_COMPOSITION_5 = 5, + QMI_DMS_SWI_USB_COMPOSITION_6 = 6, + QMI_DMS_SWI_USB_COMPOSITION_7 = 7, + QMI_DMS_SWI_USB_COMPOSITION_8 = 8, + QMI_DMS_SWI_USB_COMPOSITION_9 = 9, + QMI_DMS_SWI_USB_COMPOSITION_10 = 10, + QMI_DMS_SWI_USB_COMPOSITION_11 = 11, + QMI_DMS_SWI_USB_COMPOSITION_12 = 12, + QMI_DMS_SWI_USB_COMPOSITION_13 = 13, + QMI_DMS_SWI_USB_COMPOSITION_14 = 14, + QMI_DMS_SWI_USB_COMPOSITION_15 = 15, + QMI_DMS_SWI_USB_COMPOSITION_16 = 16, + QMI_DMS_SWI_USB_COMPOSITION_17 = 17, + QMI_DMS_SWI_USB_COMPOSITION_18 = 18, + QMI_DMS_SWI_USB_COMPOSITION_19 = 19, + QMI_DMS_SWI_USB_COMPOSITION_20 = 20, + QMI_DMS_SWI_USB_COMPOSITION_21 = 21, + QMI_DMS_SWI_USB_COMPOSITION_22 = 22, +} QmiDmsSwiUsbComposition; + +/** + * qmi_dms_swi_usb_composition_get_description: + * @value: a #QmiDmsSwiUsbComposition. + * + * Gets a text description of the Sierra Wireless USB composition. + * + * Since: 1.20 + * Returns: a string. + */ +const gchar *qmi_dms_swi_usb_composition_get_description (QmiDmsSwiUsbComposition value); + +/** + * qmi_dms_swi_usb_composition_get_string: + * + * Since: 1.20 + */ + #endif /* _LIBQMI_GLIB_QMI_ENUMS_DMS_H_ */ diff -Nru libqmi-1.18.0/src/libqmi-glib/qmi-enums-loc.h libqmi-1.22.0/src/libqmi-glib/qmi-enums-loc.h --- libqmi-1.18.0/src/libqmi-glib/qmi-enums-loc.h 1970-01-01 01:00:00.000000000 +0100 +++ libqmi-1.22.0/src/libqmi-glib/qmi-enums-loc.h 2019-01-08 14:09:47.000000000 +0100 @@ -0,0 +1,574 @@ +/* -*- Mode: C; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */ +/* + * libqmi-glib -- GLib/GIO based library to control QMI devices + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation; either + * version 2 of the License, or (at your option) any later version. + * + * This library is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with this library; if not, write to the + * Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, + * Boston, MA 02110-1301 USA. + * + * Copyright (C) 2012 Google Inc. + * Copyright (C) 2012-2017 Aleksander Morgado + */ + +#ifndef _LIBQMI_GLIB_QMI_ENUMS_LOC_H_ +#define _LIBQMI_GLIB_QMI_ENUMS_LOC_H_ + +#if !defined (__LIBQMI_GLIB_H_INSIDE__) && !defined (LIBQMI_GLIB_COMPILATION) +#error "Only can be included directly." +#endif + +/** + * SECTION: qmi-enums-loc + * @title: LOC enumerations and flags + * + * This section defines enumerations and flags used in the LOC service + * interface. + */ + +/*****************************************************************************/ +/* Helper enums for the 'QMI LOC Start' indication */ + +/** + * QmiLocIntermediateReportState: + * @QMI_LOC_INTERMEDIATE_REPORT_STATE_UNKNOWN: Unknown. + * @QMI_LOC_INTERMEDIATE_REPORT_STATE_ENABLE: Enable intermediate state reporting. + * @QMI_LOC_INTERMEDIATE_REPORT_STATE_DISABLE: Disable intermediate state reporting. + * + * Whether to enable or disable intermediate state reporting. + * + * Since: 1.20 + */ +typedef enum { + QMI_LOC_INTERMEDIATE_REPORT_STATE_UNKNOWN = 0, + QMI_LOC_INTERMEDIATE_REPORT_STATE_ENABLE = 1, + QMI_LOC_INTERMEDIATE_REPORT_STATE_DISABLE = 2, +} QmiLocIntermediateReportState; + +/** + * qmi_loc_intermediate_report_state_get_string: + * + * Since: 1.20 + */ + +/** + * QmiLocIndicationStatus: + * @QMI_LOC_INDICATION_STATUS_SUCCESS: Success. + * @QMI_LOC_INDICATION_STATUS_GENERAL_FAILURE: General Failure. + * @QMI_LOC_INDICATION_STATUS_UNSUPPORTED: Unsupported. + * @QMI_LOC_INDICATION_STATUS_INVALID_PARAMETER: Invalid Parameter. + * @QMI_LOC_INDICATION_STATUS_ENGINE_BUSY: Engine is busy. + * @QMI_LOC_INDICATION_STATUS_PHONE_OFFLINE: Phone is offline. + * @QMI_LOC_INDICATION_STATUS_TIMEOUT: Timeout. + * + * General result of a received indication. + * + * Since 1.22 + */ +typedef enum { + QMI_LOC_INDICATION_STATUS_SUCCESS = 0, + QMI_LOC_INDICATION_STATUS_GENERAL_FAILURE = 1, + QMI_LOC_INDICATION_STATUS_UNSUPPORTED = 2, + QMI_LOC_INDICATION_STATUS_INVALID_PARAMETER = 3, + QMI_LOC_INDICATION_STATUS_ENGINE_BUSY = 4, + QMI_LOC_INDICATION_STATUS_PHONE_OFFLINE = 5, + QMI_LOC_INDICATION_STATUS_TIMEOUT = 6, +} QmiLocIndicationStatus; + +/** + * qmi_loc_indication_status_get_string + * + * Since: 1.22 + */ + +/** + * QmiLocSessionStatus: + * @QMI_LOC_SESSION_STATUS_SUCCESS: Success + * @QMI_LOC_SESSION_STATUS_IN_PROGRESS: Operation in Progress. + * @QMI_LOC_SESSION_STATUS_GENERAL_FAILURE: General Failure. + * @QMI_LOC_SESSION_STATUS_TIMEOUT: Timeout. + * @QMI_LOC_SESSION_STATUS_USER_ENDED: User ended. + * @QMI_LOC_SESSION_STATUS_BAD_PARAMETER: Bad Parameter. + * @QMI_LOC_SESSION_STATUS_PHONE_OFFLINE: Phone is offline. + * @QMI_LOC_SESSION_STATUS_ENGINE_LOCKED: Engine is locked. + * + * Status of a received session indication. + * + * Since 1.22 + */ +typedef enum { + QMI_LOC_SESSION_STATUS_SUCCESS = 0, + QMI_LOC_SESSION_STATUS_IN_PROGRESS = 1, + QMI_LOC_SESSION_STATUS_GENERAL_FAILURE = 2, + QMI_LOC_SESSION_STATUS_TIMEOUT = 3, + QMI_LOC_SESSION_STATUS_USER_ENDED = 4, + QMI_LOC_SESSION_STATUS_BAD_PARAMETER = 5, + QMI_LOC_SESSION_STATUS_PHONE_OFFLINE = 6, + QMI_LOC_SESSION_STATUS_ENGINE_LOCKED = 6, +} QmiLocSessionStatus; + +/** + * qmi_loc_session_status_get_string + * + * Since: 1.22 + */ + +/** + * QmiLocFixRecurrenceType: + * @QMI_LOC_FIX_RECURRENCE_TYPE_REQUEST_PERIODIC_FIXES: Periodic fixes. + * @QMI_LOC_FIX_RECURRENCE_TYPE_REQUEST_SINGLE_FIX: Single fix. + * + * Whether to request a single or periodic fixes. + * + * Since 1.22 + */ +typedef enum { + QMI_LOC_FIX_RECURRENCE_TYPE_REQUEST_PERIODIC_FIXES = 1, + QMI_LOC_FIX_RECURRENCE_TYPE_REQUEST_SINGLE_FIX = 2, +} QmiLocFixRecurrenceType; + +/** + * qmi_loc_fix_recurrence_type_get_string + * + * Since: 1.22 + */ + +/** + * QmiLocOperationMode: + * @QMI_LOC_OPERATION_MODE_DEFAULT: Default. + * @QMI_LOC_OPERATION_MODE_MSB: MSB (Mobile Station Based). + * @QMI_LOC_OPERATION_MODE_MSA: MSA (Mobile Station Assisted). + * @QMI_LOC_OPERATION_MODE_STANDALONE: Standalone. + * @QMI_LOC_OPERATION_MODE_CELLID: Cell ID. + * @QMI_LOC_OPERATION_MODE_WWAN: WWAN. + * + * Which operation mode to use. + * + * Since 1.22 + */ +typedef enum { + QMI_LOC_OPERATION_MODE_DEFAULT = 1, + QMI_LOC_OPERATION_MODE_MSB = 2, + QMI_LOC_OPERATION_MODE_MSA = 3, + QMI_LOC_OPERATION_MODE_STANDALONE = 4, + QMI_LOC_OPERATION_MODE_CELLID = 5, + QMI_LOC_OPERATION_MODE_WWAN = 6, +} QmiLocOperationMode; + +/** + * qmi_loc_operation_mode_get_string + * + * Since: 1.22 + */ + +/** + * QmiLocEngineState: + * @QMI_LOC_ENGINE_STATE_ON: On. + * @QMI_LOC_ENGINE_STATE_OFF: Off. + * + * State of the engine. + * + * Since 1.22 + */ +typedef enum { + QMI_LOC_ENGINE_STATE_ON = 1, + QMI_LOC_ENGINE_STATE_OFF = 2, +} QmiLocEngineState; + +/** + * qmi_loc_engine_state_get_string + * + * Since: 1.22 + */ + +/** + * QmiLocTechnologyUsed: + * @QMI_LOC_TECHNOLOGY_USED_SATELLITE: Satellite. + * @QMI_LOC_TECHNOLOGY_USED_CELLULAR: Cellular. + * @QMI_LOC_TECHNOLOGY_USED_WIFI: Wifi. + * @QMI_LOC_TECHNOLOGY_USED_SENSORS: Sensors. + * @QMI_LOC_TECHNOLOGY_USED_REFERENCE_LOCATION: Reference Location. + * @QMI_LOC_TECHNOLOGY_USED_INJECTED_POSITION: Injected Position. + * @QMI_LOC_TECHNOLOGY_USED_AFLT: AFLT (Advanced Forward Link Trilateration). + * @QMI_LOC_TECHNOLOGY_USED_HYBRID: Hybrid. + * + * Which technology has been used. + * + * Since 1.22 + */ +typedef enum { + QMI_LOC_TECHNOLOGY_USED_SATELLITE = 1 << 0, + QMI_LOC_TECHNOLOGY_USED_CELLULAR = 1 << 1, + QMI_LOC_TECHNOLOGY_USED_WIFI = 1 << 2, + QMI_LOC_TECHNOLOGY_USED_SENSORS = 1 << 3, + QMI_LOC_TECHNOLOGY_USED_REFERENCE_LOCATION = 1 << 4, + QMI_LOC_TECHNOLOGY_USED_INJECTED_POSITION = 1 << 5, + QMI_LOC_TECHNOLOGY_USED_AFLT = 1 << 6, + QMI_LOC_TECHNOLOGY_USED_HYBRID = 1 << 7, +} QmiLocTechnologyUsed; + +/** + * qmi_loc_technology_used_build_string_from_mask + * + * Since: 1.22 + */ + +/** + * QmiLocReliability: + * @QMI_LOC_RELIABILITY_NOT_SET: Not set. + * @QMI_LOC_RELIABILITY_VERY_LOW: Very low. + * @QMI_LOC_RELIABILITY_LOW: Low. + * @QMI_LOC_RELIABILITY_MEDIUM: Medium. + * @QMI_LOC_RELIABILITY_HIGH: High. + * + * Reliability of the provided information. + * + * Since 1.22 + */ +typedef enum { + QMI_LOC_RELIABILITY_NOT_SET = 0, + QMI_LOC_RELIABILITY_VERY_LOW = 1, + QMI_LOC_RELIABILITY_LOW = 2, + QMI_LOC_RELIABILITY_MEDIUM = 3, + QMI_LOC_RELIABILITY_HIGH = 4, +} QmiLocReliability; + +/** + * qmi_loc_reliability_get_string + * + * Since: 1.22 + */ + +/** + * QmiLocTimeSource: + * @QMI_LOC_TIME_SOURCE_INVALID: Invalid. + * @QMI_LOC_TIME_SOURCE_NETWORK_TIME_TRANSFER: Time is set by the 1X system. + * @QMI_LOC_TIME_SOURCE_NETWORK_TIME_TAGGING: Time is set by WCDMA/GSM time tagging. + * @QMI_LOC_TIME_SOURCE_EXTERNAL_INPUT: Time set by external injection. + * @QMI_LOC_TIME_SOURCE_TOW_DECODE: Time is set after decoding over-the-air GPS navigation data from one GPS satellite. + * @QMI_LOC_TIME_SOURCE_TOW_CONFIRMED: Time is set after decoding over-the-air GPS navigation data from multiple satellites. + * @QMI_LOC_TIME_SOURCE_TOW_AND_WEEK_CONFIRMED: Both time of the week and GPS week number are known. + * @QMI_LOC_TIME_SOURCE_NAVIGATION_SOLUTION: Time is set by the position engine after the fix is obtained. + * @QMI_LOC_TIME_SOURCE_SOLVE_FOR_TIME: Time is set by the position engine after performing SFT. + * @QMI_LOC_TIME_SOURCE_GLO_TOW_DECODE: Time is set after decoding QZSS satellites. + * @QMI_LOC_TIME_SOURCE_TIME_TRANSFORM: Time is set after transforming the GPS to GLO time. + * @QMI_LOC_TIME_SOURCE_WCDMA_SLEEP_TIME_TAG: Time is set by the sleep time tag provided by the WCDMA network. + * @QMI_LOC_TIME_SOURCE_GSM_SLEEP_TIME_TAG: Time is set by the sleep time tag provided by the GSM network. + * @QMI_LOC_TIME_SOURCE_UNKNOWN: Unknown. + * @QMI_LOC_TIME_SOURCE_SYSTEM_TIMETICK: Time is derived from the system clock. + * @QMI_LOC_TIME_SOURCE_QZSS_TOW_DECODE: Time set after decoding QZSS satellites. + * @QMI_LOC_TIME_SOURCE_BDS_TOW_DECODE: Time set after decoding BDS satellites. + * + * Source of the used time. + * + * Since 1.22 + */ +typedef enum { + QMI_LOC_TIME_SOURCE_INVALID = 0, + QMI_LOC_TIME_SOURCE_NETWORK_TIME_TRANSFER = 1, + QMI_LOC_TIME_SOURCE_NETWORK_TIME_TAGGING = 2, + QMI_LOC_TIME_SOURCE_EXTERNAL_INPUT = 3, + QMI_LOC_TIME_SOURCE_TOW_DECODE = 4, + QMI_LOC_TIME_SOURCE_TOW_CONFIRMED = 5, + QMI_LOC_TIME_SOURCE_TOW_AND_WEEK_CONFIRMED = 6, + QMI_LOC_TIME_SOURCE_NAVIGATION_SOLUTION = 7, + QMI_LOC_TIME_SOURCE_SOLVE_FOR_TIME = 8, + QMI_LOC_TIME_SOURCE_GLO_TOW_DECODE = 9, + QMI_LOC_TIME_SOURCE_TIME_TRANSFORM = 10, + QMI_LOC_TIME_SOURCE_WCDMA_SLEEP_TIME_TAG = 11, + QMI_LOC_TIME_SOURCE_GSM_SLEEP_TIME_TAG = 12, + QMI_LOC_TIME_SOURCE_UNKNOWN = 13, + QMI_LOC_TIME_SOURCE_SYSTEM_TIMETICK = 14, + QMI_LOC_TIME_SOURCE_QZSS_TOW_DECODE = 15, + QMI_LOC_TIME_SOURCE_BDS_TOW_DECODE = 16, +} QmiLocTimeSource; + +/** + * qmi_loc_time_source_get_string + * + * Since: 1.22 + */ + +/** + * QmiLocSatelliteValidInformation: + * @QMI_LOC_SATELLITE_VALID_INFORMATION_SYSTEM: System, + * @QMI_LOC_SATELLITE_VALID_INFORMATION_GNSS_SATELLITE_ID: GNSS Satellite ID. + * @QMI_LOC_SATELLITE_VALID_INFORMATION_HEALTH_STATUS: Health status. + * @QMI_LOC_SATELLITE_VALID_INFORMATION_PROCESS_STATUS: Process status. + * @QMI_LOC_SATELLITE_VALID_INFORMATION_SATELLITE_INFO_MASK: Satellite info mask. + * @QMI_LOC_SATELLITE_VALID_INFORMATION_ELEVATION: Elevation. + * @QMI_LOC_SATELLITE_VALID_INFORMATION_AZIMUTH: Azimuth. + * @QMI_LOC_SATELLITE_VALID_INFORMATION_SIGNAL_TO_NOISE_RATIO: Signal to noise ratio. + * + * Which information about the satellite is valid. + * + * Since 1.22 + */ +typedef enum { + QMI_LOC_SATELLITE_VALID_INFORMATION_SYSTEM = 1 << 0, + QMI_LOC_SATELLITE_VALID_INFORMATION_GNSS_SATELLITE_ID = 1 << 1, + QMI_LOC_SATELLITE_VALID_INFORMATION_HEALTH_STATUS = 1 << 2, + QMI_LOC_SATELLITE_VALID_INFORMATION_PROCESS_STATUS = 1 << 3, + QMI_LOC_SATELLITE_VALID_INFORMATION_SATELLITE_INFO_MASK = 1 << 4, + QMI_LOC_SATELLITE_VALID_INFORMATION_ELEVATION = 1 << 5, + QMI_LOC_SATELLITE_VALID_INFORMATION_AZIMUTH = 1 << 6, + QMI_LOC_SATELLITE_VALID_INFORMATION_SIGNAL_TO_NOISE_RATIO = 1 << 7, +} QmiLocSatelliteValidInformation; + +/** + * qmi_loc_satellite_valid_information_build_string_from_mask + * + * Since: 1.22 + */ + +/** + * QmiLocSystem: + * @QMI_LOC_SYSTEM_GPS: GPS. + * @QMI_LOC_SYSTEM_GALILEO: Galileo. + * @QMI_LOC_SYSTEM_SBAS: SBAS. + * @QMI_LOC_SYSTEM_COMPASS: COMPASS (BeiDou). + * @QMI_LOC_SYSTEM_GLONASS: GLONASS. + * + * Which location system a satellite is part of. + * + * Since 1.22 + */ +typedef enum { + QMI_LOC_SYSTEM_GPS = 1, + QMI_LOC_SYSTEM_GALILEO = 2, + QMI_LOC_SYSTEM_SBAS = 3, + QMI_LOC_SYSTEM_COMPASS = 4, + QMI_LOC_SYSTEM_GLONASS = 5, +} QmiLocSystem; + +/** + * qmi_loc_system_get_string + * + * Since: 1.22 + */ + +/** + * QmiLocHealthStatus: + * @QMI_LOC_HEALTH_STATUS_UNHEALTHY: Unhealthy. + * @QMI_LOC_HEALTH_STATUS_HEALTHY: Healthy. + * + * Whether a satellite is healthy or unhealthy. + * + * Since 1.22 + */ +typedef enum { + QMI_LOC_HEALTH_STATUS_UNHEALTHY = 0, + QMI_LOC_HEALTH_STATUS_HEALTHY = 1, +} QmiLocHealthStatus; + +/** + * qmi_loc_health_status_get_string + * + * Since: 1.22 + */ + +/** + * QmiLocNavigationData: + * @QMI_LOC_NAVIGATION_DATA_HAS_EPHEMERIS: Has ephemeris. + * @QMI_LOC_NAVIGATION_DATA_HAS_ALMANAC: Has almanac. + * + * Whether the ephemeris or almanac exist for a satellite. + * + * Since 1.22 + */ +typedef enum { + QMI_LOC_NAVIGATION_DATA_HAS_EPHEMERIS = 0, + QMI_LOC_NAVIGATION_DATA_HAS_ALMANAC = 1, +} QmiLocNavigationData; + +/** + * qmi_loc_navigation_data_get_string + * + * Since: 1.22 + */ + +/** + * QmiLocSatelliteStatus: + * @QMI_LOC_SATELLITE_STATUS_IDLE: Idle. + * @QMI_LOC_SATELLITE_STATUS_SEARCHING: Searching. + * @QMI_LOC_SATELLITE_STATUS_TRACKING: Tracking. + * + * Whether the engine searches or tracks a satellite. + * + * Since 1.22 + */ +typedef enum { + QMI_LOC_SATELLITE_STATUS_IDLE = 0, + QMI_LOC_SATELLITE_STATUS_SEARCHING = 1, + QMI_LOC_SATELLITE_STATUS_TRACKING = 2, +} QmiLocSatelliteStatus; + +/** + * qmi_loc_satellite_status_get_string + * + * Since: 1.22 + */ + +/** + * QmiLocServerType: + * @QMI_LOC_SERVER_TYPE_UNKNOWN: Unknown. + * @QMI_LOC_SERVER_TYPE_CDMA_PDE: CDMA Position Determining System. + * @QMI_LOC_SERVER_TYPE_CDMA_MPC: CDMA Mobile Positioning Center. + * @QMI_LOC_SERVER_TYPE_UMTS_SLP: SUPL Location Platform. + * @QMI_LOC_SERVER_TYPE_CUSTOM_PDE: Custom position determining system. + * + * Server type for Assisted-GPS. + * + * Since: 1.22 + */ +typedef enum { + QMI_LOC_SERVER_TYPE_UNKNOWN = 0, + QMI_LOC_SERVER_TYPE_CDMA_PDE = 1, + QMI_LOC_SERVER_TYPE_CDMA_MPC = 2, + QMI_LOC_SERVER_TYPE_UMTS_SLP = 3, + QMI_LOC_SERVER_TYPE_CUSTOM_PDE = 4, +} QmiLocServerType; + +/** + * qmi_loc_server_type_get_string + * + * Since: 1.22 + */ + +/** + * QmiLocServerAddressType: + * @QMI_LOC_SERVER_ADDRESS_TYPE_NONE: None. + * @QMI_LOC_SERVER_ADDRESS_TYPE_IPV4: IPv4 server address. + * @QMI_LOC_SERVER_ADDRESS_TYPE_IPV6: IPv6 server address. + * @QMI_LOC_SERVER_ADDRESS_TYPE_URL: URL server address. + * + * Type of server address for Assisted-GPS. + */ +typedef enum { + QMI_LOC_SERVER_ADDRESS_TYPE_NONE = 0, + QMI_LOC_SERVER_ADDRESS_TYPE_IPV4 = 1 << 0, + QMI_LOC_SERVER_ADDRESS_TYPE_IPV6 = 1 << 1, + QMI_LOC_SERVER_ADDRESS_TYPE_URL = 1 << 2, +} QmiLocServerAddressType; + +/** + * qmi_loc_server_address_type_build_string_from_mask + * + * Since: 1.22 + */ + +/** + * QmiLocPredictedOrbitsDataFormat: + * @QMI_LOC_PREDICTED_ORBITS_DATA_FORMAT_XTRA: Qualcomm XTRA database. + * + * Type of predicted orbits data. + */ +typedef enum { + QMI_LOC_PREDICTED_ORBITS_DATA_FORMAT_XTRA = 0 +} QmiLocPredictedOrbitsDataFormat; + +/** + * qmi_loc_predicted_orbits_data_format_get_string + * + * Since: 1.22 + */ + +/** + * QmiLocDeleteSvInfo: + * @QMI_LOC_DELETE_SV_INFO_EPHEMERIS: Ephemeris. + * @QMI_LOC_DELETE_SV_INFO_ALMANAC: Almanac. + * + * Type of data to delete for a given satellite. + */ +typedef enum { + QMI_LOC_DELETE_SV_INFO_EPHEMERIS = 1 << 0, + QMI_LOC_DELETE_SV_INFO_ALMANAC = 1 << 1, +} QmiLocDeleteSvInfo; + +/** + * qmi_loc_delete_sv_info_build_string_from_mask + * + * Since: 1.22 + */ + +/** + * QmiLocDeleteCellDatabase: + * @QMI_LOC_DELETE_CELL_DATABASE_POS: Position. + * @QMI_LOC_DELETE_CELL_DATABASE_LATEST_GPS_POS: Latest GPS position. + * @QMI_LOC_DELETE_CELL_DATABASE_OTA_POS: OTA position. + * @QMI_LOC_DELETE_CELL_DATABASE_EXT_REF_POS: External reference position. + * @QMI_LOC_DELETE_CELL_DATABASE_TIMETAG: Timetag. + * @QMI_LOC_DELETE_CELL_DATABASE_CELLID: Cell ID. + * @QMI_LOC_DELETE_CELL_DATABASE_CACHED_CELLID: Cached cell ID. + * @QMI_LOC_DELETE_CELL_DATABASE_LAST_SRV_CELL: Last serving cell. + * @QMI_LOC_DELETE_CELL_DATABASE_CUR_SRV_CELL: Current servince cell. + * @QMI_LOC_DELETE_CELL_DATABASE_NEIGHBOR_INFO: Neighboring cell info. + * + * Type of data to delete from the cell database. + */ +typedef enum { + QMI_LOC_DELETE_CELL_DATABASE_POS = 1 << 0, + QMI_LOC_DELETE_CELL_DATABASE_LATEST_GPS_POS = 1 << 1, + QMI_LOC_DELETE_CELL_DATABASE_OTA_POS = 1 << 2, + QMI_LOC_DELETE_CELL_DATABASE_EXT_REF_POS = 1 << 3, + QMI_LOC_DELETE_CELL_DATABASE_TIMETAG = 1 << 4, + QMI_LOC_DELETE_CELL_DATABASE_CELLID = 1 << 5, + QMI_LOC_DELETE_CELL_DATABASE_CACHED_CELLID = 1 << 6, + QMI_LOC_DELETE_CELL_DATABASE_LAST_SRV_CELL = 1 << 7, + QMI_LOC_DELETE_CELL_DATABASE_CUR_SRV_CELL = 1 << 8, + QMI_LOC_DELETE_CELL_DATABASE_NEIGHBOR_INFO = 1 << 9, +} QmiLocDeleteCellDatabase; + +/** + * qmi_loc_delete_cell_database_build_string_from_mask + * + * Since: 1.22 + */ + +/** + * QmiLocDeleteClockInfo: + * @QMI_LOC_DELETE_CLOCK_INFO_TIME_EST: Time estimation. + * @QMI_LOC_DELETE_CLOCK_INFO_FREQ_EST: Frequency estimation. + * @QMI_LOC_DELETE_CLOCK_INFO_WEEK_NUMBER: Week number. + * @QMI_LOC_DELETE_CLOCK_INFO_RTC_TIME: RTC time. + * @QMI_LOC_DELETE_CLOCK_INFO_TIME_TRANSFER: Time transfer. + * @QMI_LOC_DELETE_CLOCK_INFO_GPS_TIME_EST: GPS time estimation. + * @QMI_LOC_DELETE_CLOCK_INFO_GLO_TIME_EST: GLONASS time estimation. + * @QMI_LOC_DELETE_CLOCK_INFO_GLO_DAY_NUMBER: GLONASS day number. + * @QMI_LOC_DELETE_CLOCK_INFO_GLO_YEAR_NUMBER: GLONASS year number. + * @QMI_LOC_DELETE_CLOCK_INFO_GLO_RF_GRP_DELAY: GLONASS RF group delay. + * @QMI_LOC_DELETE_CLOCK_INFO_DISABLE_TT: Disable TT. + * + * Type of data to delete from the clock information. + */ +typedef enum { + QMI_LOC_DELETE_CLOCK_INFO_TIME_EST = 1 << 0, + QMI_LOC_DELETE_CLOCK_INFO_FREQ_EST = 1 << 1, + QMI_LOC_DELETE_CLOCK_INFO_WEEK_NUMBER = 1 << 2, + QMI_LOC_DELETE_CLOCK_INFO_RTC_TIME = 1 << 3, + QMI_LOC_DELETE_CLOCK_INFO_TIME_TRANSFER = 1 << 4, + QMI_LOC_DELETE_CLOCK_INFO_GPS_TIME_EST = 1 << 5, + QMI_LOC_DELETE_CLOCK_INFO_GLO_TIME_EST = 1 << 6, + QMI_LOC_DELETE_CLOCK_INFO_GLO_DAY_NUMBER = 1 << 7, + QMI_LOC_DELETE_CLOCK_INFO_GLO_YEAR_NUMBER = 1 << 8, + QMI_LOC_DELETE_CLOCK_INFO_GLO_RF_GRP_DELAY = 1 << 9, + QMI_LOC_DELETE_CLOCK_INFO_DISABLE_TT = 1 << 10, +} QmiLocDeleteClockInfo; + +/** + * qmi_loc_delete_clock_info_build_string_from_mask + * + * Since: 1.22 + */ + +#endif /* _LIBQMI_GLIB_QMI_ENUMS_LOC_H_ */ diff -Nru libqmi-1.18.0/src/libqmi-glib/qmi-enums-nas.h libqmi-1.22.0/src/libqmi-glib/qmi-enums-nas.h --- libqmi-1.18.0/src/libqmi-glib/qmi-enums-nas.h 2017-03-21 14:26:54.000000000 +0100 +++ libqmi-1.22.0/src/libqmi-glib/qmi-enums-nas.h 2018-03-20 21:33:05.000000000 +0100 @@ -134,8 +134,14 @@ * @QMI_NAS_ACTIVE_BAND_EUTRAN_19: EUTRAN band 19. * @QMI_NAS_ACTIVE_BAND_EUTRAN_20: EUTRAN band 20. * @QMI_NAS_ACTIVE_BAND_EUTRAN_21: EUTRAN band 21. + * @QMI_NAS_ACTIVE_BAND_EUTRAN_23: EUTRAN band 23. * @QMI_NAS_ACTIVE_BAND_EUTRAN_24: EUTRAN band 24. * @QMI_NAS_ACTIVE_BAND_EUTRAN_25: EUTRAN band 25. + * @QMI_NAS_ACTIVE_BAND_EUTRAN_26: EUTRAN band 26. + * @QMI_NAS_ACTIVE_BAND_EUTRAN_28: EUTRAN band 28. + * @QMI_NAS_ACTIVE_BAND_EUTRAN_29: EUTRAN band 29. + * @QMI_NAS_ACTIVE_BAND_EUTRAN_30: EUTRAN band 30. + * @QMI_NAS_ACTIVE_BAND_EUTRAN_32: EUTRAN band 32. * @QMI_NAS_ACTIVE_BAND_EUTRAN_33: EUTRAN band 33. * @QMI_NAS_ACTIVE_BAND_EUTRAN_34: EUTRAN band 34. * @QMI_NAS_ACTIVE_BAND_EUTRAN_35: EUTRAN band 35. @@ -147,6 +153,12 @@ * @QMI_NAS_ACTIVE_BAND_EUTRAN_41: EUTRAN band 41. * @QMI_NAS_ACTIVE_BAND_EUTRAN_42: EUTRAN band 42. * @QMI_NAS_ACTIVE_BAND_EUTRAN_43: EUTRAN band 43. + * @QMI_NAS_ACTIVE_BAND_EUTRAN_46: EUTRAN band 46. + * @QMI_NAS_ACTIVE_BAND_EUTRAN_66: EUTRAN band 66. + * @QMI_NAS_ACTIVE_BAND_EUTRAN_125: EUTRAN band 125. + * @QMI_NAS_ACTIVE_BAND_EUTRAN_126: EUTRAN band 126. + * @QMI_NAS_ACTIVE_BAND_EUTRAN_127: EUTRAN band 127. + * @QMI_NAS_ACTIVE_BAND_EUTRAN_250: EUTRAN band 250. * @QMI_NAS_ACTIVE_BAND_TDSCDMA_A: TD-SCDMA Band A. * @QMI_NAS_ACTIVE_BAND_TDSCDMA_B: TD-SCDMA Band B. * @QMI_NAS_ACTIVE_BAND_TDSCDMA_C: TD-SCDMA Band C. @@ -218,8 +230,14 @@ QMI_NAS_ACTIVE_BAND_EUTRAN_19 = 144, QMI_NAS_ACTIVE_BAND_EUTRAN_20 = 145, QMI_NAS_ACTIVE_BAND_EUTRAN_21 = 146, + QMI_NAS_ACTIVE_BAND_EUTRAN_23 = 152, QMI_NAS_ACTIVE_BAND_EUTRAN_24 = 147, QMI_NAS_ACTIVE_BAND_EUTRAN_25 = 148, + QMI_NAS_ACTIVE_BAND_EUTRAN_26 = 153, + QMI_NAS_ACTIVE_BAND_EUTRAN_28 = 158, + QMI_NAS_ACTIVE_BAND_EUTRAN_29 = 159, + QMI_NAS_ACTIVE_BAND_EUTRAN_30 = 160, + QMI_NAS_ACTIVE_BAND_EUTRAN_32 = 154, QMI_NAS_ACTIVE_BAND_EUTRAN_33 = 135, QMI_NAS_ACTIVE_BAND_EUTRAN_34 = 136, QMI_NAS_ACTIVE_BAND_EUTRAN_35 = 137, @@ -231,6 +249,12 @@ QMI_NAS_ACTIVE_BAND_EUTRAN_41 = 149, QMI_NAS_ACTIVE_BAND_EUTRAN_42 = 150, QMI_NAS_ACTIVE_BAND_EUTRAN_43 = 151, + QMI_NAS_ACTIVE_BAND_EUTRAN_46 = 163, + QMI_NAS_ACTIVE_BAND_EUTRAN_66 = 161, + QMI_NAS_ACTIVE_BAND_EUTRAN_125 = 155, + QMI_NAS_ACTIVE_BAND_EUTRAN_126 = 156, + QMI_NAS_ACTIVE_BAND_EUTRAN_127 = 157, + QMI_NAS_ACTIVE_BAND_EUTRAN_250 = 162, QMI_NAS_ACTIVE_BAND_TDSCDMA_A = 200, QMI_NAS_ACTIVE_BAND_TDSCDMA_B = 201, QMI_NAS_ACTIVE_BAND_TDSCDMA_C = 202, @@ -425,6 +449,29 @@ */ /*****************************************************************************/ +/* Helper enums for the 'QMI NAS Attach Detach' request/response */ + +/** + * QmiNasPsAttachAction: + * @QMI_NAS_PS_ATTACH_ACTION_ATTACH: Attach the PS domain. + * @QMI_NAS_PS_ATTACH_ACTION_DETACH: Detach the PS domain. + * + * Packet Switched domain attach/detach action. + * + * Since: 1.20 + */ +typedef enum { + QMI_NAS_PS_ATTACH_ACTION_ATTACH = 0x01, + QMI_NAS_PS_ATTACH_ACTION_DETACH = 0x02 +} QmiNasPsAttachAction; + +/** + * qmi_nas_ps_attach_action_get_string: + * + * Since: 1.20 + */ + +/*****************************************************************************/ /* Helper enums for the 'QMI NAS Get Serving System' request/response */ /** diff -Nru libqmi-1.18.0/src/libqmi-glib/qmi-enums-qos.h libqmi-1.22.0/src/libqmi-glib/qmi-enums-qos.h --- libqmi-1.18.0/src/libqmi-glib/qmi-enums-qos.h 1970-01-01 01:00:00.000000000 +0100 +++ libqmi-1.22.0/src/libqmi-glib/qmi-enums-qos.h 2019-01-08 14:09:47.000000000 +0100 @@ -0,0 +1,92 @@ +/* -*- Mode: C; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */ +/* + * libqmi-glib -- GLib/GIO based library to control QMI devices + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation; either + * version 2 of the License, or (at your option) any later version. + * + * This library is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with this library; if not, write to the + * Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, + * Boston, MA 02110-1301 USA. + * + * Copyright (C) 2018 Aleksander Morgado + */ + +#ifndef _LIBQMI_GLIB_QMI_ENUMS_QOS_H_ +#define _LIBQMI_GLIB_QMI_ENUMS_QOS_H_ + +#if !defined (__LIBQMI_GLIB_H_INSIDE__) && !defined (LIBQMI_GLIB_COMPILATION) +#error "Only can be included directly." +#endif + +/** + * SECTION: qmi-enums-qos + * @title: QOS enumerations and flags + * + * This section defines enumerations and flags used in the QOS service + * interface. + */ + +/** + * QmiQosStatus: + * @QMI_QOS_STATUS_UNKNOWN: Unknown. + * @QMI_QOS_STATUS_ACTIVATED: Activated. + * @QMI_QOS_STATUS_SUSPENDED: Suspended. + * @QMI_QOS_STATUS_GONE: Gone. + * + * QoS flow status. + * + * Since: 1.22 + */ +typedef enum { + QMI_QOS_STATUS_UNKNOWN = 0, + QMI_QOS_STATUS_ACTIVATED = 1, + QMI_QOS_STATUS_SUSPENDED = 2, + QMI_QOS_STATUS_GONE = 3, +} QmiQosStatus; + +/** + * qmi_qos_status_get_string: + * + * Since: 1.22 + */ + +/** + * QmiQosEvent: + * @QMI_QOS_EVENT_UNKNOWN: Unknown. + * @QMI_QOS_EVENT_ACTIVATED: Activated. + * @QMI_QOS_EVENT_SUSPENDED: Suspended. + * @QMI_QOS_EVENT_GONE: Gone. + * @QMI_QOS_EVENT_MODIFY_ACCEPTED: Modify accepted. + * @QMI_QOS_EVENT_MODIFY_REJECTED: Modify rejected. + * @QMI_QOS_EVENT_INFO_CODE_UPDATED: Information code updated. + * + * QoS event. + * + * Since: 1.22 + */ +typedef enum { + QMI_QOS_EVENT_UNKNOWN = 0, + QMI_QOS_EVENT_ACTIVATED = 1, + QMI_QOS_EVENT_SUSPENDED = 2, + QMI_QOS_EVENT_GONE = 3, + QMI_QOS_EVENT_MODIFY_ACCEPTED = 4, + QMI_QOS_EVENT_MODIFY_REJECTED = 5, + QMI_QOS_EVENT_INFO_CODE_UPDATED = 6, +} QmiQosEvent; + +/** + * qmi_qos_event_get_string: + * + * Since: 1.22 + */ + +#endif /* _LIBQMI_GLIB_QMI_ENUMS_QOS_H_ */ diff -Nru libqmi-1.18.0/src/libqmi-glib/qmi-enums-wds.h libqmi-1.22.0/src/libqmi-glib/qmi-enums-wds.h --- libqmi-1.18.0/src/libqmi-glib/qmi-enums-wds.h 2017-03-21 14:26:54.000000000 +0100 +++ libqmi-1.22.0/src/libqmi-glib/qmi-enums-wds.h 2019-01-08 14:09:47.000000000 +0100 @@ -1303,6 +1303,26 @@ * Since: 1.0 */ + /** + * QmiWdsProfileFamily: + * @QMI_WDS_PROFILE_FAMILY_EMBEDDED: Embedded profile family. + * @QMI_WDS_PROFILE_FAMILY_TETHERED: Tethered profile family. + * + * Profile family. + * + * Since: 1.22 + */ + typedef enum { /*< underscore_name=qmi_wds_profile_family >*/ + QMI_WDS_PROFILE_FAMILY_EMBEDDED = 0, + QMI_WDS_PROFILE_FAMILY_TETHERED = 1 + } QmiWdsProfileFamily; + + /** + * qmi_wds_profile_family_get_string: + * + * Since: 1.22 + */ + /** * QmiWdsDeliveryOrder: * @QMI_WDS_QOS_DELIVERY_ORDER_SUBSCRIBE: Subscribe. diff -Nru libqmi-1.18.0/src/libqmi-glib/qmi-errors.h libqmi-1.22.0/src/libqmi-glib/qmi-errors.h --- libqmi-1.18.0/src/libqmi-glib/qmi-errors.h 2017-03-21 14:26:54.000000000 +0100 +++ libqmi-1.22.0/src/libqmi-glib/qmi-errors.h 2019-01-08 14:09:47.000000000 +0100 @@ -71,7 +71,7 @@ * @QMI_CORE_ERROR_TLV_NOT_FOUND: TLV not found. * @QMI_CORE_ERROR_TLV_TOO_LONG: TLV is too long. * @QMI_CORE_ERROR_UNSUPPORTED: Not supported. - * @QMI_CORE_ERROR_TLV_EMPTY: TLV has no value. Since: 1.12. + * @QMI_CORE_ERROR_TLV_EMPTY: TLV has no value. Empty TLVs are not a real error, so this error type is never generated. Since: 1.12. Deprecated: 1.22. * @QMI_CORE_ERROR_UNEXPECTED_MESSAGE: QMI message is unexpected. Since: 1.16. * * Common errors that may be reported by libqmi-glib. @@ -138,8 +138,10 @@ * @QMI_PROTOCOL_ERROR_INCORRECT_FLOW_FILTER: Incorrect flow filter. * @QMI_PROTOCOL_ERROR_NETWORK_QOS_UNAWARE: Network QoS unaware. * @QMI_PROTOCOL_ERROR_INVALID_QOS_ID: Invalid QoS ID. - * @QMI_PROTOCOL_ERROR_QOS_UNAVAILABLE: QoS unavailable. + * @QMI_PROTOCOL_ERROR_REQUESTED_NUMBER_UNSUPPORTED: Requested number unsupported. Since: 1.22. + * @QMI_PROTOCOL_ERROR_INTERFACE_NOT_FOUND: Interface not found. Since: 1.22. * @QMI_PROTOCOL_ERROR_FLOW_SUSPENDED: Flow suspended. + * @QMI_PROTOCOL_ERROR_INVALID_DATA_FORMAT: Invalid data format. Since: 1.22. * @QMI_PROTOCOL_ERROR_GENERAL_ERROR: General error. * @QMI_PROTOCOL_ERROR_UNKNOWN_ERROR: Unknown error. * @QMI_PROTOCOL_ERROR_INVALID_ARGUMENT: Invalid argument. @@ -155,6 +157,10 @@ * @QMI_PROTOCOL_ERROR_WMS_ENCODING: WMS encoding. * @QMI_PROTOCOL_ERROR_AUTHENTICATION_LOCK: Authentication lock. * @QMI_PROTOCOL_ERROR_INVALID_TRANSITION: Invalid transition. + * @QMI_PROTOCOL_ERROR_NOT_MCAST_INTERFACE: Not a multicast interface. Since: 1.22. + * @QMI_PROTOCOL_ERROR_MAXIMUM_MCAST_REQUESTS_IN_USE: Maximum multicast requests in use. Since: 1.22. + * @QMI_PROTOCOL_ERROR_INVALID_MCAST_HANDLE: Invalid mulitcast handle. Since: 1.22. + * @QMI_PROTOCOL_ERROR_INVALID_IP_FAMILY_PREFERENCE: Invalid IP family preference. Since: 1.22. * @QMI_PROTOCOL_ERROR_SESSION_INACTIVE: Session inactive. * @QMI_PROTOCOL_ERROR_SESSION_INVALID: Session invalid. * @QMI_PROTOCOL_ERROR_SESSION_OWNERSHIP: Session ownership. @@ -168,6 +174,7 @@ * @QMI_PROTOCOL_ERROR_SEGMENT_TOO_LONG: Segment too long. * @QMI_PROTOCOL_ERROR_SEGMENT_ORDER: Segment order. * @QMI_PROTOCOL_ERROR_BUNDLING_NOT_SUPPORTED: Bundling not supported. + * @QMI_PROTOCOL_ERROR_OPERATION_PARTIAL_FAILURE: Operation partial failure. Since: 1.22. * @QMI_PROTOCOL_ERROR_POLICY_MISMATCH: Policy mismatch. Since: 1.6. * @QMI_PROTOCOL_ERROR_SIM_FILE_NOT_FOUND: SIM file not found. * @QMI_PROTOCOL_ERROR_EXTENDED_INTERNAL: Extended internal error. Since: 1.6. @@ -193,9 +200,25 @@ * @QMI_PROTOCOL_ERROR_PUK_RESTRICTION: PUK restriction. Since: 1.6. * @QMI_PROTOCOL_ERROR_PUK2_RESTRICTION: PUK2 restriction. Since: 1.6. * @QMI_PROTOCOL_ERROR_PB_ACCESS_RESTRICTED: PB access restricted. Since: 1.6. + * @QMI_PROTOCOL_ERROR_PB_DELETE_IN_PROGRESS: PB delete in progress. Since: 1.22. * @QMI_PROTOCOL_ERROR_PB_TEXT_TOO_LONG: PB text too long. Since: 1.6. * @QMI_PROTOCOL_ERROR_PB_NUMBER_TOO_LONG: PB number too long. Since: 1.6. * @QMI_PROTOCOL_ERROR_PB_HIDDEN_KEY_RESTRICTION: PB hidden key restriction. Since: 1.6. + * @QMI_PROTOCOL_ERROR_PB_NOT_AVAILABLE: PB not available. Since: 1.22. + * @QMI_PROTOCOL_ERROR_DEVICE_MEMORY_ERROR: Device memory error. Since: 1.22. + * @QMI_PROTOCOL_ERROR_NO_PERMISSION: No permission. Since: 1.22. + * @QMI_PROTOCOL_ERROR_TOO_SOON: Too soon. Since: 1.22. + * @QMI_PROTOCOL_ERROR_TIME_NOT_ACQUIRED: Time not acquired. Since: 1.22. + * @QMI_PROTOCOL_ERROR_OPERATION_IN_PROGRESS: Operation in progress. Since: 1.22. + * @QMI_PROTOCOL_ERROR_FW_WRITE_FAILED: Firmware write failed. Since: 1.22. + * @QMI_PROTOCOL_ERROR_FW_INFO_READ_FAILED: Firmware info read failed. Since: 1.22. + * @QMI_PROTOCOL_ERROR_FW_FILE_NOT_FOUND: Firmware file not found. Since: 1.22. + * @QMI_PROTOCOL_ERROR_FW_DIR_NOT_FOUND: Firmware dir not found. Since: 1.22. + * @QMI_PROTOCOL_ERROR_FW_ALREADY_ACTIVATED: Firmware already activated. Since: 1.22. + * @QMI_PROTOCOL_ERROR_FW_CANNOT_GENERIC_IMAGE: Firmware cannot generic image. Since: 1.22. + * @QMI_PROTOCOL_ERROR_FW_FILE_OPEN_FAILED: Firmware file open failed. Since: 1.22. + * @QMI_PROTOCOL_ERROR_FW_UPDATE_DISCONTINUOUS_FRAME: Firmware update discontinuous frame. Since: 1.22. + * @QMI_PROTOCOL_ERROR_FW_UPDATE_FAILED: Firmware update failed. Since: 1.22. * @QMI_PROTOCOL_ERROR_CAT_EVENT_REGISTRATION_FAILED: Event registration failed. * @QMI_PROTOCOL_ERROR_CAT_INVALID_TERMINAL_RESPONSE: Invalid terminal response. * @QMI_PROTOCOL_ERROR_CAT_INVALID_ENVELOPE_COMMAND: Invalid envelope command. @@ -246,8 +269,10 @@ QMI_PROTOCOL_ERROR_INCORRECT_FLOW_FILTER = 39, /*< nick=IncorrectFlowFilter >*/ QMI_PROTOCOL_ERROR_NETWORK_QOS_UNAWARE = 40, /*< nick= NetworkQosUnaware >*/ QMI_PROTOCOL_ERROR_INVALID_QOS_ID = 41, /*< nick=InvalidQosId >*/ - QMI_PROTOCOL_ERROR_QOS_UNAVAILABLE = 42, /*< nick=QosUnavailable >*/ - QMI_PROTOCOL_ERROR_FLOW_SUSPENDED = 43, /*< nick=FlowSuspended >*/ + QMI_PROTOCOL_ERROR_REQUESTED_NUMBER_UNSUPPORTED = 42, /*< nick=RequestedNumberUnsupported >*/ + QMI_PROTOCOL_ERROR_INTERFACE_NOT_FOUND = 43, /*< nick=InterfaceNotFound >*/ + QMI_PROTOCOL_ERROR_FLOW_SUSPENDED = 44, /*< nick=FlowSuspended >*/ + QMI_PROTOCOL_ERROR_INVALID_DATA_FORMAT = 45, /*< nick=InvalidDataFormat >*/ QMI_PROTOCOL_ERROR_GENERAL_ERROR = 46, /*< nick=GeneralError >*/ QMI_PROTOCOL_ERROR_UNKNOWN_ERROR = 47, /*< nick=UnknownError >*/ QMI_PROTOCOL_ERROR_INVALID_ARGUMENT = 48, /*< nick=InvalidArgument >*/ @@ -263,6 +288,10 @@ QMI_PROTOCOL_ERROR_WMS_ENCODING = 58, /*< nick=Wms.Encoding >*/ QMI_PROTOCOL_ERROR_AUTHENTICATION_LOCK = 59, /*< nick=AuthenticationLock >*/ QMI_PROTOCOL_ERROR_INVALID_TRANSITION = 60, /*< nick=InvalidTransition >*/ + QMI_PROTOCOL_ERROR_NOT_MCAST_INTERFACE = 61, /*< nick=NotMcastInterface >*/ + QMI_PROTOCOL_ERROR_MAXIMUM_MCAST_REQUESTS_IN_USE = 62, /*< nick=MaximumMcastRequestsInUse >*/ + QMI_PROTOCOL_ERROR_INVALID_MCAST_HANDLE = 63, /*< nick=InvalidMcastHandle >*/ + QMI_PROTOCOL_ERROR_INVALID_IP_FAMILY_PREFERENCE = 64, /*< nick=InvalidIpFamilyPreference >*/ QMI_PROTOCOL_ERROR_SESSION_INACTIVE = 65, /*< nick=SessionInactive >*/ QMI_PROTOCOL_ERROR_SESSION_INVALID = 66, /*< nick=SessionInvalid >*/ QMI_PROTOCOL_ERROR_SESSION_OWNERSHIP = 67, /*< nick=SessionOwnership >*/ @@ -276,7 +305,7 @@ QMI_PROTOCOL_ERROR_SEGMENT_TOO_LONG = 75, /*< nick=SegmentTooLong >*/ QMI_PROTOCOL_ERROR_SEGMENT_ORDER = 76, /*< nick=SegmentOrder >*/ QMI_PROTOCOL_ERROR_BUNDLING_NOT_SUPPORTED = 77, /*< nick=BundlingNotSupported >*/ - /* 0x004E, 78: unused */ + QMI_PROTOCOL_ERROR_OPERATION_PARTIAL_FAILURE = 78, /*< nick=OperationPartialFailure >*/ QMI_PROTOCOL_ERROR_POLICY_MISMATCH = 79, /*< nick=PolicyMismatch >*/ QMI_PROTOCOL_ERROR_SIM_FILE_NOT_FOUND = 80, /*< nick=SimFileNotFound >*/ QMI_PROTOCOL_ERROR_EXTENDED_INTERNAL = 81, /*< nick=ExtendedInternal >*/ @@ -302,9 +331,25 @@ QMI_PROTOCOL_ERROR_PUK_RESTRICTION = 106, /*< nick=PukRestriction >*/ QMI_PROTOCOL_ERROR_PUK2_RESTRICTION = 107, /*< nick=Puk2Restriction >*/ QMI_PROTOCOL_ERROR_PB_ACCESS_RESTRICTED = 108, /*< nick=PbAccessRestricted >*/ - QMI_PROTOCOL_ERROR_PB_TEXT_TOO_LONG = 109, /*< nick=PbTextTooLong >*/ - QMI_PROTOCOL_ERROR_PB_NUMBER_TOO_LONG = 110, /*< nick=PbNumberTooLong >*/ - QMI_PROTOCOL_ERROR_PB_HIDDEN_KEY_RESTRICTION = 111, /*< nick=PbHiddenKeyRestriction >*/ + QMI_PROTOCOL_ERROR_PB_DELETE_IN_PROGRESS = 109, /*< nick=PbDeleteInProgress >*/ + QMI_PROTOCOL_ERROR_PB_TEXT_TOO_LONG = 110, /*< nick=PbTextTooLong >*/ + QMI_PROTOCOL_ERROR_PB_NUMBER_TOO_LONG = 111, /*< nick=PbNumberTooLong >*/ + QMI_PROTOCOL_ERROR_PB_HIDDEN_KEY_RESTRICTION = 112, /*< nick=PbHiddenKeyRestriction >*/ + QMI_PROTOCOL_ERROR_PB_NOT_AVAILABLE = 113, /*< nick=PbNotAvailable >*/ + QMI_PROTOCOL_ERROR_DEVICE_MEMORY_ERROR = 114, /*< nick=DeviceMemoryError >*/ + QMI_PROTOCOL_ERROR_NO_PERMISSION = 115, /*< nick=NoPermission >*/ + QMI_PROTOCOL_ERROR_TOO_SOON = 116, /*< nick=TooSoon >*/ + QMI_PROTOCOL_ERROR_TIME_NOT_ACQUIRED = 117, /*< nick=TimeNotAcquired >*/ + QMI_PROTOCOL_ERROR_OPERATION_IN_PROGRESS = 118, /*< nick=OperationInProgress >*/ + QMI_PROTOCOL_ERROR_FW_WRITE_FAILED = 388, /*< nick=FwWriteFailed >*/ + QMI_PROTOCOL_ERROR_FW_INFO_READ_FAILED = 389, /*< nick=FwInfoReadFailed >*/ + QMI_PROTOCOL_ERROR_FW_FILE_NOT_FOUND = 390, /*< nick=FwFileNotFound >*/ + QMI_PROTOCOL_ERROR_FW_DIR_NOT_FOUND = 391, /*< nick=FwDirNotFound >*/ + QMI_PROTOCOL_ERROR_FW_ALREADY_ACTIVATED = 392, /*< nick=FwAlreadyActivated >*/ + QMI_PROTOCOL_ERROR_FW_CANNOT_GENERIC_IMAGE = 393, /*< nick=FwCannotGenericImage >*/ + QMI_PROTOCOL_ERROR_FW_FILE_OPEN_FAILED = 400, /*< nick=FwFileOpenFailed >*/ + QMI_PROTOCOL_ERROR_FW_UPDATE_DISCONTINUOUS_FRAME = 401, /*< nick=FwUpdateDiscontinuousFrame >*/ + QMI_PROTOCOL_ERROR_FW_UPDATE_FAILED = 402, /*< nick=FwUpdateFailed >*/ QMI_PROTOCOL_ERROR_CAT_EVENT_REGISTRATION_FAILED = 61441, /*< nick=Cat.EventRegistrationFailed >*/ QMI_PROTOCOL_ERROR_CAT_INVALID_TERMINAL_RESPONSE = 61442, /*< nick=Cat.InvalidTerminalResponse >*/ QMI_PROTOCOL_ERROR_CAT_INVALID_ENVELOPE_COMMAND = 61443, /*< nick=Cat.InvalidEnvelopeCommand >*/ diff -Nru libqmi-1.18.0/src/libqmi-glib/qmi-flags64-dms.h libqmi-1.22.0/src/libqmi-glib/qmi-flags64-dms.h --- libqmi-1.18.0/src/libqmi-glib/qmi-flags64-dms.h 2017-03-21 14:26:54.000000000 +0100 +++ libqmi-1.22.0/src/libqmi-glib/qmi-flags64-dms.h 2019-01-08 14:09:47.000000000 +0100 @@ -155,6 +155,13 @@ * @QMI_DMS_LTE_BAND_CAPABILITY_EUTRAN_21: LTE EUTRAN Band 21. * @QMI_DMS_LTE_BAND_CAPABILITY_EUTRAN_24: LTE EUTRAN Band 24. * @QMI_DMS_LTE_BAND_CAPABILITY_EUTRAN_25: LTE EUTRAN Band 25. + * @QMI_DMS_LTE_BAND_CAPABILITY_EUTRAN_26: LTE EUTRAN Band 26. + * @QMI_DMS_LTE_BAND_CAPABILITY_EUTRAN_27: LTE EUTRAN Band 27. + * @QMI_DMS_LTE_BAND_CAPABILITY_EUTRAN_28: LTE EUTRAN Band 28. + * @QMI_DMS_LTE_BAND_CAPABILITY_EUTRAN_29: LTE EUTRAN Band 29. + * @QMI_DMS_LTE_BAND_CAPABILITY_EUTRAN_30: LTE EUTRAN Band 30. + * @QMI_DMS_LTE_BAND_CAPABILITY_EUTRAN_31: LTE EUTRAN Band 31. + * @QMI_DMS_LTE_BAND_CAPABILITY_EUTRAN_32: LTE EUTRAN Band 32. * @QMI_DMS_LTE_BAND_CAPABILITY_EUTRAN_33: LTE EUTRAN Band 33. * @QMI_DMS_LTE_BAND_CAPABILITY_EUTRAN_34: LTE EUTRAN Band 34. * @QMI_DMS_LTE_BAND_CAPABILITY_EUTRAN_35: LTE EUTRAN Band 35. @@ -193,7 +200,13 @@ /* Bit 21-22 reserved */ QMI_DMS_LTE_BAND_CAPABILITY_EUTRAN_24 = 1 << 23, QMI_DMS_LTE_BAND_CAPABILITY_EUTRAN_25 = 1 << 24, - /* Bit 25-31 reserved */ + QMI_DMS_LTE_BAND_CAPABILITY_EUTRAN_26 = 1 << 25, + QMI_DMS_LTE_BAND_CAPABILITY_EUTRAN_27 = 1 << 26, + QMI_DMS_LTE_BAND_CAPABILITY_EUTRAN_28 = 1 << 27, + QMI_DMS_LTE_BAND_CAPABILITY_EUTRAN_29 = 1 << 28, + QMI_DMS_LTE_BAND_CAPABILITY_EUTRAN_30 = 1 << 29, + QMI_DMS_LTE_BAND_CAPABILITY_EUTRAN_31 = 1 << 30, + QMI_DMS_LTE_BAND_CAPABILITY_EUTRAN_32 = 1 << 31, QMI_DMS_LTE_BAND_CAPABILITY_EUTRAN_33 = ((guint64) 1) << 32, QMI_DMS_LTE_BAND_CAPABILITY_EUTRAN_34 = ((guint64) 1) << 33, QMI_DMS_LTE_BAND_CAPABILITY_EUTRAN_35 = ((guint64) 1) << 34, diff -Nru libqmi-1.18.0/src/libqmi-glib/qmi-flags64-loc.h libqmi-1.22.0/src/libqmi-glib/qmi-flags64-loc.h --- libqmi-1.18.0/src/libqmi-glib/qmi-flags64-loc.h 1970-01-01 01:00:00.000000000 +0100 +++ libqmi-1.22.0/src/libqmi-glib/qmi-flags64-loc.h 2019-01-08 14:09:47.000000000 +0100 @@ -0,0 +1,169 @@ +/* -*- Mode: C; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */ +/* + * libqmi-glib -- GLib/GIO based library to control QMI devices + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation; either + * version 2 of the License, or (at your option) any later version. + * + * This library is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with this library; if not, write to the + * Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, + * Boston, MA 02110-1301 USA. + * + * Copyright (C) 2012 Google Inc. + * Copyright (C) 2012-2017 Aleksander Morgado + */ + +#ifndef _LIBQMI_GLIB_QMI_FLAGS64_LOC_H_ +#define _LIBQMI_GLIB_QMI_FLAGS64_LOC_H_ + +#if !defined (__LIBQMI_GLIB_H_INSIDE__) && !defined (LIBQMI_GLIB_COMPILATION) +#error "Only can be included directly." +#endif + +#include + +/** + * QmiLocEventRegistrationFlag: + * @QMI_LOC_EVENT_REGISTRATION_FLAG_POSITION_REPORT: Position report. + * @QMI_LOC_EVENT_REGISTRATION_FLAG_GNSS_SATELLITE_INFO: GNSS satellite info. + * @QMI_LOC_EVENT_REGISTRATION_FLAG_NMEA: NMEA. + * @QMI_LOC_EVENT_REGISTRATION_FLAG_NI_NOTIFY_VERIFY_REQUEST: NI Notify verify request. + * @QMI_LOC_EVENT_REGISTRATION_FLAG_INJECT_TIME_REQUEST: Inject time request. + * @QMI_LOC_EVENT_REGISTRATION_FLAG_INJECT_PREDICTED_ORBITS_REQUEST: Inject predicted orbits request. + * @QMI_LOC_EVENT_REGISTRATION_FLAG_INJECT_POSITION_REQUEST: Inject position request. + * @QMI_LOC_EVENT_REGISTRATION_FLAG_ENGINE_STATE: Engine state. + * @QMI_LOC_EVENT_REGISTRATION_FLAG_FIX_SESSION_STATE: Fix session state. + * @QMI_LOC_EVENT_REGISTRATION_FLAG_WIFI_REQUEST: WIFI request. + * @QMI_LOC_EVENT_REGISTRATION_FLAG_SENSOR_STREAMING_READY_STATUS: Sensor streaming ready status. + * @QMI_LOC_EVENT_REGISTRATION_FLAG_TIME_SYNC_REQUEST: Time sync request. + * @QMI_LOC_EVENT_REGISTRATION_FLAG_SET_SPI_STREAMING_REPORT: Set SPI streaming report. + * @QMI_LOC_EVENT_REGISTRATION_FLAG_LOCATION_SERVER_CONNECTION_REQUEST: Location server connection request. + * @QMI_LOC_EVENT_REGISTRATION_FLAG_NI_GEOFENCE_NOTIFICATION: NI geofence notification. + * @QMI_LOC_EVENT_REGISTRATION_FLAG_GEOFENCE_GENERAL_ALERT: Geofence general alert. + * @QMI_LOC_EVENT_REGISTRATION_FLAG_GEOFENCE_BREACH_NOTIFICATION: Geofence breach notification. + * @QMI_LOC_EVENT_REGISTRATION_FLAG_PEDOMETER_CONTROL: Pedometer control. + * @QMI_LOC_EVENT_REGISTRATION_FLAG_MOTION_DATA_CONTROL: Motion data control. + * + * For which events to register the subscription. + * + * Since 1.22 + */ +typedef enum { + QMI_LOC_EVENT_REGISTRATION_FLAG_POSITION_REPORT = 1 << 0, + QMI_LOC_EVENT_REGISTRATION_FLAG_GNSS_SATELLITE_INFO = 1 << 1, + QMI_LOC_EVENT_REGISTRATION_FLAG_NMEA = 1 << 2, + QMI_LOC_EVENT_REGISTRATION_FLAG_NI_NOTIFY_VERIFY_REQUEST = 1 << 3, + QMI_LOC_EVENT_REGISTRATION_FLAG_INJECT_TIME_REQUEST = 1 << 4, + QMI_LOC_EVENT_REGISTRATION_FLAG_INJECT_PREDICTED_ORBITS_REQUEST = 1 << 5, + QMI_LOC_EVENT_REGISTRATION_FLAG_INJECT_POSITION_REQUEST = 1 << 6, + QMI_LOC_EVENT_REGISTRATION_FLAG_ENGINE_STATE = 1 << 7, + QMI_LOC_EVENT_REGISTRATION_FLAG_FIX_SESSION_STATE = 1 << 8, + QMI_LOC_EVENT_REGISTRATION_FLAG_WIFI_REQUEST = 1 << 9, + QMI_LOC_EVENT_REGISTRATION_FLAG_SENSOR_STREAMING_READY_STATUS = 1 << 10, + QMI_LOC_EVENT_REGISTRATION_FLAG_TIME_SYNC_REQUEST = 1 << 11, + QMI_LOC_EVENT_REGISTRATION_FLAG_SET_SPI_STREAMING_REPORT = 1 << 12, + QMI_LOC_EVENT_REGISTRATION_FLAG_LOCATION_SERVER_CONNECTION_REQUEST = 1 << 13, + QMI_LOC_EVENT_REGISTRATION_FLAG_NI_GEOFENCE_NOTIFICATION = 1 << 14, + QMI_LOC_EVENT_REGISTRATION_FLAG_GEOFENCE_GENERAL_ALERT = 1 << 15, + QMI_LOC_EVENT_REGISTRATION_FLAG_GEOFENCE_BREACH_NOTIFICATION = 1 << 16, + QMI_LOC_EVENT_REGISTRATION_FLAG_PEDOMETER_CONTROL = 1 << 17, + QMI_LOC_EVENT_REGISTRATION_FLAG_MOTION_DATA_CONTROL = 1 << 18, +} QmiLocEventRegistrationFlag; + +/** + * qmi_loc_event_registration_flag_build_string_from_mask: + * + * Since: 1.22 + */ + +/** + * QmiLocSensorDataUsage: + * @QMI_LOC_SENSOR_DATA_USAGE_ACCELEROMETER_USED: Accelerometer used. + * @QMI_LOC_SENSOR_DATA_USAGE_GYRO_USED: Gyro used. + * @QMI_LOC_SENSOR_DATA_USAGE_AIDED_HEADING: Aided heading. + * @QMI_LOC_SENSOR_DATA_USAGE_AIDED_SPEED: Aided speed. + * @QMI_LOC_SENSOR_DATA_USAGE_AIDED_POSITION: Aided position. + * @QMI_LOC_SENSOR_DATA_USAGE_AIDED_VELOCITY: Aided velocity. + * + * Which sensors where used and for which measurements. + * + * Since 1.22 + */ +typedef enum { + QMI_LOC_SENSOR_DATA_USAGE_ACCELEROMETER_USED = 1 << 0, + QMI_LOC_SENSOR_DATA_USAGE_GYRO_USED = 1 << 1, + QMI_LOC_SENSOR_DATA_USAGE_AIDED_HEADING = ((guint64) 1) << 32, + QMI_LOC_SENSOR_DATA_USAGE_AIDED_SPEED = ((guint64) 1) << 33, + QMI_LOC_SENSOR_DATA_USAGE_AIDED_POSITION = ((guint64) 1) << 34, + QMI_LOC_SENSOR_DATA_USAGE_AIDED_VELOCITY = ((guint64) 1) << 35, +} QmiLocSensorDataUsage; + +/** + * qmi_loc_sensor_data_usage_build_string_from_mask: + * + * Since: 1.22 + */ + +/** + * QmiLocDeleteGnssData: + * @QMI_LOC_DELETE_GNSS_DATA_GPS_SVDIR: GPS SV dir. + * @QMI_LOC_DELETE_GNSS_DATA_GPS_SVSTEER: GPS SV steer. + * @QMI_LOC_DELETE_GNSS_DATA_GPS_TIME: GPS time. + * @QMI_LOC_DELETE_GNSS_DATA_GPS_ALM_CORR: GPS alm corr. + * @QMI_LOC_DELETE_GNSS_DATA_GLO_SVDIR: GLONASS SV dir. + * @QMI_LOC_DELETE_GNSS_DATA_GLO_SVSTEER: GLONASS SV steer. + * @QMI_LOC_DELETE_GNSS_DATA_GLO_TIME: GLONASS time. + * @QMI_LOC_DELETE_GNSS_DATA_GLO_ALM_CORR: GLONASS alm corr. + * @QMI_LOC_DELETE_GNSS_DATA_SBAS_SVDIR: SBAS SV dir. + * @QMI_LOC_DELETE_GNSS_DATA_SBAS_SVSTEER: SBAS SV steer. + * @QMI_LOC_DELETE_GNSS_DATA_POSITION: Position. + * @QMI_LOC_DELETE_GNSS_DATA_TIME: Time. + * @QMI_LOC_DELETE_GNSS_DATA_IONO: Ionospheric data. + * @QMI_LOC_DELETE_GNSS_DATA_UTC: UTC time. + * @QMI_LOC_DELETE_GNSS_DATA_HEALTH: Health information. + * @QMI_LOC_DELETE_GNSS_DATA_SADATA: SA data. + * @QMI_LOC_DELETE_GNSS_DATA_RTI: RTI. + * @QMI_LOC_DELETE_GNSS_DATA_SV_NO_EXIST: SV no exist. + * @QMI_LOC_DELETE_GNSS_DATA_FREQ_BIAS_EST: Frequency bias estimation. + * + * Flags to use when deleting GNSS assistance data. + * + * Since 1.22 + */ +typedef enum { + QMI_LOC_DELETE_GNSS_DATA_GPS_SVDIR = 1 << 0, + QMI_LOC_DELETE_GNSS_DATA_GPS_SVSTEER = 1 << 1, + QMI_LOC_DELETE_GNSS_DATA_GPS_TIME = 1 << 2, + QMI_LOC_DELETE_GNSS_DATA_GPS_ALM_CORR = 1 << 3, + QMI_LOC_DELETE_GNSS_DATA_GLO_SVDIR = 1 << 4, + QMI_LOC_DELETE_GNSS_DATA_GLO_SVSTEER = 1 << 5, + QMI_LOC_DELETE_GNSS_DATA_GLO_TIME = 1 << 6, + QMI_LOC_DELETE_GNSS_DATA_GLO_ALM_CORR = 1 << 7, + QMI_LOC_DELETE_GNSS_DATA_SBAS_SVDIR = 1 << 8, + QMI_LOC_DELETE_GNSS_DATA_SBAS_SVSTEER = 1 << 9, + QMI_LOC_DELETE_GNSS_DATA_POSITION = 1 << 10, + QMI_LOC_DELETE_GNSS_DATA_TIME = 1 << 11, + QMI_LOC_DELETE_GNSS_DATA_IONO = 1 << 12, + QMI_LOC_DELETE_GNSS_DATA_UTC = 1 << 13, + QMI_LOC_DELETE_GNSS_DATA_HEALTH = 1 << 14, + QMI_LOC_DELETE_GNSS_DATA_SADATA = 1 << 15, + QMI_LOC_DELETE_GNSS_DATA_RTI = 1 << 16, + QMI_LOC_DELETE_GNSS_DATA_SV_NO_EXIST = 1 << 17, + QMI_LOC_DELETE_GNSS_DATA_FREQ_BIAS_EST = 1 << 18, +} QmiLocDeleteGnssData; + +/** + * qmi_loc_delete_gnss_data_build_string_from_mask: + * + * Since: 1.22 + */ + +#endif /* _LIBQMI_GLIB_QMI_FLAGS64_LOC_H_ */ diff -Nru libqmi-1.18.0/src/libqmi-glib/qmi-flags64-nas.h libqmi-1.22.0/src/libqmi-glib/qmi-flags64-nas.h --- libqmi-1.18.0/src/libqmi-glib/qmi-flags64-nas.h 2017-03-21 14:26:54.000000000 +0100 +++ libqmi-1.22.0/src/libqmi-glib/qmi-flags64-nas.h 2019-01-08 14:09:47.000000000 +0100 @@ -74,6 +74,8 @@ * @QMI_NAS_BAND_PREFERENCE_WCDMA_2600: WCDMA 2600. * @QMI_NAS_BAND_PREFERENCE_WCDMA_900: WCDMA 900. * @QMI_NAS_BAND_PREFERENCE_WCDMA_1700_JAPAN: WCDMA 1700 (Japan). + * @QMI_NAS_BAND_PREFERENCE_WCDMA_850_JAPAN: WCDMA 850 (Japan). Since: 1.22. + * @QMI_NAS_BAND_PREFERENCE_WCDMA_1500: WCDMA 1500. Since: 1.22. * * Flags to specify frequency band preferences. * @@ -120,8 +122,10 @@ QMI_NAS_BAND_PREFERENCE_BC_16 = ((guint64) 1) << 56, QMI_NAS_BAND_PREFERENCE_BC_17 = ((guint64) 1) << 57, QMI_NAS_BAND_PREFERENCE_BC_18 = ((guint64) 1) << 58, - QMI_NAS_BAND_PREFERENCE_BC_19 = ((guint64) 1) << 59 - /* Bits 60-63 reserved */ + QMI_NAS_BAND_PREFERENCE_BC_19 = ((guint64) 1) << 59, + QMI_NAS_BAND_PREFERENCE_WCDMA_850_JAPAN = ((guint64) 1) << 60, + QMI_NAS_BAND_PREFERENCE_WCDMA_1500 = ((guint64) 1) << 61 + /* Bits 62-63 reserved */ } QmiNasBandPreference; /** @@ -153,6 +157,13 @@ * @QMI_NAS_LTE_BAND_PREFERENCE_EUTRAN_21: LTE EUTRAN Band 21. * @QMI_NAS_LTE_BAND_PREFERENCE_EUTRAN_24: LTE EUTRAN Band 24. * @QMI_NAS_LTE_BAND_PREFERENCE_EUTRAN_25: LTE EUTRAN Band 25. + * @QMI_NAS_LTE_BAND_PREFERENCE_EUTRAN_26: LTE EUTRAN Band 26. + * @QMI_NAS_LTE_BAND_PREFERENCE_EUTRAN_27: LTE EUTRAN Band 27. + * @QMI_NAS_LTE_BAND_PREFERENCE_EUTRAN_28: LTE EUTRAN Band 28. + * @QMI_NAS_LTE_BAND_PREFERENCE_EUTRAN_29: LTE EUTRAN Band 29. + * @QMI_NAS_LTE_BAND_PREFERENCE_EUTRAN_30: LTE EUTRAN Band 30. + * @QMI_NAS_LTE_BAND_PREFERENCE_EUTRAN_31: LTE EUTRAN Band 31. + * @QMI_NAS_LTE_BAND_PREFERENCE_EUTRAN_32: LTE EUTRAN Band 32. * @QMI_NAS_LTE_BAND_PREFERENCE_EUTRAN_33: LTE EUTRAN Band 33. * @QMI_NAS_LTE_BAND_PREFERENCE_EUTRAN_34: LTE EUTRAN Band 34. * @QMI_NAS_LTE_BAND_PREFERENCE_EUTRAN_35: LTE EUTRAN Band 35. @@ -193,7 +204,13 @@ /* Bit 21-22 reserved */ QMI_NAS_LTE_BAND_PREFERENCE_EUTRAN_24 = 1 << 23, QMI_NAS_LTE_BAND_PREFERENCE_EUTRAN_25 = 1 << 24, - /* Bit 25-31 reserved */ + QMI_NAS_LTE_BAND_PREFERENCE_EUTRAN_26 = 1 << 25, + QMI_NAS_LTE_BAND_PREFERENCE_EUTRAN_27 = 1 << 26, + QMI_NAS_LTE_BAND_PREFERENCE_EUTRAN_28 = 1 << 27, + QMI_NAS_LTE_BAND_PREFERENCE_EUTRAN_29 = 1 << 28, + QMI_NAS_LTE_BAND_PREFERENCE_EUTRAN_30 = 1 << 29, + QMI_NAS_LTE_BAND_PREFERENCE_EUTRAN_31 = 1 << 30, + QMI_NAS_LTE_BAND_PREFERENCE_EUTRAN_32 = 1 << 31, QMI_NAS_LTE_BAND_PREFERENCE_EUTRAN_33 = ((guint64) 1) << 32, QMI_NAS_LTE_BAND_PREFERENCE_EUTRAN_34 = ((guint64) 1) << 33, QMI_NAS_LTE_BAND_PREFERENCE_EUTRAN_35 = ((guint64) 1) << 34, diff -Nru libqmi-1.18.0/src/libqmi-glib/qmi-message.c libqmi-1.22.0/src/libqmi-glib/qmi-message.c --- libqmi-1.18.0/src/libqmi-glib/qmi-message.c 2017-03-21 14:26:54.000000000 +0100 +++ libqmi-1.22.0/src/libqmi-glib/qmi-message.c 2019-01-08 14:09:47.000000000 +0100 @@ -52,6 +52,8 @@ #include "qmi-oma.h" #include "qmi-wda.h" #include "qmi-voice.h" +#include "qmi-loc.h" +#include "qmi-qos.h" #define PACKED __attribute__((packed)) @@ -459,6 +461,9 @@ qmi_message_get_transaction_id (request), qmi_message_get_message_id (request)); + /* Set sender type flag */ + ((struct full_message *)(((GByteArray *)response)->data))->qmux.flags = 0x80; + /* Set the response flag */ if (message_is_control (request)) ((struct full_message *)(((GByteArray *)response)->data))->qmi.control.header.flags |= QMI_CTL_FLAG_RESPONSE; @@ -581,15 +586,9 @@ g_return_val_if_fail (self != NULL, FALSE); g_return_val_if_fail (self->len >= (tlv_offset + sizeof (struct tlv)), FALSE); + /* A TLV without content is actually not an error, e.g. TLV strings with no + * data are totally valid. */ tlv_length = self->len - tlv_offset; - if (tlv_length == sizeof (struct tlv)) { - g_set_error (error, - QMI_CORE_ERROR, - QMI_CORE_ERROR_TLV_EMPTY, - "Empty TLV, no value set"); - g_byte_array_set_size (self, tlv_offset); - return FALSE; - } /* Update length fields. */ tlv = tlv_get_header (self, tlv_offset); @@ -869,11 +868,6 @@ } tlv_length = GUINT16_FROM_LE (tlv->length); - if (!tlv_length) { - g_set_error (error, QMI_CORE_ERROR, QMI_CORE_ERROR_TLV_EMPTY, - "TLV 0x%02X is empty", type); - return 0; - } if (((guint8 *) tlv_next (tlv)) > ((guint8 *) qmi_end (self))) { g_set_error (error, QMI_CORE_ERROR, QMI_CORE_ERROR_TLV_TOO_LONG, @@ -1151,11 +1145,12 @@ } gboolean -qmi_message_tlv_read_gfloat (QmiMessage *self, - gsize tlv_offset, - gsize *offset, - gfloat *out, - GError **error) +qmi_message_tlv_read_gfloat_endian (QmiMessage *self, + gsize tlv_offset, + gsize *offset, + QmiEndian endian, + gfloat *out, + GError **error) { const guint8 *ptr; @@ -1166,13 +1161,43 @@ if (!(ptr = tlv_error_if_read_overflow (self, tlv_offset, *offset, 4, error))) return FALSE; - /* Yeah, do this for now */ memcpy (out, ptr, 4); + if (endian == QMI_ENDIAN_BIG) + *out = __QMI_GFLOAT_FROM_BE (*out); + else + *out = __QMI_GFLOAT_FROM_LE (*out); *offset = *offset + 4; return TRUE; } gboolean +qmi_message_tlv_read_gdouble (QmiMessage *self, + gsize tlv_offset, + gsize *offset, + QmiEndian endian, + gdouble *out, + GError **error) +{ + const guint8 *ptr; + + g_return_val_if_fail (self != NULL, FALSE); + g_return_val_if_fail (offset != NULL, FALSE); + g_return_val_if_fail (out != NULL, FALSE); + + if (!(ptr = tlv_error_if_read_overflow (self, tlv_offset, *offset, 8, error))) + return FALSE; + + /* Yeah, do this for now */ + memcpy (out, ptr, 8); + if (endian == QMI_ENDIAN_BIG) + *out = __QMI_GDOUBLE_FROM_BE (*out); + else + *out = __QMI_GDOUBLE_FROM_LE (*out); + *offset = *offset + 8; + return TRUE; +} + +gboolean qmi_message_tlv_read_string (QmiMessage *self, gsize tlv_offset, gsize *offset, @@ -1539,6 +1564,12 @@ case QMI_SERVICE_VOICE: contents = __qmi_message_voice_get_printable (self, context, line_prefix); break; + case QMI_SERVICE_LOC: + contents = __qmi_message_loc_get_printable (self, context, line_prefix); + break; + case QMI_SERVICE_QOS: + contents = __qmi_message_qos_get_printable (self, context, line_prefix); + break; default: break; } @@ -1551,13 +1582,6 @@ return g_string_free (printable, FALSE); } -gchar * -qmi_message_get_printable (QmiMessage *self, - const gchar *line_prefix) -{ - return qmi_message_get_printable_full (self, NULL, line_prefix); -} - gboolean qmi_message_get_version_introduced_full (QmiMessage *self, QmiMessageContext *context, @@ -1598,16 +1622,11 @@ case QMI_SERVICE_WDA: return __qmi_message_wda_get_version_introduced (self, context, major, minor); + case QMI_SERVICE_LOC: + return __qmi_message_loc_get_version_introduced (self, context, major, minor); + default: /* For the still unsupported services, cannot do anything */ return FALSE; } } - -gboolean -qmi_message_get_version_introduced (QmiMessage *self, - guint *major, - guint *minor) -{ - return qmi_message_get_version_introduced_full (self, NULL, major, minor); -} diff -Nru libqmi-1.18.0/src/libqmi-glib/qmi-message.h libqmi-1.22.0/src/libqmi-glib/qmi-message.h --- libqmi-1.18.0/src/libqmi-glib/qmi-message.h 2017-03-21 14:26:54.000000000 +0100 +++ libqmi-1.22.0/src/libqmi-glib/qmi-message.h 2019-01-08 14:09:47.000000000 +0100 @@ -276,26 +276,6 @@ /*****************************************************************************/ /* Version support from the database */ - -/** - * qmi_message_get_version_introduced: - * @self: a #QmiMessage. - * @major: (out) return location for the major version. - * @minor: (out) return location for the minor version. - * - * Gets, if known, the service version in which the given message was first - * introduced. - * - * Returns: %TRUE if @major and @minor are set, %FALSE otherwise. - * - * Since: 1.0 - * Deprecated: 1.18: Use qmi_message_get_version_introduced_full() instead. - */ -G_DEPRECATED_FOR (qmi_message_get_version_introduced_full) -gboolean qmi_message_get_version_introduced (QmiMessage *self, - guint *major, - guint *minor); - /** * qmi_message_get_version_introduced_full: * @self: a #QmiMessage. @@ -830,10 +810,11 @@ GError **error); /** - * qmi_message_tlv_read_gfloat: + * qmi_message_tlv_read_gfloat_endian: * @self: a #QmiMessage. * @tlv_offset: offset that was returned by qmi_message_tlv_read_init(). * @offset: address of a the offset within the TLV value. + * @endian: source endianness, which will be swapped to host byte order if necessary. * @out: return location for the read #gfloat. * @error: return location for error or %NULL. * @@ -847,11 +828,38 @@ * * Since: 1.12 */ -gboolean qmi_message_tlv_read_gfloat (QmiMessage *self, - gsize tlv_offset, - gsize *offset, - gfloat *out, - GError **error); +gboolean qmi_message_tlv_read_gfloat_endian (QmiMessage *self, + gsize tlv_offset, + gsize *offset, + QmiEndian endian, + gfloat *out, + GError **error); + +/** + * qmi_message_tlv_read_gdouble: + * @self: a #QmiMessage. + * @tlv_offset: offset that was returned by qmi_message_tlv_read_init(). + * @offset: address of a the offset within the TLV value. + * @endian: source endianness, which will be swapped to host byte order if necessary. + * @out: return location for the read #gdouble. + * @error: return location for error or %NULL. + * + * Reads a 64-bit floating-point number from the TLV. + * + * @offset needs to point to a valid @gsize specifying the index to start + * reading from within the TLV value (0 for the first item). If the variable + * is successfully read, @offset will be updated to point past the read item. + * + * Returns: %TRUE if the variable is successfully read, otherwise %FALSE is returned and @error is set. + * + * Since: 1.22 + */ +gboolean qmi_message_tlv_read_gdouble (QmiMessage *self, + gsize tlv_offset, + gsize *offset, + QmiEndian endian, + gdouble *out, + GError **error); /** * qmi_message_tlv_read_string: @@ -1005,25 +1013,6 @@ /* Printable helpers */ /** - * qmi_message_get_printable: - * @self: a #QmiMessage. - * @line_prefix: prefix string to use in each new generated line. - * - * Gets a printable string with the contents of the whole QMI message. - * - * If known, the printable string will contain translated TLV values as well as the raw - * data buffer contents. - * - * Returns: (transfer full): a newly allocated string, which should be freed with g_free(). - * - * Since: 1.0 - * Deprecated: 1.18: Use qmi_message_get_printable_full() instead. - */ -G_DEPRECATED_FOR (qmi_message_get_printable_full) -gchar *qmi_message_get_printable (QmiMessage *self, - const gchar *line_prefix); - -/** * qmi_message_get_printable_full: * @self: a #QmiMessage. * @context: a #QmiMessageContext. diff -Nru libqmi-1.18.0/src/libqmi-glib/qmi-proxy.c libqmi-1.22.0/src/libqmi-glib/qmi-proxy.c --- libqmi-1.18.0/src/libqmi-glib/qmi-proxy.c 2017-03-21 14:26:54.000000000 +0100 +++ libqmi-1.22.0/src/libqmi-glib/qmi-proxy.c 2019-01-08 14:09:47.000000000 +0100 @@ -98,6 +98,7 @@ QmiMessage *internal_proxy_open_request; GArray *qmi_client_info_array; guint indication_id; + guint device_removed_id; } Client; static gboolean connection_readable_cb (GSocket *socket, GIOCondition condition, Client *client); @@ -131,6 +132,8 @@ if (client->device) { if (g_signal_handler_is_connected (client->device, client->indication_id)) g_signal_handler_disconnect (client->device, client->indication_id); + if (g_signal_handler_is_connected (client->device, client->device_removed_id)) + g_signal_handler_disconnect (client->device, client->device_removed_id); g_object_unref (client->device); } @@ -239,7 +242,7 @@ if (device_in_list && (device == device_in_list || g_str_equal (qmi_device_get_path (device), qmi_device_get_path (device_in_list)))) { g_debug ("closing device '%s': no longer used", qmi_device_get_path_display (device)); - qmi_device_close (device_in_list, NULL); + qmi_device_close_async (device_in_list, 0, NULL, NULL, NULL); g_object_unref (device_in_list); self->priv->devices = g_list_remove (self->priv->devices, device_in_list); break; @@ -322,6 +325,13 @@ } static void +device_removed_cb (QmiDevice *device, + Client *client) +{ + untrack_client (client->proxy, client); +} + +static void device_open_ready (QmiDevice *device, GAsyncResult *res, Client *client) @@ -355,6 +365,10 @@ "indication", G_CALLBACK (indication_cb), client); + client->device_removed_id = g_signal_connect (client->device, + "device-removed", + G_CALLBACK (device_removed_cb), + client); complete_internal_proxy_open (self, client); @@ -398,19 +412,27 @@ Client *client, QmiMessage *message) { - const guint8 *buffer; - guint16 buffer_len; - gchar *device_file_path; - - buffer = qmi_message_get_raw_tlv (message, - QMI_MESSAGE_CTL_INTERNAL_PROXY_OPEN_INPUT_TLV_DEVICE_PATH, - &buffer_len); - if (!buffer) { - g_debug ("ignoring message from client: invalid proxy open request"); + gsize offset = 0; + gsize init_offset; + gchar *device_file_path; + GError *error = NULL; + + if ((init_offset = qmi_message_tlv_read_init (message, QMI_MESSAGE_CTL_INTERNAL_PROXY_OPEN_INPUT_TLV_DEVICE_PATH, NULL, &error)) == 0) { + g_debug ("ignoring message from client: invalid proxy open request: %s", error->message); + g_error_free (error); + return FALSE; + } + + if (!qmi_message_tlv_read_string (message, init_offset, &offset, 0, 0, &device_file_path, &error)) { + g_debug ("ignoring message from client: invalid device file path: %s", error->message); + g_error_free (error); return FALSE; } - qmi_utils_read_string_from_buffer (&buffer, &buffer_len, 0, 0, &device_file_path); + /* The remaining size of the buffer needs to be 0 if we successfully read the TLV */ + if ((offset = __qmi_message_tlv_read_remaining_size (message, init_offset, offset)) > 0) + g_warning ("Left '%" G_GSIZE_FORMAT "' bytes unread when getting the 'Device Path' TLV", offset); + g_debug ("valid request to open connection to QMI device file: %s", device_file_path); /* Keep it */ @@ -446,39 +468,35 @@ gboolean track, QmiMessage *message) { - const guint8 *buffer; - guint16 buffer_len; - guint16 error_status; - guint16 error_code; - guint8 tmp; - QmiClientInfo info; - guint i; - gboolean exists; - - buffer = qmi_message_get_raw_tlv (message, QMI_MESSAGE_OUTPUT_TLV_RESULT, &buffer_len); - if (!buffer || buffer_len != 4) { - g_warning ("invalid 'CTL allocate CID' response: missing or invalid result TLV"); + gsize offset = 0; + gsize init_offset; + guint16 error_status; + guint16 error_code; + GError *error = NULL; + guint8 service_tmp; + QmiClientInfo info; + gboolean exists; + guint i; + + if (((init_offset = qmi_message_tlv_read_init (message, QMI_MESSAGE_OUTPUT_TLV_RESULT, NULL, &error)) == 0) || + !qmi_message_tlv_read_guint16 (message, init_offset, &offset, QMI_ENDIAN_LITTLE, &error_status, &error) || + !qmi_message_tlv_read_guint16 (message, init_offset, &offset, QMI_ENDIAN_LITTLE, &error_code, &error)) { + g_warning ("invalid 'CTL allocate CID' response: missing or invalid result TLV: %s", error->message); + g_error_free (error); return; } - - qmi_utils_read_guint16_from_buffer (&buffer, &buffer_len, QMI_ENDIAN_LITTLE, &error_status); - if (error_status != 0x00) + g_warn_if_fail (__qmi_message_tlv_read_remaining_size (message, init_offset, offset) == 0); + if ((error_status != 0x00) || (error_code != QMI_PROTOCOL_ERROR_NONE)) return; - qmi_utils_read_guint16_from_buffer (&buffer, &buffer_len, QMI_ENDIAN_LITTLE, &error_code); - if (error_code != QMI_PROTOCOL_ERROR_NONE) - return; - - buffer = qmi_message_get_raw_tlv (message, QMI_MESSAGE_OUTPUT_TLV_ALLOCATION_INFO, &buffer_len); - if (!buffer || buffer_len != 2) { - g_warning ("invalid 'CTL allocate CID' response: missing or invalid allocation info TLV"); + if (((init_offset = qmi_message_tlv_read_init (message, QMI_MESSAGE_OUTPUT_TLV_ALLOCATION_INFO, NULL, &error)) == 0) || + !qmi_message_tlv_read_guint8 (message, init_offset, &offset, &service_tmp, &error) || + !qmi_message_tlv_read_guint8 (message, init_offset, &offset, &(info.cid), &error)) { + g_warning ("invalid 'CTL allocate CID' response: missing or invalid allocation info TLV: %s", error->message); + g_error_free (error); return; } - - qmi_utils_read_guint8_from_buffer (&buffer, &buffer_len, &tmp); - info.service = (QmiService)tmp; - qmi_utils_read_guint8_from_buffer (&buffer, &buffer_len, &(info.cid)); - + info.service = (QmiService)service_tmp; /* Check if it already exists */ for (i = 0; i < client->qmi_client_info_array->len; i++) { diff -Nru libqmi-1.18.0/src/libqmi-glib/qmi-utils.c libqmi-1.22.0/src/libqmi-glib/qmi-utils.c --- libqmi-1.18.0/src/libqmi-glib/qmi-utils.c 2017-03-21 14:26:54.000000000 +0100 +++ libqmi-1.22.0/src/libqmi-glib/qmi-utils.c 2019-01-08 14:09:47.000000000 +0100 @@ -120,606 +120,6 @@ /*****************************************************************************/ -#if defined UTILS_ENABLE_TRACE -static void -print_read_bytes_trace (const gchar *type, - gconstpointer buffer, - gconstpointer out, - guint n_bytes) -{ - gchar *str1; - gchar *str2; - - str1 = __qmi_utils_str_hex (buffer, n_bytes, ':'); - str2 = __qmi_utils_str_hex (out, n_bytes, ':'); - - g_debug ("Read %s (%s) --> (%s)", type, str1, str2); - g_warn_if_fail (g_str_equal (str1, str2)); - - g_free (str1); - g_free (str2); -} -#else -#define print_read_bytes_trace(...) -#endif - -void -qmi_utils_read_guint8_from_buffer (const guint8 **buffer, - guint16 *buffer_size, - guint8 *out) -{ - g_assert (out != NULL); - g_assert (buffer != NULL); - g_assert (buffer_size != NULL); - g_assert (*buffer_size >= 1); - - *out = (*buffer)[0]; - - print_read_bytes_trace ("guint8", &(*buffer)[0], out, 1); - - *buffer = &((*buffer)[1]); - *buffer_size = (*buffer_size) - 1; -} - -void -qmi_utils_read_gint8_from_buffer (const guint8 **buffer, - guint16 *buffer_size, - gint8 *out) -{ - g_assert (out != NULL); - g_assert (buffer != NULL); - g_assert (buffer_size != NULL); - g_assert (*buffer_size >= 1); - - *out = (gint8)(*buffer)[0]; - - print_read_bytes_trace ("gint8", &(*buffer)[0], out, 1); - - *buffer = &((*buffer)[1]); - *buffer_size = (*buffer_size) - 1; -} - -void -qmi_utils_read_guint16_from_buffer (const guint8 **buffer, - guint16 *buffer_size, - QmiEndian endian, - guint16 *out) -{ - g_assert (out != NULL); - g_assert (buffer != NULL); - g_assert (buffer_size != NULL); - g_assert (*buffer_size >= 2); - - memcpy (out, &((*buffer)[0]), 2); - if (endian == QMI_ENDIAN_BIG) - *out = GUINT16_FROM_BE (*out); - else - *out = GUINT16_FROM_LE (*out); - - print_read_bytes_trace ("guint16", &(*buffer)[0], out, 2); - - *buffer = &((*buffer)[2]); - *buffer_size = (*buffer_size) - 2; -} - -void -qmi_utils_read_gint16_from_buffer (const guint8 **buffer, - guint16 *buffer_size, - QmiEndian endian, - gint16 *out) -{ - g_assert (out != NULL); - g_assert (buffer != NULL); - g_assert (buffer_size != NULL); - g_assert (*buffer_size >= 2); - - memcpy (out, &((*buffer)[0]), 2); - if (endian == QMI_ENDIAN_BIG) - *out = GINT16_FROM_BE (*out); - else - *out = GINT16_FROM_LE (*out); - - print_read_bytes_trace ("gint16", &(*buffer)[0], out, 2); - - *buffer = &((*buffer)[2]); - *buffer_size = (*buffer_size) - 2; -} - -void -qmi_utils_read_guint32_from_buffer (const guint8 **buffer, - guint16 *buffer_size, - QmiEndian endian, - guint32 *out) -{ - g_assert (out != NULL); - g_assert (buffer != NULL); - g_assert (buffer_size != NULL); - g_assert (*buffer_size >= 4); - - memcpy (out, &((*buffer)[0]), 4); - if (endian == QMI_ENDIAN_BIG) - *out = GUINT32_FROM_BE (*out); - else - *out = GUINT32_FROM_LE (*out); - - print_read_bytes_trace ("guint32", &(*buffer)[0], out, 4); - - *buffer = &((*buffer)[4]); - *buffer_size = (*buffer_size) - 4; -} - -void -qmi_utils_read_gint32_from_buffer (const guint8 **buffer, - guint16 *buffer_size, - QmiEndian endian, - gint32 *out) -{ - g_assert (out != NULL); - g_assert (buffer != NULL); - g_assert (buffer_size != NULL); - g_assert (*buffer_size >= 4); - - memcpy (out, &((*buffer)[0]), 4); - if (endian == QMI_ENDIAN_BIG) - *out = GINT32_FROM_BE (*out); - else - *out = GINT32_FROM_LE (*out); - - print_read_bytes_trace ("gint32", &(*buffer)[0], out, 4); - - *buffer = &((*buffer)[4]); - *buffer_size = (*buffer_size) - 4; -} - -void -qmi_utils_read_guint64_from_buffer (const guint8 **buffer, - guint16 *buffer_size, - QmiEndian endian, - guint64 *out) -{ - g_assert (out != NULL); - g_assert (buffer != NULL); - g_assert (buffer_size != NULL); - g_assert (*buffer_size >= 8); - - memcpy (out, &((*buffer)[0]), 8); - if (endian == QMI_ENDIAN_BIG) - *out = GUINT64_FROM_BE (*out); - else - *out = GUINT64_FROM_LE (*out); - - print_read_bytes_trace ("guint64", &(*buffer)[0], out, 8); - - *buffer = &((*buffer)[8]); - *buffer_size = (*buffer_size) - 8; -} - -void -qmi_utils_read_gint64_from_buffer (const guint8 **buffer, - guint16 *buffer_size, - QmiEndian endian, - gint64 *out) -{ - g_assert (out != NULL); - g_assert (buffer != NULL); - g_assert (buffer_size != NULL); - g_assert (*buffer_size >= 8); - - memcpy (out, &((*buffer)[0]), 8); - if (endian == QMI_ENDIAN_BIG) - *out = GINT64_FROM_BE (*out); - else - *out = GINT64_FROM_LE (*out); - - print_read_bytes_trace ("gint64", &(*buffer)[0], out, 8); - - *buffer = &((*buffer)[8]); - *buffer_size = (*buffer_size) - 8; -} - -void -qmi_utils_read_sized_guint_from_buffer (const guint8 **buffer, - guint16 *buffer_size, - guint n_bytes, - QmiEndian endian, - guint64 *out) -{ - g_assert (out != NULL); - g_assert (buffer != NULL); - g_assert (buffer_size != NULL); - g_assert (*buffer_size >= n_bytes); - g_assert (n_bytes <= 8); - - *out = 0; - - /* In Little Endian, we copy the bytes to the beginning of the output - * buffer. */ - if (endian == QMI_ENDIAN_LITTLE) { - memcpy (out, *buffer, n_bytes); - *out = GUINT64_FROM_LE (*out); - } - /* In Big Endian, we copy the bytes to the end of the output buffer */ - else { - guint8 tmp[8] = { 0 }; - - memcpy (&tmp[8 - n_bytes], *buffer, n_bytes); - memcpy (out, &tmp[0], 8); - *out = GUINT64_FROM_BE (*out); - } - - *buffer = &((*buffer)[n_bytes]); - *buffer_size = (*buffer_size) - n_bytes; -} - -void -qmi_utils_read_gfloat_from_buffer (const guint8 **buffer, - guint16 *buffer_size, - gfloat *out) -{ - g_assert (out != NULL); - g_assert (buffer != NULL); - g_assert (buffer_size != NULL); - g_assert (*buffer_size >= 4); - - /* Yeah, do this for now */ - memcpy (out, &((*buffer)[0]), 4); - - print_read_bytes_trace ("gfloat", &(*buffer)[0], out, 4); - - *buffer = &((*buffer)[4]); - *buffer_size = (*buffer_size) - 4; -} - -void -qmi_utils_write_guint8_to_buffer (guint8 **buffer, - guint16 *buffer_size, - guint8 *in) -{ - g_assert (in != NULL); - g_assert (buffer != NULL); - g_assert (buffer_size != NULL); - g_assert (*buffer_size >= 1); - - memcpy (&(*buffer)[0], in, sizeof (*in)); - - *buffer = &((*buffer)[1]); - *buffer_size = (*buffer_size) - 1; -} - -void -qmi_utils_write_gint8_to_buffer (guint8 **buffer, - guint16 *buffer_size, - gint8 *in) -{ - g_assert (in != NULL); - g_assert (buffer != NULL); - g_assert (buffer_size != NULL); - g_assert (*buffer_size >= 1); - - memcpy (&(*buffer)[0], in, sizeof (*in)); - - *buffer = &((*buffer)[1]); - *buffer_size = (*buffer_size) - 1; -} - -void -qmi_utils_write_guint16_to_buffer (guint8 **buffer, - guint16 *buffer_size, - QmiEndian endian, - guint16 *in) -{ - guint16 tmp; - - g_assert (in != NULL); - g_assert (buffer != NULL); - g_assert (buffer_size != NULL); - g_assert (*buffer_size >= 2); - - if (endian == QMI_ENDIAN_BIG) - tmp = GUINT16_TO_BE (*in); - else - tmp = GUINT16_TO_LE (*in); - memcpy (&(*buffer)[0], &tmp, sizeof (tmp)); - - *buffer = &((*buffer)[2]); - *buffer_size = (*buffer_size) - 2; -} - -void -qmi_utils_write_gint16_to_buffer (guint8 **buffer, - guint16 *buffer_size, - QmiEndian endian, - gint16 *in) -{ - gint16 tmp; - - g_assert (in != NULL); - g_assert (buffer != NULL); - g_assert (buffer_size != NULL); - g_assert (*buffer_size >= 2); - - if (endian == QMI_ENDIAN_BIG) - tmp = GINT16_TO_BE (*in); - else - tmp = GINT16_TO_LE (*in); - memcpy (&(*buffer)[0], &tmp, sizeof (tmp)); - - *buffer = &((*buffer)[2]); - *buffer_size = (*buffer_size) - 2; -} - -void -qmi_utils_write_guint32_to_buffer (guint8 **buffer, - guint16 *buffer_size, - QmiEndian endian, - guint32 *in) -{ - guint32 tmp; - - g_assert (in != NULL); - g_assert (buffer != NULL); - g_assert (buffer_size != NULL); - g_assert (*buffer_size >= 4); - - if (endian == QMI_ENDIAN_BIG) - tmp = GUINT32_TO_BE (*in); - else - tmp = GUINT32_TO_LE (*in); - memcpy (&(*buffer)[0], &tmp, sizeof (tmp)); - - *buffer = &((*buffer)[4]); - *buffer_size = (*buffer_size) - 4; -} - -void -qmi_utils_write_gint32_to_buffer (guint8 **buffer, - guint16 *buffer_size, - QmiEndian endian, - gint32 *in) -{ - gint32 tmp; - - g_assert (in != NULL); - g_assert (buffer != NULL); - g_assert (buffer_size != NULL); - g_assert (*buffer_size >= 4); - - if (endian == QMI_ENDIAN_BIG) - tmp = GINT32_TO_BE (*in); - else - tmp = GINT32_TO_LE (*in); - memcpy (&(*buffer)[0], &tmp, sizeof (tmp)); - - *buffer = &((*buffer)[4]); - *buffer_size = (*buffer_size) - 4; -} - -void -qmi_utils_write_guint64_to_buffer (guint8 **buffer, - guint16 *buffer_size, - QmiEndian endian, - guint64 *in) -{ - guint64 tmp; - - g_assert (in != NULL); - g_assert (buffer != NULL); - g_assert (buffer_size != NULL); - g_assert (*buffer_size >= 8); - - if (endian == QMI_ENDIAN_BIG) - tmp = GUINT64_TO_BE (*in); - else - tmp = GUINT64_TO_LE (*in); - memcpy (&(*buffer)[0], &tmp, sizeof (tmp)); - - *buffer = &((*buffer)[8]); - *buffer_size = (*buffer_size) - 8; -} - -void -qmi_utils_write_gint64_to_buffer (guint8 **buffer, - guint16 *buffer_size, - QmiEndian endian, - gint64 *in) -{ - gint64 tmp; - - g_assert (in != NULL); - g_assert (buffer != NULL); - g_assert (buffer_size != NULL); - g_assert (*buffer_size >= 8); - - if (endian == QMI_ENDIAN_BIG) - tmp = GINT64_TO_BE (*in); - else - tmp = GINT64_TO_LE (*in); - memcpy (&(*buffer)[0], &tmp, sizeof (tmp)); - - *buffer = &((*buffer)[8]); - *buffer_size = (*buffer_size) - 8; -} - -void -qmi_utils_write_sized_guint_to_buffer (guint8 **buffer, - guint16 *buffer_size, - guint n_bytes, - QmiEndian endian, - guint64 *in) -{ - guint64 tmp; - - g_assert (in != NULL); - g_assert (buffer != NULL); - g_assert (buffer_size != NULL); - g_assert (*buffer_size >= n_bytes); - g_assert (n_bytes <= 8); - - if (endian == QMI_ENDIAN_BIG) - tmp = GUINT64_TO_BE (*in); - else - tmp = GUINT64_TO_LE (*in); - - /* In Little Endian, we read the bytes from the beginning of the buffer */ - if (endian == QMI_ENDIAN_LITTLE) { - memcpy (*buffer, &tmp, n_bytes); - } - /* In Big Endian, we read the bytes from the end of the buffer */ - else { - guint8 tmp_buffer[8]; - - memcpy (&tmp_buffer[0], &tmp, 8); - memcpy (*buffer, &tmp_buffer[8 - n_bytes], n_bytes); - } - - *buffer = &((*buffer)[n_bytes]); - *buffer_size = (*buffer_size) - n_bytes; -} - -void -qmi_utils_read_string_from_buffer (const guint8 **buffer, - guint16 *buffer_size, - guint8 length_prefix_size, - guint16 max_size, - gchar **out) -{ - guint16 string_length; - guint16 valid_string_length; - guint8 string_length_8; - guint16 string_length_16; - - g_assert (out != NULL); - g_assert (buffer != NULL); - g_assert (buffer_size != NULL); - g_assert (length_prefix_size == 0 || - length_prefix_size == 8 || - length_prefix_size == 16); - - switch (length_prefix_size) { - case 0: - /* If no length prefix given, read the whole buffer into a string */ - string_length = *buffer_size; - break; - case 8: - qmi_utils_read_guint8_from_buffer (buffer, - buffer_size, - &string_length_8); - string_length = string_length_8; - break; - case 16: - qmi_utils_read_guint16_from_buffer (buffer, - buffer_size, - QMI_ENDIAN_LITTLE, - &string_length_16); - string_length = string_length_16; - break; - default: - g_assert_not_reached (); - } - - if (max_size > 0 && string_length > max_size) - valid_string_length = max_size; - else - valid_string_length = string_length; - - /* Read 'valid_string_length' bytes */ - *out = g_malloc (valid_string_length + 1); - memcpy (*out, *buffer, valid_string_length); - (*out)[valid_string_length] = '\0'; - - /* And walk 'string_length' bytes */ - *buffer = &((*buffer)[string_length]); - *buffer_size = (*buffer_size) - string_length; -} - -void -qmi_utils_read_fixed_size_string_from_buffer (const guint8 **buffer, - guint16 *buffer_size, - guint16 fixed_size, - gchar *out) -{ - g_assert (out != NULL); - g_assert (buffer != NULL); - g_assert (buffer_size != NULL); - g_assert (fixed_size > 0); - - memcpy (out, *buffer, fixed_size); - - *buffer = &((*buffer)[fixed_size]); - *buffer_size = (*buffer_size) - fixed_size; -} - -void -qmi_utils_write_string_to_buffer (guint8 **buffer, - guint16 *buffer_size, - guint8 length_prefix_size, - const gchar *in) -{ - gsize len; - guint8 len_8; - guint16 len_16; - - g_assert (in != NULL); - g_assert (buffer != NULL); - g_assert (buffer_size != NULL); - g_assert (length_prefix_size == 0 || - length_prefix_size == 8 || - length_prefix_size == 16); - - len = strlen (in); - - g_assert ( len + (length_prefix_size/8) <= *buffer_size - || (length_prefix_size==8 && ((int) G_MAXUINT8 + 1) < *buffer_size)); - - switch (length_prefix_size) { - case 0: - break; - case 8: - if (len > G_MAXUINT8) { - g_warn_if_reached (); - len = G_MAXUINT8; - } - len_8 = (guint8)len; - qmi_utils_write_guint8_to_buffer (buffer, - buffer_size, - &len_8); - break; - case 16: - /* already asserted that @len is no larger then @buffer_size */ - len_16 = (guint16)len; - qmi_utils_write_guint16_to_buffer (buffer, - buffer_size, - QMI_ENDIAN_LITTLE, - &len_16); - break; - default: - g_assert_not_reached (); - } - - memcpy (*buffer, in, len); - *buffer = &((*buffer)[len]); - *buffer_size = (*buffer_size) - len; -} - -void -qmi_utils_write_fixed_size_string_to_buffer (guint8 **buffer, - guint16 *buffer_size, - guint16 fixed_size, - const gchar *in) -{ - g_assert (in != NULL); - g_assert (buffer != NULL); - g_assert (buffer_size != NULL); - g_assert (fixed_size > 0); - g_assert (fixed_size <= *buffer_size); - - memcpy (*buffer, in, fixed_size); - *buffer = &((*buffer)[fixed_size]); - *buffer_size = (*buffer_size) - fixed_size; -} - -/*****************************************************************************/ - gchar * __qmi_utils_get_driver (const gchar *cdc_wdm_path) { @@ -740,11 +140,13 @@ * /sys/bus/usb/drivers/qmi_wwan */ tmp = g_strdup_printf ("/sys/class/%s/%s/device/driver", subsystems[i], device_basename); - path = canonicalize_file_name (tmp); + path = realpath (tmp, NULL); g_free (tmp); - if (g_file_test (path, G_FILE_TEST_EXISTS)) - driver = g_path_get_basename (path); + if (!path) + continue; + + driver = g_path_get_basename (path); g_free (path); } diff -Nru libqmi-1.18.0/src/libqmi-glib/qmi-utils.h libqmi-1.22.0/src/libqmi-glib/qmi-utils.h --- libqmi-1.18.0/src/libqmi-glib/qmi-utils.h 2017-03-21 14:26:54.000000000 +0100 +++ libqmi-1.22.0/src/libqmi-glib/qmi-utils.h 2019-01-08 14:09:47.000000000 +0100 @@ -20,6 +20,10 @@ * * Copyright (C) 2012-2015 Dan Williams * Copyright (C) 2012-2017 Aleksander Morgado + * Copyright (C) 1999,2000 Erik Walthinsen + * Copyright (C) 2000 Wim Taymans + * Copyright (C) 2002 Thomas Vander Stichele + */ #ifndef _LIBQMI_GLIB_QMI_UTILS_H_ @@ -47,577 +51,8 @@ QMI_ENDIAN_BIG = 1 } QmiEndian; -/* Reading/Writing integer variables */ - -/** - * qmi_utils_read_guint8_from_buffer: - * @buffer: a buffer with raw binary data. - * @buffer_size: size of @buffer. - * @out: return location for the read variable. - * - * Reads an unsigned byte from the buffer. - * - * The user needs to make sure that at least 1 byte is available - * in the buffer. - * - * Also note that both @buffer and @buffer_size get updated after the 1 byte - * read. - * - * Since: 1.0 - * Deprecated: 1.12: Use qmi_message_tlv_read_guint8() instead. - */ -G_DEPRECATED_FOR (qmi_message_tlv_read_guint8) -void qmi_utils_read_guint8_from_buffer (const guint8 **buffer, - guint16 *buffer_size, - guint8 *out); - -/** - * qmi_utils_read_gint8_from_buffer: - * @buffer: a buffer with raw binary data. - * @buffer_size: size of @buffer. - * @out: return location for the read variable. - * - * Reads a signed byte from the buffer. - * - * The user needs to make sure that at least 1 byte is available - * in the buffer. - * - * Also note that both @buffer and @buffer_size get updated after the 1 byte - * read. - * - * Since: 1.0 - * Deprecated: 1.12: Use qmi_message_tlv_read_gint8() instead. - */ -G_DEPRECATED_FOR (qmi_message_tlv_read_gint8) -void qmi_utils_read_gint8_from_buffer (const guint8 **buffer, - guint16 *buffer_size, - gint8 *out); - -/** - * qmi_utils_read_guint16_from_buffer: - * @buffer: a buffer with raw binary data. - * @buffer_size: size of @buffer. - * @endian: endianness of firmware value; swapped to host byte order if necessary - * @out: return location for the read variable. - * - * Reads an unsigned 16-bit integer from the buffer. The number in the buffer is - * expected to be given in the byte order specificed by @endian, and this method - * takes care of converting the read value to the proper host endianness. - * - * The user needs to make sure that at least 2 bytes are available - * in the buffer. - * - * Also note that both @buffer and @buffer_size get updated after the 2 bytes - * read. - * - * Since: 1.0 - * Deprecated: 1.12: Use qmi_message_tlv_read_guint16() instead. - */ -G_DEPRECATED_FOR (qmi_message_tlv_read_guint16) -void qmi_utils_read_guint16_from_buffer (const guint8 **buffer, - guint16 *buffer_size, - QmiEndian endian, - guint16 *out); - -/** - * qmi_utils_read_gint16_from_buffer: - * @buffer: a buffer with raw binary data. - * @buffer_size: size of @buffer. - * @endian: endianness of firmware value; swapped to host byte order if necessary - * @out: return location for the read variable. - * - * Reads a signed 16-bit integer from the buffer. The number in the buffer is - * expected to be given in the byte order specified by @endian, and this method - * takes care of converting the read value to the proper host endianness. - * - * The user needs to make sure that at least 2 bytes are available - * in the buffer. - * - * Also note that both @buffer and @buffer_size get updated after the 2 bytes - * read. - * - * Since: 1.0 - * Deprecated: 1.12: Use qmi_message_tlv_read_gint16() instead. - */ -G_DEPRECATED_FOR (qmi_message_tlv_read_gint16) -void qmi_utils_read_gint16_from_buffer (const guint8 **buffer, - guint16 *buffer_size, - QmiEndian endian, - gint16 *out); - -/** - * qmi_utils_read_guint32_from_buffer: - * @buffer: a buffer with raw binary data. - * @buffer_size: size of @buffer. - * @endian: endianness of firmware value; swapped to host byte order if necessary - * @out: return location for the read variable. - * - * Reads an unsigned 32-bit integer from the buffer. The number in the buffer is - * expected to be given in the byte order specified by @endian, and this method - * takes care of converting the read value to the proper host endianness. - * - * The user needs to make sure that at least 4 bytes are available - * in the buffer. - * - * Also note that both @buffer and @buffer_size get updated after the 4 bytes - * read. - * - * Since: 1.0 - * Deprecated: 1.12: Use qmi_message_tlv_read_guint32() instead. - */ -G_DEPRECATED_FOR (qmi_message_tlv_read_guint32) -void qmi_utils_read_guint32_from_buffer (const guint8 **buffer, - guint16 *buffer_size, - QmiEndian endian, - guint32 *out); - -/** - * qmi_utils_read_gint32_from_buffer: - * @buffer: a buffer with raw binary data. - * @buffer_size: size of @buffer. - * @endian: endianness of firmware value; swapped to host byte order if necessary - * @out: return location for the read variable. - * - * Reads a signed 32-bit integer from the buffer. The number in the buffer is - * expected to be given in the byte order specified by @endian, and this method - * takes care of converting the read value to the proper host endianness. - * - * The user needs to make sure that at least 4 bytes are available - * in the buffer. - * - * Also note that both @buffer and @buffer_size get updated after the 4 bytes - * read. - * - * Since: 1.0 - * Deprecated: 1.12: Use qmi_message_tlv_read_gint32() instead. - */ -G_DEPRECATED_FOR (qmi_message_tlv_read_gint32) -void qmi_utils_read_gint32_from_buffer (const guint8 **buffer, - guint16 *buffer_size, - QmiEndian endian, - gint32 *out); - -/** - * qmi_utils_read_guint64_from_buffer: - * @buffer: a buffer with raw binary data. - * @buffer_size: size of @buffer. - * @endian: endianness of firmware value; swapped to host byte order if necessary - * @out: return location for the read variable. - * - * Reads an unsigned 64-bit integer from the buffer. The number in the buffer is - * expected to be given in the byte order specified by @endian, and this method - * takes care of converting the read value to the proper host endianness. - * - * The user needs to make sure that at least 8 bytes are available - * in the buffer. - * - * Also note that both @buffer and @buffer_size get updated after the 8 bytes - * read. - * - * Since: 1.0 - * Deprecated: 1.12: Use qmi_message_tlv_read_guint64() instead. - */ -G_DEPRECATED_FOR (qmi_message_tlv_read_guint64) -void qmi_utils_read_guint64_from_buffer (const guint8 **buffer, - guint16 *buffer_size, - QmiEndian endian, - guint64 *out); - -/** - * qmi_utils_read_gint64_from_buffer: - * @buffer: a buffer with raw binary data. - * @buffer_size: size of @buffer. - * @endian: endianness of firmware value; swapped to host byte order if necessary - * @out: return location for the read variable. - * - * Reads a signed 64-bit integer from the buffer. The number in the buffer is - * expected to be given in the byte order specified by @endian, and this method - * takes care of converting the read value to the proper host endianness. - * - * The user needs to make sure that at least 8 bytes are available - * in the buffer. - * - * Also note that both @buffer and @buffer_size get updated after the 8 bytes - * read. - * - * Since: 1.0 - * Deprecated: 1.12: Use qmi_message_tlv_read_gint64() instead. - */ -G_DEPRECATED_FOR (qmi_message_tlv_read_gint64) -void qmi_utils_read_gint64_from_buffer (const guint8 **buffer, - guint16 *buffer_size, - QmiEndian endian, - gint64 *out); - -/** - * qmi_utils_read_sized_guint_from_buffer: - * @buffer: a buffer with raw binary data. - * @buffer_size: size of @buffer. - * @n_bytes: number of bytes to read. - * @endian: endianness of firmware value; swapped to host byte order if necessary - * @out: return location for the read variable. - * - * Reads a @n_bytes-sized unsigned integer from the buffer. The number in the - * buffer is expected to be given in the byte order specified by @endian, and - * this method takes care of converting the read value to the proper host - * endianness. - * - * The user needs to make sure that at least @n_bytes bytes are available - * in the buffer. - * - * Also note that both @buffer and @buffer_size get updated after the @n_bytes - * bytes read. - * - * Since: 1.0 - * Deprecated: 1.12: Use qmi_message_tlv_read_sized_guint() instead. - */ -G_DEPRECATED_FOR (qmi_message_tlv_read_sized_guint) -void qmi_utils_read_sized_guint_from_buffer (const guint8 **buffer, - guint16 *buffer_size, - guint n_bytes, - QmiEndian endian, - guint64 *out); - -/** - * qmi_utils_read_gfloat_from_buffer: - * @buffer: a buffer with raw binary data. - * @buffer_size: size of @buffer. - * @out: return location for the read variable. - * - * Reads a 32-bit floating-point number from the buffer. - * - * The user needs to make sure that at least 4 bytes are available - * in the buffer. - * - * Also note that both @buffer and @buffer_size get updated after the 4 bytes - * read. - * - * Since: 1.10 - * Deprecated: 1.12: Use qmi_message_tlv_read_gfloat() instead. - */ -G_DEPRECATED_FOR (qmi_message_tlv_read_gfloat) -void qmi_utils_read_gfloat_from_buffer (const guint8 **buffer, - guint16 *buffer_size, - gfloat *out); - -/** - * qmi_utils_write_guint8_to_buffer: - * @buffer: a buffer. - * @buffer_size: size of @buffer. - * @in: location of the variable to be written. - * - * Writes an unsigned byte into the buffer. - * - * The user needs to make sure that the buffer is at least 1 byte long. - * - * Also note that both @buffer and @buffer_size get updated after the 1 byte - * write. - * - * Since: 1.0 - * Deprecated: 1.12: Use qmi_message_tlv_write_guint8() instead. - */ -G_DEPRECATED_FOR (qmi_message_tlv_write_guint8) -void qmi_utils_write_guint8_to_buffer (guint8 **buffer, - guint16 *buffer_size, - guint8 *in); - -/** - * qmi_utils_write_gint8_to_buffer: - * @buffer: a buffer. - * @buffer_size: size of @buffer. - * @in: location of the variable to be written. - * - * Writes a signed byte into the buffer. - * - * The user needs to make sure that the buffer is at least 1 byte long. - * - * Also note that both @buffer and @buffer_size get updated after the 1 byte - * write. - * - * Since: 1.0 - * Deprecated: 1.12: Use qmi_message_tlv_write_gint8() instead. - */ -G_DEPRECATED_FOR (qmi_message_tlv_write_gint8) -void qmi_utils_write_gint8_to_buffer (guint8 **buffer, - guint16 *buffer_size, - gint8 *in); - -/** - * qmi_utils_write_guint16_to_buffer: - * @buffer: a buffer. - * @buffer_size: size of @buffer. - * @endian: endianness of firmware value; swapped from host byte order if necessary - * @in: location of the variable to be written. - * - * Writes an unsigned 16-bit integer into the buffer. The number to be written - * is expected to be given in host endianness, and this method takes care of - * converting the value written to the byte order specified by @endian. - * - * The user needs to make sure that the buffer is at least 2 bytes long. - * - * Also note that both @buffer and @buffer_size get updated after the 2 bytes - * write. - * - * Since: 1.0 - * Deprecated: 1.12: Use qmi_message_tlv_write_guint16() instead. - */ -G_DEPRECATED_FOR (qmi_message_tlv_write_guint16) -void qmi_utils_write_guint16_to_buffer (guint8 **buffer, - guint16 *buffer_size, - QmiEndian endian, - guint16 *in); - -/** - * qmi_utils_write_gint16_to_buffer: - * @buffer: a buffer. - * @buffer_size: size of @buffer. - * @endian: endianness of firmware value; swapped from host byte order if necessary - * @in: location of the variable to be written. - * - * Writes a signed 16-bit integer into the buffer. The number to be written - * is expected to be given in host endianness, and this method takes care of - * converting the value written to the byte order specified by @endian. - * - * The user needs to make sure that the buffer is at least 2 bytes long. - * - * Also note that both @buffer and @buffer_size get updated after the 2 bytes - * write. - * - * Since: 1.0 - * Deprecated: 1.12: Use qmi_message_tlv_write_gint16() instead. - */ -G_DEPRECATED_FOR (qmi_message_tlv_write_gint16) -void qmi_utils_write_gint16_to_buffer (guint8 **buffer, - guint16 *buffer_size, - QmiEndian endian, - gint16 *in); - -/** - * qmi_utils_write_guint32_to_buffer: - * @buffer: a buffer. - * @buffer_size: size of @buffer. - * @endian: endianness of firmware value; swapped from host byte order if necessary - * @in: location of the variable to be written. - * - * Writes an unsigned 32-bit integer into the buffer. The number to be written - * is expected to be given in host endianness, and this method takes care of - * converting the value written to the byte order specified by @endian. - * - * The user needs to make sure that the buffer is at least 4 bytes long. - * - * Also note that both @buffer and @buffer_size get updated after the 4 bytes - * write. - * - * Since: 1.0 - * Deprecated: 1.12: Use qmi_message_tlv_write_guint32() instead. - */ -G_DEPRECATED_FOR (qmi_message_tlv_write_guint32) -void qmi_utils_write_guint32_to_buffer (guint8 **buffer, - guint16 *buffer_size, - QmiEndian endian, - guint32 *in); - -/** - * qmi_utils_write_gint32_to_buffer: - * @buffer: a buffer. - * @buffer_size: size of @buffer. - * @endian: endianness of firmware value; swapped from host byte order if necessary - * @in: location of the variable to be written. - * - * Writes a signed 32-bit integer into the buffer. The number to be written - * is expected to be given in host endianness, and this method takes care of - * converting the value written to the byte order specified by @endian. - * - * The user needs to make sure that the buffer is at least 4 bytes long. - * - * Also note that both @buffer and @buffer_size get updated after the 4 bytes - * write. - * - * Since: 1.0 - * Deprecated: 1.12: Use qmi_message_tlv_write_gint32() instead. - */ -G_DEPRECATED_FOR (qmi_message_tlv_write_gint32) -void qmi_utils_write_gint32_to_buffer (guint8 **buffer, - guint16 *buffer_size, - QmiEndian endian, - gint32 *in); - -/** - * qmi_utils_write_guint64_to_buffer: - * @buffer: a buffer. - * @buffer_size: size of @buffer. - * @endian: endianness of firmware value; swapped from host byte order if necessary - * @in: location of the variable to be written. - * - * Writes an unsigned 64-bit integer into the buffer. The number to be written - * is expected to be given in host endianness, and this method takes care of - * converting the value written to the byte order specified by @endian. - * - * The user needs to make sure that the buffer is at least 8 bytes long. - * - * Also note that both @buffer and @buffer_size get updated after the 8 bytes - * write. - * - * Since: 1.0 - * Deprecated: 1.12: Use qmi_message_tlv_write_guint64() instead. - */ -G_DEPRECATED_FOR (qmi_message_tlv_write_guint64) -void qmi_utils_write_guint64_to_buffer (guint8 **buffer, - guint16 *buffer_size, - QmiEndian endian, - guint64 *in); - -/** - * qmi_utils_write_gint64_to_buffer: - * @buffer: a buffer. - * @buffer_size: size of @buffer. - * @endian: endianness of firmware value; swapped from host byte order if necessary - * @in: location of the variable to be written. - * - * Writes a signed 64-bit integer into the buffer. The number to be written - * is expected to be given in host endianness, and this method takes care of - * converting the value written to the byte order specified by @endian. - * - * The user needs to make sure that the buffer is at least 8 bytes long. - * - * Also note that both @buffer and @buffer_size get updated after the 8 bytes - * write. - * - * Since: 1.0 - * Deprecated: 1.12: Use qmi_message_tlv_write_gint64() instead. - */ -G_DEPRECATED_FOR (qmi_message_tlv_write_gint64) -void qmi_utils_write_gint64_to_buffer (guint8 **buffer, - guint16 *buffer_size, - QmiEndian endian, - gint64 *in); - -/** - * qmi_utils_write_sized_guint_to_buffer: - * @buffer: a buffer. - * @buffer_size: size of @buffer. - * @n_bytes: number of bytes to write. - * @endian: endianness of firmware value; swapped from host byte order if necessary - * @in: location of the variable to be written. - * - * Writes a @n_bytes-sized unsigned integer into the buffer. The number to be - * written is expected to be given in host endianness, and this method takes - * care of converting the value written to the byte order specified by @endian. - * - * The user needs to make sure that the buffer is at least @n_bytes bytes long. - * - * Also note that both @buffer and @buffer_size get updated after the @n_bytes - * bytes write. - * - * Since: 1.0 - * Deprecated: 1.12: Use qmi_message_tlv_write_sized_guint() instead. - */ -G_DEPRECATED_FOR (qmi_message_tlv_write_sized_guint) -void qmi_utils_write_sized_guint_to_buffer (guint8 **buffer, - guint16 *buffer_size, - guint n_bytes, - QmiEndian endian, - guint64 *in); - -/* Reading/Writing string variables */ - -/** - * qmi_utils_read_string_from_buffer: - * @buffer: a buffer with raw binary data. - * @buffer_size: size of @buffer. - * @length_prefix_size: size of the length prefix integer in bits. - * @max_size: maximum number of bytes to read, or 0 to read all available bytes. - * @out: return location for the read string. The returned value should be freed with g_free(). - * - * Reads a string from the buffer. - * - * If @length_prefix_size is greater than 0, only the amount of bytes given - * there will be read. Otherwise, up to @buffer_size bytes will be read. - * - * Also note that both @buffer and @buffer_size get updated after the write. - * - * Since: 1.0 - * Deprecated: 1.12: Use qmi_message_tlv_read_string() instead. - */ -G_DEPRECATED_FOR (qmi_message_tlv_read_string) -void qmi_utils_read_string_from_buffer (const guint8 **buffer, - guint16 *buffer_size, - guint8 length_prefix_size, - guint16 max_size, - gchar **out); - -/** - * qmi_utils_write_string_to_buffer: - * @buffer: a buffer. - * @buffer_size: size of @buffer. - * @length_prefix_size: size of the length prefix integer in bits. - * @in: string to write. - * - * Writes a string to the buffer. - * - * If @length_prefix_size is greater than 0, a length prefix integer will be - * included in the write operation. - * - * The user needs to make sure that the buffer has enough space for both the - * whole string and the length prefix. - * - * Also note that both @buffer and @buffer_size get updated after the write. - * - * Since: 1.0 - * Deprecated: 1.12: Use qmi_message_tlv_write_string() instead. - */ -G_DEPRECATED_FOR (qmi_message_tlv_write_string) -void qmi_utils_write_string_to_buffer (guint8 **buffer, - guint16 *buffer_size, - guint8 length_prefix_size, - const gchar *in); - -/** - * qmi_utils_read_fixed_size_string_from_buffer: - * @buffer: a buffer with raw binary data. - * @buffer_size: size of @buffer. - * @fixed_size: number of bytes to read. - * @out: buffer preallocated by the client, with at least @fixed_size bytes. - * - * Reads a @fixed_size-sized string from the buffer into the @out buffer. - * - * Also note that both @buffer and @buffer_size get updated after the - * @fixed_size bytes read. - * - * Since: 1.0 - * Deprecated: 1.12: Use qmi_message_tlv_read_fixed_size_string() instead. - */ -G_DEPRECATED_FOR (qmi_message_tlv_read_fixed_size_string) -void qmi_utils_read_fixed_size_string_from_buffer (const guint8 **buffer, - guint16 *buffer_size, - guint16 fixed_size, - gchar *out); - -/** - * qmi_utils_write_fixed_size_string_to_buffer: - * @buffer: a buffer. - * @buffer_size: size of @buffer. - * @fixed_size: number of bytes to write. - * @in: string to write. - * - * Writes a @fixed_size-sized string to the buffer, without any length prefix. - * - * The user needs to make sure that the buffer is at least @fixed_size bytes - * long. - * - * Also note that both @buffer and @buffer_size get updated after the - * @fixed_size bytes write. - * - * Since: 1.0 - * Deprecated: 1.12: Use qmi_message_tlv_write_string() instead. - */ -G_DEPRECATED_FOR (qmi_message_tlv_write_string) -void qmi_utils_write_fixed_size_string_to_buffer (guint8 **buffer, - guint16 *buffer_size, - guint16 fixed_size, - const gchar *in); - /* Enabling/Disabling traces */ + /** * qmi_utils_get_traces_enabled: * @@ -651,7 +86,59 @@ GError **error); G_GNUC_INTERNAL gchar *__qmi_utils_get_driver (const gchar *cdc_wdm_path); -#endif + +static inline gfloat +__QMI_GFLOAT_SWAP_LE_BE(gfloat in) +{ + union + { + guint32 i; + gfloat f; + } u; + + u.f = in; + u.i = GUINT32_SWAP_LE_BE (u.i); + return u.f; +} + +static inline gdouble +__QMI_GDOUBLE_SWAP_LE_BE(gdouble in) +{ + union + { + guint64 i; + gdouble d; + } u; + + u.d = in; + u.i = GUINT64_SWAP_LE_BE (u.i); + return u.d; +} + +#if G_BYTE_ORDER == G_LITTLE_ENDIAN +#define __QMI_ENDIAN_HOST QMI_ENDIAN_LITTLE +#define __QMI_GFLOAT_TO_LE(val) ((gfloat) (val)) +#define __QMI_GFLOAT_TO_BE(val) (__QMI_GFLOAT_SWAP_LE_BE (val)) +#define __QMI_GDOUBLE_TO_LE(val) ((gdouble) (val)) +#define __QMI_GDOUBLE_TO_BE(val) (__QMI_GDOUBLE_SWAP_LE_BE (val)) + +#elif G_BYTE_ORDER == G_BIG_ENDIAN +#define __QMI_ENDIAN_HOST QMI_ENDIAN_BIG +#define __QMI_GFLOAT_TO_LE(val) (__QMI_GFLOAT_SWAP_LE_BE (val)) +#define __QMI_GFLOAT_TO_BE(val) ((gfloat) (val)) +#define __QMI_GDOUBLE_TO_LE(val) (__QMI_GDOUBLE_SWAP_LE_BE (val)) +#define __QMI_GDOUBLE_TO_BE(val) ((gdouble) (val)) + +#else /* !G_LITTLE_ENDIAN && !G_BIG_ENDIAN */ +#error unknown ENDIAN type +#endif /* !G_LITTLE_ENDIAN && !G_BIG_ENDIAN */ + +#define __QMI_GFLOAT_FROM_LE(val) (__QMI_GFLOAT_TO_LE (val)) +#define __QMI_GFLOAT_FROM_BE(val) (__QMI_GFLOAT_TO_BE (val)) +#define __QMI_GDOUBLE_FROM_LE(val) (__QMI_GDOUBLE_TO_LE (val)) +#define __QMI_GDOUBLE_FROM_BE(val) (__QMI_GDOUBLE_TO_BE (val)) + +#endif /* defined (LIBQMI_GLIB_COMPILATION) */ G_END_DECLS diff -Nru libqmi-1.18.0/src/libqmi-glib/qmi-version.h libqmi-1.22.0/src/libqmi-glib/qmi-version.h --- libqmi-1.18.0/src/libqmi-glib/qmi-version.h 2017-03-22 12:20:32.000000000 +0100 +++ libqmi-1.22.0/src/libqmi-glib/qmi-version.h 2019-01-08 15:17:21.000000000 +0100 @@ -47,7 +47,7 @@ * * Since: 1.6 */ -#define QMI_MINOR_VERSION (18) +#define QMI_MINOR_VERSION (22) /** * QMI_MICRO_VERSION: diff -Nru libqmi-1.18.0/src/libqmi-glib/test/Makefile.in libqmi-1.22.0/src/libqmi-glib/test/Makefile.in --- libqmi-1.18.0/src/libqmi-glib/test/Makefile.in 2017-03-22 12:20:26.000000000 +0100 +++ libqmi-1.22.0/src/libqmi-glib/test/Makefile.in 2019-01-08 15:17:16.000000000 +0100 @@ -1,7 +1,7 @@ -# Makefile.in generated by automake 1.15 from Makefile.am. +# Makefile.in generated by automake 1.16.1 from Makefile.am. # @configure_input@ -# Copyright (C) 1994-2014 Free Software Foundation, Inc. +# Copyright (C) 1994-2018 Free Software Foundation, Inc. # This Makefile.in is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, @@ -141,7 +141,12 @@ am__v_at_1 = DEFAULT_INCLUDES = -I.@am__isrc@ -I$(top_builddir) depcomp = $(SHELL) $(top_srcdir)/depcomp -am__depfiles_maybe = depfiles +am__maybe_remake_depfiles = depfiles +am__depfiles_remade = ./$(DEPDIR)/test_generated-test-fixture.Po \ + ./$(DEPDIR)/test_generated-test-generated.Po \ + ./$(DEPDIR)/test_generated-test-port-context.Po \ + ./$(DEPDIR)/test_message-test-message.Po \ + ./$(DEPDIR)/test_utils-test-utils.Po am__mv = mv -f COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \ $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) @@ -268,6 +273,11 @@ PKG_CONFIG = @PKG_CONFIG@ PKG_CONFIG_LIBDIR = @PKG_CONFIG_LIBDIR@ PKG_CONFIG_PATH = @PKG_CONFIG_PATH@ +PYTHON = @PYTHON@ +PYTHON_EXEC_PREFIX = @PYTHON_EXEC_PREFIX@ +PYTHON_PLATFORM = @PYTHON_PLATFORM@ +PYTHON_PREFIX = @PYTHON_PREFIX@ +PYTHON_VERSION = @PYTHON_VERSION@ QMI_GLIB_LT_AGE = @QMI_GLIB_LT_AGE@ QMI_GLIB_LT_CURRENT = @QMI_GLIB_LT_CURRENT@ QMI_GLIB_LT_REVISION = @QMI_GLIB_LT_REVISION@ @@ -325,9 +335,13 @@ mkdir_p = @mkdir_p@ oldincludedir = @oldincludedir@ pdfdir = @pdfdir@ +pkgpyexecdir = @pkgpyexecdir@ +pkgpythondir = @pkgpythondir@ prefix = @prefix@ program_transform_name = @program_transform_name@ psdir = @psdir@ +pyexecdir = @pyexecdir@ +pythondir = @pythondir@ sbindir = @sbindir@ sharedstatedir = @sharedstatedir@ srcdir = @srcdir@ @@ -413,8 +427,8 @@ *config.status*) \ cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ *) \ - echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ - cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ + echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles)'; \ + cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles);; \ esac; $(top_srcdir)/gtester.make $(am__empty): @@ -454,11 +468,17 @@ distclean-compile: -rm -f *.tab.c -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/test_generated-test-fixture.Po@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/test_generated-test-generated.Po@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/test_generated-test-port-context.Po@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/test_message-test-message.Po@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/test_utils-test-utils.Po@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/test_generated-test-fixture.Po@am__quote@ # am--include-marker +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/test_generated-test-generated.Po@am__quote@ # am--include-marker +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/test_generated-test-port-context.Po@am__quote@ # am--include-marker +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/test_message-test-message.Po@am__quote@ # am--include-marker +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/test_utils-test-utils.Po@am__quote@ # am--include-marker + +$(am__depfiles_remade): + @$(MKDIR_P) $(@D) + @echo '# dummy' >$@-t && $(am__mv) $@-t $@ + +am--depfiles: $(am__depfiles_remade) .c.o: @am__fastdepCC_TRUE@ $(AM_V_CC)$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< @@ -609,7 +629,10 @@ distclean-tags: -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags -distdir: $(DISTFILES) +distdir: $(BUILT_SOURCES) + $(MAKE) $(AM_MAKEFLAGS) distdir-am + +distdir-am: $(DISTFILES) @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ list='$(DISTFILES)'; \ @@ -680,7 +703,11 @@ mostlyclean-am distclean: distclean-am - -rm -rf ./$(DEPDIR) + -rm -f ./$(DEPDIR)/test_generated-test-fixture.Po + -rm -f ./$(DEPDIR)/test_generated-test-generated.Po + -rm -f ./$(DEPDIR)/test_generated-test-port-context.Po + -rm -f ./$(DEPDIR)/test_message-test-message.Po + -rm -f ./$(DEPDIR)/test_utils-test-utils.Po -rm -f Makefile distclean-am: clean-am distclean-compile distclean-generic \ distclean-tags @@ -726,7 +753,11 @@ installcheck-am: maintainer-clean: maintainer-clean-am - -rm -rf ./$(DEPDIR) + -rm -f ./$(DEPDIR)/test_generated-test-fixture.Po + -rm -f ./$(DEPDIR)/test_generated-test-generated.Po + -rm -f ./$(DEPDIR)/test_generated-test-port-context.Po + -rm -f ./$(DEPDIR)/test_message-test-message.Po + -rm -f ./$(DEPDIR)/test_utils-test-utils.Po -rm -f Makefile maintainer-clean-am: distclean-am maintainer-clean-generic @@ -747,19 +778,19 @@ .MAKE: check-am install-am install-strip -.PHONY: CTAGS GTAGS TAGS all all-am check check-am check-local clean \ - clean-generic clean-libtool clean-noinstPROGRAMS cscopelist-am \ - ctags ctags-am distclean distclean-compile distclean-generic \ - distclean-libtool distclean-tags distdir dvi dvi-am html \ - html-am info info-am install install-am install-data \ - install-data-am install-dvi install-dvi-am install-exec \ - install-exec-am install-html install-html-am install-info \ - install-info-am install-man install-pdf install-pdf-am \ - install-ps install-ps-am install-strip installcheck \ - installcheck-am installdirs maintainer-clean \ - maintainer-clean-generic mostlyclean mostlyclean-compile \ - mostlyclean-generic mostlyclean-libtool pdf pdf-am ps ps-am \ - tags tags-am uninstall uninstall-am +.PHONY: CTAGS GTAGS TAGS all all-am am--depfiles check check-am \ + check-local clean clean-generic clean-libtool \ + clean-noinstPROGRAMS cscopelist-am ctags ctags-am distclean \ + distclean-compile distclean-generic distclean-libtool \ + distclean-tags distdir dvi dvi-am html html-am info info-am \ + install install-am install-data install-data-am install-dvi \ + install-dvi-am install-exec install-exec-am install-html \ + install-html-am install-info install-info-am install-man \ + install-pdf install-pdf-am install-ps install-ps-am \ + install-strip installcheck installcheck-am installdirs \ + maintainer-clean maintainer-clean-generic mostlyclean \ + mostlyclean-compile mostlyclean-generic mostlyclean-libtool \ + pdf pdf-am ps ps-am tags tags-am uninstall uninstall-am .PRECIOUS: Makefile diff -Nru libqmi-1.18.0/src/libqmi-glib/test/test-message.c libqmi-1.22.0/src/libqmi-glib/test/test-message.c --- libqmi-1.18.0/src/libqmi-glib/test/test-message.c 2017-03-21 14:26:54.000000000 +0100 +++ libqmi-1.22.0/src/libqmi-glib/test/test-message.c 2019-01-08 14:09:47.000000000 +0100 @@ -103,7 +103,7 @@ break; } - printable = qmi_message_get_printable (message, ""); + printable = qmi_message_get_printable_full (message, NULL, ""); #ifdef TEST_PRINT_MESSAGE g_print ("\n%s\n", printable); #endif @@ -189,7 +189,7 @@ g_assert_no_error (error); g_assert (message); - printable = qmi_message_get_printable (message, ""); + printable = qmi_message_get_printable_full (message, NULL, ""); g_print ("\n%s\n", printable); g_assert (strstr (printable, "ERROR: Reading TLV would overflow")); g_free (printable); @@ -278,7 +278,7 @@ static const guint8 expected_buffer [] = { 0x01, /* marker */ 0x13, 0x00, /* qmux length */ - 0x00, /* qmux flags */ + 0x80, /* qmux flags */ 0x02, /* service: DMS */ 0x01, /* client id */ 0x02, /* service flags */ @@ -320,7 +320,7 @@ static const guint8 expected_buffer [] = { 0x01, /* marker */ 0x13, 0x00, /* qmux length */ - 0x00, /* qmux flags */ + 0x80, /* qmux flags */ 0x02, /* service: DMS */ 0x01, /* client id */ 0x02, /* service flags */ @@ -373,8 +373,8 @@ g_assert (init_offset > 0); ret = qmi_message_tlv_write_complete (self, init_offset, &error); - g_assert_error (error, QMI_CORE_ERROR, QMI_CORE_ERROR_TLV_EMPTY); - g_assert (!ret); + g_assert_no_error (error); + g_assert (ret); qmi_message_unref (self); } diff -Nru libqmi-1.18.0/src/libqmi-glib/test/test-utils.c libqmi-1.22.0/src/libqmi-glib/test/test-utils.c --- libqmi-1.18.0/src/libqmi-glib/test/test-utils.c 2017-03-21 14:26:54.000000000 +0100 +++ libqmi-1.22.0/src/libqmi-glib/test/test-utils.c 2019-01-08 14:09:47.000000000 +0100 @@ -16,6 +16,9 @@ #include #include #include "qmi-utils.h" +#include "qmi-compat.h" + +#ifndef QMI_DISABLE_DEPRECATED static void test_utils_uint8 (void) @@ -1262,3 +1265,5 @@ return g_test_run (); } + +#endif /* QMI_DISABLE_DEPRECATED */ diff -Nru libqmi-1.18.0/src/Makefile.in libqmi-1.22.0/src/Makefile.in --- libqmi-1.18.0/src/Makefile.in 2017-03-22 12:20:26.000000000 +0100 +++ libqmi-1.22.0/src/Makefile.in 2019-01-08 15:17:16.000000000 +0100 @@ -1,7 +1,7 @@ -# Makefile.in generated by automake 1.15 from Makefile.am. +# Makefile.in generated by automake 1.16.1 from Makefile.am. # @configure_input@ -# Copyright (C) 1994-2014 Free Software Foundation, Inc. +# Copyright (C) 1994-2018 Free Software Foundation, Inc. # This Makefile.in is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, @@ -136,7 +136,7 @@ $(RECURSIVE_CLEAN_TARGETS) \ $(am__extra_recursive_targets) AM_RECURSIVE_TARGETS = $(am__recursive_targets:-recursive=) TAGS CTAGS \ - distdir + distdir distdir-am am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP) # Read a list of newline-separated strings from the standard input, # and print each of them once, without duplicates. Input order is @@ -260,6 +260,11 @@ PKG_CONFIG = @PKG_CONFIG@ PKG_CONFIG_LIBDIR = @PKG_CONFIG_LIBDIR@ PKG_CONFIG_PATH = @PKG_CONFIG_PATH@ +PYTHON = @PYTHON@ +PYTHON_EXEC_PREFIX = @PYTHON_EXEC_PREFIX@ +PYTHON_PLATFORM = @PYTHON_PLATFORM@ +PYTHON_PREFIX = @PYTHON_PREFIX@ +PYTHON_VERSION = @PYTHON_VERSION@ QMI_GLIB_LT_AGE = @QMI_GLIB_LT_AGE@ QMI_GLIB_LT_CURRENT = @QMI_GLIB_LT_CURRENT@ QMI_GLIB_LT_REVISION = @QMI_GLIB_LT_REVISION@ @@ -317,9 +322,13 @@ mkdir_p = @mkdir_p@ oldincludedir = @oldincludedir@ pdfdir = @pdfdir@ +pkgpyexecdir = @pkgpyexecdir@ +pkgpythondir = @pkgpythondir@ prefix = @prefix@ program_transform_name = @program_transform_name@ psdir = @psdir@ +pyexecdir = @pyexecdir@ +pythondir = @pythondir@ sbindir = @sbindir@ sharedstatedir = @sharedstatedir@ srcdir = @srcdir@ @@ -349,8 +358,8 @@ *config.status*) \ cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ *) \ - echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ - cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ + echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles)'; \ + cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles);; \ esac; $(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) @@ -467,7 +476,10 @@ distclean-tags: -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags -distdir: $(DISTFILES) +distdir: $(BUILT_SOURCES) + $(MAKE) $(AM_MAKEFLAGS) distdir-am + +distdir-am: $(DISTFILES) @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ list='$(DISTFILES)'; \ diff -Nru libqmi-1.18.0/src/qmicli/Makefile.am libqmi-1.22.0/src/qmicli/Makefile.am --- libqmi-1.18.0/src/qmicli/Makefile.am 2017-03-21 14:26:54.000000000 +0100 +++ libqmi-1.22.0/src/qmicli/Makefile.am 2019-01-08 14:09:47.000000000 +0100 @@ -1,6 +1,26 @@ SUBDIRS = . test +noinst_LTLIBRARIES = libhelpers.la + +libhelpers_la_CPPFLAGS = \ + $(GLIB_CFLAGS) \ + $(MBIM_CFLAGS) \ + -I$(top_srcdir) \ + -I$(top_srcdir)/src/libqmi-glib \ + -I$(top_srcdir)/src/libqmi-glib/generated \ + -I$(top_builddir)/src/libqmi-glib \ + -I$(top_builddir)/src/libqmi-glib/generated \ + $(NULL) + +libhelpers_la_SOURCES = \ + qmicli-helpers.c \ + qmicli-helpers.h \ + $(NULL) + +libhelpers_la_LIBADD = \ + $(GLIB_LIBS) + bin_PROGRAMS = qmicli qmicli_CPPFLAGS = \ @@ -15,8 +35,6 @@ qmicli_SOURCES = \ qmicli.c \ qmicli.h \ - qmicli-helpers.c \ - qmicli-helpers.h \ qmicli-dms.c \ qmicli-wds.c \ qmicli-nas.c \ @@ -26,15 +44,17 @@ qmicli-wms.c \ qmicli-wda.c \ qmicli-voice.c \ + qmicli-loc.c \ + qmicli-qos.c \ qmicli-charsets.c \ qmicli-charsets.h qmicli_LDADD = \ $(MBIM_LIBS) \ $(GLIB_LIBS) \ + libhelpers.la \ $(top_builddir)/src/libqmi-glib/libqmi-glib.la - completiondir = $(datadir)/bash-completion/completions install-data-hook: diff -Nru libqmi-1.18.0/src/qmicli/Makefile.in libqmi-1.22.0/src/qmicli/Makefile.in --- libqmi-1.18.0/src/qmicli/Makefile.in 2017-03-22 12:20:26.000000000 +0100 +++ libqmi-1.22.0/src/qmicli/Makefile.in 2019-01-08 15:17:16.000000000 +0100 @@ -1,7 +1,7 @@ -# Makefile.in generated by automake 1.15 from Makefile.am. +# Makefile.in generated by automake 1.16.1 from Makefile.am. # @configure_input@ -# Copyright (C) 1994-2014 Free Software Foundation, Inc. +# Copyright (C) 1994-2018 Free Software Foundation, Inc. # This Makefile.in is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, @@ -14,6 +14,7 @@ @SET_MAKE@ + VPATH = @srcdir@ am__is_gnu_make = { \ if test -z '$(MAKELEVEL)'; then \ @@ -105,21 +106,25 @@ CONFIG_CLEAN_VPATH_FILES = am__installdirs = "$(DESTDIR)$(bindir)" PROGRAMS = $(bin_PROGRAMS) -am_qmicli_OBJECTS = qmicli-qmicli.$(OBJEXT) \ - qmicli-qmicli-helpers.$(OBJEXT) qmicli-qmicli-dms.$(OBJEXT) \ - qmicli-qmicli-wds.$(OBJEXT) qmicli-qmicli-nas.$(OBJEXT) \ - qmicli-qmicli-pbm.$(OBJEXT) qmicli-qmicli-pdc.$(OBJEXT) \ - qmicli-qmicli-uim.$(OBJEXT) qmicli-qmicli-wms.$(OBJEXT) \ - qmicli-qmicli-wda.$(OBJEXT) qmicli-qmicli-voice.$(OBJEXT) \ - qmicli-qmicli-charsets.$(OBJEXT) -qmicli_OBJECTS = $(am_qmicli_OBJECTS) +LTLIBRARIES = $(noinst_LTLIBRARIES) am__DEPENDENCIES_1 = -qmicli_DEPENDENCIES = $(am__DEPENDENCIES_1) $(am__DEPENDENCIES_1) \ - $(top_builddir)/src/libqmi-glib/libqmi-glib.la +libhelpers_la_DEPENDENCIES = $(am__DEPENDENCIES_1) +am_libhelpers_la_OBJECTS = libhelpers_la-qmicli-helpers.lo +libhelpers_la_OBJECTS = $(am_libhelpers_la_OBJECTS) AM_V_lt = $(am__v_lt_@AM_V@) am__v_lt_ = $(am__v_lt_@AM_DEFAULT_V@) am__v_lt_0 = --silent am__v_lt_1 = +am_qmicli_OBJECTS = qmicli-qmicli.$(OBJEXT) \ + qmicli-qmicli-dms.$(OBJEXT) qmicli-qmicli-wds.$(OBJEXT) \ + qmicli-qmicli-nas.$(OBJEXT) qmicli-qmicli-pbm.$(OBJEXT) \ + qmicli-qmicli-pdc.$(OBJEXT) qmicli-qmicli-uim.$(OBJEXT) \ + qmicli-qmicli-wms.$(OBJEXT) qmicli-qmicli-wda.$(OBJEXT) \ + qmicli-qmicli-voice.$(OBJEXT) qmicli-qmicli-loc.$(OBJEXT) \ + qmicli-qmicli-qos.$(OBJEXT) qmicli-qmicli-charsets.$(OBJEXT) +qmicli_OBJECTS = $(am_qmicli_OBJECTS) +qmicli_DEPENDENCIES = $(am__DEPENDENCIES_1) $(am__DEPENDENCIES_1) \ + libhelpers.la $(top_builddir)/src/libqmi-glib/libqmi-glib.la AM_V_P = $(am__v_P_@AM_V@) am__v_P_ = $(am__v_P_@AM_DEFAULT_V@) am__v_P_0 = false @@ -134,7 +139,20 @@ am__v_at_1 = DEFAULT_INCLUDES = -I.@am__isrc@ -I$(top_builddir) depcomp = $(SHELL) $(top_srcdir)/depcomp -am__depfiles_maybe = depfiles +am__maybe_remake_depfiles = depfiles +am__depfiles_remade = ./$(DEPDIR)/libhelpers_la-qmicli-helpers.Plo \ + ./$(DEPDIR)/qmicli-qmicli-charsets.Po \ + ./$(DEPDIR)/qmicli-qmicli-dms.Po \ + ./$(DEPDIR)/qmicli-qmicli-loc.Po \ + ./$(DEPDIR)/qmicli-qmicli-nas.Po \ + ./$(DEPDIR)/qmicli-qmicli-pbm.Po \ + ./$(DEPDIR)/qmicli-qmicli-pdc.Po \ + ./$(DEPDIR)/qmicli-qmicli-qos.Po \ + ./$(DEPDIR)/qmicli-qmicli-uim.Po \ + ./$(DEPDIR)/qmicli-qmicli-voice.Po \ + ./$(DEPDIR)/qmicli-qmicli-wda.Po \ + ./$(DEPDIR)/qmicli-qmicli-wds.Po \ + ./$(DEPDIR)/qmicli-qmicli-wms.Po ./$(DEPDIR)/qmicli-qmicli.Po am__mv = mv -f COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \ $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) @@ -154,8 +172,8 @@ am__v_CCLD_ = $(am__v_CCLD_@AM_DEFAULT_V@) am__v_CCLD_0 = @echo " CCLD " $@; am__v_CCLD_1 = -SOURCES = $(qmicli_SOURCES) -DIST_SOURCES = $(qmicli_SOURCES) +SOURCES = $(libhelpers_la_SOURCES) $(qmicli_SOURCES) +DIST_SOURCES = $(libhelpers_la_SOURCES) $(qmicli_SOURCES) RECURSIVE_TARGETS = all-recursive check-recursive cscopelist-recursive \ ctags-recursive dvi-recursive html-recursive info-recursive \ install-data-recursive install-dvi-recursive \ @@ -176,7 +194,7 @@ $(RECURSIVE_CLEAN_TARGETS) \ $(am__extra_recursive_targets) AM_RECURSIVE_TARGETS = $(am__recursive_targets:-recursive=) TAGS CTAGS \ - distdir + distdir distdir-am am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP) # Read a list of newline-separated strings from the standard input, # and print each of them once, without duplicates. Input order is @@ -300,6 +318,11 @@ PKG_CONFIG = @PKG_CONFIG@ PKG_CONFIG_LIBDIR = @PKG_CONFIG_LIBDIR@ PKG_CONFIG_PATH = @PKG_CONFIG_PATH@ +PYTHON = @PYTHON@ +PYTHON_EXEC_PREFIX = @PYTHON_EXEC_PREFIX@ +PYTHON_PLATFORM = @PYTHON_PLATFORM@ +PYTHON_PREFIX = @PYTHON_PREFIX@ +PYTHON_VERSION = @PYTHON_VERSION@ QMI_GLIB_LT_AGE = @QMI_GLIB_LT_AGE@ QMI_GLIB_LT_CURRENT = @QMI_GLIB_LT_CURRENT@ QMI_GLIB_LT_REVISION = @QMI_GLIB_LT_REVISION@ @@ -357,9 +380,13 @@ mkdir_p = @mkdir_p@ oldincludedir = @oldincludedir@ pdfdir = @pdfdir@ +pkgpyexecdir = @pkgpyexecdir@ +pkgpythondir = @pkgpythondir@ prefix = @prefix@ program_transform_name = @program_transform_name@ psdir = @psdir@ +pyexecdir = @pyexecdir@ +pythondir = @pythondir@ sbindir = @sbindir@ sharedstatedir = @sharedstatedir@ srcdir = @srcdir@ @@ -369,6 +396,25 @@ top_builddir = @top_builddir@ top_srcdir = @top_srcdir@ SUBDIRS = . test +noinst_LTLIBRARIES = libhelpers.la +libhelpers_la_CPPFLAGS = \ + $(GLIB_CFLAGS) \ + $(MBIM_CFLAGS) \ + -I$(top_srcdir) \ + -I$(top_srcdir)/src/libqmi-glib \ + -I$(top_srcdir)/src/libqmi-glib/generated \ + -I$(top_builddir)/src/libqmi-glib \ + -I$(top_builddir)/src/libqmi-glib/generated \ + $(NULL) + +libhelpers_la_SOURCES = \ + qmicli-helpers.c \ + qmicli-helpers.h \ + $(NULL) + +libhelpers_la_LIBADD = \ + $(GLIB_LIBS) + qmicli_CPPFLAGS = \ $(GLIB_CFLAGS) \ $(MBIM_CFLAGS) \ @@ -381,8 +427,6 @@ qmicli_SOURCES = \ qmicli.c \ qmicli.h \ - qmicli-helpers.c \ - qmicli-helpers.h \ qmicli-dms.c \ qmicli-wds.c \ qmicli-nas.c \ @@ -392,12 +436,15 @@ qmicli-wms.c \ qmicli-wda.c \ qmicli-voice.c \ + qmicli-loc.c \ + qmicli-qos.c \ qmicli-charsets.c \ qmicli-charsets.h qmicli_LDADD = \ $(MBIM_LIBS) \ $(GLIB_LIBS) \ + libhelpers.la \ $(top_builddir)/src/libqmi-glib/libqmi-glib.la completiondir = $(datadir)/bash-completion/completions @@ -423,8 +470,8 @@ *config.status*) \ cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ *) \ - echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ - cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ + echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles)'; \ + cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles);; \ esac; $(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) @@ -485,6 +532,20 @@ echo " rm -f" $$list; \ rm -f $$list +clean-noinstLTLIBRARIES: + -test -z "$(noinst_LTLIBRARIES)" || rm -f $(noinst_LTLIBRARIES) + @list='$(noinst_LTLIBRARIES)'; \ + locs=`for p in $$list; do echo $$p; done | \ + sed 's|^[^/]*$$|.|; s|/[^/]*$$||; s|$$|/so_locations|' | \ + sort -u`; \ + test -z "$$locs" || { \ + echo rm -f $${locs}; \ + rm -f $${locs}; \ + } + +libhelpers.la: $(libhelpers_la_OBJECTS) $(libhelpers_la_DEPENDENCIES) $(EXTRA_libhelpers_la_DEPENDENCIES) + $(AM_V_CCLD)$(LINK) $(libhelpers_la_OBJECTS) $(libhelpers_la_LIBADD) $(LIBS) + qmicli$(EXEEXT): $(qmicli_OBJECTS) $(qmicli_DEPENDENCIES) $(EXTRA_qmicli_DEPENDENCIES) @rm -f qmicli$(EXEEXT) $(AM_V_CCLD)$(LINK) $(qmicli_OBJECTS) $(qmicli_LDADD) $(LIBS) @@ -495,18 +556,26 @@ distclean-compile: -rm -f *.tab.c -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/qmicli-qmicli-charsets.Po@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/qmicli-qmicli-dms.Po@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/qmicli-qmicli-helpers.Po@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/qmicli-qmicli-nas.Po@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/qmicli-qmicli-pbm.Po@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/qmicli-qmicli-pdc.Po@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/qmicli-qmicli-uim.Po@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/qmicli-qmicli-voice.Po@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/qmicli-qmicli-wda.Po@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/qmicli-qmicli-wds.Po@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/qmicli-qmicli-wms.Po@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/qmicli-qmicli.Po@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libhelpers_la-qmicli-helpers.Plo@am__quote@ # am--include-marker +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/qmicli-qmicli-charsets.Po@am__quote@ # am--include-marker +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/qmicli-qmicli-dms.Po@am__quote@ # am--include-marker +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/qmicli-qmicli-loc.Po@am__quote@ # am--include-marker +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/qmicli-qmicli-nas.Po@am__quote@ # am--include-marker +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/qmicli-qmicli-pbm.Po@am__quote@ # am--include-marker +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/qmicli-qmicli-pdc.Po@am__quote@ # am--include-marker +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/qmicli-qmicli-qos.Po@am__quote@ # am--include-marker +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/qmicli-qmicli-uim.Po@am__quote@ # am--include-marker +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/qmicli-qmicli-voice.Po@am__quote@ # am--include-marker +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/qmicli-qmicli-wda.Po@am__quote@ # am--include-marker +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/qmicli-qmicli-wds.Po@am__quote@ # am--include-marker +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/qmicli-qmicli-wms.Po@am__quote@ # am--include-marker +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/qmicli-qmicli.Po@am__quote@ # am--include-marker + +$(am__depfiles_remade): + @$(MKDIR_P) $(@D) + @echo '# dummy' >$@-t && $(am__mv) $@-t $@ + +am--depfiles: $(am__depfiles_remade) .c.o: @am__fastdepCC_TRUE@ $(AM_V_CC)$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< @@ -529,6 +598,13 @@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LTCOMPILE) -c -o $@ $< +libhelpers_la-qmicli-helpers.lo: qmicli-helpers.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhelpers_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libhelpers_la-qmicli-helpers.lo -MD -MP -MF $(DEPDIR)/libhelpers_la-qmicli-helpers.Tpo -c -o libhelpers_la-qmicli-helpers.lo `test -f 'qmicli-helpers.c' || echo '$(srcdir)/'`qmicli-helpers.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libhelpers_la-qmicli-helpers.Tpo $(DEPDIR)/libhelpers_la-qmicli-helpers.Plo +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='qmicli-helpers.c' object='libhelpers_la-qmicli-helpers.lo' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhelpers_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libhelpers_la-qmicli-helpers.lo `test -f 'qmicli-helpers.c' || echo '$(srcdir)/'`qmicli-helpers.c + qmicli-qmicli.o: qmicli.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(qmicli_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT qmicli-qmicli.o -MD -MP -MF $(DEPDIR)/qmicli-qmicli.Tpo -c -o qmicli-qmicli.o `test -f 'qmicli.c' || echo '$(srcdir)/'`qmicli.c @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/qmicli-qmicli.Tpo $(DEPDIR)/qmicli-qmicli.Po @@ -543,20 +619,6 @@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(qmicli_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o qmicli-qmicli.obj `if test -f 'qmicli.c'; then $(CYGPATH_W) 'qmicli.c'; else $(CYGPATH_W) '$(srcdir)/qmicli.c'; fi` -qmicli-qmicli-helpers.o: qmicli-helpers.c -@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(qmicli_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT qmicli-qmicli-helpers.o -MD -MP -MF $(DEPDIR)/qmicli-qmicli-helpers.Tpo -c -o qmicli-qmicli-helpers.o `test -f 'qmicli-helpers.c' || echo '$(srcdir)/'`qmicli-helpers.c -@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/qmicli-qmicli-helpers.Tpo $(DEPDIR)/qmicli-qmicli-helpers.Po -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='qmicli-helpers.c' object='qmicli-qmicli-helpers.o' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(qmicli_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o qmicli-qmicli-helpers.o `test -f 'qmicli-helpers.c' || echo '$(srcdir)/'`qmicli-helpers.c - -qmicli-qmicli-helpers.obj: qmicli-helpers.c -@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(qmicli_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT qmicli-qmicli-helpers.obj -MD -MP -MF $(DEPDIR)/qmicli-qmicli-helpers.Tpo -c -o qmicli-qmicli-helpers.obj `if test -f 'qmicli-helpers.c'; then $(CYGPATH_W) 'qmicli-helpers.c'; else $(CYGPATH_W) '$(srcdir)/qmicli-helpers.c'; fi` -@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/qmicli-qmicli-helpers.Tpo $(DEPDIR)/qmicli-qmicli-helpers.Po -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='qmicli-helpers.c' object='qmicli-qmicli-helpers.obj' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(qmicli_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o qmicli-qmicli-helpers.obj `if test -f 'qmicli-helpers.c'; then $(CYGPATH_W) 'qmicli-helpers.c'; else $(CYGPATH_W) '$(srcdir)/qmicli-helpers.c'; fi` - qmicli-qmicli-dms.o: qmicli-dms.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(qmicli_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT qmicli-qmicli-dms.o -MD -MP -MF $(DEPDIR)/qmicli-qmicli-dms.Tpo -c -o qmicli-qmicli-dms.o `test -f 'qmicli-dms.c' || echo '$(srcdir)/'`qmicli-dms.c @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/qmicli-qmicli-dms.Tpo $(DEPDIR)/qmicli-qmicli-dms.Po @@ -683,6 +745,34 @@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(qmicli_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o qmicli-qmicli-voice.obj `if test -f 'qmicli-voice.c'; then $(CYGPATH_W) 'qmicli-voice.c'; else $(CYGPATH_W) '$(srcdir)/qmicli-voice.c'; fi` +qmicli-qmicli-loc.o: qmicli-loc.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(qmicli_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT qmicli-qmicli-loc.o -MD -MP -MF $(DEPDIR)/qmicli-qmicli-loc.Tpo -c -o qmicli-qmicli-loc.o `test -f 'qmicli-loc.c' || echo '$(srcdir)/'`qmicli-loc.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/qmicli-qmicli-loc.Tpo $(DEPDIR)/qmicli-qmicli-loc.Po +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='qmicli-loc.c' object='qmicli-qmicli-loc.o' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(qmicli_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o qmicli-qmicli-loc.o `test -f 'qmicli-loc.c' || echo '$(srcdir)/'`qmicli-loc.c + +qmicli-qmicli-loc.obj: qmicli-loc.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(qmicli_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT qmicli-qmicli-loc.obj -MD -MP -MF $(DEPDIR)/qmicli-qmicli-loc.Tpo -c -o qmicli-qmicli-loc.obj `if test -f 'qmicli-loc.c'; then $(CYGPATH_W) 'qmicli-loc.c'; else $(CYGPATH_W) '$(srcdir)/qmicli-loc.c'; fi` +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/qmicli-qmicli-loc.Tpo $(DEPDIR)/qmicli-qmicli-loc.Po +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='qmicli-loc.c' object='qmicli-qmicli-loc.obj' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(qmicli_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o qmicli-qmicli-loc.obj `if test -f 'qmicli-loc.c'; then $(CYGPATH_W) 'qmicli-loc.c'; else $(CYGPATH_W) '$(srcdir)/qmicli-loc.c'; fi` + +qmicli-qmicli-qos.o: qmicli-qos.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(qmicli_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT qmicli-qmicli-qos.o -MD -MP -MF $(DEPDIR)/qmicli-qmicli-qos.Tpo -c -o qmicli-qmicli-qos.o `test -f 'qmicli-qos.c' || echo '$(srcdir)/'`qmicli-qos.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/qmicli-qmicli-qos.Tpo $(DEPDIR)/qmicli-qmicli-qos.Po +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='qmicli-qos.c' object='qmicli-qmicli-qos.o' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(qmicli_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o qmicli-qmicli-qos.o `test -f 'qmicli-qos.c' || echo '$(srcdir)/'`qmicli-qos.c + +qmicli-qmicli-qos.obj: qmicli-qos.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(qmicli_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT qmicli-qmicli-qos.obj -MD -MP -MF $(DEPDIR)/qmicli-qmicli-qos.Tpo -c -o qmicli-qmicli-qos.obj `if test -f 'qmicli-qos.c'; then $(CYGPATH_W) 'qmicli-qos.c'; else $(CYGPATH_W) '$(srcdir)/qmicli-qos.c'; fi` +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/qmicli-qmicli-qos.Tpo $(DEPDIR)/qmicli-qmicli-qos.Po +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='qmicli-qos.c' object='qmicli-qmicli-qos.obj' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(qmicli_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o qmicli-qmicli-qos.obj `if test -f 'qmicli-qos.c'; then $(CYGPATH_W) 'qmicli-qos.c'; else $(CYGPATH_W) '$(srcdir)/qmicli-qos.c'; fi` + qmicli-qmicli-charsets.o: qmicli-charsets.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(qmicli_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT qmicli-qmicli-charsets.o -MD -MP -MF $(DEPDIR)/qmicli-qmicli-charsets.Tpo -c -o qmicli-qmicli-charsets.o `test -f 'qmicli-charsets.c' || echo '$(srcdir)/'`qmicli-charsets.c @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/qmicli-qmicli-charsets.Tpo $(DEPDIR)/qmicli-qmicli-charsets.Po @@ -802,7 +892,10 @@ distclean-tags: -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags -distdir: $(DISTFILES) +distdir: $(BUILT_SOURCES) + $(MAKE) $(AM_MAKEFLAGS) distdir-am + +distdir-am: $(DISTFILES) @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ list='$(DISTFILES)'; \ @@ -859,7 +952,7 @@ done check-am: all-am check: check-recursive -all-am: Makefile $(PROGRAMS) +all-am: Makefile $(PROGRAMS) $(LTLIBRARIES) installdirs: installdirs-recursive installdirs-am: for dir in "$(DESTDIR)$(bindir)"; do \ @@ -897,10 +990,24 @@ @echo "it deletes files that may require special tools to rebuild." clean: clean-recursive -clean-am: clean-binPROGRAMS clean-generic clean-libtool mostlyclean-am +clean-am: clean-binPROGRAMS clean-generic clean-libtool \ + clean-noinstLTLIBRARIES mostlyclean-am distclean: distclean-recursive - -rm -rf ./$(DEPDIR) + -rm -f ./$(DEPDIR)/libhelpers_la-qmicli-helpers.Plo + -rm -f ./$(DEPDIR)/qmicli-qmicli-charsets.Po + -rm -f ./$(DEPDIR)/qmicli-qmicli-dms.Po + -rm -f ./$(DEPDIR)/qmicli-qmicli-loc.Po + -rm -f ./$(DEPDIR)/qmicli-qmicli-nas.Po + -rm -f ./$(DEPDIR)/qmicli-qmicli-pbm.Po + -rm -f ./$(DEPDIR)/qmicli-qmicli-pdc.Po + -rm -f ./$(DEPDIR)/qmicli-qmicli-qos.Po + -rm -f ./$(DEPDIR)/qmicli-qmicli-uim.Po + -rm -f ./$(DEPDIR)/qmicli-qmicli-voice.Po + -rm -f ./$(DEPDIR)/qmicli-qmicli-wda.Po + -rm -f ./$(DEPDIR)/qmicli-qmicli-wds.Po + -rm -f ./$(DEPDIR)/qmicli-qmicli-wms.Po + -rm -f ./$(DEPDIR)/qmicli-qmicli.Po -rm -f Makefile distclean-am: clean-am distclean-compile distclean-generic \ distclean-tags @@ -947,7 +1054,20 @@ installcheck-am: maintainer-clean: maintainer-clean-recursive - -rm -rf ./$(DEPDIR) + -rm -f ./$(DEPDIR)/libhelpers_la-qmicli-helpers.Plo + -rm -f ./$(DEPDIR)/qmicli-qmicli-charsets.Po + -rm -f ./$(DEPDIR)/qmicli-qmicli-dms.Po + -rm -f ./$(DEPDIR)/qmicli-qmicli-loc.Po + -rm -f ./$(DEPDIR)/qmicli-qmicli-nas.Po + -rm -f ./$(DEPDIR)/qmicli-qmicli-pbm.Po + -rm -f ./$(DEPDIR)/qmicli-qmicli-pdc.Po + -rm -f ./$(DEPDIR)/qmicli-qmicli-qos.Po + -rm -f ./$(DEPDIR)/qmicli-qmicli-uim.Po + -rm -f ./$(DEPDIR)/qmicli-qmicli-voice.Po + -rm -f ./$(DEPDIR)/qmicli-qmicli-wda.Po + -rm -f ./$(DEPDIR)/qmicli-qmicli-wds.Po + -rm -f ./$(DEPDIR)/qmicli-qmicli-wms.Po + -rm -f ./$(DEPDIR)/qmicli-qmicli.Po -rm -f Makefile maintainer-clean-am: distclean-am maintainer-clean-generic @@ -970,8 +1090,9 @@ .MAKE: $(am__recursive_targets) install-am install-data-am \ install-strip uninstall-am -.PHONY: $(am__recursive_targets) CTAGS GTAGS TAGS all all-am check \ - check-am clean clean-binPROGRAMS clean-generic clean-libtool \ +.PHONY: $(am__recursive_targets) CTAGS GTAGS TAGS all all-am \ + am--depfiles check check-am clean clean-binPROGRAMS \ + clean-generic clean-libtool clean-noinstLTLIBRARIES \ cscopelist-am ctags ctags-am distclean distclean-compile \ distclean-generic distclean-libtool distclean-tags distdir dvi \ dvi-am html html-am info info-am install install-am \ diff -Nru libqmi-1.18.0/src/qmicli/qmicli.c libqmi-1.22.0/src/qmicli/qmicli.c --- libqmi-1.18.0/src/qmicli/qmicli.c 2017-03-21 14:26:54.000000000 +0100 +++ libqmi-1.22.0/src/qmicli/qmicli.c 2019-01-08 15:15:35.000000000 +0100 @@ -49,6 +49,7 @@ static QmiClient *client; static QmiService service; static gboolean operation_status; +static gboolean expect_indications; /* Main options */ static gchar *device_str; @@ -225,7 +226,7 @@ { g_print ("\n" PROGRAM_NAME " " PROGRAM_VERSION "\n" - "Copyright (C) 2012-2017 Aleksander Morgado\n" + "Copyright (C) 2012-2019 Aleksander Morgado\n" "License GPLv2+: GNU GPL version 2 or later \n" "This is free software: you are free to change and redistribute it.\n" "There is NO WARRANTY, to the extent permitted by law.\n" @@ -258,6 +259,15 @@ } /*****************************************************************************/ +/* Report that indications are expected */ + +void +qmicli_expect_indications (void) +{ + expect_indications = TRUE; +} + +/*****************************************************************************/ /* Running asynchronously */ static void @@ -372,6 +382,12 @@ case QMI_SERVICE_VOICE: qmicli_voice_run (dev, QMI_CLIENT_VOICE (client), cancellable); return; + case QMI_SERVICE_LOC: + qmicli_loc_run (dev, QMI_CLIENT_LOC (client), cancellable); + return; + case QMI_SERVICE_QOS: + qmicli_qos_run (dev, QMI_CLIENT_QOS (client), cancellable); + return; default: g_assert_not_reached (); } @@ -651,6 +667,8 @@ open_flags |= QMI_DEVICE_OPEN_FLAGS_MBIM; if (device_open_auto_flag || (!device_open_qmi_flag && !device_open_mbim_flag)) open_flags |= QMI_DEVICE_OPEN_FLAGS_AUTO; + if (expect_indications) + open_flags |= QMI_DEVICE_OPEN_FLAGS_EXPECT_INDICATIONS; if (device_open_net_str) if (!qmicli_read_net_open_flags_from_string (device_open_net_str, &open_flags)) exit (EXIT_FAILURE); @@ -731,6 +749,18 @@ actions_enabled++; } + /* LOC options? */ + if (qmicli_loc_options_enabled ()) { + service = QMI_SERVICE_LOC; + actions_enabled++; + } + + /* QOS options? */ + if (qmicli_qos_options_enabled ()) { + service = QMI_SERVICE_QOS; + actions_enabled++; + } + /* Cannot mix actions from different services */ if (actions_enabled > 1) { g_printerr ("error: cannot execute multiple actions of different services\n"); @@ -774,6 +804,10 @@ qmicli_wda_get_option_group ()); g_option_context_add_group (context, qmicli_voice_get_option_group ()); + g_option_context_add_group (context, + qmicli_loc_get_option_group ()); + g_option_context_add_group (context, + qmicli_qos_get_option_group ()); g_option_context_add_main_entries (context, main_entries, NULL); if (!g_option_context_parse (context, &argc, &argv, &error)) { g_printerr ("error: %s\n", diff -Nru libqmi-1.18.0/src/qmicli/qmicli-completion libqmi-1.22.0/src/qmicli/qmicli-completion --- libqmi-1.18.0/src/qmicli/qmicli-completion 2017-03-21 14:26:54.000000000 +0100 +++ libqmi-1.22.0/src/qmicli/qmicli-completion 2018-03-20 21:33:05.000000000 +0100 @@ -118,6 +118,10 @@ COMPREPLY=( $(compgen -W "[(MuxId),(Ep-Iface-Number)]" -- $cur) ) return 0 ;; + '--wds-set-ip-family') + COMPREPLY=( $(compgen -W "[4|6]" -- $cur) ) + return 0 + ;; '--uim-read-transparent') COMPREPLY=( $(compgen -W "[0xNNNN,0xNNNN,...]" -- $cur) ) return 0 diff -Nru libqmi-1.18.0/src/qmicli/qmicli-dms.c libqmi-1.22.0/src/qmicli/qmicli-dms.c --- libqmi-1.18.0/src/qmicli/qmicli-dms.c 2017-03-21 14:26:54.000000000 +0100 +++ libqmi-1.22.0/src/qmicli/qmicli-dms.c 2019-01-08 14:09:47.000000000 +0100 @@ -94,6 +94,8 @@ static gboolean get_supported_messages_flag; static gchar *hp_change_device_mode_str; static gboolean swi_get_current_firmware_flag; +static gboolean swi_get_usb_composition_flag; +static gchar *swi_set_usb_composition_str; static gboolean reset_flag; static gboolean noop_flag; @@ -294,6 +296,14 @@ "Get Current Firmware (Sierra Wireless specific)", NULL }, + { "dms-swi-get-usb-composition", 0, 0, G_OPTION_ARG_NONE, &swi_get_usb_composition_flag, + "Get current and supported USB compositions (Sierra Wireless specific)", + NULL + }, + { "dms-swi-set-usb-composition", 0, 0, G_OPTION_ARG_STRING, &swi_set_usb_composition_str, + "Set USB composition (Sierra Wireless specific)", + "[#]" + }, { "dms-reset", 0, 0, G_OPTION_ARG_NONE, &reset_flag, "Reset the service state", NULL @@ -378,6 +388,8 @@ get_supported_messages_flag + !!hp_change_device_mode_str + swi_get_current_firmware_flag + + swi_get_usb_composition_flag + + !!swi_set_usb_composition_str + reset_flag + noop_flag); @@ -2350,6 +2362,7 @@ QmiMessageDmsGetBandCapabilitiesOutput *output; QmiDmsBandCapability band_capability; QmiDmsLteBandCapability lte_band_capability; + GArray *extended_lte_band_capability; GError *error = NULL; gchar *str; @@ -2390,6 +2403,20 @@ g_free (str); } + if (qmi_message_dms_get_band_capabilities_output_get_extended_lte_band_capability ( + output, + &extended_lte_band_capability, + NULL)) { + guint i; + + g_print ("\tLTE bands (extended): '"); + for (i = 0; i < extended_lte_band_capability->len; i++) + g_print ("%s%" G_GUINT16_FORMAT, + i == 0 ? "" : ", ", + g_array_index (extended_lte_band_capability, guint16, i)); + g_print ("'\n"); + } + qmi_message_dms_get_band_capabilities_output_unref (output); operation_shutdown (TRUE); } @@ -2649,8 +2676,6 @@ } typedef struct { - QmiClientDms *client; - GSimpleAsyncResult *result; gint modem_index; gint pri_index; } GetStoredImageContext; @@ -2663,15 +2688,24 @@ } GetStoredImageResult; static void -get_stored_image_context_complete_and_free (GetStoredImageContext *operation_ctx) +get_stored_image_context_free (GetStoredImageContext *operation_ctx) { - g_simple_async_result_complete (operation_ctx->result); - g_object_unref (operation_ctx->result); - g_object_unref (operation_ctx->client); g_slice_free (GetStoredImageContext, operation_ctx); } static void +get_stored_image_result_free (GetStoredImageResult *result) +{ + if (result) { + g_clear_pointer (&result->modem_unique_id, g_array_unref); + g_free (result->modem_build_id); + g_clear_pointer (&result->pri_unique_id, g_array_unref); + g_free (result->pri_build_id); + g_slice_free (GetStoredImageResult, result); + } +} + +static void get_stored_image_finish (QmiClientDms *client, GAsyncResult *res, GArray **modem_unique_id, @@ -2680,21 +2714,30 @@ gchar **pri_build_id) { GetStoredImageResult *result; + GError *error = NULL; + + result = g_task_propagate_pointer (G_TASK (res), &error); - result = g_simple_async_result_get_op_res_gpointer (G_SIMPLE_ASYNC_RESULT (res)); + /* The operation always returns a result */ + g_assert (result); + g_assert_no_error (error); + + /* Simply pass ownership to caller */ + *modem_unique_id = result->modem_unique_id; + *modem_build_id = result->modem_build_id; + *pri_unique_id = result->pri_unique_id; + *pri_build_id = result->pri_build_id; - *modem_unique_id = result->modem_unique_id ? g_array_ref (result->modem_unique_id) : NULL; - *modem_build_id = g_strdup (result->modem_build_id); - *pri_unique_id = result->pri_unique_id ? g_array_ref (result->pri_unique_id) : NULL; - *pri_build_id = g_strdup (result->pri_build_id); + g_slice_free (GetStoredImageResult, result); } static void get_stored_image_list_stored_images_ready (QmiClientDms *client, GAsyncResult *res, - GetStoredImageContext *operation_ctx) + GTask *task) { - GetStoredImageResult result = { NULL, NULL, NULL, NULL }; + GetStoredImageContext *operation_ctx; + GetStoredImageResult *result; GArray *array; QmiMessageDmsListStoredImagesOutput *output; GError *error = NULL; @@ -2704,6 +2747,7 @@ if (!output) { g_printerr ("error: operation failed: %s\n", error->message); g_error_free (error); + g_object_unref (task); operation_shutdown (FALSE); return; } @@ -2712,6 +2756,7 @@ g_printerr ("error: couldn't list stored images: %s\n", error->message); g_error_free (error); qmi_message_dms_list_stored_images_output_unref (output); + g_object_unref (task); operation_shutdown (FALSE); return; } @@ -2721,6 +2766,11 @@ &array, NULL); + operation_ctx = g_task_get_task_data (task); + + /* A single result struct is used for all iterations */ + result = g_slice_new0 (GetStoredImageResult); + for (i = 0; i < array->len; i++) { QmiMessageDmsListStoredImagesOutputListImageSublistSublistElement *subimage; QmiMessageDmsListStoredImagesOutputListImage *image; @@ -2747,6 +2797,7 @@ qmi_dms_firmware_image_type_get_string (image->type), image_index); qmi_message_dms_list_stored_images_output_unref (output); + g_object_unref (task); operation_shutdown (FALSE); return; } @@ -2763,20 +2814,19 @@ subimage->build_id); g_free (unique_id_str); - /* Build result */ if (image->type == QMI_DMS_FIRMWARE_IMAGE_TYPE_MODEM) { - result.modem_unique_id = subimage->unique_id; - result.modem_build_id = subimage->build_id; + result->modem_unique_id = subimage->unique_id ? g_array_ref (subimage->unique_id) : NULL; + result->modem_build_id = g_strdup (subimage->build_id); } else if (image->type == QMI_DMS_FIRMWARE_IMAGE_TYPE_PRI) { - result.pri_unique_id = subimage->unique_id; - result.pri_build_id = subimage->build_id; + result->pri_unique_id = subimage->unique_id ? g_array_ref (subimage->unique_id) : NULL; + result->pri_build_id = g_strdup (subimage->build_id); } else g_assert_not_reached (); } /* Complete */ - g_simple_async_result_set_op_res_gpointer (operation_ctx->result, &result, NULL); - get_stored_image_context_complete_and_free (operation_ctx); + g_task_return_pointer (task, result, (GDestroyNotify)get_stored_image_result_free); + g_object_unref (task); qmi_message_dms_list_stored_images_output_unref (output); } @@ -2787,6 +2837,7 @@ gpointer user_data) { GetStoredImageContext *operation_ctx; + GTask *task; gchar **split; guint i = 0; gint modem_index = -1; @@ -2829,21 +2880,19 @@ } operation_ctx = g_slice_new (GetStoredImageContext); - operation_ctx->client = g_object_ref (client); - operation_ctx->result = g_simple_async_result_new (G_OBJECT (client), - callback, - user_data, - get_stored_image); operation_ctx->modem_index = modem_index; operation_ctx->pri_index = pri_index; + task = g_task_new (client, NULL, callback, user_data); + g_task_set_task_data (task, operation_ctx, (GDestroyNotify)get_stored_image_context_free); + qmi_client_dms_list_stored_images ( ctx->client, NULL, 10, ctx->cancellable, (GAsyncReadyCallback)get_stored_image_list_stored_images_ready, - operation_ctx); + task); } /* Note: @@ -3112,10 +3161,10 @@ static void set_firmware_preference_context_clear (SetFirmwarePreferenceContext *firmware_preference_ctx) { - g_clear_pointer (&firmware_preference_ctx->modem_image_id.unique_id, (GDestroyNotify) g_array_unref); + g_clear_pointer (&firmware_preference_ctx->modem_image_id.unique_id, g_array_unref); g_free (firmware_preference_ctx->modem_image_id.build_id); - g_clear_pointer (&firmware_preference_ctx->pri_image_id.unique_id, (GDestroyNotify) g_array_unref); + g_clear_pointer (&firmware_preference_ctx->pri_image_id.unique_id, g_array_unref); g_free (firmware_preference_ctx->pri_image_id.build_id); } @@ -3492,6 +3541,115 @@ } static void +swi_get_usb_composition_ready (QmiClientDms *client, + GAsyncResult *res) +{ + QmiMessageDmsSwiGetUsbCompositionOutput *output; + GError *error = NULL; + GArray *supported = NULL; + QmiDmsSwiUsbComposition current = QMI_DMS_SWI_USB_COMPOSITION_UNKNOWN; + guint i; + + output = qmi_client_dms_swi_get_usb_composition_finish (client, res, &error); + if (!output) { + g_printerr ("error: operation failed: %s\n", error->message); + g_error_free (error); + operation_shutdown (FALSE); + return; + } + + if (!qmi_message_dms_swi_get_usb_composition_output_get_result (output, &error)) { + g_printerr ("error: couldn't get USB composite modes: %s\n", error->message); + g_error_free (error); + qmi_message_dms_swi_get_usb_composition_output_unref (output); + operation_shutdown (FALSE); + return; + } + + g_print ("[%s] Successfully retrieved USB compositions:\n", + qmi_device_get_path_display (ctx->device)); + + if (!qmi_message_dms_swi_get_usb_composition_output_get_current (output, ¤t, &error)) { + g_printerr ("error: couldn't get current USB composition: %s\n", error->message); + g_clear_error (&error); + } + + if (!qmi_message_dms_swi_get_usb_composition_output_get_supported (output, &supported, &error)) { + g_printerr ("error: couldn't get list of USB compositions: %s\n", error->message); + g_clear_error (&error); + } + + for (i = 0; i < supported->len; i++) { + QmiDmsSwiUsbComposition value; + + value = g_array_index (supported, QmiDmsSwiUsbComposition, i); + g_print ("\t%sUSB composition %s: %s\n", + (value == current ? "[*] " : " "), + qmi_dms_swi_usb_composition_get_string (value), + qmi_dms_swi_usb_composition_get_description (value)); + } + + qmi_message_dms_swi_get_usb_composition_output_unref (output); + operation_shutdown (TRUE); +} + +static void +swi_set_usb_composition_ready (QmiClientDms *client, + GAsyncResult *res) +{ + QmiMessageDmsSwiSetUsbCompositionOutput *output; + GError *error = NULL; + + output = qmi_client_dms_swi_set_usb_composition_finish (client, res, &error); + if (!output) { + g_printerr ("error: operation failed: %s\n", error->message); + g_error_free (error); + operation_shutdown (FALSE); + return; + } + + if (!qmi_message_dms_swi_set_usb_composition_output_get_result (output, &error)) { + g_printerr ("error: couldn't set USB composite modes: %s\n", error->message); + g_error_free (error); + qmi_message_dms_swi_set_usb_composition_output_unref (output); + operation_shutdown (FALSE); + return; + } + + g_print ("[%s] Successfully set USB composition\n" + "\n" + "\tYou may want to power-cycle the modem now, or just set it offline and reset it:\n" + "\t\t$> sudo qmicli ... --dms-set-operating-mode=offline\n" + "\t\t$> sudo qmicli ... --dms-set-operating-mode=reset\n" + "\n", + qmi_device_get_path_display (ctx->device)); + + qmi_message_dms_swi_set_usb_composition_output_unref (output); + operation_shutdown (TRUE); +} + +static QmiMessageDmsSwiSetUsbCompositionInput * +swi_set_usb_composition_input_create (const gchar *str) +{ + QmiMessageDmsSwiSetUsbCompositionInput *input = NULL; + QmiDmsSwiUsbComposition value; + GError *error = NULL; + + if (!qmicli_read_swi_usb_composition_from_string (str, &value)) + return NULL; + + input = qmi_message_dms_swi_set_usb_composition_input_new (); + if (!qmi_message_dms_swi_set_usb_composition_input_set_current (input, value, &error)) { + g_printerr ("error: couldn't create input bundle: '%s'\n", error->message); + g_error_free (error); + qmi_message_dms_swi_set_usb_composition_input_unref (input); + return NULL; + } + + return input; +} + +static void reset_ready (QmiClientDms *client, GAsyncResult *res) { @@ -3537,8 +3695,7 @@ ctx = g_slice_new (Context); ctx->device = g_object_ref (device); ctx->client = g_object_ref (client); - if (cancellable) - ctx->cancellable = g_object_ref (cancellable); + ctx->cancellable = g_object_ref (cancellable); /* Request to get IDs? */ if (get_ids_flag) { @@ -4276,6 +4433,40 @@ return; } + /* Request to get current USB composition */ + if (swi_get_usb_composition_flag) { + g_debug ("Asynchronously getting USB compositionss (Sierra Wireless specific)..."); + qmi_client_dms_swi_get_usb_composition (ctx->client, + NULL, + 10, + ctx->cancellable, + (GAsyncReadyCallback)swi_get_usb_composition_ready, + NULL); + return; + } + + /* Request to set current USB composition */ + if (swi_set_usb_composition_str) { + QmiMessageDmsSwiSetUsbCompositionInput *input; + + g_debug ("Asynchronously setting USB composition (Sierra Wireless specific)..."); + + input = swi_set_usb_composition_input_create (swi_set_usb_composition_str); + if (!input) { + operation_shutdown (FALSE); + return; + } + + qmi_client_dms_swi_set_usb_composition (ctx->client, + input, + 10, + ctx->cancellable, + (GAsyncReadyCallback)swi_set_usb_composition_ready, + NULL); + qmi_message_dms_swi_set_usb_composition_input_unref (input); + return; + } + /* Request to reset DMS service? */ if (reset_flag) { g_debug ("Asynchronously resetting DMS service..."); diff -Nru libqmi-1.18.0/src/qmicli/qmicli.h libqmi-1.22.0/src/qmicli/qmicli.h --- libqmi-1.18.0/src/qmicli/qmicli.h 2017-03-21 14:26:54.000000000 +0100 +++ libqmi-1.22.0/src/qmicli/qmicli.h 2019-01-08 14:09:47.000000000 +0100 @@ -26,6 +26,7 @@ /* Common */ void qmicli_async_operation_done (gboolean reported_operation_status, gboolean skip_cid_release); +void qmicli_expect_indications (void); /* DMS group */ GOptionGroup *qmicli_dms_get_option_group (void); @@ -90,4 +91,18 @@ QmiClientVoice *client, GCancellable *cancellable); +/* Location group */ +GOptionGroup *qmicli_loc_get_option_group (void); +gboolean qmicli_loc_options_enabled (void); +void qmicli_loc_run (QmiDevice *device, + QmiClientLoc *client, + GCancellable *cancellable); + +/* QoS group */ +GOptionGroup *qmicli_qos_get_option_group (void); +gboolean qmicli_qos_options_enabled (void); +void qmicli_qos_run (QmiDevice *device, + QmiClientQos *client, + GCancellable *cancellable); + #endif /* __QMICLI_H__ */ diff -Nru libqmi-1.18.0/src/qmicli/qmicli-helpers.c libqmi-1.22.0/src/qmicli/qmicli-helpers.c --- libqmi-1.18.0/src/qmicli/qmicli-helpers.c 2017-03-21 14:26:54.000000000 +0100 +++ libqmi-1.22.0/src/qmicli/qmicli-helpers.c 2019-01-08 14:09:47.000000000 +0100 @@ -225,42 +225,69 @@ } gboolean -qmicli_read_rat_mode_pref_from_string (const gchar *str, - QmiNasRatModePreference *out) -{ - GType type; - GFlagsClass *flags_class; - GFlagsValue *flags_value; - gboolean success = TRUE, set = FALSE; - char **items, **iter; +qmicli_read_ssp_options_from_string (const gchar *str, + QmiNasRatModePreference *out_mode_preference, + GArray **out_acquisition_order) +{ + GType rat_mode_preference_type; + GFlagsClass *rat_mode_preference_flags_class; + GFlagsValue *rat_mode_preference_flags_value; + gboolean mode_preference_set = FALSE; + GType radio_interface_type; + GEnumClass *radio_interface_enum_class; + GEnumValue *radio_interface_enum_value; + gboolean acquisition_order_set = FALSE; + gboolean success = TRUE; + char **items, **iter; + + rat_mode_preference_type = qmi_nas_rat_mode_preference_get_type (); + rat_mode_preference_flags_class = G_FLAGS_CLASS (g_type_class_ref (rat_mode_preference_type)); + radio_interface_type = qmi_nas_radio_interface_get_type (); + radio_interface_enum_class = G_ENUM_CLASS (g_type_class_ref (radio_interface_type)); - type = qmi_nas_rat_mode_preference_get_type (); - flags_class = G_FLAGS_CLASS (g_type_class_ref (type)); - - *out = 0; + *out_mode_preference = 0; + *out_acquisition_order = g_array_new (FALSE, FALSE, sizeof (QmiNasRadioInterface)); items = g_strsplit_set (str, "|", 0); for (iter = items; iter && *iter && success; iter++) { if (!*iter[0]) continue; - flags_value = g_flags_get_value_by_nick (flags_class, *iter); - if (flags_value) { - *out |= (QmiNasRatModePreference)flags_value->value; - set = TRUE; + /* Note: we can use the same nick names both for mode preference flags + * and acquistion order enums, which is very fortunate */ + + rat_mode_preference_flags_value = g_flags_get_value_by_nick (rat_mode_preference_flags_class, *iter); + if (rat_mode_preference_flags_value) { + *out_mode_preference |= (QmiNasRatModePreference)rat_mode_preference_flags_value->value; + mode_preference_set = TRUE; } else { g_printerr ("error: invalid rat mode pref value given: '%s'\n", *iter); success = FALSE; } + + radio_interface_enum_value = g_enum_get_value_by_nick (radio_interface_enum_class, *iter); + if (radio_interface_enum_value) { + QmiNasRadioInterface value; + + value = (QmiNasRadioInterface)(radio_interface_enum_value->value); + g_array_append_val (*out_acquisition_order, value); + acquisition_order_set = TRUE; + } else { + g_printerr ("error: invalid radio interface value given: '%s'\n", *iter); + success = FALSE; + } } - if (!set) + if (!mode_preference_set) + g_printerr ("error: invalid rat mode pref input given: '%s'\n", str); + if (!acquisition_order_set) g_printerr ("error: invalid rat mode pref input given: '%s'\n", str); if (items) g_strfreev (items); - g_type_class_unref (flags_class); - return success && set; + g_type_class_unref (rat_mode_preference_flags_class); + g_type_class_unref (radio_interface_enum_class); + return success && (mode_preference_set || acquisition_order_set);; } gboolean @@ -649,6 +676,24 @@ } gboolean +qmicli_read_pdp_type_from_string (const gchar *str, + QmiWdsPdpType *out) +{ + if (g_ascii_strcasecmp (str, "IP") == 0 || g_ascii_strcasecmp (str, "IPV4") == 0) + *out = QMI_WDS_PDP_TYPE_IPV4; + else if (g_ascii_strcasecmp (str, "PPP") == 0) + *out = QMI_WDS_PDP_TYPE_PPP; + else if (g_ascii_strcasecmp (str, "IPV6") == 0) + *out = (QMI_WDS_PDP_TYPE_IPV6); + else if (g_ascii_strcasecmp (str, "IPV4V6") == 0) + *out = QMI_WDS_PDP_TYPE_IPV4_OR_IPV6; + else + return FALSE; + + return TRUE; +} + +gboolean qmicli_read_boot_image_download_mode_from_string (const gchar *str, QmiDmsBootImageDownloadMode *out) { @@ -688,6 +733,27 @@ g_type_class_unref (enum_class); return !!enum_value; +} + +gboolean +qmicli_read_swi_usb_composition_from_string (const gchar *str, + QmiDmsSwiUsbComposition *out) +{ + GType type; + GEnumClass *enum_class; + GEnumValue *enum_value; + + type = qmi_dms_swi_usb_composition_get_type (); + enum_class = G_ENUM_CLASS (g_type_class_ref (type)); + enum_value = g_enum_get_value_by_nick (enum_class, str); + + if (enum_value) + *out = (QmiDmsSwiUsbComposition)enum_value->value; + else + g_printerr ("error: invalid SWI USB Composition value given: '%s'\n", str); + + g_type_class_unref (enum_class); + return !!enum_value; } gboolean diff -Nru libqmi-1.18.0/src/qmicli/qmicli-helpers.h libqmi-1.22.0/src/qmicli/qmicli-helpers.h --- libqmi-1.18.0/src/qmicli/qmicli-helpers.h 2017-03-21 14:26:54.000000000 +0100 +++ libqmi-1.22.0/src/qmicli/qmicli-helpers.h 2019-01-08 14:09:47.000000000 +0100 @@ -38,8 +38,9 @@ QmiUimPinId *out); gboolean qmicli_read_operating_mode_from_string (const gchar *str, QmiDmsOperatingMode *out); -gboolean qmicli_read_rat_mode_pref_from_string (const gchar *str, - QmiNasRatModePreference *out); +gboolean qmicli_read_ssp_options_from_string (const gchar *str, + QmiNasRatModePreference *out_mode_preference, + GArray **out_acquisition_order); gboolean qmicli_read_facility_from_string (const gchar *str, QmiDmsUimFacility *out); gboolean qmicli_read_enable_disable_from_string (const gchar *str, @@ -69,10 +70,14 @@ QmiWdsAutoconnectSettingRoaming *out); gboolean qmicli_read_authentication_from_string (const gchar *str, QmiWdsAuthentication *out); +gboolean qmicli_read_pdp_type_from_string (const gchar *str, + QmiWdsPdpType *out); gboolean qmicli_read_boot_image_download_mode_from_string (const gchar *str, QmiDmsBootImageDownloadMode *out); gboolean qmicli_read_hp_device_mode_from_string (const gchar *str, QmiDmsHpDeviceMode *out); +gboolean qmicli_read_swi_usb_composition_from_string (const gchar *str, + QmiDmsSwiUsbComposition *out); gboolean qmicli_read_non_empty_string (const gchar *str, const gchar *description, diff -Nru libqmi-1.18.0/src/qmicli/qmicli-loc.c libqmi-1.22.0/src/qmicli/qmicli-loc.c --- libqmi-1.18.0/src/qmicli/qmicli-loc.c 1970-01-01 01:00:00.000000000 +0100 +++ libqmi-1.22.0/src/qmicli/qmicli-loc.c 2019-01-08 14:09:47.000000000 +0100 @@ -0,0 +1,876 @@ +/* -*- Mode: C; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */ +/* + * qmicli -- Command line interface to control QMI devices + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation, either version 2 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program. If not, see . + * + * Copyright (C) 2018 Thomas Weißschuh + * Copyright (C) 2018 Aleksander Morgado + */ + +#include "config.h" + +#include +#include +#include +#include + +#include +#include + +#include + +#include "qmicli.h" +#include "qmicli-helpers.h" + +/* Context */ + +typedef enum { + MONITORING_STEP_FIRST, + MONITORING_STEP_REGISTER_EVENTS, + MONITORING_STEP_SETUP_TIMEOUT, + MONITORING_STEP_ONGOING, +} MonitoringStep; + +typedef struct { + QmiDevice *device; + QmiClientLoc *client; + GCancellable *cancellable; + guint timeout_id; + MonitoringStep monitoring_step; + guint position_report_indication_id; + guint nmea_indication_id; + guint gnss_sv_info_indication_id; + guint delete_assistance_data_indication_id; +} Context; +static Context *ctx; + +/* Options */ +static gint session_id; +static gboolean start_flag; +static gboolean stop_flag; +static gboolean get_position_report_flag; +static gboolean get_gnss_sv_info_flag; +static gint timeout; +static gboolean follow_position_report_flag; +static gboolean follow_gnss_sv_info_flag; +static gboolean follow_nmea_flag; +static gboolean delete_assistance_data_flag; +static gboolean noop_flag; + +#define DEFAULT_LOC_TIMEOUT_SECS 30 + +static GOptionEntry entries[] = { + { + "loc-session-id", 0, 0, G_OPTION_ARG_INT, &session_id, + "Session ID for the LOC session", + "[ID]", + }, + { + "loc-start", 0, 0, G_OPTION_ARG_NONE, &start_flag, + "Start location gathering", + NULL, + }, + { + "loc-stop", 0, 0, G_OPTION_ARG_NONE, &stop_flag, + "Stop location gathering", + NULL, + }, + { + "loc-get-position-report", 0, 0, G_OPTION_ARG_NONE, &get_position_report_flag, + "Get position reported by the location module", + NULL, + }, + { + "loc-get-gnss-sv-info", 0, 0, G_OPTION_ARG_NONE, &get_gnss_sv_info_flag, + "Show GNSS space vehicle info", + NULL, + }, + { + "loc-timeout", 0, 0, G_OPTION_ARG_INT, &timeout, + "Maximum time to wait for information in `--loc-get-position-report' and `--loc-get-gnss-sv-info' (default 30s)", + "[SECS]", + }, + { + "loc-follow-position-report", 0, 0, G_OPTION_ARG_NONE, &follow_position_report_flag, + "Follow all position updates reported by the location module indefinitely", + NULL, + }, + { + "loc-follow-gnss-sv-info", 0, 0, G_OPTION_ARG_NONE, &follow_gnss_sv_info_flag, + "Follow all GNSS space vehicle info updates reported by the location module indefinitely", + NULL, + }, + { + "loc-follow-nmea", 0, 0, G_OPTION_ARG_NONE, &follow_nmea_flag, + "Follow all NMEA trace updates reported by the location module indefinitely", + NULL, + }, + { + "loc-delete-assistance-data", 0, 0, G_OPTION_ARG_NONE, &delete_assistance_data_flag, + "Delete positioning assistance data", + NULL, + }, + { "loc-noop", 0, 0, G_OPTION_ARG_NONE, &noop_flag, + "Just allocate or release a LOC client. Use with `--client-no-release-cid' and/or `--client-cid'", + NULL + }, + { NULL } +}; + +GOptionGroup * +qmicli_loc_get_option_group (void) +{ + GOptionGroup *group; + + group = g_option_group_new ("loc", + "LOC options", + "Show location options", NULL, NULL); + g_option_group_add_entries (group, entries); + + return group; +} + +gboolean +qmicli_loc_options_enabled (void) +{ + static guint n_actions = 0; + static gboolean checked = FALSE; + gboolean follow_action; + + if (checked) + return !!n_actions; + + /* Let's define the following actions:: + * - Start location engine + * - Stop location engine + * - Show current position (oneshot). + * - Show current satellite info (oneshot). + * - Follow updates indefinitely, including either position, satellite info or NMEA traces. + * - Delete assistance data. + */ + follow_action = !!(follow_position_report_flag + follow_gnss_sv_info_flag + follow_nmea_flag); + n_actions = (start_flag + + stop_flag + + get_position_report_flag + + get_gnss_sv_info_flag + + follow_action + + delete_assistance_data_flag + + noop_flag); + + if (n_actions > 1) { + g_printerr ("error: too many LOC actions requested\n"); + exit (EXIT_FAILURE); + } + + if (session_id < 0 || session_id > G_MAXUINT8) { + g_printerr ("error: invalid session ID: %d [0,%u]\n", session_id, G_MAXUINT8); + exit (EXIT_FAILURE); + } + + if (timeout < 0) { + g_printerr ("error: invalid timeout: %d", timeout); + exit (EXIT_FAILURE); + } + + if (timeout > 0 && !(get_position_report_flag || get_gnss_sv_info_flag)) { + g_printerr ("error: `--loc-timeout' is only applicable with `--loc-get-position-report' or `--loc-get-gnss-sv-info'\n"); + exit (EXIT_FAILURE); + } + + /* Actions that require receiving QMI indication messages must specify that + * indications are expected. */ + if (get_position_report_flag || get_gnss_sv_info_flag || follow_action || delete_assistance_data_flag) + qmicli_expect_indications(); + + checked = TRUE; + return !!n_actions; +} + +static void +context_free (Context *context) +{ + if (!context) + return; + + if (context->timeout_id) + g_source_remove (context->timeout_id); + + if (context->position_report_indication_id) + g_signal_handler_disconnect (context->client, context->position_report_indication_id); + + if (context->gnss_sv_info_indication_id) + g_signal_handler_disconnect (context->client, context->gnss_sv_info_indication_id); + + if (context->nmea_indication_id) + g_signal_handler_disconnect (context->client, context->nmea_indication_id); + + g_clear_object (&context->cancellable); + g_clear_object (&context->client); + g_clear_object (&context->device); + g_slice_free (Context, context); +} + +static void +operation_shutdown (gboolean operation_status) +{ + context_free (ctx); + qmicli_async_operation_done (operation_status, FALSE); +} + +static void monitoring_step_run (void); + +static gboolean +monitoring_timed_out (void) +{ + ctx->timeout_id = 0; + g_printerr ("error: operation failed: timeout\n"); + operation_shutdown (FALSE); + return G_SOURCE_REMOVE; +} + +static void +monitoring_cancelled (GCancellable *cancellable) +{ + /* For GET operations, this is a failure */ + if (get_position_report_flag || get_gnss_sv_info_flag) { + g_printerr ("error: operation failed: cancelled\n"); + operation_shutdown (FALSE); + return; + } + + /* For FOLLOW operations, silently exit */ + if (follow_position_report_flag || follow_gnss_sv_info_flag || follow_nmea_flag) { + operation_shutdown (TRUE); + return; + } + + g_assert_not_reached (); +} + +static void +nmea_received (QmiClientLoc *client, + QmiIndicationLocNmeaOutput *output) +{ + const gchar *nmea = NULL; + + qmi_indication_loc_nmea_output_get_nmea_string (output, &nmea, NULL); + if (nmea) + /* Note: NMEA traces already have an EOL */ + g_print ("%s", nmea); +} + +static void +gnss_sv_info_received (QmiClientLoc *client, + QmiIndicationLocGnssSvInfoOutput *output) +{ + GArray *satellite_infos = NULL; + guint i; + gboolean altitude_assumed; + + if (qmi_indication_loc_gnss_sv_info_output_get_altitude_assumed (output, &altitude_assumed, NULL)) + g_print ("[gnss sv info] Altitude assumed: %s\n", altitude_assumed ? "yes" : "no"); + else + g_print ("[gnss sv info] Altitude assumed: n/a\n"); + + qmi_indication_loc_gnss_sv_info_output_get_list (output, &satellite_infos, NULL); + + g_print ("[gnss sv info] %d satellites detected:\n", satellite_infos ? satellite_infos->len : 0); + for (i = 0; i < satellite_infos->len; i++) { + QmiIndicationLocGnssSvInfoOutputListElement *element; + + element = &g_array_index (satellite_infos, QmiIndicationLocGnssSvInfoOutputListElement, i); + g_print (" [satellite #%u]\n", i); + g_print (" system: %s\n", (element->valid_information & QMI_LOC_SATELLITE_VALID_INFORMATION_SYSTEM) ? qmi_loc_system_get_string (element->system) : "n/a"); + if (element->valid_information & QMI_LOC_SATELLITE_VALID_INFORMATION_GNSS_SATELLITE_ID) + g_print (" satellite id: %u\n", element->gnss_satellite_id); + else + g_print (" satellite id: n/a\n"); + g_print (" health status: %s\n", (element->valid_information & QMI_LOC_SATELLITE_VALID_INFORMATION_HEALTH_STATUS) ? qmi_loc_health_status_get_string (element->health_status) : "n/a"); + g_print (" satellite status: %s\n", (element->valid_information & QMI_LOC_SATELLITE_VALID_INFORMATION_PROCESS_STATUS) ? qmi_loc_satellite_status_get_string (element->satellite_status) : "n/a"); + g_print (" navigation data: %s\n", (element->valid_information & QMI_LOC_SATELLITE_VALID_INFORMATION_SATELLITE_INFO_MASK) ? qmi_loc_navigation_data_get_string (element->navigation_data) : "n/a"); + + if (element->valid_information & QMI_LOC_SATELLITE_VALID_INFORMATION_ELEVATION) + g_print (" elevation: %f\n", element->elevation_degrees); + else + g_print (" elevation: n/a\n"); + + if (element->valid_information & QMI_LOC_SATELLITE_VALID_INFORMATION_AZIMUTH) + g_print (" azimuth: %f\n", element->azimuth_degrees); + else + g_print (" azimuth: n/a\n"); + + if (element->valid_information & QMI_LOC_SATELLITE_VALID_INFORMATION_SIGNAL_TO_NOISE_RATIO) + g_print (" SNR: %f\n", element->signal_to_noise_ratio_bhz); + else + g_print (" SNR: n/a\n"); + } + + /* Terminate GET request */ + if (get_gnss_sv_info_flag) + operation_shutdown (TRUE); +} + +static void +position_report_received (QmiClientLoc *client, + QmiIndicationLocPositionReportOutput *output) +{ + QmiLocSessionStatus status; + + qmi_indication_loc_position_report_output_get_session_status (output, &status, NULL); + g_print ("[position report] status: %s\n", qmi_loc_session_status_get_string (status)); + + if (status == QMI_LOC_SESSION_STATUS_SUCCESS || status == QMI_LOC_SESSION_STATUS_IN_PROGRESS) { + gdouble auxd; + gfloat auxf; + guint8 aux8; + guint32 aux32; + guint64 aux64; + QmiLocReliability reliability; + QmiLocTechnologyUsed technology; + QmiLocTimeSource time_source; + QmiLocSensorDataUsage sensor_data_usage; + QmiIndicationLocPositionReportOutputDilutionOfPrecision dop; + QmiIndicationLocPositionReportOutputGpsTime gps_time; + gchar *auxs; + gboolean auxb; + GArray *array; + + if (qmi_indication_loc_position_report_output_get_latitude (output, &auxd, NULL)) + g_print (" latitude: %lf degrees\n", auxd); + else + g_print (" latitude: n/a\n"); + + if (qmi_indication_loc_position_report_output_get_longitude (output, &auxd, NULL)) + g_print (" longitude: %lf degrees\n", auxd); + else + g_print (" longitude: n/a\n"); + + if (qmi_indication_loc_position_report_output_get_horizontal_uncertainty_circular (output, &auxf, NULL)) + g_print (" circular horizontal position uncertainty: %f meters\n", auxf); + else + g_print (" circular horizontal position uncertainty: n/a\n"); + + if (qmi_indication_loc_position_report_output_get_horizontal_uncertainty_elliptical_minor (output, &auxf, NULL)) + g_print (" horizontal elliptical uncertainty (semi-minor axis): %f meters\n", auxf); + else + g_print (" horizontal elliptical uncertainty (semi-minor axis): n/a\n"); + + if (qmi_indication_loc_position_report_output_get_horizontal_uncertainty_elliptical_major (output, &auxf, NULL)) + g_print (" horizontal elliptical uncertainty (semi-major axis): %f meters\n", auxf); + else + g_print (" horizontal elliptical uncertainty (semi-major axis): n/a\n"); + + if (qmi_indication_loc_position_report_output_get_horizontal_uncertainty_elliptical_azimuth (output, &auxf, NULL)) + g_print (" horizontal elliptical uncertainty azimuth: %f meters\n", auxf); + else + g_print (" horizontal elliptical uncertainty azimuth: n/a\n"); + + if (qmi_indication_loc_position_report_output_get_horizontal_confidence (output, &aux8, NULL)) + g_print (" horizontal confidence: %u%%\n", aux8); + else + g_print (" horizontal confidence: n/a\n"); + + if (qmi_indication_loc_position_report_output_get_horizontal_reliability (output, &reliability, NULL)) + g_print (" horizontal reliability: %s\n", qmi_loc_reliability_get_string (reliability)); + else + g_print (" horizontal reliability: n/a\n"); + + if (qmi_indication_loc_position_report_output_get_horizontal_speed (output, &auxf, NULL)) + g_print (" horizontal speed: %f m/s\n", auxf); + else + g_print (" horizontal speed: n/a\n"); + + if (qmi_indication_loc_position_report_output_get_speed_uncertainty (output, &auxf, NULL)) + g_print (" speed uncertainty: %f m/s\n", auxf); + else + g_print (" speed uncertainty: n/a\n"); + + if (qmi_indication_loc_position_report_output_get_altitude_from_ellipsoid (output, &auxf, NULL)) + g_print (" altitude w.r.t. ellipsoid: %f meters\n", auxf); + else + g_print (" altitude w.r.t. ellipsoid: n/a\n"); + + if (qmi_indication_loc_position_report_output_get_altitude_from_sealevel (output, &auxf, NULL)) + g_print (" altitude w.r.t. mean sea level: %f meters\n", auxf); + else + g_print (" altitude w.r.t. mean sea level: n/a\n"); + + if (qmi_indication_loc_position_report_output_get_vertical_uncertainty (output, &auxf, NULL)) + g_print (" vertical uncertainty: %f meters\n", auxf); + else + g_print (" vertical uncertainty: n/a\n"); + + if (qmi_indication_loc_position_report_output_get_vertical_confidence (output, &aux8, NULL)) + g_print (" vertical confidence: %u%%\n", aux8); + else + g_print (" vertical confidence: n/a\n"); + + if (qmi_indication_loc_position_report_output_get_vertical_reliability (output, &reliability, NULL)) + g_print (" vertical reliability: %s\n", qmi_loc_reliability_get_string (reliability)); + else + g_print (" vertical reliability: n/a\n"); + + if (qmi_indication_loc_position_report_output_get_vertical_speed (output, &auxf, NULL)) + g_print (" vertical speed: %f m/s\n", auxf); + else + g_print (" vertical speed: n/a\n"); + + if (qmi_indication_loc_position_report_output_get_heading (output, &auxf, NULL)) + g_print (" heading: %f degrees\n", auxf); + else + g_print (" heading: n/a\n"); + + if (qmi_indication_loc_position_report_output_get_heading_uncertainty (output, &auxf, NULL)) + g_print (" heading uncertainty: %f meters\n", auxf); + else + g_print (" heading uncertainty: n/a\n"); + + if (qmi_indication_loc_position_report_output_get_magnetic_deviation (output, &auxf, NULL)) + g_print (" magnetic deviation: %f degrees\n", auxf); + else + g_print (" magnetic deviation: n/a\n"); + + if (qmi_indication_loc_position_report_output_get_technology_used (output, &technology, NULL)) { + auxs = qmi_loc_technology_used_build_string_from_mask (technology); + g_print (" technology: %s\n", auxs); + g_free (auxs); + } else + g_print (" technology: n/a\n"); + + if (qmi_indication_loc_position_report_output_get_dilution_of_precision (output, &dop, NULL)) { + g_print (" position DOP: %f\n", dop.position_dilution_of_precision); + g_print (" horizontal DOP: %f\n", dop.horizontal_dilution_of_precision); + g_print (" vertical DOP: %f\n", dop.vertical_dilution_of_precision); + } else { + g_print (" position DOP: n/a\n"); + g_print (" horizontal DOP: n/a\n"); + g_print (" vertical DOP: n/a\n"); + } + + if (qmi_indication_loc_position_report_output_get_utc_timestamp (output, &aux64, NULL)) + g_print (" UTC timestamp: %" G_GUINT64_FORMAT " ms\n", aux64); + else + g_print (" UTC timestamp: n/a\n"); + + if (qmi_indication_loc_position_report_output_get_leap_seconds (output, &aux8, NULL)) + g_print (" Leap seconds: %u\n", aux8); + else + g_print (" Leap seconds: n/a\n"); + + if (qmi_indication_loc_position_report_output_get_gps_time (output, &gps_time, NULL)) + g_print (" GPS time: %u weeks and %ums\n", gps_time.gps_weeks, gps_time.gps_time_of_week_milliseconds); + else + g_print (" GPS time: n/a\n"); + + if (qmi_indication_loc_position_report_output_get_time_uncertainty (output, &auxf, NULL)) + g_print (" time uncertainty: %f ms\n", auxf); + else + g_print (" time uncertainty: n/a\n"); + + if (qmi_indication_loc_position_report_output_get_time_source (output, &time_source, NULL)) + g_print (" time source: %s\n", qmi_loc_time_source_get_string (time_source)); + else + g_print (" time source: n/a\n"); + + if (qmi_indication_loc_position_report_output_get_sensor_data_usage (output, &sensor_data_usage, NULL)) + g_print (" sensor data usage: %s\n", qmi_loc_reliability_get_string (sensor_data_usage)); + else + g_print (" sensor data usage: n/a\n"); + + if (qmi_indication_loc_position_report_output_get_session_fix_count (output, &aux32, NULL)) + g_print (" Fix count: %u\n", aux32); + else + g_print (" Fix count: n/a\n"); + + if (qmi_indication_loc_position_report_output_get_satellites_used (output, &array, NULL)) { + guint i; + + g_print (" Satellites used: "); + for (i = 0; i < array->len; i++) { + guint16 sv_id; + + /* + * - For GPS: 1 to 32 + * - For SBAS: 33 to 64 + * - For GLONASS: 65 to 96 + * - For QZSS: 193 to 197 + * - For BDS: 201 to 237 + */ + sv_id = g_array_index (array, guint16, i); + g_print ("%u%s", sv_id, i == array->len - 1 ? "" : ","); + } + g_print ("\n"); + } else + g_print (" Satellites used: n/a\n"); + + if (qmi_indication_loc_position_report_output_get_altitude_assumed (output, &auxb, NULL)) + g_print (" Altitude assumed: %s\n", auxb ? "yes" : "no"); + else + g_print (" Altitude assumed: n/a\n"); + + /* Terminate GET request */ + if (get_position_report_flag) + operation_shutdown (TRUE); + + return; + } + + /* Otherwise, treat as error */ + g_printerr ("[position report] error: %s\n", qmi_loc_session_status_get_string (status)); + if (get_position_report_flag) + operation_shutdown (FALSE); +} + +static void +monitoring_step_ongoing (void) +{ + if (get_position_report_flag || follow_position_report_flag) + ctx->position_report_indication_id = g_signal_connect (ctx->client, + "position-report", + G_CALLBACK (position_report_received), + NULL); + + if (get_gnss_sv_info_flag || follow_gnss_sv_info_flag) + ctx->gnss_sv_info_indication_id = g_signal_connect (ctx->client, + "gnss-sv-info", + G_CALLBACK (gnss_sv_info_received), + NULL); + + if (follow_nmea_flag) + ctx->nmea_indication_id = g_signal_connect (ctx->client, + "nmea", + G_CALLBACK (nmea_received), + NULL); + + g_assert (ctx->position_report_indication_id || + ctx->gnss_sv_info_indication_id || + ctx->nmea_indication_id); +} + +static void +monitoring_step_setup_timeout (void) +{ + /* User can use Ctrl+C to cancel the monitoring at any time */ + g_cancellable_connect (ctx->cancellable, + G_CALLBACK (monitoring_cancelled), + NULL, + NULL); + + /* For non-follow requests, we also setup a timeout */ + if (get_position_report_flag || get_gnss_sv_info_flag) + ctx->timeout_id = g_timeout_add_seconds (timeout > 0 ? timeout : DEFAULT_LOC_TIMEOUT_SECS, + (GSourceFunc) monitoring_timed_out, + NULL); + + /* Go on */ + ctx->monitoring_step++; + monitoring_step_run (); +} + +static void +register_events_ready (QmiClientLoc *client, + GAsyncResult *res) +{ + QmiMessageLocRegisterEventsOutput *output; + GError *error = NULL; + + output = qmi_client_loc_register_events_finish (client, res, &error); + if (!output) { + g_printerr ("error: operation failed: %s\n", error->message); + g_error_free (error); + operation_shutdown (FALSE); + return; + } + + if (!qmi_message_loc_register_events_output_get_result (output, &error)) { + g_printerr ("error: could not register location tracking events: %s\n", error->message); + qmi_message_loc_register_events_output_unref (output); + g_error_free (error); + operation_shutdown (FALSE); + return; + } + + g_debug ("Registered location tracking events..."); + + /* Go on */ + ctx->monitoring_step++; + monitoring_step_run (); + + qmi_message_loc_register_events_output_unref (output); +} + +static void +monitoring_step_register_events (void) +{ + QmiMessageLocRegisterEventsInput *re_input; + QmiLocEventRegistrationFlag indication_mask = 0; + + /* Configure events to enable */ + + if (get_position_report_flag || follow_position_report_flag) + indication_mask |= QMI_LOC_EVENT_REGISTRATION_FLAG_POSITION_REPORT; + + if (get_gnss_sv_info_flag || follow_gnss_sv_info_flag) + indication_mask |= QMI_LOC_EVENT_REGISTRATION_FLAG_GNSS_SATELLITE_INFO; + + if (follow_nmea_flag) + indication_mask |= QMI_LOC_EVENT_REGISTRATION_FLAG_NMEA; + + g_assert (indication_mask); + + re_input = qmi_message_loc_register_events_input_new (); + qmi_message_loc_register_events_input_set_event_registration_mask ( + re_input, indication_mask, NULL); + qmi_client_loc_register_events (ctx->client, + re_input, + 10, + ctx->cancellable, + (GAsyncReadyCallback) register_events_ready, + NULL); + qmi_message_loc_register_events_input_unref (re_input); +} + +static void +monitoring_step_run (void) +{ + switch (ctx->monitoring_step) { + case MONITORING_STEP_FIRST: + ctx->monitoring_step++; + /* fall through */ + + case MONITORING_STEP_REGISTER_EVENTS: + monitoring_step_register_events (); + return; + + case MONITORING_STEP_SETUP_TIMEOUT: + monitoring_step_setup_timeout (); + return; + + case MONITORING_STEP_ONGOING: + monitoring_step_ongoing (); + return; + + default: + g_assert_not_reached(); + } +} + +static gboolean +delete_assistance_data_timed_out (void) +{ + ctx->timeout_id = 0; + g_printerr ("error: operation failed: timeout\n"); + operation_shutdown (FALSE); + return G_SOURCE_REMOVE; +} + +static void +delete_assistance_data_received (QmiClientLoc *client, + QmiIndicationLocDeleteAssistanceDataOutput *output) +{ + QmiLocIndicationStatus status; + GError *error = NULL; + + if (!qmi_indication_loc_delete_assistance_data_output_get_indication_status (output, &status, &error)) { + g_printerr ("Couldn't delete assistance data: %s\n", error->message); + g_error_free (error); + operation_shutdown (FALSE); + return; + } + + g_printerr ("Successfully deleted assistance data\n"); + operation_shutdown (TRUE); +} + +static void +delete_assistance_data_ready (QmiClientLoc *client, + GAsyncResult *res) +{ + QmiMessageLocDeleteAssistanceDataOutput *output; + GError *error = NULL; + + output = qmi_client_loc_delete_assistance_data_finish (client, res, &error); + if (!output) { + g_printerr ("error: operation failed: %s\n", error->message); + g_error_free (error); + operation_shutdown (FALSE); + return; + } + + if (!qmi_message_loc_delete_assistance_data_output_get_result (output, &error)) { + g_printerr ("error: could not delete assistance data: %s\n", error->message); + qmi_message_loc_delete_assistance_data_output_unref (output); + g_error_free (error); + operation_shutdown (FALSE); + return; + } + + /* Wait for response asynchronously */ + ctx->timeout_id = g_timeout_add_seconds (timeout > 0 ? timeout : DEFAULT_LOC_TIMEOUT_SECS, + (GSourceFunc) delete_assistance_data_timed_out, + NULL); + + ctx->delete_assistance_data_indication_id = g_signal_connect (ctx->client, + "delete-assistance-data", + G_CALLBACK (delete_assistance_data_received), + NULL); + + qmi_message_loc_delete_assistance_data_output_unref (output); +} + +static void +stop_ready (QmiClientLoc *client, + GAsyncResult *res) +{ + QmiMessageLocStopOutput *output; + GError *error = NULL; + + output = qmi_client_loc_stop_finish (client, res, &error); + if (!output) { + g_printerr ("error: operation failed: %s\n", error->message); + g_error_free (error); + operation_shutdown (FALSE); + return; + } + + if (!qmi_message_loc_stop_output_get_result (output, &error)) { + g_printerr ("error: could not stop location tracking: %s\n", error->message); + qmi_message_loc_stop_output_unref (output); + g_error_free (error); + operation_shutdown (FALSE); + return; + } + + g_print ("[%s] Successfully stopped location tracking (session id %u)\n", + qmi_device_get_path_display (ctx->device), session_id); + + qmi_message_loc_stop_output_unref (output); + operation_shutdown (TRUE); +} + +static void +start_ready (QmiClientLoc *client, + GAsyncResult *res) +{ + QmiMessageLocStartOutput *output; + GError *error = NULL; + + output = qmi_client_loc_start_finish (client, res, &error); + if (!output) { + g_printerr ("error: operation failed: %s\n", error->message); + g_error_free (error); + operation_shutdown (FALSE); + return; + } + + if (!qmi_message_loc_start_output_get_result (output, &error)) { + g_printerr ("error: could not start location tracking: %s\n", error->message); + qmi_message_loc_start_output_unref (output); + g_error_free (error); + operation_shutdown (FALSE); + return; + } + + g_print ("[%s] Successfully started location tracking (session id %u)\n", + qmi_device_get_path_display (ctx->device), session_id); + + qmi_message_loc_start_output_unref (output); + operation_shutdown (TRUE); +} + +static gboolean +noop_cb (gpointer unused) +{ + operation_shutdown (TRUE); + return G_SOURCE_REMOVE; +} + +void +qmicli_loc_run (QmiDevice *device, + QmiClientLoc *client, + GCancellable *cancellable) +{ + /* Initialize context */ + ctx = g_slice_new0 (Context); + ctx->device = g_object_ref (device); + ctx->client = g_object_ref (client); + ctx->cancellable = g_object_ref (cancellable); + + /* Request to start location gathering? */ + if (start_flag) { + QmiMessageLocStartInput *input; + + input = qmi_message_loc_start_input_new (); + qmi_message_loc_start_input_set_session_id (input, (guint8) session_id, NULL); + qmi_message_loc_start_input_set_intermediate_report_state (input, QMI_LOC_INTERMEDIATE_REPORT_STATE_ENABLE, NULL); + qmi_message_loc_start_input_set_minimum_interval_between_position_reports (input, 1000, NULL); + qmi_message_loc_start_input_set_fix_recurrence_type (input, QMI_LOC_FIX_RECURRENCE_TYPE_REQUEST_PERIODIC_FIXES, NULL); + qmi_client_loc_start (ctx->client, + input, + 10, + ctx->cancellable, + (GAsyncReadyCallback) start_ready, + NULL); + qmi_message_loc_start_input_unref (input); + return; + } + + /* Request to stop location gathering? */ + if (stop_flag) { + QmiMessageLocStopInput *input; + + input = qmi_message_loc_stop_input_new (); + qmi_message_loc_stop_input_set_session_id (input, (guint8) session_id, NULL); + qmi_client_loc_stop (ctx->client, + input, + 10, + ctx->cancellable, + (GAsyncReadyCallback) stop_ready, + NULL); + qmi_message_loc_stop_input_unref (input); + return; + } + + /* Delete assistance data */ + if (delete_assistance_data_flag) { + QmiMessageLocDeleteAssistanceDataInput *input; + + input = qmi_message_loc_delete_assistance_data_input_new (); + qmi_message_loc_delete_assistance_data_input_set_delete_all (input, TRUE, NULL); + qmi_client_loc_delete_assistance_data (ctx->client, + input, + 10, + ctx->cancellable, + (GAsyncReadyCallback) delete_assistance_data_ready, + NULL); + qmi_message_loc_delete_assistance_data_input_unref (input); + return; + } + + /* All the remaining actions require monitoring */ + if (get_position_report_flag || get_gnss_sv_info_flag || follow_position_report_flag || follow_gnss_sv_info_flag || follow_nmea_flag) { + ctx->monitoring_step = MONITORING_STEP_FIRST; + monitoring_step_run (); + return; + } + + /* Just client allocate/release? */ + if (noop_flag) { + g_idle_add (noop_cb, NULL); + return; + } + + g_warn_if_reached (); +} diff -Nru libqmi-1.18.0/src/qmicli/qmicli-nas.c libqmi-1.22.0/src/qmicli/qmicli-nas.c --- libqmi-1.18.0/src/qmicli/qmicli-nas.c 2017-03-21 14:26:54.000000000 +0100 +++ libqmi-1.22.0/src/qmicli/qmicli-nas.c 2019-01-08 14:09:47.000000000 +0100 @@ -1953,7 +1953,7 @@ static void get_system_selection_preference_ready (QmiClientNas *client, - GAsyncResult *res) + GAsyncResult *res) { QmiMessageNasGetSystemSelectionPreferenceOutput *output; GError *error = NULL; @@ -1969,7 +1969,9 @@ QmiNasGsmWcdmaAcquisitionOrderPreference gsm_wcdma_acquisition_order_preference; guint16 mcc; guint16 mnc; + guint64 extended_lte_band_preference[4]; gboolean has_pcs_digit; + GArray *acquisition_order_preference; output = qmi_client_nas_get_system_selection_preference_finish (client, res, &error); if (!output) { @@ -2031,6 +2033,36 @@ g_free (str); } + if (qmi_message_nas_get_system_selection_preference_output_get_extended_lte_band_preference ( + output, + &extended_lte_band_preference[0], + &extended_lte_band_preference[1], + &extended_lte_band_preference[2], + &extended_lte_band_preference[3], + NULL)) { + guint i; + gboolean first = TRUE; + + g_print ("\tLTE band preference (extended): '"); + for (i = 0; i < G_N_ELEMENTS (extended_lte_band_preference); i++) { + guint j; + + for (j = 0; j < 64; j++) { + guint band; + + if (!(extended_lte_band_preference[i] & (((guint64) 1) << j))) + continue; + band = 1 + j + (i * 64); + if (first) { + g_print ("%u", band); + first = FALSE; + } else + g_print (", %u", band); + } + } + g_print ("'\n"); + } + if (qmi_message_nas_get_system_selection_preference_output_get_td_scdma_band_preference ( output, &td_scdma_band_preference, @@ -2079,7 +2111,7 @@ output, &gsm_wcdma_acquisition_order_preference, NULL)) { - g_print ("\tService selection preference: '%s'\n", + g_print ("\tGSM/WCDMA acquisition order preference: '%s'\n", qmi_nas_gsm_wcdma_acquisition_order_preference_get_string (gsm_wcdma_acquisition_order_preference)); } @@ -2098,6 +2130,24 @@ has_pcs_digit ? "yes" : "no"); } + if (qmi_message_nas_get_system_selection_preference_output_get_acquisition_order_preference ( + output, + &acquisition_order_preference, + NULL)) { + guint i; + + g_print ("\tAcquisition order preference: "); + for (i = 0; i < acquisition_order_preference->len; i++) { + QmiNasRadioInterface radio_interface; + + radio_interface = g_array_index (acquisition_order_preference, QmiNasRadioInterface, i); + g_print ("%s%s", + i > 0 ? ", " : "", + qmi_nas_radio_interface_get_string (radio_interface)); + } + g_print ("\n"); + } + qmi_message_nas_get_system_selection_preference_output_unref (output); operation_shutdown (TRUE); } @@ -2106,52 +2156,45 @@ set_system_selection_preference_input_create (const gchar *str) { QmiMessageNasSetSystemSelectionPreferenceInput *input = NULL; - QmiNasRatModePreference pref; - GError *error = NULL; + QmiNasRatModePreference rat_mode_preference; + GArray *acquisition_order; + GError *error = NULL; - if (!qmicli_read_rat_mode_pref_from_string (str, &pref)) { - g_printerr ("error: failed to parse mode pref\n"); + if (!qmicli_read_ssp_options_from_string (str, &rat_mode_preference, &acquisition_order)) { + g_printerr ("error: failed to parse system selection preference options\n"); return NULL; } input = qmi_message_nas_set_system_selection_preference_input_new (); - if (!qmi_message_nas_set_system_selection_preference_input_set_mode_preference ( - input, - pref, - &error)) { - g_printerr ("error: couldn't create input data bundle: '%s'\n", - error->message); - g_error_free (error); - qmi_message_nas_set_system_selection_preference_input_unref (input); - return NULL; - } - if (!qmi_message_nas_set_system_selection_preference_input_set_change_duration ( + if (!qmi_message_nas_set_system_selection_preference_input_set_change_duration (input, QMI_NAS_CHANGE_DURATION_PERMANENT, &error)) + goto out; + + if (rat_mode_preference && !qmi_message_nas_set_system_selection_preference_input_set_mode_preference (input, rat_mode_preference, &error)) + goto out; + + if ((rat_mode_preference & (QMI_NAS_RAT_MODE_PREFERENCE_GSM | QMI_NAS_RAT_MODE_PREFERENCE_UMTS | QMI_NAS_RAT_MODE_PREFERENCE_LTE)) && + (!qmi_message_nas_set_system_selection_preference_input_set_gsm_wcdma_acquisition_order_preference ( input, - QMI_NAS_CHANGE_DURATION_PERMANENT, - &error)) { - g_printerr ("error: couldn't create input data bundle: '%s'\n", - error->message); + QMI_NAS_GSM_WCDMA_ACQUISITION_ORDER_PREFERENCE_AUTOMATIC, + &error))) + goto out; + + if (acquisition_order && !qmi_message_nas_set_system_selection_preference_input_set_acquisition_order_preference (input, acquisition_order, &error)) + goto out; + +out: + + if (acquisition_order) + g_array_unref (acquisition_order); + + if (error) { + g_printerr ("error: couldn't create input data bundle: '%s'\n", error->message); g_error_free (error); qmi_message_nas_set_system_selection_preference_input_unref (input); return NULL; } - if (pref & (QMI_NAS_RAT_MODE_PREFERENCE_GSM | - QMI_NAS_RAT_MODE_PREFERENCE_UMTS | - QMI_NAS_RAT_MODE_PREFERENCE_LTE)) { - if (!qmi_message_nas_set_system_selection_preference_input_set_gsm_wcdma_acquisition_order_preference ( - input, - QMI_NAS_GSM_WCDMA_ACQUISITION_ORDER_PREFERENCE_AUTOMATIC, - &error)) { - g_printerr ("error: couldn't create input data bundle: '%s'\n", - error->message); - g_error_free (error); - qmi_message_nas_set_system_selection_preference_input_unref (input); - return NULL; - } - } - return input; } @@ -2992,6 +3035,7 @@ QmiNasActiveBand band; QmiNasScellState state; guint8 scell_index; + GArray *array; output = qmi_client_nas_get_lte_cphy_ca_info_finish (client, res, &error); if (!output) { @@ -3020,26 +3064,6 @@ qmi_nas_dl_bandwidth_get_string (dl_bandwidth)); } - if (qmi_message_nas_get_lte_cphy_ca_info_output_get_phy_ca_agg_scell_info ( - output, - &pci, - &channel, - &dl_bandwidth, - &band, - &state, - NULL)) { - g_print ("Secondary Cell Info\n"); - g_print ("\tPhysical Cell ID: '%" G_GUINT16_FORMAT"'\n" - "\tRX Channel: '%" G_GUINT16_FORMAT"'\n" - "\tDL Bandwidth: '%s'\n" - "\tLTE Band: '%s'\n" - "\tState: '%s'\n", - pci, channel, - qmi_nas_dl_bandwidth_get_string (dl_bandwidth), - qmi_nas_active_band_get_string (band), - qmi_nas_scell_state_get_string (state)); - } - if (qmi_message_nas_get_lte_cphy_ca_info_output_get_phy_ca_agg_pcell_info ( output, &pci, @@ -3057,11 +3081,56 @@ qmi_nas_active_band_get_string (band)); } - if (qmi_message_nas_get_lte_cphy_ca_info_output_get_scell_index ( - output, - &scell_index, - NULL)) { - g_print ("Secondary Cell index: '%u'\n", scell_index); + if (qmi_message_nas_get_lte_cphy_ca_info_output_get_phy_ca_agg_secondary_cells ( + output, &array, NULL)) { + guint i; + + if (!array->len) + g_print ("No Secondary Cells\n"); + for (i = 0; i < array->len; i++) { + QmiMessageNasGetLteCphyCaInfoOutputPhyCaAggSecondaryCellsSsc *e; + e = &g_array_index (array, QmiMessageNasGetLteCphyCaInfoOutputPhyCaAggSecondaryCellsSsc, i); + g_print ("Secondary Cell %u Info\n" + "\tPhysical Cell ID: '%" G_GUINT16_FORMAT"'\n" + "\tRX Channel: '%" G_GUINT16_FORMAT"'\n" + "\tDL Bandwidth: '%s'\n" + "\tLTE Band: '%s'\n" + "\tState: '%s'\n" + "\tCell index: '%u'\n", + i + 1, e->physical_cell_id, e->rx_channel, + qmi_nas_dl_bandwidth_get_string (e->dl_bandwidth), + qmi_nas_active_band_get_string (e->lte_band), + qmi_nas_scell_state_get_string (e->state), + e->cell_index); + } + + } else { + if (qmi_message_nas_get_lte_cphy_ca_info_output_get_phy_ca_agg_scell_info ( + output, + &pci, + &channel, + &dl_bandwidth, + &band, + &state, + NULL)) { + g_print ("Secondary Cell Info\n"); + g_print ("\tPhysical Cell ID: '%" G_GUINT16_FORMAT"'\n" + "\tRX Channel: '%" G_GUINT16_FORMAT"'\n" + "\tDL Bandwidth: '%s'\n" + "\tLTE Band: '%s'\n" + "\tState: '%s'\n", + pci, channel, + qmi_nas_dl_bandwidth_get_string (dl_bandwidth), + qmi_nas_active_band_get_string (band), + qmi_nas_scell_state_get_string (state)); + } + + if (qmi_message_nas_get_lte_cphy_ca_info_output_get_scell_index ( + output, + &scell_index, + NULL)) { + g_print ("Secondary Cell index: '%u'\n", scell_index); + } } qmi_message_nas_get_lte_cphy_ca_info_output_unref (output); @@ -3207,8 +3276,7 @@ ctx = g_slice_new (Context); ctx->device = g_object_ref (device); ctx->client = g_object_ref (client); - if (cancellable) - ctx->cancellable = g_object_ref (cancellable); + ctx->cancellable = g_object_ref (cancellable); /* Request to get signal strength? */ if (get_signal_strength_flag) { diff -Nru libqmi-1.18.0/src/qmicli/qmicli-pdc.c libqmi-1.22.0/src/qmicli/qmicli-pdc.c --- libqmi-1.18.0/src/qmicli/qmicli-pdc.c 2017-03-21 14:26:54.000000000 +0100 +++ libqmi-1.22.0/src/qmicli/qmicli-pdc.c 2019-01-08 14:09:47.000000000 +0100 @@ -158,6 +158,11 @@ exit (EXIT_FAILURE); } + /* Actions that require receiving QMI indication messages must specify that + * indications are expected. */ + if (list_configs_str || activate_config_str || deactivate_config_str || load_config_str) + qmicli_expect_indications(); + checked = TRUE; return !!n_actions; } diff -Nru libqmi-1.18.0/src/qmicli/qmicli-qos.c libqmi-1.22.0/src/qmicli/qmicli-qos.c --- libqmi-1.18.0/src/qmicli/qmicli-qos.c 1970-01-01 01:00:00.000000000 +0100 +++ libqmi-1.22.0/src/qmicli/qmicli-qos.c 2019-01-08 14:09:47.000000000 +0100 @@ -0,0 +1,398 @@ +/* -*- Mode: C; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */ +/* + * qmicli -- Command line interface to control QMI devices + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation, either version 2 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program. If not, see . + * + * Copyright (C) 2018 Aleksander Morgado + */ + +#include "config.h" + +#include +#include +#include +#include + +#include +#include + +#include + +#include "qmicli.h" +#include "qmicli-helpers.h" + +#undef VALIDATE_UNKNOWN +#define VALIDATE_UNKNOWN(str) (str ? str : "unknown") + +/* Context */ +typedef struct { + QmiDevice *device; + QmiClientQos *client; + GCancellable *cancellable; +} Context; +static Context *ctx; + +/* Options */ +static gint get_flow_status_int = -1; +static gboolean get_network_status_flag; +static gint swi_read_data_stats_int = -1; +static gboolean reset_flag; +static gboolean noop_flag; + +static GOptionEntry entries[] = { + { "qos-get-flow-status", 0, 0, G_OPTION_ARG_INT, &get_flow_status_int, + "Get QoS flow status", + "[QoS ID]" + }, + { "qos-get-network-status", 0, 0, G_OPTION_ARG_NONE, &get_network_status_flag, + "Gets the network status", + NULL + }, + { "qos-swi-read-data-stats", 0, 0, G_OPTION_ARG_INT, &swi_read_data_stats_int, + "Read data stats (Sierra Wireless specific)", + "[APN ID]" + }, + { "qos-reset", 0, 0, G_OPTION_ARG_NONE, &reset_flag, + "Reset the service state", + NULL + }, + { "qos-noop", 0, 0, G_OPTION_ARG_NONE, &noop_flag, + "Just allocate or release a QOS client. Use with `--client-no-release-cid' and/or `--client-cid'", + NULL + }, + { NULL } +}; + +GOptionGroup * +qmicli_qos_get_option_group (void) +{ + GOptionGroup *group; + + group = g_option_group_new ("qos", + "QoS options", + "Show Quality of Service options", + NULL, + NULL); + g_option_group_add_entries (group, entries); + + return group; +} + +gboolean +qmicli_qos_options_enabled (void) +{ + static guint n_actions = 0; + static gboolean checked = FALSE; + + if (checked) + return !!n_actions; + + n_actions = ((get_flow_status_int >= 0) + + get_network_status_flag + + (swi_read_data_stats_int >= 0) + + reset_flag + + noop_flag); + + if (n_actions > 1) { + g_printerr ("error: too many QoS actions requested\n"); + exit (EXIT_FAILURE); + } + + checked = TRUE; + return !!n_actions; +} + +static void +context_free (Context *context) +{ + if (!context) + return; + + if (context->cancellable) + g_object_unref (context->cancellable); + if (context->device) + g_object_unref (context->device); + if (context->client) + g_object_unref (context->client); + g_slice_free (Context, context); +} + +static void +operation_shutdown (gboolean operation_status) +{ + /* Cleanup context and finish async operation */ + context_free (ctx); + qmicli_async_operation_done (operation_status, FALSE); +} + +static void +get_flow_status_ready (QmiClientQos *client, + GAsyncResult *res) +{ + QmiMessageQosGetFlowStatusOutput *output; + GError *error = NULL; + QmiQosStatus flow_status; + + output = qmi_client_qos_get_flow_status_finish (client, res, &error); + if (!output) { + g_printerr ("error: operation failed: %s\n", error->message); + g_error_free (error); + operation_shutdown (FALSE); + return; + } + + if (!qmi_message_qos_get_flow_status_output_get_result (output, &error)) { + g_printerr ("error: couldn't get QoS flow status: %s\n", error->message); + g_error_free (error); + qmi_message_qos_get_flow_status_output_unref (output); + operation_shutdown (FALSE); + return; + } + + qmi_message_qos_get_flow_status_output_get_value (output, &flow_status, NULL); + + g_print ("[%s] QoS flow status: %s\n", + qmi_device_get_path_display (ctx->device), + qmi_qos_status_get_string (flow_status)); + + qmi_message_qos_get_flow_status_output_unref (output); + operation_shutdown (TRUE); +} + +static void +get_network_status_ready (QmiClientQos *client, + GAsyncResult *res) +{ + QmiMessageQosGetNetworkStatusOutput *output; + GError *error = NULL; + gboolean qos_supported; + + output = qmi_client_qos_get_network_status_finish (client, res, &error); + if (!output) { + g_printerr ("error: operation failed: %s\n", error->message); + g_error_free (error); + operation_shutdown (FALSE); + return; + } + + if (!qmi_message_qos_get_network_status_output_get_result (output, &error)) { + g_printerr ("error: couldn't get network status: %s\n", error->message); + g_error_free (error); + qmi_message_qos_get_network_status_output_unref (output); + operation_shutdown (FALSE); + return; + } + + qmi_message_qos_get_network_status_output_get_qos_supported (output, &qos_supported, NULL); + + g_print ("[%s] QoS %ssupported in network\n", + qmi_device_get_path_display (ctx->device), + qos_supported ? "" : "not "); + + qmi_message_qos_get_network_status_output_unref (output); + operation_shutdown (TRUE); +} + +static void +swi_read_data_stats_ready (QmiClientQos *client, + GAsyncResult *res) +{ + QmiMessageQosSwiReadDataStatsOutput *output; + GError *error = NULL; + guint32 apn_id = 0; + guint32 apn_tx_packets = 0; + guint32 apn_tx_packets_dropped = 0; + guint32 apn_rx_packets = 0; + guint64 apn_tx_bytes = 0; + guint64 apn_tx_bytes_dropped = 0; + guint64 apn_rx_bytes = 0; + GArray *flow = NULL; + + output = qmi_client_qos_swi_read_data_stats_finish (client, res, &error); + if (!output) { + g_printerr ("error: operation failed: %s\n", error->message); + g_error_free (error); + operation_shutdown (FALSE); + return; + } + + if (!qmi_message_qos_swi_read_data_stats_output_get_result (output, &error)) { + g_printerr ("error: couldn't read data stats: %s\n", error->message); + g_error_free (error); + qmi_message_qos_swi_read_data_stats_output_unref (output); + operation_shutdown (FALSE); + return; + } + + g_print ("[%s] QoS data stats read\n", + qmi_device_get_path_display (ctx->device)); + + if (qmi_message_qos_swi_read_data_stats_output_get_apn ( + output, + &apn_id, + &apn_tx_packets, + &apn_tx_packets_dropped, + &apn_rx_packets, + &apn_tx_bytes, + &apn_tx_bytes_dropped, + &apn_rx_bytes, + NULL)) { + g_print (" APN ID: %u\n", apn_id); + g_print (" TX packets: %u\n", apn_tx_packets); + g_print (" TX packets dropped: %u\n", apn_tx_packets_dropped); + g_print (" RX packets: %u\n", apn_rx_packets); + g_print (" TX bytes: %" G_GUINT64_FORMAT "\n", apn_tx_bytes); + g_print (" TX bytes dropped: %" G_GUINT64_FORMAT "\n", apn_tx_bytes_dropped); + g_print (" RX bytes: %" G_GUINT64_FORMAT "\n", apn_rx_bytes); + } + + if (qmi_message_qos_swi_read_data_stats_output_get_flow ( + output, + &flow, + NULL)) { + guint i; + + for (i = 0; i < flow->len; i++) { + QmiMessageQosSwiReadDataStatsOutputFlowElement *element; + + element = &g_array_index(flow, QmiMessageQosSwiReadDataStatsOutputFlowElement, i); + + g_print (" Flow %u\n", i); + g_print (" Bearer ID: %u\n", element->bearer_id); + g_print (" TX packets: %u\n", element->tx_packets); + g_print (" TX packets dropped: %u\n", element->tx_packets_dropped); + g_print (" TX bytes: %" G_GUINT64_FORMAT "\n", element->tx_bytes); + g_print (" TX bytes dropped: %" G_GUINT64_FORMAT "\n", element->tx_bytes_dropped); + } + } + + qmi_message_qos_swi_read_data_stats_output_unref (output); + operation_shutdown (TRUE); +} + +static void +reset_ready (QmiClientQos *client, + GAsyncResult *res) +{ + QmiMessageQosResetOutput *output; + GError *error = NULL; + + output = qmi_client_qos_reset_finish (client, res, &error); + if (!output) { + g_printerr ("error: operation failed: %s\n", error->message); + g_error_free (error); + operation_shutdown (FALSE); + return; + } + + if (!qmi_message_qos_reset_output_get_result (output, &error)) { + g_printerr ("error: couldn't reset the QoS service: %s\n", error->message); + g_error_free (error); + qmi_message_qos_reset_output_unref (output); + operation_shutdown (FALSE); + return; + } + + g_print ("[%s] Successfully performed QoS service reset\n", + qmi_device_get_path_display (ctx->device)); + + qmi_message_qos_reset_output_unref (output); + operation_shutdown (TRUE); +} + +static gboolean +noop_cb (gpointer unused) +{ + operation_shutdown (TRUE); + return FALSE; +} + +void +qmicli_qos_run (QmiDevice *device, + QmiClientQos *client, + GCancellable *cancellable) +{ + /* Initialize context */ + ctx = g_slice_new (Context); + ctx->device = g_object_ref (device); + ctx->client = g_object_ref (client); + ctx->cancellable = g_object_ref (cancellable); + + /* Request to get QoS flow status? */ + if (get_flow_status_int >= 0) { + QmiMessageQosGetFlowStatusInput *input; + + input = qmi_message_qos_get_flow_status_input_new (); + qmi_message_qos_get_flow_status_input_set_qos_id (input, get_flow_status_int, NULL); + g_debug ("Asynchronously getting QoS flow status..."); + qmi_client_qos_get_flow_status (ctx->client, + input, + 10, + ctx->cancellable, + (GAsyncReadyCallback)get_flow_status_ready, + NULL); + qmi_message_qos_get_flow_status_input_unref (input); + return; + } + + /* Request to get network status? */ + if (get_network_status_flag) { + g_debug ("Asynchronously getting network status..."); + qmi_client_qos_get_network_status (ctx->client, + NULL, + 10, + ctx->cancellable, + (GAsyncReadyCallback)get_network_status_ready, + NULL); + return; + } + + /* Request to read data stats? */ + if (swi_read_data_stats_int >= 0) { + QmiMessageQosSwiReadDataStatsInput *input; + + input = qmi_message_qos_swi_read_data_stats_input_new (); + qmi_message_qos_swi_read_data_stats_input_set_apn_id (input, swi_read_data_stats_int, NULL); + g_debug ("Asynchronously reading data stats..."); + qmi_client_qos_swi_read_data_stats (ctx->client, + input, + 10, + ctx->cancellable, + (GAsyncReadyCallback)swi_read_data_stats_ready, + NULL); + qmi_message_qos_swi_read_data_stats_input_unref (input); + return; + } + + /* Request to reset QoS service? */ + if (reset_flag) { + g_debug ("Asynchronously resetting QoS service..."); + qmi_client_qos_reset (ctx->client, + NULL, + 10, + ctx->cancellable, + (GAsyncReadyCallback)reset_ready, + NULL); + return; + } + + /* Just client allocate/release? */ + if (noop_flag) { + g_idle_add (noop_cb, NULL); + return; + } + + g_warn_if_reached (); +} diff -Nru libqmi-1.18.0/src/qmicli/qmicli-uim.c libqmi-1.22.0/src/qmicli/qmicli-uim.c --- libqmi-1.18.0/src/qmicli/qmicli-uim.c 2017-03-21 14:26:54.000000000 +0100 +++ libqmi-1.22.0/src/qmicli/qmicli-uim.c 2019-01-08 14:09:47.000000000 +0100 @@ -43,6 +43,7 @@ /* Options */ static gchar *read_transparent_str; +static gchar *read_record_str; static gchar *set_pin_protection_str; static gchar *verify_pin_str; static gchar *unblock_pin_str; @@ -80,6 +81,10 @@ "Get the attributes of a given file", "[0xNNNN,0xNNNN,...]" }, + { "uim-read-record", 0, 0, G_OPTION_ARG_STRING, &read_record_str, + "Read a record from given file (allowed keys: record-number, record-length, file ([0xNNNN-0xNNNN,...])", + "[\"key=value,...\"]" + }, { "uim-get-card-status", 0, 0, G_OPTION_ARG_NONE, &get_card_status_flag, "Get card status", NULL @@ -136,6 +141,7 @@ !!unblock_pin_str + !!change_pin_str + !!read_transparent_str + + !!read_record_str + !!get_file_attributes_str + !!sim_power_on_str + !!sim_power_off_str + @@ -192,6 +198,9 @@ qmicli_read_enable_disable_from_string (split[1], &enable_disable) && qmicli_read_non_empty_string (split[2], "current PIN", ¤t_pin)) { GError *error = NULL; + GArray *dummy_aid; + + dummy_aid = g_array_new (FALSE, FALSE, sizeof (guint8)); input = qmi_message_uim_set_pin_protection_input_new (); if (!qmi_message_uim_set_pin_protection_input_set_info ( @@ -200,10 +209,10 @@ enable_disable, current_pin, &error) || - !qmi_message_uim_set_pin_protection_input_set_session_information ( + !qmi_message_uim_set_pin_protection_input_set_session ( input, QMI_UIM_SESSION_TYPE_CARD_SLOT_1, - "", /* ignored */ + dummy_aid, /* ignored */ &error)) { g_printerr ("error: couldn't create input data bundle: '%s'\n", error->message); @@ -211,6 +220,7 @@ qmi_message_uim_set_pin_protection_input_unref (input); input = NULL; } + g_array_unref (dummy_aid); } g_strfreev (split); @@ -280,6 +290,9 @@ if (qmicli_read_uim_pin_id_from_string (split[0], &pin_id) && qmicli_read_non_empty_string (split[1], "current PIN", ¤t_pin)) { GError *error = NULL; + GArray *dummy_aid; + + dummy_aid = g_array_new (FALSE, FALSE, sizeof (guint8)); input = qmi_message_uim_verify_pin_input_new (); if (!qmi_message_uim_verify_pin_input_set_info ( @@ -287,10 +300,10 @@ pin_id, current_pin, &error) || - !qmi_message_uim_verify_pin_input_set_session_information ( + !qmi_message_uim_verify_pin_input_set_session ( input, QMI_UIM_SESSION_TYPE_CARD_SLOT_1, - "", /* ignored */ + dummy_aid, /* ignored */ &error)) { g_printerr ("error: couldn't create input data bundle: '%s'\n", error->message); @@ -298,6 +311,7 @@ qmi_message_uim_verify_pin_input_unref (input); input = NULL; } + g_array_unref (dummy_aid); } g_strfreev (split); @@ -369,6 +383,9 @@ qmicli_read_non_empty_string (split[1], "PUK", &puk) && qmicli_read_non_empty_string (split[2], "new PIN", &new_pin)) { GError *error = NULL; + GArray *dummy_aid; + + dummy_aid = g_array_new (FALSE, FALSE, sizeof (guint8)); input = qmi_message_uim_unblock_pin_input_new (); if (!qmi_message_uim_unblock_pin_input_set_info ( @@ -377,10 +394,10 @@ puk, new_pin, &error) || - !qmi_message_uim_unblock_pin_input_set_session_information ( + !qmi_message_uim_unblock_pin_input_set_session ( input, QMI_UIM_SESSION_TYPE_CARD_SLOT_1, - "", /* ignored */ + dummy_aid, /* ignored */ &error)) { g_printerr ("error: couldn't create input data bundle: '%s'\n", error->message); @@ -388,6 +405,7 @@ qmi_message_uim_unblock_pin_input_unref (input); input = NULL; } + g_array_unref (dummy_aid); } g_strfreev (split); @@ -459,6 +477,9 @@ qmicli_read_non_empty_string (split[1], "old PIN", &old_pin) && qmicli_read_non_empty_string (split[2], "new PIN", &new_pin)) { GError *error = NULL; + GArray *dummy_aid; + + dummy_aid = g_array_new (FALSE, FALSE, sizeof (guint8)); input = qmi_message_uim_change_pin_input_new (); if (!qmi_message_uim_change_pin_input_set_info ( @@ -467,10 +488,10 @@ old_pin, new_pin, &error) || - !qmi_message_uim_change_pin_input_set_session_information ( + !qmi_message_uim_change_pin_input_set_session ( input, QMI_UIM_SESSION_TYPE_CARD_SLOT_1, - "", /* ignored */ + dummy_aid, /* ignored */ &error)) { g_printerr ("error: couldn't create input data bundle: '%s'\n", error->message); @@ -478,6 +499,7 @@ qmi_message_uim_change_pin_input_unref (input); input = NULL; } + g_array_unref (dummy_aid); } g_strfreev (split); @@ -763,29 +785,29 @@ g_print ("\tPrimary GW: session doesn't exist\n"); else g_print ("\tPrimary GW: slot '%u', application '%u'\n", - ((index_gw_primary & 0xFF00) >> 8), - ((index_gw_primary & 0x00FF))); + ((index_gw_primary & 0xFF00) >> 8) + 1, + ((index_gw_primary & 0x00FF)) + 1); if (index_1x_primary == 0xFFFF) g_print ("\tPrimary 1X: session doesn't exist\n"); else g_print ("\tPrimary 1X: slot '%u', application '%u'\n", - ((index_1x_primary & 0xFF00) >> 8), - ((index_1x_primary & 0x00FF))); + ((index_1x_primary & 0xFF00) >> 8) + 1, + ((index_1x_primary & 0x00FF)) + 1); if (index_gw_secondary == 0xFFFF) g_print ("\tSecondary GW: session doesn't exist\n"); else g_print ("\tSecondary GW: slot '%u', application '%u'\n", - ((index_gw_secondary & 0xFF00) >> 8), - ((index_gw_secondary & 0x00FF))); + ((index_gw_secondary & 0xFF00) >> 8) + 1, + ((index_gw_secondary & 0x00FF)) + 1); if (index_1x_secondary == 0xFFFF) g_print ("\tSecondary 1X: session doesn't exist\n"); else g_print ("\tSecondary 1X: slot '%u', application '%u'\n", - ((index_1x_secondary & 0xFF00) >> 8), - ((index_1x_secondary & 0x00FF))); + ((index_1x_secondary & 0xFF00) >> 8) + 1, + ((index_1x_secondary & 0x00FF)) + 1); for (i = 0; i < cards->len; i++) { QmiMessageUimGetCardStatusOutputCardStatusCardsElement *card; @@ -793,7 +815,7 @@ card = &g_array_index (cards, QmiMessageUimGetCardStatusOutputCardStatusCardsElement, i); - g_print ("Card [%u]:\n", i); + g_print ("Slot [%u]:\n", i + 1); if (card->card_state != QMI_UIM_CARD_STATE_ERROR) g_print ("\tCard state: '%s'\n", @@ -823,7 +845,7 @@ "\t\tApplication state: '%s'\n" "\t\tApplication ID:\n" "\t\t\t%s", - j, + j + 1, VALIDATE_UNKNOWN (qmi_uim_card_application_type_get_string (app->type)), app->type, qmi_uim_card_application_state_get_string (app->state), str); @@ -865,14 +887,15 @@ } static gboolean -get_sim_file_id_and_path (const gchar *file_path_str, - guint16 *file_id, - GArray **file_path) +get_sim_file_id_and_path_with_separator (const gchar *file_path_str, + guint16 *file_id, + GArray **file_path, + const gchar *separator) { guint i; gchar **split; - split = g_strsplit (file_path_str, ",", -1); + split = g_strsplit (file_path_str, separator, -1); if (!split) { g_printerr ("error: invalid file path given: '%s'\n", file_path_str); return FALSE; @@ -914,6 +937,14 @@ return TRUE; } +static gboolean +get_sim_file_id_and_path (const gchar *file_path_str, + guint16 *file_id, + GArray **file_path) +{ + return get_sim_file_id_and_path_with_separator (file_path_str, file_id, file_path, ","); +} + static void read_transparent_ready (QmiClientUim *client, GAsyncResult *res) @@ -992,15 +1023,18 @@ QmiMessageUimReadTransparentInput *input; guint16 file_id = 0; GArray *file_path = NULL; + GArray *dummy_aid; if (!get_sim_file_id_and_path (file_path_str, &file_id, &file_path)) return NULL; + dummy_aid = g_array_new (FALSE, FALSE, sizeof (guint8)); + input = qmi_message_uim_read_transparent_input_new (); - qmi_message_uim_read_transparent_input_set_session_information ( + qmi_message_uim_read_transparent_input_set_session ( input, QMI_UIM_SESSION_TYPE_PRIMARY_GW_PROVISIONING, - "", + dummy_aid, /* ignored */ NULL); qmi_message_uim_read_transparent_input_set_file ( input, @@ -1009,6 +1043,181 @@ NULL); qmi_message_uim_read_transparent_input_set_read_information (input, 0, 0, NULL); g_array_unref (file_path); + g_array_unref (dummy_aid); + return input; +} + +static void +read_record_ready (QmiClientUim *client, + GAsyncResult *res) +{ + QmiMessageUimReadRecordOutput *output; + GError *error = NULL; + guint8 sw1 = 0; + guint8 sw2 = 0; + GArray *read_result = NULL; + + output = qmi_client_uim_read_record_finish (client, res, &error); + if (!output) { + g_printerr ("error: operation failed: %s\n", error->message); + g_error_free (error); + operation_shutdown (FALSE); + return; + } + + if (!qmi_message_uim_read_record_output_get_result (output, &error)) { + g_printerr ("error: couldn't read record file from the UIM: %s\n", error->message); + g_error_free (error); + + /* Card result */ + if (qmi_message_uim_read_record_output_get_card_result ( + output, + &sw1, + &sw2, + NULL)) { + g_print ("Card result:\n" + "\tSW1: '0x%02x'\n" + "\tSW2: '0x%02x'\n", + sw1, sw2); + } + + qmi_message_uim_read_record_output_unref (output); + operation_shutdown (FALSE); + return; + } + + g_print ("[%s] Successfully read information from the UIM:\n", + qmi_device_get_path_display (ctx->device)); + + /* Card result */ + if (qmi_message_uim_read_record_output_get_card_result ( + output, + &sw1, + &sw2, + NULL)) { + g_print ("Card result:\n" + "\tSW1: '0x%02x'\n" + "\tSW2: '0x%02x'\n", + sw1, sw2); + } + + /* Read result */ + if (qmi_message_uim_read_record_output_get_read_result ( + output, + &read_result, + NULL)) { + gchar *str; + + str = qmicli_get_raw_data_printable (read_result, 80, "\t"); + g_print ("Read result:\n" + "%s\n", + str); + g_free (str); + } + + qmi_message_uim_read_record_output_unref (output); + operation_shutdown (TRUE); +} + +typedef struct { + char *file; + guint16 record_number; + guint16 record_length; +} SetReadRecordProperties; + +static gboolean +set_read_record_properties_handle (const gchar *key, + const gchar *value, + GError **error, + gpointer user_data) +{ + SetReadRecordProperties *props = (SetReadRecordProperties *) user_data; + + if (!value || !value[0]) { + g_set_error (error, + QMI_CORE_ERROR, + QMI_CORE_ERROR_FAILED, + "key '%s' requires a value", + key); + return FALSE; + } + + if (g_ascii_strcasecmp (key, "file") == 0) { + props->file = strdup(value); + return TRUE; + } + + if (g_ascii_strcasecmp (key, "record-number") == 0) { + props->record_number = (guint16) atoi(value); + return TRUE; + } + + if (g_ascii_strcasecmp (key, "record-length") == 0) { + props->record_length = (guint16) atoi(value); + return TRUE; + } + + g_set_error (error, + QMI_CORE_ERROR, + QMI_CORE_ERROR_FAILED, + "Unrecognized option '%s'", + key); + return FALSE; +} + +static QmiMessageUimReadRecordInput * +read_record_input_create (const gchar *str) +{ + GError *error = NULL; + QmiMessageUimReadRecordInput *input = NULL; + SetReadRecordProperties props = { + .file = NULL, + .record_number = 0, + .record_length = 0, + }; + guint16 file_id = 0; + GArray *file_path = NULL; + GArray *dummy_aid; + + if (!qmicli_parse_key_value_string (str, + &error, + set_read_record_properties_handle, + &props)) { + g_printerr ("error: could not parse input string '%s': %s\n", + str, + error->message); + g_error_free (error); + goto out; + } + + if (!get_sim_file_id_and_path_with_separator (props.file, &file_id, &file_path, "-")) + goto out; + + dummy_aid = g_array_new (FALSE, FALSE, sizeof (guint8)); + + input = qmi_message_uim_read_record_input_new (); + + qmi_message_uim_read_record_input_set_session ( + input, + QMI_UIM_SESSION_TYPE_PRIMARY_GW_PROVISIONING, + dummy_aid, /* ignored */ + NULL); + qmi_message_uim_read_record_input_set_file ( + input, + file_id, + file_path, + NULL); + qmi_message_uim_read_record_input_set_record ( + input, + props.record_number, + props.record_length, + NULL); + + g_array_unref (dummy_aid); + +out: + free (props.file); + g_array_unref (file_path); return input; } @@ -1161,21 +1370,25 @@ QmiMessageUimGetFileAttributesInput *input; guint16 file_id = 0; GArray *file_path = NULL; + GArray *dummy_aid; if (!get_sim_file_id_and_path (file_path_str, &file_id, &file_path)) return NULL; + dummy_aid = g_array_new (FALSE, FALSE, sizeof (guint8)); + input = qmi_message_uim_get_file_attributes_input_new (); - qmi_message_uim_get_file_attributes_input_set_session_information ( + qmi_message_uim_get_file_attributes_input_set_session ( input, QMI_UIM_SESSION_TYPE_PRIMARY_GW_PROVISIONING, - "", + dummy_aid, /* ignored */ NULL); qmi_message_uim_get_file_attributes_input_set_file ( input, file_id, file_path, NULL); + g_array_unref (dummy_aid); g_array_unref (file_path); return input; } @@ -1293,6 +1506,28 @@ return; } + /* Request to read a transparent file? */ + if (read_record_str) { + QmiMessageUimReadRecordInput *input; + + input = read_record_input_create (read_record_str); + if (!input) { + operation_shutdown (FALSE); + return; + } + + g_debug ("Asynchronously reading record file at '%s'...", + read_record_str); + qmi_client_uim_read_record (ctx->client, + input, + 10, + ctx->cancellable, + (GAsyncReadyCallback)read_record_ready, + NULL); + qmi_message_uim_read_record_input_unref (input); + return; + } + /* Request to get file attributes? */ if (get_file_attributes_str) { QmiMessageUimGetFileAttributesInput *input; @@ -1356,6 +1591,7 @@ ctx->cancellable, (GAsyncReadyCallback)power_on_sim_ready, NULL); + qmi_message_uim_power_on_sim_input_unref (input); return; } @@ -1376,6 +1612,7 @@ ctx->cancellable, (GAsyncReadyCallback)power_off_sim_ready, NULL); + qmi_message_uim_power_off_sim_input_unref (input); return; } diff -Nru libqmi-1.18.0/src/qmicli/qmicli-wds.c libqmi-1.22.0/src/qmicli/qmicli-wds.c --- libqmi-1.18.0/src/qmicli/qmicli-wds.c 2017-03-22 12:19:49.000000000 +0100 +++ libqmi-1.22.0/src/qmicli/qmicli-wds.c 2019-01-08 14:09:47.000000000 +0100 @@ -64,7 +64,13 @@ static gboolean go_dormant_flag; static gboolean go_active_flag; static gboolean get_dormancy_status_flag; +static gchar *create_profile_str; +static gchar *swi_create_profile_indexed_str; +static gchar *modify_profile_str; +static gchar *delete_profile_str; static gchar *get_profile_list_str; +static gchar *get_default_profile_num_str; +static gchar *set_default_profile_num_str; static gchar *get_default_settings_str; static gboolean get_autoconnect_settings_flag; static gchar *set_autoconnect_settings_str; @@ -72,6 +78,8 @@ static gboolean reset_flag; static gboolean noop_flag; static gchar *bind_mux_str; +static gchar *set_ip_family_str; +static gboolean get_channel_rates_flag; static GOptionEntry entries[] = { { "wds-start-network", 0, 0, G_OPTION_ARG_STRING, &start_network_str, @@ -118,10 +126,34 @@ "Get the dormancy status of the active data connection", NULL }, + { "wds-create-profile", 0, 0, G_OPTION_ARG_STRING, &create_profile_str, + "Create new profile using first available profile index (optional keys: name, apn, pdp-type (IP|PPP|IPV6|IPV4V6), auth (NONE|PAP|CHAP|BOTH), username, password, context-num, no-roaming=yes, disabled=yes)", + "[\"(3gpp|3gpp2)[,key=value,...]\"]" + }, + { "wds-swi-create-profile-indexed", 0, 0, G_OPTION_ARG_STRING, &swi_create_profile_indexed_str, + "Create new profile at specified profile index [Sierra Wireless specific] (optional keys: name, apn, pdp-type (IP|PPP|IPV6|IPV4V6), auth (NONE|PAP|CHAP|BOTH), username, password, context-num, no-roaming=yes, disabled=yes)", + "[\"(3gpp|3gpp2),#[,key=value,...]\"]" + }, + { "wds-modify-profile", 0, 0, G_OPTION_ARG_STRING, &modify_profile_str, + "Modify existing profile (optional keys: name, apn, pdp-type (IP|PPP|IPV6|IPV4V6), auth (NONE|PAP|CHAP|BOTH), username, password, context-num, no-roaming=yes, disabled=yes)", + "[\"(3gpp|3gpp2),#,key=value,...\"]" + }, + { "wds-delete-profile", 0, 0, G_OPTION_ARG_STRING, &delete_profile_str, + "Delete existing profile", + "[(3gpp|3gpp2),#]" + }, { "wds-get-profile-list", 0, 0, G_OPTION_ARG_STRING, &get_profile_list_str, "Get profile list", "[3gpp|3gpp2]" }, + { "wds-get-default-profile-num", 0, 0, G_OPTION_ARG_STRING, &get_default_profile_num_str, + "Get default profile number", + "[3gpp|3gpp2]" + }, + { "wds-set-default-profile-num", 0, 0, G_OPTION_ARG_STRING, &set_default_profile_num_str, + "Set default profile number", + "[(3gpp|3gpp2),#]" + }, { "wds-get-default-settings", 0, 0, G_OPTION_ARG_STRING, &get_default_settings_str, "Get default settings", "[3gpp|3gpp2]" @@ -146,6 +178,14 @@ "Bind qmux data port to controller device (allowed keys: mux-id, ep-iface-number) to be used with `--client-no-release-cid'", "[\"key=value,...\"]" }, + { "wds-set-ip-family", 0, 0, G_OPTION_ARG_STRING, &set_ip_family_str, + "Set IP family", + "[4|6]" + }, + { "wds-get-channel-rates", 0, 0, G_OPTION_ARG_NONE, &get_channel_rates_flag, + "Get channel data rates", + NULL + }, { "wds-noop", 0, 0, G_OPTION_ARG_NONE, &noop_flag, "Just allocate or release a WDS client. Use with `--client-no-release-cid' and/or `--client-cid'", NULL @@ -180,6 +220,7 @@ n_actions = (!!start_network_str + !!stop_network_str + !!bind_mux_str + + !!set_ip_family_str + get_current_settings_flag + get_packet_service_status_flag + get_packet_statistics_flag + @@ -188,12 +229,19 @@ go_dormant_flag + go_active_flag + get_dormancy_status_flag + + !!create_profile_str + + !!swi_create_profile_indexed_str + + !!modify_profile_str + + !!delete_profile_str + !!get_profile_list_str + + !!get_default_profile_num_str + + !!set_default_profile_num_str + !!get_default_settings_str + get_autoconnect_settings_flag + !!set_autoconnect_settings_str + get_supported_messages_flag + reset_flag + + !!get_channel_rates_flag + noop_flag); if (n_actions > 1) { @@ -466,32 +514,40 @@ return FALSE; } -static QmiMessageWdsStartNetworkInput * -start_network_input_create (const gchar *str) +static gboolean +start_network_input_create (const gchar *str, + QmiMessageWdsStartNetworkInput **input, + GError **error) { gchar *aux_auth_str = NULL; gchar *ip_type_str = NULL; gchar **split = NULL; - QmiMessageWdsStartNetworkInput *input = NULL; StartNetworkProperties props = { .auth = QMI_WDS_AUTHENTICATION_NONE, .ip_type = QMI_WDS_IP_FAMILY_UNSPECIFIED, }; + gboolean success = FALSE; + + g_assert (input && !*input); /* An empty string is totally valid (i.e. no TLVs) */ if (!str[0]) - return NULL; + return TRUE; /* New key=value format */ if (strchr (str, '=')) { - GError *error = NULL; + GError *parse_error = NULL; if (!qmicli_parse_key_value_string (str, - &error, + &parse_error, start_network_properties_handle, &props)) { - g_printerr ("error: couldn't parse input string: %s\n", error->message); - g_error_free (error); + g_set_error (error, + QMI_CORE_ERROR, + QMI_CORE_ERROR_FAILED, + "couldn't parse input string: %s", + parse_error->message); + g_error_free (parse_error); goto out; } } @@ -506,7 +562,11 @@ if (props.apn && split[1]) { if (!qmicli_read_authentication_from_string (split[1], &(props.auth))) { - g_printerr ("error: unknown auth protocol '%s'\n", split[1]); + g_set_error (error, + QMI_CORE_ERROR, + QMI_CORE_ERROR_FAILED, + "unknown auth protocol '%s'", + split[1]); goto out; } props.auth_set = TRUE; @@ -517,23 +577,23 @@ } /* Create input bundle */ - input = qmi_message_wds_start_network_input_new (); + *input = qmi_message_wds_start_network_input_new (); /* Set APN */ if (props.apn) - qmi_message_wds_start_network_input_set_apn (input, props.apn, NULL); + qmi_message_wds_start_network_input_set_apn (*input, props.apn, NULL); /* Set 3GPP profile */ if (props.profile_index_3gpp > 0) - qmi_message_wds_start_network_input_set_profile_index_3gpp (input, props.profile_index_3gpp, NULL); + qmi_message_wds_start_network_input_set_profile_index_3gpp (*input, props.profile_index_3gpp, NULL); /* Set 3GPP2 profile */ if (props.profile_index_3gpp2 > 0) - qmi_message_wds_start_network_input_set_profile_index_3gpp2 (input, props.profile_index_3gpp2, NULL); + qmi_message_wds_start_network_input_set_profile_index_3gpp2 (*input, props.profile_index_3gpp2, NULL); /* Set IP Type */ if (props.ip_type != 0) { - qmi_message_wds_start_network_input_set_ip_family_preference (input, props.ip_type, NULL); + qmi_message_wds_start_network_input_set_ip_family_preference (*input, props.ip_type, NULL); if (props.ip_type == QMI_WDS_IP_FAMILY_IPV4) ip_type_str = "4"; else if (props.ip_type == QMI_WDS_IP_FAMILY_IPV6) @@ -543,20 +603,22 @@ /* Set authentication method */ if (props.auth_set) { aux_auth_str = qmi_wds_authentication_build_string_from_mask (props.auth); - qmi_message_wds_start_network_input_set_authentication_preference (input, props.auth, NULL); + qmi_message_wds_start_network_input_set_authentication_preference (*input, props.auth, NULL); } /* Set username, avoid empty strings */ if (props.username && props.username[0]) - qmi_message_wds_start_network_input_set_username (input, props.username, NULL); + qmi_message_wds_start_network_input_set_username (*input, props.username, NULL); /* Set password, avoid empty strings */ if (props.password && props.password[0]) - qmi_message_wds_start_network_input_set_password (input, props.password, NULL); + qmi_message_wds_start_network_input_set_password (*input, props.password, NULL); /* Set autoconnect */ if (props.autoconnect_set) - qmi_message_wds_start_network_input_set_enable_autoconnect (input, props.autoconnect, NULL); + qmi_message_wds_start_network_input_set_enable_autoconnect (*input, props.autoconnect, NULL); + + success = TRUE; g_debug ("Network start parameters set (apn: '%s', 3gpp_profile: '%u', 3gpp2_profile: '%u', auth: '%s', ip-type: '%s', username: '%s', password: '%s', autoconnect: '%s')", props.apn ? props.apn : "unspecified", @@ -575,7 +637,7 @@ g_free (props.password); g_free (aux_auth_str); - return input; + return success; } static void @@ -943,7 +1005,7 @@ return; } - qmi_message_wds_get_data_bearer_technology_output_get_last ( + qmi_message_wds_get_data_bearer_technology_output_get_current ( output, ¤t, NULL); @@ -1142,6 +1204,620 @@ operation_shutdown (TRUE); } + +typedef struct { + QmiWdsProfileType profile_type; + guint profile_index; + guint context_number; + gchar *name; + QmiWdsPdpType pdp_type; + gboolean pdp_type_set; + gchar *apn; + gchar *username; + gchar *password; + QmiWdsAuthentication auth; + gboolean auth_set; + gboolean no_roaming; + gboolean no_roaming_set; + gboolean disabled; + gboolean disabled_set; +} CreateModifyProfileProperties; + +static gboolean +create_modify_profile_properties_handle (const gchar *key, + const gchar *value, + GError **error, + gpointer user_data) +{ + CreateModifyProfileProperties *props = user_data; + + /* Allow empty values for string parameters */ + + if (g_ascii_strcasecmp (key, "name") == 0 && !props->name) { + props->name = g_strdup (value); + return TRUE; + } + + if (g_ascii_strcasecmp (key, "apn") == 0 && !props->apn) { + props->apn = g_strdup (value); + return TRUE; + } + + if (g_ascii_strcasecmp (key, "username") == 0 && !props->username) { + props->username = g_strdup (value); + return TRUE; + } + + if (g_ascii_strcasecmp (key, "password") == 0 && !props->password) { + props->password = g_strdup (value); + return TRUE; + } + + /* all other TLVs do require a value... */ + if (!value || !value[0]) { + g_set_error (error, + QMI_CORE_ERROR, + QMI_CORE_ERROR_FAILED, + "key '%s' required a value", + key); + return FALSE; + } + + if (g_ascii_strcasecmp (key, "context-num") == 0 && !props->context_number) { + props->context_number = atoi (value); + if (props->context_number <= 0 || props->context_number > G_MAXUINT8) { + g_set_error (error, + QMI_CORE_ERROR, + QMI_CORE_ERROR_FAILED, + "invalid or out of range context number [1,%u]: '%s'", + G_MAXUINT8, + value); + return FALSE; + } + return TRUE; + } + + if (g_ascii_strcasecmp (key, "auth") == 0 && !props->auth_set) { + if (!qmicli_read_authentication_from_string (value, &(props->auth))) { + g_set_error (error, + QMI_CORE_ERROR, + QMI_CORE_ERROR_FAILED, + "unknown auth protocol '%s'", + value); + return FALSE; + } + props->auth_set = TRUE; + return TRUE; + } + + if (g_ascii_strcasecmp (key, "pdp-type") == 0 && !props->pdp_type_set) { + if (!qmicli_read_pdp_type_from_string (value, &(props->pdp_type))) { + g_set_error (error, + QMI_CORE_ERROR, + QMI_CORE_ERROR_FAILED, + "unknown pdp type '%s'", + value); + return FALSE; + } + props->pdp_type_set = TRUE; + return TRUE; + } + + if (g_ascii_strcasecmp (key, "no-roaming") == 0 && !props->no_roaming_set) { + if (!qmicli_read_yes_no_from_string (value, &(props->no_roaming))) { + g_set_error (error, + QMI_CORE_ERROR, + QMI_CORE_ERROR_FAILED, + "unknown 'no-roaming' value '%s'", + value); + return FALSE; + } + props->no_roaming_set = TRUE; + return TRUE; + } + + if (g_ascii_strcasecmp (key, "disabled") == 0 && !props->disabled_set) { + if (!qmicli_read_yes_no_from_string (value, &(props->disabled))) { + g_set_error (error, + QMI_CORE_ERROR, + QMI_CORE_ERROR_FAILED, + "unknown 'disabled' value '%s'", + value); + return FALSE; + } + props->disabled_set = TRUE; + return TRUE; + } + + g_set_error (error, + QMI_CORE_ERROR, + QMI_CORE_ERROR_FAILED, + "unrecognized or duplicate option '%s'", + key); + return FALSE; +} + +static gboolean +create_profile_input_create (const gchar *str, + QmiMessageWdsCreateProfileInput **input, + GError **error) +{ + GError *parse_error = NULL; + CreateModifyProfileProperties props = {}; + gboolean success = FALSE; + gchar **split; + + g_assert (input && !*input); + + split = g_strsplit (str, ",", 2); + if (g_strv_length (split) < 1) { + g_set_error (error, + QMI_CORE_ERROR, + QMI_CORE_ERROR_FAILED, + "expected at least 1 arguments for 'wds create profile' command"); + goto out; + } + + g_strstrip (split[0]); + if (g_str_equal (split[0], "3gpp")) + props.profile_type = QMI_WDS_PROFILE_TYPE_3GPP; + else if (g_str_equal (split[0], "3gpp2")) + props.profile_type = QMI_WDS_PROFILE_TYPE_3GPP2; + else { + g_set_error (error, + QMI_CORE_ERROR, + QMI_CORE_ERROR_FAILED, + "invalid profile type. Expected '3gpp' or '3gpp2'.'"); + goto out; + } + + if (split[1]) { + if (!qmicli_parse_key_value_string (split[1], + &parse_error, + create_modify_profile_properties_handle, + &props)) { + g_set_error (error, + QMI_CORE_ERROR, + QMI_CORE_ERROR_FAILED, + "couldn't parse input string: %s", + parse_error->message); + g_error_free (parse_error); + goto out; + } + } + + /* Create input bundle */ + *input = qmi_message_wds_create_profile_input_new (); + + /* Profile type is required */ + qmi_message_wds_create_profile_input_set_profile_type (*input, props.profile_type, NULL); + + if (props.context_number) + qmi_message_wds_create_profile_input_set_pdp_context_number (*input, props.context_number, NULL); + + if (props.pdp_type_set) + qmi_message_wds_create_profile_input_set_pdp_type (*input, props.pdp_type, NULL); + + if (props.name) + qmi_message_wds_create_profile_input_set_profile_name (*input, props.name, NULL); + + if (props.apn) + qmi_message_wds_create_profile_input_set_apn_name (*input, props.apn, NULL); + + if (props.auth_set) + qmi_message_wds_create_profile_input_set_authentication (*input, props.auth, NULL); + + if (props.username) + qmi_message_wds_create_profile_input_set_username (*input, props.username, NULL); + + if (props.password) + qmi_message_wds_create_profile_input_set_password (*input, props.password, NULL); + + if (props.no_roaming_set) + qmi_message_wds_create_profile_input_set_roaming_disallowed_flag (*input, props.no_roaming, NULL); + + if (props.disabled_set) + qmi_message_wds_create_profile_input_set_apn_disabled_flag (*input, props.disabled, NULL); + + success = TRUE; + +out: + g_strfreev (split); + g_free (props.name); + g_free (props.apn); + g_free (props.username); + g_free (props.password); + + return success; +} + +static void +create_profile_ready (QmiClientWds *client, + GAsyncResult *res) +{ + QmiMessageWdsCreateProfileOutput *output; + GError *error = NULL; + QmiWdsProfileType profile_type; + guint8 profile_index; + + output = qmi_client_wds_create_profile_finish (client, res, &error); + if (!output) { + g_printerr ("error: operation failed: %s\n", error->message); + g_error_free (error); + operation_shutdown (FALSE); + return; + } + + if (!qmi_message_wds_create_profile_output_get_result (output, &error)) { + QmiWdsDsProfileError ds_profile_error; + + if (g_error_matches (error, + QMI_PROTOCOL_ERROR, + QMI_PROTOCOL_ERROR_EXTENDED_INTERNAL) && + qmi_message_wds_create_profile_output_get_extended_error_code ( + output, + &ds_profile_error, + NULL)) { + g_printerr ("error: couldn't create profile: ds profile error: %s\n", + qmi_wds_ds_profile_error_get_string (ds_profile_error)); + } else { + g_printerr ("error: couldn't create profile: %s\n", + error->message); + } + g_error_free (error); + qmi_message_wds_create_profile_output_unref (output); + operation_shutdown (FALSE); + return; + } + + g_print ("New profile created:\n"); + if (qmi_message_wds_create_profile_output_get_profile_identifier (output, + &profile_type, + &profile_index, + NULL)) { + g_print ("\tProfile type: '%s'\n", qmi_wds_profile_type_get_string(profile_type)); + g_print ("\tProfile index: '%d'\n", profile_index); + } + qmi_message_wds_create_profile_output_unref (output); + operation_shutdown (TRUE); +} + +static gboolean +swi_create_profile_indexed_input_create (const gchar *str, + QmiMessageWdsSwiCreateProfileIndexedInput **input, + GError **error) +{ + GError *parse_error = NULL; + CreateModifyProfileProperties props = {}; + gchar **split; + gboolean success = FALSE; + + g_assert (input && !*input); + + /* Expect max 3 tokens: the first two give us the mandatory parameters of the command, + * the 3rd one will contain the key/value pair list */ + split = g_strsplit (str, ",", 3); + if (g_strv_length (split) < 2) { + g_set_error (error, + QMI_CORE_ERROR, + QMI_CORE_ERROR_FAILED, + "expected at least 2 arguments for 'wds swi create profile indexed' command"); + goto out; + } + + g_strstrip (split[0]); + if (g_str_equal (split[0], "3gpp")) + props.profile_type = QMI_WDS_PROFILE_TYPE_3GPP; + else if (g_str_equal (split[0], "3gpp2")) + props.profile_type = QMI_WDS_PROFILE_TYPE_3GPP2; + else { + g_set_error (error, + QMI_CORE_ERROR, + QMI_CORE_ERROR_FAILED, + "invalid profile type '%s'. Expected '3gpp' or '3gpp2'.'", + split[0]); + goto out; + } + + g_strstrip (split[1]); + props.profile_index = atoi (split[1]); + if (props.profile_index <= 0 || props.profile_index > G_MAXUINT8) { + g_set_error (error, + QMI_CORE_ERROR, + QMI_CORE_ERROR_FAILED, + "invalid or out of range profile index [1,%u]: '%s'\n", + G_MAXUINT8, + split[1]); + goto out; + } + + if (split[2]) { + if (!qmicli_parse_key_value_string (split[2], + &parse_error, + create_modify_profile_properties_handle, + &props)) { + g_set_error (error, + QMI_CORE_ERROR, + QMI_CORE_ERROR_FAILED, + "couldn't parse input string: %s", + parse_error->message); + g_error_free (parse_error); + goto out; + } + } + + /* Create input bundle */ + *input = qmi_message_wds_swi_create_profile_indexed_input_new (); + + /* Profile identifier is required */ + qmi_message_wds_swi_create_profile_indexed_input_set_profile_identifier (*input, props.profile_type, props.profile_index, NULL); + + if (props.context_number) + qmi_message_wds_swi_create_profile_indexed_input_set_pdp_context_number (*input, props.context_number, NULL); + + if (props.pdp_type_set) + qmi_message_wds_swi_create_profile_indexed_input_set_pdp_type (*input, props.pdp_type, NULL); + + if (props.name) + qmi_message_wds_swi_create_profile_indexed_input_set_profile_name (*input, props.name, NULL); + + if (props.apn) + qmi_message_wds_swi_create_profile_indexed_input_set_apn_name (*input, props.apn, NULL); + + if (props.auth_set) + qmi_message_wds_swi_create_profile_indexed_input_set_authentication (*input, props.auth, NULL); + + if (props.username) + qmi_message_wds_swi_create_profile_indexed_input_set_username (*input, props.username, NULL); + + if (props.password) + qmi_message_wds_swi_create_profile_indexed_input_set_password (*input, props.password, NULL); + + if (props.no_roaming_set) + qmi_message_wds_swi_create_profile_indexed_input_set_roaming_disallowed_flag (*input, props.no_roaming, NULL); + + if (props.disabled_set) + qmi_message_wds_swi_create_profile_indexed_input_set_apn_disabled_flag (*input, props.disabled, NULL); + + success = TRUE; + +out: + g_strfreev (split); + g_free (props.name); + g_free (props.apn); + g_free (props.username); + g_free (props.password); + + return success; +} + +static void +swi_create_profile_indexed_ready (QmiClientWds *client, + GAsyncResult *res) +{ + QmiMessageWdsSwiCreateProfileIndexedOutput *output; + GError *error = NULL; + QmiWdsProfileType profile_type; + guint8 profile_index; + + output = qmi_client_wds_swi_create_profile_indexed_finish (client, res, &error); + if (!output) { + g_printerr ("error: operation failed: %s\n", error->message); + g_error_free (error); + operation_shutdown (FALSE); + return; + } + + if (!qmi_message_wds_swi_create_profile_indexed_output_get_result (output, &error)) { + g_printerr ("error: couldn't create indexed profile: %s\n", error->message); + g_error_free (error); + qmi_message_wds_swi_create_profile_indexed_output_unref (output); + operation_shutdown (FALSE); + return; + } + + g_print ("New profile created:\n"); + if (qmi_message_wds_swi_create_profile_indexed_output_get_profile_identifier (output, + &profile_type, + &profile_index, + NULL)) { + g_print ("\tProfile type: '%s'\n", qmi_wds_profile_type_get_string(profile_type)); + g_print ("\tProfile index: '%d'\n", profile_index); + } + qmi_message_wds_swi_create_profile_indexed_output_unref (output); + operation_shutdown (TRUE); +} + +static gboolean +modify_profile_input_create (const gchar *str, + QmiMessageWdsModifyProfileInput **input, + GError **error) +{ + GError *parse_error = NULL; + CreateModifyProfileProperties props = {}; + gchar **split; + gboolean success = FALSE; + + g_assert (input && !*input); + + /* Expect max 3 tokens: the first two give us the mandatory parameters of the command, + * the 3rd one will contain the key/value pair list */ + split = g_strsplit (str, ",", 3); + if (g_strv_length (split) < 3) { + g_set_error (error, + QMI_CORE_ERROR, + QMI_CORE_ERROR_FAILED, + "expected at least 3 arguments for 'wds modify profile' command"); + goto out; + } + + g_strstrip (split[0]); + if (g_str_equal (split[0], "3gpp")) + props.profile_type = QMI_WDS_PROFILE_TYPE_3GPP; + else if (g_str_equal (split[0], "3gpp2")) + props.profile_type = QMI_WDS_PROFILE_TYPE_3GPP2; + else { + g_set_error (error, + QMI_CORE_ERROR, + QMI_CORE_ERROR_FAILED, + "invalid profile type '%s'. Expected '3gpp' or '3gpp2'.'", + split[0]); + goto out; + } + + g_strstrip (split[1]); + props.profile_index = atoi (split[1]); + if (props.profile_index <= 0 || props.profile_index > G_MAXUINT8) { + g_set_error (error, + QMI_CORE_ERROR, + QMI_CORE_ERROR_FAILED, + "invalid or out of range profile index [1,%u]: '%s'\n", + G_MAXUINT8, + split[1]); + goto out; + } + + /* advance to third token, that's where key/value pairs start */ + if (!qmicli_parse_key_value_string (split[2], + &parse_error, + create_modify_profile_properties_handle, + &props)) { + g_set_error (error, + QMI_CORE_ERROR, + QMI_CORE_ERROR_FAILED, + "couldn't parse input string: %s", + parse_error->message); + g_error_free (parse_error); + goto out; + } + + /* Create input bundle */ + *input = qmi_message_wds_modify_profile_input_new (); + + /* Profile identifier is required */ + qmi_message_wds_modify_profile_input_set_profile_identifier (*input, props.profile_type, props.profile_index, NULL); + + if (props.context_number) + qmi_message_wds_modify_profile_input_set_pdp_context_number (*input, props.context_number, NULL); + + if (props.pdp_type_set) + qmi_message_wds_modify_profile_input_set_pdp_type (*input, props.pdp_type, NULL); + + if (props.name) + qmi_message_wds_modify_profile_input_set_profile_name (*input, props.name, NULL); + + if (props.apn) + qmi_message_wds_modify_profile_input_set_apn_name (*input, props.apn, NULL); + + if (props.auth_set) + qmi_message_wds_modify_profile_input_set_authentication (*input, props.auth, NULL); + + if (props.username) + qmi_message_wds_modify_profile_input_set_username (*input, props.username, NULL); + + if (props.password) + qmi_message_wds_modify_profile_input_set_password (*input, props.password, NULL); + + if (props.no_roaming_set) + qmi_message_wds_modify_profile_input_set_roaming_disallowed_flag (*input, props.no_roaming, NULL); + + if (props.disabled_set) + qmi_message_wds_modify_profile_input_set_apn_disabled_flag (*input, props.disabled, NULL); + + success = TRUE; + +out: + g_strfreev (split); + g_free (props.name); + g_free (props.apn); + g_free (props.username); + g_free (props.password); + + return success; +} + +static void +modify_profile_ready (QmiClientWds *client, + GAsyncResult *res) +{ + QmiMessageWdsModifyProfileOutput *output; + GError *error = NULL; + + output = qmi_client_wds_modify_profile_finish (client, res, &error); + if (!output) { + g_printerr ("error: operation failed: %s\n", error->message); + g_error_free (error); + operation_shutdown (FALSE); + return; + } + + if (!qmi_message_wds_modify_profile_output_get_result (output, &error)) { + QmiWdsDsProfileError ds_profile_error; + + if (g_error_matches (error, + QMI_PROTOCOL_ERROR, + QMI_PROTOCOL_ERROR_EXTENDED_INTERNAL) && + qmi_message_wds_modify_profile_output_get_extended_error_code ( + output, + &ds_profile_error, + NULL)) { + g_printerr ("error: couldn't modify profile: ds profile error: %s\n", + qmi_wds_ds_profile_error_get_string (ds_profile_error)); + } else { + g_printerr ("error: couldn't modify profile: %s\n", + error->message); + } + g_error_free (error); + qmi_message_wds_modify_profile_output_unref (output); + operation_shutdown (FALSE); + return; + } + qmi_message_wds_modify_profile_output_unref (output); + g_print ("Profile successfully modified.\n"); + operation_shutdown (TRUE); +} + +static void +delete_profile_ready (QmiClientWds *client, + GAsyncResult *res) +{ + QmiMessageWdsDeleteProfileOutput *output; + GError *error = NULL; + + output = qmi_client_wds_delete_profile_finish (client, res, &error); + if (!output) { + g_printerr ("error: operation failed: %s\n", error->message); + g_error_free (error); + operation_shutdown (FALSE); + return; + } + + if (!qmi_message_wds_delete_profile_output_get_result (output, &error)) { + QmiWdsDsProfileError ds_profile_error; + + if (g_error_matches (error, + QMI_PROTOCOL_ERROR, + QMI_PROTOCOL_ERROR_EXTENDED_INTERNAL) && + qmi_message_wds_delete_profile_output_get_extended_error_code ( + output, + &ds_profile_error, + NULL)) { + g_printerr ("error: couldn't delete profile: ds profile error: %s\n", + qmi_wds_ds_profile_error_get_string (ds_profile_error)); + } else { + g_printerr ("error: couldn't delete profile: %s\n", + error->message); + } + g_error_free (error); + qmi_message_wds_delete_profile_output_unref (output); + operation_shutdown (FALSE); + return; + } + qmi_message_wds_delete_profile_output_unref (output); + g_print ("Profile successfully deleted.\n"); + operation_shutdown (TRUE); +} + typedef struct { guint i; GArray *profile_list; @@ -1181,13 +1857,17 @@ qmi_message_wds_get_profile_settings_output_unref (output); } else { const gchar *str; + guint8 context_number; QmiWdsPdpType pdp_type; QmiWdsAuthentication auth; + gboolean flag; if (qmi_message_wds_get_profile_settings_output_get_apn_name (output, &str, NULL)) g_print ("\t\tAPN: '%s'\n", str); if (qmi_message_wds_get_profile_settings_output_get_pdp_type (output, &pdp_type, NULL)) g_print ("\t\tPDP type: '%s'\n", qmi_wds_pdp_type_get_string (pdp_type)); + if (qmi_message_wds_get_profile_settings_output_get_pdp_context_number (output, &context_number, NULL)) + g_print ("\t\tPDP context number: '%d'\n", context_number); if (qmi_message_wds_get_profile_settings_output_get_username (output, &str, NULL)) g_print ("\t\tUsername: '%s'\n", str); if (qmi_message_wds_get_profile_settings_output_get_password (output, &str, NULL)) @@ -1199,6 +1879,10 @@ g_print ("\t\tAuth: '%s'\n", aux); g_free (aux); } + if (qmi_message_wds_get_profile_settings_output_get_roaming_disallowed_flag (output, &flag, NULL)) + g_print ("\t\tNo roaming: '%s'\n", flag ? "yes" : "no"); + if (qmi_message_wds_get_profile_settings_output_get_apn_disabled_flag (output, &flag, NULL)) + g_print ("\t\tAPN disabled: '%s'\n", flag ? "yes" : "no"); qmi_message_wds_get_profile_settings_output_unref (output); } @@ -1363,6 +2047,154 @@ } static void +get_default_profile_num_ready (QmiClientWds *client, + GAsyncResult *res) +{ + QmiMessageWdsGetDefaultProfileNumOutput *output; + GError *error = NULL; + guint8 profile_num; + + output = qmi_client_wds_get_default_profile_num_finish (client, res, &error); + if (!output) { + g_printerr ("error: operation failed: %s\n", error->message); + g_error_free (error); + operation_shutdown (FALSE); + return; + } + + if (!qmi_message_wds_get_default_profile_num_output_get_result (output, &error)) { + QmiWdsDsProfileError ds_profile_error; + + if (g_error_matches (error, + QMI_PROTOCOL_ERROR, + QMI_PROTOCOL_ERROR_EXTENDED_INTERNAL) && + qmi_message_wds_get_default_profile_num_output_get_extended_error_code ( + output, + &ds_profile_error, + NULL)) { + g_printerr ("error: couldn't get default settings: ds profile error: %s\n", + qmi_wds_ds_profile_error_get_string (ds_profile_error)); + } else { + g_printerr ("error: couldn't get default settings: %s\n", + error->message); + } + g_error_free (error); + qmi_message_wds_get_default_profile_num_output_unref (output); + operation_shutdown (FALSE); + return; + } + + g_print ("Default profile number retrieved:\n"); + + if (qmi_message_wds_get_default_profile_num_output_get_default_profile_number (output, &profile_num, NULL)) + g_print ("\tDefault profile number: '%d'\n", profile_num); + + qmi_message_wds_get_default_profile_num_output_unref (output); + operation_shutdown (TRUE); +} + +static void +set_default_profile_num_ready (QmiClientWds *client, + GAsyncResult *res) +{ + QmiMessageWdsSetDefaultProfileNumOutput *output; + GError *error = NULL; + + output = qmi_client_wds_set_default_profile_num_finish (client, res, &error); + if (!output) { + g_printerr ("error: operation failed: %s\n", error->message); + g_error_free (error); + operation_shutdown (FALSE); + return; + } + + if (!qmi_message_wds_set_default_profile_num_output_get_result (output, &error)) { + QmiWdsDsProfileError ds_profile_error; + + if (g_error_matches (error, + QMI_PROTOCOL_ERROR, + QMI_PROTOCOL_ERROR_EXTENDED_INTERNAL) && + qmi_message_wds_set_default_profile_num_output_get_extended_error_code ( + output, + &ds_profile_error, + NULL)) { + g_printerr ("error: couldn't set default settings: ds profile error: %s\n", + qmi_wds_ds_profile_error_get_string (ds_profile_error)); + } else { + g_printerr ("error: couldn't set default settings: %s\n", + error->message); + } + g_error_free (error); + qmi_message_wds_set_default_profile_num_output_unref (output); + operation_shutdown (FALSE); + return; + } + + g_print ("Default profile number updated\n"); + qmi_message_wds_set_default_profile_num_output_unref (output); + operation_shutdown (TRUE); +} + +static QmiMessageWdsSetDefaultProfileNumInput * +set_default_profile_num_input_create (const gchar *str) +{ + QmiMessageWdsSetDefaultProfileNumInput *input; + GError *error = NULL; + gchar **split; + QmiWdsProfileType profile_type; + guint profile_num; + + split = g_strsplit (str, ",", -1); + input = qmi_message_wds_set_default_profile_num_input_new (); + + if (g_strv_length (split) != 2) { + g_printerr ("error: expected 2 options in default profile number settings\n"); + goto error_out; + } + + g_strstrip (split[0]); + if (g_str_equal (split[0], "3gpp")) + profile_type = QMI_WDS_PROFILE_TYPE_3GPP; + else if (g_str_equal (split[0], "3gpp2")) + profile_type = QMI_WDS_PROFILE_TYPE_3GPP2; + else { + g_printerr ("error: invalid profile type '%s'. Expected '3gpp' or '3gpp2'.'\n", + split[0]); + goto error_out; + } + + g_strstrip (split[1]); + profile_num = atoi (split[1]); + if (profile_num <= 0 || profile_num > G_MAXUINT8) { + g_printerr ("error: invalid or out of range profile number [1,%u]: '%s'\n", + G_MAXUINT8, + split[1]); + goto error_out; + } + + if (!qmi_message_wds_set_default_profile_num_input_set_profile_identifier ( + input, + profile_type, + QMI_WDS_PROFILE_FAMILY_TETHERED, + (guint8)profile_num, + &error)) { + g_printerr ("error: couldn't create input bundle: '%s'\n", error->message); + goto error_out; + } + + g_strfreev (split); + return input; + +error_out: + if (error) + g_error_free (error); + g_strfreev (split); + qmi_message_wds_set_default_profile_num_input_unref (input); + return NULL; +} + + +static void get_autoconnect_settings_ready (QmiClientWds *client, GAsyncResult *res) { @@ -1687,6 +2519,79 @@ operation_shutdown (TRUE); } +static void +set_ip_family_ready (QmiClientWds *client, + GAsyncResult *res) +{ + QmiMessageWdsSetIpFamilyOutput *output; + GError *error = NULL; + + output = qmi_client_wds_set_ip_family_finish (client, res, &error); + if (!output) { + g_printerr ("error: operation failed: %s\n", error->message); + g_error_free (error); + operation_shutdown (FALSE); + return; + } + + if (!qmi_message_wds_set_ip_family_output_get_result (output, &error)) { + g_printerr ("error: couldn't set IP family: %s\n", error->message); + g_error_free (error); + qmi_message_wds_set_ip_family_output_unref (output); + operation_shutdown (FALSE); + return; + } + + qmi_message_wds_set_ip_family_output_unref (output); + operation_shutdown (TRUE); +} + +static void +get_channel_rates_ready (QmiClientWds *client, + GAsyncResult *res) +{ + QmiMessageWdsGetChannelRatesOutput *output; + guint32 txrate = 0, rxrate = 0, maxtxrate = 0, maxrxrate = 0; + GError *error = NULL; + + output = qmi_client_wds_get_channel_rates_finish (client, res, &error); + if (!output) { + g_printerr ("error: operation failed: %s\n", error->message); + g_error_free (error); + operation_shutdown (FALSE); + return; + } + + if (!qmi_message_wds_get_channel_rates_output_get_result (output, &error)) { + g_printerr ("error: couldn't get channel rates: %s\n", + error->message); + g_error_free (error); + qmi_message_wds_get_channel_rates_output_unref (output); + operation_shutdown (FALSE); + return; + } + + g_print ("Channel data rates:\n"); + + qmi_message_wds_get_channel_rates_output_get_channel_rates (output, + &txrate, + &rxrate, + &maxtxrate, + &maxrxrate, + NULL); + g_print ("\tCurrent TX rate: %ubps\n" + "\tCurrent RX rate: %ubps\n" + "\tMax TX rate: %ubps\n" + "\tMax RX rate: %ubps\n", + txrate, + rxrate, + maxtxrate, + maxrxrate); + + qmi_message_wds_get_channel_rates_output_unref (output); + operation_shutdown (TRUE); +} + void qmicli_wds_run (QmiDevice *device, QmiClientWds *client, @@ -1702,9 +2607,14 @@ /* Request to start network? */ if (start_network_str) { - QmiMessageWdsStartNetworkInput *input; + QmiMessageWdsStartNetworkInput *input = NULL; + GError *error = NULL; - input = start_network_input_create (start_network_str); + if (!start_network_input_create (start_network_str, &input, &error)) { + g_printerr ("error: %s\n", error->message); + g_error_free (error); + return; + } g_debug ("Asynchronously starting network..."); qmi_client_wds_start_network (ctx->client, @@ -1762,6 +2672,35 @@ return; } + /* Request to set IP family? */ + if (set_ip_family_str) { + QmiMessageWdsSetIpFamilyInput *input; + + input = qmi_message_wds_set_ip_family_input_new (); + switch (atoi (set_ip_family_str)) { + case 4: + qmi_message_wds_set_ip_family_input_set_preference (input, QMI_WDS_IP_FAMILY_IPV4, NULL); + break; + case 6: + qmi_message_wds_set_ip_family_input_set_preference (input, QMI_WDS_IP_FAMILY_IPV6, NULL); + break; + default: + g_printerr ("error: unknown IP type '%s' (not 4 or 6)\n", + set_ip_family_str); + operation_shutdown (FALSE); + return; + } + g_debug ("Asynchronously set IP family..."); + qmi_client_wds_set_ip_family (client, + input, + 10, + ctx->cancellable, + (GAsyncReadyCallback) set_ip_family_ready, + NULL); + qmi_message_wds_set_ip_family_input_unref (input); + return; + } + /* Request to get current settings? */ if (get_current_settings_flag) { QmiMessageWdsGetCurrentSettingsInput *input; @@ -1891,6 +2830,128 @@ return; } + /* Create a new profile using first available profile index */ + if (create_profile_str) { + QmiMessageWdsCreateProfileInput *input = NULL; + GError *error = NULL; + + if (!create_profile_input_create (create_profile_str, &input, &error)) { + g_printerr ("error: %s\n", error->message); + g_error_free (error); + operation_shutdown (FALSE); + return; + } + + g_debug ("Asynchronously creating new profile..."); + qmi_client_wds_create_profile (ctx->client, + input, + 10, + ctx->cancellable, + (GAsyncReadyCallback)create_profile_ready, + NULL); + qmi_message_wds_create_profile_input_unref (input); + return; + } + + /* Create a new profile at spedified profile index (Sierra Wireless only)*/ + if (swi_create_profile_indexed_str) { + QmiMessageWdsSwiCreateProfileIndexedInput *input = NULL; + GError *error = NULL; + + if (!swi_create_profile_indexed_input_create (swi_create_profile_indexed_str, &input, &error)) { + g_printerr ("error: %s\n", error->message); + g_error_free (error); + operation_shutdown (FALSE); + return; + } + + g_debug ("Asynchronously creating new indexed profile..."); + qmi_client_wds_swi_create_profile_indexed (ctx->client, + input, + 10, + ctx->cancellable, + (GAsyncReadyCallback)swi_create_profile_indexed_ready, + NULL); + qmi_message_wds_swi_create_profile_indexed_input_unref (input); + return; + } + + /* Modify an existing profile */ + if (modify_profile_str) { + QmiMessageWdsModifyProfileInput *input = NULL; + GError *error = NULL; + + if (!modify_profile_input_create (modify_profile_str, &input, &error)) { + g_printerr ("error: %s\n", error->message); + g_error_free (error); + operation_shutdown (FALSE); + return; + } + + g_debug ("Asynchronously modifying profile..."); + qmi_client_wds_modify_profile (ctx->client, + input, + 10, + ctx->cancellable, + (GAsyncReadyCallback)modify_profile_ready, + NULL); + qmi_message_wds_modify_profile_input_unref (input); + return; + } + + /* Delete an existing profile */ + if (delete_profile_str) { + QmiMessageWdsDeleteProfileInput *input; + gchar **split; + QmiWdsProfileType profile_type; + guint profile_index; + + split = g_strsplit (delete_profile_str, ",", -1); + input = qmi_message_wds_delete_profile_input_new (); + + if (g_strv_length (split) != 2) { + g_printerr ("error: expected 2 arguments for delete profile command\n"); + operation_shutdown (FALSE); + return; + } + + g_strstrip (split[0]); + if (g_str_equal (split[0], "3gpp")) + profile_type = QMI_WDS_PROFILE_TYPE_3GPP; + else if (g_str_equal (split[0], "3gpp2")) + profile_type = QMI_WDS_PROFILE_TYPE_3GPP2; + else { + g_printerr ("error: invalid profile type '%s'. Expected '3gpp' or '3gpp2'.'\n", + split[0]); + operation_shutdown (FALSE); + return; + } + + g_strstrip (split[1]); + profile_index = atoi (split[1]); + if (profile_index <= 0 || profile_index > G_MAXUINT8) { + g_printerr ("error: invalid or out of range profile number [1,%u]: '%s'\n", + G_MAXUINT8, + split[1]); + operation_shutdown (FALSE); + return; + } + + qmi_message_wds_delete_profile_input_set_profile_identifier (input, profile_type, (guint8)profile_index, NULL); + + g_strfreev (split); + + g_debug ("Asynchronously deleting new profile..."); + qmi_client_wds_delete_profile (ctx->client, + input, + 10, + ctx->cancellable, + (GAsyncReadyCallback)delete_profile_ready, + NULL); + qmi_message_wds_delete_profile_input_unref (input); + return; + } + /* Request to list profiles? */ if (get_profile_list_str) { QmiMessageWdsGetProfileListInput *input; @@ -1918,6 +2979,61 @@ return; } + /* Request to get currently active profile number */ + if (get_default_profile_num_str) { + QmiMessageWdsGetDefaultProfileNumInput *input; + QmiWdsProfileType profile_type; + + if (g_str_equal (get_default_profile_num_str, "3gpp")) + profile_type = QMI_WDS_PROFILE_TYPE_3GPP; + else if (g_str_equal (get_default_profile_num_str, "3gpp2")) + profile_type = QMI_WDS_PROFILE_TYPE_3GPP2; + else { + g_printerr ("error: invalid profile type '%s'. Expected '3gpp' or '3gpp2'.'\n", + get_default_profile_num_str); + operation_shutdown (FALSE); + return; + } + + input = qmi_message_wds_get_default_profile_num_input_new (); + /* always use profile family 'tethered', we don't really know what it means */ + qmi_message_wds_get_default_profile_num_input_set_profile_type (input, + profile_type, + QMI_WDS_PROFILE_FAMILY_TETHERED, + NULL); + + g_debug ("Asynchronously getting default profile number..."); + qmi_client_wds_get_default_profile_num (ctx->client, + input, + 10, + ctx->cancellable, + (GAsyncReadyCallback)get_default_profile_num_ready, + NULL); + qmi_message_wds_get_default_profile_num_input_unref (input); + return; + } + + /* Request to set currently active profile number */ + if (set_default_profile_num_str) { + QmiMessageWdsSetDefaultProfileNumInput *input; + + input = set_default_profile_num_input_create (set_default_profile_num_str); + if (!input) { + operation_shutdown (FALSE); + return; + } + + g_debug ("Asynchronously setting default profile number..."); + qmi_client_wds_set_default_profile_num (ctx->client, + input, + 10, + ctx->cancellable, + (GAsyncReadyCallback)set_default_profile_num_ready, + NULL); + qmi_message_wds_set_default_profile_num_input_unref (input); + return; + } + /* Request to print default settings? */ if (get_default_settings_str) { QmiMessageWdsGetDefaultSettingsInput *input; @@ -2002,6 +3118,18 @@ return; } + /* Request to get channel data rates? */ + if (get_channel_rates_flag) { + g_debug ("Asynchronously getting channel data rates..."); + qmi_client_wds_get_channel_rates (client, + NULL, + 10, + ctx->cancellable, + (GAsyncReadyCallback)get_channel_rates_ready, + NULL); + return; + } + /* Just client allocate/release? */ if (noop_flag) { g_idle_add (noop_cb, NULL); diff -Nru libqmi-1.18.0/src/qmicli/qmicli-wms.c libqmi-1.22.0/src/qmicli/qmicli-wms.c --- libqmi-1.18.0/src/qmicli/qmicli-wms.c 2017-03-21 14:26:54.000000000 +0100 +++ libqmi-1.22.0/src/qmicli/qmicli-wms.c 2019-01-08 14:09:47.000000000 +0100 @@ -65,16 +65,16 @@ GOptionGroup * qmicli_wms_get_option_group (void) { - GOptionGroup *group; + GOptionGroup *group; - group = g_option_group_new ("wms", - "WMS options", - "Show Wireless Messaging Service options", - NULL, - NULL); - g_option_group_add_entries (group, entries); + group = g_option_group_new ("wms", + "WMS options", + "Show Wireless Messaging Service options", + NULL, + NULL); + g_option_group_add_entries (group, entries); - return group; + return group; } gboolean diff -Nru libqmi-1.18.0/src/qmicli/test/Makefile.am libqmi-1.22.0/src/qmicli/test/Makefile.am --- libqmi-1.18.0/src/qmicli/test/Makefile.am 2015-01-21 00:27:20.000000000 +0100 +++ libqmi-1.22.0/src/qmicli/test/Makefile.am 2018-03-20 21:33:05.000000000 +0100 @@ -6,9 +6,7 @@ TEST_PROGS += $(noinst_PROGRAMS) test_helpers_SOURCES = \ - test-helpers.c \ - $(top_srcdir)/src/qmicli/qmicli-helpers.h \ - $(top_srcdir)/src/qmicli/qmicli-helpers.c + test-helpers.c test_helpers_CPPFLAGS = \ $(GLIB_CFLAGS) \ @@ -21,4 +19,5 @@ test_helpers_LDADD = \ $(GLIB_LIBS) \ + $(top_builddir)/src/qmicli/libhelpers.la \ $(top_builddir)/src/libqmi-glib/libqmi-glib.la diff -Nru libqmi-1.18.0/src/qmicli/test/Makefile.in libqmi-1.22.0/src/qmicli/test/Makefile.in --- libqmi-1.18.0/src/qmicli/test/Makefile.in 2017-03-22 12:20:26.000000000 +0100 +++ libqmi-1.22.0/src/qmicli/test/Makefile.in 2019-01-08 15:17:16.000000000 +0100 @@ -1,7 +1,7 @@ -# Makefile.in generated by automake 1.15 from Makefile.am. +# Makefile.in generated by automake 1.16.1 from Makefile.am. # @configure_input@ -# Copyright (C) 1994-2014 Free Software Foundation, Inc. +# Copyright (C) 1994-2018 Free Software Foundation, Inc. # This Makefile.in is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, @@ -104,11 +104,11 @@ CONFIG_CLEAN_FILES = CONFIG_CLEAN_VPATH_FILES = PROGRAMS = $(noinst_PROGRAMS) -am_test_helpers_OBJECTS = test_helpers-test-helpers.$(OBJEXT) \ - test_helpers-qmicli-helpers.$(OBJEXT) +am_test_helpers_OBJECTS = test_helpers-test-helpers.$(OBJEXT) test_helpers_OBJECTS = $(am_test_helpers_OBJECTS) am__DEPENDENCIES_1 = test_helpers_DEPENDENCIES = $(am__DEPENDENCIES_1) \ + $(top_builddir)/src/qmicli/libhelpers.la \ $(top_builddir)/src/libqmi-glib/libqmi-glib.la AM_V_lt = $(am__v_lt_@AM_V@) am__v_lt_ = $(am__v_lt_@AM_DEFAULT_V@) @@ -128,7 +128,8 @@ am__v_at_1 = DEFAULT_INCLUDES = -I.@am__isrc@ -I$(top_builddir) depcomp = $(SHELL) $(top_srcdir)/depcomp -am__depfiles_maybe = depfiles +am__maybe_remake_depfiles = depfiles +am__depfiles_remade = ./$(DEPDIR)/test_helpers-test-helpers.Po am__mv = mv -f COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \ $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) @@ -253,6 +254,11 @@ PKG_CONFIG = @PKG_CONFIG@ PKG_CONFIG_LIBDIR = @PKG_CONFIG_LIBDIR@ PKG_CONFIG_PATH = @PKG_CONFIG_PATH@ +PYTHON = @PYTHON@ +PYTHON_EXEC_PREFIX = @PYTHON_EXEC_PREFIX@ +PYTHON_PLATFORM = @PYTHON_PLATFORM@ +PYTHON_PREFIX = @PYTHON_PREFIX@ +PYTHON_VERSION = @PYTHON_VERSION@ QMI_GLIB_LT_AGE = @QMI_GLIB_LT_AGE@ QMI_GLIB_LT_CURRENT = @QMI_GLIB_LT_CURRENT@ QMI_GLIB_LT_REVISION = @QMI_GLIB_LT_REVISION@ @@ -310,9 +316,13 @@ mkdir_p = @mkdir_p@ oldincludedir = @oldincludedir@ pdfdir = @pdfdir@ +pkgpyexecdir = @pkgpyexecdir@ +pkgpythondir = @pkgpythondir@ prefix = @prefix@ program_transform_name = @program_transform_name@ psdir = @psdir@ +pyexecdir = @pyexecdir@ +pythondir = @pythondir@ sbindir = @sbindir@ sharedstatedir = @sharedstatedir@ srcdir = @srcdir@ @@ -328,9 +338,7 @@ EXTRA_DIST = TEST_PROGS = $(noinst_PROGRAMS) test_helpers_SOURCES = \ - test-helpers.c \ - $(top_srcdir)/src/qmicli/qmicli-helpers.h \ - $(top_srcdir)/src/qmicli/qmicli-helpers.c + test-helpers.c test_helpers_CPPFLAGS = \ $(GLIB_CFLAGS) \ @@ -343,6 +351,7 @@ test_helpers_LDADD = \ $(GLIB_LIBS) \ + $(top_builddir)/src/qmicli/libhelpers.la \ $(top_builddir)/src/libqmi-glib/libqmi-glib.la all: all-am @@ -366,8 +375,8 @@ *config.status*) \ cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ *) \ - echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ - cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ + echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles)'; \ + cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles);; \ esac; $(top_srcdir)/gtester.make $(am__empty): @@ -399,8 +408,13 @@ distclean-compile: -rm -f *.tab.c -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/test_helpers-qmicli-helpers.Po@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/test_helpers-test-helpers.Po@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/test_helpers-test-helpers.Po@am__quote@ # am--include-marker + +$(am__depfiles_remade): + @$(MKDIR_P) $(@D) + @echo '# dummy' >$@-t && $(am__mv) $@-t $@ + +am--depfiles: $(am__depfiles_remade) .c.o: @am__fastdepCC_TRUE@ $(AM_V_CC)$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< @@ -437,20 +451,6 @@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_helpers_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_helpers-test-helpers.obj `if test -f 'test-helpers.c'; then $(CYGPATH_W) 'test-helpers.c'; else $(CYGPATH_W) '$(srcdir)/test-helpers.c'; fi` -test_helpers-qmicli-helpers.o: $(top_srcdir)/src/qmicli/qmicli-helpers.c -@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_helpers_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_helpers-qmicli-helpers.o -MD -MP -MF $(DEPDIR)/test_helpers-qmicli-helpers.Tpo -c -o test_helpers-qmicli-helpers.o `test -f '$(top_srcdir)/src/qmicli/qmicli-helpers.c' || echo '$(srcdir)/'`$(top_srcdir)/src/qmicli/qmicli-helpers.c -@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/test_helpers-qmicli-helpers.Tpo $(DEPDIR)/test_helpers-qmicli-helpers.Po -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='$(top_srcdir)/src/qmicli/qmicli-helpers.c' object='test_helpers-qmicli-helpers.o' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_helpers_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_helpers-qmicli-helpers.o `test -f '$(top_srcdir)/src/qmicli/qmicli-helpers.c' || echo '$(srcdir)/'`$(top_srcdir)/src/qmicli/qmicli-helpers.c - -test_helpers-qmicli-helpers.obj: $(top_srcdir)/src/qmicli/qmicli-helpers.c -@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_helpers_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_helpers-qmicli-helpers.obj -MD -MP -MF $(DEPDIR)/test_helpers-qmicli-helpers.Tpo -c -o test_helpers-qmicli-helpers.obj `if test -f '$(top_srcdir)/src/qmicli/qmicli-helpers.c'; then $(CYGPATH_W) '$(top_srcdir)/src/qmicli/qmicli-helpers.c'; else $(CYGPATH_W) '$(srcdir)/$(top_srcdir)/src/qmicli/qmicli-helpers.c'; fi` -@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/test_helpers-qmicli-helpers.Tpo $(DEPDIR)/test_helpers-qmicli-helpers.Po -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='$(top_srcdir)/src/qmicli/qmicli-helpers.c' object='test_helpers-qmicli-helpers.obj' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_helpers_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_helpers-qmicli-helpers.obj `if test -f '$(top_srcdir)/src/qmicli/qmicli-helpers.c'; then $(CYGPATH_W) '$(top_srcdir)/src/qmicli/qmicli-helpers.c'; else $(CYGPATH_W) '$(srcdir)/$(top_srcdir)/src/qmicli/qmicli-helpers.c'; fi` - mostlyclean-libtool: -rm -f *.lo @@ -509,7 +509,10 @@ distclean-tags: -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags -distdir: $(DISTFILES) +distdir: $(BUILT_SOURCES) + $(MAKE) $(AM_MAKEFLAGS) distdir-am + +distdir-am: $(DISTFILES) @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ list='$(DISTFILES)'; \ @@ -580,7 +583,7 @@ mostlyclean-am distclean: distclean-am - -rm -rf ./$(DEPDIR) + -rm -f ./$(DEPDIR)/test_helpers-test-helpers.Po -rm -f Makefile distclean-am: clean-am distclean-compile distclean-generic \ distclean-tags @@ -626,7 +629,7 @@ installcheck-am: maintainer-clean: maintainer-clean-am - -rm -rf ./$(DEPDIR) + -rm -f ./$(DEPDIR)/test_helpers-test-helpers.Po -rm -f Makefile maintainer-clean-am: distclean-am maintainer-clean-generic @@ -647,19 +650,19 @@ .MAKE: check-am install-am install-strip -.PHONY: CTAGS GTAGS TAGS all all-am check check-am check-local clean \ - clean-generic clean-libtool clean-noinstPROGRAMS cscopelist-am \ - ctags ctags-am distclean distclean-compile distclean-generic \ - distclean-libtool distclean-tags distdir dvi dvi-am html \ - html-am info info-am install install-am install-data \ - install-data-am install-dvi install-dvi-am install-exec \ - install-exec-am install-html install-html-am install-info \ - install-info-am install-man install-pdf install-pdf-am \ - install-ps install-ps-am install-strip installcheck \ - installcheck-am installdirs maintainer-clean \ - maintainer-clean-generic mostlyclean mostlyclean-compile \ - mostlyclean-generic mostlyclean-libtool pdf pdf-am ps ps-am \ - tags tags-am uninstall uninstall-am +.PHONY: CTAGS GTAGS TAGS all all-am am--depfiles check check-am \ + check-local clean clean-generic clean-libtool \ + clean-noinstPROGRAMS cscopelist-am ctags ctags-am distclean \ + distclean-compile distclean-generic distclean-libtool \ + distclean-tags distdir dvi dvi-am html html-am info info-am \ + install install-am install-data install-data-am install-dvi \ + install-dvi-am install-exec install-exec-am install-html \ + install-html-am install-info install-info-am install-man \ + install-pdf install-pdf-am install-ps install-ps-am \ + install-strip installcheck installcheck-am installdirs \ + maintainer-clean maintainer-clean-generic mostlyclean \ + mostlyclean-compile mostlyclean-generic mostlyclean-libtool \ + pdf pdf-am ps ps-am tags tags-am uninstall uninstall-am .PRECIOUS: Makefile diff -Nru libqmi-1.18.0/src/qmi-firmware-update/Makefile.in libqmi-1.22.0/src/qmi-firmware-update/Makefile.in --- libqmi-1.18.0/src/qmi-firmware-update/Makefile.in 2017-03-22 12:20:26.000000000 +0100 +++ libqmi-1.22.0/src/qmi-firmware-update/Makefile.in 2019-01-08 15:17:16.000000000 +0100 @@ -1,7 +1,7 @@ -# Makefile.in generated by automake 1.15 from Makefile.am. +# Makefile.in generated by automake 1.16.1 from Makefile.am. # @configure_input@ -# Copyright (C) 1994-2014 Free Software Foundation, Inc. +# Copyright (C) 1994-2018 Free Software Foundation, Inc. # This Makefile.in is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, @@ -104,6 +104,8 @@ CONFIG_HEADER = $(top_builddir)/config.h CONFIG_CLEAN_FILES = CONFIG_CLEAN_VPATH_FILES = +am__installdirs = "$(DESTDIR)$(bindir)" +PROGRAMS = $(bin_PROGRAMS) LTLIBRARIES = $(noinst_LTLIBRARIES) libutils_la_DEPENDENCIES = \ $(top_builddir)/src/libqmi-glib/libqmi-glib.la @@ -113,8 +115,6 @@ am__v_lt_ = $(am__v_lt_@AM_DEFAULT_V@) am__v_lt_0 = --silent am__v_lt_1 = -am__installdirs = "$(DESTDIR)$(bindir)" -PROGRAMS = $(bin_PROGRAMS) am_qmi_firmware_update_OBJECTS = \ qmi_firmware_update-qfu-main.$(OBJEXT) \ qmi_firmware_update-qfu-device-selection.$(OBJEXT) \ @@ -154,7 +154,25 @@ am__v_at_1 = DEFAULT_INCLUDES = -I.@am__isrc@ -I$(top_builddir) depcomp = $(SHELL) $(top_srcdir)/depcomp -am__depfiles_maybe = depfiles +am__maybe_remake_depfiles = depfiles +am__depfiles_remade = ./$(DEPDIR)/libutils_la-qfu-utils.Plo \ + ./$(DEPDIR)/qmi_firmware_update-qfu-at-device.Po \ + ./$(DEPDIR)/qmi_firmware_update-qfu-device-selection.Po \ + ./$(DEPDIR)/qmi_firmware_update-qfu-dload-message.Po \ + ./$(DEPDIR)/qmi_firmware_update-qfu-enum-types.Po \ + ./$(DEPDIR)/qmi_firmware_update-qfu-image-cwe.Po \ + ./$(DEPDIR)/qmi_firmware_update-qfu-image-factory.Po \ + ./$(DEPDIR)/qmi_firmware_update-qfu-image.Po \ + ./$(DEPDIR)/qmi_firmware_update-qfu-log.Po \ + ./$(DEPDIR)/qmi_firmware_update-qfu-main.Po \ + ./$(DEPDIR)/qmi_firmware_update-qfu-operation-reset.Po \ + ./$(DEPDIR)/qmi_firmware_update-qfu-operation-update.Po \ + ./$(DEPDIR)/qmi_firmware_update-qfu-operation-verify.Po \ + ./$(DEPDIR)/qmi_firmware_update-qfu-qdl-device.Po \ + ./$(DEPDIR)/qmi_firmware_update-qfu-qdl-message.Po \ + ./$(DEPDIR)/qmi_firmware_update-qfu-reseter.Po \ + ./$(DEPDIR)/qmi_firmware_update-qfu-udev-helpers.Po \ + ./$(DEPDIR)/qmi_firmware_update-qfu-updater.Po am__mv = mv -f COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \ $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) @@ -197,7 +215,7 @@ $(RECURSIVE_CLEAN_TARGETS) \ $(am__extra_recursive_targets) AM_RECURSIVE_TARGETS = $(am__recursive_targets:-recursive=) TAGS CTAGS \ - distdir + distdir distdir-am am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP) # Read a list of newline-separated strings from the standard input, # and print each of them once, without duplicates. Input order is @@ -321,6 +339,11 @@ PKG_CONFIG = @PKG_CONFIG@ PKG_CONFIG_LIBDIR = @PKG_CONFIG_LIBDIR@ PKG_CONFIG_PATH = @PKG_CONFIG_PATH@ +PYTHON = @PYTHON@ +PYTHON_EXEC_PREFIX = @PYTHON_EXEC_PREFIX@ +PYTHON_PLATFORM = @PYTHON_PLATFORM@ +PYTHON_PREFIX = @PYTHON_PREFIX@ +PYTHON_VERSION = @PYTHON_VERSION@ QMI_GLIB_LT_AGE = @QMI_GLIB_LT_AGE@ QMI_GLIB_LT_CURRENT = @QMI_GLIB_LT_CURRENT@ QMI_GLIB_LT_REVISION = @QMI_GLIB_LT_REVISION@ @@ -378,9 +401,13 @@ mkdir_p = @mkdir_p@ oldincludedir = @oldincludedir@ pdfdir = @pdfdir@ +pkgpyexecdir = @pkgpyexecdir@ +pkgpythondir = @pkgpythondir@ prefix = @prefix@ program_transform_name = @program_transform_name@ psdir = @psdir@ +pyexecdir = @pyexecdir@ +pythondir = @pythondir@ sbindir = @sbindir@ sharedstatedir = @sharedstatedir@ srcdir = @srcdir@ @@ -486,8 +513,8 @@ *config.status*) \ cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ *) \ - echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ - cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ + echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles)'; \ + cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles);; \ esac; $(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) @@ -498,20 +525,6 @@ $(ACLOCAL_M4): @MAINTAINER_MODE_TRUE@ $(am__aclocal_m4_deps) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(am__aclocal_m4_deps): - -clean-noinstLTLIBRARIES: - -test -z "$(noinst_LTLIBRARIES)" || rm -f $(noinst_LTLIBRARIES) - @list='$(noinst_LTLIBRARIES)'; \ - locs=`for p in $$list; do echo $$p; done | \ - sed 's|^[^/]*$$|.|; s|/[^/]*$$||; s|$$|/so_locations|' | \ - sort -u`; \ - test -z "$$locs" || { \ - echo rm -f $${locs}; \ - rm -f $${locs}; \ - } - -libutils.la: $(libutils_la_OBJECTS) $(libutils_la_DEPENDENCIES) $(EXTRA_libutils_la_DEPENDENCIES) - $(AM_V_CCLD)$(LINK) $(libutils_la_OBJECTS) $(libutils_la_LIBADD) $(LIBS) install-binPROGRAMS: $(bin_PROGRAMS) @$(NORMAL_INSTALL) @list='$(bin_PROGRAMS)'; test -n "$(bindir)" || list=; \ @@ -562,6 +575,20 @@ echo " rm -f" $$list; \ rm -f $$list +clean-noinstLTLIBRARIES: + -test -z "$(noinst_LTLIBRARIES)" || rm -f $(noinst_LTLIBRARIES) + @list='$(noinst_LTLIBRARIES)'; \ + locs=`for p in $$list; do echo $$p; done | \ + sed 's|^[^/]*$$|.|; s|/[^/]*$$||; s|$$|/so_locations|' | \ + sort -u`; \ + test -z "$$locs" || { \ + echo rm -f $${locs}; \ + rm -f $${locs}; \ + } + +libutils.la: $(libutils_la_OBJECTS) $(libutils_la_DEPENDENCIES) $(EXTRA_libutils_la_DEPENDENCIES) + $(AM_V_CCLD)$(LINK) $(libutils_la_OBJECTS) $(libutils_la_LIBADD) $(LIBS) + qmi-firmware-update$(EXEEXT): $(qmi_firmware_update_OBJECTS) $(qmi_firmware_update_DEPENDENCIES) $(EXTRA_qmi_firmware_update_DEPENDENCIES) @rm -f qmi-firmware-update$(EXEEXT) $(AM_V_CCLD)$(LINK) $(qmi_firmware_update_OBJECTS) $(qmi_firmware_update_LDADD) $(LIBS) @@ -572,24 +599,30 @@ distclean-compile: -rm -f *.tab.c -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libutils_la-qfu-utils.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/qmi_firmware_update-qfu-at-device.Po@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/qmi_firmware_update-qfu-device-selection.Po@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/qmi_firmware_update-qfu-dload-message.Po@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/qmi_firmware_update-qfu-enum-types.Po@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/qmi_firmware_update-qfu-image-cwe.Po@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/qmi_firmware_update-qfu-image-factory.Po@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/qmi_firmware_update-qfu-image.Po@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/qmi_firmware_update-qfu-log.Po@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/qmi_firmware_update-qfu-main.Po@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/qmi_firmware_update-qfu-operation-reset.Po@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/qmi_firmware_update-qfu-operation-update.Po@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/qmi_firmware_update-qfu-operation-verify.Po@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/qmi_firmware_update-qfu-qdl-device.Po@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/qmi_firmware_update-qfu-qdl-message.Po@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/qmi_firmware_update-qfu-reseter.Po@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/qmi_firmware_update-qfu-udev-helpers.Po@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/qmi_firmware_update-qfu-updater.Po@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libutils_la-qfu-utils.Plo@am__quote@ # am--include-marker +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/qmi_firmware_update-qfu-at-device.Po@am__quote@ # am--include-marker +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/qmi_firmware_update-qfu-device-selection.Po@am__quote@ # am--include-marker +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/qmi_firmware_update-qfu-dload-message.Po@am__quote@ # am--include-marker +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/qmi_firmware_update-qfu-enum-types.Po@am__quote@ # am--include-marker +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/qmi_firmware_update-qfu-image-cwe.Po@am__quote@ # am--include-marker +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/qmi_firmware_update-qfu-image-factory.Po@am__quote@ # am--include-marker +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/qmi_firmware_update-qfu-image.Po@am__quote@ # am--include-marker +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/qmi_firmware_update-qfu-log.Po@am__quote@ # am--include-marker +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/qmi_firmware_update-qfu-main.Po@am__quote@ # am--include-marker +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/qmi_firmware_update-qfu-operation-reset.Po@am__quote@ # am--include-marker +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/qmi_firmware_update-qfu-operation-update.Po@am__quote@ # am--include-marker +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/qmi_firmware_update-qfu-operation-verify.Po@am__quote@ # am--include-marker +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/qmi_firmware_update-qfu-qdl-device.Po@am__quote@ # am--include-marker +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/qmi_firmware_update-qfu-qdl-message.Po@am__quote@ # am--include-marker +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/qmi_firmware_update-qfu-reseter.Po@am__quote@ # am--include-marker +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/qmi_firmware_update-qfu-udev-helpers.Po@am__quote@ # am--include-marker +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/qmi_firmware_update-qfu-updater.Po@am__quote@ # am--include-marker + +$(am__depfiles_remade): + @$(MKDIR_P) $(@D) + @echo '# dummy' >$@-t && $(am__mv) $@-t $@ + +am--depfiles: $(am__depfiles_remade) .c.o: @am__fastdepCC_TRUE@ $(AM_V_CC)$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< @@ -962,7 +995,10 @@ distclean-tags: -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags -distdir: $(DISTFILES) +distdir: $(BUILT_SOURCES) + $(MAKE) $(AM_MAKEFLAGS) distdir-am + +distdir-am: $(DISTFILES) @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ list='$(DISTFILES)'; \ @@ -1020,7 +1056,7 @@ check-am: all-am check: $(BUILT_SOURCES) $(MAKE) $(AM_MAKEFLAGS) check-recursive -all-am: Makefile $(LTLIBRARIES) $(PROGRAMS) +all-am: Makefile $(PROGRAMS) $(LTLIBRARIES) installdirs: installdirs-recursive installdirs-am: for dir in "$(DESTDIR)$(bindir)"; do \ @@ -1065,7 +1101,24 @@ clean-noinstLTLIBRARIES mostlyclean-am distclean: distclean-recursive - -rm -rf ./$(DEPDIR) + -rm -f ./$(DEPDIR)/libutils_la-qfu-utils.Plo + -rm -f ./$(DEPDIR)/qmi_firmware_update-qfu-at-device.Po + -rm -f ./$(DEPDIR)/qmi_firmware_update-qfu-device-selection.Po + -rm -f ./$(DEPDIR)/qmi_firmware_update-qfu-dload-message.Po + -rm -f ./$(DEPDIR)/qmi_firmware_update-qfu-enum-types.Po + -rm -f ./$(DEPDIR)/qmi_firmware_update-qfu-image-cwe.Po + -rm -f ./$(DEPDIR)/qmi_firmware_update-qfu-image-factory.Po + -rm -f ./$(DEPDIR)/qmi_firmware_update-qfu-image.Po + -rm -f ./$(DEPDIR)/qmi_firmware_update-qfu-log.Po + -rm -f ./$(DEPDIR)/qmi_firmware_update-qfu-main.Po + -rm -f ./$(DEPDIR)/qmi_firmware_update-qfu-operation-reset.Po + -rm -f ./$(DEPDIR)/qmi_firmware_update-qfu-operation-update.Po + -rm -f ./$(DEPDIR)/qmi_firmware_update-qfu-operation-verify.Po + -rm -f ./$(DEPDIR)/qmi_firmware_update-qfu-qdl-device.Po + -rm -f ./$(DEPDIR)/qmi_firmware_update-qfu-qdl-message.Po + -rm -f ./$(DEPDIR)/qmi_firmware_update-qfu-reseter.Po + -rm -f ./$(DEPDIR)/qmi_firmware_update-qfu-udev-helpers.Po + -rm -f ./$(DEPDIR)/qmi_firmware_update-qfu-updater.Po -rm -f Makefile distclean-am: clean-am distclean-compile distclean-generic \ distclean-tags @@ -1111,7 +1164,24 @@ installcheck-am: maintainer-clean: maintainer-clean-recursive - -rm -rf ./$(DEPDIR) + -rm -f ./$(DEPDIR)/libutils_la-qfu-utils.Plo + -rm -f ./$(DEPDIR)/qmi_firmware_update-qfu-at-device.Po + -rm -f ./$(DEPDIR)/qmi_firmware_update-qfu-device-selection.Po + -rm -f ./$(DEPDIR)/qmi_firmware_update-qfu-dload-message.Po + -rm -f ./$(DEPDIR)/qmi_firmware_update-qfu-enum-types.Po + -rm -f ./$(DEPDIR)/qmi_firmware_update-qfu-image-cwe.Po + -rm -f ./$(DEPDIR)/qmi_firmware_update-qfu-image-factory.Po + -rm -f ./$(DEPDIR)/qmi_firmware_update-qfu-image.Po + -rm -f ./$(DEPDIR)/qmi_firmware_update-qfu-log.Po + -rm -f ./$(DEPDIR)/qmi_firmware_update-qfu-main.Po + -rm -f ./$(DEPDIR)/qmi_firmware_update-qfu-operation-reset.Po + -rm -f ./$(DEPDIR)/qmi_firmware_update-qfu-operation-update.Po + -rm -f ./$(DEPDIR)/qmi_firmware_update-qfu-operation-verify.Po + -rm -f ./$(DEPDIR)/qmi_firmware_update-qfu-qdl-device.Po + -rm -f ./$(DEPDIR)/qmi_firmware_update-qfu-qdl-message.Po + -rm -f ./$(DEPDIR)/qmi_firmware_update-qfu-reseter.Po + -rm -f ./$(DEPDIR)/qmi_firmware_update-qfu-udev-helpers.Po + -rm -f ./$(DEPDIR)/qmi_firmware_update-qfu-updater.Po -rm -f Makefile maintainer-clean-am: distclean-am maintainer-clean-generic @@ -1133,20 +1203,21 @@ .MAKE: $(am__recursive_targets) all check install install-am \ install-strip -.PHONY: $(am__recursive_targets) CTAGS GTAGS TAGS all all-am check \ - check-am clean clean-binPROGRAMS clean-generic clean-libtool \ - clean-noinstLTLIBRARIES cscopelist-am ctags ctags-am distclean \ - distclean-compile distclean-generic distclean-libtool \ - distclean-tags distdir dvi dvi-am html html-am info info-am \ - install install-am install-binPROGRAMS install-data \ - install-data-am install-dvi install-dvi-am install-exec \ - install-exec-am install-html install-html-am install-info \ - install-info-am install-man install-pdf install-pdf-am \ - install-ps install-ps-am install-strip installcheck \ - installcheck-am installdirs installdirs-am maintainer-clean \ - maintainer-clean-generic mostlyclean mostlyclean-compile \ - mostlyclean-generic mostlyclean-libtool pdf pdf-am ps ps-am \ - tags tags-am uninstall uninstall-am uninstall-binPROGRAMS +.PHONY: $(am__recursive_targets) CTAGS GTAGS TAGS all all-am \ + am--depfiles check check-am clean clean-binPROGRAMS \ + clean-generic clean-libtool clean-noinstLTLIBRARIES \ + cscopelist-am ctags ctags-am distclean distclean-compile \ + distclean-generic distclean-libtool distclean-tags distdir dvi \ + dvi-am html html-am info info-am install install-am \ + install-binPROGRAMS install-data install-data-am install-dvi \ + install-dvi-am install-exec install-exec-am install-html \ + install-html-am install-info install-info-am install-man \ + install-pdf install-pdf-am install-ps install-ps-am \ + install-strip installcheck installcheck-am installdirs \ + installdirs-am maintainer-clean maintainer-clean-generic \ + mostlyclean mostlyclean-compile mostlyclean-generic \ + mostlyclean-libtool pdf pdf-am ps ps-am tags tags-am uninstall \ + uninstall-am uninstall-binPROGRAMS .PRECIOUS: Makefile diff -Nru libqmi-1.18.0/src/qmi-firmware-update/qfu-at-device.c libqmi-1.22.0/src/qmi-firmware-update/qfu-at-device.c --- libqmi-1.18.0/src/qmi-firmware-update/qfu-at-device.c 2017-03-21 14:26:54.000000000 +0100 +++ libqmi-1.22.0/src/qmi-firmware-update/qfu-at-device.c 2018-09-22 10:39:25.000000000 +0200 @@ -113,7 +113,7 @@ if (wlen != strlen (request)) { g_set_error (error, G_IO_ERROR, G_IO_ERROR_FAILED, "error writing: only %" G_GSSIZE_FORMAT "/%" G_GSIZE_FORMAT " bytes written", - wlen, wlen); + wlen, strlen (request)); return FALSE; } diff -Nru libqmi-1.18.0/src/qmi-firmware-update/qfu-device-selection.c libqmi-1.22.0/src/qmi-firmware-update/qfu-device-selection.c --- libqmi-1.18.0/src/qmi-firmware-update/qfu-device-selection.c 2017-03-21 14:26:54.000000000 +0100 +++ libqmi-1.22.0/src/qmi-firmware-update/qfu-device-selection.c 2018-03-20 21:33:05.000000000 +0100 @@ -42,6 +42,8 @@ #if defined WITH_UDEV /* sysfs path */ gchar *sysfs_path; + /* peer port sysfs path */ + gchar *peer_port; /* generic udev monitor */ QfuUdevHelperGenericMonitor *monitor; #endif @@ -74,7 +76,7 @@ preferred_selection = g_object_ref (l->data); g_free (path); } - g_list_free_full (list, (GDestroyNotify) g_object_unref); + g_list_free_full (list, g_object_unref); if (preferred_selection) { path = g_file_get_path (preferred_selection); @@ -154,7 +156,7 @@ path = g_file_get_path (preferred_selection); g_debug ("[qfu,device-selection] using only preferred device: %s", path); g_free (path); - g_list_free_full (list, (GDestroyNotify) g_object_unref); + g_list_free_full (list, g_object_unref); return g_list_append (NULL, preferred_selection); } @@ -212,7 +214,7 @@ if (!file) g_task_return_error (task, error); else - g_task_return_pointer (task, file, (GDestroyNotify) g_object_unref); + g_task_return_pointer (task, file, g_object_unref); g_object_unref (task); } @@ -227,6 +229,7 @@ task = g_task_new (self, cancellable, callback, user_data); qfu_udev_helper_wait_for_device (QFU_UDEV_HELPER_DEVICE_TYPE_CDC_WDM, self->priv->sysfs_path, + self->priv->peer_port, cancellable, (GAsyncReadyCallback) wait_for_device_ready, task); @@ -243,6 +246,7 @@ task = g_task_new (self, cancellable, callback, user_data); qfu_udev_helper_wait_for_device (QFU_UDEV_HELPER_DEVICE_TYPE_TTY, self->priv->sysfs_path, + self->priv->peer_port, cancellable, (GAsyncReadyCallback) wait_for_device_ready, task); @@ -309,6 +313,9 @@ return NULL; } + /* look for a peer port */ + self->priv->peer_port = qfu_udev_helper_find_peer_port (self->priv->sysfs_path, error); + /* Initialize right away the generic udev monitor for this sysfs path */ self->priv->monitor = qfu_udev_helper_generic_monitor_new (self->priv->sysfs_path); } @@ -333,6 +340,7 @@ if (self->priv->monitor) qfu_udev_helper_generic_monitor_free (self->priv->monitor); g_free (self->priv->sysfs_path); + g_free (self->priv->peer_port); #endif for (i = 0; i < QFU_UDEV_HELPER_DEVICE_TYPE_LAST; i++) diff -Nru libqmi-1.18.0/src/qmi-firmware-update/qfu-main.c libqmi-1.22.0/src/qmi-firmware-update/qfu-main.c --- libqmi-1.18.0/src/qmi-firmware-update/qfu-main.c 2017-03-21 14:26:54.000000000 +0100 +++ libqmi-1.22.0/src/qmi-firmware-update/qfu-main.c 2019-01-08 15:15:35.000000000 +0100 @@ -344,9 +344,9 @@ g_print ("\n" PROGRAM_NAME " " PROGRAM_VERSION "\n" "\n" - " Copyright (C) 2016-2017 Bjørn Mork\n" - " Copyright (C) 2016-2017 Zodiac Inflight Innovations\n" - " Copyright (C) 2016-2017 Aleksander Morgado\n" + " Copyright (C) 2016-2019 Bjørn Mork\n" + " Copyright (C) 2016-2019 Aleksander Morgado\n" + " Copyright (C) 2016-2018 Zodiac Inflight Innovations\n" "\n" "License GPLv2+: GNU GPL version 2 or later \n" "This is free software: you are free to change and redistribute it.\n" diff -Nru libqmi-1.18.0/src/qmi-firmware-update/qfu-operation-update.c libqmi-1.22.0/src/qmi-firmware-update/qfu-operation-update.c --- libqmi-1.18.0/src/qmi-firmware-update/qfu-operation-update.c 2017-03-21 14:26:54.000000000 +0100 +++ libqmi-1.22.0/src/qmi-firmware-update/qfu-operation-update.c 2018-03-20 21:33:05.000000000 +0100 @@ -104,7 +104,7 @@ /* Run! */ qfu_updater_run (updater, image_file_list, operation.cancellable, (GAsyncReadyCallback) run_ready, &operation); - g_list_free_full (image_file_list, (GDestroyNotify) g_object_unref); + g_list_free_full (image_file_list, g_object_unref); g_main_loop_run (operation.loop); if (operation.cancellable) diff -Nru libqmi-1.18.0/src/qmi-firmware-update/qfu-qdl-device.c libqmi-1.22.0/src/qmi-firmware-update/qfu-qdl-device.c --- libqmi-1.18.0/src/qmi-firmware-update/qfu-qdl-device.c 2017-03-21 14:26:54.000000000 +0100 +++ libqmi-1.22.0/src/qmi-firmware-update/qfu-qdl-device.c 2018-09-22 10:39:25.000000000 +0200 @@ -269,7 +269,7 @@ if (wlen != request_size) { g_set_error (error, G_IO_ERROR, G_IO_ERROR_FAILED, "error writing: only %" G_GSSIZE_FORMAT "/%" G_GSIZE_FORMAT " bytes written", - wlen, wlen); + wlen, request_size); return FALSE; } diff -Nru libqmi-1.18.0/src/qmi-firmware-update/qfu-reseter.c libqmi-1.22.0/src/qmi-firmware-update/qfu-reseter.c --- libqmi-1.18.0/src/qmi-firmware-update/qfu-reseter.c 2017-03-21 14:26:54.000000000 +0100 +++ libqmi-1.22.0/src/qmi-firmware-update/qfu-reseter.c 2018-03-20 21:33:05.000000000 +0100 @@ -77,8 +77,8 @@ qmi_device_close_async (ctx->qmi_device, 10, NULL, NULL, NULL); g_object_unref (ctx->qmi_device); } - g_list_free_full (ctx->ttys, (GDestroyNotify) g_object_unref); - g_list_free_full (ctx->at_devices, (GDestroyNotify) g_object_unref); + g_list_free_full (ctx->ttys, g_object_unref); + g_list_free_full (ctx->at_devices, g_object_unref); g_slice_free (RunContext, ctx); } diff -Nru libqmi-1.18.0/src/qmi-firmware-update/qfu-udev-helpers.c libqmi-1.22.0/src/qmi-firmware-update/qfu-udev-helpers.c --- libqmi-1.18.0/src/qmi-firmware-update/qfu-udev-helpers.c 2017-03-21 14:26:54.000000000 +0100 +++ libqmi-1.22.0/src/qmi-firmware-update/qfu-udev-helpers.c 2018-03-20 21:33:05.000000000 +0100 @@ -228,6 +228,22 @@ return sysfs_path; } +gchar * +qfu_udev_helper_find_peer_port (const gchar *sysfs_path, + GError **error) +{ + gchar *tmp, *path; + + tmp = g_build_filename (sysfs_path, "port", "peer", NULL); + path = realpath (tmp, NULL); + g_free (tmp); + if (!path) + return NULL; + + g_debug ("[qfu-udev] peer port for '%s' found: %s", sysfs_path, path); + return path; +} + /******************************************************************************/ static gboolean @@ -303,7 +319,7 @@ GString *match_str; gchar *sysfs_path = NULL; - sysfs_paths = g_ptr_array_new_with_free_func ((GDestroyNotify) g_free); + sysfs_paths = g_ptr_array_new_with_free_func (g_free); udev = g_udev_client_new (NULL); match_str = g_string_new (""); @@ -457,6 +473,7 @@ QfuUdevHelperDeviceType device_type; GUdevClient *udev; gchar *sysfs_path; + gchar *peer_port; guint timeout_id; gulong uevent_id; gulong cancellable_id; @@ -471,6 +488,7 @@ g_object_unref (ctx->udev); g_free (ctx->sysfs_path); + g_free (ctx->peer_port); g_slice_free (WaitForDeviceContext, ctx); } @@ -496,6 +514,19 @@ return; file = device_matches_sysfs_and_type (device, ctx->sysfs_path, ctx->device_type); + if (!file && ctx->peer_port) { + gchar *tmp, *path; + + tmp = g_build_filename (ctx->peer_port, "device", NULL); + path = realpath (tmp, NULL); + g_free (tmp); + if (!path) + return; + + file = device_matches_sysfs_and_type (device, path, ctx->device_type); + g_debug ("[qfu-udev] peer lookup for %s: %s => %s", g_udev_device_get_name (device), ctx->peer_port, path); + g_free (path); + } if (!file) return; @@ -567,6 +598,7 @@ void qfu_udev_helper_wait_for_device (QfuUdevHelperDeviceType device_type, const gchar *sysfs_path, + const gchar *peer_port, GCancellable *cancellable, GAsyncReadyCallback callback, gpointer user_data) @@ -577,6 +609,7 @@ ctx = g_slice_new0 (WaitForDeviceContext); ctx->device_type = device_type; ctx->sysfs_path = g_strdup (sysfs_path); + ctx->peer_port = g_strdup (peer_port); if (ctx->device_type == QFU_UDEV_HELPER_DEVICE_TYPE_TTY) ctx->udev = g_udev_client_new (tty_subsys_list); diff -Nru libqmi-1.18.0/src/qmi-firmware-update/qfu-udev-helpers.h libqmi-1.22.0/src/qmi-firmware-update/qfu-udev-helpers.h --- libqmi-1.18.0/src/qmi-firmware-update/qfu-udev-helpers.h 2017-03-21 14:26:54.000000000 +0100 +++ libqmi-1.22.0/src/qmi-firmware-update/qfu-udev-helpers.h 2018-03-20 21:33:05.000000000 +0100 @@ -42,6 +42,8 @@ GError **error); gchar *qfu_udev_helper_find_by_file_path (const gchar *path, GError **error); +gchar *qfu_udev_helper_find_peer_port (const gchar *sysfs_path, + GError **error); gchar *qfu_udev_helper_find_by_device_info (guint16 vid, guint16 pid, guint busnum, @@ -53,6 +55,7 @@ void qfu_udev_helper_wait_for_device (QfuUdevHelperDeviceType device_type, const gchar *sysfs_path, + const gchar *peer_port, GCancellable *cancellable, GAsyncReadyCallback callback, gpointer user_data); diff -Nru libqmi-1.18.0/src/qmi-firmware-update/qfu-updater.c libqmi-1.22.0/src/qmi-firmware-update/qfu-updater.c --- libqmi-1.18.0/src/qmi-firmware-update/qfu-updater.c 2017-03-21 14:26:54.000000000 +0100 +++ libqmi-1.22.0/src/qmi-firmware-update/qfu-updater.c 2018-09-22 10:39:25.000000000 +0200 @@ -202,7 +202,7 @@ if (ctx->current_image) g_object_unref (ctx->current_image); - g_list_free_full (ctx->pending_images, (GDestroyNotify) g_object_unref); + g_list_free_full (ctx->pending_images, g_object_unref); g_slice_free (RunContext, ctx); } @@ -1002,7 +1002,7 @@ g_print ("device already contains the given firmware/config version: no download needed\n"); g_print ("forcing the download may be requested with the --override-download option\n"); g_print ("now power cycling to apply the new firmware preference...\n"); - g_list_free_full (ctx->pending_images, (GDestroyNotify) g_object_unref); + g_list_free_full (ctx->pending_images, g_object_unref); ctx->pending_images = NULL; } else { GString *images = NULL; @@ -1223,11 +1223,11 @@ "user provided carrier doesn't match the one in the specified images: " "'%s' != '%s'", self->priv->carrier, ctx->carrier); + return FALSE; } g_warning ("[qfu-updater] user provided carrier doesn't match the one in the specified images: " "'%s' != '%s' (IGNORED with --ignore-version-errors)", self->priv->carrier, ctx->carrier); - return FALSE; } /* No firmware version? */ diff -Nru libqmi-1.18.0/src/qmi-firmware-update/qfu-utils.c libqmi-1.22.0/src/qmi-firmware-update/qfu-utils.c --- libqmi-1.18.0/src/qmi-firmware-update/qfu-utils.c 2017-03-21 14:26:54.000000000 +0100 +++ libqmi-1.22.0/src/qmi-firmware-update/qfu-utils.c 2019-01-08 14:09:47.000000000 +0100 @@ -207,8 +207,7 @@ result = TRUE; out: - if (match_info) - g_match_info_free (match_info); + g_match_info_free (match_info); g_regex_unref (regex); return result; diff -Nru libqmi-1.18.0/src/qmi-firmware-update/test/Makefile.in libqmi-1.22.0/src/qmi-firmware-update/test/Makefile.in --- libqmi-1.18.0/src/qmi-firmware-update/test/Makefile.in 2017-03-22 12:20:26.000000000 +0100 +++ libqmi-1.22.0/src/qmi-firmware-update/test/Makefile.in 2019-01-08 15:17:16.000000000 +0100 @@ -1,7 +1,7 @@ -# Makefile.in generated by automake 1.15 from Makefile.am. +# Makefile.in generated by automake 1.16.1 from Makefile.am. # @configure_input@ -# Copyright (C) 1994-2014 Free Software Foundation, Inc. +# Copyright (C) 1994-2018 Free Software Foundation, Inc. # This Makefile.in is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, @@ -128,7 +128,8 @@ am__v_at_1 = DEFAULT_INCLUDES = -I.@am__isrc@ -I$(top_builddir) depcomp = $(SHELL) $(top_srcdir)/depcomp -am__depfiles_maybe = depfiles +am__maybe_remake_depfiles = depfiles +am__depfiles_remade = ./$(DEPDIR)/test_utils-test-utils.Po am__mv = mv -f COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \ $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) @@ -253,6 +254,11 @@ PKG_CONFIG = @PKG_CONFIG@ PKG_CONFIG_LIBDIR = @PKG_CONFIG_LIBDIR@ PKG_CONFIG_PATH = @PKG_CONFIG_PATH@ +PYTHON = @PYTHON@ +PYTHON_EXEC_PREFIX = @PYTHON_EXEC_PREFIX@ +PYTHON_PLATFORM = @PYTHON_PLATFORM@ +PYTHON_PREFIX = @PYTHON_PREFIX@ +PYTHON_VERSION = @PYTHON_VERSION@ QMI_GLIB_LT_AGE = @QMI_GLIB_LT_AGE@ QMI_GLIB_LT_CURRENT = @QMI_GLIB_LT_CURRENT@ QMI_GLIB_LT_REVISION = @QMI_GLIB_LT_REVISION@ @@ -310,9 +316,13 @@ mkdir_p = @mkdir_p@ oldincludedir = @oldincludedir@ pdfdir = @pdfdir@ +pkgpyexecdir = @pkgpyexecdir@ +pkgpythondir = @pkgpythondir@ prefix = @prefix@ program_transform_name = @program_transform_name@ psdir = @psdir@ +pyexecdir = @pyexecdir@ +pythondir = @pythondir@ sbindir = @sbindir@ sharedstatedir = @sharedstatedir@ srcdir = @srcdir@ @@ -369,8 +379,8 @@ *config.status*) \ cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ *) \ - echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ - cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ + echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles)'; \ + cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles);; \ esac; $(top_srcdir)/gtester.make $(am__empty): @@ -402,7 +412,13 @@ distclean-compile: -rm -f *.tab.c -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/test_utils-test-utils.Po@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/test_utils-test-utils.Po@am__quote@ # am--include-marker + +$(am__depfiles_remade): + @$(MKDIR_P) $(@D) + @echo '# dummy' >$@-t && $(am__mv) $@-t $@ + +am--depfiles: $(am__depfiles_remade) .c.o: @am__fastdepCC_TRUE@ $(AM_V_CC)$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< @@ -497,7 +513,10 @@ distclean-tags: -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags -distdir: $(DISTFILES) +distdir: $(BUILT_SOURCES) + $(MAKE) $(AM_MAKEFLAGS) distdir-am + +distdir-am: $(DISTFILES) @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ list='$(DISTFILES)'; \ @@ -568,7 +587,7 @@ mostlyclean-am distclean: distclean-am - -rm -rf ./$(DEPDIR) + -rm -f ./$(DEPDIR)/test_utils-test-utils.Po -rm -f Makefile distclean-am: clean-am distclean-compile distclean-generic \ distclean-tags @@ -614,7 +633,7 @@ installcheck-am: maintainer-clean: maintainer-clean-am - -rm -rf ./$(DEPDIR) + -rm -f ./$(DEPDIR)/test_utils-test-utils.Po -rm -f Makefile maintainer-clean-am: distclean-am maintainer-clean-generic @@ -635,19 +654,19 @@ .MAKE: check-am install-am install-strip -.PHONY: CTAGS GTAGS TAGS all all-am check check-am check-local clean \ - clean-generic clean-libtool clean-noinstPROGRAMS cscopelist-am \ - ctags ctags-am distclean distclean-compile distclean-generic \ - distclean-libtool distclean-tags distdir dvi dvi-am html \ - html-am info info-am install install-am install-data \ - install-data-am install-dvi install-dvi-am install-exec \ - install-exec-am install-html install-html-am install-info \ - install-info-am install-man install-pdf install-pdf-am \ - install-ps install-ps-am install-strip installcheck \ - installcheck-am installdirs maintainer-clean \ - maintainer-clean-generic mostlyclean mostlyclean-compile \ - mostlyclean-generic mostlyclean-libtool pdf pdf-am ps ps-am \ - tags tags-am uninstall uninstall-am +.PHONY: CTAGS GTAGS TAGS all all-am am--depfiles check check-am \ + check-local clean clean-generic clean-libtool \ + clean-noinstPROGRAMS cscopelist-am ctags ctags-am distclean \ + distclean-compile distclean-generic distclean-libtool \ + distclean-tags distdir dvi dvi-am html html-am info info-am \ + install install-am install-data install-data-am install-dvi \ + install-dvi-am install-exec install-exec-am install-html \ + install-html-am install-info install-info-am install-man \ + install-pdf install-pdf-am install-ps install-ps-am \ + install-strip installcheck installcheck-am installdirs \ + maintainer-clean maintainer-clean-generic mostlyclean \ + mostlyclean-compile mostlyclean-generic mostlyclean-libtool \ + pdf pdf-am ps ps-am tags tags-am uninstall uninstall-am .PRECIOUS: Makefile diff -Nru libqmi-1.18.0/src/qmi-proxy/Makefile.in libqmi-1.22.0/src/qmi-proxy/Makefile.in --- libqmi-1.18.0/src/qmi-proxy/Makefile.in 2017-03-22 12:20:26.000000000 +0100 +++ libqmi-1.22.0/src/qmi-proxy/Makefile.in 2019-01-08 15:17:16.000000000 +0100 @@ -1,7 +1,7 @@ -# Makefile.in generated by automake 1.15 from Makefile.am. +# Makefile.in generated by automake 1.16.1 from Makefile.am. # @configure_input@ -# Copyright (C) 1994-2014 Free Software Foundation, Inc. +# Copyright (C) 1994-2018 Free Software Foundation, Inc. # This Makefile.in is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, @@ -130,7 +130,8 @@ am__v_at_1 = DEFAULT_INCLUDES = -I.@am__isrc@ -I$(top_builddir) depcomp = $(SHELL) $(top_srcdir)/depcomp -am__depfiles_maybe = depfiles +am__maybe_remake_depfiles = depfiles +am__depfiles_remade = ./$(DEPDIR)/qmi_proxy-qmi-proxy.Po am__mv = mv -f COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \ $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) @@ -283,6 +284,11 @@ PKG_CONFIG = @PKG_CONFIG@ PKG_CONFIG_LIBDIR = @PKG_CONFIG_LIBDIR@ PKG_CONFIG_PATH = @PKG_CONFIG_PATH@ +PYTHON = @PYTHON@ +PYTHON_EXEC_PREFIX = @PYTHON_EXEC_PREFIX@ +PYTHON_PLATFORM = @PYTHON_PLATFORM@ +PYTHON_PREFIX = @PYTHON_PREFIX@ +PYTHON_VERSION = @PYTHON_VERSION@ QMI_GLIB_LT_AGE = @QMI_GLIB_LT_AGE@ QMI_GLIB_LT_CURRENT = @QMI_GLIB_LT_CURRENT@ QMI_GLIB_LT_REVISION = @QMI_GLIB_LT_REVISION@ @@ -340,9 +346,13 @@ mkdir_p = @mkdir_p@ oldincludedir = @oldincludedir@ pdfdir = @pdfdir@ +pkgpyexecdir = @pkgpyexecdir@ +pkgpythondir = @pkgpythondir@ prefix = @prefix@ program_transform_name = @program_transform_name@ psdir = @psdir@ +pyexecdir = @pyexecdir@ +pythondir = @pythondir@ sbindir = @sbindir@ sharedstatedir = @sharedstatedir@ srcdir = @srcdir@ @@ -392,8 +402,8 @@ *config.status*) \ cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ *) \ - echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ - cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ + echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles)'; \ + cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles);; \ esac; $(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) @@ -466,7 +476,13 @@ distclean-compile: -rm -f *.tab.c -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/qmi_proxy-qmi-proxy.Po@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/qmi_proxy-qmi-proxy.Po@am__quote@ # am--include-marker + +$(am__depfiles_remade): + @$(MKDIR_P) $(@D) + @echo '# dummy' >$@-t && $(am__mv) $@-t $@ + +am--depfiles: $(am__depfiles_remade) .c.o: @am__fastdepCC_TRUE@ $(AM_V_CC)$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< @@ -582,7 +598,10 @@ distclean-tags: -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags -distdir: $(DISTFILES) +distdir: $(BUILT_SOURCES) + $(MAKE) $(AM_MAKEFLAGS) distdir-am + +distdir-am: $(DISTFILES) @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ list='$(DISTFILES)'; \ @@ -655,7 +674,7 @@ mostlyclean-am distclean: distclean-am - -rm -rf ./$(DEPDIR) + -rm -f ./$(DEPDIR)/qmi_proxy-qmi-proxy.Po -rm -f Makefile distclean-am: clean-am distclean-compile distclean-generic \ distclean-tags @@ -701,7 +720,7 @@ installcheck-am: maintainer-clean: maintainer-clean-am - -rm -rf ./$(DEPDIR) + -rm -f ./$(DEPDIR)/qmi_proxy-qmi-proxy.Po -rm -f Makefile maintainer-clean-am: distclean-am maintainer-clean-generic @@ -722,16 +741,16 @@ .MAKE: install-am install-strip -.PHONY: CTAGS GTAGS TAGS all all-am check check-am clean clean-generic \ - clean-libexecPROGRAMS clean-libtool cscopelist-am ctags \ - ctags-am distclean distclean-compile distclean-generic \ - distclean-libtool distclean-tags distdir dvi dvi-am html \ - html-am info info-am install install-am install-data \ - install-data-am install-dvi install-dvi-am install-exec \ - install-exec-am install-html install-html-am install-info \ - install-info-am install-libexecPROGRAMS install-man \ - install-pdf install-pdf-am install-ps install-ps-am \ - install-strip install-udevrulesDATA installcheck \ +.PHONY: CTAGS GTAGS TAGS all all-am am--depfiles check check-am clean \ + clean-generic clean-libexecPROGRAMS clean-libtool \ + cscopelist-am ctags ctags-am distclean distclean-compile \ + distclean-generic distclean-libtool distclean-tags distdir dvi \ + dvi-am html html-am info info-am install install-am \ + install-data install-data-am install-dvi install-dvi-am \ + install-exec install-exec-am install-html install-html-am \ + install-info install-info-am install-libexecPROGRAMS \ + install-man install-pdf install-pdf-am install-ps \ + install-ps-am install-strip install-udevrulesDATA installcheck \ installcheck-am installdirs maintainer-clean \ maintainer-clean-generic mostlyclean mostlyclean-compile \ mostlyclean-generic mostlyclean-libtool pdf pdf-am ps ps-am \ diff -Nru libqmi-1.18.0/src/qmi-proxy/qmi-proxy.c libqmi-1.22.0/src/qmi-proxy/qmi-proxy.c --- libqmi-1.18.0/src/qmi-proxy/qmi-proxy.c 2017-03-21 14:26:54.000000000 +0100 +++ libqmi-1.22.0/src/qmi-proxy/qmi-proxy.c 2019-01-08 15:15:35.000000000 +0100 @@ -128,7 +128,7 @@ { g_print ("\n" PROGRAM_NAME " " PROGRAM_VERSION "\n" - "Copyright (2013-2015) Aleksander Morgado\n" + "Copyright (2013-2019) Aleksander Morgado\n" "License GPLv2+: GNU GPL version 2 or later \n" "This is free software: you are free to change and redistribute it.\n" "There is NO WARRANTY, to the extent permitted by law.\n" diff -Nru libqmi-1.18.0/utils/Makefile.in libqmi-1.22.0/utils/Makefile.in --- libqmi-1.18.0/utils/Makefile.in 2017-03-22 12:20:26.000000000 +0100 +++ libqmi-1.22.0/utils/Makefile.in 2019-01-08 15:17:16.000000000 +0100 @@ -1,7 +1,7 @@ -# Makefile.in generated by automake 1.15 from Makefile.am. +# Makefile.in generated by automake 1.16.1 from Makefile.am. # @configure_input@ -# Copyright (C) 1994-2014 Free Software Foundation, Inc. +# Copyright (C) 1994-2018 Free Software Foundation, Inc. # This Makefile.in is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, @@ -155,7 +155,8 @@ am__v_at_1 = DEFAULT_INCLUDES = -I.@am__isrc@ -I$(top_builddir) depcomp = $(SHELL) $(top_srcdir)/depcomp -am__depfiles_maybe = depfiles +am__maybe_remake_depfiles = depfiles +am__depfiles_remade = ./$(DEPDIR)/swi-update.Po am__mv = mv -f COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \ $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) @@ -279,6 +280,11 @@ PKG_CONFIG = @PKG_CONFIG@ PKG_CONFIG_LIBDIR = @PKG_CONFIG_LIBDIR@ PKG_CONFIG_PATH = @PKG_CONFIG_PATH@ +PYTHON = @PYTHON@ +PYTHON_EXEC_PREFIX = @PYTHON_EXEC_PREFIX@ +PYTHON_PLATFORM = @PYTHON_PLATFORM@ +PYTHON_PREFIX = @PYTHON_PREFIX@ +PYTHON_VERSION = @PYTHON_VERSION@ QMI_GLIB_LT_AGE = @QMI_GLIB_LT_AGE@ QMI_GLIB_LT_CURRENT = @QMI_GLIB_LT_CURRENT@ QMI_GLIB_LT_REVISION = @QMI_GLIB_LT_REVISION@ @@ -336,9 +342,13 @@ mkdir_p = @mkdir_p@ oldincludedir = @oldincludedir@ pdfdir = @pdfdir@ +pkgpyexecdir = @pkgpyexecdir@ +pkgpythondir = @pkgpythondir@ prefix = @prefix@ program_transform_name = @program_transform_name@ psdir = @psdir@ +pyexecdir = @pyexecdir@ +pythondir = @pythondir@ sbindir = @sbindir@ sharedstatedir = @sharedstatedir@ srcdir = @srcdir@ @@ -371,8 +381,8 @@ *config.status*) \ cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ *) \ - echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ - cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ + echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles)'; \ + cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles);; \ esac; $(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) @@ -438,7 +448,13 @@ distclean-compile: -rm -f *.tab.c -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/swi-update.Po@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/swi-update.Po@am__quote@ # am--include-marker + +$(am__depfiles_remade): + @$(MKDIR_P) $(@D) + @echo '# dummy' >$@-t && $(am__mv) $@-t $@ + +am--depfiles: $(am__depfiles_remade) .c.o: @am__fastdepCC_TRUE@ $(AM_V_CC)$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< @@ -519,7 +535,10 @@ distclean-tags: -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags -distdir: $(DISTFILES) +distdir: $(BUILT_SOURCES) + $(MAKE) $(AM_MAKEFLAGS) distdir-am + +distdir-am: $(DISTFILES) @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ list='$(DISTFILES)'; \ @@ -593,7 +612,7 @@ mostlyclean-am distclean: distclean-am - -rm -rf ./$(DEPDIR) + -rm -f ./$(DEPDIR)/swi-update.Po -rm -f Makefile distclean-am: clean-am distclean-compile distclean-generic \ distclean-tags @@ -639,7 +658,7 @@ installcheck-am: maintainer-clean: maintainer-clean-am - -rm -rf ./$(DEPDIR) + -rm -f ./$(DEPDIR)/swi-update.Po -rm -f Makefile maintainer-clean-am: distclean-am maintainer-clean-generic @@ -660,9 +679,9 @@ .MAKE: install-am install-strip -.PHONY: CTAGS GTAGS TAGS all all-am check check-am clean clean-generic \ - clean-libtool clean-noinstPROGRAMS cscopelist-am ctags \ - ctags-am distclean distclean-compile distclean-generic \ +.PHONY: CTAGS GTAGS TAGS all all-am am--depfiles check check-am clean \ + clean-generic clean-libtool clean-noinstPROGRAMS cscopelist-am \ + ctags ctags-am distclean distclean-compile distclean-generic \ distclean-libtool distclean-tags distdir dvi dvi-am html \ html-am info info-am install install-am install-binSCRIPTS \ install-data install-data-am install-dvi install-dvi-am \ diff -Nru libqmi-1.18.0/utils/qmi-network.in libqmi-1.22.0/utils/qmi-network.in --- libqmi-1.18.0/utils/qmi-network.in 2017-03-21 14:26:54.000000000 +0100 +++ libqmi-1.22.0/utils/qmi-network.in 2019-01-08 14:09:31.000000000 +0100 @@ -71,7 +71,7 @@ version () { echo "qmi-network @VERSION@" - echo "Copyright (2013-2017) Aleksander Morgado" + echo "Copyright (C) 2013-2018 Aleksander Morgado" echo "License GPLv2+: GNU GPL version 2 or later " echo "This is free software: you are free to change and redistribute it." echo "There is NO WARRANTY, to the extent permitted by law." @@ -334,11 +334,13 @@ setup_data_format - START_NETWORK_ARGS="apn='$APN'" - if [ -n "$APN_USER" ]; then - START_NETWORK_ARGS="${START_NETWORK_ARGS},username='$APN_USER'" - if [ -n "$APN_PASS" ]; then - START_NETWORK_ARGS="${START_NETWORK_ARGS},password='$APN_PASS'" + if [ -n "$APN" ]; then + START_NETWORK_ARGS="apn='$APN'" + if [ -n "$APN_USER" ]; then + START_NETWORK_ARGS="${START_NETWORK_ARGS},username='$APN_USER'" + if [ -n "$APN_PASS" ]; then + START_NETWORK_ARGS="${START_NETWORK_ARGS},password='$APN_PASS'" + fi fi fi