/external/libbrillo/brillo/glib/ |
D | dbus.h | 11 #include <dbus/dbus-glib.h> 12 #include <glib-object.h> 19 #include <brillo/glib/object.h> 282 proxy.gproxy(), name, glib::type_to_gtypeid<A1>(), G_TYPE_INVALID); in Monitor() 299 glib::type_to_gtypeid<A1>(), in Monitor() 300 glib::type_to_gtypeid<A2>(), in Monitor() 318 glib::type_to_gtypeid<A1>(), in Monitor() 319 glib::type_to_gtypeid<A2>(), in Monitor() 320 glib::type_to_gtypeid<A3>(), in Monitor() 339 glib::type_to_gtypeid<A1>(), in Monitor() [all …]
|
D | dbus.cc | 5 #include "brillo/glib/dbus.h" 8 #include <dbus/dbus-glib-bindings.h> 9 #include <dbus/dbus-glib-lowlevel.h> 19 glib::ScopedPtrArray<const char*>* result) { in CallPtrArray() 20 glib::ScopedError error; in CallPtrArray() 38 glib::ScopedError error; in GetSystemBusConnection() 56 // Since dbus-glib does not have an API like dbus_g_connection_open_private(), in GetPrivateBusConnection() 111 glib::ScopedHashTable* result) { in RetrieveProperties() 112 glib::ScopedError error; in RetrieveProperties() 175 glib::ScopedError error; in GetGProxy() [all …]
|
D | object_unittest.cc | 5 #include "brillo/glib/object.h" 14 using brillo::glib::ScopedPtrArray; 15 using brillo::glib::ScopedError; 16 using brillo::glib::Retrieve; 17 using brillo::glib::Value;
|
D | README.md | 1 # libbrillo GLib support 3 GLib is deprecated in Chrome OS. Use [libchrome] instead.
|
/external/libchrome/base/message_loop/ |
D | message_pump_glib.cc | 10 #include <glib.h> 22 // Return a timeout suitable for the glib loop, -1 to block forever, 38 // A brief refresher on GLib: 39 // GLib sources have four callbacks: Prepare, Check, Dispatch and Finalize. 40 // On each iteration of the GLib pump, it calls each source's Prepare function. 41 // This function should return TRUE if it wants GLib to call its Dispatch, and 44 // After the Prepare calls, GLib does a poll to check for events from the 48 // After the poll, GLib calls Check for each source that returned FALSE 50 // making Check a second chance to tell GLib we are ready for Dispatch. 51 // Finally, GLib calls Dispatch for each source that is ready. If Dispatch [all …]
|
D | message_pump_glib.h | 23 // platforms using GLib. 31 // is called during the prepare step of glib, and returns a timeout that 54 // This is a GLib structure that we can add event sources to. We use the 55 // default GLib context, which is the one to which all GTK events are 66 // We use a wakeup pipe to make sure we'll get out of the glib polling phase 67 // when another thread has scheduled us to do some work. There is a glib
|
/external/harfbuzz_ng/.circleci/ |
D | config.yml | 10 … - run: HOMEBREW_NO_AUTO_UPDATE=1 brew install wget pkg-config libtool ragel freetype glib cairo 11 - run: ./autogen.sh --with-freetype --with-glib --with-gobject --with-cairo 20 … - run: HOMEBREW_NO_AUTO_UPDATE=1 brew install wget pkg-config libtool ragel freetype glib cairo 21 - run: ./autogen.sh --with-freetype --with-glib --with-gobject --with-cairo 30 … - run: HOMEBREW_NO_AUTO_UPDATE=1 brew install wget pkg-config libtool ragel freetype glib cairo 32 …2 CXX=$PWD/opt/local/bin/llvm-g++-4.2 ./autogen.sh --with-freetype --with-glib --with-gobject --wi… 78 …&& apk add ragel make pkgconfig libtool autoconf automake gettext gcc g++ glib-dev freetype-dev ca… 92 … CXXFLAGS="-O0" CPPFLAGS="-DHB_DEBUG" ./autogen.sh --with-freetype --with-glib --with-gobject --wi… 105 …C=clang CXX=clang++ ./autogen.sh --with-freetype --with-fontconfig --with-glib --with-cairo --with… 108 …C=clang CXX=clang++ ./autogen.sh --with-freetype --with-fontconfig --with-glib --with-cairo --with… [all …]
|
/external/autotest/client/cros/ |
D | mainloop.py | 10 # TODO(rochberg): Take another shot at fixing glib to allow this 13 """Decorator that saves exceptions for forwarding across a glib 16 Exceptions thrown by glib callbacks are swallowed if they reach the 17 glib main loop. This decorator collaborates with 32 """Wraps a glib mainloop so that exceptions raised by functions 37 glib callbacks like add_idle) must be wrapped in the 74 """Runs a glib mainloop until it times out or all requirements are
|
D | dark_resume_listener.py | 9 import dbus.mainloop.glib 22 dbus.mainloop.glib.threads_init() 25 dbus.mainloop.glib.DBusGMainLoop(set_as_default=True)
|
/external/autotest/client/deps/fakemodem/src/ |
D | fakemodem-dbus.xml | 5 <annotation name="org.freedesktop.DBus.GLib.CSymbol" value="fake_modem"/> 7 <annotation name="org.freedesktop.DBus.GLib.CSymbol" 12 <annotation name="org.freedesktop.DBus.GLib.CSymbol" 19 <annotation name="org.freedesktop.DBus.GLib.CSymbol"
|
D | Makefile | 5 PKGS := glib-2.0 dbus-glib-1 23 dbus-binding-tool --mode=glib-server --prefix=fakemodem \
|
/external/webrtc/webrtc/base/ |
D | libdbusglibsymboltable.h | 16 #include <dbus/dbus-glib.h> 17 #include <dbus/dbus-glib-lowlevel.h> 24 // The libdbus-glib symbols we need, as an X-Macro list. 25 // This list must contain precisely every libdbus-glib function that is used in
|
D | dbus.cc | 15 #include <glib.h> 26 // Releases DBus-Glib symbols. 34 // Loads DBus-Glib symbols. 40 // Loads dbus-glib in InitializeDBusGlibSymbol() 42 LOG(LS_WARNING) << "Failed to load dbus-glib symbol table."; in InitializeDBusGlibSymbol() 306 // Returns DBus-Glib symbol handle. Initialize it first if hasn't. 347 // g_thread_init API is deprecated since glib 2.31.0, see release note: in StartMonitoring()
|
/external/harfbuzz_ng/ |
D | CMakeLists.txt | 39 option(HB_HAVE_GLIB "Enable glib unicode functions" OFF) 49 option(HB_BUILD_UTILS "Build harfbuzz utils, needs cairo, freetype, and glib properly be installed"… 311 pkg_check_modules(PC_GLIB QUIET glib-2.0) 313 find_library(GLIB_LIBRARIES NAMES glib-2.0 HINTS ${PC_GLIB_LIBDIR} ${PC_GLIB_LIBRARY_DIRS}) 314 …R} ${PC_LIBRARY_DIRS} ${PC_GLIB_INCLUDEDIR} ${PC_GLIB_INCLUDE_DIRS} PATH_SUFFIXES glib-2.0/include) 315 …find_path(GLIB_INCLUDE_DIR NAMES glib.h HINTS ${PC_GLIB_INCLUDEDIR} ${PC_GLIB_INCLUDE_DIRS} PATH_S… 319 list(APPEND project_sources ${PROJECT_SOURCE_DIR}/src/hb-glib.cc) 320 list(APPEND project_headers ${PROJECT_SOURCE_DIR}/src/hb-glib.h) 403 # Use the hints from glib-2.0.pc to find glib-mkenums 405 pkg_check_modules(PC_GLIB QUIET glib-2.0) [all …]
|
D | .travis.yml | 10 …- CXXFLAGS="-Werror -Werror=unused -Werror=unused-function -Wno-deprecated-register" # glib uses r… 11 …- CONFIGURE_OPTS="--with-freetype --with-glib --with-gobject --with-cairo --with-icu --with-graphi… 54 - brew install ragel freetype glib gobject-introspection cairo graphite2 || true 88 …build_command_prepend: ./autogen.sh --with-freetype --with-glib --with-gobject --with-cairo --with…
|
D | configure.ac | 158 AC_ARG_WITH(glib, optwith 159 [AS_HELP_STRING([--with-glib=@<:@yes/no/auto@:>@], 160 [Use glib @<:@default=auto@:>@])],, 163 GLIB_DEPS="glib-2.0 >= 2.19.1" 166 PKG_CHECK_MODULES(GLIB, $GLIB_DEPS, have_glib=true, :) 169 AC_MSG_ERROR([glib support requested but glib-2.0 not found]) 184 PKG_CHECK_MODULES(GOBJECT, gobject-2.0 glib-2.0, have_gobject=true, :) 187 AC_MSG_ERROR([gobject support requested but gobject-2.0 / glib-2.0 not found]) 191 GLIB_MKENUMS=`$PKG_CONFIG --variable=glib_mkenums glib-2.0` 527 Glib: ${have_glib}
|
/external/libbrillo/ |
D | libbrillo-glib.pc.in | 3 Name: libbrillo-glib 4 Description: brillo glib wrapper library 7 Libs: -lbrillo-glib-${bslot}
|
D | libbrillo.gypi | 291 'target_name': 'libbrillo-glib-<(libbase_ver)', 298 'glib-2.0', 305 'dbus-glib-1', 312 # glib uses the deprecated "register" attribute in some header files. 326 'brillo/glib/abstract_dbus_service.cc', 327 'brillo/glib/dbus.cc', 341 'libbrillo-glib-<(libbase_ver)', 379 'brillo/glib/object_unittest.cc',
|
D | platform2_preinstall.sh | 45 deps_glib=$(<"${OUT}"/gen/libbrillo-glib-${v}-deps.txt) 46 pc_glib="${OUT}"/lib/libbrillo-glib-${v}.pc 51 "libbrillo-glib.pc.in" > "${pc_glib}"
|
/external/harfbuzz_ng/src/ |
D | hb-glib.cc | 31 #include "hb-glib.h" 37 * SECTION:hb-glib 38 * @title: hb-glib 39 * @short_description: GLib integration 40 * @include: hb-glib.h 42 * Functions for using HarfBuzz with the GLib library to provide Unicode data.
|
D | sample.py | 9 from gi.repository import GLib 25 # Need to create GLib.Bytes explicitly until this bug is fixed: 27 blob = hb.glib_blob_create (GLib.Bytes.new (fontdata))
|
/external/harfbuzz_ng/docs/ |
D | usermanual-install-harfbuzz.xml | 53 development packages for FreeType, Cairo, and GLib. The exact 148 development packages for FreeType, Cairo, and GLib. If you are 157 <command>brew install</command> <package>freetype glib cairo</package> 246 <term>--with-glib</term> 249 …Use <ulink url="https://developer.gnome.org/glib/">GLib</ulink>. <emphasis>(Default = auto)</empha… 252 This option enables or disables usage of the GLib 254 presence of GLib and, if it is found, build with 255 GLib support. GLib is native to GNU/Linux systems but is
|
/external/autotest/client/site_tests/cellular_GobiRecoverFromDesync/ |
D | cellular_GobiRecoverFromDesync.py | 6 import glib 36 """Common tools for running glib event loops.""" 38 # The glib mainloop sinks exceptions thrown by event handlers, so we 114 if condition & glib.IO_IN: 187 glib.io_add_watch(os.fdopen(master), 188 glib.IO_IN | glib.IO_HUP,
|
/external/webrtc/webrtc/ |
D | BUILD.gn | 65 pkg_config("dbus-glib") { 66 packages = [ "dbus-glib-1" ] 82 # build/config/linux/pkg-config.py dbus-glib-1 returns correct include 84 all_dependent_configs = [ "dbus-glib" ]
|
/external/autotest/client/cros/audio/ |
D | cras_dbus_utils.py | 17 @raises: ImportError if dbus.mainloop.glib can not be imported. 21 import dbus.mainloop.glib 24 'Can not import dbus.mainloop.glib: %s. ' 27 dbus.mainloop.glib.DBusGMainLoop(set_as_default=True)
|