/aoo41x/main/sal/osl/unx/ |
H A D | process.c | 427 pid_t pid = -1; in ChildStatusProc() local 559 if (pid > 0) in ChildStatusProc() 570 if ((pid > 0) && (i == 0)) in ChildStatusProc() 575 pdata->m_pProcImpl->m_pid = pid; in ChildStatusProc() 607 child_pid = pid; in ChildStatusProc() 660 if (pid > 0) in ChildStatusProc() 1085 pid_t pid; /* pid */ member 1280 pid_t pid; in osl_getProcessInfo() local 1283 pid = getpid(); in osl_getProcessInfo() 1294 pInfo->Ident = pid; in osl_getProcessInfo() [all …]
|
H A D | system.c | 462 static pid_t pid = -1; variable 468 if (pid == -1) in savePid() 469 pid = __getpid(); in savePid() 474 if (pid == -1) in getpid() 477 return (pid); in getpid()
|
H A D | socket.c | 814 pid_t pid; in _osl_getDomainName() local 817 pid = fork(); in _osl_getDomainName() 818 if (pid == 0) in _osl_getDomainName() 834 else if (pid > 0) in _osl_getDomainName() 847 waitpid (pid, &nStatus, 0); in _osl_getDomainName()
|
/aoo41x/main/solenv/bin/ |
H A D | build.pl | 377 if ($pid) { # parent 1740 clear_from_child($pid); 1759 my $pid = 0; 1762 $pid = wait(); 1766 if ($pid > 0) { 1779 my $pid = shift; 1789 my $pid = shift; 1813 my $pid = 0; 1871 my $pid = undef; 1875 if ($pid = fork) { # parent [all …]
|
H A D | subsequenttests | 135 my $pid = fork(); 136 defined($pid) or die("$counter: $!"); 137 if ($pid == 0) { 148 $pids{$pid} = $testpath; 151 my $pid = wait(); 152 $pid != -1 or die($!); 153 my $testpath = delete($pids{$pid}); 154 defined($testpath) or die("unmatched PID $pid");
|
H A D | build_client.pl | 92 my $pid; 94 if ($pid = fork) { # parent 97 } elsif (defined $pid) { # child
|
/aoo41x/main/shell/source/win32/shlxthandler/columninfo/ |
H A D | columninfo.cxx | 138 psci->scid.pid = ColumnInfoTable[dwIndex].scid.pid; in GetColumnInfo() 163 if (IsEqualGUID (pscid->fmtid, FMTID_SummaryInformation) && pscid->pid == PIDSI_TITLE) in GetItemData() 170 else if (IsEqualGUID (pscid->fmtid, FMTID_SummaryInformation) && pscid->pid == PIDSI_AUTHOR) in GetItemData() 177 else if (IsEqualGUID (pscid->fmtid, FMTID_SummaryInformation) && pscid->pid == PIDSI_SUBJECT) in GetItemData() 184 else if (IsEqualGUID (pscid->fmtid, FMTID_SummaryInformation) && pscid->pid == PIDSI_KEYWORDS) in GetItemData() 191 else if (IsEqualGUID (pscid->fmtid, FMTID_SummaryInformation) && pscid->pid == PIDSI_COMMENTS) in GetItemData() 198 else if (IsEqualGUID (pscid->fmtid, FMTID_SummaryInformation) && pscid->pid == PIDSI_PAGECOUNT) in GetItemData()
|
/aoo41x/main/solenv/bin/modules/installer/ |
H A D | logger.pm | 240 my ($self, $relative_time, $log_id, $pid, $message, $force) = @_; 245 $message = &{$self->{'filter'}}($relative_time, $log_id, $pid, $message); 260 $line .= $pid . " : "; 278 push @{$self->{'lines'}}, [$relative_time, $log_id, $pid, $message, $force];
|
H A D | downloadsigner.pm | 167 my $pid = $$; # process id 169 my $helperdir = "unpackdir_" . $pid . $time;
|
/aoo41x/main/sal/osl/os2/ |
H A D | diagnose.c | 71 PID pid; in osl_trace__yd_os2() local 93 pid = pppib->pib_ulpid; in osl_trace__yd_os2() 97 fputs(_itoa( pid, szPID, 10 ), pFile ); in osl_trace__yd_os2()
|
H A D | socket.c | 821 pid_t pid; in _osl_getDomainName() 824 pid = fork(); in _osl_getDomainName() 825 if (pid == 0) in _osl_getDomainName() 841 else if (pid > 0) in _osl_getDomainName() 854 waitpid (pid, &nStatus, 0); in _osl_getDomainName()
|
/aoo41x/main/x11_extensions/inc/ |
H A D | renderproto.h | 261 Picture pid B32; 601 Picture pid B32; 611 Picture pid B32; 623 Picture pid B32; 637 Picture pid B32;
|
/aoo41x/main/migrationanalysis/src/msokill/ |
H A D | msokill.cpp | 134 DWORD pid; // Variable to hold the process ID. in KillAppFromWindow() local 136 dThread = GetWindowThreadProcessId(hWnd, &pid); in KillAppFromWindow() 139 hProcess = OpenProcess(SYNCHRONIZE | PROCESS_ALL_ACCESS, TRUE, pid); in KillAppFromWindow()
|
/aoo41x/main/soldep/bootstrp/ |
H A D | command.cxx | 440 pid_t pid; variable 442 if (( pid = fork()) < 0 ) 446 else if ( pid == 0 ) 454 if ( (nRet = waitpid( pid, NULL, 0 ) < 0) )
|
/aoo41x/test/testcommon/source/org/openoffice/test/ |
H A D | OpenOffice.java | 356 String pid = (String) proccessInfo.get("pid"); in getPerfData() local 357 if (pid == null) in getPerfData() 359 return SystemUtil.getProcessPerfData(pid); in getPerfData()
|
/aoo41x/main/sal/osl/all/ |
H A D | printtrace.cxx | 41 void printTrace(unsigned long pid, char const * format, std::va_list arguments) in printTrace() argument 45 buf, sizeof buf, "Trace %lu/%" SAL_PRIuUINT32 ": \"", pid, in printTrace()
|
/aoo41x/main/fpicker/source/win32/filepicker/ |
H A D | FileOpenDlg.cxx | 64 DWORD pid; in is_current_process_window() local 65 GetWindowThreadProcessId(hwnd, &pid); in is_current_process_window() 66 return (pid == GetCurrentProcessId()); in is_current_process_window()
|
H A D | VistaFilePickerImpl.cxx | 46 DWORD pid; in is_current_process_window() local 47 GetWindowThreadProcessId(hwnd, &pid); in is_current_process_window() 48 return (pid == GetCurrentProcessId()); in is_current_process_window()
|
/aoo41x/main/shell/source/unix/misc/ |
H A D | open-url.c | 90 PID pid; in main() local 155 rc = DosStartSession( &SData, &ulSID, &pid); in main()
|
H A D | senddoc.c | 90 PID pid; in main() local 187 rc = DosStartSession( &SData, &ulSID, &pid); in main()
|
/aoo41x/test/testcommon/source/org/openoffice/test/common/ |
H A D | SystemUtil.java | 352 String pid = (String) p.get("pid"); in killProcess() local 355 exec(new String[] { "taskkill", "/F", "/PID", pid }, null, null, null, null); in killProcess() 357 exec(new String[] { "kill", "-9", pid }, null, null, null, null); in killProcess()
|
/aoo41x/main/vcl/unx/headless/ |
H A D | svpprn.cxx | 200 int pid, fd[2]; in passFileToCommandLine() local 204 if( ( pid = fork() ) > 0 ) in passFileToCommandLine() 221 waitpid( pid, &status, 0 ); in passFileToCommandLine() 225 else if( ! pid ) in passFileToCommandLine()
|
/aoo41x/main/extensions/source/ole/ |
H A D | unoobjw.hxx | 145 /* [out] */ DISPID __RPC_FAR *pid); 175 /* [out] */ DISPID __RPC_FAR *pid);
|
/aoo41x/main/crashrep/source/unx/ |
H A D | main.cxx | 602 long pid = 0; in setup_commandline_arguments() local 610 pid = strtol( argv[n], NULL, 0 ); in setup_commandline_arguments() 666 return pid; in setup_commandline_arguments()
|
/aoo41x/main/vcl/unx/generic/gdi/ |
H A D | salprnpsp.cxx | 252 int pid, fd[2]; in passFileToCommandLine() local 256 if( ( pid = fork() ) > 0 ) in passFileToCommandLine() 273 waitpid( pid, &status, 0 ); in passFileToCommandLine() 277 else if( ! pid ) in passFileToCommandLine()
|