Home
last modified time | relevance | path

Searched refs:mode (Results 151 – 175 of 2447) sorted by path

12345678910>>...98

/plugin/authgooglesheets/vendor/google/apiclient/
H A DREADME.md12 …e. However, the libraries are considered complete and are in maintenance mode. This means that we…
/plugin/authgooglesheets/vendor/guzzlehttp/guzzle/
H A DCHANGELOG.md941 * Bug fix: Added 'wb' as a valid write mode for streams
/plugin/authgooglesheets/vendor/guzzlehttp/psr7/
H A DREADME.md523 `public static function tryFopen(string $filename, string $mode): resource`
/plugin/authgooglesheets/vendor/guzzlehttp/psr7/src/
H A DLazyOpenStream.php21 private $mode; variable in GuzzleHttp\\Psr7\\LazyOpenStream
25 * @param string $mode fopen mode to use when opening the stream
27 public function __construct($filename, $mode) argument
30 $this->mode = $mode;
40 return Utils::streamFor(Utils::tryFopen($this->filename, $this->mode));
H A DStreamWrapper.php21 private $mode; variable in GuzzleHttp\\Psr7\\StreamWrapper
37 $mode = $stream->isWritable() ? 'r+' : 'r';
39 $mode = 'w';
45 return fopen('guzzle://stream', $mode, null, self::createStreamContext($stream));
72 public function stream_open($path, $mode, $options, &$opened_path) argument
80 $this->mode = $mode;
133 'mode' => $modeMap[$this->mode],
H A DUtils.php362 * @param string $mode Mode used to open the file
368 public static function tryFopen($filename, $mode) argument
371 set_error_handler(function () use ($filename, $mode, &$ex) {
375 $mode,
383 $handle = fopen($filename, $mode);
388 $mode,
H A Dfunctions.php170 * @param string $mode Mode used to open the file
178 function try_fopen($filename, $mode) argument
180 return Utils::tryFopen($filename, $mode);
/plugin/authgooglesheets/vendor/monolog/monolog/
H A DCHANGELOG.md424 * Added $filePermissions to tweak file mode on StreamHandler and RotatingFileHandler
/plugin/authgooglesheets/vendor/monolog/monolog/src/Monolog/Handler/
H A DRedisHandler.php79 $mode = defined('\Redis::MULTI') ? \Redis::MULTI : 1;
80 $this->redisClient->multi($mode)
/plugin/authgooglesheets/vendor/phpseclib/phpseclib/phpseclib/Crypt/
H A DBlowfish.php291 * @param string $mode
295 public function __construct($mode) argument
297 parent::__construct($mode);
299 if ($this->mode == self::MODE_STREAM) {
H A DDES.php589 * @param string $mode
593 public function __construct($mode) argument
595 parent::__construct($mode);
597 if ($this->mode == self::MODE_STREAM) {
686 * @param int $mode
689 private function processBlock($block, $mode) argument
708 $keys = $this->keys[$mode];
H A DRC2.php271 * @param string $mode
275 public function __construct($mode) argument
277 parent::__construct($mode);
279 if ($this->mode == self::MODE_STREAM) {
H A DRC4.php275 * @param int $mode
278 private function crypt($text, $mode) argument
284 $stream = &$this->stream[$mode];
H A DRijndael.php174 * @param string $mode
178 public function __construct($mode) argument
180 parent::__construct($mode);
182 if ($this->mode == self::MODE_STREAM) {
293 $this->mode == self::MODE_GCM &&
302 return $this->mode == self::MODE_GCM &&
H A DSalsa20.php313 * @param int $mode
316 private function crypt($text, $mode) argument
339 if ($mode == self::ENCRYPT) {
H A DTripleDES.php141 * @param string $mode
144 public function __construct($mode) argument
146 switch (strtolower($mode)) {
166 $mode = 'cbc';
170 parent::__construct($mode);
172 if ($this->mode == self::MODE_STREAM) {
192 $mode = $this->openssl_translate_mode();
193 $this->cipher_name_openssl = $mode == 'ecb' ? 'des-ede3' : 'des-ede3-' . $mode;
H A DTwofish.php377 * @param string $mode
381 public function __construct($mode) argument
383 parent::__construct($mode);
385 if ($this->mode == self::MODE_STREAM) {
/plugin/authgooglesheets/vendor/phpseclib/phpseclib/phpseclib/Crypt/Common/Formats/Keys/
H A DPKCS1.php60 * @param string $mode
64 private static function getEncryptionMode($mode) argument
66 switch ($mode) {
72 return $mode;
/plugin/authgooglesheets/vendor/phpseclib/phpseclib/phpseclib/Crypt/Common/
H A DSymmetricKey.php223 protected $mode; variable in phpseclib3\\Crypt\\Common\\SymmetricKey
658 * @param string $mode
664 $mode = strtolower($mode);
671 $mode = self::MODE_MAP[$mode];
674 switch ($mode) {
700 $this->mode = $mode;
829 return $this->mode != self::MODE_GCM && $this->mode != self::MODE_ECB;
1357 switch ($this->mode) {
1732 switch ($this->mode) {
2115 switch ($this->mode) {
[all …]
/plugin/authgooglesheets/vendor/phpseclib/phpseclib/phpseclib/File/
H A DX509.php470 * @param int $mode
474 public function loadX509($cert, $mode = self::FORMAT_AUTO_DETECT) argument
493 if ($mode != self::FORMAT_DER) {
495 if ($mode == self::FORMAT_PEM && $cert == $newcert) {
2224 * @param int $mode
2228 public function loadCSR($csr, $mode = self::FORMAT_AUTO_DETECT) argument
2245 if ($mode != self::FORMAT_DER) {
2247 if ($mode == self::FORMAT_PEM && $csr == $newcsr) {
2448 * @param int $mode
2460 if ($mode != self::FORMAT_DER) {
[all …]
/plugin/authgooglesheets/vendor/phpseclib/phpseclib/phpseclib/Net/
H A DSFTP.php1661 * @param int $mode
1671 $temp = $mode;
1672 $mode = $filename;
1951 * @param int $mode
1985 * @param int $mode
2006 if ($mode !== -1) {
2007 $this->chmod($mode, $dir);
2096 * @param int $mode
2175 $mode = $mode & ~self::SOURCE_LOCAL_FILE;
3188 * @param int $mode
[all …]
H A DSSH2.php3104 * @param int $mode
3109 public function read($expect = '', $mode = self::READ_SIMPLE) argument
3124 if ($mode == self::READ_NEXT) {
3130 if ($mode == self::READ_REGEX) {
/plugin/authgooglesheets/vendor/phpseclib/phpseclib/phpseclib/Net/SFTP/
H A DStream.php64 private $mode; variable in phpseclib3\\Net\\SFTP\\Stream
254 * @param string $mode
260 private function _stream_open($path, $mode, $options, &$opened_path) argument
270 $this->mode = preg_replace('#[bt]$#', '', $mode);
274 if ($this->mode[0] == 'r') {
281 switch ($this->mode[0]) {
290 $this->pos = $this->mode[0] != 'a' ? 0 : $this->size;
304 switch ($this->mode) {
346 switch ($this->mode) {
607 * @param int $mode
[all …]
/plugin/authhiorgserver/
H A DLICENSE313 when it starts in an interactive mode:
/plugin/authlemonldap/
H A DLICENSE313 when it starts in an interactive mode:

12345678910>>...98