HomeSort by relevance Sort by last modified time
    Searched refs:chre (Results 1 - 25 of 390) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /system/chre/platform/linux/
context.cc 17 #include "chre/platform/context.h"
19 namespace chre { namespace
26 } // namespace chre
fatal_error.cc 17 #include "chre/target_platform/fatal_error.h"
19 #include "chre/platform/shared/platform_log.h"
21 namespace chre { namespace
25 chre::PlatformLogSingleton::deinit();
28 } // namespace chre
platform_pal.cc 17 #include "chre/platform/shared/platform_pal.h"
19 namespace chre { namespace
23 } // namespace chre
memory_manager.cc 17 #include "chre/platform/memory_manager.h"
19 #include "chre/util/memory.h"
21 namespace chre { namespace
24 return chre::memoryAlloc(bytes);
28 chre::memoryFree(ptr);
31 } // namespace chre
  /system/chre/chre_api/include/chre_api/
chre.h 23 * interface for the Context Hub Runtime Environment (CHRE). This interface is
31 #include <chre/audio.h>
32 #include <chre/common.h>
33 #include <chre/event.h>
34 #include <chre/gnss.h>
35 #include <chre/nanoapp.h>
36 #include <chre/re.h>
37 #include <chre/sensor.h>
38 #include <chre/version.h>
39 #include <chre/wifi.h
    [all...]
  /system/chre/chre_api/legacy/v1_1/
chre.h 23 * interface for the Context Hub Runtime Environment (CHRE). This interface is
31 #include <chre/common.h>
32 #include <chre/event.h>
33 #include <chre/gnss.h>
34 #include <chre/nanoapp.h>
35 #include <chre/re.h>
36 #include <chre/sensor.h>
37 #include <chre/version.h>
38 #include <chre/wifi.h>
39 #include <chre/wwan.h
    [all...]
  /system/chre/variant/android/
chre-stub 2 /system/bin/chre
  /system/chre/chre_api/legacy/v1_0/
chre.h 22 * the interface for the Context Hub Runtime Environment (CHRE). This is the
33 #include <chre/event.h>
34 #include <chre/nanoapp.h>
35 #include <chre/re.h>
36 #include <chre/sensor.h>
37 #include <chre/version.h>
43 * The following entry points are required to be handled by the CHRE
58 * A CHRE implementation is free to chose among many different
66 * below, cannot be invoked by the CHRE if a previous invocation
70 * For example, if a nanoapp is currently in nanoappHandleEvent(), the CHRE i
    [all...]
  /system/chre/platform/android/include/chre/platform/android/
host_link.h 23 #include "chre/util/singleton.h"
25 namespace chre { namespace
28 typedef chre::Singleton<::android::chre::SocketServer> SocketServerSingleton;
40 } // namespace chre
  /system/chre/core/include/chre/core/
init.h 20 namespace chre { namespace
23 * Performs initialization of CHRE. The CHRE is designed to be portable and as
27 * 2) [required] Perform CHRE initialization by invoking this function. All
28 * platforms must invoke chre::init() prior to loading apps.
31 * platform-specific code to be invoked as part of CHRE initialization. (as an
39 * Performs deinitialization of CHRE. The order of deinitialization must be as
42 * 1) [required] Perform CHRE deinitialization by invoking this function. All
43 * platforms must invoke chre::deinit() after unloading all apps
48 * After step 1 is complete, chre common code has been deinitialized and callin
    [all...]
  /system/chre/platform/include/chre/platform/
context.h 20 namespace chre { namespace
31 } // namespace chre
  /system/chre/platform/linux/include/chre/target_platform/
host_link_base.h 20 namespace chre { namespace
26 } // namespace chre
power_control_manager_base.h 20 namespace chre { namespace
24 } // namespace chre
fatal_error.h 23 chre::preFatalError(); \
27 namespace chre { namespace
37 } // namespace chre
condition_variable_base.h 22 namespace chre { namespace
33 } // namespace chre
  /system/chre/platform/shared/
chre_api_version.cc 17 #include "chre_api/chre/version.h"
19 #include "chre/platform/platform_id.h"
20 #include "chre/util/macros.h"
27 return chreGetApiVersion() | chre::kPatchVersion;
31 return chre::createPlatformIdFromVendorPlatform(chre::kVendorId,
32 chre::kPlatformId);
chre_api_wwan.cc 17 #include "chre_api/chre/wwan.h"
19 #include "chre/core/event_loop_manager.h"
20 #include "chre/util/macros.h"
22 using chre::EventLoopManager;
23 using chre::EventLoopManagerSingleton;
26 return chre::EventLoopManagerSingleton::get()->getWwanRequestManager()
31 chre::Nanoapp *nanoapp = EventLoopManager::validateChreApiCall(__func__);
32 return chre::EventLoopManagerSingleton::get()->getWwanRequestManager()
  /system/chre/platform/shared/include/chre/platform/shared/
platform_pal.h 20 namespace chre { namespace
23 * Provides an instance of the PlatformPal class that uses the CHRE PAL.
33 } // namespace chre
  /system/chre/platform/slpi/
platform_pal.cc 17 #include "chre/platform/shared/platform_pal.h"
19 #include "chre/platform/slpi/power_control_util.h"
21 namespace chre { namespace
27 } // namespace chre
memory_manager.cc 17 #include "chre/platform/memory_manager.h"
19 #include "chre/platform/slpi/memory.h"
20 #include "chre/util/memory.h"
22 namespace chre { namespace
26 return chre::memoryAlloc(bytes);
28 return chre::memoryAllocBigImage(bytes);
34 chre::memoryFree(ptr);
36 chre::memoryFreeBigImage(ptr);
40 } // namespace chre
  /system/chre/util/include/chre/util/nanoapp/
audio.h 20 #include <chre/audio.h>
23 namespace chre { namespace
33 } // namespace chre
  /system/chre/platform/android/
init.cc 17 #include "chre/core/event_loop_manager.h"
18 #include "chre/core/init.h"
19 #include "chre/core/static_nanoapps.h"
20 #include "chre/platform/android/host_link.h"
21 #include "chre/platform/linux/preloaded_nanoapps.h"
22 #include "chre/platform/shared/platform_log.h"
28 using android::chre::HostProtocolHost;
29 using chre::EventLoopManagerSingleton;
38 if (!chre::handleMessageFromHost(data, length)) {
47 // Initilize CHRE
    [all...]
  /system/chre/platform/slpi/include/chre/target_platform/
fatal_error.h 22 #include "chre/util/macros.h"
25 ::chre::preFatalError(); \
26 ERR_FATAL("CHRE fatal@" CHRE_FILENAME ":" STRINGIFY(__LINE__), 0, 0, 0)
28 namespace chre { namespace
39 } // namespace chre
  /system/chre/apps/chqts/src/do_nothing/
do_nothing.cc 20 * This successfully loads, and does nothing else. If a CHRE implementation
26 #include <chre.h>
  /system/chre/platform/linux/include/chre/platform/linux/
preloaded_nanoapps.h 22 #include "chre/core/event_loop.h"
24 namespace chre { namespace
32 } // namespace chre

Completed in 789 milliseconds

1 2 3 4 5 6 7 8 91011>>