Searched refs:extname (Results 1 - 9 of 9) sorted by relevance
| /PHP_TRUNK/ext/ |
| H A D | ext_skel | 9 echo "$0 --extname=module [--proto=file] [--stubs=file] [--xml[=file]]" 12 echo " --extname=module module is the name of your extension" 35 --extname=?*) 36 extname=$optarg 37 EXTNAME=`echo $extname | tr "[:lower:]" "[:upper:]"` 68 if test -d "$extname" ; then 69 givup "Directory $extname already exists." 91 echo "Creating directory $extname" 92 stubfile=$extname"/function_stubs" 93 mkdir $extname || givu [all...] |
| H A D | ext_skel_win32.php | 14 4) run ext_skel --extname=... 27 $extname = ""; variable 30 if (strtolower(substr($arg, 0, 9)) == "--extname") { 31 $extname = substr($arg, 10); variable 43 $dsp_file = str_replace("extname", $extname, $dsp_file); 44 $dsp_file = str_replace("EXTNAME", strtoupper($extname), $dsp_file); 45 $fp = fopen("$extname/$extname.dsp", "wb"); 52 $fp = fopen("$extname/ [all...] |
| /PHP_TRUNK/ext/skeleton/ |
| H A D | create_stubs | 65 xmldoc = extname "/" extname ".xml" 71 " <reference id=\"ref." extname "\">\n" \ 256 if (!stubs) print "" > extname "/function_warning" 267 print "PHP_FUNCTION(" funcs[i] ");" > extname "/function_declarations" 268 print "\tPHP_FE(" funcs[i] ",\tNULL)" > extname "/function_entries"
|
| H A D | php_skeleton.h | 21 PHP_MINIT_FUNCTION(extname); variable 22 PHP_MSHUTDOWN_FUNCTION(extname); variable 23 PHP_RINIT_FUNCTION(extname); variable 24 PHP_RSHUTDOWN_FUNCTION(extname); variable 25 PHP_MINFO_FUNCTION(extname); variable 34 ZEND_BEGIN_MODULE_GLOBALS(extname) 37 ZEND_END_MODULE_GLOBALS(extname)
|
| H A D | skeleton.c | 13 ZEND_DECLARE_MODULE_GLOBALS(extname) 36 "extname", 38 PHP_MINIT(extname), 39 PHP_MSHUTDOWN(extname), 40 PHP_RINIT(extname), /* Replace with NULL if there's nothing to do at request start */ 41 PHP_RSHUTDOWN(extname), /* Replace with NULL if there's nothing to do at request end */ 42 PHP_MINFO(extname), 51 ZEND_GET_MODULE(extname) 58 STD_PHP_INI_ENTRY("extname.global_value", "42", PHP_INI_ALL, OnUpdateLong, global_value, zend_extname_globals, extname_globals) 59 STD_PHP_INI_ENTRY("extname [all...] |
| /PHP_TRUNK/win32/build/ |
| H A D | confutils.js | 1131 // the dependencies are built before extname
1132 function ADD_EXTENSION_DEP(extname, dependson, optional)
1134 var EXT = extname.toUpperCase();
1161 MESSAGE("\t" + dependson + " not found: " + dependson + " support in " + extname + " disabled");
1171 MESSAGE("\tstatic " + extname + " cannot depend on shared " + dependson + ": " + dependson + "support disabled");
1174 ERROR("static " + extname + " cannot depend on shared " + dependson);
1185 WARNING(extname + " cannot be built: missing dependency, " + dependson + " not found");
1187 var dllname = ' php_' + extname + '.dll';
1197 ERROR("Cannot build " + extname + "; " + dependson + " not enabled");
1204 function EXTENSION(extname, file_lis [all...] |
| H A D | projectgen.js | 209 var extname = "php5" + ts; 210 var tmpl = generate_dsp_file(extname, ".", false, false); 220 tmpl = tmpl.replace(extname + ".dll", get_define("PHPDLL")); 546 tmpl = tmpl.replace(/extname/g, ext);
|
| /PHP_TRUNK/ext/openssl/ |
| H A D | openssl.c | 1722 char *extname; local 1808 extname = (char *)OBJ_nid2sn(OBJ_obj2nid(X509_EXTENSION_get_object(extension))); 1811 extname = buf; 1816 add_assoc_stringl(subitem, extname, bio_buf->data, bio_buf->length, 1); 1818 add_assoc_asn1_string(subitem, extname, X509_EXTENSION_get_data(extension));
|
| /PHP_TRUNK/ext/standard/ |
| H A D | basic_functions.c | 5391 char *extname = NULL; local 5396 if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "|s!b", &extname, &extname_len, &details) == FAILURE) { 5402 if (extname) { 5403 if (zend_hash_find(&module_registry, extname, extname_len+1, (void **) &module) == FAILURE) { 5404 php_error_docref(NULL TSRMLS_CC, E_WARNING, "Unable to find extension '%s'", extname);
|
Completed in 21 milliseconds