Home
last modified time | relevance | path

Searched refs:rc (Results 101 – 125 of 209) sorted by relevance

123456789

/PHP-5.5/ext/fileinfo/libmagic/
H A Dcompress.c326 int rc; in uncompressgzipped() local
363 rc = inflateInit2(&z, -15); in uncompressgzipped()
364 if (rc != Z_OK) { in uncompressgzipped()
369 rc = inflate(&z, Z_SYNC_FLUSH); in uncompressgzipped()
370 if (rc != Z_OK && rc != Z_STREAM_END) { in uncompressgzipped()
/PHP-5.5/ext/reflection/tests/
H A DReflectionClass_getMethod_001.phpt33 $rc = new ReflectionClass($class);
35 var_dump($rc->getMethod("f"));
37 var_dump($rc->getMethod("s"));
39 var_dump($rc->getMethod("F"));
42 var_dump($rc->getMethod("doesntExist"));
H A DReflectionClass_toString_003.phpt22 $rc = new ReflectionClass($class);
23 echo $rc;
H A DReflectionClass_getConstructor_basic.phpt55 $rc = new ReflectionClass($class);
56 $rm = $rc->getConstructor();
H A DReflectionObject_getConstructor_basic.phpt55 $rc = new ReflectionObject(new $class);
56 $rm = $rc->getConstructor();
H A DReflectionClass_isInstance_basic.phpt21 $rc = new ReflectionClass($class);
25 var_dump($rc->isInstance($instance));
H A DReflectionClass_toString_002.phpt22 $rc = new ReflectionClass($class);
23 echo $rc;
H A DReflectionClass_getDocComment_001.phpt53 $rc = new ReflectionClass($class);
54 var_dump($rc->getDocComment());
H A DReflectionProperty_getDocComment_basic.phpt36 $rc = new ReflectionClass($class);
37 $rps = $rc->getProperties();
H A DReflectionMethod_getDocComment_basic.phpt59 $rc = new ReflectionClass($class);
60 $rms = $rc->getMethods();
H A DReflectionClass_getInterfaces_003.phpt22 $rc = new ReflectionClass('C');
23 $a = $rc->getInterfaces();
H A DReflectionClass_getProperties_001.phpt33 $rc = new ReflectionClass($class);
34 var_dump($rc->getProperties());
/PHP-5.5/sapi/cli/
H A Dps_title.h36 extern const char* ps_title_errno(int rc);
/PHP-5.5/ext/ldap/
H A Dldap.c332 int rc; in PHP_FUNCTION() local
335 if (rc != LDAP_SUCCESS) { in PHP_FUNCTION()
413 int rc; in PHP_FUNCTION() local
556 if (rc != LDAP_SUCCESS) { in PHP_FUNCTION()
1456 int rc, dn_len; in PHP_FUNCTION() local
2235 if (rc != LDAP_SUCCESS) { in PHP_FUNCTION()
2378 int rc; in PHP_FUNCTION() local
2404 if (rc == LDAP_SUCCESS) { in PHP_FUNCTION()
2628 if (rc == LBER_ERROR) { in PHP_FUNCTION()
2642 if (rc != LDAP_SUCCESS) { in PHP_FUNCTION()
[all …]
/PHP-5.5/ext/pcre/pcrelib/
H A Dpcre_study.c840 int rc; in set_start_bits() local
973 rc = set_start_bits(tcode, start_bits, utf, cd); in set_start_bits()
974 if (rc == SSB_FAIL || rc == SSB_UNKNOWN) return rc; in set_start_bits()
975 if (rc == SSB_DONE) try_next = FALSE; else in set_start_bits()
1020 rc = set_start_bits(++tcode, start_bits, utf, cd); in set_start_bits()
1021 if (rc == SSB_FAIL || rc == SSB_UNKNOWN) return rc; in set_start_bits()
1509 int rc; in pcre_study() local
1537 rc = set_start_bits(code, start_bits, (re->options & PCRE_UTF8) != 0, in pcre_study()
1539 bits_set = rc == SSB_DONE; in pcre_study()
1540 if (rc == SSB_UNKNOWN) in pcre_study()
/PHP-5.5/sapi/isapi/stresstest/
H A Dstresstest.cpp639 DWORD rc; in stress_main() local
697 rc = IsapiHttpExtensionProc(&ECB); in stress_main()
698 if (rc == HSE_STATUS_PENDING) { in stress_main()
730 DWORD rc; in GetServerVariable() local
736 rc = value.GetLength(); in GetServerVariable()
739 rc = value.GetLength(); in GetServerVariable()
742 rc = GetEnvironmentVariable(lpszVariableName, (char *)lpBuffer, *lpdwSize) ; in GetServerVariable()
744 if (!rc) { // return of 0 indicates the variable was not found in GetServerVariable()
749 if (rc > *lpdwSize) { in GetServerVariable()
754 *lpdwSize =rc + 1 ; // GetEnvironmentVariable does not count the NULL in GetServerVariable()
/PHP-5.5/ext/mysqli/tests/
H A D012.phpt20 $rc = mysqli_query($link, "CREATE TABLE test_bind_result(c1 tinyint, c2 smallint,
25 if (!$rc)
H A D006.phpt21 $rc = mysqli_query($link,"CREATE TABLE test_bind_fetch(c1 int unsigned,
28 if (!$rc)
H A D007.phpt21 $rc = mysqli_query($link, "CREATE TABLE test_bind_fetch(c1 smallint unsigned,
28 if (!$rc)
H A D008.phpt21 $rc = mysqli_query($link, "CREATE TABLE test_bind_fetch(c1 tinyint,
28 if (!$rc)
H A D010.phpt23 $rc = mysqli_query($link, "CREATE TABLE test_bind_fetch(c1 float(3),
30 if (!$rc)
H A D013.phpt18 $rc = mysqli_query($link, "CREATE TABLE test_bind_result(c1 tinyint, c2 smallint,
23 if (!$rc)
H A D019.phpt18 $rc = mysqli_query($link,"CREATE TABLE insert_read(col1 tinyint, col2 smallint,
25 if (!$rc)
/PHP-5.5/ext/ereg/
H A Dereg.c143 reg_cache *rc = NULL; in _php_regcomp() local
156 if(zend_hash_find(&EREG(ht_rc), (char *) pattern, patlen+1, (void **) &rc) == SUCCESS in _php_regcomp()
157 && rc->cflags == cflags) { in _php_regcomp()
163 if (rc->preg.re_magic != reg_magic) { in _php_regcomp()
167 memcpy(preg, &rc->preg, sizeof(*preg)); in _php_regcomp()
189 memcpy(preg, &rc->preg, sizeof(*preg)); in _php_regcomp()
207 static void _free_ereg_cache(reg_cache *rc) in _free_ereg_cache() argument
209 regfree(&rc->preg); in _free_ereg_cache()
/PHP-5.5/ext/standard/tests/assert/
H A Dassert_variation.phpt52 var_dump($rc=assert_options(ASSERT_CALLBACK, "c1"));
59 var_dump($rc = assert_options(ASSERT_CALLBACK,array("c1","assert")));
67 var_dump($rc=assert_options(ASSERT_CALLBACK,array(&$o,"assert")));

Completed in 78 milliseconds

123456789