HomeSort by relevance Sort by last modified time
    Searched refs:pid (Results 426 - 450 of 790) sorted by null

<<11121314151617181920>>

  /external/valgrind/main/coregrind/
pub_core_libcsignal.h 78 extern Int VG_(kill) ( Int pid, Int signo );
  /external/valgrind/main/include/
pub_tool_libcproc.h 55 extern Int VG_(waitpid)( Int pid, Int *status, Int options );
  /external/webkit/Tools/Scripts/webkitperl/
httpd.pm 67 my $httpdPidFile = File::Spec->catfile($httpdPidDir, "httpd.pid");
167 print "\nhttpd is already running: pid $oldPid, killing...\n";
214 my ($pid) = @_;
216 return 1 unless $pid;
218 kill 15, $pid;
221 while (kill(0, $pid) && $retryCount) {
  /external/webkit/Tools/Scripts/webkitpy/common/system/
executive_mock.py 51 def kill_process(self, pid):
  /external/webkit/Tools/Scripts/webkitpy/layout_tests/port/
server_process_unittest.py 54 self.pid = 1
  /frameworks/base/include/binder/
IServiceManager.h 81 bool checkPermission(const String16& permission, pid_t pid, uid_t uid);
  /frameworks/base/media/libmediaplayerservice/
MediaRecorderClient.h 65 pid_t pid);
MediaPlayerService.h 187 virtual sp<IMediaRecorder> createMediaRecorder(pid_t pid);
189 virtual sp<IMediaMetadataRetriever> createMetadataRetriever(pid_t pid);
191 virtual sp<IMediaPlayer> create(pid_t pid, const sp<IMediaPlayerClient>& client, int audioSessionId);
289 pid_t pid() const { return mPid; } function in class:android::MediaPlayerService::Client
297 pid_t pid,
  /frameworks/base/media/libstagefright/mpeg2ts/
ATSParser.cpp 50 unsigned pid, unsigned payload_unit_start_indicator,
89 unsigned pid() const { return mElementaryPID; } function in struct:android::ATSParser::Stream
90 void setPID(unsigned pid) { mElementaryPID = pid; }
142 unsigned pid, unsigned payload_unit_start_indicator,
146 if (pid == mProgramMapPID) {
157 ssize_t index = mStreams.indexOfKey(pid);
294 LOGI("PID 0x%08x => type 0x%02x", stream->pid(), stream->type());
301 LOGI("PID 0x%08x => type 0x%02x", info.mPID, info.mType)
    [all...]
  /packages/apps/Settings/src/com/android/settings/applications/
RunningState.java 81 // by their pid. These disappear and re-appear as services are restarted.
693 mTmpAppProcesses.put(pi.pid, new AppProcessInfo(pi));
700 if (si.restarting == 0 && si.pid > 0) {
701 AppProcessInfo ainfo = mTmpAppProcesses.get(si.pid);
720 if (si.restarting == 0 && si.pid > 0) {
721 AppProcessInfo ainfo = mTmpAppProcesses.get(si.pid);
761 int pid = si.restarting == 0 ? si.pid : 0; local
762 if (pid != proc.mPid) {
764 if (proc.mPid != pid) {
    [all...]
  /prebuilt/linux-x86/toolchain/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/linux/
agpgart.h 85 pid_t pid; /* pid of process */ member in struct:_agp_region
auto_fs4.h 77 __u32 pid; member in struct:autofs_v5_packet
dlm_device.h 52 __u32 pid; member in struct:dlm_purge_params
  /sdk/emulator/qtools/
check_trace.cpp 49 printf("time: %llu insn time: %llu bb: %llu addr: 0x%x num_insns: %d, pid: %d\n",
51 event.num_insns, event.pid);
dmtrace.cpp 126 void DmTrace::addFunctionEntry(int functionId, uint32_t cycle, uint32_t pid)
128 writeDataRecord(fData, pid, functionId, cycle);
131 void DmTrace::addFunctionExit(int functionId, uint32_t cycle, uint32_t pid)
133 writeDataRecord(fData, pid, functionId | 1, cycle);
dump_regions.cpp 48 printf("pid %d regions: %d %s",
49 pstate->pid, manager->nregions, pstate->name);
  /system/core/include/cutils/
logprint.h 47 pid_t pid; member in struct:AndroidLogEntry_t
  /system/extras/procmem/
procmem.c 42 pid_t pid; local
96 pid = (pid_t)strtol(argv[argc - 1], &endptr, 10);
98 fprintf(stderr, "Invalid PID \"%s\".\n", argv[argc - 1]);
111 error = pm_process_create(ker, pid, &proc);
114 "does process %d really exist?\n", pid);
304 fprintf(stderr, "Usage: %s [ -w | -W ] [ -p | -m ] [ -h ] pid\n"
  /system/core/liblog/
fake_log_device.c 357 pid_t pid, tid; local
363 pid = tid = getpid(); // find gettid()?
395 "%c(%5d) ", priChar, pid);
401 "%c(%5d:%p) ", priChar, pid, (void*)tid);
415 "%s %5d %5d %c %-8s \n\t", timeBuf, pid, tid, priChar, tag);
421 timeBuf, pid, (void*)tid, priChar, tag);
426 "%c/%-8s(%5d): ", priChar, tag, pid);
logprint.c 356 entry->pid = buf->pid;
581 entry->pid = buf->pid;
721 "%c(%5d) ", priChar, entry->pid);
727 "%c(%5d:%p) ", priChar, entry->pid, (void*)entry->tid);
740 priChar, entry->tag, entry->pid);
747 (int)entry->pid, (int)entry->tid, priChar, entry->tag);
754 timeBuf, entry->tv_nsec / 1000000, entry->pid,
763 "%c/%-8s(%5d): ", priChar, entry->tag, entry->pid);
    [all...]
  /external/chromium/base/metrics/
