Home
last modified time | relevance | path

Searched refs:system (Results 1 – 25 of 1011) sorted by relevance

12345678910>>...41

/llvm-project-15.0.7/compiler-rt/lib/asan/scripts/
H A Dasan_device_setup199 adb_shell mv /system/bin/app_process.real /system/bin/app_process
203 adb_shell mv /system/bin/app_process32.real /system/bin/app_process32
204 adb_shell mv /system/bin/app_process64.real /system/bin/app_process64
212 adb_shell ln -s /system/bin/app_process32 /system/bin/app_process
216 adb_shell mv /system/etc/ld.config.txt.saved /system/etc/ld.config.txt
272 adb_shell mv /system/bin/app_process.real /system/bin/app_process
276 adb_shell mv /system/bin/app_process /system/bin/app_process32
277 adb_shell ln -s /system/bin/app_process32 /system/bin/app_process
442 adb_shell ln -s /system/bin/app_process.wrap /system/bin/app_process
445 adb_shell cp /system/bin/sh /system/bin/sh-from-zygote
[all …]
/llvm-project-15.0.7/llvm/test/MC/RISCV/
H A Drv32-only-csr-names.s6 csrrs t1, cycleh, zero # CHECK-NEED-RV32: :[[@LINE]]:11: error: system register use requires an opt…
7 csrrs t1, timeh, zero # CHECK-NEED-RV32: :[[@LINE]]:11: error: system register use requires an opti…
8 csrrs t1, instreth, zero # CHECK-NEED-RV32: :[[@LINE]]:11: error: system register use requires an o…
10 csrrs t1, hpmcounter3h, zero # CHECK-NEED-RV32: :[[@LINE]]:11: error: system register use requires …
11 csrrs t1, hpmcounter4h, zero # CHECK-NEED-RV32: :[[@LINE]]:11: error: system register use requires …
12 csrrs t1, hpmcounter5h, zero # CHECK-NEED-RV32: :[[@LINE]]:11: error: system register use requires …
13 csrrs t1, hpmcounter6h, zero # CHECK-NEED-RV32: :[[@LINE]]:11: error: system register use requires …
14 csrrs t1, hpmcounter7h, zero # CHECK-NEED-RV32: :[[@LINE]]:11: error: system register use requires …
15 csrrs t1, hpmcounter8h, zero # CHECK-NEED-RV32: :[[@LINE]]:11: error: system register use requires …
50 csrrs t1, pmpcfg1, zero # CHECK-NEED-RV32: :[[@LINE]]:11: error: system register use requires an op…
[all …]
H A Dmachine-csr-names-invalid.s6 csrrs t1, pmpcfg1, zero # CHECK-NEED-RV32: :[[@LINE]]:11: error: system register use requires an op…
7 csrrs t1, pmpcfg3, zero # CHECK-NEED-RV32: :[[@LINE]]:11: error: system register use requires an op…
9 csrrs t1, mcycleh, zero # CHECK-NEED-RV32: :[[@LINE]]:11: error: system register use requires an op…
10 csrrs t1, minstreth, zero # CHECK-NEED-RV32: :[[@LINE]]:11: error: system register use requires an …
12 csrrs t1, mhpmcounter3h, zero # CHECK-NEED-RV32: :[[@LINE]]:11: error: system register use requires…
13 csrrs t1, mhpmcounter4h, zero # CHECK-NEED-RV32: :[[@LINE]]:11: error: system register use requires…
14 csrrs t1, mhpmcounter5h, zero # CHECK-NEED-RV32: :[[@LINE]]:11: error: system register use requires…
15 csrrs t1, mhpmcounter6h, zero # CHECK-NEED-RV32: :[[@LINE]]:11: error: system register use requires…
16 csrrs t1, mhpmcounter7h, zero # CHECK-NEED-RV32: :[[@LINE]]:11: error: system register use requires…
17 csrrs t1, mhpmcounter8h, zero # CHECK-NEED-RV32: :[[@LINE]]:11: error: system register use requires…
[all …]
/llvm-project-15.0.7/lldb/test/API/functionalities/postmortem/minidump-new/
H A Dregions-linux-map.yaml13 400d9000-400db000 r-xp 00000000 b3:04 227 /system/bin/app_process
14 400db000-400dc000 r--p 00001000 b3:04 227 /system/bin/app_process
16 400dd000-400ec000 r-xp 00000000 b3:04 300 /system/bin/linker
18 400ed000-400ee000 r--p 0000f000 b3:04 300 /system/bin/linker
19 400ee000-400ef000 rw-p 00010000 b3:04 300 /system/bin/linker
21 400fb000-400fc000 r-xp 00000000 b3:04 1096 /system/lib/liblog.so
26 40101000-40122000 r-xp 00000000 b3:04 955 /system/lib/libc.so
27 40122000-40123000 rwxp 00021000 b3:04 955 /system/lib/libc.so
28 40123000-40167000 r-xp 00022000 b3:04 955 /system/lib/libc.so
29 40167000-40169000 r--p 00065000 b3:04 955 /system/lib/libc.so
[all …]
/llvm-project-15.0.7/clang-tools-extra/docs/clang-tidy/checks/portability/
H A Drestrict-system-includes.rst1 .. title:: clang-tidy - portability-restrict-system-includes
3 portability-restrict-system-includes
15 #include <curses.h> // Bad: disallowed system header.
16 #include <openssl/ssl.h> // Bad: disallowed system header.
17 #include <zlib.h> // Good: allowed system header.
25 #include <curses.h> // Good: allowed system header.
26 #include <openssl/ssl.h> // Good: allowed system header.
27 #include <zlib.h> // Bad: disallowed system header.
37 #include <curses.h> // Bad: disallowed system header.
38 #include <openssl/ssl.h> // Good: allowed system header.
[all …]
/llvm-project-15.0.7/clang-tools-extra/docs/clang-tidy/checks/llvmlibc/
H A Drestrict-system-libc-headers.rst1 .. title:: clang-tidy - llvmlibc-restrict-system-libc-headers
3 llvmlibc-restrict-system-libc-headers
6 Finds includes of system libc headers not provided by the compiler within
11 #include <stdio.h> // Not allowed because it is part of system libc.
13 #include "internal/stdio.h" // Allowed because it is NOT part of system libc.
16 This check is necessary because accidentally including system libc headers can
17 lead to subtle and hard to detect bugs. For example consider a system libc
33 headers. See :doc:`portability-restrict-system-includes
34 <../portability/restrict-system-includes>` for more
/llvm-project-15.0.7/clang/test/Modules/Inputs/macro-ambiguity/
H A Dmodule.modulemap3 header "Inputs/macro-ambiguity/a/system/a_system.h"
6 module b [system] {
8 header "Inputs/macro-ambiguity/b/system/b_system.h"
13 header "Inputs/macro-ambiguity/c/system/c_system.h"
16 module d [system] {
18 header "Inputs/macro-ambiguity/d/system/d_system.h"
23 textual header "Inputs/macro-ambiguity/e/system/e_system.h"
/llvm-project-15.0.7/llvm/docs/
H A DSupportLibrary.rst11 services LLVM needs from the operating system. Much of LLVM is written using
12 portability features of standard C++. However, in a few areas, system dependent
14 system calls.
16 By centralizing LLVM's use of operating system interfaces, we make it possible
39 variations in operating system interfaces and doing so efficiently. The
52 To obtain system-dependent functionality, existing interfaces to the system
61 system level functionality, LLVM source must
64 accidentally using system specific functionality and only allows it via
98 we don't want is wrappers for the operating system calls involved.
100 There must **not** be a one-to-one relationship between operating system
[all …]
H A DBenchmarking.rst24 * Disable as many processes or services as possible on the target system.
35 system, which can have a pretty big variability.
50 for i in /sys/devices/system/cpu/cpu*/cpufreq/scaling_governor
52 echo performance > /sys/devices/system/cpu/cpu*/cpufreq/scaling_governor
66 ``/sys/devices/system/cpu/cpuN/topology/thread_siblings_list`` and
69 echo 0 > /sys/devices/system/cpu/cpuX/online
87 echo 1 > /sys/devices/system/cpu/intel_pstate/no_turbo
/llvm-project-15.0.7/lldb/test/Shell/Host/
H A DTestCustomShell.test2 # UNSUPPORTED: system-windows
3 # UNSUPPORTED: system-linux
4 # XFAIL: system-freebsd
5 # XFAIL: system-netbsd
6 # XFAIL: system-openbsd
/llvm-project-15.0.7/clang/test/SemaObjC/
H A Darc-system-header.m4 #include <arc-system-header.h>
10 // expected-note@arc-system-header.h:1 {{inline function performs a conversion which is forbidden i…
11 // expected-note@arc-system-header.h:5 {{inline function performs a conversion which is forbidden i…
16 … // expected-note@arc-system-header.h:14 {{declaration uses type that is ill-formed in ARC}}
21 … // expected-note@arc-system-header.h:19 {{declaration uses type that is ill-formed in ARC}}
30 // This is actually okay to use if declared in a system header.
45 // expected-note@arc-system-header.h:41 4 {{declaration uses type that is ill-formed in ARC}}
46 // expected-note@arc-system-header.h:41 2 {{property 'prop' is declared unavailable here}}
/llvm-project-15.0.7/clang/test/Unit/
H A Dlit.cfg.py48 if platform.system() in ['Linux', 'FreeBSD', 'NetBSD', 'OpenBSD', 'SunOS']:
50 elif platform.system() == 'Darwin':
52 elif platform.system() == 'Windows':
54 elif platform.system() == 'AIX':
68 .format(platform.system()))
/llvm-project-15.0.7/libc/docs/
H A Dredirectors.rst11 system libc itself. In this document, we present a strategy one can employ to
12 build redirectors to redirect from LLVM libc to the system libc. For now, the
23 which goes in between the llvm-libc static library and the system libc dynamic
27 the redirector library, which in turn calls the same function from the system
35 from the system libc::
48 ``round`` function from the system libc directly. It calls a function
56 The function ``__redirected_round`` calls the ``round`` function from the system
59 #include <math.h> // Header file from the system libc
64 return ::round(x); // Call to round from the system libc
H A Dlayering.rst6 developed in a fashion that it will be possible to layer it over the system
7 libc. This does not mean that one can mix llvm-libc with the system-libc. Also,
10 delegate parts of the functionality to the system-libc. The delegation happens
18 system-libc. A translation from one set of data structures to the other should
22 system-libc. One will have to delegate all `FILE` related functions to the
23 system-libc.
/llvm-project-15.0.7/lldb/examples/customization/pwd-cd-and-system/
H A DREADME6 following commands: 'pwd', 'cd', and 'system'.
10 Python module which provides implementation for the 'cd' and 'system' commands.
19 file imports the utils Python module and adds the 'pwd', 'cd', and 'system'
29 (lldb) help system
32 Syntax: system
33 (lldb) system ls -l
/llvm-project-15.0.7/clang/test/Modules/
H A Dvalidate-system-headers.m4 // RUN: echo 'module Foo [system] { header "foo.h" }' > %t/Inputs/usr/include/module.map
7 // Build a module using a system header
12 // Modify the system header, and confirm that we don't notice without -fmodules-validate-system-hea…
19 // Now make sure we rebuild the module when -fmodules-validate-system-headers is set.
20 …t/Inputs/usr/include -fmodules -fimplicit-module-maps -fmodules-validate-system-headers -fmodules-…
30 // Modify the system header...
37 // Now add -fmodules-validate-system-headers and rebuild
38 …t/Inputs/usr/include -fmodules -fimplicit-module-maps -fmodules-validate-system-headers -fmodules-…
H A Dsystem-out-of-date-test.m4 // RUN: -fmodules-cache-path=%t.cache -I%S/Inputs/system-out-of-date \
9 // RUN: -fmodules-cache-path=%t.cache -I%S/Inputs/system-out-of-date \
17 // CHECK: {{.*}}Y-{{.*}}pcm' was validated as a system module and is now being imported as a non-sy…
/llvm-project-15.0.7/lldb/docs/use/
H A Dqemu-testing.rst7 QEMU system mode emulation
18 * **setup.sh** is used to build the Linux kernel image and QEMU system emulation executable(s) from…
19 * **rootfs.sh** is used to generate Ubuntu root file system images to be used for QEMU system mode …
20 * **run-qemu.sh** utilizes QEMU to boot a Linux kernel image with a root file system image.
32 Create Ubuntu root file system image for QEMU system emulation with rootfs.sh
65 **Example:** Build qemu-system-arm and qemu-system-aarch64 binaries.
76 Run QEMU Arm or AArch64 system emulation using run-qemu.sh
100 **Example:** Run QEMU Arm or AArch64 system emulation using run-qemu.sh
113 Steps for running lldb-server in QEMU system emulation environment
H A Dremote.rst5 different system, than the debugger itself. We shall refer to the system
6 running the debugger as the local system, while the system running the debugged
7 process will be the remote system.
10 client part runs on the local system and the remote system runs the server. The
16 advanced debugging operations, like copying files from/to the remote system and
17 can be used to execute arbitrary shell commands on the remote system.
35 remote system automatically. Also, if the remote system runs a different OS or
38 Remote system
71 Local system
74 On the local system, you need to let LLDB know that you intend to do remote
[all …]
/llvm-project-15.0.7/lld/test/MachO/Inputs/MacOSX.sdk/usr/lib/
H A DlibSystem.tbd15 libraries: [ '/usr/lib/system/libdyld.dylib',
16 '/usr/lib/system/libsystem_c.dylib',
17 '/usr/lib/system/libsystem_m.dylib' ]
28 install-name: '/usr/lib/system/libdyld.dylib'
46 install-name: '/usr/lib/system/libsystem_c.dylib'
64 install-name: '/usr/lib/system/libsystem_m.dylib'
/llvm-project-15.0.7/lldb/test/Shell/Recognizer/
H A Dassert.test2 # XFAIL: system-freebsd
3 # XFAIL: system-netbsd
6 # UNSUPPORTED: system-linux
8 # UNSUPPORTED: system-windows
/llvm-project-15.0.7/clang-tools-extra/test/clang-tidy/checkers/cert/
H A Denv33-c.c5 extern int system(const char *);
11 system(0); in f()
13 system("test"); in f()
/llvm-project-15.0.7/lldb/test/Shell/ExecControl/StopHook/
H A Dstop-hook-threads.test6 # XFAIL: system-freebsd
7 # XFAIL: system-netbsd
8 # UNSUPPORTED: system-windows
10 # UNSUPPORTED: system-linux, system-darwin
/llvm-project-15.0.7/compiler-rt/test/asan/
H A Dlit.cfg.py28 if platform.system() == 'Windows':
30 elif platform.system() == 'Darwin':
39 if platform.system() == 'FreeBSD':
45 if platform.system() == 'SunOS':
105 if platform.system() == 'Windows':
108 elif platform.system() == 'FreeBSD':
119 if platform.system() == 'Windows':
148 if platform.system() == 'Windows':
/llvm-project-15.0.7/clang/test/Analysis/
H A Dtaint-generic.c192 int system(const char *command);
197 system(addr); // expected-warning {{Untrusted data is passed to a system call}} in testTaintSystemCall()
201 system(buffer); // expected-warning {{Untrusted data is passed to a system call}} in testTaintSystemCall()
210 system(buffern); // expected-warning {{Untrusted data is passed to a system call}} in testTaintSystemCall2()
219 system(buffern2); // expected-warning {{Untrusted data is passed to a system call}} in testTaintSystemCall3()
225 system(str); // expected-warning {{Untrusted data is passed to a system call}} in testGets()
231 system(str); // expected-warning {{Untrusted data is passed to a system call}} in testGets_s()
407 return system(c); // expected-warning {{Untrusted data is passed to a system call}} in testGetcwd()
413 return system(c); // expected-warning {{Untrusted data is passed to a system call}} in testGetwd()
419 system(buf); // expected-warning {{Untrusted data is passed to a system call}} in testReadlink()
[all …]

12345678910>>...41