Home
last modified time | relevance | path

Searched refs:system (Results 1 - 25 of 455) sorted by relevance

12345678910>>...19

/third_party/skia/third_party/externals/tint/src/diagnostic/
H A Ddiagnostic.h63 /// system is the Tint system that raised the diagnostic.
64 System system; member in tint::diag::Diagnostic
121 /// @param system the system raising the note message
124 void add_note(System system, in add_note() argument
129 note.system = system; in add_note()
136 /// @param system the system raisin
139 add_warning(System system, const std::string& warning_msg, const Source& source) add_warning() argument
153 add_error(System system, std::string err_msg) add_error() argument
165 add_error(System system, std::string err_msg, const Source& source) add_error() argument
180 add_error(System system, const char* code, std::string err_msg, const Source& source) add_error() argument
197 add_ice(System system, const std::string& err_msg, const Source& source) add_ice() argument
[all...]
/third_party/node/test/parallel/
H A Dtest-process-cpuUsage.js19 assert(thisUsage.system >= lastUsage.system);
32 assert(diffUsage.system >= 0);
50 { user: null, system: 'c' },
64 { user: 3, system: 'b' },
65 { user: 3, system: null },
72 message: 'The "prevValue.system" property must be of type number.' +
73 common.invalidArgTypeHelper(value.system)
80 { user: -1, system: 2 },
81 { user: Number.POSITIVE_INFINITY, system
[all...]
/third_party/python/Lib/
H A Dplatform.py40 # 1.0.3 - added normalization of Windows system name
62 # return values (the system uname command tends to return
68 # 0.5.0 - changed the API names referring to system commands to *syscmd*;
78 # 0.3.0 - added system alias support
263 def _syscmd_ver(system='', release='', version='',
268 a tuple (system, release, version).
278 return system, release, version
296 return system, release, version
302 system, release, version = m.groups()
311 return system, releas
914 def system(): global() function
[all...]
/third_party/rust/crates/libc/ci/
H A Dandroid-sysimage.sh10 local dest=/system
20 local system
21 system="$(find . -name system.img)"
24 # Extract android linker and libraries to /system
27 e2cp -p "${system}:/bin/linker64" "${dest}/bin/"
28 e2cp -p "${system}:/lib64/libdl.so" "${dest}/lib64/"
29 e2cp -p "${system}:/lib64/libc.so" "${dest}/lib64/"
30 e2cp -p "${system}:/lib64/libm.so" "${dest}/lib64/"
32 e2cp -p "${system}
[all...]
/third_party/skia/third_party/externals/tint/src/
H A Ddebug.h47 /// @param system the Tint system that has raised the ICE
51 diag::System system,
84 #define TINT_ICE(system, diagnostics) \
86 ::tint::diag::System::system, diagnostics)
94 #define TINT_UNREACHABLE(system, diagnostics) \
95 TINT_ICE(system, diagnostics) << "TINT_UNREACHABLE "
103 #define TINT_UNIMPLEMENTED(system, diagnostics) \
104 TINT_ICE(system, diagnostics) << "TINT_UNIMPLEMENTED "
114 #define TINT_ASSERT(system, conditio
[all...]
H A Dprogram_id.h91 diag::System system,
105 #define TINT_ASSERT_PROGRAM_IDS_EQUAL(system, a, b) \
107 ProgramIDOf(a), ProgramIDOf(b), false, tint::diag::System::system, \
108 "TINT_ASSERT_PROGRAM_IDS_EQUAL(" #system "," #a ", " #b ")", __FILE__, \
110 #define TINT_ASSERT_PROGRAM_IDS_EQUAL_IF_VALID(system, a, b) \
112 ProgramIDOf(a), ProgramIDOf(b), true, tint::diag::System::system, \
113 "TINT_ASSERT_PROGRAM_IDS_EQUAL_IF_VALID(" #system ", " #a ", " #b ")", \
/third_party/ltp/testcases/kernel/hotplug/cpu_hotplug/include/
H A Dcpuhotplug_hotplug.sh12 # Gets list of all available IRQs in the system
72 if [ ! -w /sys/devices/system/cpu/cpu${CPU}/online ]; then
78 $TIME echo 1 > /sys/devices/system/cpu/cpu${CPU}/online
93 if [ ! -w /sys/devices/system/cpu/cpu${CPU}/online ]; then
99 $TIME echo 0 > /sys/devices/system/cpu/cpu${CPU}/online
112 [ -d /sys/devices/system/cpu/cpu0 ] || return -1
113 NUM=`ls /sys/devices/system/cpu/ \
128 [ -d /sys/devices/system/cpu ] || return 1
129 (cd /sys/devices/system/cpu; ls -d cpu[0-9]*)
139 local present_mask="/sys/devices/system/cp
[all...]
/third_party/node/deps/v8/tools/testrunner/local/
H A Dutils.py71 system = platform.system()
72 if system == 'Linux':
74 elif system == 'Darwin':
76 elif system.find('CYGWIN') >= 0:
78 elif system == 'Windows' or system == 'Microsoft':
79 # On Windows Vista platform.system() can return 'Microsoft' with some
82 elif system == 'FreeBSD':
84 elif system
[all...]
/third_party/zlib/os400/
H A Dmake.sh97 system "${CMD}"
168 system "${CMD}"
177 system "${CMD}"
189 system "${CMD}"
201 system "${CMD}"
223 system "${CMD}"
246 system "${CMD}"
292 system "${CMD}"
297 system "${CMD}"
308 system "
[all...]
/third_party/skia/src/core/
H A DSkUtils.cpp25 static bool g_memoryOptimizeFlag = OHOS::system::GetBoolParameter("sys.graphic.vma.opt", false); in SkGetMemoryOptimizedFlag()
70 std::atoi(OHOS::system::GetParameter("sys.graphic.vma.blockSize", "48").c_str()), in SkGetVmaBlockSizeMB()
87 std::atoi(OHOS::system::GetParameter("sys.graphic.vma.minCachedSize", "9000000").c_str()), in SkGetNeedCachedMemroySize()
99 GetBoolParamWithFlag(OHOS::system::GetBoolParameter("sys.graphic.vma.defragment", true)); in SkGetVmaDefragmentOn()
110 GetBoolParamWithFlag(OHOS::system::GetBoolParameter("sys.graphic.vma.preAlloc", false)); in SkGetPreAllocFlag()
123 std::atoi(OHOS::system::GetParameter("sys.graphic.vma.preAllocDelay", "250").c_str()), in SkGetPreAllocDelay()
137 std::atoi(OHOS::system::GetParameter("sys.graphic.vma.maxBlockCount", "10").c_str()), in SkGetVmaBlockCountMax()
149 GetBoolParamWithFlag(std::atoi(OHOS::system::GetParameter("sys.graphic.vma.debug", "0").c_str()) != 0); in SkGetVmaDebugFlag()
/third_party/libsnd/
H A Dmake_lite.py213 if os.system ("make dist"):
230 os.system ("rm -rf %s%s.tar.gz" % (source_dir, package_version))
232 os.system ("make dist")
239 os.system ("rm -rf %s" % package_version)
240 if os.system ("tar zxf %s/%s.tar.gz" % (source_dir, package_version)):
245 os.system ("rm -rf %s" % lite_version)
255 os.system ("rm -rf %s" % dir_name)
472 if os.system ("./reconfigure.mk && ./configure --disable-shared --disable-gcc-opt && make check"):
473 os.system ('PS1="FIX > " bash --norc')
477 if os.system ("mak
[all...]
/third_party/skia/platform_tools/android/bin/
H A Dandroid_perf23 TMP_SYS_BIN=$PERF_TMP_DIR/system/bin
24 TMP_SYS_LIB=$PERF_TMP_DIR/system/lib
34 adb_pull_if_needed /system/lib/libc.so $TMP_SYS_LIB
35 adb_pull_if_needed /system/lib/libstdc++.so $TMP_SYS_LIB
36 adb_pull_if_needed /system/lib/libGLESv2.so $TMP_SYS_LIB
37 adb_pull_if_needed /system/lib/libandroid.so $TMP_SYS_LIB
38 adb_pull_if_needed /system/lib/libm.so $TMP_SYS_LIB
39 adb_pull_if_needed /system/lib/libz.so $TMP_SYS_LIB
/third_party/node/
H A Dandroid_configure.py9 if platform.system() == "Linux":
10 os.system('patch -f ./deps/v8/src/trap-handler/trap-handler.h < ./android-patches/trap-handler.h.patch')
13 if platform.system() == "Windows":
57 if platform.system() == "Darwin":
61 elif platform.system() == "Linux":
76 os.system("./configure --dest-cpu=" + DEST_CPU + " --dest-os=android --openssl-no-asm --cross-compiling")
/third_party/musl/libc-test/src/functionalext/trace/
H A Dtrace_stresstest.c51 system("cd /sys/kernel/debug/tracing;echo 1 > tracing_on"); in trace_marker_stresstest_0010()
54 system("cd /sys/kernel/debug/tracing;echo 0 > tracing_on"); in trace_marker_stresstest_0010()
71 system("cd /sys/kernel/debug/tracing;echo 1 > tracing_on"); in trace_marker_stresstest_0010()
74 system("cd /sys/kernel/debug/tracing;echo 0 > tracing_on"); in trace_marker_stresstest_0010()
84 system("cd /sys/kernel/debug/tracing;echo 1 > tracing_on"); in trace_marker_stresstest_0010()
86 system("cd /sys/kernel/debug/tracing;echo 0 > tracing_on"); in trace_marker_stresstest_0010()
/third_party/mesa3d/ohos/
H A Dbuild_ohos.py32 os.system(run_cross_pross_cmd)
37 -Dvulkan-drivers= -Dgbm=enabled -Degl=enabled -Dcpp_rtti=false -Dglx=disabled -Dtools=panfrost -Ddri-search-path=/system/lib '
41 os.system(run_build_cmd)
42 os.system('ninja -C build-ohos -j26')
43 os.system('ninja -C build-ohos install')
H A Dbuild_wayland_and_gbm.py33 os.system(run_cross_pross_cmd)
42 os.system(run_build_cmd)
43 os.system('ninja -C builddir -j26')
44 os.system('ninja -C builddir install')
/third_party/musl/libc-test/src/functionalext/supplement/unistd/
H A Dlink.c29 system("touch /etc/a.txt"); in link_0100()
33 system("rm -f /etc/a_link.txt"); in link_0100()
49 system("rm -f /etc/a_link.txt"); in link_0200()
64 system("rm -f /etc/a.txt"); in link_0300()
68 system("rm -f /etc/a_link.txt"); in link_0300()
H A Dlinkat.c41 system("rm -f /etc/linkat.txt"); in linkat_0100()
54 system("touch /etc/test.txt"); in linkat_0200()
66 system("rm -f /etc/linkat.txt"); in linkat_0200()
81 system("rm -f /etc/test.txt"); in linkat_0300()
85 system("rm -f /etc/linkat.txt"); in linkat_0300()
/third_party/lame/test/
H A Dlametest.py70 os.system("lame --quiet --mp3input --decode " + name1)
71 os.system("lame --quiet --mp3input --decode " + name2)
187 os.system(cmd)
194 os.system(cmd)
198 os.system(cmd)
204 os.system(cmd)
207 os.system(cmd)
209 os.system(cmd)
216 os.system(cmd1)
217 os.system(cmd
[all...]
/third_party/musl/libc-test/src/gwp_asan/
H A Dgwp_asan_test.h25 system("param set gwp_asan.sample.all true"); in config_gwp_asan_environment()
28 system("param set gwp_asan.log.path file"); in config_gwp_asan_environment()
35 system("param set gwp_asan.log.path default"); in cancel_gwp_asan_environment()
37 system("param set gwp_asan.sample.all false"); in cancel_gwp_asan_environment()
/third_party/skia/third_party/externals/spirv-tools/test/scripts/
H A Dtest_compact_ids.py27 os.system('tools/spirv-opt ' + path + ' -o ' + optimized_spv_path +
29 os.system('tools/spirv-dis ' + optimized_spv_path + ' -o ' +
32 os.system('tools/spirv-dis ' + path + ' -o ' + converted_dis_path)
33 os.system('tools/spirv-as ' + converted_dis_path + ' -o ' +
35 os.system('tools/spirv-dis ' + converted_spv_path + ' -o ' +
/third_party/skia/third_party/externals/swiftshader/third_party/SPIRV-Tools/test/scripts/
H A Dtest_compact_ids.py27 os.system('tools/spirv-opt ' + path + ' -o ' + optimized_spv_path +
29 os.system('tools/spirv-dis ' + optimized_spv_path + ' -o ' +
32 os.system('tools/spirv-dis ' + path + ' -o ' + converted_dis_path)
33 os.system('tools/spirv-as ' + converted_dis_path + ' -o ' +
35 os.system('tools/spirv-dis ' + converted_spv_path + ' -o ' +
/third_party/spirv-tools/test/scripts/
H A Dtest_compact_ids.py27 os.system('tools/spirv-opt ' + path + ' -o ' + optimized_spv_path +
29 os.system('tools/spirv-dis ' + optimized_spv_path + ' -o ' +
32 os.system('tools/spirv-dis ' + path + ' -o ' + converted_dis_path)
33 os.system('tools/spirv-as ' + converted_dis_path + ' -o ' +
35 os.system('tools/spirv-dis ' + converted_spv_path + ' -o ' +
/third_party/ltp/testcases/kernel/power_management/lib/
H A Dpm_sched_mc.py32 os.system('dmesg -c >/dev/null')
38 ''' Returns number of cpu's in system
52 ''' Returns number of cpu's in system
58 phy_pkg_file = '/sys/devices/system/cpu/cpu%s' % i
65 print("INFO: Failed to get number of sockets in system", details)
69 '''Return 1 if the system is multi socket else return 0
77 print("Failed to check if system is multi socket system")
81 '''Return 1 if the system is hyper threaded else return 0
97 print("Failed to check if system i
[all...]
/third_party/ltp/testcases/kernel/power_management/
H A Drunpwtests03.sh33 cpufiles=$(find /sys/devices/system/cpu/cpu"${cpu}"/cpufreq/ \
61 /sys/devices/system/cpu/cpu${cpu}/cpufreq/scaling_governor
87 /sys/devices/system/cpu/cpu${cpu}/cpufreq/scaling_governor
98 /sys/devices/system/cpu/cpu${cpu}/cpufreq/scaling_setspeed
117 /sys/devices/system/cpu/cpu0/cpufreq/scaling_governor`
151 if [ ! -d /sys/devices/system/cpu/cpu0/cpufreq ] ; then

Completed in 7 milliseconds

12345678910>>...19