schema             47 ext/oci8/oci8_collection.c php_oci_collection *php_oci_collection_create(php_oci_connection *connection, char *tdo, int tdo_len, char *schema, int schema_len)
schema             67 ext/oci8/oci8_collection.c 			 (text *) schema,
schema           2454 ext/oci8/oci8_interface.c 	char *tdo, *schema = NULL;
schema           2457 ext/oci8/oci8_interface.c 	if (zend_parse_parameters(ZEND_NUM_ARGS(), "rs|s", &z_connection, &tdo, &tdo_len, &schema, &schema_len) == FAILURE) {
schema           2463 ext/oci8/oci8_interface.c 	if ( (collection = php_oci_collection_create(connection, tdo, (int) tdo_len, schema, (int) schema_len)) ) {
schema            462 ext/oci8/php_oci8_int.h php_oci_collection *php_oci_collection_create(php_oci_connection *connection, char *tdo, int tdo_len, char *schema, int schema_len);
schema            319 ext/odbc/php_odbc.c 	ZEND_ARG_INFO(0, schema)
schema           3163 ext/odbc/php_odbc.c 	char *cat = NULL, *schema = NULL, *table = NULL, *type = NULL;
schema           3167 ext/odbc/php_odbc.c 	if (zend_parse_parameters(ZEND_NUM_ARGS(), "r|s!sss", &pv_conn, &cat, &cat_len, &schema, &schema_len, 
schema           3192 ext/odbc/php_odbc.c 	if (table && table_len && schema && schema_len == 0) {
schema           3193 ext/odbc/php_odbc.c 		schema = NULL;
schema           3198 ext/odbc/php_odbc.c 			schema,	SAFE_SQL_NTS(schema), 
schema           3232 ext/odbc/php_odbc.c 	char *cat = NULL, *schema = NULL, *table = NULL, *column = NULL;
schema           3236 ext/odbc/php_odbc.c 	if (zend_parse_parameters(ZEND_NUM_ARGS(), "r|s!sss", &pv_conn, &cat, &cat_len, &schema, &schema_len,
schema           3263 ext/odbc/php_odbc.c 	if (table && table_len && schema && schema_len == 0) {
schema           3264 ext/odbc/php_odbc.c 		schema = NULL;
schema           3269 ext/odbc/php_odbc.c 			schema, (SQLSMALLINT) schema_len,
schema           3304 ext/odbc/php_odbc.c 	char *cat = NULL, *schema, *table, *column;
schema           3308 ext/odbc/php_odbc.c 	if (zend_parse_parameters(ZEND_NUM_ARGS(), "rs!sss", &pv_conn, &cat, &cat_len, &schema, &schema_len,
schema           3334 ext/odbc/php_odbc.c 			schema, SAFE_SQL_NTS(schema),
schema           3510 ext/odbc/php_odbc.c 	char *cat = NULL, *schema = NULL, *table = NULL;
schema           3514 ext/odbc/php_odbc.c 	if (zend_parse_parameters(ZEND_NUM_ARGS(), "rs!ss", &pv_conn, &cat, &cat_len, &schema, &schema_len, &table, &table_len) == FAILURE) {
schema           3539 ext/odbc/php_odbc.c 			schema, SAFE_SQL_NTS(schema), 
schema           3573 ext/odbc/php_odbc.c 	char *cat = NULL, *schema = NULL, *proc = NULL, *col = NULL;
schema           3581 ext/odbc/php_odbc.c 	if (zend_parse_parameters(ZEND_NUM_ARGS(), "r|s!sss", &pv_conn, &cat, &cat_len, &schema, &schema_len, 
schema           3607 ext/odbc/php_odbc.c 			schema, SAFE_SQL_NTS(schema), 
schema           3643 ext/odbc/php_odbc.c 	char *cat = NULL, *schema = NULL, *proc = NULL;
schema           3651 ext/odbc/php_odbc.c 	if (zend_parse_parameters(ZEND_NUM_ARGS(), "r|s!ss", &pv_conn, &cat, &cat_len, &schema, &schema_len, &proc, &proc_len) == FAILURE) {
schema           3676 ext/odbc/php_odbc.c 			schema, SAFE_SQL_NTS(schema), 
schema           3711 ext/odbc/php_odbc.c 	char *cat = NULL, *schema = NULL, *name = NULL;
schema           3716 ext/odbc/php_odbc.c 	if (zend_parse_parameters(ZEND_NUM_ARGS(), "rls!ssl", &pv_conn, &vtype, &cat, &cat_len, &schema, &schema_len,
schema           3747 ext/odbc/php_odbc.c 			schema, SAFE_SQL_NTS(schema), 
schema           3783 ext/odbc/php_odbc.c 	char *cat = NULL, *schema, *name;
schema           3788 ext/odbc/php_odbc.c 	if (zend_parse_parameters(ZEND_NUM_ARGS(), "rs!ssll", &pv_conn, &cat, &cat_len, &schema, &schema_len,
schema           3817 ext/odbc/php_odbc.c 			schema, SAFE_SQL_NTS(schema), 
schema           3853 ext/odbc/php_odbc.c 	char *cat = NULL, *schema = NULL, *table = NULL;
schema           3857 ext/odbc/php_odbc.c 	if (zend_parse_parameters(ZEND_NUM_ARGS(), "rs!ss", &pv_conn, &cat, &cat_len, &schema, &schema_len, &table, &table_len) == FAILURE) {
schema           3882 ext/odbc/php_odbc.c 			schema, SAFE_SQL_NTS(schema), 
schema            102 ext/soap/php_schema.c 		xmlNodePtr schema;
schema            112 ext/soap/php_schema.c 		schema = get_node(doc->children, "schema");
schema            113 ext/soap/php_schema.c 		if (schema == NULL) {
schema            117 ext/soap/php_schema.c 		new_tns = get_attribute(schema->properties, "targetNamespace");
schema            128 ext/soap/php_schema.c 			new_tns = get_attribute(schema->properties, "targetNamespace");
schema            131 ext/soap/php_schema.c 					xmlSetProp(schema, BAD_CAST("targetNamespace"), tns->children->content);
schema            139 ext/soap/php_schema.c 		load_schema(ctx, schema);
schema            163 ext/soap/php_schema.c int load_schema(sdlCtx *ctx, xmlNodePtr schema)
schema            181 ext/soap/php_schema.c 	tns = get_attribute(schema->properties, "targetNamespace");
schema            183 ext/soap/php_schema.c 		tns = xmlSetProp(schema, BAD_CAST("targetNamespace"), BAD_CAST(""));
schema            184 ext/soap/php_schema.c 		xmlNewNs(schema, BAD_CAST(""), NULL);
schema            187 ext/soap/php_schema.c 	trav = schema->children;
schema             25 ext/soap/php_schema.h int load_schema(sdlCtx *ctx, xmlNodePtr schema);
schema            348 ext/soap/php_sdl.c 			xmlNodePtr schema = get_node_ex(root, "schema", XSD_NAMESPACE);
schema            349 ext/soap/php_sdl.c 			if (schema) {
schema            350 ext/soap/php_sdl.c 				load_schema(ctx, schema);
schema            364 ext/xmlreader/php_xmlreader.c 		if (intern->schema) {
schema            365 ext/xmlreader/php_xmlreader.c 			xmlRelaxNGFree((xmlRelaxNGPtr) intern->schema);
schema            366 ext/xmlreader/php_xmlreader.c 			intern->schema = NULL;
schema            487 ext/xmlreader/php_xmlreader.c 	xmlRelaxNGPtr schema = NULL;
schema            504 ext/xmlreader/php_xmlreader.c 			schema =  _xmlreader_get_relaxNG(source, source_len, type, NULL, NULL);
schema            505 ext/xmlreader/php_xmlreader.c 			if (schema) {
schema            506 ext/xmlreader/php_xmlreader.c 				retval = xmlTextReaderRelaxNGSetSchema(intern->ptr, schema);
schema            514 ext/xmlreader/php_xmlreader.c 			if (intern->schema) {
schema            515 ext/xmlreader/php_xmlreader.c 				xmlRelaxNGFree((xmlRelaxNGPtr) intern->schema);
schema            518 ext/xmlreader/php_xmlreader.c 			intern->schema = schema;
schema             49 ext/xmlreader/php_xmlreader.h 	void *schema;