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

1 2 3

  /prebuilts/misc/windows/sdl2/test/
testautomation_main.c 57 int subsystem = subsystems[i];
59 SDLTest_AssertCheck( (SDL_WasInit(subsystem) & subsystem) == 0, "SDL_WasInit(%x) before init should be false", subsystem );
60 SDLTest_AssertCheck( SDL_InitSubSystem(subsystem) == 0, "SDL_InitSubSystem(%x)", subsystem );
62 initialized_system = SDL_WasInit(subsystem);
63 SDLTest_AssertCheck( (initialized_system & subsystem) != 0, "SDL_WasInit(%x) should be true (%x)", subsystem, initialized_system );
65 SDL_QuitSubSystem(subsystem);
    [all...]
  /external/ltp/testcases/kernel/controllers/cgroup_fj/
cgroup_fj_common.sh 34 local subsystem="$1"
35 local exist=`grep -w $subsystem /proc/cgroups | cut -f1`
38 tst_brkm TCONF "Subsystem $subsystem not supported"
71 if [ "$subsystem" = "cpuset" ]; then
91 exist_subsystem "$subsystem"
96 mount_point=`grep -w $subsystem /proc/mounts | grep -w "cgroup" | \
102 tst_resm TINFO "Subsystem $subsystem is not mounted, mounting it at $mount_point"
104 ROD mount -t cgroup -o "$subsystem" "ltp_cgroup" "$mount_point
    [all...]
cgroup_fj_stress.sh 31 subsystem="$1"
39 echo " ./cgroup_fj_stress.sh subsystem subgroup_num subgroup_depth attach_operation"
  /system/core/init/
uevent.h 28 std::string subsystem; member in struct:android::init::Uevent
devices.cpp 136 const std::string& subsystem) const {
138 if (name().find(subsystem) != std::string::npos) {
139 if (Match("/sys/class/" + subsystem + "/" + path_basename)) return true;
140 if (Match("/sys/bus/" + subsystem + "/devices/" + path_basename)) return true;
162 // parent directory with a 'subsystem' symlink that points to the platform bus.
174 if (Realpath(directory + "/subsystem", &subsystem_link_path) &&
193 const std::string& subsystem) const {
199 if (s.MatchWithSubsystem(path, subsystem)) s.SetPermissions(path);
378 FixupSysPermissions(uevent.path, uevent.subsystem);
388 if (uevent.subsystem == "block")
    [all...]
devices.h 64 bool MatchWithSubsystem(const std::string& path, const std::string& subsystem) const;
71 class Subsystem {
75 Subsystem() {}
76 Subsystem(std::string name) : name_(std::move(name)) {}
78 // Returns the full path for a uevent of a device that is a member of this subsystem,
107 std::vector<SysfsPermissions> sysfs_permissions, std::vector<Subsystem> subsystems,
124 void FixupSysPermissions(const std::string& upath, const std::string& subsystem) const;
128 std::vector<Subsystem> subsystems_;
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Tools/freeze/
winmakemakefile.py 38 def get_custom_entry_point(subsystem):
40 return subsystem_details[subsystem][:2]
42 raise ValueError, "The subsystem %s is not known" % subsystem
81 # pass a subsystem switch to the linker as it works it
82 # out all by itself. However, the subsystem _does_ determine
86 if subsystem_details[vars['subsystem']][2]:
  /external/python/cpython2/Tools/freeze/
winmakemakefile.py 38 def get_custom_entry_point(subsystem):
40 return subsystem_details[subsystem][:2]
42 raise ValueError, "The subsystem %s is not known" % subsystem
81 # pass a subsystem switch to the linker as it works it
82 # out all by itself. However, the subsystem _does_ determine
86 if subsystem_details[vars['subsystem']][2]:
  /external/python/cpython3/Tools/freeze/
winmakemakefile.py 38 def get_custom_entry_point(subsystem):
40 return subsystem_details[subsystem][:2]
42 raise ValueError("The subsystem %s is not known" % subsystem)
81 # pass a subsystem switch to the linker as it works it
82 # out all by itself. However, the subsystem _does_ determine
86 if subsystem_details[vars['subsystem']][2]:
  /external/toybox/toys/lsb/
dmesg.c 52 int facpri, subsystem, pos; local
68 // Is there a subsystem? (The ": " is just a convention.)
70 subsystem = p ? (p-text) : 0;
90 if (subsystem) {
92 printf("%.*s", subsystem, text);
93 text += subsystem;
  /hardware/interfaces/camera/
README.md 11 More complete information about the Android camera HAL and subsystem can be found at
  /system/bt/doc/
directory_layout.md 4 Each directory should be a self contained subsystem consisting
7 * src/ - All source files for the subsystem.
8 * include/ - All include files for the subsystem.
9 * test/ - All unit tests for the subsystem.
  /device/google/marlin/power/
Power.cpp 135 static int get_wlan_low_power_stats(struct PowerStateSubsystem &subsystem) {
145 subsystem.name = "wlan";
146 subsystem.states.resize(WLAN_STATE_COUNT);
149 state = &subsystem.states[WLAN_STATE_ACTIVE];
157 state = &subsystem.states[WLAN_STATE_DEEP_SLEEP];
174 //We currently have only one Subsystem for WLAN
  /external/dhcpcd-6.8.2/dev/
udev.c 79 const char *subsystem, *ifname, *action; local
87 subsystem = udev_device_get_subsystem(device);
92 if (strcmp(subsystem, "net") == 0) {
  /device/google/wahoo/power-libperfmgr/
Power.cpp 284 static int get_wlan_low_power_stats(struct PowerStateSubsystem *subsystem) {
288 subsystem->name = "wlan";
291 subsystem->states.resize(0);
295 subsystem->states.resize(WLAN_STATES_COUNT);
298 state = &subsystem->states[WLAN_STATE_ACTIVE];
306 state = &subsystem->states[WLAN_STATE_DEEP_SLEEP];
323 // Get low power stats for easel subsystem
324 static int get_easel_low_power_stats(struct PowerStateSubsystem *subsystem) {
336 subsystem->name = "Easel";
339 subsystem->states.resize(0)
    [all...]
  /frameworks/av/services/audiopolicy/engineconfigurable/parameter-framework/plugin/
Android.mk 38 LOCAL_MODULE := libpolicy-subsystem
  /hardware/interfaces/camera/common/
README.md 11 More complete information about the Android camera HAL and subsystem can be found at
  /prebuilts/misc/darwin-x86_64/sdl2/include/SDL2/
SDL_syswm.h 128 SDL_SYSWM_TYPE subsystem; member in struct:SDL_SysWMmsg
175 SDL_SYSWM_TYPE subsystem; member in struct:SDL_SysWMinfo
  /prebuilts/misc/windows/sdl2/i686-w64-mingw32/include/SDL2/
SDL_syswm.h 128 SDL_SYSWM_TYPE subsystem; member in struct:SDL_SysWMmsg
175 SDL_SYSWM_TYPE subsystem; member in struct:SDL_SysWMinfo
  /prebuilts/misc/windows/sdl2/include/
SDL_syswm.h 122 SDL_SYSWM_TYPE subsystem; member in struct:SDL_SysWMmsg
169 SDL_SYSWM_TYPE subsystem; member in struct:SDL_SysWMinfo
  /prebuilts/misc/windows/sdl2/x86_64-w64-mingw32/include/SDL2/
SDL_syswm.h 128 SDL_SYSWM_TYPE subsystem; member in struct:SDL_SysWMmsg
175 SDL_SYSWM_TYPE subsystem; member in struct:SDL_SysWMinfo
  /frameworks/base/cmds/statsd/src/external/
SubsystemSleepStatePuller.cpp 147 const PowerStateSubsystem& subsystem = subsystems[i];
148 for (size_t j = 0; j < subsystem.states.size(); j++) {
150 subsystem.states[j];
154 subsystemStatePtr->write(subsystem.name);
161 subsystem.name.c_str(), state.name.c_str(),
  /frameworks/base/services/core/jni/
com_android_server_am_BatteryStatsService.cpp 257 const PowerStateSubsystem &subsystem = subsystems[i];
260 env->NewStringUTF(subsystem.name.c_str()));
266 for (size_t j = 0; j < subsystem.states.size(); j++) {
267 const PowerStateSubsystemSleepState& state = subsystem.states[j];
394 const PowerStateSubsystem &subsystem = subsystems[i];
397 "subsystem_%zu name=%s ", i + 1, subsystem.name.c_str());
410 for (size_t j = 0; j < subsystem.states.size(); j++) {
411 const PowerStateSubsystemSleepState& state = subsystem.states[j];
  /external/syslinux/efi/
wrapper.h 97 __uint16_t subsystem; member in struct:extra_hdr
133 __uint16_t subsystem; member in struct:extra_hdr_pe32p
  /hardware/interfaces/camera/provider/
README.md 12 More complete information about the Android camera HAL and subsystem can be found at

Completed in 955 milliseconds

1 2 3