Home
last modified time | relevance | path

Searched full:proc (Results 1 – 25 of 2564) sorted by relevance

12345678910>>...103

/third_party/mesa3d/src/amd/common/
Dac_linux_drm.h23 #define PROC static inline macro
37 #define PROC
62 PROC int ac_drm_device_initialize(int fd, bool is_virtio,
65 PROC uintptr_t ac_drm_device_get_cookie(ac_drm_device *dev) TAIL;
66 PROC void ac_drm_device_deinitialize(ac_drm_device *dev) TAILV;
67 PROC int ac_drm_device_get_fd(ac_drm_device *dev) TAIL;
68 PROC int ac_drm_bo_set_metadata(ac_drm_device *dev, uint32_t bo_handle,
70 PROC int ac_drm_bo_query_info(ac_drm_device *dev, uint32_t bo_handle, struct amdgpu_bo_info *info) …
71 PROC int ac_drm_bo_wait_for_idle(ac_drm_device *dev, ac_drm_bo bo, uint64_t timeout_ns,
73 PROC int ac_drm_bo_va_op(ac_drm_device *dev, uint32_t bo_handle, uint64_t offset, uint64_t size,
[all …]
/third_party/mesa3d/src/gallium/frontends/wgl/
Dstw_nopfuncs.c391 PROC
396 PROC p; in stw_get_nop_function()
398 { "glBindMultiTextureEXT", (PROC) nop_glBindMultiTextureEXT }, in stw_get_nop_function()
399 { "glColor3hNV", (PROC) nop_glColor3hNV }, in stw_get_nop_function()
400 { "glColor3hvNV", (PROC) nop_glColor3hvNV }, in stw_get_nop_function()
401 { "glColor4hNV", (PROC) nop_glColor4hNV }, in stw_get_nop_function()
402 { "glColor4hvNV", (PROC) nop_glColor4hvNV }, in stw_get_nop_function()
403 { "glDisableClientStateIndexedEXT", (PROC) nop_glDisableClientStateIndexedEXT }, in stw_get_nop_function()
404 { "glEnableClientStateIndexedEXT", (PROC) nop_glEnableClientStateIndexedEXT }, in stw_get_nop_function()
405 { "glFogCoordhNV", (PROC) nop_glFogCoordhNV }, in stw_get_nop_function()
[all …]
/third_party/skia/third_party/externals/oboe/src/aaudio/
DAAudioLoader.cpp134 static void AAudioLoader_check(void *proc, const char *functionName) { in AAudioLoader_check() argument
135 if (proc == nullptr) { in AAudioLoader_check()
141 void *proc = dlsym(mLibHandle, functionName); in load_I_PPB() local
142 AAudioLoader_check(proc, functionName); in load_I_PPB()
143 return reinterpret_cast<signature_I_PPB>(proc); in load_I_PPB()
147 void *proc = dlsym(mLibHandle, functionName); in load_CPH_I() local
148 AAudioLoader_check(proc, functionName); in load_CPH_I()
149 return reinterpret_cast<signature_CPH_I>(proc); in load_CPH_I()
153 void *proc = dlsym(mLibHandle, functionName); in load_V_PBI() local
154 AAudioLoader_check(proc, functionName); in load_V_PBI()
[all …]
/third_party/ltp/testcases/kernel/fs/proc/
Dproc01.c2 * proc01.c - Tests Linux /proc file reading.
63 static char *procpath = "/proc";
64 static const char selfpath[] = "/proc/self";
82 {"open", "/proc/acpi/event", EBUSY},
83 {"open", "/proc/sal/cpe/data", EBUSY},
84 {"open", "/proc/sal/cmc/data", EBUSY},
85 {"open", "/proc/sal/init/data", EBUSY},
86 {"open", "/proc/sal/mca/data", EBUSY},
87 {"open", "/proc/fs/nfsd/pool_stats", ENODEV},
88 {"read", "/proc/fs/nfsd/clients/*/ctl", EINVAL},
[all …]
/third_party/python/Lib/test/test_asyncio/
Dtest_subprocess.py115 proc = await asyncio.create_subprocess_exec(
122 proc.stdin.write(data)
123 await proc.stdin.drain()
124 proc.stdin.close()
127 data = await proc.stdout.read()
128 exitcode = await proc.wait()
141 proc = await asyncio.create_subprocess_exec(
146 stdout, stderr = await proc.communicate(data)
147 return proc.returncode, stdout
156 proc = self.loop.run_until_complete(
[all …]
/third_party/rust/crates/rustix/src/io/
Dprocfs.rs1 //! Utilities for working with `/proc`, where Linux's `procfs` is typically
2 //! mounted. `/proc` serves as an adjunct to Linux's main syscall surface area,
5 //! This module does a considerable amount of work to determine whether `/proc`
36 // Identify an entry within "/proc", to determine which anomalies to check for.
39 Proc, enumerator
45 /// Check a subdirectory of "/proc" for anomalies.
55 /// Check a subdirectory of "/proc" for anomalies, using the provided `Stat`.
66 Kind::Proc => check_proc_root(entry, &entry_stat)?, in check_proc_entry_with_stat()
71 // "/proc" directories are typically mounted r-xr-xr-x. in check_proc_entry_with_stat()
72 // "/proc/self/fd" is r-x------. Allow them to have fewer permissions, but in check_proc_entry_with_stat()
[all …]
/third_party/toybox/tests/
Dpgrep.test15 proc=$!
16 #echo "# Process created with id: $proc"
19 proc_parent=`cat /proc/${proc}/stat | cut -d' ' -f4`
20 #echo "# Parent Process id of $proc is $proc_parent"
23 testing "pattern" "pgrep yes" "$proc\n" "" ""
24 testing "wildCardPattern" "pgrep ^y.*s$" "$proc\n" "" ""
25 testing "-l pattern" "pgrep -l yes" "$proc yes\n" "" ""
26 testing "-f pattern" "pgrep -f yes" "$proc\n" "" ""
27 testing "-n pattern" "pgrep -n yes" "$proc\n" "" ""
28 testing "-o pattern" "pgrep -o yes" "$proc\n" "" ""
[all …]
/third_party/ltp/lib/newlib_tests/
Dtest_zero_hugepage.sh14 orig_value=`cat /proc/sys/vm/nr_hugepages`
16 if grep -q -E '^proc /proc(/sys)? proc ro' /proc/mounts; then
17 tconf "/proc or /proc/sys mounted as read-only"
20 if [ ! -f /proc/sys/vm/nr_hugepages ]; then
21 tconf "/proc/sys/vm/nr_hugepages does not exist"
24 if [ ! -w /proc/sys/vm/nr_hugepages ]; then
25 tconf "no write permission to /proc/sys/vm/nr_hugepages (run as root)"
28 echo 4 > /proc/sys/vm/nr_hugepages
32 echo $orig_value > /proc/sys/vm/nr_hugepages
/third_party/skia/third_party/externals/angle2/src/libANGLE/renderer/metal/shaders/
Dcopy_buffer.metal1303 #define SUPPORTED_FORMATS(PROC) \
1304 PROC(R5G6B5_UNORM) \
1305 PROC(R8G8B8A8_UNORM) \
1306 PROC(R8G8B8A8_UNORM_SRGB) \
1307 PROC(R8G8B8A8_SNORM) \
1308 PROC(B8G8R8A8_UNORM) \
1309 PROC(B8G8R8A8_UNORM_SRGB) \
1310 PROC(R8G8B8_UNORM) \
1311 PROC(R8G8B8_UNORM_SRGB) \
1312 PROC(R8G8B8_SNORM) \
[all …]
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/Sparc/
DSparc.td87 class Proc<string Name, list<SubtargetFeature> Features>
90 def : Proc<"generic", []>;
91 def : Proc<"v7", [FeatureSoftMulDiv, FeatureNoFSMULD]>;
92 def : Proc<"v8", []>;
93 def : Proc<"supersparc", []>;
94 def : Proc<"sparclite", []>;
95 def : Proc<"f934", []>;
96 def : Proc<"hypersparc", []>;
97 def : Proc<"sparclite86x", []>;
98 def : Proc<"sparclet", []>;
[all …]
/third_party/rust/rust/tests/ui/rfcs/rfc-2565-param-attrs/
Dproc-macro-cannot-be-used.stderr2 --> $DIR/proc-macro-cannot-be-used.rs:11:23
8 --> $DIR/proc-macro-cannot-be-used.rs:11:40
14 --> $DIR/proc-macro-cannot-be-used.rs:15:40
20 --> $DIR/proc-macro-cannot-be-used.rs:18:30
26 --> $DIR/proc-macro-cannot-be-used.rs:18:40
32 --> $DIR/proc-macro-cannot-be-used.rs:22:11
38 --> $DIR/proc-macro-cannot-be-used.rs:24:18
44 --> $DIR/proc-macro-cannot-be-used.rs:24:30
50 --> $DIR/proc-macro-cannot-be-used.rs:30:20
56 --> $DIR/proc-macro-cannot-be-used.rs:30:32
[all …]
/third_party/skia/m133/src/gpu/
DRefCntedCallback.h30 AutoCallback(Callback proc, Context ctx) : fReleaseProc(proc), fReleaseCtx(ctx) {} in AutoCallback() argument
31 AutoCallback(CallbackWithStats proc, Context ctx) in AutoCallback() argument
32 : fReleaseWithStatsProc(proc), fReleaseCtx(ctx) {} in AutoCallback()
33 AutoCallback(ResultCallback proc, Context ctx) : fResultReleaseProc(proc), fReleaseCtx(ctx) {} in AutoCallback() argument
34 AutoCallback(ResultCallbackWithStats proc, Context ctx) in AutoCallback() argument
35 : fResultReleaseWithStatsProc(proc), fReleaseCtx(ctx) {} in AutoCallback()
113 static sk_sp<RefCntedCallback> Make(Callback proc, Context ctx) { return MakeImpl(proc, ctx); } in Make() argument
115 static sk_sp<RefCntedCallback> Make(CallbackWithStats proc, Context ctx) { in Make() argument
116 return MakeImpl(proc, ctx); in Make()
119 static sk_sp<RefCntedCallback> Make(ResultCallback proc, Context ctx) { in Make() argument
[all …]
/third_party/ltp/testcases/kdump/lib/
Dsysinfo.sh8 echo "------------- /PROC/VERSION --------------"
10 cat /proc/version
12 echo "------------- /PROC/CPUINFO --------------"
14 cat /proc/cpuinfo
16 echo "------------- /PROC/MEMINFO --------------"
18 cat /proc/meminfo
20 echo "------------- /PROC/DEVICES --------------"
22 cat /proc/devices
24 echo "------------- /PROC/INTERRUPTS -----------"
26 cat /proc/interrupts
[all …]
Dtest.sh14 --append="$(cat /proc/cmdline)"
39 echo c >/proc/sysrq-trigger
45 echo 0 >/proc/crasher
51 echo 1 >/proc/crasher
57 echo 1 >/proc/sys/kernel/panic_on_oops
58 echo 2 >/proc/crasher
65 echo 3 >/proc/crasher
81 echo 1 >/proc/sys/kernel/panic_on_oops
97 echo 1 >/proc/sys/kernel/panic_on_oops
113 echo 1 >/proc/sys/kernel/panic_on_oops
[all …]
/third_party/skia/third_party/externals/angle2/src/libANGLE/
DOverlay_autogen.h41 #define ANGLE_WIDGET_ID_X(PROC) \ argument
42 PROC(FPS) \
43 PROC(VulkanLastValidationMessage) \
44 PROC(VulkanValidationMessageCount) \
45 PROC(VulkanRenderPassCount) \
46 PROC(VulkanRenderPassBufferCount) \
47 PROC(VulkanSecondaryCommandBufferPoolWaste) \
48 PROC(VulkanWriteDescriptorSetCount) \
49 PROC(VulkanDescriptorSetAllocations) \
50 PROC(VulkanShaderBufferDSHitRate) \
[all …]
/third_party/flatbuffers/tests/MyGame/Example/
DMonster.nim569 proc MonsterStart*(builder: var Builder) =
571 proc MonsterAddpos*(builder: var Builder, pos: uoffset) =
573 proc MonsterAddmana*(builder: var Builder, mana: int16) =
575 proc MonsterAddhp*(builder: var Builder, hp: int16) =
577 proc MonsterAddname*(builder: var Builder, name: uoffset) =
579 proc MonsterAddinventory*(builder: var Builder, inventory: uoffset) =
581 proc MonsterStartinventoryVector*(builder: var Builder, numElems: uoffset) =
583 proc MonsterAddcolor*(builder: var Builder, color: uint8) =
585 proc MonsterAddtestType*(builder: var Builder, testType: uint8) =
587 proc MonsterAddtest*(builder: var Builder, test: uoffset) =
[all …]
/third_party/rust/crates/proc-macro2/
DCargo.toml2 name = "proc-macro2"
8 documentation = "https://docs.rs/proc-macro2"
12 repository = "https://github.com/dtolnay/proc-macro2"
34 proc-macro = []
35 default = ["proc-macro"]
51 # Our doc tests depend on quote which depends on proc-macro2. Without this line,
52 # the proc-macro2 dependency of quote would be the released version of
53 # proc-macro2. Quote would implement its traits for types from that proc-macro2,
55 # proc-macro2.
58 # spuriously fail. This is because they'll be building a local proc-macro2 which
[all …]
DREADME.md1 # proc-macro2
3 …ge/github-dtolnay/proc--macro2-8da0cb?style=for-the-badge&labelColor=555555&logo=github" height="2…
4 …/img.shields.io/crates/v/proc-macro2.svg?style=for-the-badge&color=fc8d62&logo=rust" height="20">]…
5 …ields.io/badge/docs.rs-proc--macro2-66c2a5?style=for-the-badge&labelColor=555555&logo=docs.rs" hei…
6 …ns/workflow/status/dtolnay/proc-macro2/ci.yml?branch=master&style=for-the-badge" height="20">](htt…
11 - **Bring proc-macro-like functionality to other contexts like build.rs and
32 proc-macro2 = "1.0"
59 The default feature set of proc-macro2 tracks the most recent stable compiler
61 proc-macro2 by default.
66 that track the nightly compiler, minor versions of proc-macro2 may make breaking
[all …]
/third_party/rust/rust/tests/ui/proc-macro/
Dproc-macro-attributes.stderr2 --> $DIR/proc-macro-attributes.rs:9:3
8 --> $DIR/proc-macro-attributes.rs:6:3
15 --> $DIR/proc-macro-attributes.rs:19:10
20 --> $DIR/proc-macro-attributes.rs:3:1
26 --> $DIR/proc-macro-attributes.rs:10:3
33 --> $DIR/proc-macro-attributes.rs:19:10
38 --> $DIR/proc-macro-attributes.rs:3:1
44 --> $DIR/proc-macro-attributes.rs:13:3
51 --> $DIR/proc-macro-attributes.rs:19:10
56 --> $DIR/proc-macro-attributes.rs:3:1
[all …]
/third_party/flatbuffers/nim/flatbuffers/src/
Dbuilder.nim30 proc FinishedBytes*(this): seq[byte] =
35 proc Output*(this): seq[byte] =
44 proc StartObject*(this; numfields: int) =
54 proc GrowByteBuffer*(this) =
70 proc Place*[T](this; x: T) =
78 proc Prep*(this; size: int; additionalBytes: int) =
90 proc PrependOffsetRelative*[T: Offsets](this; off: T) =
104 proc Prepend*[T](this; x: T) =
108 proc Slot*(this; slotnum: int) =
111 proc PrependSlot*[T](this; o: int; x, d: T) =
[all …]
/third_party/skia/third_party/externals/dawn/generator/templates/opengl/
DOpenGLFunctionsBase.cpp23 return DAWN_INTERNAL_ERROR(std::string("Couldn't load GL proc: ") + name); in LoadProc()
32 {% for proc in block.procs %} in LoadOpenGLESProcs()
33 DAWN_TRY(LoadProc(getProc, &{{proc.ProcName()}}, "{{proc.glProcName()}}")); in LoadOpenGLESProcs()
41 {% for proc in block.procs %} in LoadOpenGLESProcs()
42 DAWN_TRY(LoadProc(getProc, &{{proc.ProcName()}}, "{{proc.glProcName()}}")); in LoadOpenGLESProcs()
53 {% for proc in block.procs %}
54 DAWN_TRY(LoadProc(getProc, &{{proc.ProcName()}}, "{{proc.glProcName()}}"));
62 {% for proc in block.procs %}
63 DAWN_TRY(LoadProc(getProc, &{{proc.ProcName()}}, "{{proc.glProcName()}}"));
/third_party/mesa3d/src/gallium/frontends/clover/core/
Dbinary.cpp38 _serializer<T>::proc(os, x); in _proc()
45 _serializer<T>::proc(is, x); in _proc()
52 _serializer<T>::proc(is, x); in _proc()
60 _serializer<T>::proc(sz, x); in _proc()
68 proc(std::ostream &os, const T &x) { in proc() function
73 proc(std::istream &is, T &x) { in proc() function
78 proc(binary::size_t &sz, const T &x) { in proc() function
89 proc(std::ostream &os, const std::vector<T> &v) { in proc() function
97 proc(std::istream &is, std::vector<T> &v) { in proc() function
105 proc(binary::size_t &sz, const std::vector<T> &v) { in proc() function
[all …]
/third_party/flatbuffers/tests/optional_scalars/
DScalarStuff.nim256 proc ScalarStuffStart*(builder: var Builder) =
258 proc ScalarStuffAddjustI8*(builder: var Builder, justI8: int8) =
260 proc ScalarStuffAddmaybeI8*(builder: var Builder, maybeI8: int8) =
262 proc ScalarStuffAdddefaultI8*(builder: var Builder, defaultI8: int8) =
264 proc ScalarStuffAddjustU8*(builder: var Builder, justU8: uint8) =
266 proc ScalarStuffAddmaybeU8*(builder: var Builder, maybeU8: uint8) =
268 proc ScalarStuffAdddefaultU8*(builder: var Builder, defaultU8: uint8) =
270 proc ScalarStuffAddjustI16*(builder: var Builder, justI16: int16) =
272 proc ScalarStuffAddmaybeI16*(builder: var Builder, maybeI16: int16) =
274 proc ScalarStuffAdddefaultI16*(builder: var Builder, defaultI16: int16) =
[all …]
/third_party/rust/crates/proc-macro-error/
DCargo.toml2 name = "proc-macro-error"
5 description = "Almost drop-in replacement to panics in proc-macros"
7 repository = "https://gitlab.com/CreepySkeleton/proc-macro-error"
9 keywords = ["proc-macro", "error", "errors"]
24 proc-macro2 = "1"
25 proc-macro-error-attr = { path = "./proc-macro-error-attr", version = "=1.0.4"}
34 proc-macro-hack-test = { path = "./test-crate/proc-macro-hack-test" }
/third_party/skia/m133/src/codec/
DSkSwizzler.cpp754 template <SkSwizzler::RowProc proc>
770 proc(dst32, (const uint8_t*)src16, width, bpp, deltaSrc, 0, ctable); in SkipLeadingGrayAlphaZerosThen()
773 template <SkSwizzler::RowProc proc>
789 proc(dst32, (const uint8_t*)src32, dstWidth, bpp, deltaSrc, 0, ctable); in SkipLeading8888ZerosThen()
796 RowProc proc = nullptr; in MakeSimple() local
799 proc = &sample1; in MakeSimple()
802 proc = &sample2; in MakeSimple()
807 proc = &sample4; in MakeSimple()
810 proc = &sample6; in MakeSimple()
813 proc = &sample8; in MakeSimple()
[all …]

12345678910>>...103