Searched defs:attributes (Results 1 - 5 of 5) sorted by relevance
| /PHP_TRUNK/ext/imap/ |
| H A D | php_imap.c | 1876 Reads the list of mailboxes and returns a full array of objects containing name, attributes, and delimiter */ 1909 add_property_long(mboxob, "attributes", cur->attributes); 2215 add_property_long(mboxob, "attributes", cur->attributes); 4907 PHP_IMAP_EXPORT void mm_list(MAILSTREAM *stream, DTYPE delimiter, char *mailbox, long attributes) argument 4920 IMAPG(imap_folder_objects)->attributes = attributes; 4929 ocur->attributes = attributes; 4954 mm_lsub(MAILSTREAM *stream, DTYPE delimiter, char *mailbox, long attributes) argument [all...] |
| H A D | php_imap.h | 83 long attributes; member in struct:php_imap_mailbox_struct
|
| /PHP_TRUNK/ext/soap/ |
| H A D | php_sdl.h | 77 HashTable *attributes; /* array of sdlAttributePtr */ member in struct:sdlCtx 205 HashTable *attributes; /* array of sdlAttributePtr */ member in struct:_sdlType
|
| /PHP_TRUNK/ext/xml/ |
| H A D | compat.c | 50 _start_element_handler(void *user, const xmlChar *name, const xmlChar **attributes) argument 60 if (attributes) { 61 while (attributes[attno] != NULL) { 65 att_name = (char *)attributes[attno++]; 66 att_value = (char *)attributes[attno++]; 84 parser->h_start_element(parser->user, (const XML_Char *) qualified_name, (const XML_Char **) attributes); 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 138 if (attributes) { 143 att_name = (char *) attributes[y++]; 144 att_prefix = (char *)attributes[ [all...] |
| H A D | xml.c | 771 void _xml_startElementHandler(void *userData, const XML_Char *name, const XML_Char **attributes) argument 774 const char **attrs = (const char **) attributes; 791 while (attributes && *attributes) { 792 att = _xml_decode_tag(parser, attributes[0]); 793 val = xml_utf8_decode(attributes[1], strlen(attributes[1]), &val_len, parser->target_encoding); 797 attributes += 2; 826 attributes = (const XML_Char **) attrs; 828 while (attributes [all...] |
Completed in 14 milliseconds