stats_table.cc 32 // | Thread PID table |
394 int StatsTable::GetRowValue(int index, int pid) const {
401 if (pid == 0 || *impl_->thread_pid(slot_id) == pid)
411 int StatsTable::GetCounterValue(const std::string& name, int pid) {
418 return GetRowValue(row, pid);
  /external/chromium/base/
process_util.h 47 ProcessId pid() const { return th32ProcessID; } function in struct:base::ProcessEntry
80 ProcessId pid() const { return pid_; }
140 // Converts a PID to a process handle. This handle must be closed by
142 BASE_API bool OpenProcessHandle(ProcessId pid, ProcessHandle* handle);
144 // Converts a PID to a process handle. On Windows the handle is opened
150 BASE_API bool OpenPrivilegedProcessHandle(ProcessId pid, ProcessHandle* handle);
152 // Converts a PID to a process handle using the desired access flags. Use a
154 BASE_API bool OpenProcessHandleWithAccess(ProcessId pid,
170 // Parse the data found in /proc/<pid>/stat and return the sum of the
261 // As above, if wait is true, execute synchronously. The pid will be store
    [all...]
  /external/chromium/chrome/browser/chromeos/cros/
login_library.cc 147 bool RestartJob(int pid, const std::string& command_line) {
152 job_restart_request_ = new JobRestartRequest(pid, command_line);
160 JobRestartRequest(int pid, const std::string& command_line)
161 : pid_(pid),
359 bool RestartJob(int pid, const std::string& command_line) { return true; }
  /sdk/ddms/libs/ddmuilib/src/com/android/ddmuilib/logcat/
LogCatFilterSettingsDialog.java 46 "Filter logcat messages by the source's tag, pid or minimum log level.\n"
78 * @param pid value for filter by pid
82 public void setDefaults(String filterName, String tag, String text, String pid, String appName,
87 mPid = pid;
119 createLabel(c, "by PID:");
184 /* if a pid is provided, it should be a +ve integer */
187 int pid = 0; local
189 pid = Integer.parseInt(pidText);
192 "PID should be a positive integer.")
    [all...]
  /external/e2fsprogs/misc/
fsck.c 440 pid_t pid; local
492 pid = -1;
493 else if ((pid = fork()) < 0) {
497 } else if (pid == 0) {
509 inst->pid = pid;
541 kill(inst->pid, signum);
556 pid_t pid; local
581 pid = waitpid(-1, &status, flags);
586 if ((pid == 0) && (flags & WNOHANG)
    [all...]

Completed in 1375 milliseconds

<<11121314151617181920>>