Lines Matching refs:Strings

38 use phpseclib3\Common\Functions\Strings;  alias
549 $packet = Strings::packSSH2(
567 $packet = Strings::packSSH2(
587 $packet = Strings::packSSH2(
618 list($this->defaultVersion) = Strings::unpackSSH2('N', $response);
620 list($key, $value) = Strings::unpackSSH2('ss', $response);
678 $packet = Strings::packSSH2('ss', 'version-select', "$ver");
685 list($status) = Strings::unpackSSH2('N', $response);
816 list($status) = Strings::unpackSSH2('N', $response);
822 list($message) = Strings::unpackSSH2('s', $response);
856 $this->send_sftp_packet(NET_SFTP_REALPATH, Strings::packSSH2('s', $path));
864 list(, $filename) = Strings::unpackSSH2('Ns', $response);
934 $this->send_sftp_packet(NET_SFTP_OPENDIR, Strings::packSSH2('s', $dir));
1073 $this->send_sftp_packet(NET_SFTP_OPENDIR, Strings::packSSH2('s', $dir));
1099 $this->send_sftp_packet(NET_SFTP_READDIR, Strings::packSSH2('s', $handle));
1104 list($count) = Strings::unpackSSH2('N', $response);
1106 list($shortname) = Strings::unpackSSH2('s', $response);
1110 list($longname) = Strings::unpackSSH2('s', $response);
1136 list($status) = Strings::unpackSSH2('N', $response);
1494 $packet = Strings::packSSH2('s', $filename);
1520 $attr = Strings::packSSH2('NQ', NET_SFTP_ATTR_SIZE, $new_size);
1557Strings::packSSH2('NQ2', NET_SFTP_ATTR_ACCESSTIME | NET_SFTP_ATTR_MODIFYTIME, $atime, $time);
1559 $packet = Strings::packSSH2('s', $filename);
1625 Strings::packSSH2('Nss', NET_SFTP_ATTR_OWNERGROUP, $uid, '');
1650 Strings::packSSH2('Nss', NET_SFTP_ATTR_OWNERGROUP, '', $gid);
1735 $packet = Strings::packSSH2('s', $filename);
1754 list($status) = Strings::unpackSSH2('N', $response);
1804 $packet = Strings::packSSH2('s', $temp);
1821 $packet = Strings::packSSH2('s', $path);
1855 $this->send_sftp_packet(NET_SFTP_READLINK, Strings::packSSH2('s', $link));
1869 list($count) = Strings::unpackSSH2('N', $response);
1875 list($filename) = Strings::unpackSSH2('s', $response);
1909 $packet = Strings::packSSH2('ssC', $link, $target, 1);
1927 Strings::packSSH2('ss', $target, $link) :
1928 Strings::packSSH2('ss', $link, $target);
1938 list($status) = Strings::unpackSSH2('N', $response);
1992 $this->send_sftp_packet(NET_SFTP_MKDIR, Strings::packSSH2('s', $dir) . "\0\0\0\0");
2000 list($status) = Strings::unpackSSH2('N', $response);
2032 $this->send_sftp_packet(NET_SFTP_RMDIR, Strings::packSSH2('s', $dir));
2040 list($status) = Strings::unpackSSH2('N', $response);
2145 $packet = Strings::packSSH2('s', $remote_file);
2274Strings::packSSH2('NQ2', NET_SFTP_ATTR_ACCESSTIME | NET_SFTP_ATTR_MODIFYTIME, $stat['atime'], $sta…
2304 list($status) = Strings::unpackSSH2('N', $response);
2334 list($status) = Strings::unpackSSH2('N', $response);
2372 $packet = Strings::packSSH2('s', $remote_file);
2419 … $packet = Strings::packSSH2('sN3', $handle, $tempoffset / 4294967296, $tempoffset, $packet_size);
2556 list($status) = Strings::unpackSSH2('N', $response);
2610 $this->send_sftp_packet(NET_SFTP_REMOVE, Strings::packSSH2('s', $temp));
2624 $this->send_sftp_packet(NET_SFTP_RMDIR, Strings::packSSH2('s', $path));
2727 $packet = Strings::packSSH2('sNN', $this->realpath($path), NET_SFTP_OPEN_READ, 0);
2755 $packet = Strings::packSSH2('sNN', $this->realpath($path), NET_SFTP_OPEN_WRITE, 0);
2978 $packet = Strings::packSSH2('ss', $oldname, $newname);
3000 list($status) = Strings::unpackSSH2('N', $response);
3029 list($attr[$key]) = Strings::unpackSSH2('Q', $response);
3031 list($attr[$key . '-nseconds']) = Strings::unpackSSH2('N', $response);
3048 list($flags, $attr['type']) = Strings::unpackSSH2('NC', $response);
3050 list($flags) = Strings::unpackSSH2('N', $response);
3092 list($attr['size']) = Strings::unpackSSH2('Q', $response);
3095 list($attr['uid'], $attr['gid']) = Strings::unpackSSH2('NN', $response);
3098 list($attr['mode']) = Strings::unpackSSH2('N', $response);
3109 list($attr['atime'], $attr['mtime']) = Strings::unpackSSH2('NN', $response);
3121 list($count) = Strings::unpackSSH2('N', $response);
3123 list($type, $flag, $mask, $who) = Strings::unpackSSH2('N3s', $result);
3127 list($attr['owner'], $attr['$group']) = Strings::unpackSSH2('ss', $response);
3137 list($attrib_bits, $attrib_bits_valid) = Strings::unpackSSH2('N2', $response);
3146 list($attr['allocation-size']) = Strings::unpackSSH2('Q', $response);
3152 list($text_hint) = Strings::unpackSSH2('C', $response);
3157 list($attr['mime-type']) = Strings::unpackSSH2('s', $response);
3161 list($attr['link-count']) = Strings::unpackSSH2('N', $response);
3165 list($attr['untranslated-name']) = Strings::unpackSSH2('s', $response);
3173 list($count) = Strings::unpackSSH2('N', $response);
3175 list($key, $value) = Strings::unpackSSH2('ss', $response);
3370 extract(unpack('Nlength', Strings::shift($this->packet_buffer, 4)));
3395 $this->packet_type = ord(Strings::shift($this->packet_buffer));
3398 … extract(unpack('Npacket_id', Strings::shift($this->packet_buffer, 4))); // remove the request id
3404 $packet = Strings::shift($this->packet_buffer, $length);