HomeSort by relevance Sort by last modified time
    Searched full:pids (Results 1 - 25 of 340) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /device/lge/bullhead/sepolicy/
vold.te 2 # to gather information about all PIDS.
  /system/extras/libpagemap/
pm_kernel.c 65 pid_t pid, *pids, *new_pids; local
73 pids = malloc(INIT_PIDS * sizeof(pid_t));
74 if (!pids) {
85 new_pids = realloc(pids, 2 * pids_size * sizeof(pid_t));
88 free(pids);
92 pids = new_pids;
96 pids[pids_count] = pid;
103 new_pids = realloc(pids, pids_count * sizeof(pid_t));
106 free(pids);
  /external/chromium-trace/catapult/common/py_trace_event/py_trace_event/trace_event_impl/
parsed_trace_events.py 52 self.pids = None
68 if self.pids:
69 return self.pids
70 pids = set()
73 pids.add(e["pid"])
74 self.pids = list(pids)
75 return self.pids
  /external/kernel-headers/original/uapi/linux/
if_cablemodem.h 19 #define SIOCGCMPIDS (SIOCDEVPRIVATE+4) /* get cable modem PIDs */
20 #define SIOCSCMPIDS (SIOCDEVPRIVATE+5) /* set cable modem PIDs */
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/sysroot/usr/include/linux/
if_cablemodem.h 19 #define SIOCGCMPIDS SIOCDEVPRIVATE+4 /* get cable modem PIDs */
20 #define SIOCSCMPIDS SIOCDEVPRIVATE+5 /* set cable modem PIDs */
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/linux/
if_cablemodem.h 19 #define SIOCGCMPIDS SIOCDEVPRIVATE+4 /* get cable modem PIDs */
20 #define SIOCSCMPIDS SIOCDEVPRIVATE+5 /* set cable modem PIDs */
  /external/chromium-trace/catapult/telemetry/telemetry/internal/backends/
android_browser_backend_settings.py 103 pids = device.GetPids(self.package)
104 if not pids or self.package not in pids:
115 if len(pids[self.package]) > 1:
117 'At most one instance of process %s expected but found pids: '
118 '%s' % (self.package, pids))
119 pid = pids[self.package][0]
  /external/chromium-trace/catapult/telemetry/telemetry/util/
