| /PHP_TRUNK/ext/dba/ |
| H A D | install_cdb.sh | 20 prefix=$1 22 if test -z "$prefix"; then 23 prefix=/usr/local 26 echo "Using prefix $prefix" 28 if mkdir -p "$prefix/include" "$prefix/lib"; then 45 ar r "$prefix/lib/libcdb.a" * 46 ranlib "$prefix/lib/libcdb.a" 51 cp cdb.h uint32.h "$prefix/includ [all...] |
| /PHP_TRUNK/ext/phar/phar/ |
| H A D | clicommand.inc | 112 static function getSubFuncs(CLICommand $cmdclass, $prefix, array $subs) 116 $l = strlen($prefix); 119 if (substr($m->name, 0, $l) == $prefix) { 122 $func = $prefix . $sub . '_' . $what;
|
| /PHP_TRUNK/ext/spl/internal/ |
| H A D | recursivetreeiterator.inc | 39 private $prefix = array(0=>'', 1=>'| ', 2=>' ', 3=>'|-', 4=>'\-', 5=>''); 55 * Set prefix part as used in getPrefix() and stored in $prefix. 57 * @param $value new prefix string for specified part. 65 $this->prefix[$part] = (string)$value; 75 $tree .= $this->getSubIterator($level)->hasNext() ? $this->prefix[1] : $this->prefix[2]; 77 $tree .= $this->getSubIterator($level)->hasNext() ? $this->prefix[3] : $this->prefix[4]; 79 return $this->prefix[ [all...] |
| /PHP_TRUNK/ext/standard/ |
| H A D | crypt_blowfish.h | 27 extern char *_crypt_gensalt_blowfish_rn(const char *prefix,
|
| H A D | uniqid.c | 41 /* {{{ proto string uniqid([string prefix [, bool more_entropy]]) 46 char *prefix = ""; local 56 if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "|sb", &prefix, &prefix_len, 79 spprintf(&uniqid, 0, "%s%08x%05x%.8F", prefix, sec, usec, php_combined_lcg(TSRMLS_C) * 10); 81 spprintf(&uniqid, 0, "%s%08x%05x", prefix, sec, usec);
|
| H A D | http.c | 208 /* {{{ proto string http_build_query(mixed formdata [, string prefix [, string arg_separator [, int enc_type]]]) 213 char *prefix = NULL, *arg_sep=NULL; local 218 if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "z|ssl", &formdata, &prefix, &prefix_len, &arg_sep, &arg_sep_len, &enc_type) != SUCCESS) { 227 if (php_url_encode_hash_ex(HASH_OF(formdata), &formstr, prefix, prefix_len, NULL, 0, NULL, 0, (Z_TYPE_P(formdata) == IS_OBJECT ? formdata : NULL), arg_sep, enc_type TSRMLS_CC) == FAILURE) {
|
| /PHP_TRUNK/sapi/fpm/fpm/ |
| H A D | fpm.c | 31 .prefix = NULL, 45 int fpm_init(int argc, char **argv, char *config, char *prefix, char *pid, int test_conf, int run_as_root, int force_daemon) /* {{{ */ argument 52 fpm_globals.prefix = prefix;
|
| H A D | fpm.h | 40 int fpm_init(int argc, char **argv, char *config, char *prefix, char *pid, int test_conf, int run_as_root, int force_daemon); 47 char *prefix; member in struct:fpm_globals_s
|
| H A D | fpm_conf.h | 56 char *prefix; member in struct:fpm_worker_pool_config_s
|
| H A D | fpm_conf.c | 121 { "prefix", &fpm_conf_set_string, WPO(prefix) }, 630 free(wpc->prefix); 673 char *prefix = NULL; local 681 prefix = wp->config->prefix; 684 /* if the wp prefix is not set */ 685 if (prefix == NULL) { 686 prefix = fpm_globals.prefix; [all...] |
| /PHP_TRUNK/scripts/dev/ |
| H A D | phpextdist | 7 phpize=`php-config --prefix`/bin/phpize
|
| /PHP_TRUNK/scripts/ |
| H A D | php-config.in | 4 prefix="@prefix@" 46 --prefix) 47 echo $prefix;; 74 --prefix [$prefix]
|
| H A D | phpize.in | 4 prefix='@prefix@' 155 -e "s#@prefix@#$prefix#" \
|
| /PHP_TRUNK/ext/imap/tests/ |
| H A D | clean.inc | 15 // Only delete mailboxes with our prefix
|
| /PHP_TRUNK/ext/dom/ |
| H A D | domimplementation.c | 160 char *prefix = NULL, *localname = NULL; local 182 errorcode = dom_check_qname(name, &localname, &prefix, 1, name_len); 183 if (errorcode == 0 && uri_len > 0 && ((nsptr = xmlNewNs(NULL, uri, prefix)) == NULL)) { 188 if (prefix != NULL) { 189 xmlFree(prefix);
|
| H A D | node.c | 84 ZEND_ARG_INFO(0, prefix) 174 (curns->prefix == NULL || xmlStrEqual(nsptr->prefix, curns->prefix))) { 217 if (ns != NULL && ns->prefix) { 218 qname = xmlStrdup(ns->prefix); 228 if (ns != NULL && ns->prefix) { 729 /* {{{ prefix string 752 if (ns != NULL && ns->prefix) { 753 str = (char *) ns->prefix; 778 char *prefix; local 1685 char *prefix=NULL; local 1826 char *prefix; local [all...] |
| H A D | php_dom.h | 108 int dom_check_qname(char *qname, char **localname, char **prefix, int uri_len, int name_len); 109 xmlNsPtr dom_get_ns(xmlNodePtr node, char *uri, int *errorcode, char *prefix);
|
| H A D | element.c | 161 char *localname = NULL, *prefix = NULL; local 182 errorcode = dom_check_qname(name, &localname, &prefix, uri_len, name_len); 186 nsptr = dom_get_ns(nodep, uri, &errorcode, prefix); 191 if (prefix != NULL) { 192 xmlFree(prefix); 202 /* If you don't pass a namespace uri, then you can't set a prefix */ 203 localname = xmlSplitQName2((xmlChar *)name, (xmlChar **) &prefix); 204 if (prefix != NULL) { 206 xmlFree(prefix); 253 if (ns != NULL && ns->prefix) { 290 xmlChar *prefix = xmlStrndup(name, len); local 701 xmlChar prefix[50]; local 749 char *localname = NULL, *prefix = NULL; local [all...] |
| /PHP_TRUNK/ext/xml/ |
| H A D | compat.c | 90 _start_element_handler_ns(void *user, const xmlChar *name, const xmlChar *prefix, const xmlChar *URI, int nb_namespaces, const xmlChar ** namespaces, int nb_attributes, int nb_defaulted, const xmlChar ** attributes) argument 110 if (prefix) { 111 qualified_name = xmlStrncatNew((xmlChar *)"<", prefix, xmlStrlen(prefix)); 205 parser->h_end_ns(parser->user, nsptr->prefix); 234 _end_element_handler_ns(void *user, const xmlChar *name, const xmlChar * prefix, const xmlChar *URI) argument 244 if (prefix) { 245 end_element_len = spprintf(&end_element, 0, "</%s:%s>", (char *) prefix, (char *)name);
|
| /PHP_TRUNK/ext/xmlwriter/ |
| H A D | php_xmlwriter.c | 214 ZEND_ARG_INFO(0, prefix) 220 ZEND_ARG_INFO(0, prefix) 227 ZEND_ARG_INFO(0, prefix) 234 ZEND_ARG_INFO(0, prefix) 262 ZEND_ARG_INFO(0, prefix) 268 ZEND_ARG_INFO(0, prefix) 286 ZEND_ARG_INFO(0, prefix) 293 ZEND_ARG_INFO(0, prefix) 885 /* {{{ proto bool xmlwriter_start_attribute_ns(resource xmlwriter, string prefix, string name, string uri) 892 char *name, *prefix, *ur local 981 char *name, *prefix, *uri, *content; local 1034 char *name, *prefix, *uri; local 1149 char *name, *prefix, *uri, *content = NULL; local [all...] |
| /PHP_TRUNK/ext/phar/ |
| H A D | tar.h | 89 char prefix[155]; /* prefix for file name; member in struct:_tar_header 90 the value of the prefix field, if non-null,
|
| /PHP_TRUNK/ext/simplexml/ |
| H A D | simplexml.c | 129 static inline int match_ns(php_sxe_object *sxe, xmlNodePtr node, xmlChar *name, int prefix) /* {{{ */ argument 131 if (name == NULL && (node->ns == NULL || node->ns->prefix == NULL)) { 135 if (node->ns && !xmlStrcmp(prefix ? node->ns->prefix : node->ns->href, name)) { 1330 /* {{{ proto bool SimpleXMLElement::registerXPathNamespace(string prefix, string ns) 1331 Creates a prefix/ns context for the next XPath query */ 1336 char *prefix, *ns_uri; local 1338 if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "ss", &prefix, &prefix_len, &ns_uri, &ns_uri_len) == FAILURE) { 1347 if (xmlXPathRegisterNs(sxe->xpath, (xmlChar *)prefix, (xmlChar *)ns_uri) != 0) { 1437 #define SXE_NS_PREFIX(ns) (ns->prefix 1441 char *prefix = SXE_NS_PREFIX(ns); local 1634 xmlChar *localname, *prefix = NULL; local 1700 xmlChar *localname, *prefix = NULL; local 2276 xmlChar *prefix = sxe->iter.nsprefix; local [all...] |
| /PHP_TRUNK/Zend/ |
| H A D | zend_vm_gen.php | 66 $prefix = array( variable 301 global $prefix, $helpers; 315 return $name.($spec?"_SPEC":"").$prefix[$op1].$prefix[$op2]; 326 $op1_free_op_var_ptr, $op2_free_op_var_ptr, $prefix, 402 "\\1".(($spec && $kind != ZEND_VM_KIND_CALL)?("_SPEC".$prefix[$op1].$prefix[$op2]):""), 403 "goto \\1".(($spec && $kind != ZEND_VM_KIND_CALL)?("_SPEC".$prefix[$op1].$prefix[$op2]):""), 424 function($matches) use ($spec, $prefix, [all...] |
| /PHP_TRUNK/ext/spl/ |
| H A D | spl_iterators.c | 119 smart_str prefix[6]; member in struct:_spl_recursive_it_object 882 smart_str_free(&object->prefix[0]); 883 smart_str_free(&object->prefix[1]); 884 smart_str_free(&object->prefix[2]); 885 smart_str_free(&object->prefix[3]); 886 smart_str_free(&object->prefix[4]); 887 smart_str_free(&object->prefix[5]); 903 smart_str_appendl(&intern->prefix[0], "", 0); 904 smart_str_appendl(&intern->prefix[1], "| ", 2); 905 smart_str_appendl(&intern->prefix[ 1044 char* prefix; local 1102 zval prefix, entry, postfix; local 1158 zval prefix, key, postfix, key_copy; local [all...] |
| /PHP_TRUNK/sapi/fpm/ |
| H A D | init.d.php-fpm.in | 13 prefix=@prefix@
|