| /PHP_5_5/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.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...] |
| H A D | fpm_conf.h | 56 char *prefix; member in struct:fpm_worker_pool_config_s
|
| /PHP_5_5/Zend/ |
| H A D | zend_vm_gen.php | 66 $prefix = array( variable 289 global $prefix, $helpers; 303 return $name.($spec?"_SPEC":"").$prefix[$op1].$prefix[$op2]; 314 $op1_free_op_var_ptr, $op2_free_op_var_ptr, $prefix; 375 "\\1".(($spec && $kind != ZEND_VM_KIND_CALL)?("_SPEC".$prefix[$op1].$prefix[$op2]):""), 376 "goto \\1".(($spec && $kind != ZEND_VM_KIND_CALL)?("_SPEC".$prefix[$op1].$prefix[$op2]):""), 397 function($matches) use ($spec, $prefix, [all...] |
| H A D | zend_compile.c | 2187 /* This is a compound class name that contains namespace prefix */ 2189 /* The STRING name has "\" prefix */ 2411 void zend_do_build_full_name(znode *result, znode *prefix, znode *name, int is_class_member TSRMLS_DC) /* {{{ */ argument 2416 result = prefix; 2418 *result = *prefix; 6903 void zend_do_build_namespace_name(znode *result, znode *prefix, znode *name TSRMLS_DC) /* {{{ */ argument 6905 if (prefix) { 6906 *result = *prefix; 6926 /* prefix = result */
|
| /PHP_5_5/ext/dom/ |
| H A D | document.c | 1215 nsptr = dom_get_ns(root, (char *) nodep->ns->href, &errorcode, (char *) nodep->ns->prefix); 1237 char *localname = NULL, *prefix = NULL; local 1247 errorcode = dom_check_qname(name, &localname, &prefix, uri_len, name_len); 1255 nsptr = dom_get_ns(nodep, uri, &errorcode, prefix); 1265 if (prefix != NULL) { 1266 xmlFree(prefix); 1300 char *localname = NULL, *prefix = NULL; local 1312 errorcode = dom_check_qname(name, &localname, &prefix, uri_len, name_len); 1319 nsptr = dom_get_ns(root, uri, &errorcode, prefix); 1333 if (prefix ! [all...] |
| 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 | 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...] |
| 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 | xpath.c | 45 ZEND_ARG_INFO(0, prefix) 156 curns->prefix = xmlStrdup((xmlChar *) node->children); 347 /* {{{ proto boolean dom_xpath_register_ns(string prefix, string uri); */ 354 unsigned char *prefix, *ns_uri; local 356 if (zend_parse_method_parameters(ZEND_NUM_ARGS() TSRMLS_CC, getThis(), "Oss", &id, dom_xpath_class_entry, &prefix, &prefix_len, &ns_uri, &ns_uri_len) == FAILURE) { 368 if (xmlXPathRegisterNs(ctxp, prefix, ns_uri) != 0) { 491 curns->prefix = xmlStrdup((char *) node->children);
|
| H A D | php_dom.c | 714 dom_register_prop_handler(&dom_node_prop_handlers, "prefix", dom_node_prefix_read, dom_node_prefix_write TSRMLS_CC); 726 dom_register_prop_handler(&dom_namespace_node_prop_handlers, "prefix", dom_node_prefix_read, NULL TSRMLS_CC); 1564 doc->oldNs->prefix = xmlStrdup((const xmlChar *)"xml"); 1581 2. the qualifiedName has a prefix and the namespaceURI is null 1584 /* {{{ int dom_check_qname(char *qname, char **localname, char **prefix, int uri_len, int name_len) */ 1585 int dom_check_qname(char *qname, char **localname, char **prefix, int uri_len, int name_len) { argument 1590 *localname = (char *)xmlSplitQName2((xmlChar *)qname, (xmlChar **) prefix); 1593 if (*prefix == NULL && uri_len == 0) { 1604 if (*prefix != NULL && uri_len == 0) { 1617 3. the qualifiedName has a prefix tha 1623 dom_get_ns(xmlNodePtr nodep, char *uri, int *errorcode, char *prefix) argument [all...] |
| /PHP_5_5/ext/standard/ |
| 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) {
|
| H A D | file.c | 798 /* {{{ proto string tempnam(string dir, string prefix) 802 char *dir, *prefix; local 809 if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "ps", &dir, &dir_len, &prefix, &prefix_len) == FAILURE) { 817 php_basename(prefix, prefix_len, NULL, 0, &p, &p_len TSRMLS_CC);
|
| H A D | string.c | 2816 HASH *prefix; /* array of hashes of prefixes by pattern suffix hash order */ member in struct:__anon4 2985 res->prefix = safe_emalloc(patnum, sizeof(*res->prefix), 0); 2987 res->prefix[i] = php_strtr_hash(S(&res->patterns[i].pat), Bp); 3025 efree(d->prefix); 3055 if (d->prefix[i] != prefix_h)
|
| H A D | array.c | 1263 PHPAPI int php_prefix_varname(zval *result, zval *prefix, char *var_name, int var_name_len, zend_bool add_underscore TSRMLS_DC) /* {{{ */ argument 1265 Z_STRLEN_P(result) = Z_STRLEN_P(prefix) + (add_underscore ? 1 : 0) + var_name_len; 1268 memcpy(Z_STRVAL_P(result), Z_STRVAL_P(prefix), Z_STRLEN_P(prefix)); 1271 Z_STRVAL_P(result)[Z_STRLEN_P(prefix)] = '_'; 1274 memcpy(Z_STRVAL_P(result) + Z_STRLEN_P(prefix) + (add_underscore ? 1 : 0), var_name, var_name_len + 1); 1280 /* {{{ proto int extract(array var_array [, int extract_type [, string prefix]]) 1284 zval *var_array, *prefix = NULL; local 1294 if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "a|lz/", &var_array, &extract_type, &prefix) == FAILURE) { 1307 php_error_docref(NULL TSRMLS_CC, E_WARNING, "specified extract type requires the prefix paramete [all...] |
| /PHP_5_5/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);
|
| H A D | xml.c | 1119 void _xml_startNamespaceDeclHandler(void *userData,const XML_Char *prefix, const XML_Char *uri) argument 1127 args[1] = _xml_xmlchar_zval(prefix, 0, parser->target_encoding); 1137 void _xml_endNamespaceDeclHandler(void *userData, const XML_Char *prefix) argument 1145 args[1] = _xml_xmlchar_zval(prefix, 0, parser->target_encoding);
|
| /PHP_5_5/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_5_5/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_5_5/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_5_5/ext/soap/ |
| H A D | php_encoding.c | 304 smart_str prefix = {0}; local 321 smart_str_appendc(&prefix, '#'); 322 smart_str_appends(&prefix, id); 323 smart_str_0(&prefix); 324 id = prefix.c; 327 smart_str_appendl(&prefix, "#ref", 4); 328 smart_str_append_long(&prefix, SOAP_GLOBAL(cur_uniq_ref)); 329 smart_str_0(&prefix); 330 id = prefix.c; 338 smart_str_appendc(&prefix, '#'); 3518 xmlChar* prefix; local 3524 smart_str prefix = {0}; local [all...] |
| /PHP_5_5/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 1151 zval prefix, key, postfix, key_copy; local [all...] |
| /PHP_5_5/ext/fileinfo/libmagic/ |
| H A D | cdf.c | 1093 cdf_dump_sat(const char *prefix, const cdf_sat_t *sat, size_t size) argument 1099 SIZE_T_FORMAT "u: ", prefix, i, i * s);
|