Home
last modified time | relevance | path

Searched refs:process (Results 1 – 25 of 2007) sorted by relevance

12345678910>>...81

/OK3568_Linux_fs/kernel/tools/perf/util/
H A Dsynthetic-events.h32 …nt__synthesize_attrs(struct perf_tool *tool, struct evlist *evlist, perf_event__handler_t process);
33 …ct perf_tool *tool, struct perf_event_attr *attr, u32 ids, u64 *id, perf_event__handler_t process);
34 …struct perf_tool *tool, struct dso *pos, u16 misc, perf_event__handler_t process, struct machine *…
35 …struct perf_tool *tool, struct perf_cpu_map *cpus, perf_event__handler_t process, struct machine *…
36 …size_event_update_cpus(struct perf_tool *tool, struct evsel *evsel, perf_event__handler_t process);
37 …size_event_update_name(struct perf_tool *tool, struct evsel *evsel, perf_event__handler_t process);
38 …ize_event_update_scale(struct perf_tool *tool, struct evsel *evsel, perf_event__handler_t process);
39 …size_event_update_unit(struct perf_tool *tool, struct evsel *evsel, perf_event__handler_t process);
40 …tr(struct perf_tool *tool, struct evlist *evsel_list, perf_event__handler_t process, bool is_pipe);
41 int perf_event__synthesize_extra_kmaps(struct perf_tool *tool, perf_event__handler_t process, struc…
[all …]
H A Dsynthetic-events.c53 perf_event__handler_t process) in perf_tool__process_synth_event() argument
65 return process(tool, event, &synth_sample, machine); in perf_tool__process_synth_event()
178 perf_event__handler_t process, in perf_event__synthesize_comm() argument
186 if (perf_tool__process_synth_event(tool, event, machine, process) != 0) in perf_event__synthesize_comm()
208 perf_event__handler_t process, in perf_event__synthesize_namespaces() argument
238 if (perf_tool__process_synth_event(tool, event, machine, process) != 0) in perf_event__synthesize_namespaces()
247 perf_event__handler_t process, in perf_event__synthesize_fork() argument
271 if (perf_tool__process_synth_event(tool, event, machine, process) != 0) in perf_event__synthesize_fork()
353 perf_event__handler_t process, in perf_event__synthesize_mmap_events() argument
457 if (perf_tool__process_synth_event(tool, event, machine, process) != 0) { in perf_event__synthesize_mmap_events()
[all …]
/OK3568_Linux_fs/external/xserver/hw/xwayland/
H A Dmeson.build40 srcs += client_header.process(relative_xml)
41 srcs += client_header.process(pointer_xml)
42 srcs += client_header.process(tablet_xml)
43 srcs += client_header.process(kbgrab_xml)
44 srcs += client_header.process(xdg_output_xml)
45 srcs += client_header.process(dmabuf_xml)
46 srcs += code.process(relative_xml)
47 srcs += code.process(pointer_xml)
48 srcs += code.process(tablet_xml)
49 srcs += code.process(kbgrab_xml)
[all …]
/OK3568_Linux_fs/kernel/drivers/gpu/drm/amd/amdkfd/
H A Dkfd_process.c183 mm = get_task_mm(pdd->process->lead_thread); in kfd_sdma_activity_worker()
280 proc = pdd->process; in kfd_get_cu_occupancy()
465 if (!q || !q->process) in kfd_procfs_add_queue()
467 proc = q->process; in kfd_procfs_add_queue()
746 struct kfd_process *process; in kfd_create_process() local
765 process = find_process(thread); in kfd_create_process()
766 if (process) { in kfd_create_process()
769 process = create_process(thread); in kfd_create_process()
770 if (IS_ERR(process)) in kfd_create_process()
773 ret = kfd_process_init_cwsr_apu(process, filep); in kfd_create_process()
[all …]
/OK3568_Linux_fs/kernel/Documentation/trace/postprocess/
H A Dtrace-pagealloc-postprocess.pl202 my $process = $1;
207 if ($opt_read_procstat && $process eq '') {
355 my $process;
359 $process = $process_pid;
360 $process =~ s/-([0-9])*$//;
361 if ($process eq '') {
362 $process = "NO_PROCESS_NAME";
365 $perprocess{$process}->{MM_PAGE_ALLOC} += $perprocesspid{$process_pid}->{MM_PAGE_ALLOC};
366 …$perprocess{$process}->{MM_PAGE_ALLOC_ZONE_LOCKED} += $perprocesspid{$process_pid}->{MM_PAGE_ALLOC…
367 $perprocess{$process}->{MM_PAGE_FREE} += $perprocesspid{$process_pid}->{MM_PAGE_FREE};
[all …]
H A Dtrace-vmscan-postprocess.pl285 my $process = $1;
288 if ($process eq "") {
289 $process = $last_procmap{$pid};
290 $process_pid = "$process-$pid";
292 $last_procmap{$pid} = $process;
296 if ($opt_read_procstat && $process eq '') {
667 my $process;
671 $process = $process_pid;
672 $process =~ s/-([0-9])*$//;
673 if ($process eq '') {
[all …]
/OK3568_Linux_fs/app/forlinx/flapp/src/plugins/imxx11/audiorecorder/
H A Dmainwindow.cpp20 process = NULL; in MainWindow()
37 delete process; in ~MainWindow()
62 if(process)delete process; in on_play_clicked()
68 process = new QProcess(); in on_play_clicked()
69 process->setProcessChannelMode(QProcess::MergedChannels); in on_play_clicked()
70 connect(process,SIGNAL(readyReadStandardOutput()),this,SLOT(output())); in on_play_clicked()
72 process->start(cmd.toLatin1()); in on_play_clicked()
90 if(process == NULL) in on_stop_clicked()
92 process->write("q \n"); in on_stop_clicked()
93 delete process; in on_stop_clicked()
[all …]
/OK3568_Linux_fs/yocto/poky/scripts/pybootchartgui/pybootchartgui/
H A Dparsing.py117 def add_process(self, process, start, end): argument
118 self.processes[process] = [start, end]
121 if process not in self.start[start]:
122 self.start[start].append(process)
125 if process not in self.end[end]:
126 self.end[end].append(process)
161 for process in self.ps_stats.process_map.values():
162 ppid = find_parent_id_for (int(process.pid // 1000))
164 process.ppid = ppid * 1000
167 for process in self.ps_stats.process_map.values():
[all …]
/OK3568_Linux_fs/kernel/drivers/gpu/drm/nouveau/nvkm/subdev/pmu/
H A Dgt215.c31 u32 process, u32 message, u32 data0, u32 data1) in gt215_pmu_send() argument
55 pmu->recv.process = process; in gt215_pmu_send()
66 nvkm_wr32(device, 0x10a1c4, process); in gt215_pmu_send()
77 wait_event(pmu->recv.wait, (pmu->recv.process == 0)); in gt215_pmu_send()
91 u32 process, message, data0, data1; in gt215_pmu_recv() local
106 process = nvkm_rd32(device, 0x10a1c4); in gt215_pmu_recv()
116 if (pmu->recv.process) { in gt215_pmu_recv()
117 if (process == pmu->recv.process && in gt215_pmu_recv()
121 pmu->recv.process = 0; in gt215_pmu_recv()
131 (char)((process & 0x000000ff) >> 0), in gt215_pmu_recv()
[all …]
/OK3568_Linux_fs/kernel/tools/lib/traceevent/Documentation/
H A Dlibtraceevent-commands.txt8 Manage pid to process name mappings.
26 These functions can be used to handle the mapping between pid and process name.
28 of the process, instead of its pid. This information can be retrieved from
31 The _tep_register_comm()_ function registers a _pid_ / process name mapping.
33 The _pid_ argument is the process ID, the _comm_ argument is the process name,
36 The _tep_override_comm()_ function registers a _pid_ / process name mapping.
37 If a process with the same pid is already registered, the process name string is
38 udapted with the new one. The _pid_ argument is the process ID, the _comm_
39 argument is the process name, _tep_ is the event context. The _comm_ is
42 The _tep_is_pid_registered()_ function checks if a pid has a process name
[all …]
/OK3568_Linux_fs/yocto/poky/meta/lib/oeqa/core/target/
H A Dssh.py228 nonlocal process
231 process = subprocess.Popen(command, **options)
235 os.set_blocking(process.stdout.fileno(), False)
239 if select.select([process.stdout], [], [], 5)[0] != []:
242 data = process.stdout.read()
254 process.stdout.close()
258 process.terminate()
261 process.kill()
272 output_raw = process.communicate()[0]
278 if process.returncode == None:
[all …]
/OK3568_Linux_fs/kernel/Documentation/translations/zh_CN/process/
H A D5.Posting.rst3 :Original: :ref:`Documentation/process/5.Posting.rst <development_posting>`
15 :ref:`Documentation/translations/zh_CN/process/submitting-patches.rst <cn_submittingpatches>`,
16 :ref:`Documentation/process/submitting-drivers.rst <submittingdrivers>`
17 和 :ref:`Documentation/translations/zh_CN/process/submit-checklist.rst <cn_submitchecklist>`.
148 :ref:`Documentation/translations/zh_CN/process/submitting-patches.rst <cn_submittingpatches>`
159 :ref:`Documentation/translations/zh_CN/process/submitting-patches.rst <cn_submittingpatches>`
166 :ref:`Documentation/translations/zh_CN/process/submitting-patches.rst <cn_submittingpatches>`
174 :ref:`Documentation/translations/zh_CN/process/submitting-patches.rst <cn_submittingpatches>`
191 :ref:`Documentation/translations/zh_CN/process/email-clients.rst <cn_email_clients>`
H A Dhowto.rst5 :Original: :ref:`Documentation/process/howto.rst <process_howto>`
67 :ref:`Documentation/translations/zh_CN/process/license-rules.rst <cn_kernel_licensing>`
90 :ref:`Documentation/process/changes.rst <changes>`
93 :ref:`Documentation/translations/zh_CN/process/coding-style.rst <cn_codingstyle>`
98 :ref:`Documentation/translations/zh_CN/process/submitting-patches.rst <cn_submittingpatches>`
99 :ref:`Documentation/process/submitting-drivers.rst <submittingdrivers>`
118 :ref:`Documentation/translations/zh_CN/process/stable-api-nonsense.rst <cn_stable_api_nonsense>`
133 :ref:`Documentation/translations/zh_CN/process/management-style.rst <cn_managementstyle>`
139 :ref:`Documentation/process/stable-kernel-rules.rst <stable_kernel_rules>`
142 :ref:`Documentation/process/kernel-docs.rst <kernel_docs>`
[all …]
/OK3568_Linux_fs/kernel/include/soc/rockchip/
H A Drockchip_opp_select.h44 int *bin, int *process);
46 int bin, int process, int volt_sel);
86 char *lkg_name, int process,
91 char *reg_name, int bin, int process,
106 int *process);
108 char *reg_name, int bin, int process,
110 struct opp_table *rockchip_set_opp_prop_name(struct device *dev, int process,
142 char *lkg_name, int process, in rockchip_of_get_lkg_sel() argument
157 char *reg_name, int bin, int process, in rockchip_of_get_pvtm_sel() argument
201 int *process) in rockchip_get_soc_info() argument
[all …]
/OK3568_Linux_fs/yocto/poky/scripts/lib/devtool/
H A D__init__.py49 return bb.process.run('%s%s' % (init_prefix, cmd), **options)
57 process = subprocess.Popen(
61 reader = codecs.getreader('utf-8')(process.stdout)
69 elif out == '' and process.poll() != None:
72 if process.returncode != 0:
73 raise bb.process.ExecutionError(cmd, process.returncode, buf, None)
194 import bb.process
197 bb.process.run('git init', cwd=repodir)
198 bb.process.run('git config --local gc.autodetach 0', cwd=repodir)
199 bb.process.run('git add -f -A .', cwd=repodir)
[all …]
/OK3568_Linux_fs/kernel/Documentation/translations/ko_KR/
H A Dhowto.rst2 This is a version of Documentation/process/howto.rst translated into korean
15 Documentation/process/howto.rst
82 :ref:`Documentation/process/license-rules.rst <kernel_licensing>` 에 설명되어
109 :ref:`Documentation/process/changes.rst <changes>`
113 :ref:`Documentation/process/coding-style.rst <codingstyle>`
119 …:ref:`Documentation/process/submitting-patches.rst <submittingpatches>` 와 :ref:`Documentation/proc…
140 :ref:`Documentation/process/stable-api-nonsense.rst <stable_api_nonsense>`
157 :ref:`Documentation/process/management-style.rst <managementstyle>`
165 :ref:`Documentation/process/stable-kernel-rules.rst <stable_kernel_rules>`
170 :ref:`Documentation/process/kernel-docs.rst <kernel_docs>`
[all …]
/OK3568_Linux_fs/external/security/rk_tee_user/v2/export-ta_arm32/mk/
H A Dsubdir.mk24 define process-subdir-srcs-y
69 define process-subdir-gensrcs-helper
123 define process-subdir-gensrcs-y
124 $$(eval $$(call process-subdir-gensrcs-helper,$1,$(sub-dir-out)/$$(produce-$1),$(sub-dir-out)/$(bas…
127 define process-subdir-asm-defines-y
131 define process-subdir
151 $$(foreach g, $$(gensrcs-y), $$(eval $$(call process-subdir-gensrcs-y,$$(g))))
152 $$(foreach s, $$(srcs-y), $$(eval $$(call process-subdir-srcs-y,$$(s))))
153 $$(foreach a, $$(asm-defines-y), $$(eval $$(call process-subdir-asm-defines-y,$$(a))))
175 $$(foreach sd, $$(sub-subdirs), $$(eval $$(call process-subdir,$$(sd))))
[all …]
/OK3568_Linux_fs/external/security/rk_tee_user/v2/export-ta_arm64/mk/
H A Dsubdir.mk24 define process-subdir-srcs-y
69 define process-subdir-gensrcs-helper
123 define process-subdir-gensrcs-y
124 $$(eval $$(call process-subdir-gensrcs-helper,$1,$(sub-dir-out)/$$(produce-$1),$(sub-dir-out)/$(bas…
127 define process-subdir-asm-defines-y
131 define process-subdir
151 $$(foreach g, $$(gensrcs-y), $$(eval $$(call process-subdir-gensrcs-y,$$(g))))
152 $$(foreach s, $$(srcs-y), $$(eval $$(call process-subdir-srcs-y,$$(s))))
153 $$(foreach a, $$(asm-defines-y), $$(eval $$(call process-subdir-asm-defines-y,$$(a))))
175 $$(foreach sd, $$(sub-subdirs), $$(eval $$(call process-subdir,$$(sd))))
[all …]
/OK3568_Linux_fs/app/forlinx/flapp/src/plugins/allwinner/camera/CameraUI/src/
H A Dabout.cpp39 QProcess process; in About() local
42 process.start(cmd); in About()
43 process.waitForFinished(); in About()
44 QByteArray output = process.readAllStandardOutput(); in About()
57 QProcess process; in About() local
60 process.start(cmd); in About()
61 process.waitForFinished(); in About()
62 QByteArray output = process.readAllStandardOutput(); in About()
/OK3568_Linux_fs/yocto/meta-openembedded/meta-oe/recipes-devtools/php/php/
H A Dphp-fpm.conf77 ; process.max = 128
79 ; Specify the nice(2) priority to apply to the master process (only if set)
81 ; Note: - It will only work if the FPM master process is launched as root
82 ; - The pool process will inherit the master process priority
85 ; process.priority = -19
91 ; Set open file descriptor rlimit for the master process.
95 ; Set max core size rlimit for the master process.
234 ; The number of seconds after which an idle process will be killed.
239 ; The number of requests each child process should execute before respawning.
248 ; process manager - static, dynamic or ondemand;
[all …]
/OK3568_Linux_fs/yocto/poky/meta/lib/oeqa/utils/
H A Dsshcontrol.py32 self.process = None
51 self.process = subprocess.Popen(command, **self.options)
57 if select.select([self.process.stdout], [], [], 5)[0] != []:
58 data = os.read(self.process.stdout.fileno(), 1024)
60 self.process.stdout.close()
72 self.process.terminate()
75 self.process.kill()
82 output = self.process.communicate()[0]
85 self.status = self.process.wait()
94 if self.process.poll() is None:
[all …]
/OK3568_Linux_fs/kernel/drivers/gpu/drm/amd/display/modules/hdcp/
H A Dhdcp_psp.c40 in->process.msg1_desc.msg_id = TA_HDCP_HDCP2_MSG_ID__NULL_MESSAGE; in hdcp2_message_init()
41 in->process.msg1_desc.msg_size = 0; in hdcp2_message_init()
42 in->process.msg2_desc.msg_id = TA_HDCP_HDCP2_MSG_ID__NULL_MESSAGE; in hdcp2_message_init()
43 in->process.msg2_desc.msg_size = 0; in hdcp2_message_init()
44 in->process.msg3_desc.msg_id = TA_HDCP_HDCP2_MSG_ID__NULL_MESSAGE; in hdcp2_message_init()
45 in->process.msg3_desc.msg_size = 0; in hdcp2_message_init()
516 msg_in->process.msg1_desc.msg_id = TA_HDCP_HDCP2_MSG_ID__AKE_SEND_CERT; in mod_hdcp_hdcp2_validate_ake_cert()
517 msg_in->process.msg1_desc.msg_size = TA_HDCP_HDCP2_MSG_ID_MAX_SIZE__AKE_SEND_CERT; in mod_hdcp_hdcp2_validate_ake_cert()
519 memcpy(&msg_in->process.receiver_message[0], hdcp->auth.msg.hdcp2.ake_cert, in mod_hdcp_hdcp2_validate_ake_cert()
540 if (msg_out->process.msg1_status == in mod_hdcp_hdcp2_validate_ake_cert()
[all …]
/OK3568_Linux_fs/yocto/poky/scripts/pybootchartgui/pybootchartgui/tests/
H A Dparser_test.py50 process = sorted_processes[index]
53 print(process.pid / 1000, process.cmd, process.ppid, len(process.samples))
56 self.assertEqual(tokens[0], str(process.pid // 1000))
57 self.assertEqual(tokens[1], str(process.cmd))
58 self.assertEqual(tokens[2], str(process.ppid // 1000))
59 self.assertEqual(tokens[3], str(len(process.samples)))
/OK3568_Linux_fs/kernel/Documentation/translations/ja_JP/
H A Dhowto.rst2 This is a version of Documentation/process/howto.rst translated into Japanese.
15 Documentation/process/howto.rst
112 :ref:`Documentation/process/changes.rst <changes>`
117 :ref:`Documentation/process/coding-style.rst <codingstyle>`
124 …:ref:`Documentation/process/submitting-patches.rst <codingstyle>` と :ref:`Documentation/process/su…
144 :ref:`Documentation/process/stable-api-nonsense.rst <stable_api_nonsense>`
161 :ref:`Documentation/process/management-style.rst <managementstyle>`
168 :ref:`Documentation/process/stable-kernel-rules.rst <stable_kernel_rules>`
173 :Ref:`Documentation/process/kernel-docs.rst <kernel_docs>`
178 :ref:`Documentation/process/applying-patches.rst <applying_patches>`
[all …]
/OK3568_Linux_fs/kernel/tools/memory-model/litmus-tests/
H A DREADME28 variable by a different process? This litmus test is forbidden
36 variable by a different process?
40 litmus test is visible to an external process whose accesses are
41 separated by smp_mb(). This addition of an external process to
54 load-buffering litmus test, where each process reads from one
59 litmus test, where each process reads from one of two variables then
71 in one process, and use an acquire load followed by a pair of
72 spin_is_locked() calls in the other process.
75 Protect the access with a lock in one process, and use an
77 in the other process.
[all …]

12345678910>>...81