Home
last modified time | relevance | path

Searched refs:pid (Results 26 – 50 of 117) sorted by path

12345

/plugin/combo/vendor/symfony/process/
H A DProcess.php334 $commandline .= 'pid=$!; echo $pid >&3; wait $pid; code=$?; echo $code >&3; exit $code';
360 $this->fallbackStatus['pid'] = (int) fgets($this->processPipes->pipes[3]);
500 return $this->isRunning() ? $this->processInformation['pid'] : null;
935 if (isset($this->fallbackStatus['pid'])) {
936 unset($this->fallbackStatus['pid']);
1500 if (null === $pid = $this->getPid()) {
1509 exec(sprintf('taskkill /F /T /PID %d 2>&1', $pid), $output, $exitCode);
1521 $ok = @posix_kill($pid,
[all...]
/plugin/data-au/_test/
H A Daction_handle.test.php45 $pid = $this->getTestPageId();
46 $this->assertFalse(!$pid);
62 $pid = $this->db->res2single($res);
63 $this->assertTrue(!$pid);
69 $pid = (int) $this->db->res2single($res);
70 return $pid;
/plugin/data-au/
H A Daction.php56 $pid = (int) $sqlite->res2single($res);
57 if(!$pid) return; // we have no dataau for this page
59 $sqlite->query('DELETE FROM dataau WHERE pid = ?',$pid);
60 $sqlite->query('DELETE FROM pages WHERE pid = ?',$pid);
/plugin/data-au/db/
H A Dupdate0001.sql1 CREATE TABLE dataau (eid INTEGER PRIMARY KEY, pid INTEGER, key, value); field
3 CREATE TABLE pages (pid INTEGER PRIMARY KEY, page, title); field
H A Dupdate0006.sql2 CREATE INDEX idx_pid ON dataau(pid);
/plugin/data-au/syntax/
H A Dentry.php237 $pid = (int) $sqlite->res2single($res);
240 if(!$pid) {
247 $sqlite->query("DELETE FROM DATA WHERE pid = ?", $pid);
254 $pid, $key, $v
259 $pid, $key, $val
/plugin/data/_test/
H A Daction_handle.test.php
/plugin/data/
H A Daction.php62 $pid = (int) $sqlite->queryValue('SELECT pid FROM pages WHERE page = ?', $id);
63 if (!$pid) return; // we have no data for this page
65 $sqlite->exec('DELETE FROM data WHERE pid = ?', $pid);
66 $sqlite->exec('DELETE FROM pages WHERE pid = ?', $pid);
/plugin/data/db/
H A Dupdate0001.sql4 pid INTEGER,
11 pid INTEGER PRIMARY KEY,
1 CREATE TABLE data (eid INTEGER PRIMARY KEY, pid INTEGER, key, value); global() field
3 CREATE TABLE pages (pid INTEGER PRIMARY KEY, page, title); global() field
H A Dupdate0006.sql2 CREATE INDEX idx_pid ON data (pid);
/plugin/data/syntax/
H A Dentry.php261 $res = $this->replaceQuery("SELECT pid FROM pages WHERE page = ?", $id);
264 $pid = (int)$all[0]['pid'];
265 if (!$pid) {
270 $sqlite->query("DELETE FROM DATA WHERE pid = ?", $pid);
276 "INSERT INTO DATA (pid, KEY, VALUE) VALUES (?, ?, ?)",
277 $pid,
283 "INSERT INTO DATA (pid, KEY, VALUE) VALUES (?, ?, ?)",
284 $pid,
[all...]
/plugin/datatables/assets/pdfmake/build/
H A Dpdfmake.min.js
/plugin/diagramsnet/lib/WEB-INF/lib/
H A Dehcache-3.8.1.jarMETA-INF/ META-INF/MANIFEST.MF LICENSE META-INF/maven/ META ...
/plugin/diagramsnet/lib/js/diagramly/
H A DMenus.js1673 var pid = el.getAttribute('parent');
1675 if (pid == null)
1688 if (childs[pid] == null)
1690 childs[pid] = [];
1693 childs[pid].push(el.id);
/plugin/diagramsnet/lib/resources/
H A Ddia_ca.txt599 quickStart=Vídeo d'inici ràpid
/plugin/dirtylittlehelper/mermaid/editor/docs/
H A D64.64.js.map1 … 'cd',\n 'clock',\n 'exec',\n 'glob',\n 'pid',\n 'pwd',\n…
/plugin/dw2pdf/
H A Drenderer.php44 $pid = sectionID($ID, $check);
46 $this->doc .= "<a name=\"{$pid}__\">";
87 $pid = sectionID($ID, $check);
88 $hid = $pid . '__' . $hid;
185 $pid = sectionID($ID, $check);
187 $this->doc .= '<a href="#' . $pid . '__' . $hash . '" title="' . $title . '" class="wikilink1">';
252 $pid = sectionID($link['title'], $check);
253 $link['url'] = "#" . $pid . '__' . $hash;
/plugin/editions/
H A Daction.php55 $pid = $event->data['pid'];
56 if ($this->_isEdition() && $pid) {
65 $pid = $event->data['pid'];
66 if ($this->_isEdition() && $pid) {
67 $event->data['doc'] .= $this->_getEditionLinks($pid) . '</div>';
104 function _getEditionLinks($pid) { argument
113 $eLink = wl($this->getConf('editionNamespace').':'.$edition.':'.noNS($ID)).'#'.$pid;
121 $editionLinks .= '<div id="load__'.$pid.'" class="editions_snippet JSpopup"></div>';
/plugin/elasticsearch/vendor/ezimuel/ringphp/
H A DMakefile13 @PID=$(shell ps axo pid,command \
/plugin/elasticsearch/vendor/patrickschur/language-detection/resources/fi/
H A Dfi.txt
/plugin/extendpage/db/
H A Dupdate0001.sql9 pid NOT NULL, field
12 PRIMARY KEY(pid, pattern_id)
/plugin/facebookalbum/
H A Dsyntax.php167 … $cover_query = 'SELECT pid, src FROM photo where pid in (SELECT cover_pid from #album_query)';
/plugin/fedauth/js/
H A Dadmin.js247 var pid = jQuery(elem).attr('name');
248 return pid.substring(pid.lastIndexOf('[')+1, pid.lastIndexOf(']'));
/plugin/findologicxmlexport/vendor/hoa/stream/Test/Integration/
H A DStream.php68 $pid = $outputs[0],
/plugin/gemini/
H A Dcli.php110 if (!function_exists('pcntl_fork') || ($pid = pcntl_fork()) == -1) {
111 $pid = -1;
115 if ($pid > 0) {
123 $this->handleGeminiConnection($pid, $conn, $peername);
130 * @param int $pid process ID, forked children are 0 and will exit after handling
135 protected function handleGeminiConnection($pid, $conn, $peername) argument
143 if ($pid === 0) exit;
194 if ($pid == 0) exit;

12345