Home
last modified time | relevance | path

Searched refs:arrResult (Results 1 – 12 of 12) sorted by relevance

/dports/www/dddbl/dddbl2/handler/
H A Dregister_result_handler.inc.php13 $arrResult = $objQueue->getState()->get('PDOStatement')->fetch();
14 $objQueue->getState()->update(array('result' => (empty($arrResult)) ? null : reset($arrResult)));
26 $arrResult = $objQueue->getState()->get('PDOStatement')->fetch();
27 $objQueue->getState()->update(array('result' => (empty($arrResult)) ? null : $arrResult));
40 $objQueue->getState()->update(array('result' => (empty($arrResult)) ? array() : $arrResult));
54 $arrResult = array();
57 array_push($arrResult, current($arrRow));
59 $objQueue->getState()->update(array('result' => $arrResult));
73 $arrResult = array();
80 $arrResult[$arrRow[$strGroupColumn]][] = $arrRow;
[all …]
/dports/www/phpgroupware/phpgroupware-0.9.16.017/phpsysinfo/includes/
H A Dcommon_functions.php114 $arrResult['direction'] = "ltr";
115 $arrResult['left'] = "left";
116 $arrResult['right'] = "right";
118 $arrResult['direction'] = "rtl";
119 $arrResult['left'] = "right";
120 $arrResult['right'] = "left";
123 return $arrResult;
332 $arrResult = array();
338 $arrResult[] = "(" . $intValue . "x) " . $strKey;
340 $arrResult[] = $strKey;
[all …]
/dports/net-mgmt/nagiosql/nagiosql-365d4e0b5edc623b12ea96e8002e8ac66aad6aac/scripts/
H A Ddo_config.php113 $intRet3 = $myConfigClass->sendSSHCommand($strBinary.' -v '.$strConffile, $arrResult);
169 $intRet2 = $myConfigClass->sendSSHCommand($strCommand, $arrResult);
275 } elseif (isset($arrResult) && is_array($arrResult)) {
279 foreach ($arrResult as $elem) {
/dports/net-mgmt/nagiosql/nagiosql-365d4e0b5edc623b12ea96e8002e8ac66aad6aac/admin/
H A Dverify.php343 … $intResult = $myConfigClass->sendSSHCommand($strBinary.' -v '.$strConffile, $arrResult, 15000);
344 if (!is_array($arrResult) || ($arrResult == false)) {
436 … $myConfigClass->sendSSHCommand('echo "'.$strCommandString.'" >> '.$strCommandfile, $arrResult);
518 } elseif (isset($arrResult) && is_array($arrResult)) {
521 foreach ($arrResult as $elem) {
H A Dsupport.php483 $myConfigClass->sendSSHCommand($strBinary.' -V', $arrResult);
484 if (!is_array($arrResult) || ($arrResult == false)) {
/dports/www/phpsysinfo/phpsysinfo-3.3.4/includes/
H A Dclass.Parser.inc.php86 $arrResult = array();
241 $arrResult[] = $dev;
287 $arrResult[] = $dev;
294 return $arrResult;
/dports/www/phpsysinfo/phpsysinfo-3.3.4/includes/os/
H A Dclass.QNX.inc.php162 $arrResult = Parser::df("-P 2>/dev/null");
163 foreach ($arrResult as $dev) {
H A Dclass.Android.inc.php164 $arrResult = Parser::df("-P 2>/dev/null", false);
165 foreach ($arrResult as $dev) {
H A Dclass.Minix.inc.php271 $arrResult = Parser::df("-P 2>/dev/null");
272 foreach ($arrResult as $dev) {
H A Dclass.BSDCommon.inc.php642 $arrResult = Parser::df();
643 foreach ($arrResult as $dev) {
H A Dclass.Linux.inc.php1323 $arrResult = Parser::df("-P $df_args 2>/dev/null");
1325 $arrResult = Parser::df("-P 2>/dev/null");
1327 foreach ($arrResult as $dev) {
/dports/net-mgmt/nagiosql/nagiosql-365d4e0b5edc623b12ea96e8002e8ac66aad6aac/functions/
H A DNagConfigClass.php275 $arrResult = array();
276 if (($intReturn == 0) && ($this->sendSSHCommand($strCommand, $arrResult) == 0) &&
277 isset($arrResult[0]) && ($arrResult[0] == $strFilePath)) {
471 * @param array $arrResult Output as array (by reference)
475 public function sendSSHCommand($strCommand, &$arrResult, $intLines = 100) argument
496 $arrResult[] = $strLine;
642 $arrResult = array();
646 if (($intReturn == 0) && ($this->sendSSHCommand($strCommand, $arrResult) == 0)) {
647 if (isset($arrResult[0]) && $arrResult[0] == $strSourceFile) {
725 if (($intReturn == 0) && ($this->sendSSHCommand('ls '.$strFileName, $arrResult) == 0)) {
[all …]