Home
last modified time | relevance | path

Searched refs:owner (Results 1 – 25 of 28) sorted by relevance

12

/PHP-7.4/ext/standard/tests/dir/
H A Dscandir_variation7.phpt29 /*1*/ 0477, // owner has read only, other and group has rwx
30 0677, // owner has rw only, other and group has rwx
35 /*5*/ 0400, // owner has read only, group and others have no permission
36 0600, // owner has rw only, group and others have no permission
38 /*7*/ 0470, // owner has read only, group has rwx & others have no permission
39 0407, // owner has read only, other has rwx & group has no permission
41 /*9*/ 0670, // owner has rw only, group has rwx & others have no permission
42 /*10*/ 0607 // owner has rw only, group has no permission and others have rwx
H A Dopendir_variation7.phpt30 /*1*/ 0477, // owner has read only, other and group has rwx
31 0677, // owner has rw only, other and group has rwx
36 /*5*/ 0400, // owner has read only, group and others have no permission
37 0600, // owner has rw only, group and others have no permission
39 /*7*/ 0470, // owner has read only, group has rwx & others have no permission
40 0407, // owner has read only, other has rwx & group has no permission
42 /*9*/ 0670, // owner has rw only, group has rwx & others have no permission
43 /*10*/ 0607 // owner has rw only, group has no permission and others have rwx
H A Dreaddir_variation5.phpt30 /*1*/ 0477, // owner has read only, other and group has rwx
31 0677, // owner has rw only, other and group has rwx
36 /*5*/ 0400, // owner has read only, group and others have no permission
37 0600, // owner has rw only, group and others have no permission
39 /*7*/ 0470, // owner has read only, group has rwx & others have no permission
40 0407, // owner has read only, other has rwx & group has no permission
42 /*9*/ 0670, // owner has rw only, group has rwx & others have no permission
43 /*10*/ 0607 // owner has rw only, group has no permission and others have rwx
H A Ddir_variation3.phpt32 /*1*/ 0477, // owner has read only, other and group has rwx
33 0677, // owner has rw only, other and group has rwx
38 /*5*/ 0400, // owner has read only, group and others have no permission
39 0600, // owner has rw only, group and others have no permission
41 /*7*/ 0470, // owner has read only, group has rwx & others have no permission
42 0407, // owner has read only, other has rwx & group has no permission
44 /*9*/ 0670, // owner has rw only, group has rwx & others have no permission
45 /*10*/ 0607 // owner has rw only, group has no permission and others have rwx
/PHP-7.4/ext/xsl/tests/53965/
H A Dcollection.xsl5 <xsl:param name="owner" select="'Nicolas Eliaszewicz'"/> parameter
8 Hey! Welcome to <xsl:value-of select="$owner"/>'s sweet CD collection!
/PHP-7.4/ext/standard/tests/file/
H A Dfileowner_basic.phpt6 * Description: Returns the user ID of the owner of the file, or
12 echo "-- Testing with the file or directory created by owner --\n";
42 -- Testing with the file or directory created by owner --
H A Dfilegroup_basic.phpt17 echo "-- Testing with the file or directory created by owner --\n";
55 -- Testing with the file or directory created by owner --
H A Dlchown_basic.phpt11 * Description: Change file owner of a symlink
H A Dfileowner_variation1.phpt13 * Description: Returns the user ID of the owner of the file, or
H A Dfileowner_error.phpt6 * Description: Returns the user ID of the owner of the file, or
H A Dfileowner_variation2.phpt10 * Description: Returns the user ID of the owner of the file, or
H A Dlchown_error.phpt12 * Description: Change file owner of a symlink
H A Dfileowner_variation3.phpt8 * Description: Returns the user ID of the owner of the file, or
/PHP-7.4/ext/ftp/tests/
H A Dftp_mlsd.phpt45 ["UNIX.owner"]=>
64 ["UNIX.owner"]=>
85 ["UNIX.owner"]=>
H A Dserver.inc41 fputs($fs, "drwxr-x--- 3 owner group 4096 Jul 12 12:16 .\r\n");
42 fputs($fs, "drwxr-x--- 3 owner group 4096 Jul 12 12:16 ..\r\n");
43 fputs($fs, "drwxr-x--- 3 owner group 4096 Jul 12 12:16 public_ftp\r\n");
537 …0002;perm=flcdmpe;type=cdir;unique=811U4340002;UNIX.group=33;UNIX.mode=0755;UNIX.owner=33; .\r\n");
538 …002;perm=flcdmpe;type=pdir;unique=811U4340002;UNIX.group=33;UNIX.mode=0755;UNIX.owner=33; ..\r\n");
539 …rw;size=4729;type=file;unique=811U4340CB9;UNIX.group=33;UNIX.mode=0644;UNIX.owner=33; foobar\r\n");
/PHP-7.4/Zend/
H A Dzend_virtual_cwd.h188 CWD_API int virtual_chown(const char *filename, uid_t owner, gid_t group, int link);
281 #define VCWD_CHOWN(path, owner, group) virtual_chown(path, owner, group, 0) argument
283 #define VCWD_LCHOWN(path, owner, group) virtual_chown(path, owner, group, 1) argument
336 #define VCWD_CHOWN(path, owner, group) chown(path, owner, group) argument
338 #define VCWD_LCHOWN(path, owner, group) lchown(path, owner, group) argument
H A Dzend_virtual_cwd.c1408 CWD_API int virtual_chown(const char *filename, uid_t owner, gid_t group, int link) /* {{{ */ in virtual_chown() argument
1421 ret = lchown(new_state.cwd, owner, group); in virtual_chown()
1426 ret = chown(new_state.cwd, owner, group); in virtual_chown()
/PHP-7.4/sapi/fpm/tests/
H A Dsocket-uds-numeric-ugid.phpt2 FPM: UNIX socket owner and group settings can be numeric
19 listen.owner = 1234
H A Dsocket-uds-numeric-ugid-nonroot.phpt2 FPM: UNIX socket owner and group settings can be numeric
19 listen.owner = {{UID}}
/PHP-7.4/ext/session/
H A Dmod_mm.c58 pid_t owner; member
228 data->owner = getpid(); in ps_mm_initialize()
253 if (data->owner != getpid()) { in ps_mm_destroy()
/PHP-7.4/ext/gd/tests/
H A DRochester-Regular.otf.LICENSE.txt13 "Licensor" shall mean the copyright owner or entity authorized by
14 the copyright owner that is granting the License.
52 submitted to Licensor for inclusion in the Work by the copyright owner
54 the copyright owner. For the purposes of this definition, "submitted"
61 designated in writing by the copyright owner as "Not a Contribution."
190 Copyright [yyyy] [name of copyright owner]
/PHP-7.4/ext/standard/tests/file/windows_acls/
H A Dcommon.inc51 /* Current user needs to be owner of the test files. As well
/PHP-7.4/build/
H A Dax_func_which_gethostbyname_r.m451 # As a special exception, the respective Autoconf Macro's copyright owner
/PHP-7.4/ext/odbc/
H A Dphp_odbc.c233 ZEND_ARG_INFO(0, owner)
241 ZEND_ARG_INFO(0, owner)
254 ZEND_ARG_INFO(0, owner)
262 ZEND_ARG_INFO(0, owner)
270 ZEND_ARG_INFO(0, owner)
289 ZEND_ARG_INFO(0, owner)
298 ZEND_ARG_INFO(0, owner)
308 ZEND_ARG_INFO(0, owner)
/PHP-7.4/sapi/fpm/
H A Dwww.conf.in44 ; BSD-derived systems allow connections regardless of permissions. The owner
48 ;listen.owner = @php_fpm_user@
53 ; When set, listen.owner and listen.group are ignored

Completed in 86 milliseconds

12