From 6fe89e3c14ec53db7c21b3717d1e9a98c0db855d Mon Sep 17 00:00:00 2001 From: Remi Collet Date: Tue, 4 Dec 2012 09:10:46 +0100 Subject: PHP 5.5: save extension reflection --- reflection/posix.txt | 225 +++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 225 insertions(+) create mode 100644 reflection/posix.txt (limited to 'reflection/posix.txt') diff --git a/reflection/posix.txt b/reflection/posix.txt new file mode 100644 index 0000000..407ce9d --- /dev/null +++ b/reflection/posix.txt @@ -0,0 +1,225 @@ +Extension [ extension #73 posix version ] { + + - Constants [9] { + Constant [ integer POSIX_F_OK ] { 0 } + Constant [ integer POSIX_X_OK ] { 1 } + Constant [ integer POSIX_W_OK ] { 2 } + Constant [ integer POSIX_R_OK ] { 4 } + Constant [ integer POSIX_S_IFREG ] { 32768 } + Constant [ integer POSIX_S_IFCHR ] { 8192 } + Constant [ integer POSIX_S_IFBLK ] { 24576 } + Constant [ integer POSIX_S_IFIFO ] { 4096 } + Constant [ integer POSIX_S_IFSOCK ] { 49152 } + } + + - Functions { + Function [ function posix_kill ] { + + - Parameters [2] { + Parameter #0 [ $pid ] + Parameter #1 [ $sig ] + } + } + Function [ function posix_getpid ] { + + - Parameters [0] { + } + } + Function [ function posix_getppid ] { + + - Parameters [0] { + } + } + Function [ function posix_getuid ] { + + - Parameters [0] { + } + } + Function [ function posix_setuid ] { + + - Parameters [1] { + Parameter #0 [ $uid ] + } + } + Function [ function posix_geteuid ] { + + - Parameters [0] { + } + } + Function [ function posix_seteuid ] { + + - Parameters [1] { + Parameter #0 [ $uid ] + } + } + Function [ function posix_getgid ] { + + - Parameters [0] { + } + } + Function [ function posix_setgid ] { + + - Parameters [1] { + Parameter #0 [ $gid ] + } + } + Function [ function posix_getegid ] { + + - Parameters [0] { + } + } + Function [ function posix_setegid ] { + + - Parameters [1] { + Parameter #0 [ $gid ] + } + } + Function [ function posix_getgroups ] { + + - Parameters [0] { + } + } + Function [ function posix_getlogin ] { + + - Parameters [0] { + } + } + Function [ function posix_getpgrp ] { + + - Parameters [0] { + } + } + Function [ function posix_setsid ] { + + - Parameters [0] { + } + } + Function [ function posix_setpgid ] { + + - Parameters [2] { + Parameter #0 [ $pid ] + Parameter #1 [ $pgid ] + } + } + Function [ function posix_getpgid ] { + + - Parameters [1] { + Parameter #0 [ $pid ] + } + } + Function [ function posix_getsid ] { + + - Parameters [1] { + Parameter #0 [ $pid ] + } + } + Function [ function posix_uname ] { + + - Parameters [0] { + } + } + Function [ function posix_times ] { + + - Parameters [0] { + } + } + Function [ function posix_ctermid ] { + + - Parameters [0] { + } + } + Function [ function posix_ttyname ] { + + - Parameters [1] { + Parameter #0 [ $fd ] + } + } + Function [ function posix_isatty ] { + + - Parameters [1] { + Parameter #0 [ $fd ] + } + } + Function [ function posix_getcwd ] { + + - Parameters [0] { + } + } + Function [ function posix_mkfifo ] { + + - Parameters [2] { + Parameter #0 [ $pathname ] + Parameter #1 [ $mode ] + } + } + Function [ function posix_mknod ] { + + - Parameters [4] { + Parameter #0 [ $pathname ] + Parameter #1 [ $mode ] + Parameter #2 [ $major ] + Parameter #3 [ $minor ] + } + } + Function [ function posix_access ] { + + - Parameters [2] { + Parameter #0 [ $file ] + Parameter #1 [ $mode ] + } + } + Function [ function posix_getgrnam ] { + + - Parameters [1] { + Parameter #0 [ $name ] + } + } + Function [ function posix_getgrgid ] { + + - Parameters [1] { + Parameter #0 [ $gid ] + } + } + Function [ function posix_getpwnam ] { + + - Parameters [1] { + Parameter #0 [ $username ] + } + } + Function [ function posix_getpwuid ] { + + - Parameters [1] { + Parameter #0 [ $uid ] + } + } + Function [ function posix_getrlimit ] { + + - Parameters [0] { + } + } + Function [ function posix_get_last_error ] { + + - Parameters [0] { + } + } + Function [ function posix_errno ] { + + - Parameters [0] { + } + } + Function [ function posix_strerror ] { + + - Parameters [1] { + Parameter #0 [ $errno ] + } + } + Function [ function posix_initgroups ] { + + - Parameters [2] { + Parameter #0 [ $name ] + Parameter #1 [ $base_group_id ] + } + } + } +} + -- cgit