process_statistic_timeline_data.py 18 """The results of subtraction is an object holding only the pids contained
34 """The result contains pids from both |self| and |other|, if duplicate
35 pids are found between objects, an error will occur. """
  /external/autotest/client/site_tests/security_RendererSandbox/
security_RendererSandbox.py 25 pids = []
35 pids.append(proc.split()[0])
37 if pids:
38 self.renderer_pid = pids[0]
  /frameworks/native/include/binder/
ProcessInfoService.h 37 status_t getProcessStatesImpl(size_t length, /*in*/ int32_t* pids, /*out*/ int32_t* states);
45 * For each PID in the given "pids" input array, write the current process state
52 static status_t getProcessStatesFromPids(size_t length, /*in*/ int32_t* pids,
54 return ProcessInfoService::getInstance().getProcessStatesImpl(length, /*in*/ pids,
IProcessInfoService.h 31 /*in*/ int32_t* pids,
35 /*in*/ int32_t* pids,
  /frameworks/base/core/java/android/os/
IProcessInfoService.aidl 27 void getProcessStatesFromPids(in int[] pids, out int[] states);
34 void getProcessStatesAndOomScoresFromPids(in int[] pids, out int[] states, out int[] scores);
  /external/autotest/contrib/
watch_expensive_rpcs.py 27 pids = []
33 pids.append((cols[1], cols[3], cols[5]))
34 return pids
90 pids = check_cautotest()
91 for pid in pids:
  /external/ltrace/sysdeps/linux-gnu/
trace.c 186 get_task_info(struct pid_set *pids, pid_t pid)
190 for (i = 0; i < pids->count; ++i)
191 if (pids->tasks[i].pid == pid)
192 return &pids->tasks[i];
198 add_task_info(struct pid_set *pids, pid_t pid)
200 if (pids->count == pids->alloc) {
201 size_t ns = (2 * pids->alloc) ?: 4;
202 struct pid_task *n = realloc(pids->tasks,
203 sizeof(*pids->tasks) * ns)
244 struct pid_set *pids = data; local
274 struct pid_set *pids = data; local
941 struct pid_set pids; member in struct:ltrace_exiting_handler
    [all...]
  /external/pdfium/core/src/fxcodec/jbig2/
JBig2_TrdProc.cpp 217 JBig2IntDecoderState* pIDS) {
234 if (pIDS) {
235 IADT = pIDS->IADT;
236 IAFS = pIDS->IAFS;
237 IADS = pIDS->IADS;
238 IAIT = pIDS->IAIT;
239 IARI = pIDS->IARI;
240 IARDW = pIDS->IARDW;
241 IARDH = pIDS->IARDH;
242 IARDX = pIDS->IARDX
    [all...]
  /art/test/099-vmdebug/
check 17 # Strip the process pids and line numbers from exact error messages.
  /art/test/118-noimage-dex2oat/
check 17 # Strip the process pids and line numbers from exact error messages.
  /art/test/119-noimage-patchoat/
check 17 # Strip the process pids and line numbers from exact error messages.
  /frameworks/native/libs/binder/
IProcessInfoService.cpp 31 virtual status_t getProcessStatesFromPids(size_t length, /*in*/ int32_t* pids,
36 data.writeInt32Array(length, pids);
53 /*in*/ int32_t* pids, /*out*/ int32_t* states, /*out*/ int32_t* scores)
57 data.writeInt32Array(length, pids);
ProcessInfoService.cpp 29 status_t ProcessInfoService::getProcessStatesImpl(size_t length, /*in*/ int32_t* pids,
40 err = pis->getProcessStatesFromPids(length, /*in*/ pids, /*out*/ states);
  /system/extras/memtrack/
memtrack.cpp 158 cur_[cmd_name_].pids.push_back(pid);
170 // Clear any current pids.
172 it->second.pids.clear();
211 if (it->second.pids.size() > all_[it->first].max_num_pids) {
212 all_[it->first].max_num_pids = it->second.pids.size();
215 all_[it->first].pids = it->second.pids;
252 if ((*it)->pids.size() > 0) {
253 ALOGI(" Currently running pids:");
254 for (std::vector<int>::const_iterator pid_it = (*it)->pids.begin()
    [all...]
  /external/iproute2/man/man8/
tc-cgroup.8 59 Finally some PIDs can be assigned to the given cgroup:
72 makes packets from PIDs 1234 and 5678 be pushed into class 1:2.
  /external/chromium-trace/catapult/telemetry/telemetry/internal/backends/chrome/
android_browser_backend.py 166 pids = self.device.GetPids(self._backend_settings.package)
167 if not pids or self._backend_settings.package not in pids:
169 if len(pids[self._backend_settings.package]) > 1:
171 'At most one instance of process %s expected but found pids: '
172 '%s' % (self._backend_settings.package, pids))
173 return int(pids[self._backend_settings.package][0])
  /system/extras/ksmutils/
ksminfo.c 72 pid_t *pids; local
119 error = pm_kernel_pids(ker, &pids, &num_procs);
130 pids = malloc(sizeof(*pids));
131 if (pids == NULL) {
136 *pids = strtoul(argv[optind], NULL, 10);
137 if (*pids == 0) {
143 if (getprocname(*pids, cmdline, sizeof(cmdline)) < 0) {
146 printf("%s (%u):\n", cmdline, *pids);
153 error = pm_process_create(ker, pids[i], &proc)
    [all...]
  /external/autotest/client/tests/disktest/
disktest.py 86 pids = []
89 pids.append(pid)
91 for pid in pids:

Completed in 516 milliseconds

1 2 3 4 5 6 7 8 91011>>