Home
last modified time | relevance | path

Searched refs:data (Results 126 – 150 of 161) sorted by path

1234567

/dokuwiki/vendor/phpseclib/phpseclib/phpseclib/File/
H A DX509.php633 foreach ($this->extensionValues as $id => $data) {
634 extract($data);
1130 $data = '';
1161 $data .= $temp;
1170 return $data;
1749 $v = array_pop($v); // Always strip data type.
1935 $value = array_pop($value); // Always strip data type.
/dokuwiki/vendor/phpseclib/phpseclib/phpseclib/Net/
H A DSCP.php
H A DSFTP.php57 * Reads data from a local file.
63 * Reads data from a string.
70 * Reads data from callback:
2060 * By default, \phpseclib3\Net\SFTP::put() does not read from the local filesystem. $data is dumped directly into $remote_file.
2061 * So, for example, if you set $data to 'filename.ext' and then do \phpseclib3\Net\SFTP::get(), you will get a file, twelve bytes
2068 * Setting $mode to self::SOURCE_CALLBACK will use $data as callback function, which gets only one parameter -- number
2069 * of bytes to return, and returns a string if there is some data or null if there is no more data
2071 * If $data is a resource then it'll be used as a resource instead.
2096 * @param string|resource $data
2291 put($remote_file, $data, $mode = self SOURCE_STRING, $start = 1, $local_start = 1, $progressCallback = null) global() argument
3595 _send_sftp_packet($type, $data, $request_id = 1) global() argument
[all...]
H A DSSH1.php
H A DSSH2.php172 * Returns whenever a data packet is received.
174 * Some data packets may only contain a single character so it may be necessary
1369 "The server MAY send other lines of data before sending the version
1374 $data = '';
1375 while (!feof($this->fsock) && !preg_match('#(.*)^(SSH-(\d\.\d+).*)#ms', $data, $matches)) {
1417 $data .= $line;
1434 $this->errors[] = $data;
1798 $data = pack('CNa*', constant($clientKexInitMessage), strlen($ourPublicBytes), $ourPublicBytes);
1800 $this->send_binary_packet($data);
2878 // "maximum size of an individual data packe
4213 _send_binary_packet($data, $logged = null) global() argument
4366 _send_channel_packet($client_channel, $data) global() argument
[all...]
/dokuwiki/vendor/phpseclib/phpseclib/phpseclib/Net/SFTP/
H A DStream.php322 * @param string $data
325 private function _stream_write($data)
332 $result = $this->sftp->put($this->path, $data, SFTP::SOURCE_STRING, $this->pos);
339 call_user_func($this->notification, STREAM_NOTIFY_PROGRESS, STREAM_NOTIFY_SEVERITY_INFO, '', 0, strlen($data), strlen($data));
345 $this->pos += strlen($data);
350 return strlen($data);
344 _stream_write($data) global() argument
/dokuwiki/vendor/phpseclib/phpseclib/phpseclib/System/SSH/
H A DAgent.php94 * agent data arriving on SSH data channel destined
103 * to arrive for the agent socket on the SSH data
251 * Forward data to SSH Agent and return data reply
253 * @param string $data
257 public function forwardData($data)
260 $this->socket_buffer .= $data;
261 $this->expected_bytes -= strlen($data);
263 $agent_data_bytes = current(unpack('N', $data));
322 _forward_data($data) global() argument
[all...]
/dokuwiki/vendor/simplepie/simplepie/
H A DCHANGELOG.md223 * Stop passing compressed data through `trim()`. [#455](https://github.com/simplepie/simplepie/pull/455)
248 * Serialized data is now used for hashing in `SimplePie_Item->get_id()`. [#348](https://github.com/simplepie/simplepie/pull/348)
278 * Fixed the datatype for `items.data` to be more appropriate in when using MySQL cache. [#302](https://github.com/simplepie/simplepie/pull/302)
/dokuwiki/vendor/simplepie/simplepie/idn/
H A DLICENCE124 A "library" means a collection of software functions and/or data
126 (which use some of those functions and data) to form executables.
176 table of data to be supplied by an application program that uses
259 If such an object file uses only numerical parameters, data
319 Library" must include any data and utility programs needed for
H A DReadMe.txt48 npdata.ser - Serialized data for NamePrep
/dokuwiki/vendor/simplepie/simplepie/library/SimplePie/Decode/HTML/
H A DEntities.php63 public $data = ''; variable in SimplePie_Decode_HTML_Entities
82 * Create an instance of the class with the input data
85 * @param string $data Input data
87 public function __construct($data) argument
89 $this->data = $data;
93 * Parse the input data
96 * @return string Output data
100 while (($this->position = strpos($this->data, '
[all...]
/dokuwiki/vendor/simplepie/simplepie/src/Cache/
H A DBase.php79 * @param Base::TYPE_FEED|Base::TYPE_IMAGE $type Either TYPE_FEED for SimplePie data, or TYPE_IMAGE for image data
84 * Save data to the cache
86 * @param array|\SimplePie\SimplePie $data Data to store in the cache. If passed a SimplePie object, only cache the $data property
89 public function save($data); argument
92 * Retrieve the data saved to the cache
94 * @return array Data for SimplePie::$data
H A DBaseDataCache.php87 $data = $this->cache->load();
89 if (! is_array($data)) {
93 // ignore data if internal cache expiration time is not set
94 if (! array_key_exists('__cache_expiration_time', $data)) {
98 // ignore data if internal cache expiration time is expired
99 if ($data['__cache_expiration_time'] < time()) {
104 unset($data['__cache_expiration_time']);
106 return $data;
110 * Persists data in the cache, uniquely referenced by a key with an optional expiration TTL time.
H A DDB.php60 * Converts a given {@see SimplePie} object into data to be stored
62 * @param \SimplePie\SimplePie $data
63 * @return array First item is the serialized data for storage, second item is the unique ID for this item
65 protected static function prepare_simplepie_object_for_cache($data) argument
67 $items = $data->get_items();
82 if (isset($data->data['child'][\SimplePie\SimplePie::NAMESPACE_ATOM_10]['feed'][0])) {
83 $channel =& $data->data['child'][\SimplePie\SimplePie::NAMESPACE_ATOM_10]['feed'][0];
84 } elseif (isset($data
[all...]
H A DFile.php49 * Caches data to the filesystem
91 * @param Base::TYPE_FEED|Base::TYPE_IMAGE $type Either TYPE_FEED for SimplePie data, or TYPE_IMAGE for image data
102 * Save data to the cache
104 * @param array|\SimplePie\SimplePie $data Data to store in the cache. If passed a SimplePie object, only cache the $data property
107 public function save($data) argument
110 if ($data instanceof \SimplePie\SimplePie) {
111 $data = $data
[all...]
H A DMemcache.php51 * Caches data to memcache
57 * prefixed with `sp_` and data will expire after 3600 seconds
92 * @param Base::TYPE_FEED|Base::TYPE_IMAGE $type Either TYPE_FEED for SimplePie data, or TYPE_IMAGE for image data
113 * Save data to the cache
115 * @param array|\SimplePie\SimplePie $data Data to store in the cache. If passed a SimplePie object, only cache the $data property
118 public function save($data) argument
120 if ($data instanceof \SimplePie\SimplePie) {
121 $data
[all...]
H A DMemcached.php51 * Caches data to memcached
57 * prefixed with `sp_` and data will expire after 3600 seconds
89 * @param Base::TYPE_FEED|Base::TYPE_IMAGE $type Either TYPE_FEED for SimplePie data, or TYPE_IMAGE for image data
110 * Save data to the cache
111 * @param array|\SimplePie\SimplePie $data Data to store in the cache. If passed a SimplePie object, only cache the $data property
114 public function save($data) argument
116 if ($data instanceof \SimplePie\SimplePie) {
117 $data
170 setData($data) global() argument
[all...]
H A DMySQL.php49 * Caches data to a MySQL database
89 * @param Base::TYPE_FEED|Base::TYPE_IMAGE $type Either TYPE_FEED for SimplePie data, or TYPE_IMAGE for image data
130 $query = $this->mysql->exec('CREATE TABLE `' . $this->options['extras']['prefix'] . 'cache_data` (`id` TEXT CHARACTER SET utf8 NOT NULL, `items` SMALLINT NOT NULL DEFAULT 0, `data` BLOB NOT NULL, `mtime` INT UNSIGNED NOT NULL, UNIQUE (`id`(125)))');
139 $query = $this->mysql->exec('CREATE TABLE `' . $this->options['extras']['prefix'] . 'items` (`feed_id` TEXT CHARACTER SET utf8 NOT NULL, `id` TEXT CHARACTER SET utf8 NOT NULL, `data` MEDIUMBLOB NOT NULL, `posted` INT UNSIGNED NOT NULL, INDEX `feed_id` (`feed_id`(125)))');
149 * Save data to the cache
151 * @param array|\SimplePie\SimplePie $data Data to store in the cache. If passed a SimplePie object, only cache the $data property
154 public function save($data) argument
170 if ($data instanceo
[all...]
H A DPsr16.php52 * Caches data into a PSR-16 cache implementation
95 $data = $this->cache->get($key, $default);
97 if (! is_array($data) || $data === $default) {
101 return $data;
105 * Persists data in the cache, uniquely referenced by a key with an optional expiration TTL time.
H A DRedis.php51 * Caches data to redis
57 * prefixed with `simple_primary-` and data will expire after 3600 seconds
92 * @param Base::TYPE_FEED|Base::TYPE_IMAGE $type Either TYPE_FEED for SimplePie data, or TYPE_IMAGE for image data
129 * Save data to the cache
131 * @param array|\SimplePie\SimplePie $data Data to store in the cache. If passed a SimplePie object, only cache the $data property
134 public function save($data) argument
136 if ($data instanceof \SimplePie\SimplePie) {
137 $data
[all...]
/dokuwiki/vendor/simplepie/simplepie/src/
H A DFile.php217 $this->body = trim($decoder->data);
H A DGzdecode.php49 * Decode 'gzip' encoded HTTP data
58 * Compressed data
62 * @see gzdecode::$data
67 * Size of compressed data
99 * Uncompressed data
105 public $data; variable in SimplePie\\Gzdecode
191 * @param string $data
193 public function __construct($data) argument
195 $this->compressed_data = $data;
196 $this->compressed_size = strlen($data);
[all...]
H A DItem.php49 * Manages all item-related data
69 * Raw data
74 public $data = []; variable in SimplePie\\Item
91 * @param array $data Raw data
93 public function __construct($feed, $data) argument
96 $this->data = $data;
119 return md5(serialize($this->data));
133 * Get data fo
184 sanitize($data, $type, $base = '') global() argument
[all...]
H A DMisc.php124 $return[$i]['attribs'][strtolower($attribs[$j][1])]['data'] = Misc::entities_decode(end($attribs[$j]));
137 $full .= " $key=\"" . htmlspecialchars($value['data'], ENT_COMPAT, 'UTF-8') . '"';
278 * @param string $data Raw data in $input encoding
279 * @param string $input Encoding of $data
283 public static function change_encoding($data, $input, $output) argument
296 $data = substr($data, 0, strcspn($data, $non_ascii_octects));
301 return Misc::windows_1252_to_utf8($data);
320 change_encoding_mbstring($data, $input, $output) global() argument
352 change_encoding_iconv($data, $input, $output) global() argument
363 change_encoding_uconverter($data, $input, $output) global() argument
1711 strip_comments($data) global() argument
1738 entities_decode($data) global() argument
1961 xml_encoding($data, $registry) global() argument
[all...]
/dokuwiki/vendor/simplepie/simplepie/src/HTTP/
H A DParser.php127 * Input data
131 protected $data = ''; variable in SimplePie\\HTTP\\Parser
134 * Input data length (to avoid calling strlen() everytime this is needed)
162 * Create an instance of the class with the input data
164 * @param string $data Input data
166 public function __construct($data) argument
168 $this->data = $data;
169 $this->data_length = strlen($this->data);
[all...]

1234567