Home
last modified time | relevance | path

Searched refs:gid (Results 1 – 5 of 5) sorted by last modified time

/dokuwiki/vendor/splitbrain/php-archive/src/
H A DFileInfo.php26 protected $gid = 0; variable in splitbrain\\PHPArchive\\FileInfo
84 $file->setGid($stat['gid']);
148 return $this->gid;
152 * @param int $gid
154 public function setGid($gid) argument
156 $this->gid = $gid;
H A DTar.php523 * @param int $gid
530 protected function writeRawFileHeader($name, $uid, $gid, $perm, $size, $mtime, $typeflag = '') argument
554 $gid = sprintf("%6s ", decoct($gid));
559 $data_first = pack("a100a8a8a8a12A12", $name, $perm, $uid, $gid, $size, $mtime);
616 $return['gid'] = OctDec(trim($header['gid']));
655 $fileinfo->setGid($header['gid']);
/dokuwiki/conf/
H A Dmysql.conf.php.example13 * gid name
16 * uid gid
69 JOIN groups AS g ON g.gid=ug.gid
100 AND g.gid = ug.gid
124 LEFT JOIN groups AS g ON ug.gid=g.gid";
163 * %{gid} id of a group dataset
165 $conf['plugin']['authmysql']['addUserGroup']= "INSERT INTO usergroup (uid, gid)
[all...]
/dokuwiki/vendor/phpseclib/phpseclib/phpseclib/Net/
H A DSFTP.php942 // the file's uid / gid match the currently logged in user's uid / gid but how there's no easy
1643 * $gid should be an int for SFTPv3 and a string for SFTPv4+. Ideally the string
1651 * @param int|string $gid
1655 public function chgrp($filename, $gid, $recursive = false)
1658 pack('N3', NET_SFTP_ATTR_UIDGID, -1, $gid) :
1659 Strings::packSSH2('Nss', NET_SFTP_ATTR_OWNERGROUP, '', $gid);
2824 return $this->get_stat_cache_prop($path, 'gid');
3092 list($attr['uid'], $attr['gid']) = Strings::unpackSSH2('NN', $response);
1810 chgrp($filename, $gid, $recursive = false) global() argument
/dokuwiki/lib/plugins/authad/adLDAP/classes/
H A DadLDAPGroups.php580 * @param string $gid Group ID
584 public function getPrimaryGroup($gid, $usersid) argument
586 if ($gid === NULL || $usersid === NULL) { return false; }
589 $gsid = substr_replace($usersid, pack('V',$gid), strlen($usersid)-4,4);
610 * @param string $gid Group ID
613 public function cn($gid){ argument
614 if ($gid === NULL) { return false; }
624 if ($entries[$i]["primarygrouptoken"][0] == $gid) {