Home
last modified time | relevance | path

Searched refs:prot (Results 1 – 24 of 24) sorted by relevance

/PHP-5.5/Zend/tests/
H A Dproperty_exists.phpt9 var_dump(property_exists($a, "prot"));
13 var_dump(property_exists("A", "prot"));
20 var_dump(property_exists($a, "prot"));
24 var_dump(property_exists("A", "prot"));
31 static public $prot = "prot";
32 static protected $prot2 = "prot";
33 static private $prot3 = "prot";
H A Dbug43483.phpt7 D::prot();
12 protected static function prot() {
13 echo "Successfully called D::prot().\n";
19 Successfully called D::prot().
22 [0] => prot
H A Dbug21888.phpt11 protected $prot = "protected property\n";
13 protected function prot() {
21 $this->prot();
25 print $this->prot;
H A Dbug45862.phpt9 var_dump(Tester::$prot);
14 static protected $prot = "protected var";
34 ["prot"]=>
41 ["prot"]=>
H A Daccess_modifiers_012.phpt6 protected function prot() { }
15 call_user_func(array($c, 'prot'));
20 In __call() for method prot()
H A Dcall_user_func_001.phpt12 protected function prot($str) {
26 call_user_func(array(new $class, 'prot'), 'foobar');
35 …meter 1 to be a valid callback, cannot access protected method testing\foo::prot() in %s on line %d
/PHP-5.5/ext/standard/tests/class_object/
H A Dget_object_vars_basic_002.phpt23 protected $prot = 'B::prot';
49 ["prot"]=>
50 string(7) "B::prot"
58 ["prot"]=>
59 string(7) "B::prot"
H A Dget_object_vars_basic_001.phpt23 protected $prot = 'B::prot';
76 ["prot"]=>
77 string(7) "B::prot"
85 ["prot"]=>
86 string(7) "B::prot"
94 ["prot"]=>
95 string(7) "B::prot"
H A Dget_class_vars_variation2.phpt23 protected $prot = "protected var";
93 ["prot"]=>
109 ["prot"]=>
125 ["prot"]=>
137 ["prot"]=>
149 ["prot"]=>
161 ["prot"]=>
H A Dmethod_exists_basic_001.phpt22 protected function prot() {}
33 'pub', 'prot', 'priv',
62 Does C::prot exist? bool(true)
77 Does C::prot exist? bool(true)
/PHP-5.5/ext/reflection/tests/
H A DReflectionMethod_basic3.phpt33 protected function prot() {}
47 reflectMethod("TestClass", "prot");
48 reflectMethod("DerivedClass", "prot");
99 Reflecting on method TestClass::prot()
103 string(4) "prot"
113 Reflecting on method DerivedClass::prot()
117 string(4) "prot"
H A DReflectionMethod_basic2.phpt31 protected function prot() {}
45 reflectMethod("TestClass", "prot");
46 reflectMethod("DerivedClass", "prot");
102 Reflecting on method TestClass::prot()
105 string(%d) "Method [ <user> protected method prot ] {
111 string(%d) "Method [ <user> protected method prot ] {
118 Reflecting on method DerivedClass::prot()
121 string(%d) "Method [ <user, inherits TestClass> protected method prot ] {
127 string(%d) "Method [ <user, inherits TestClass> protected method prot ] {
H A DReflectionProperty_basic1.phpt40 protected $prot = 4;
46 reflectProperty("TestClass", "prot");
110 Reflecting on property TestClass::prot
113 string(39) "Property [ <default> protected $prot ]
116 string(39) "Property [ <default> protected $prot ]
119 Property [ <default> protected $prot ]
123 string(4) "prot"
H A DReflectionMethod_basic4.phpt37 protected function prot() {}
51 reflectMethod("TestClass", "prot");
52 reflectMethod("DerivedClass", "prot");
102 Reflecting on method TestClass::prot()
116 Reflecting on method DerivedClass::prot()
H A DReflectionProperty_getModifiers.001.phpt28 protected $prot = 4;
34 reflectProperty("TestClass", "prot");
54 Reflecting on property TestClass::prot
H A DReflectionProperty_isDefault_basic.phpt18 protected $prot = 4;
24 reflectProperty("TestClass", "prot");
48 Reflecting on property TestClass::prot
H A DReflectionMethod_basic1.phpt43 protected function prot() {}
57 reflectMethod("TestClass", "prot");
58 reflectMethod("DerivedClass", "prot");
153 Reflecting on method TestClass::prot()
182 Reflecting on method DerivedClass::prot()
H A DReflectionProperty_basic2.phpt30 protected $prot = 4;
36 reflectProperty("TestClass", "prot");
74 Reflecting on property TestClass::prot
H A DReflectionProperty_getValue_error.phpt10 protected $prot = 4;
41 $propInfo = new ReflectionProperty('TestClass', 'prot');
78 Cannot access non-public member TestClass::prot
H A DReflectionProperty_setValue_error.phpt10 protected $prot = 4;
47 $propInfo = new ReflectionProperty('TestClass', 'prot');
96 Cannot access non-public member TestClass::prot
H A DReflectionMethod_getModifiers_basic.phpt31 protected function prot() {}
101 Modifiers for method TestClass::prot():
169 Modifiers for method TestClass::prot():
/PHP-5.5/main/streams/
H A Dplain_wrapper.c661 int prot, flags; in php_stdiop_set_option() local
681 prot = PROT_READ; in php_stdiop_set_option()
685 prot = PROT_READ | PROT_WRITE; in php_stdiop_set_option()
689 prot = PROT_READ; in php_stdiop_set_option()
693 prot = PROT_READ | PROT_WRITE; in php_stdiop_set_option()
723 DWORD prot, acc, loffs = 0, delta = 0; in php_stdiop_set_option() local
732 prot = PAGE_READONLY; in php_stdiop_set_option()
736 prot = PAGE_READWRITE; in php_stdiop_set_option()
740 prot = PAGE_READONLY; in php_stdiop_set_option()
745 prot = PAGE_READWRITE; in php_stdiop_set_option()
[all …]
/PHP-5.5/ext/snmp/
H A Dsnmp.c1267 static int netsnmp_session_set_auth_protocol(struct snmp_session *s, char *prot TSRMLS_DC) in netsnmp_session_set_auth_protocol()
1269 if (!strcasecmp(prot, "MD5")) { in netsnmp_session_set_auth_protocol()
1272 } else if (!strcasecmp(prot, "SHA")) { in netsnmp_session_set_auth_protocol()
1276 php_error_docref(NULL TSRMLS_CC, E_WARNING, "Unknown authentication protocol '%s'", prot); in netsnmp_session_set_auth_protocol()
1285 static int netsnmp_session_set_sec_protocol(struct snmp_session *s, char *prot TSRMLS_DC) in netsnmp_session_set_sec_protocol()
1287 if (!strcasecmp(prot, "DES")) { in netsnmp_session_set_sec_protocol()
1291 } else if (!strcasecmp(prot, "AES128") || !strcasecmp(prot, "AES")) { in netsnmp_session_set_sec_protocol()
1296 php_error_docref(NULL TSRMLS_CC, E_WARNING, "Unknown security protocol '%s'", prot); in netsnmp_session_set_sec_protocol()
/PHP-5.5/ext/fileinfo/tests/
H A Dmagic8112 # ftp://ftp.f-prot.com/pub/{macrdef2.zip,nomacro.def}
8117 # ftp://ftp.f-prot.com/pub/sign.zip
8136 # ftp://ftp.f-prot.com/pub/sign2.zip

Completed in 72 milliseconds