Home
last modified time | relevance | path

Searched refs:subsystem (Results 1 – 25 of 321) sorted by relevance

12345678910>>...13

/third_party/flutter/skia/third_party/externals/sdl/test/
Dtestautomation_main.c57 int subsystem = subsystems[i]; in main_testInitQuitSubSystem()
59 …DLTest_AssertCheck( (SDL_WasInit(subsystem) & subsystem) == 0, "SDL_WasInit(%x) before init should… in main_testInitQuitSubSystem()
60 … SDLTest_AssertCheck( SDL_InitSubSystem(subsystem) == 0, "SDL_InitSubSystem(%x)", subsystem ); in main_testInitQuitSubSystem()
62 initialized_system = SDL_WasInit(subsystem); in main_testInitQuitSubSystem()
63 …SDLTest_AssertCheck( (initialized_system & subsystem) != 0, "SDL_WasInit(%x) should be true (%x)",… in main_testInitQuitSubSystem()
65 SDL_QuitSubSystem(subsystem); in main_testInitQuitSubSystem()
67 …LTest_AssertCheck( (SDL_WasInit(subsystem) & subsystem) == 0, "SDL_WasInit(%x) after shutdown shou… in main_testInitQuitSubSystem()
/third_party/node/benchmark/
DREADME.md19 | assert | Benchmarks for the `assert` subsystem. …
20 | buffers | Benchmarks for the `buffer` subsystem. …
21 | child\_process | Benchmarks for the `child_process` subsystem. …
22 | crypto | Benchmarks for the `crypto` subsystem. …
23 | dgram | Benchmarks for the `dgram` subsystem. …
24 | domain | Benchmarks for the `domain` subsystem. …
26 | events | Benchmarks for the `events` subsystem. …
28 | fs | Benchmarks for the `fs` subsystem. …
29 | http | Benchmarks for the `http` subsystem. …
30 | http2 | Benchmarks for the `http2` subsystem. …
[all …]
/third_party/FreeBSD/sys/sys/
Dkernel.h120 enum sysinit_sub_id subsystem; /* subsystem identifier*/ member
138 #define C_SYSINIT(uniquifier, subsystem, order, func, ident) \ argument
140 subsystem, \
147 #define SYSINIT(uniquifier, subsystem, order, func, ident) \ argument
148 C_SYSINIT(uniquifier, subsystem, order, \
154 #define C_SYSUNINIT(uniquifier, subsystem, order, func, ident) \ argument
156 subsystem, \
163 #define SYSUNINIT(uniquifier, subsystem, order, func, ident) \ argument
164 C_SYSUNINIT(uniquifier, subsystem, order, \
/third_party/ltp/testcases/kernel/controllers/cgroup_fj/
Dcgroup_fj_common.sh34 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
92 exist_subsystem "$subsystem"
97 mount_point=`grep -w $subsystem /proc/mounts | grep -w "cgroup" | \
103 tst_resm TINFO "Subsystem $subsystem is not mounted, mounting it at $mount_point"
105 ROD mount -t cgroup -o "$subsystem" "ltp_cgroup" "$mount_point"
107 tst_resm TINFO "Subsystem $subsystem is mounted at $mount_point"
/third_party/ltp/testcases/kernel/controllers/
Dcgroup_lib.sh13 local subsystem=$1
18 mntpoint=$(grep cgroup /proc/mounts | grep -w $subsystem | awk '{ print $2 }')
31 local subsystem=$1
35 val=$(grep -w $subsystem /proc/cgroups | awk '{ print $4 }')
/third_party/flutter/skia/third_party/externals/sdl/src/
DSDL.c61 SDL_PrivateSubsystemRefCountIncr(Uint32 subsystem) in SDL_PrivateSubsystemRefCountIncr() argument
63 int subsystem_index = SDL_MostSignificantBitIndex32(subsystem); in SDL_PrivateSubsystemRefCountIncr()
70 SDL_PrivateSubsystemRefCountDecr(Uint32 subsystem) in SDL_PrivateSubsystemRefCountDecr() argument
72 int subsystem_index = SDL_MostSignificantBitIndex32(subsystem); in SDL_PrivateSubsystemRefCountDecr()
80 SDL_PrivateShouldInitSubsystem(Uint32 subsystem) in SDL_PrivateShouldInitSubsystem() argument
82 int subsystem_index = SDL_MostSignificantBitIndex32(subsystem); in SDL_PrivateShouldInitSubsystem()
89 SDL_PrivateShouldQuitSubsystem(Uint32 subsystem) { in SDL_PrivateShouldQuitSubsystem() argument
90 int subsystem_index = SDL_MostSignificantBitIndex32(subsystem); in SDL_PrivateShouldQuitSubsystem()
/third_party/e2fsprogs/lib/ss/
Dstd_rqs.ct3 request ss_self_identify, "Identify the subsystem.",
18 request ss_quit, "Leave the subsystem.",
37 "Return the name of this subsystem.",
42 "Return the version of this subsystem.",
/third_party/FreeBSD/sys/compat/linuxkpi/common/include/linux/
Dmodule.h122 if ((*sipp)->subsystem < (*xipp)->subsystem || in mi_startup()
123 ((*sipp)->subsystem == (*xipp)->subsystem && in mi_startup()
137 if ((*sipp)->subsystem > sub_id) { in mi_startup()
/third_party/eudev/src/udev/
Dudev-builtin-hwdb.c87 const char *subsystem, const char *prefix, in udev_builtin_hwdb_search() argument
103 if (subsystem && !streq(dsubsys, subsystem)) in udev_builtin_hwdb_search()
138 const char *subsystem = NULL; in builtin_hwdb() local
162 subsystem = optarg; in builtin_hwdb()
186 if (udev_builtin_hwdb_search(dev, srcdev, subsystem, prefix, filter, test) > 0) in builtin_hwdb()
/third_party/uboot/u-boot-2020.01/drivers/ram/
DKconfig15 The RAM subsystem adds a small amount of overhead to the image.
24 The RAM subsystem adds a small amount of overhead to the image.
50 K3 based AM654 devices has DDR memory subsystem that comprises
52 intergrate these blocks into the device. This DDR subsystem
55 SDRAM devices connected to DDR subsystem.
61 The J721E DDR subsystem comprises DDR controller, DDR PHY and
63 subsystem is used to provide an interface to external SDRAM
/third_party/toybox/toys/lsb/
Ddmesg.c51 int facpri, subsystem, pos; in format_message() local
69 subsystem = p ? (p-text) : 0; in format_message()
89 if (subsystem) { in format_message()
91 printf("%.*s", subsystem, text); in format_message()
92 text += subsystem; in format_message()
/third_party/eudev/src/libudev/
Dlibudev-device.c70 char *subsystem; member
264 static int udev_device_set_subsystem(struct udev_device *udev_device, const char *subsystem) in udev_device_set_subsystem() argument
266 free(udev_device->subsystem); in udev_device_set_subsystem()
267 udev_device->subsystem = strdup(subsystem); in udev_device_set_subsystem()
268 if (udev_device->subsystem == NULL) in udev_device_set_subsystem()
271 udev_device_add_property_internal(udev_device, "SUBSYSTEM", udev_device->subsystem); in udev_device_set_subsystem()
286 char subsystem[UTIL_NAME_SIZE]; in udev_device_get_subsystem() local
293 …nk_value(udev_device->udev, "subsystem", udev_device->syspath, subsystem, sizeof(subsystem)) > 0) { in udev_device_get_subsystem()
294 udev_device_set_subsystem(udev_device, subsystem); in udev_device_get_subsystem()
295 return udev_device->subsystem; in udev_device_get_subsystem()
[all …]
Dlibudev-enumerate.c351 …nt udev_enumerate_add_match_subsystem(struct udev_enumerate *udev_enumerate, const char *subsystem) in udev_enumerate_add_match_subsystem() argument
355 if (subsystem == NULL) in udev_enumerate_add_match_subsystem()
357 if (udev_list_entry_add(&udev_enumerate->subsystem_match_list, subsystem, NULL) == NULL) in udev_enumerate_add_match_subsystem()
371 … udev_enumerate_add_nomatch_subsystem(struct udev_enumerate *udev_enumerate, const char *subsystem) in udev_enumerate_add_nomatch_subsystem() argument
375 if (subsystem == NULL) in udev_enumerate_add_nomatch_subsystem()
377 if (udev_list_entry_add(&udev_enumerate->subsystem_nomatch_list, subsystem, NULL) == NULL) in udev_enumerate_add_nomatch_subsystem()
721 static bool match_subsystem(struct udev_enumerate *udev_enumerate, const char *subsystem) in match_subsystem() argument
725 if (!subsystem) in match_subsystem()
729 if (fnmatch(udev_list_entry_get_name(list_entry), subsystem, 0) == 0) in match_subsystem()
735 if (fnmatch(udev_list_entry_get_name(list_entry), subsystem, 0) == 0) in match_subsystem()
[all …]
Dlibudev.h83 struct udev_device *udev_device_new_from_subsystem_sysname(struct udev *udev, const char *subsystem
89 … const char *subsystem, const char *devtype);
132 const char *subsystem, const char *devtype);
148 int udev_enumerate_add_match_subsystem(struct udev_enumerate *udev_enumerate, const char *subsystem
149 …udev_enumerate_add_nomatch_subsystem(struct udev_enumerate *udev_enumerate, const char *subsystem);
/third_party/uboot/u-boot-2020.01/doc/driver-model/
Dmigration.rst26 The subsystem itself has been converted and maintainers should submit patches
36 The subsystem itself has been converted along with many of the host controller
46 The subsystem itself has been converted along with many of the host controller
97 The PCI subsystem has supported driver model since mid 2015. Maintainers should
106 The video subsystem has supported driver model since early 2016. Maintainers
114 The network subsystem has supported the driver model since early 2015.
/third_party/uboot/u-boot-2020.01/scripts/
Dget_maintainer.pl52 my $subsystem = 0;
253 'subsystem!' => \$subsystem,
302 $subsystem = 0;
307 my $selections = $email + $scm + $status + $subsystem + $web;
581 my @subsystem = ();
603 if ($subsystem) {
604 @subsystem = uniq(@subsystem);
605 output(@subsystem);
798 @subsystem = ();
1194 my $subsystem = $typevalue[$start];
[all …]
/third_party/python/Tools/freeze/
Dwinmakemakefile.py38 def get_custom_entry_point(subsystem): argument
40 return subsystem_details[subsystem][:2]
42 raise ValueError("The subsystem %s is not known" % subsystem) from None
/third_party/eudev/export_include/
Dlibudev.h83 struct udev_device *udev_device_new_from_subsystem_sysname(struct udev *udev, const char *subsystem
89 … const char *subsystem, const char *devtype);
132 const char *subsystem, const char *devtype);
148 int udev_enumerate_add_match_subsystem(struct udev_enumerate *udev_enumerate, const char *subsystem
149 …udev_enumerate_add_nomatch_subsystem(struct udev_enumerate *udev_enumerate, const char *subsystem);
/third_party/eudev/test/
Dtest-libudev.c311 static int test_enumerate(struct udev *udev, const char *subsystem) { in test_enumerate() argument
314 printf("enumerate '%s'\n", subsystem == NULL ? "<all>" : subsystem); in test_enumerate()
318 udev_enumerate_add_match_subsystem(udev_enumerate, subsystem); in test_enumerate()
417 const char *subsystem = NULL; in main() local
436 subsystem = optarg; in main()
471 test_enumerate(udev, subsystem); in main()
/third_party/gn/src/gn/
Dvisual_studio_utils.cc120 const std::string subsystem( in ParseLinkerOption() local
123 subsystem, ",", base::TRIM_WHITESPACE, base::SPLIT_WANT_NONEMPTY); in ParseLinkerOption()
125 options->subsystem = tokens[0]; in ParseLinkerOption()
/third_party/eudev/rules/
D75-net-description.rules8 SUBSYSTEMS=="usb", IMPORT{builtin}="usb_id", IMPORT{builtin}="hwdb --subsystem=usb"
12 SUBSYSTEMS=="pci", IMPORT{builtin}="hwdb --subsystem=pci"
/third_party/wpa_supplicant/wpa_supplicant-2.9_standard/wpa_supplicant/systemd/
Dwpa_supplicant.service.arg.in3 Requires=sys-subsystem-net-devices-%i.device
4 After=sys-subsystem-net-devices-%i.device
/third_party/wpa_supplicant/wpa_supplicant-2.9/wpa_supplicant/systemd/
Dwpa_supplicant.service.arg.in3 Requires=sys-subsystem-net-devices-%i.device
4 After=sys-subsystem-net-devices-%i.device
Dwpa_supplicant-nl80211.service.arg.in3 Requires=sys-subsystem-net-devices-%i.device
4 After=sys-subsystem-net-devices-%i.device
Dwpa_supplicant-wired.service.arg.in3 Requires=sys-subsystem-net-devices-%i.device
4 After=sys-subsystem-net-devices-%i.device

12345678910>>...13