Home
last modified time | relevance | path

Searched refs:temp (Results 1 – 25 of 219) sorted by last modified time

123456789

/PHP-5.5/
H A Dserver-tests.php1429 $temp = "";
1447 $temp = $temp . preg_quote(substr($wanted_re, $startOffset, ($start - $startOffset)), '/');
1450 $temp = $temp . '(' . substr($wanted_re, $start+2, ($end - $start-2)). ')';
1454 $wanted_re = $temp;
H A Drun-tests.php1921 $temp = "";
1939 $temp = $temp . preg_quote(substr($wanted_re, $startOffset, ($start - $startOffset)), '/');
1942 $temp = $temp . '(' . substr($wanted_re, $start+2, ($end - $start-2)). ')';
1946 $wanted_re = $temp;
2718 $temp = array_intersect(array('XFAIL', 'FAIL', 'WARN'), $type);
2719 $type = reset($temp);
/PHP-5.5/tests/basic/
H A Dreq60524.phpt4 sys_temp_dir=/path/to/temp/dir
14 /path/to/temp/dir
/PHP-5.5/sapi/isapi/stresstest/
H A Dstresstest.cpp793 char * temp = NULL; in ServerSupportFunction() local
818 if (temp) xfree(temp); in ServerSupportFunction()
844 xfree(temp); in ServerSupportFunction()
884 char * temp; in FillExtensionControlBlock() local
905 ECB->cbTotalBytes=( (temp=GetEnv("CONTENT_LENGTH")) ? (atoi(temp)): 0); in FillExtensionControlBlock()
/PHP-5.5/sapi/cli/
H A Dphp_cli_server.c788 char *temp; in sapi_cli_server_register_variables() local
789 spprintf(&temp, 0, "%s/%s", client->server->document_root, client->server->router); in sapi_cli_server_register_variables()
790 sapi_cli_server_register_variable(track_vars_array, "SCRIPT_FILENAME", temp TSRMLS_CC); in sapi_cli_server_register_variables()
791 efree(temp); in sapi_cli_server_register_variables()
/PHP-5.5/main/
H A Dsnprintf.c445 char temp[EXPONENT_LENGTH]; /* for exponent conversion */ in php_conv_fp() local
452 …p = ap_php_conv_10((wide_int) decimal_point, FALSE, &exponent_is_negative, &temp[EXPONENT_LENGTH],… in php_conv_fp()
/PHP-5.5/ext/zip/lib/
H A Dzip_open.c303 struct zip_dirent temp; in _zip_checkcons() local
334 if (_zip_dirent_read(&temp, fp, NULL, NULL, 1, error) == -1) in _zip_checkcons()
337 if (_zip_headercomp(cd->entry+i, 0, &temp, 1) != 0) { in _zip_checkcons()
339 _zip_dirent_finalize(&temp); in _zip_checkcons()
342 _zip_dirent_finalize(&temp); in _zip_checkcons()
H A Dzip_close.c75 char *temp; in zip_close() local
309 remove(temp); in zip_close()
310 free(temp); in zip_close()
316 remove(temp); in zip_close()
317 free(temp); in zip_close()
328 remove(temp); in zip_close()
329 free(temp); in zip_close()
343 free(temp); in zip_close()
617 free(temp); in _zip_create_temp_output()
624 remove(temp); in _zip_create_temp_output()
[all …]
/PHP-5.5/ext/xmlrpc/libxmlrpc/
H A Dqueue.c719 void *key, *temp; in QuickSort() local
737 temp = list[i]; in QuickSort()
739 list[j] = temp; in QuickSort()
744 temp = list[low]; in QuickSort()
746 list[j] = temp; in QuickSort()
/PHP-5.5/ext/wddx/tests/
H A D003.phpt10 $fp = fopen("php://temp", 'w+');
/PHP-5.5/ext/tidy/
H A Dtidy.c819 zval *temp; in tidy_doc_update_properties() local
828 MAKE_STD_ZVAL(temp); in tidy_doc_update_properties()
829 ZVAL_STRINGL(temp, (char*)output.bp, output.size-1, TRUE); in tidy_doc_update_properties()
830 …zend_hash_update(obj->std.properties, "value", sizeof("value"), (void *)&temp, sizeof(zval *), NUL… in tidy_doc_update_properties()
839 MAKE_STD_ZVAL(temp); in tidy_doc_update_properties()
840 ZVAL_STRINGL(temp, (char*)obj->ptdoc->errbuf->bp, obj->ptdoc->errbuf->size-1, TRUE); in tidy_doc_update_properties()
851 zval *attribute, *children, *temp; in tidy_add_default_properties() local
907 MAKE_STD_ZVAL(temp); in tidy_add_default_properties()
908 tidy_instanciate(tidy_ce_node, temp TSRMLS_CC); in tidy_add_default_properties()
909 newobj = (PHPTidyObj *) zend_object_store_get_object(temp TSRMLS_CC); in tidy_add_default_properties()
[all …]
/PHP-5.5/ext/standard/tests/strings/
H A Dsha1_file.phpt67 // remove temp files
H A Dmd5_file.phpt69 // remove temp files
H A Ddirname_variation.phpt8 class temp
40 new temp,
/PHP-5.5/ext/standard/tests/streams/
H A Dbug61115-1.phpt12 $fileResourceTemp = fopen('php://temp', 'wr');
H A Dbug61115.phpt8 $resourceFileTemp = fopen('php://temp', 'r+');
H A Dbug64166_2.phpt7 $fd = fopen('php://temp', 'w+');
H A Dbug44818.phpt14 test("php://temp","r");
15 test("php://temp","w");
28 php://temp, r
33 php://temp, w
/PHP-5.5/ext/standard/tests/filters/
H A Dbug50363.phpt8 $b = fopen('php://temp', 'w+');
/PHP-5.5/ext/standard/tests/file/
H A Dtempnam_variation1-win32.phpt39 echo "temp dir\n";
H A Dtempnam_variation1.phpt43 echo "temp dir\n";
H A Dtempnam_variation8-win32.phpt65 echo "temp dir\n";
120 File created in => temp dir
125 File created in => temp dir
145 File created in => temp dir
H A Dunlink_variation1-win32.phpt22 // temp dir name used here
24 // temp filename used here
28 // create temp dir
30 // create temp file inside $dirname
47 // create the temp dir
50 // create the temp file
57 // now try deleting temp file inside $dirname
60 // reassign write permission to temp file
62 // delete temp file
65 // remove temp dir
H A Dunlink_variation1.phpt32 // temp dir name used here
34 // temp filename used here
38 // create temp dir
40 // create temp file inside $dirname
57 // create the temp dir
59 // create the temp file
65 // now try deleting temp file inside $dirname
69 // remove temp dir
H A Dunlink_variation2-win32.phpt20 // temp file name used here

Completed in 93 milliseconds

123456789