Lines Matching refs:temp

997                 $temp = $this->nlist_helper($dir . '/' . $value, true, $relativeDir . $value . '/');
998 $temp = is_array($temp) ? $temp : [];
999 $result = array_merge($result, $temp);
1125 $temp = $this->realpath($dir . '/..') . '/.';
1127 $temp = $dir . '/' . $shortname;
1129 $this->update_stat_cache($temp, (object) ['lstat' => $attributes]);
1275 $temp = &$this->stat_cache;
1281 if (is_object($temp)) {
1282 $temp = [];
1284 if (!isset($temp[$dir])) {
1285 $temp[$dir] = [];
1288 if (is_object($temp[$dir]) && is_object($value)) {
1289 if (!isset($value->stat) && isset($temp[$dir]->stat)) {
1290 $value->stat = $temp[$dir]->stat;
1292 if (!isset($value->lstat) && isset($temp[$dir]->lstat)) {
1293 $value->lstat = $temp[$dir]->lstat;
1296 $temp[$dir] = $value;
1299 $temp = &$temp[$dir];
1314 $temp = &$this->stat_cache;
1317 if (!is_array($temp)) {
1321 unset($temp[$dir]);
1324 if (!isset($temp[$dir])) {
1327 $temp = &$temp[$dir];
1344 $temp = &$this->stat_cache;
1346 if (!is_array($temp)) {
1349 if (!isset($temp[$dir])) {
1352 $temp = &$temp[$dir];
1354 return $temp;
1671 $temp = $mode;
1673 $filename = $temp;
1798 $temp = $path . '/' . $filename;
1800 if (!$this->setstat_recursive($temp, $attr, $i)) {
1804 $packet = Strings::packSSH2('s', $temp);
1971 $temp = array_slice($dirs, 0, $i + 1);
1972 $temp = implode('/', $temp);
1973 $result = $this->mkdir_helper($temp, $mode);
2218 $temp = $dataCallback($sftp_packet_size);
2219 if (is_null($temp)) {
2223 … $temp = isset($fp) ? fread($fp, $sftp_packet_size) : substr($data, $sent, $sftp_packet_size);
2224 if ($temp === false || $temp === '') {
2230 …= pack('Na*N3a*', strlen($handle), $handle, $subtemp / 4294967296, $subtemp, strlen($temp), $temp);
2239 $sent += strlen($temp);
2452 $temp = substr($response, 4);
2453 $offset += strlen($temp);
2455 $content .= $temp;
2457 $local_file($temp);
2459 fputs($fp, $temp);
2464 $temp = null;
2604 $temp = $path . '/' . $filename;
2606 if (!$this->delete_recursive($temp, $i)) {
2610 $this->send_sftp_packet(NET_SFTP_REMOVE, Strings::packSSH2('s', $temp));
2611 $this->remove_from_stat_cache($temp);
3343 $temp = $this->requestBuffer[$request_id]['packet'];
3345 return $temp;
3356 $temp = $this->get_channel_packet(self::CHANNEL, true);
3357 if ($temp === true) {
3365 $this->packet_buffer .= $temp;
3383 $temp = $this->get_channel_packet(self::CHANNEL, true);
3384 if (is_bool($temp)) {
3389 $this->packet_buffer .= $temp;
3390 $tempLength -= strlen($temp);
3502 $temp = ['version' => $this->defaultVersion];
3504 $temp['extensions'] = $this->extensions['versions'];
3506 return $temp;