[evolution-data-server/documentation-effort: 3/3] Work in progress, fixing gtk-doc comments.



commit 4197fcbf1a54bce4ff9a7b47ab60802118c6d7b3
Author: Tristan Van Berkom <tristanvb openismus com>
Date:   Wed Nov 13 14:56:40 2013 +0900

    Work in progress, fixing gtk-doc comments.

 addressbook/libedata-book/e-book-backend-cache.h   |   13 +
 .../libedata-book/e-book-backend-db-cache.c        |    3 +
 addressbook/libedata-book/e-book-backend-factory.h |   20 +
 addressbook/libedata-book/e-book-backend-sexp.h    |   13 +
 .../libedata-book/e-book-backend-sqlitedb.c        |  292 ++-
 .../libedata-book/e-book-backend-sqlitedb.h        |   19 +-
 docs/reference/eds/eds-sections.txt                | 4025 ++++++++++++++++++++
 7 files changed, 4314 insertions(+), 71 deletions(-)
---
diff --git a/addressbook/libedata-book/e-book-backend-cache.h 
b/addressbook/libedata-book/e-book-backend-cache.h
index ed0163a..9b21a0f 100644
--- a/addressbook/libedata-book/e-book-backend-cache.h
+++ b/addressbook/libedata-book/e-book-backend-cache.h
@@ -55,12 +55,25 @@ typedef struct _EBookBackendCache EBookBackendCache;
 typedef struct _EBookBackendCacheClass EBookBackendCacheClass;
 typedef struct _EBookBackendCachePrivate EBookBackendCachePrivate;
 
+/**
+ * EBookBackendCache:
+ *
+ * Contains only private data that should be read and manipulated using the
+ * functions below.
+ */
 struct _EBookBackendCache {
+       /*< private >*/
        EFileCache parent;
        EBookBackendCachePrivate *priv;
 };
 
+/**
+ * EBookBackendCacheClass:
+ *
+ * Class structure for the #EBookBackendCache class.
+ */
 struct _EBookBackendCacheClass {
+       /*< private >*/
        EFileCacheClass parent_class;
 };
 
diff --git a/addressbook/libedata-book/e-book-backend-db-cache.c 
b/addressbook/libedata-book/e-book-backend-db-cache.c
index 7bebb09..4d98a84 100644
--- a/addressbook/libedata-book/e-book-backend-db-cache.c
+++ b/addressbook/libedata-book/e-book-backend-db-cache.c
@@ -425,6 +425,8 @@ e_book_backend_db_cache_is_populated (DB *db)
 
 /**
  * e_book_backend_db_cache_set_time:
+ * @db: A Berkeley DB handle
+ * @t: The time in string format
  *
  * Since: 2.26
  **/
@@ -446,6 +448,7 @@ e_book_backend_db_cache_set_time (DB *db,
 
 /**
  * e_book_backend_db_cache_get_time:
+ * @db: A Berkeley DB handle
  *
  * Since: 2.26
  **/
diff --git a/addressbook/libedata-book/e-book-backend-factory.h 
b/addressbook/libedata-book/e-book-backend-factory.h
index 7ae50aa..a8d94ca 100644
--- a/addressbook/libedata-book/e-book-backend-factory.h
+++ b/addressbook/libedata-book/e-book-backend-factory.h
@@ -54,14 +54,34 @@ typedef struct _EBookBackendFactory EBookBackendFactory;
 typedef struct _EBookBackendFactoryClass EBookBackendFactoryClass;
 typedef struct _EBookBackendFactoryPrivate EBookBackendFactoryPrivate;
 
+/**
+ * EBookBackendFactory:
+ *
+ * Contains only private data that should be read and manipulated using the
+ * functions below.
+ */
 struct _EBookBackendFactory {
+       /*< private >*/
        EBackendFactory parent;
        EBookBackendFactoryPrivate *priv;
 };
 
+/**
+ * EBookBackendFactoryClass:
+ * @factory_name: The string identifier for this book backend type
+ * @backend_type: The #GType to use to build #EBookBackends for this factory
+ *
+ * Class structure for the #EBookBackendFactory class.
+ *
+ * Subclasses need to set the factory name and backend type
+ * at initialization, the base class will take care of creating
+ * backends of the specified type on demand.
+ */
 struct _EBookBackendFactoryClass {
+       /*< private >*/
        EBackendFactoryClass parent_class;
 
+       /*< public >*/
        /* Subclasses just need to set these
         * class members, we handle the rest. */
        const gchar *factory_name;
diff --git a/addressbook/libedata-book/e-book-backend-sexp.h b/addressbook/libedata-book/e-book-backend-sexp.h
index 12e5d8d..3dcff67 100644
--- a/addressbook/libedata-book/e-book-backend-sexp.h
+++ b/addressbook/libedata-book/e-book-backend-sexp.h
@@ -57,12 +57,25 @@ typedef struct _EBookBackendSExp EBookBackendSExp;
 typedef struct _EBookBackendSExpClass EBookBackendSExpClass;
 typedef struct _EBookBackendSExpPrivate EBookBackendSExpPrivate;
 
+/**
+ * EBookBackendSexp:
+ *
+ * Contains only private data that should be read and manipulated using the
+ * functions below.
+ */
 struct _EBookBackendSExp {
+       /*< private >*/
        GObject parent;
        EBookBackendSExpPrivate *priv;
 };
 
+/**
+ * EBookBackendSexpClass:
+ *
+ * Class structure for the #EBookBackendSexp class.
+ */
 struct _EBookBackendSExpClass {
+       /*< private >*/
        GObjectClass parent_class;
 };
 
diff --git a/addressbook/libedata-book/e-book-backend-sqlitedb.c 
b/addressbook/libedata-book/e-book-backend-sqlitedb.c
index 1aa66c7..384c6de 100644
--- a/addressbook/libedata-book/e-book-backend-sqlitedb.c
+++ b/addressbook/libedata-book/e-book-backend-sqlitedb.c
@@ -1774,7 +1774,7 @@ summary_fields_add_indexes (GArray *array,
  * @folder_name: name of the address-book
  * @store_vcard: True if the vcard should be stored inside db, if FALSE only the summary fields would be 
stored inside db.
  * @setup: an #ESourceBackendSummarySetup describing how the summary should be setup
- * @error: A location to store any error that may have occurred
+ * @error: (allow-none): A location to store any error that may have occurred.
  *
  * Like e_book_backend_sqlitedb_new(), but allows configuration of which contact fields
  * will be stored for quick reference in the summary. The configuration indicated by
@@ -1873,7 +1873,7 @@ e_book_backend_sqlitedb_new_full (const gchar *path,
  * @folderid: folder id of the address-book
  * @folder_name: name of the address-book
  * @store_vcard: True if the vcard should be stored inside db, if FALSE only the summary fields would be 
stored inside db.
- * @error: A location to store any error that may have occurred.
+ * @error: (allow-none): A location to store any error that may have occurred.
  *
  * If the path for multiple addressbooks are same, the contacts from all addressbooks
  * would be stored in same db in different tables.
@@ -2362,7 +2362,7 @@ insert_contact (EBookBackendSqliteDB *ebsdb,
  * @folderid: folder id
  * @contact: EContact to be added
  * @replace_existing: Whether this contact should replace another contact with the same UID.
- * @error: A location to store any error that may have occurred.
+ * @error: (allow-none): A location to store any error that may have occurred.
  *
  * This is a convenience wrapper for e_book_backend_sqlitedb_new_contacts,
  * which is the preferred means to add or modify multiple contacts when possible.
@@ -2398,7 +2398,7 @@ e_book_backend_sqlitedb_new_contact (EBookBackendSqliteDB *ebsdb,
  * @folderid: folder id
  * @contacts: list of EContacts
  * @replace_existing: Whether this contact should replace another contact with the same UID.
- * @error: A location to store any error that may have occurred.
+ * @error: (allow-none): A location to store any error that may have occurred.
  *
  * Adds or replaces contacts in @ebsdb. If @replace_existing is specified then existing
  * contacts with the same UID will be replaced, otherwise adding an existing contact
@@ -2465,7 +2465,7 @@ e_book_backend_sqlitedb_new_contacts (EBookBackendSqliteDB *ebsdb,
  * @contact: EContact to be added
  * @partial_content: contact does not contain full information. Used when
  * the backend cache's partial information for auto-completion.
- * @error: A location to store any error that may have occurred.
+ * @error: (allow-none): A location to store any error that may have occurred.
  *
  * This is a convenience wrapper for e_book_backend_sqlitedb_add_contacts,
  * which is the preferred means to add multiple contacts when possible.
@@ -2487,16 +2487,15 @@ e_book_backend_sqlitedb_add_contact (EBookBackendSqliteDB *ebsdb,
 }
 
 /**
- * e_book_backend_sqlitedb_add_contacts
- * @ebsdb:
+ * e_book_backend_sqlitedb_add_contacts:
+ * @ebsdb: An #EBookBackendSqliteDB
  * @folderid: folder id
  * @contacts: list of EContacts
  * @partial_content: contact does not contain full information. Used when
  * the backend cache's partial information for auto-completion.
- * @error:
- *
+ * @error: (allow-none): A location to store any error that may have occurred.
  *
- * Returns: TRUE on success.
+ * Returns: %TRUE on success, otherwise %FALSE is returned and @error is set appropriately.
  *
  * Since: 3.2
  *
@@ -2514,8 +2513,14 @@ e_book_backend_sqlitedb_add_contacts (EBookBackendSqliteDB *ebsdb,
 
 /**
  * e_book_backend_sqlitedb_remove_contact:
+ * @ebsdb: An #EBookBackendSqliteDB
+ * @folderid: folder id
+ * @uid: the uid of the contact to remove
+ * @error: (allow-none): A location to store any error that may have occurred.
  *
- * FIXME: Document me.
+ * Removes the contact indicated by @uid from the folder @folderid in @ebsdb.
+ *
+ * Returns: %TRUE on success, otherwise %FALSE is returned and @error is set appropriately.
  *
  * Since: 3.2
  **/
@@ -2584,8 +2589,14 @@ generate_delete_stmt (const gchar *table,
 
 /**
  * e_book_backend_sqlitedb_remove_contacts:
+ * @ebsdb: An #EBookBackendSqliteDB
+ * @folderid: folder id
+ * @uids: a #GSList of uids indicating which contacts to remove
+ * @error: (allow-none): A location to store any error that may have occurred.
  *
- * FIXME: Document me.
+ * Removes the contacts indicated by @uids from the folder @folderid in @ebsdb.
+ *
+ * Returns: %TRUE on success, otherwise %FALSE is returned and @error is set appropriately.
  *
  * Since: 3.2
  **/
@@ -2652,10 +2663,20 @@ contact_found_cb (gpointer ref,
 
 /**
  * e_book_backend_sqlitedb_has_contact:
+ * @ebsdb: An #EBookBackendSqliteDB
+ * @folderid: folder id
+ * @uid: The uid of the contact to check for
+ * @partial_content: This parameter is deprecated and unused.
+ * @error: (allow-none): A location to store any error that may have occurred.
+ *
+ * Checks if a contact bearing the UID indicated by @uid is stored
+ * in @folderid of @ebsdb.
  *
- * FIXME: Document me.
+ * Returns: %TRUE if the the contact exists and there was no error, otherwise %FALSE.
  *
- * Note: The @partial_content is unused here.
+ * <note><para>In order to differentiate an error from a contact which simply
+ * is not stored in @ebsdb, you must pass the @error parameter and check whether
+ * it was set by this function.</para></note>
  *
  * Since: 3.2
  **/
@@ -2709,8 +2730,26 @@ get_vcard_cb (gpointer ref,
 
 /**
  * e_book_backend_sqlitedb_get_contact:
+ * @ebsdb: An #EBookBackendSqliteDB
+ * @folderid: folder id
+ * @uid: The uid of the contact to fetch
+ * @fields_of_interest: (allow-none): A #GHashTable indicating which fields should be included in returned 
contacts
+ * @with_all_required_fields: (out) (allow-none): Whether all of the fields of interest were available
+ * @error: (allow-none): A location to store any error that may have occurred.
+ *
+ * Fetch the #EContact specified by @uid in @folderid of @ebsdb.
  *
- * FIXME: Document me.
+ * <note><para>The @fields_of_interest parameter is a legacy parameter which can
+ * be used to specify that #EContacts with only the %E_CONTACT_UID
+ * and %E_CONTACT_REV fields. The hash table must use g_str_hash()
+ * and g_str_equal() and the keys 'uid' and 'rev' must be present.</para></note>
+ *
+ * <note><para>In order to differentiate an error from a contact which simply
+ * is not stored in @ebsdb, you must pass the @error parameter and check whether
+ * it was set by this function.</para></note>
+ *
+ * Returns: On success the #EContact corresponding to @uid is returned, otherwise %NULL is
+ * returned if there was an error or if no contact was found for @uid.
  *
  * Since: 3.2
  **/
@@ -2810,11 +2849,18 @@ e_book_backend_sqlitedb_is_summary_fields (GHashTable *fields_of_interest)
 /**
  * e_book_backend_sqlitedb_check_summary_fields:
  * @ebsdb: An #EBookBackendSqliteDB
- * @fields_of_interest: A hash table containing the fields of interest
+ * @fields_of_interest: A #GHashTable containing the fields of interest
  * 
  * Checks if all the specified fields are part of the configured summary
  * fields for @ebsdb
  *
+ * <note><para>The @fields_of_interest parameter must use g_str_hash()
+ * and g_str_equal() and the keys in the hash table, specifying contact
+ * fields, should be derived using e_contact_field_name().</para></note>
+ *
+ * Returns: %TRUE if the fields specified in @fields_of_interest are configured
+ * in the summary.
+ *
  * Since: 3.8
  **/
 gboolean
@@ -2907,8 +2953,8 @@ store_data_to_vcard (gpointer ref,
  * @folderid: The folder id
  * @uid: The uid to fetch a vcard for
  * @fields_of_interest: The required fields for this vcard, or %NULL to require all fields.
- * @with_all_required_fields: (allow none) (out): Whether all the required fields are present in the 
returned vcard.
- * @error: A location to store any error that may have occurred.
+ * @with_all_required_fields: (allow-none) (out): Whether all the required fields are present in the 
returned vcard.
+ * @error: (allow-none): A location to store any error that may have occurred.
  *
  * Searches @ebsdb in the context of @folderid for @uid.
  *
@@ -3252,13 +3298,15 @@ e_book_backend_sqlitedb_check_summary_query_locked (EBookBackendSqliteDB *ebsdb,
 
 /**
  * e_book_backend_sqlitedb_check_summary_query:
- * @ebsdb: an #EBookBackendSqliteDB
+ * @ebsdb: An #EBookBackendSqliteDB
  * @query: the query to check
  * @with_list_attrs: Return location to store whether the query touches upon list attributes
  *
  * Checks whether @query contains only checks for the summary fields
  * configured in @ebsdb
  *
+ * Returns: %TRUE if @query contains only fields configured in the summary.
+ *
  * Since: 3.8
  **/
 gboolean
@@ -3279,9 +3327,12 @@ e_book_backend_sqlitedb_check_summary_query (EBookBackendSqliteDB *ebsdb,
 
 /**
  * e_book_backend_sqlitedb_is_summary_query:
+ * @query: the query to check
  *
  * Checks whether the query contains only checks for the default summary fields
  *
+ * Returns: %TRUE if @query contains only fields configured in the summary.
+ *
  * Since: 3.2
  *
  * Deprecated: 3.8: Use e_book_backend_sqlitedb_check_summary_query() instead
@@ -4128,32 +4179,35 @@ book_backend_sqlitedb_search_full (EBookBackendSqliteDB *ebsdb,
  * e_book_backend_sqlitedb_search:
  * @ebsdb: An #EBookBackendSqliteDB
  * @folderid: folder id of the address-book
- * @sexp: search expression; use NULL or an empty string to get all stored
- * contacts.
- * @fields_of_interest: a #GHashTable containing the names of fields to return,
- * or NULL for all.  At the moment if this is non-null, the vcard will be
- * populated with summary fields, else it would return the whole vcard if
- * its stored in the db. [not implemented fully]
- * @searched: (allow none) (out): Whether @ebsdb was capable of searching
+ * @sexp: (allow-none): search expression; use %NULL or an empty string to get all stored contacts.
+ * @fields_of_interest: (allow-none): A #GHashTable indicating which fields should be 
+ * included in the returned contacts
+ * @searched: (allow-none) (out): Whether @ebsdb was capable of searching
  * for the provided query @sexp.
- * @with_all_required_fields: (allow none) (out): Whether all the required
+ * @with_all_required_fields: (allow-none) (out): Whether all the required
  * fields are present in the returned vcards.
- * @error: A location to store any error that may have occurred
+ * @error: (allow-none): A location to store any error that may have occurred.
  *
  * Searching with summary fields is always supported. Search expressions
  * containing any other field is supported only if backend chooses to store
  * the vcard inside the db.
  *
- * Summary fields - uid, rev, nickname, given_name, family_name, file_as
- * email_1, email_2, email_3, email_4, is_list, list_show_addresses, wants_html
+ * If not configured otherwise, the default summary fields include:
+ *   uid, rev, file_as, nickname, full_name, given_name, family_name,
+ *   email, is_list, list_show_addresses, wants_html.
+ *
+ * Summary fields can be configured at addressbook creation time using
+ * the #ESourceBackendSummarySetup source extension.
  *
- * If @ebsdb was incapable of returning vcards with results that satisfy
- * @fields_of_interest, then @with_all_required_fields will be updated to
- * @FALSE and only uid fields will be present in the returned vcards. This
- * can be useful when a summary query succeeds and the returned list can be
- * used to iterate and fetch for full required data from another persistance.
+ * <note><para>The @fields_of_interest parameter is a legacy parameter which can
+ * be used to specify that #EContacts with only the %E_CONTACT_UID
+ * and %E_CONTACT_REV fields. The hash table must use g_str_hash()
+ * and g_str_equal() and the keys 'uid' and 'rev' must be present.</para></note>
  *
- * Returns: List of EbSdbSearchData.
+ * The returned list should be freed with g_slist_free()
+ * and all elements freed with e_book_backend_sqlitedb_search_data_free().
+ *
+ * Returns: (transfer full): A #GSList of #EbSdbSearchData structures.
  *
  * Since: 3.2
  **/
@@ -4235,8 +4289,18 @@ e_book_backend_sqlitedb_search (EBookBackendSqliteDB *ebsdb,
 
 /**
  * e_book_backend_sqlitedb_search_uids:
+ * @ebsdb: An #EBookBackendSqliteDB
+ * @folderid: folder id of the address-book
+ * @sexp: (allow-none): search expression; use %NULL or an empty string to get all stored contacts.
+ * @searched: (allow-none) (out): Whether @ebsdb was capable of searching for the provided query @sexp.
+ * @error: (allow-none): A location to store any error that may have occurred.
+ *
+ * Similar to e_book_backend_sqlitedb_search(), but returns only a list of contact UIDs.
  *
- * FIXME: Document me.
+ * The returned list should be freed with g_slist_free()
+ * and all elements freed with g_free().
+ *
+ * Returns: (transfer full): A #GSList of allocated contact UID strings.
  *
  * Since: 3.2
  **/
@@ -4347,12 +4411,17 @@ get_uids_and_rev_cb (gpointer user_data,
 
 /**
  * e_book_backend_sqlitedb_get_uids_and_rev:
+ * @ebsdb: An #EBookBackendSqliteDB
+ * @folderid: folder id of the address-book
+ * @error: (allow-none): A location to store any error that may have occurred.
  *
  * Gets hash table of all uids (key) and rev (value) pairs stored
  * for each contact in the cache. The hash table should be freed
  * with g_hash_table_destroy(), if not needed anymore. Each key
  * and value is a newly allocated string.
  *
+ * Returns: (transfer full): A #GHashTable of all contact revisions by UID.
+ *
  * Since: 3.4
  **/
 GHashTable *
@@ -4383,8 +4452,17 @@ e_book_backend_sqlitedb_get_uids_and_rev (EBookBackendSqliteDB *ebsdb,
 
 /**
  * e_book_backend_sqlitedb_get_is_populated:
+ * @ebsdb: An #EBookBackendSqliteDB
+ * @folderid: folder id of the address-book
+ * @error: (allow-none): A location to store any error that may have occurred.
+ *
+ * Checks whether the 'is populated' flag is set for @folderid in @ebsdb.
  *
- * FIXME: Document me.
+ * <note><para>In order to differentiate an error from the flag simply being
+ * %FALSE for @ebsdb, you must pass the @error parameter and check whether
+ * it was set by this function.</para></note>
+ *
+ * Returns: Whether the 'is populated' flag is set.
  *
  * Since: 3.2
  **/
@@ -4416,8 +4494,14 @@ e_book_backend_sqlitedb_get_is_populated (EBookBackendSqliteDB *ebsdb,
 
 /**
  * e_book_backend_sqlitedb_set_is_populated:
+ * @ebsdb: An #EBookBackendSqliteDB
+ * @folderid: folder id of the address-book
+ * @populated: The new value for the 'is populated' flag.
+ * @error: (allow-none): A location to store any error that may have occurred.
+ *
+ * Sets the value of the 'is populated' flag for @folderid in @ebsdb.
  *
- * FIXME: Document me.
+ * Returns: %TRUE on success, otherwise %FALSE is returned and @error is set appropriately. 
  *
  * Since: 3.2
  **/
@@ -4464,14 +4548,11 @@ e_book_backend_sqlitedb_set_is_populated (EBookBackendSqliteDB *ebsdb,
  * @folderid: folder id of the address-book
  * @revision_out: (out) (transfer full): The location to return the current
  * revision
- * @error: A location to store any error that may have occurred
+ * @error: (allow-none): A location to store any error that may have occurred.
  *
  * Fetches the current revision for the address-book indicated by @folderid.
  *
- * Upon success, @revision_out will hold the returned revision, otherwise
- * %FALSE will be returned and @error will be updated accordingly.
- *
- * Returns: Whether the revision was successfully fetched.
+ * Returns: %TRUE on success, otherwise %FALSE is returned and @error is set appropriately. 
  *
  * Since: 3.8
  */
@@ -4506,11 +4587,11 @@ e_book_backend_sqlitedb_get_revision (EBookBackendSqliteDB *ebsdb,
  * @ebsdb: An #EBookBackendSqliteDB
  * @folderid: folder id of the address-book
  * @revision: The new revision
- * @error: A location to store any error that may have occurred
+ * @error: (allow-none): A location to store any error that may have occurred.
  *
  * Sets the current revision for the address-book indicated by @folderid to be @revision.
  *
- * Returns: Whether the revision was successfully set.
+ * Returns: %TRUE on success, otherwise %FALSE is returned and @error is set appropriately. 
  *
  * Since: 3.8
  */
@@ -4553,13 +4634,20 @@ e_book_backend_sqlitedb_set_revision (EBookBackendSqliteDB *ebsdb,
 
 /**
  * e_book_backend_sqlitedb_get_has_partial_content 
- * @ebsdb: 
- * @folderid: 
- * @error: 
- * 
+ * @ebsdb: An #EBookBackendSqliteDB
+ * @folderid: folder id of the address-book
+ * @error: (allow-none): A location to store any error that may have occurred.
+ *
+ * Fetches the 'partial content' flag from @folderid in @ebsdb.
+ *
+ * This flag is intended to indicate whether the stored vcards contain the full data or
+ * whether they were downloaded only partially.
+ *
+ * <note><para>In order to differentiate an error from the flag simply being
+ * %FALSE for @ebsdb, you must pass the @error parameter and check whether
+ * it was set by this function.</para></note>
  * 
- * Returns: TRUE if the vcards stored in the db were downloaded partially. It is to indicate
- * the stored vcards does not contain the full data.
+ * Returns: %TRUE if the vcards stored in the db were downloaded partially.
  *
  * Since: 3.2
  **/
@@ -4590,8 +4678,14 @@ e_book_backend_sqlitedb_get_has_partial_content (EBookBackendSqliteDB *ebsdb,
 
 /**
  * e_book_backend_sqlitedb_set_has_partial_content:
+ * @ebsdb: An #EBookBackendSqliteDB
+ * @folderid: folder id of the address-book
+ * @partial_content: new value for the 'partial content' flag
+ * @error: (allow-none): A location to store any error that may have occurred.
+ *
+ * Sets the value of the 'partial content' flag in @folderid of @ebsdb.
  *
- * FIXME: Document me.
+ * Returns: %TRUE on success, otherwise %FALSE is returned and @error is set appropriately. 
  *
  * Since: 3.2
  **/
@@ -4634,8 +4728,18 @@ e_book_backend_sqlitedb_set_has_partial_content (EBookBackendSqliteDB *ebsdb,
 
 /**
  * e_book_backend_sqlitedb_get_contact_bdata:
+ * @ebsdb: An #EBookBackendSqliteDB
+ * @folderid: folder id of the address-book
+ * @uid: The UID of the contact to fetch extra data for.
+ * @error: (allow-none): A location to store any error that may have occurred.
+ *
+ * Fetches extra auxiliary data previously set for @uid.
  *
- * FIXME: Document me.
+ * <note><para>In order to differentiate an error from the @uid simply
+ * not being present in @ebsdb, you must pass the @error parameter and
+ * check whether it was set by this function.</para></note>
+ *
+ * Returns: (transfer full): The extra data previously set for @uid, or %NULL
  *
  * Since: 3.2
  **/
@@ -4672,8 +4776,15 @@ e_book_backend_sqlitedb_get_contact_bdata (EBookBackendSqliteDB *ebsdb,
 
 /**
  * e_book_backend_sqlitedb_set_contact_bdata:
+ * @ebsdb: An #EBookBackendSqliteDB
+ * @folderid: folder id of the address-book
+ * @uid: The UID of the contact to fetch extra data for.
+ * @value: The auxiliary data to set for @uid in @folderid.
+ * @error: (allow-none): A location to store any error that may have occurred.
  *
- * FIXME: Document me.
+ * Sets the extra auxiliary data for the contact indicated by @uid.
+ *
+ * Returns: %TRUE on success, otherwise %FALSE is returned and @error is set appropriately. 
  *
  * Since: 3.2
  **/
@@ -4719,8 +4830,13 @@ e_book_backend_sqlitedb_set_contact_bdata (EBookBackendSqliteDB *ebsdb,
 
 /**
  * e_book_backend_sqlitedb_get_sync_data:
+ * @ebsdb: An #EBookBackendSqliteDB
+ * @folderid: folder id of the address-book
+ * @error: (allow-none): A location to store any error that may have occurred.
+ *
+ * Fetches data previously set with e_book_backend_sqlitedb_set_sync_data() for the given @folderid.
  *
- * FIXME: Document me.
+ * Returns: (transfer full): The data previously set with e_book_backend_sqlitedb_set_sync_data().
  *
  * Since: 3.2
  **/
@@ -4750,8 +4866,14 @@ e_book_backend_sqlitedb_get_sync_data (EBookBackendSqliteDB *ebsdb,
 
 /**
  * e_book_backend_sqlitedb_set_sync_data:
+ * @ebsdb: An #EBookBackendSqliteDB
+ * @folderid: folder id of the address-book
+ * @sync_data: The data to set.
+ * @error: (allow-none): A location to store any error that may have occurred.
+ *
+ * Sets some auxiliary data for the given @folderid in @ebsdb.
  *
- * FIXME: Document me.
+ * Returns: %TRUE on success, otherwise %FALSE is returned and @error is set appropriately. 
  *
  * Since: 3.2
  **/
@@ -4795,8 +4917,15 @@ e_book_backend_sqlitedb_set_sync_data (EBookBackendSqliteDB *ebsdb,
 
 /**
  * e_book_backend_sqlitedb_get_key_value:
+ * @ebsdb: An #EBookBackendSqliteDB
+ * @folderid: folder id of the address-book
+ * @key: the key to fetch a value for
+ * @error: (allow-none): A location to store any error that may have occurred.
+ *
+ * Fetches data previously set with e_book_backend_sqlitedb_set_key_value() for the
+ * given @key in @folderid.
  *
- * FIXME: Document me.
+ * Returns: (transfer full): The data previously set with e_book_backend_sqlitedb_set_key_value().
  *
  * Since: 3.2
  **/
@@ -4828,8 +4957,15 @@ e_book_backend_sqlitedb_get_key_value (EBookBackendSqliteDB *ebsdb,
 
 /**
  * e_book_backend_sqlitedb_set_key_value:
+ * @ebsdb: An #EBookBackendSqliteDB
+ * @folderid: folder id of the address-book
+ * @key: the key to fetch a value for
+ * @value: the value to story for @key in @folderid
+ * @error: (allow-none): A location to store any error that may have occurred.
  *
- * FIXME: Document me.
+ * Sets the auxiliary data @value to be stored in relation to @key in @folderid.
+ *
+ * Returns: %TRUE on success, otherwise %FALSE is returned and @error is set appropriately. 
  *
  * Since: 3.2
  **/
@@ -4875,10 +5011,13 @@ e_book_backend_sqlitedb_set_key_value (EBookBackendSqliteDB *ebsdb,
 
 /**
  * e_book_backend_sqlitedb_get_partially_cached_ids:
+ * @ebsdb: An #EBookBackendSqliteDB
+ * @folderid: folder id of the address-book
+ * @error: (allow-none): A location to store any error that may have occurred.
  *
- * FIXME: Document me.
+ * Obsolete, do not use, this always ends with an error.
  *
- * Note: Obsolete, do not use, it always ends with an error
+ * Returns: %NULL
  *
  * Since: 3.2
  **/
@@ -4909,8 +5048,13 @@ e_book_backend_sqlitedb_get_partially_cached_ids (EBookBackendSqliteDB *ebsdb,
 
 /**
  * e_book_backend_sqlitedb_delete_addressbook:
+ * @ebsdb: An #EBookBackendSqliteDB
+ * @folderid: folder id of the address-book
+ * @error: (allow-none): A location to store any error that may have occurred.
  *
- * FIXME: Document me.
+ * Deletes the addressbook indicated by @folderid in @ebsdb.
+ *
+ * Returns: %TRUE on success, otherwise %FALSE is returned and @error is set appropriately. 
  *
  * Since: 3.2
  **/
@@ -4977,8 +5121,9 @@ rollback:
 
 /**
  * e_book_backend_sqlitedb_search_data_free:
+ * @s_data: An #EbSdbSearchData
  *
- * FIXME: Document me.
+ * Frees an #EbSdbSearchData
  *
  * Since: 3.2
  **/
@@ -4995,8 +5140,15 @@ e_book_backend_sqlitedb_search_data_free (EbSdbSearchData *s_data)
 
 /**
  * e_book_backend_sqlitedb_remove:
+ * @ebsdb: An #EBookBackendSqliteDB
+ * @error: (allow-none): A location to store any error that may have occurred.
+ *
+ * Removes the entire @ebsdb from storage on disk.
+ *
+ * FIXME: it is unclear when it is safe to call this function,
+ * it should probably be deprecated.
  *
- * FIXME: Document me.
+ * Returns: %TRUE on success, otherwise %FALSE is returned and @error is set appropriately.
  *
  * Since: 3.2
  **/
@@ -5121,7 +5273,7 @@ sqlitedb_set_locale_internal (EBookBackendSqliteDB *ebsdb,
  * @ebsdb: An #EBookBackendSqliteDB
  * @folderid: folder id of the address-book
  * @lc_collate: The new locale for the addressbook
- * @error: A location to store any error that may have occurred
+ * @error: (allow-none): A location to store any error that may have occurred.
  *
  * Relocalizes any locale specific data in the specified
  * new @lc_collate locale.
@@ -5208,7 +5360,7 @@ e_book_backend_sqlitedb_set_locale (EBookBackendSqliteDB *ebsdb,
  * @ebsdb: An #EBookBackendSqliteDB
  * @folderid: folder id of the address-book
  * @locale_out: (out) (transfer full): The location to return the current locale
- * @error: A location to store any error that may have occurred
+ * @error: (allow-none): A location to store any error that may have occurred.
  *
  * Fetches the current locale setting for the address-book indicated by @folderid.
  *
@@ -5750,7 +5902,7 @@ cursor_count_position_locked (EBookBackendSqliteDB *ebsdb,
  * @sort_fields: (array length=n_sort_fields): An array of #EContactFields as sort keys in order of priority
  * @sort_types: (array length=n_sort_fields): An array of #EBookCursorSortTypes, one for each field in 
@sort_fields
  * @n_sort_fields: The number of fields to sort results by.
- * @error: A return location to store any error that might be reported.
+ * @error: (allow-none): A location to store any error that may have occurred.
  *
  * Creates a new #EbSdbCursor.
  *
@@ -5880,7 +6032,7 @@ collect_results_for_cursor_cb (gpointer ref,
  * @count: A positive or negative amount of contacts to try and fetch
  * @results: (out) (allow-none) (element-type EbSdbSearchData) (transfer full):
  *   A return location to store the results, or %NULL if %EBSDB_CURSOR_STEP_FETCH is not specified in %flags.
- * @error: A return location to store any error that might be reported.
+ * @error: (allow-none): A location to store any error that may have occurred.
  *
  * Steps @cursor through it's sorted query by a maximum of @count contacts
  * starting from @origin.
@@ -6139,7 +6291,7 @@ e_book_backend_sqlitedb_cursor_set_target_alphabetic_index (EBookBackendSqliteDB
  * @ebsdb: An #EBookBackendSqliteDB
  * @cursor: The #EbSdbCursor
  * @sexp: The new query expression for @cursor
- * @error: A return location to store any error that might be reported.
+ * @error: (allow-none): A location to store any error that may have occurred.
  *
  * Modifies the current query expression for @cursor. This will not
  * modify @cursor's state, but will change the outcome of any further
@@ -6183,7 +6335,7 @@ e_book_backend_sqlitedb_cursor_set_sexp (EBookBackendSqliteDB *ebsdb,
  * @cursor: The #EbSdbCursor
  * @total: (out) (allow-none): A return location to store the total result set for this cursor
  * @position: (out) (allow-none): A return location to store the total results before the cursor value
- * @error: (allow-none): A return location to store any error that might be reported.
+ * @error: (allow-none): A location to store any error that may have occurred.
  *
  * Calculates the @total amount of results for the @cursor's query expression,
  * as well as the current @position of @cursor in the results. @position is
diff --git a/addressbook/libedata-book/e-book-backend-sqlitedb.h 
b/addressbook/libedata-book/e-book-backend-sqlitedb.h
index dd08bc7..8036c1c 100644
--- a/addressbook/libedata-book/e-book-backend-sqlitedb.h
+++ b/addressbook/libedata-book/e-book-backend-sqlitedb.h
@@ -96,18 +96,35 @@ typedef enum {
  * Since: 3.2
  **/
 struct _EBookBackendSqliteDB {
+       /*< private >*/
        GObject parent;
        EBookBackendSqliteDBPrivate *priv;
 };
 
+/**
+ * EBookBackendSqliteDBClass:
+ *
+ * Class structure for the #EBookBackendSqlite class.
+ */
 struct _EBookBackendSqliteDBClass {
+       /*< private >*/
        GObjectClass parent_class;
 };
 
 /**
  * EbSdbSearchData:
+ * @vcard: The the vcard string
+ * @uid: The %E_CONTACT_UID field of this contact
+ * @bdata: Extra data set for this contact.
+ *
+ * This structure is used to represent contacts returned
+ * by the EBookBackendSqliteDB from various functions
+ * such as e_book_backend_sqlitedb_search().
+ *
+ * The @bdata parameter will contain any data previously
+ * set for the given contact with e_book_backend_sqlitedb_set_contact_bdata().
  *
- * FIXME: Document me.
+ * These should be freed with e_book_backend_sqlitedb_search_data_free().
  *
  * Since: 3.2
  **/
diff --git a/docs/reference/eds/eds-sections.txt b/docs/reference/eds/eds-sections.txt
new file mode 100644
index 0000000..50ce89f
--- /dev/null
+++ b/docs/reference/eds/eds-sections.txt
@@ -0,0 +1,4025 @@
+<SECTION>
+<FILE>e-address-western</FILE>
+EAddressWestern
+e_address_western_parse
+e_address_western_free
+</SECTION>
+
+<SECTION>
+<FILE>e-alphabet-index-private</FILE>
+E_ALPHABET_INDEX_LOCAL
+EAlphabetIndex
+</SECTION>
+
+<SECTION>
+<FILE>e-authentication-mediator</FILE>
+<TITLE>EAuthenticationMediator</TITLE>
+EAuthenticationMediator
+EAuthenticationMediatorClass
+e_authentication_mediator_new
+e_authentication_mediator_get_connection
+e_authentication_mediator_get_object_path
+e_authentication_mediator_get_sender
+e_authentication_mediator_wait_for_client_sync
+e_authentication_mediator_wait_for_client
+e_authentication_mediator_wait_for_client_finish
+e_authentication_mediator_dismiss
+<SUBSECTION Standard>
+EAuthenticationMediatorPrivate
+E_AUTHENTICATION_MEDIATOR
+E_AUTHENTICATION_MEDIATOR_CLASS
+E_AUTHENTICATION_MEDIATOR_GET_CLASS
+E_IS_AUTHENTICATION_MEDIATOR
+E_IS_AUTHENTICATION_MEDIATOR_CLASS
+E_TYPE_AUTHENTICATION_MEDIATOR
+e_authentication_mediator_get_type
+</SECTION>
+
+<SECTION>
+<FILE>e-authentication-session</FILE>
+<TITLE>EAuthenticationSession</TITLE>
+EAuthenticationSession
+EAuthenticationSessionClass
+e_authentication_session_error_quark
+e_authentication_session_get_server
+e_authentication_session_get_authenticator
+e_authentication_session_get_source_uid
+e_authentication_session_get_prompt_title
+e_authentication_session_dup_prompt_title
+e_authentication_session_set_prompt_title
+e_authentication_session_get_prompt_message
+e_authentication_session_dup_prompt_message
+e_authentication_session_set_prompt_message
+e_authentication_session_get_prompt_description
+e_authentication_session_dup_prompt_description
+e_authentication_session_set_prompt_description
+e_authentication_session_execute_sync
+e_authentication_session_execute
+e_authentication_session_execute_finish
+e_authentication_session_store_password_sync
+e_authentication_session_store_password
+e_authentication_session_store_password_finish
+e_authentication_session_lookup_password_sync
+e_authentication_session_lookup_password
+e_authentication_session_lookup_password_finish
+e_authentication_session_delete_password_sync
+e_authentication_session_delete_password
+e_authentication_session_delete_password_finish
+E_AUTHENTICATION_SESSION_KEYRING_ERROR
+e_authentication_session_new
+<SUBSECTION Standard>
+EAuthenticationSessionPrivate
+E_AUTHENTICATION_SESSION
+E_AUTHENTICATION_SESSION_CLASS
+E_AUTHENTICATION_SESSION_GET_CLASS
+E_IS_AUTHENTICATION_SESSION
+E_IS_AUTHENTICATION_SESSION_CLASS
+E_TYPE_AUTHENTICATION_SESSION
+e_authentication_session_get_type
+</SECTION>
+
+<SECTION>
+<FILE>e-backend</FILE>
+<TITLE>EBackend</TITLE>
+EBackend
+EBackendClass
+e_backend_get_online
+e_backend_set_online
+e_backend_get_source
+e_backend_ref_connectable
+e_backend_set_connectable
+e_backend_ref_main_context
+e_backend_authenticate_sync
+e_backend_authenticate
+e_backend_authenticate_finish
+e_backend_get_user_prompter
+e_backend_trust_prompt_sync
+e_backend_trust_prompt
+e_backend_trust_prompt_finish
+e_backend_get_destination_address
+e_backend_is_destination_reachable
+<SUBSECTION Standard>
+EBackendPrivate
+E_BACKEND
+E_BACKEND_CLASS
+E_BACKEND_GET_CLASS
+E_IS_BACKEND
+E_IS_BACKEND_CLASS
+E_TYPE_BACKEND
+e_backend_get_type
+</SECTION>
+
+<SECTION>
+<FILE>e-backend-enums</FILE>
+EAuthenticationSessionResult
+EDBusServerExitCode
+ESourcePermissionFlags
+</SECTION>
+
+<SECTION>
+<FILE>e-backend-enumtypes</FILE>
+<SUBSECTION Standard>
+E_TYPE_AUTHENTICATION_SESSION_RESULT
+E_TYPE_DBUS_SERVER_EXIT_CODE
+E_TYPE_SOURCE_PERMISSION_FLAGS
+e_authentication_session_result_get_type
+e_dbus_server_exit_code_get_type
+e_source_permission_flags_get_type
+</SECTION>
+
+<SECTION>
+<FILE>e-backend-factory</FILE>
+<TITLE>EBackendFactory</TITLE>
+EBackendFactory
+EBackendFactoryClass
+e_backend_factory_get_hash_key
+e_backend_factory_new_backend
+<SUBSECTION Standard>
+EBackendFactoryPrivate
+E_BACKEND_FACTORY
+E_BACKEND_FACTORY_CLASS
+E_BACKEND_FACTORY_GET_CLASS
+E_IS_BACKEND_FACTORY
+E_IS_BACKEND_FACTORY_CLASS
+E_TYPE_BACKEND_FACTORY
+e_backend_factory_get_type
+</SECTION>
+
+<SECTION>
+<FILE>e-book</FILE>
+<TITLE>EBook</TITLE>
+EBookCallback
+EBookAsyncCallback
+EBookOpenProgressCallback
+EBookIdCallback
+EBookContactCallback
+EBookListCallback
+EBookBookViewCallback
+EBookEListCallback
+EBookIdAsyncCallback
+EBookContactAsyncCallback
+EBookListAsyncCallback
+EBookBookViewAsyncCallback
+EBookEListAsyncCallback
+EBook
+EBookClass
+e_book_new
+e_book_open
+e_book_async_open
+e_book_open_async
+e_book_remove
+e_book_async_remove
+e_book_remove_async
+e_book_get_required_fields
+e_book_async_get_required_fields
+e_book_get_required_fields_async
+e_book_get_supported_fields
+e_book_async_get_supported_fields
+e_book_get_supported_fields_async
+e_book_get_supported_auth_methods
+e_book_async_get_supported_auth_methods
+e_book_get_supported_auth_methods_async
+e_book_get_contact
+e_book_async_get_contact
+e_book_get_contact_async
+e_book_remove_contact
+e_book_async_remove_contact
+e_book_async_remove_contact_by_id
+e_book_remove_contact_async
+e_book_remove_contact_by_id_async
+e_book_remove_contacts
+e_book_async_remove_contacts
+e_book_remove_contacts_async
+e_book_add_contact
+e_book_async_add_contact
+e_book_add_contact_async
+e_book_commit_contact
+e_book_async_commit_contact
+e_book_commit_contact_async
+e_book_get_book_view
+e_book_async_get_book_view
+e_book_get_book_view_async
+e_book_get_contacts
+e_book_async_get_contacts
+e_book_get_contacts_async
+e_book_get_changes
+e_book_async_get_changes
+e_book_get_changes_async
+e_book_free_change_list
+e_book_get_source
+e_book_get_static_capabilities
+e_book_check_static_capability
+e_book_is_opened
+e_book_is_writable
+e_book_is_online
+e_book_cancel
+e_book_cancel_async_op
+e_book_get_self
+e_book_set_self
+e_book_is_self
+<SUBSECTION Standard>
+EBookPrivate
+E_BOOK
+E_BOOK_CLASS
+E_BOOK_GET_CLASS
+E_IS_BOOK
+E_IS_BOOK_CLASS
+E_TYPE_BOOK
+e_book_get_type
+</SECTION>
+
+<SECTION>
+<FILE>e-book-backend</FILE>
+<TITLE>EBookBackend</TITLE>
+CLIENT_BACKEND_PROPERTY_CAPABILITIES
+BOOK_BACKEND_PROPERTY_REQUIRED_FIELDS
+BOOK_BACKEND_PROPERTY_SUPPORTED_FIELDS
+BOOK_BACKEND_PROPERTY_REVISION
+EBookBackend
+EBookBackendClass
+e_book_backend_get_cache_dir
+e_book_backend_dup_cache_dir
+e_book_backend_set_cache_dir
+e_book_backend_ref_data_book
+e_book_backend_set_data_book
+e_book_backend_ref_proxy_resolver
+e_book_backend_get_registry
+e_book_backend_get_writable
+e_book_backend_set_writable
+e_book_backend_is_opened
+e_book_backend_is_readonly
+e_book_backend_get_backend_property
+e_book_backend_open_sync
+e_book_backend_open
+e_book_backend_open_finish
+e_book_backend_refresh_sync
+e_book_backend_refresh
+e_book_backend_refresh_finish
+e_book_backend_create_contacts_sync
+e_book_backend_create_contacts
+e_book_backend_create_contacts_finish
+e_book_backend_modify_contacts_sync
+e_book_backend_modify_contacts
+e_book_backend_modify_contacts_finish
+e_book_backend_remove_contacts_sync
+e_book_backend_remove_contacts
+e_book_backend_remove_contacts_finish
+e_book_backend_get_contact_sync
+e_book_backend_get_contact
+e_book_backend_get_contact_finish
+e_book_backend_get_contact_list_sync
+e_book_backend_get_contact_list
+e_book_backend_get_contact_list_finish
+e_book_backend_get_contact_list_uids_sync
+e_book_backend_get_contact_list_uids
+e_book_backend_get_contact_list_uids_finish
+e_book_backend_start_view
+e_book_backend_stop_view
+e_book_backend_add_view
+e_book_backend_remove_view
+e_book_backend_list_views
+e_book_backend_notify_update
+e_book_backend_notify_remove
+e_book_backend_notify_complete
+e_book_backend_notify_error
+e_book_backend_notify_property_changed
+e_book_backend_get_direct_book
+e_book_backend_configure_direct
+e_book_backend_sync
+e_book_backend_set_locale
+e_book_backend_dup_locale
+e_book_backend_create_cursor
+e_book_backend_delete_cursor
+e_book_backend_prepare_for_completion
+<SUBSECTION Standard>
+EBookBackendPrivate
+E_BOOK_BACKEND
+E_BOOK_BACKEND_CLASS
+E_BOOK_BACKEND_GET_CLASS
+E_IS_BOOK_BACKEND
+E_IS_BOOK_BACKEND_CLASS
+E_TYPE_BOOK_BACKEND
+e_book_backend_get_type
+</SECTION>
+
+<SECTION>
+<FILE>e-book-backend-cache</FILE>
+<TITLE>EBookBackendCache</TITLE>
+EBookBackendCache
+EBookBackendCacheClass
+e_book_backend_cache_new
+e_book_backend_cache_get_contact
+e_book_backend_cache_add_contact
+e_book_backend_cache_remove_contact
+e_book_backend_cache_check_contact
+e_book_backend_cache_get_contacts
+e_book_backend_cache_set_populated
+e_book_backend_cache_is_populated
+e_book_backend_cache_set_time
+e_book_backend_cache_get_time
+e_book_backend_cache_search
+<SUBSECTION Standard>
+EBookBackendCachePrivate
+E_BOOK_BACKEND_CACHE
+E_BOOK_BACKEND_CACHE_CLASS
+E_BOOK_BACKEND_CACHE_GET_CLASS
+E_IS_BOOK_BACKEND_CACHE
+E_IS_BOOK_BACKEND_CACHE_CLASS
+E_TYPE_BOOK_BACKEND_CACHE
+e_book_backend_cache_get_type
+</SECTION>
+
+<SECTION>
+<FILE>e-book-backend-db-cache</FILE>
+e_book_backend_db_cache_get_contact
+e_book_backend_db_cache_get_filename
+e_book_backend_db_cache_set_filename
+e_book_backend_db_cache_add_contact
+e_book_backend_db_cache_remove_contact
+e_book_backend_db_cache_check_contact
+e_book_backend_db_cache_get_contacts
+e_book_backend_db_cache_exists
+e_book_backend_db_cache_set_populated
+e_book_backend_db_cache_is_populated
+e_book_backend_db_cache_search
+e_book_backend_db_cache_set_time
+e_book_backend_db_cache_get_time
+</SECTION>
+
+<SECTION>
+<FILE>e-book-backend-factory</FILE>
+<TITLE>EBookBackendFactory</TITLE>
+EBookBackendFactory
+EBookBackendFactoryClass
+<SUBSECTION Standard>
+EBookBackendFactoryPrivate
+E_BOOK_BACKEND_FACTORY
+E_BOOK_BACKEND_FACTORY_CLASS
+E_BOOK_BACKEND_FACTORY_GET_CLASS
+E_IS_BOOK_BACKEND_FACTORY
+E_IS_BOOK_BACKEND_FACTORY_CLASS
+E_TYPE_BOOK_BACKEND_FACTORY
+e_book_backend_factory_get_type
+</SECTION>
+
+<SECTION>
+<FILE>e-book-backend-sexp</FILE>
+<TITLE>EBookBackendSExp</TITLE>
+EBookBackendSExp
+EBookBackendSExpClass
+e_book_backend_sexp_new
+e_book_backend_sexp_text
+e_book_backend_sexp_match_vcard
+e_book_backend_sexp_match_contact
+<SUBSECTION Standard>
+EBookBackendSExpPrivate
+E_BOOK_BACKEND_SEXP
+E_BOOK_BACKEND_SEXP_CLASS
+E_BOOK_BACKEND_SEXP_GET_CLASS
+E_IS_BOOK_BACKEND_SEXP
+E_IS_BOOK_BACKEND_SEXP_CLASS
+E_TYPE_BOOK_BACKEND_SEXP
+e_book_backend_sexp_get_type
+</SECTION>
+
+<SECTION>
+<FILE>e-book-backend-sqlitedb</FILE>
+<TITLE>EBookBackendSqliteDB</TITLE>
+E_BOOK_SDB_ERROR
+EBookSDBError
+EBookBackendSqliteDB
+EBookBackendSqliteDBClass
+EbSdbSearchData
+EbSdbCursorOrigin
+EbSdbCursorStepFlags
+e_book_backend_sqlitedb_error_quark
+e_book_backend_sqlitedb_new
+e_book_backend_sqlitedb_new_full
+e_book_backend_sqlitedb_lock_updates
+e_book_backend_sqlitedb_unlock_updates
+e_book_backend_sqlitedb_ref_collator
+e_book_backend_sqlitedb_new_contact
+e_book_backend_sqlitedb_new_contacts
+e_book_backend_sqlitedb_remove_contact
+e_book_backend_sqlitedb_remove_contacts
+e_book_backend_sqlitedb_has_contact
+e_book_backend_sqlitedb_get_contact
+e_book_backend_sqlitedb_get_vcard_string
+e_book_backend_sqlitedb_search
+e_book_backend_sqlitedb_search_uids
+e_book_backend_sqlitedb_get_uids_and_rev
+e_book_backend_sqlitedb_get_is_populated
+e_book_backend_sqlitedb_set_is_populated
+e_book_backend_sqlitedb_get_revision
+e_book_backend_sqlitedb_set_revision
+e_book_backend_sqlitedb_get_sync_data
+e_book_backend_sqlitedb_set_sync_data
+e_book_backend_sqlitedb_get_key_value
+e_book_backend_sqlitedb_set_key_value
+e_book_backend_sqlitedb_get_contact_bdata
+e_book_backend_sqlitedb_set_contact_bdata
+e_book_backend_sqlitedb_get_has_partial_content
+e_book_backend_sqlitedb_set_has_partial_content
+e_book_backend_sqlitedb_get_partially_cached_ids
+e_book_backend_sqlitedb_delete_addressbook
+e_book_backend_sqlitedb_remove
+e_book_backend_sqlitedb_search_data_free
+e_book_backend_sqlitedb_check_summary_query
+e_book_backend_sqlitedb_check_summary_fields
+e_book_backend_sqlitedb_set_locale
+e_book_backend_sqlitedb_get_locale
+e_book_backend_sqlitedb_cursor_new
+e_book_backend_sqlitedb_cursor_free
+e_book_backend_sqlitedb_cursor_step
+e_book_backend_sqlitedb_cursor_set_target_alphabetic_index
+e_book_backend_sqlitedb_cursor_set_sexp
+e_book_backend_sqlitedb_cursor_calculate
+e_book_backend_sqlitedb_cursor_compare_contact
+e_book_backend_sqlitedb_is_summary_query
+e_book_backend_sqlitedb_is_summary_fields
+e_book_backend_sqlitedb_add_contact
+e_book_backend_sqlitedb_add_contacts
+EbSdbCursor
+<SUBSECTION Standard>
+EBookBackendSqliteDBPrivate
+E_BOOK_BACKEND_SQLITEDB
+E_BOOK_BACKEND_SQLITEDB_CLASS
+E_BOOK_BACKEND_SQLITEDB_GET_CLASS
+E_IS_BOOK_BACKEND_SQLITEDB
+E_IS_BOOK_BACKEND_SQLITEDB_CLASS
+E_TYPE_BOOK_BACKEND_SQLITEDB
+e_book_backend_sqlitedb_get_type
+</SECTION>
+
+<SECTION>
+<FILE>e-book-backend-summary</FILE>
+<TITLE>EBookBackendSummary</TITLE>
+EBookBackendSummary
+EBookBackendSummaryClass
+e_book_backend_summary_new
+e_book_backend_summary_load
+e_book_backend_summary_save
+e_book_backend_summary_add_contact
+e_book_backend_summary_remove_contact
+e_book_backend_summary_check_contact
+e_book_backend_summary_touch
+e_book_backend_summary_is_up_to_date
+e_book_backend_summary_is_summary_query
+e_book_backend_summary_search
+e_book_backend_summary_get_summary_vcard
+<SUBSECTION Standard>
+EBookBackendSummaryPrivate
+E_BOOK_BACKEND_SUMMARY
+E_BOOK_BACKEND_SUMMARY_CLASS
+E_BOOK_BACKEND_SUMMARY_GET_CLASS
+E_IS_BOOK_BACKEND_SUMMARY
+E_IS_BOOK_BACKEND_SUMMARY_CLASS
+E_TYPE_BOOK_BACKEND_SUMMARY
+e_book_backend_summary_get_type
+</SECTION>
+
+<SECTION>
+<FILE>e-book-client</FILE>
+<TITLE>EBookClient</TITLE>
+BOOK_BACKEND_PROPERTY_REQUIRED_FIELDS
+BOOK_BACKEND_PROPERTY_SUPPORTED_FIELDS
+EBookClient
+EBookClientClass
+e_book_client_connect_sync
+e_book_client_connect
+e_book_client_connect_finish
+e_book_client_connect_direct_sync
+e_book_client_connect_direct
+e_book_client_connect_direct_finish
+e_book_client_get_self
+e_book_client_set_self
+e_book_client_is_self
+e_book_client_add_contact
+e_book_client_add_contact_finish
+e_book_client_add_contact_sync
+e_book_client_add_contacts
+e_book_client_add_contacts_finish
+e_book_client_add_contacts_sync
+e_book_client_modify_contact
+e_book_client_modify_contact_finish
+e_book_client_modify_contact_sync
+e_book_client_modify_contacts
+e_book_client_modify_contacts_finish
+e_book_client_modify_contacts_sync
+e_book_client_remove_contact
+e_book_client_remove_contact_finish
+e_book_client_remove_contact_sync
+e_book_client_remove_contact_by_uid
+e_book_client_remove_contact_by_uid_finish
+e_book_client_remove_contact_by_uid_sync
+e_book_client_remove_contacts
+e_book_client_remove_contacts_finish
+e_book_client_remove_contacts_sync
+e_book_client_get_contact
+e_book_client_get_contact_finish
+e_book_client_get_contact_sync
+e_book_client_get_contacts
+e_book_client_get_contacts_finish
+e_book_client_get_contacts_sync
+e_book_client_get_contacts_uids
+e_book_client_get_contacts_uids_finish
+e_book_client_get_contacts_uids_sync
+e_book_client_get_view
+e_book_client_get_view_finish
+e_book_client_get_view_sync
+e_book_client_get_cursor
+e_book_client_get_cursor_finish
+e_book_client_get_cursor_sync
+e_book_client_get_locale
+BOOK_BACKEND_PROPERTY_SUPPORTED_AUTH_METHODS
+e_book_client_new
+<SUBSECTION Standard>
+EBookClientPrivate
+E_BOOK_CLIENT
+E_BOOK_CLIENT_CLASS
+E_BOOK_CLIENT_GET_CLASS
+E_IS_BOOK_CLIENT
+E_IS_BOOK_CLIENT_CLASS
+E_TYPE_BOOK_CLIENT
+e_book_client_get_type
+</SECTION>
+
+<SECTION>
+<FILE>e-book-client-cursor</FILE>
+<TITLE>EBookClientCursor</TITLE>
+EBookClientCursor
+EBookClientCursorClass
+e_book_client_cursor_ref_client
+e_book_client_cursor_get_alphabet
+e_book_client_cursor_get_total
+e_book_client_cursor_get_position
+e_book_client_cursor_set_sexp
+e_book_client_cursor_set_sexp_finish
+e_book_client_cursor_set_sexp_sync
+e_book_client_cursor_step
+e_book_client_cursor_step_finish
+e_book_client_cursor_step_sync
+e_book_client_cursor_set_alphabetic_index
+e_book_client_cursor_set_alphabetic_index_finish
+e_book_client_cursor_set_alphabetic_index_sync
+e_book_client_cursor_get_contact_alphabetic_index
+<SUBSECTION Standard>
+EBookClientCursorPrivate
+E_BOOK_CLIENT_CURSOR
+E_BOOK_CLIENT_CURSOR_CLASS
+E_BOOK_CLIENT_CURSOR_GET_CLASS
+E_IS_BOOK_CLIENT_CURSOR
+E_IS_BOOK_CLIENT_CURSOR_CLASS
+E_TYPE_BOOK_CLIENT_CURSOR
+e_book_client_cursor_get_type
+</SECTION>
+
+<SECTION>
+<FILE>e-book-client-view</FILE>
+<TITLE>EBookClientView</TITLE>
+EBookClientView
+EBookClientViewClass
+e_book_client_view_ref_client
+e_book_client_view_get_connection
+e_book_client_view_get_object_path
+e_book_client_view_is_running
+e_book_client_view_set_fields_of_interest
+e_book_client_view_start
+e_book_client_view_stop
+e_book_client_view_set_flags
+e_book_client_view_get_client
+<SUBSECTION Standard>
+EBookClientViewPrivate
+E_BOOK_CLIENT_VIEW
+E_BOOK_CLIENT_VIEW_CLASS
+E_BOOK_CLIENT_VIEW_GET_CLASS
+E_IS_BOOK_CLIENT_VIEW
+E_IS_BOOK_CLIENT_VIEW_CLASS
+E_TYPE_BOOK_CLIENT_VIEW
+e_book_client_view_get_type
+</SECTION>
+
+<SECTION>
+<FILE>e-book-contacts-types</FILE>
+E_BOOK_CLIENT_ERROR
+EBookClientViewFlags
+EBookClientError
+EDataBookStatus
+EBookViewStatus
+EBookChangeType
+EBookChange
+EBookIndexType
+EBookCursorSortType
+EBookCursorOrigin
+EBookCursorStepFlags
+e_book_client_error_quark
+e_book_client_error_to_string
+e_book_client_error_create
+</SECTION>
+
+<SECTION>
+<FILE>e-book-query</FILE>
+EBookQueryTest
+e_book_query_from_string
+e_book_query_to_string
+e_book_query_ref
+e_book_query_unref
+e_book_query_and
+e_book_query_andv
+e_book_query_or
+e_book_query_orv
+e_book_query_not
+e_book_query_field_exists
+e_book_query_vcard_field_exists
+e_book_query_field_test
+e_book_query_vcard_field_test
+e_book_query_any_field_contains
+e_book_query_copy
+EBookQuery
+<SUBSECTION Standard>
+E_TYPE_BOOK_QUERY
+e_book_query_get_type
+</SECTION>
+
+<SECTION>
+<FILE>e-book-types</FILE>
+E_BOOK_ERROR
+e_book_error_quark
+EBookStatus
+E_BOOK_ERROR_CORBA_EXCEPTION
+</SECTION>
+
+<SECTION>
+<FILE>e-book-view</FILE>
+<TITLE>EBookView</TITLE>
+EBookView
+EBookViewClass
+e_book_view_get_book
+e_book_view_start
+e_book_view_stop
+<SUBSECTION Standard>
+EBookViewPrivate
+E_BOOK_VIEW
+E_BOOK_VIEW_CLASS
+E_BOOK_VIEW_GET_CLASS
+E_IS_BOOK_VIEW
+E_IS_BOOK_VIEW_CLASS
+E_TYPE_BOOK_VIEW
+e_book_view_get_type
+</SECTION>
+
+<SECTION>
+<FILE>e-cal</FILE>
+<TITLE>ECal</TITLE>
+E_TYPE_CAL_SOURCE_TYPE
+E_CAL_SET_MODE_STATUS_ENUM_TYPE
+CAL_MODE_ENUM_TYPE
+ECalSourceType
+ECalSetModeStatus
+ECalLoadState
+EDataCalMode
+ECal
+ECalClass
+e_cal_new
+e_cal_open
+e_cal_open_async
+e_cal_refresh
+e_cal_remove
+e_cal_uri_list
+e_cal_get_source_type
+e_cal_get_load_state
+e_cal_get_source
+e_cal_is_read_only
+e_cal_get_cal_address
+e_cal_get_alarm_email_address
+e_cal_get_ldap_attribute
+e_cal_get_one_alarm_only
+e_cal_get_organizer_must_attend
+e_cal_get_save_schedules
+e_cal_get_static_capability
+e_cal_get_organizer_must_accept
+e_cal_get_refresh_supported
+e_cal_set_mode
+e_cal_get_default_object
+e_cal_get_object
+e_cal_get_objects_for_uid
+e_cal_get_changes
+e_cal_free_change_list
+e_cal_get_object_list
+e_cal_get_object_list_as_comp
+e_cal_free_object_list
+e_cal_get_free_busy
+e_cal_generate_instances
+e_cal_generate_instances_for_object
+e_cal_get_alarms_in_range
+e_cal_free_alarms
+e_cal_get_alarms_for_object
+e_cal_create_object
+e_cal_modify_object
+e_cal_remove_object
+e_cal_remove_object_with_mod
+e_cal_discard_alarm
+e_cal_receive_objects
+e_cal_send_objects
+e_cal_get_timezone
+e_cal_add_timezone
+e_cal_set_default_timezone
+e_cal_get_query
+e_cal_resolve_tzid_cb
+e_cal_get_component_as_string
+e_cal_get_error_message
+e_cal_get_local_attachment_store
+e_cal_get_recurrences_no_master
+e_cal_get_attachments_for_comp
+<SUBSECTION Standard>
+ECalPrivate
+E_CAL
+E_CAL_CLASS
+E_IS_CAL
+E_IS_CAL_CLASS
+E_TYPE_CAL
+cal_mode_enum_get_type
+e_cal_get_type
+e_cal_set_mode_status_enum_get_type
+e_cal_source_type_enum_get_type
+</SECTION>
+
+<SECTION>
+<FILE>e-cal-backend</FILE>
+<TITLE>ECalBackend</TITLE>
+CLIENT_BACKEND_PROPERTY_CAPABILITIES
+CAL_BACKEND_PROPERTY_CAL_EMAIL_ADDRESS
+CAL_BACKEND_PROPERTY_ALARM_EMAIL_ADDRESS
+CAL_BACKEND_PROPERTY_DEFAULT_OBJECT
+CAL_BACKEND_PROPERTY_REVISION
+ECalBackend
+ECalBackendClass
+e_cal_backend_get_kind
+e_cal_backend_ref_data_cal
+e_cal_backend_set_data_cal
+e_cal_backend_ref_proxy_resolver
+e_cal_backend_get_registry
+e_cal_backend_get_writable
+e_cal_backend_set_writable
+e_cal_backend_is_opened
+e_cal_backend_is_readonly
+e_cal_backend_get_cache_dir
+e_cal_backend_dup_cache_dir
+e_cal_backend_set_cache_dir
+e_cal_backend_create_cache_filename
+e_cal_backend_add_view
+e_cal_backend_remove_view
+e_cal_backend_list_views
+e_cal_backend_get_backend_property
+e_cal_backend_open_sync
+e_cal_backend_open
+e_cal_backend_open_finish
+e_cal_backend_refresh_sync
+e_cal_backend_refresh
+e_cal_backend_refresh_finish
+e_cal_backend_get_object_sync
+e_cal_backend_get_object
+e_cal_backend_get_object_finish
+e_cal_backend_get_object_list_sync
+e_cal_backend_get_object_list
+e_cal_backend_get_object_list_finish
+e_cal_backend_get_free_busy_sync
+e_cal_backend_get_free_busy
+e_cal_backend_get_free_busy_finish
+e_cal_backend_create_objects_sync
+e_cal_backend_create_objects
+e_cal_backend_create_objects_finish
+e_cal_backend_modify_objects_sync
+e_cal_backend_modify_objects
+e_cal_backend_modify_objects_finish
+e_cal_backend_remove_objects_sync
+e_cal_backend_remove_objects
+e_cal_backend_remove_objects_finish
+e_cal_backend_receive_objects_sync
+e_cal_backend_receive_objects
+e_cal_backend_receive_objects_finish
+e_cal_backend_send_objects_sync
+e_cal_backend_send_objects
+e_cal_backend_send_objects_finish
+e_cal_backend_get_attachment_uris_sync
+e_cal_backend_get_attachment_uris
+e_cal_backend_get_attachment_uris_finish
+e_cal_backend_discard_alarm_sync
+e_cal_backend_discard_alarm
+e_cal_backend_discard_alarm_finish
+e_cal_backend_get_timezone_sync
+e_cal_backend_get_timezone
+e_cal_backend_get_timezone_finish
+e_cal_backend_add_timezone_sync
+e_cal_backend_add_timezone
+e_cal_backend_add_timezone_finish
+e_cal_backend_start_view
+e_cal_backend_stop_view
+e_cal_backend_notify_component_created
+e_cal_backend_notify_component_modified
+e_cal_backend_notify_component_removed
+e_cal_backend_notify_error
+e_cal_backend_notify_property_changed
+e_cal_backend_empty_cache
+e_cal_backend_prepare_for_completion
+<SUBSECTION Standard>
+ECalBackendPrivate
+E_CAL_BACKEND
+E_CAL_BACKEND_CLASS
+E_CAL_BACKEND_GET_CLASS
+E_IS_CAL_BACKEND
+E_IS_CAL_BACKEND_CLASS
+E_TYPE_CAL_BACKEND
+e_cal_backend_get_type
+</SECTION>
+
+<SECTION>
+<FILE>e-cal-backend-cache</FILE>
+<TITLE>ECalBackendCache</TITLE>
+ECalBackendCache
+ECalBackendCacheClass
+e_cal_backend_cache_new
+e_cal_backend_cache_get_component
+e_cal_backend_cache_put_component
+e_cal_backend_cache_remove_component
+e_cal_backend_cache_get_components
+e_cal_backend_cache_get_components_by_uid
+e_cal_backend_cache_get_timezone
+e_cal_backend_cache_put_timezone
+e_cal_backend_cache_put_default_timezone
+e_cal_backend_cache_get_default_timezone
+e_cal_backend_cache_get_keys
+e_cal_backend_cache_get_marker
+e_cal_backend_cache_set_marker
+e_cal_backend_cache_put_server_utc_time
+e_cal_backend_cache_get_server_utc_time
+e_cal_backend_cache_put_key_value
+e_cal_backend_cache_get_key_value
+e_cal_backend_cache_remove
+<SUBSECTION Standard>
+ECalBackendCachePrivate
+E_CAL_BACKEND_CACHE
+E_CAL_BACKEND_CACHE_CLASS
+E_CAL_BACKEND_CACHE_GET_CLASS
+E_IS_CAL_BACKEND_CACHE
+E_IS_CAL_BACKEND_CACHE_CLASS
+E_TYPE_CAL_BACKEND_CACHE
+e_cal_backend_cache_get_type
+</SECTION>
+
+<SECTION>
+<FILE>e-cal-backend-factory</FILE>
+<TITLE>ECalBackendFactory</TITLE>
+ECalBackendFactory
+ECalBackendFactoryClass
+<SUBSECTION Standard>
+ECalBackendFactoryPrivate
+E_CAL_BACKEND_FACTORY
+E_CAL_BACKEND_FACTORY_CLASS
+E_CAL_BACKEND_FACTORY_GET_CLASS
+E_IS_CAL_BACKEND_FACTORY
+E_IS_CAL_BACKEND_FACTORY_CLASS
+E_TYPE_CAL_BACKEND_FACTORY
+e_cal_backend_factory_get_type
+</SECTION>
+
+<SECTION>
+<FILE>e-cal-backend-intervaltree</FILE>
+<TITLE>EIntervalTree</TITLE>
+E_INTERVALTREE_DEBUG
+EIntervalTree
+EIntervalTreeClass
+e_intervaltree_new
+e_intervaltree_insert
+e_intervaltree_remove
+e_intervaltree_search
+e_intervaltree_destroy
+e_intervaltree_dump
+<SUBSECTION Standard>
+EIntervalTreePrivate
+E_INTERVALTREE
+E_INTERVALTREE_CLASS
+E_INTERVALTREE_GET_CLASS
+E_IS_INTERVALTREE
+E_IS_INTERVALTREE_CLASS
+E_TYPE_INTERVALTREE
+e_intervaltree_get_type
+</SECTION>
+
+<SECTION>
+<FILE>e-cal-backend-sexp</FILE>
+<TITLE>ECalBackendSExp</TITLE>
+ECalBackendSExp
+ECalBackendSExpClass
+e_cal_backend_sexp_new
+e_cal_backend_sexp_text
+e_cal_backend_sexp_match_object
+e_cal_backend_sexp_match_comp
+e_cal_backend_sexp_func_time_now
+e_cal_backend_sexp_func_make_time
+e_cal_backend_sexp_func_time_add_day
+e_cal_backend_sexp_func_time_day_begin
+e_cal_backend_sexp_func_time_day_end
+e_cal_backend_sexp_evaluate_occur_times
+<SUBSECTION Standard>
+ECalBackendSExpPrivate
+E_CAL_BACKEND_SEXP
+E_CAL_BACKEND_SEXP_CLASS
+E_CAL_BACKEND_SEXP_GET_CLASS
+E_IS_CAL_BACKEND_SEXP
+E_IS_CAL_BACKEND_SEXP_CLASS
+E_TYPE_CAL_BACKEND_SEXP
+e_cal_backend_sexp_get_type
+</SECTION>
+
+<SECTION>
+<FILE>e-cal-backend-store</FILE>
+<TITLE>ECalBackendStore</TITLE>
+ECalBackendStore
+ECalBackendStoreClass
+e_cal_backend_store_new
+e_cal_backend_store_get_path
+e_cal_backend_store_ref_timezone_cache
+e_cal_backend_store_load
+e_cal_backend_store_is_loaded
+e_cal_backend_store_clean
+e_cal_backend_store_get_component
+e_cal_backend_store_put_component_with_time_range
+e_cal_backend_store_put_component
+e_cal_backend_store_remove_component
+e_cal_backend_store_has_component
+e_cal_backend_store_get_default_timezone
+e_cal_backend_store_set_default_timezone
+e_cal_backend_store_get_components_by_uid
+e_cal_backend_store_get_components_by_uid_as_ical_string
+e_cal_backend_store_get_components
+e_cal_backend_store_get_components_occuring_in_range
+e_cal_backend_store_get_component_ids
+e_cal_backend_store_get_key_value
+e_cal_backend_store_put_key_value
+e_cal_backend_store_thaw_changes
+e_cal_backend_store_freeze_changes
+e_cal_backend_store_interval_tree_add_comp
+<SUBSECTION Standard>
+ECalBackendStorePrivate
+E_CAL_BACKEND_STORE
+E_CAL_BACKEND_STORE_CLASS
+E_CAL_BACKEND_STORE_GET_CLASS
+E_IS_CAL_BACKEND_STORE
+E_IS_CAL_BACKEND_STORE_CLASS
+E_TYPE_CAL_BACKEND_STORE
+e_cal_backend_store_get_type
+</SECTION>
+
+<SECTION>
+<FILE>e-cal-backend-sync</FILE>
+<TITLE>ECalBackendSync</TITLE>
+ECalBackendSync
+ECalBackendSyncClass
+e_cal_backend_sync_open
+e_cal_backend_sync_refresh
+e_cal_backend_sync_get_object
+e_cal_backend_sync_get_object_list
+e_cal_backend_sync_get_free_busy
+e_cal_backend_sync_create_objects
+e_cal_backend_sync_modify_objects
+e_cal_backend_sync_remove_objects
+e_cal_backend_sync_receive_objects
+e_cal_backend_sync_send_objects
+e_cal_backend_sync_get_attachment_uris
+e_cal_backend_sync_discard_alarm
+e_cal_backend_sync_get_timezone
+e_cal_backend_sync_add_timezone
+<SUBSECTION Standard>
+ECalBackendSyncPrivate
+E_CAL_BACKEND_SYNC
+E_CAL_BACKEND_SYNC_CLASS
+E_CAL_BACKEND_SYNC_GET_CLASS
+E_IS_CAL_BACKEND_SYNC
+E_IS_CAL_BACKEND_SYNC_CLASS
+E_TYPE_CAL_BACKEND_SYNC
+e_cal_backend_sync_get_type
+</SECTION>
+
+<SECTION>
+<FILE>e-cal-backend-util</FILE>
+e_cal_backend_mail_account_get_default
+e_cal_backend_mail_account_is_valid
+e_cal_backend_user_declined
+</SECTION>
+
+<SECTION>
+<FILE>e-cal-check-timezones</FILE>
+e_cal_client_check_timezones
+e_cal_client_tzlookup
+e_cal_client_tzlookup_icomp
+e_cal_match_tzid
+e_cal_check_timezones
+e_cal_tzlookup_ecal
+e_cal_tzlookup_icomp
+</SECTION>
+
+<SECTION>
+<FILE>e-cal-client</FILE>
+<TITLE>ECalClient</TITLE>
+CAL_BACKEND_PROPERTY_CAL_EMAIL_ADDRESS
+CAL_BACKEND_PROPERTY_ALARM_EMAIL_ADDRESS
+CAL_BACKEND_PROPERTY_DEFAULT_OBJECT
+E_CAL_CLIENT_ERROR
+ECalClientError
+ECalClient
+ECalClientClass
+e_cal_client_error_quark
+e_cal_client_error_to_string
+e_cal_client_connect_sync
+e_cal_client_connect
+e_cal_client_connect_finish
+e_cal_client_get_source_type
+e_cal_client_get_local_attachment_store
+e_cal_client_set_default_timezone
+e_cal_client_get_default_timezone
+e_cal_client_check_one_alarm_only
+e_cal_client_check_save_schedules
+e_cal_client_check_organizer_must_attend
+e_cal_client_check_organizer_must_accept
+e_cal_client_check_recurrences_no_master
+e_cal_client_free_icalcomp_slist
+e_cal_client_free_ecalcomp_slist
+e_cal_client_resolve_tzid_cb
+e_cal_client_generate_instances
+e_cal_client_generate_instances_sync
+e_cal_client_generate_instances_for_object
+e_cal_client_generate_instances_for_object_sync
+e_cal_client_get_component_as_string
+e_cal_client_get_default_object
+e_cal_client_get_default_object_finish
+e_cal_client_get_default_object_sync
+e_cal_client_get_object
+e_cal_client_get_object_finish
+e_cal_client_get_object_sync
+e_cal_client_get_objects_for_uid
+e_cal_client_get_objects_for_uid_finish
+e_cal_client_get_objects_for_uid_sync
+e_cal_client_get_object_list
+e_cal_client_get_object_list_finish
+e_cal_client_get_object_list_sync
+e_cal_client_get_object_list_as_comps
+e_cal_client_get_object_list_as_comps_finish
+e_cal_client_get_object_list_as_comps_sync
+e_cal_client_get_free_busy
+e_cal_client_get_free_busy_finish
+e_cal_client_get_free_busy_sync
+e_cal_client_create_object
+e_cal_client_create_object_finish
+e_cal_client_create_object_sync
+e_cal_client_create_objects
+e_cal_client_create_objects_finish
+e_cal_client_create_objects_sync
+e_cal_client_modify_object
+e_cal_client_modify_object_finish
+e_cal_client_modify_object_sync
+e_cal_client_modify_objects
+e_cal_client_modify_objects_finish
+e_cal_client_modify_objects_sync
+e_cal_client_remove_object
+e_cal_client_remove_object_finish
+e_cal_client_remove_object_sync
+e_cal_client_remove_objects
+e_cal_client_remove_objects_finish
+e_cal_client_remove_objects_sync
+e_cal_client_receive_objects
+e_cal_client_receive_objects_finish
+e_cal_client_receive_objects_sync
+e_cal_client_send_objects
+e_cal_client_send_objects_finish
+e_cal_client_send_objects_sync
+e_cal_client_get_attachment_uris
+e_cal_client_get_attachment_uris_finish
+e_cal_client_get_attachment_uris_sync
+e_cal_client_discard_alarm
+e_cal_client_discard_alarm_finish
+e_cal_client_discard_alarm_sync
+e_cal_client_get_view
+e_cal_client_get_view_finish
+e_cal_client_get_view_sync
+e_cal_client_get_timezone
+e_cal_client_get_timezone_finish
+e_cal_client_get_timezone_sync
+e_cal_client_add_timezone
+e_cal_client_add_timezone_finish
+e_cal_client_add_timezone_sync
+e_cal_client_new
+e_cal_client_error_create
+<SUBSECTION Standard>
+ECalClientPrivate
+E_CAL_CLIENT
+E_CAL_CLIENT_CLASS
+E_CAL_CLIENT_GET_CLASS
+E_IS_CAL_CLIENT
+E_IS_CAL_CLIENT_CLASS
+E_TYPE_CAL_CLIENT
+e_cal_client_get_type
+</SECTION>
+
+<SECTION>
+<FILE>e-cal-client-view</FILE>
+<TITLE>ECalClientView</TITLE>
+ECalClientViewFlags
+ECalClientView
+ECalClientViewClass
+e_cal_client_view_ref_client
+e_cal_client_view_get_connection
+e_cal_client_view_get_object_path
+e_cal_client_view_is_running
+e_cal_client_view_set_fields_of_interest
+e_cal_client_view_start
+e_cal_client_view_stop
+e_cal_client_view_set_flags
+e_cal_client_view_get_client
+<SUBSECTION Standard>
+ECalClientViewPrivate
+E_CAL_CLIENT_VIEW
+E_CAL_CLIENT_VIEW_CLASS
+E_CAL_CLIENT_VIEW_GET_CLASS
+E_IS_CAL_CLIENT_VIEW
+E_IS_CAL_CLIENT_VIEW_CLASS
+E_TYPE_CAL_CLIENT_VIEW
+e_cal_client_view_get_type
+</SECTION>
+
+<SECTION>
+<FILE>e-cal-component</FILE>
+<TITLE>ECalComponent</TITLE>
+ECalComponentId
+ECalComponentVType
+ECalComponentField
+ECalComponentClassification
+ECalComponentDateTime
+ECalComponentPeriodType
+ECalComponentPeriod
+ECalComponentRangeType
+ECalComponentRange
+ECalComponentText
+ECalComponentTransparency
+ECalComponentAttendee
+ECalComponentOrganizer
+ECalComponent
+ECalComponentClass
+e_cal_component_gen_uid
+e_cal_component_new
+e_cal_component_new_from_string
+e_cal_component_new_from_icalcomponent
+e_cal_component_clone
+e_cal_component_set_new_vtype
+e_cal_component_get_icalcomponent
+e_cal_component_set_icalcomponent
+e_cal_component_rescan
+e_cal_component_strip_errors
+e_cal_component_get_vtype
+e_cal_component_get_as_string
+e_cal_component_commit_sequence
+e_cal_component_abort_sequence
+e_cal_component_get_uid
+e_cal_component_set_uid
+e_cal_component_get_id
+e_cal_component_free_id
+e_cal_component_id_new
+e_cal_component_id_copy
+e_cal_component_id_hash
+e_cal_component_id_equal
+e_cal_component_get_categories
+e_cal_component_set_categories
+e_cal_component_get_categories_list
+e_cal_component_set_categories_list
+e_cal_component_get_classification
+e_cal_component_set_classification
+e_cal_component_get_comment_list
+e_cal_component_set_comment_list
+e_cal_component_get_completed
+e_cal_component_set_completed
+e_cal_component_get_contact_list
+e_cal_component_set_contact_list
+e_cal_component_get_created
+e_cal_component_set_created
+e_cal_component_get_description_list
+e_cal_component_set_description_list
+e_cal_component_get_dtend
+e_cal_component_set_dtend
+e_cal_component_get_dtstamp
+e_cal_component_set_dtstamp
+e_cal_component_get_dtstart
+e_cal_component_set_dtstart
+e_cal_component_get_due
+e_cal_component_set_due
+e_cal_component_get_exdate_list
+e_cal_component_set_exdate_list
+e_cal_component_has_exdates
+e_cal_component_get_exrule_list
+e_cal_component_get_exrule_property_list
+e_cal_component_set_exrule_list
+e_cal_component_has_exrules
+e_cal_component_has_exceptions
+e_cal_component_get_geo
+e_cal_component_set_geo
+e_cal_component_get_last_modified
+e_cal_component_set_last_modified
+e_cal_component_get_organizer
+e_cal_component_set_organizer
+e_cal_component_has_organizer
+e_cal_component_get_percent_as_int
+e_cal_component_set_percent_as_int
+e_cal_component_get_percent
+e_cal_component_set_percent
+e_cal_component_get_priority
+e_cal_component_set_priority
+e_cal_component_get_recurid
+e_cal_component_get_recurid_as_string
+e_cal_component_set_recurid
+e_cal_component_get_rdate_list
+e_cal_component_set_rdate_list
+e_cal_component_has_rdates
+e_cal_component_get_rrule_list
+e_cal_component_get_rrule_property_list
+e_cal_component_set_rrule_list
+e_cal_component_has_rrules
+e_cal_component_has_recurrences
+e_cal_component_has_simple_recurrence
+e_cal_component_is_instance
+e_cal_component_get_sequence
+e_cal_component_set_sequence
+e_cal_component_get_status
+e_cal_component_set_status
+e_cal_component_get_summary
+e_cal_component_set_summary
+e_cal_component_get_transparency
+e_cal_component_set_transparency
+e_cal_component_get_url
+e_cal_component_set_url
+e_cal_component_get_attendee_list
+e_cal_component_set_attendee_list
+e_cal_component_has_attendees
+e_cal_component_get_location
+e_cal_component_set_location
+e_cal_component_get_attachment_list
+e_cal_component_set_attachment_list
+e_cal_component_has_attachments
+e_cal_component_get_num_attachments
+e_cal_component_event_dates_match
+e_cal_component_free_categories_list
+e_cal_component_free_datetime
+e_cal_component_free_range
+e_cal_component_free_exdate_list
+e_cal_component_free_geo
+e_cal_component_free_icaltimetype
+e_cal_component_free_percent
+e_cal_component_free_priority
+e_cal_component_free_period_list
+e_cal_component_free_recur_list
+e_cal_component_free_sequence
+e_cal_component_free_text_list
+e_cal_component_free_attendee_list
+ECalComponentAlarmInstance
+ECalComponentAlarms
+ECalComponentAlarmAction
+ECalComponentAlarmTriggerType
+ECalComponentAlarmTrigger
+ECalComponentAlarmRepeat
+e_cal_component_has_alarms
+e_cal_component_add_alarm
+e_cal_component_remove_alarm
+e_cal_component_remove_all_alarms
+e_cal_component_get_alarm_uids
+e_cal_component_get_alarm
+e_cal_component_alarms_free
+e_cal_component_alarm_new
+e_cal_component_alarm_clone
+e_cal_component_alarm_free
+e_cal_component_alarm_get_uid
+e_cal_component_alarm_get_action
+e_cal_component_alarm_set_action
+e_cal_component_alarm_get_attach
+e_cal_component_alarm_set_attach
+e_cal_component_alarm_get_description
+e_cal_component_alarm_set_description
+e_cal_component_alarm_get_repeat
+e_cal_component_alarm_set_repeat
+e_cal_component_alarm_get_trigger
+e_cal_component_alarm_set_trigger
+e_cal_component_alarm_get_attendee_list
+e_cal_component_alarm_set_attendee_list
+e_cal_component_alarm_has_attendees
+e_cal_component_alarm_get_icalcomponent
+ECalComponentAlarm
+<SUBSECTION Standard>
+ECalComponentPrivate
+E_CAL_COMPONENT
+E_CAL_COMPONENT_CLASS
+E_CAL_COMPONENT_GET_CLASS
+E_IS_CAL_COMPONENT
+E_IS_CAL_COMPONENT_CLASS
+E_TYPE_CAL_COMPONENT
+e_cal_component_get_type
+</SECTION>
+
+<SECTION>
+<FILE>e-cal-recur</FILE>
+ECalRecurInstanceFn
+ECalRecurResolveTimezoneFn
+e_cal_recur_generate_instances
+e_cal_recur_obtain_enddate
+e_cal_recur_ensure_end_dates
+e_cal_get_recur_nth
+e_cal_recur_nth
+</SECTION>
+
+<SECTION>
+<FILE>e-cal-system-timezone</FILE>
+e_cal_system_timezone_get_location
+</SECTION>
+
+<SECTION>
+<FILE>e-cal-time-util</FILE>
+time_days_in_month
+time_day_of_year
+time_day_of_week
+time_is_leap_year
+time_leap_years_up_to
+isodate_from_time_t
+time_from_isodate
+time_add_day
+time_add_week
+time_day_begin
+time_day_end
+time_add_day_with_zone
+time_add_week_with_zone
+time_add_month_with_zone
+time_year_begin_with_zone
+time_month_begin_with_zone
+time_week_begin_with_zone
+time_day_begin_with_zone
+time_day_end_with_zone
+time_to_gdate_with_zone
+icaltimetype_to_tm
+icaltimetype_to_tm_with_zone
+tm_to_icaltimetype
+</SECTION>
+
+<SECTION>
+<FILE>e-cal-types</FILE>
+ECalClientSourceType
+ECalObjModType
+E_CALENDAR_ERROR
+e_calendar_error_quark
+ECalChangeType
+ECalChange
+ECalendarStatus
+E_CALENDAR_STATUS_CORBA_EXCEPTION
+EDataCalObjType
+EDataCalObjModType
+CalObjModType
+CALOBJ_MOD_THIS
+CALOBJ_MOD_THISANDPRIOR
+CALOBJ_MOD_THISANDFUTURE
+CALOBJ_MOD_ALL
+CALOBJ_MOD_ONLY_THIS
+</SECTION>
+
+<SECTION>
+<FILE>e-cal-util</FILE>
+CalObjInstance
+cal_obj_instance_list_free
+cal_obj_uid_list_free
+e_cal_util_new_top_level
+e_cal_util_new_component
+e_cal_util_parse_ics_string
+e_cal_util_parse_ics_file
+e_cal_util_generate_alarms_for_comp
+e_cal_util_generate_alarms_for_list
+e_cal_util_priority_to_string
+e_cal_util_priority_from_string
+e_cal_util_add_timezones_from_component
+e_cal_util_component_is_instance
+e_cal_util_component_has_alarms
+e_cal_util_component_has_organizer
+e_cal_util_component_has_recurrences
+e_cal_util_component_has_rdates
+e_cal_util_component_has_rrules
+e_cal_util_component_has_attendee
+e_cal_util_event_dates_match
+CAL_STATIC_CAPABILITY_NO_ALARM_REPEAT
+CAL_STATIC_CAPABILITY_NO_AUDIO_ALARMS
+CAL_STATIC_CAPABILITY_NO_DISPLAY_ALARMS
+CAL_STATIC_CAPABILITY_NO_EMAIL_ALARMS
+CAL_STATIC_CAPABILITY_NO_PROCEDURE_ALARMS
+CAL_STATIC_CAPABILITY_NO_TASK_ASSIGNMENT
+CAL_STATIC_CAPABILITY_NO_THISANDFUTURE
+CAL_STATIC_CAPABILITY_NO_THISANDPRIOR
+CAL_STATIC_CAPABILITY_NO_TRANSPARENCY
+CAL_STATIC_CAPABILITY_ALARM_DESCRIPTION
+CAL_STATIC_CAPABILITY_NO_ALARM_AFTER_START
+CAL_STATIC_CAPABILITY_BULK_ADDS
+CAL_STATIC_CAPABILITY_BULK_MODIFIES
+CAL_STATIC_CAPABILITY_BULK_REMOVES
+CAL_STATIC_CAPABILITY_REMOVE_ONLY_THIS
+CAL_STATIC_CAPABILITY_ONE_ALARM_ONLY
+CAL_STATIC_CAPABILITY_ORGANIZER_MUST_ATTEND
+CAL_STATIC_CAPABILITY_ORGANIZER_NOT_EMAIL_ADDRESS
+CAL_STATIC_CAPABILITY_REMOVE_ALARMS
+CAL_STATIC_CAPABILITY_CREATE_MESSAGES
+CAL_STATIC_CAPABILITY_SAVE_SCHEDULES
+CAL_STATIC_CAPABILITY_NO_CONV_TO_ASSIGN_TASK
+CAL_STATIC_CAPABILITY_NO_CONV_TO_RECUR
+CAL_STATIC_CAPABILITY_NO_GEN_OPTIONS
+CAL_STATIC_CAPABILITY_REQ_SEND_OPTIONS
+CAL_STATIC_CAPABILITY_RECURRENCES_NO_MASTER
+CAL_STATIC_CAPABILITY_ORGANIZER_MUST_ACCEPT
+CAL_STATIC_CAPABILITY_DELEGATE_SUPPORTED
+CAL_STATIC_CAPABILITY_NO_ORGANIZER
+CAL_STATIC_CAPABILITY_DELEGATE_TO_MANY
+CAL_STATIC_CAPABILITY_HAS_UNACCEPTED_MEETING
+CAL_STATIC_CAPABILITY_REFRESH_SUPPORTED
+e_cal_util_construct_instance
+e_cal_util_remove_instances
+e_cal_util_get_system_timezone_location
+e_cal_util_get_system_timezone
+e_cal_util_get_component_occur_times
+CalMode
+cal_mode_to_corba
+</SECTION>
+
+<SECTION>
+<FILE>e-cal-view</FILE>
+<TITLE>ECalView</TITLE>
+ECalView
+ECalViewClass
+e_cal_view_get_client
+e_cal_view_start
+e_cal_view_stop
+<SUBSECTION Standard>
+ECalViewPrivate
+E_CAL_VIEW
+E_CAL_VIEW_CLASS
+E_CAL_VIEW_GET_CLASS
+E_IS_CAL_VIEW
+E_IS_CAL_VIEW_CLASS
+E_TYPE_CAL_VIEW
+e_cal_view_get_type
+</SECTION>
+
+<SECTION>
+<FILE>e-cancellable-locks</FILE>
+e_cancellable_mutex_init
+e_cancellable_mutex_clear
+e_cancellable_mutex_lock
+e_cancellable_mutex_unlock
+e_cancellable_mutex_get_internal_mutex
+e_cancellable_rec_mutex_init
+e_cancellable_rec_mutex_clear
+e_cancellable_rec_mutex_lock
+e_cancellable_rec_mutex_unlock
+ECancellableLocksBase
+ECancellableMutex
+ECancellableRecMutex
+</SECTION>
+
+<SECTION>
+<FILE>e-categories</FILE>
+e_categories_get_list
+e_categories_add
+e_categories_remove
+e_categories_exist
+e_categories_get_icon_file_for
+e_categories_set_icon_file_for
+e_categories_is_searchable
+e_categories_register_change_listener
+e_categories_unregister_change_listener
+</SECTION>
+
+<SECTION>
+<FILE>e-client</FILE>
+<TITLE>EClient</TITLE>
+CLIENT_BACKEND_PROPERTY_ONLINE
+CLIENT_BACKEND_PROPERTY_READONLY
+CLIENT_BACKEND_PROPERTY_CACHE_DIR
+CLIENT_BACKEND_PROPERTY_CAPABILITIES
+CLIENT_BACKEND_PROPERTY_REVISION
+E_CLIENT_ERROR
+e_client_error_quark
+EClientError
+e_client_error_to_string
+EClient
+EClientClass
+e_client_get_source
+e_client_get_capabilities
+e_client_ref_main_context
+e_client_check_capability
+e_client_check_refresh_supported
+e_client_is_readonly
+e_client_is_online
+e_client_get_backend_property
+e_client_get_backend_property_finish
+e_client_get_backend_property_sync
+e_client_refresh
+e_client_refresh_finish
+e_client_refresh_sync
+e_client_util_parse_comma_strings
+CLIENT_BACKEND_PROPERTY_OPENED
+CLIENT_BACKEND_PROPERTY_OPENING
+e_client_error_create
+e_client_is_opened
+e_client_cancel_all
+e_client_unwrap_dbus_error
+e_client_retrieve_capabilities
+e_client_retrieve_capabilities_finish
+e_client_retrieve_capabilities_sync
+e_client_set_backend_property
+e_client_set_backend_property_finish
+e_client_set_backend_property_sync
+e_client_open
+e_client_open_finish
+e_client_open_sync
+e_client_remove
+e_client_remove_finish
+e_client_remove_sync
+e_client_util_slist_to_strv
+e_client_util_strv_to_slist
+e_client_util_copy_string_slist
+e_client_util_copy_object_slist
+e_client_util_free_string_slist
+e_client_util_free_object_slist
+EClientErrorsList
+e_client_util_unwrap_dbus_error
+<SUBSECTION Standard>
+EClientPrivate
+E_CLIENT
+E_CLIENT_CLASS
+E_CLIENT_GET_CLASS
+E_IS_CLIENT
+E_IS_CLIENT_CLASS
+E_TYPE_CLIENT
+e_client_get_type
+</SECTION>
+
+<SECTION>
+<FILE>e-client-private</FILE>
+e_client_set_capabilities
+e_client_set_readonly
+e_client_set_online
+</SECTION>
+
+<SECTION>
+<FILE>e-collator</FILE>
+E_COLLATOR_ERROR
+ECollatorError
+e_collator_error_quark
+e_collator_new
+e_collator_ref
+e_collator_unref
+e_collator_generate_key
+e_collator_generate_key_for_index
+e_collator_collate
+e_collator_get_index_labels
+e_collator_get_index
+ECollator
+<SUBSECTION Standard>
+E_TYPE_COLLATOR
+e_collator_get_type
+</SECTION>
+
+<SECTION>
+<FILE>e-collection-backend</FILE>
+<TITLE>ECollectionBackend</TITLE>
+ECollectionBackend
+ECollectionBackendClass
+e_collection_backend_new_child
+e_collection_backend_ref_proxy_resolver
+e_collection_backend_ref_server
+e_collection_backend_get_cache_dir
+e_collection_backend_dup_resource_id
+e_collection_backend_claim_all_resources
+e_collection_backend_list_calendar_sources
+e_collection_backend_list_contacts_sources
+e_collection_backend_list_mail_sources
+e_collection_backend_create_resource_sync
+e_collection_backend_create_resource
+e_collection_backend_create_resource_finish
+e_collection_backend_delete_resource_sync
+e_collection_backend_delete_resource
+e_collection_backend_delete_resource_finish
+<SUBSECTION Standard>
+ECollectionBackendPrivate
+E_COLLECTION_BACKEND
+E_COLLECTION_BACKEND_CLASS
+E_COLLECTION_BACKEND_GET_CLASS
+E_IS_COLLECTION_BACKEND
+E_IS_COLLECTION_BACKEND_CLASS
+E_TYPE_COLLECTION_BACKEND
+e_collection_backend_get_type
+</SECTION>
+
+<SECTION>
+<FILE>e-collection-backend-factory</FILE>
+<TITLE>ECollectionBackendFactory</TITLE>
+ECollectionBackendFactory
+ECollectionBackendFactoryClass
+e_collection_backend_factory_prepare_mail
+<SUBSECTION Standard>
+ECollectionBackendFactoryPrivate
+E_COLLECTION_BACKEND_FACTORY
+E_COLLECTION_BACKEND_FACTORY_CLASS
+E_COLLECTION_BACKEND_FACTORY_GET_CLASS
+E_IS_COLLECTION_BACKEND_FACTORY
+E_IS_COLLECTION_BACKEND_FACTORY_CLASS
+E_TYPE_COLLECTION_BACKEND_FACTORY
+e_collection_backend_factory_get_type
+</SECTION>
+
+<SECTION>
+<FILE>e-contact</FILE>
+<TITLE>EContact</TITLE>
+EContactField
+EContactName
+EContactGeo
+EContactPhotoType
+EContactPhoto
+EContactAddress
+EContactDate
+EContactCert
+EContact
+EContactClass
+e_contact_new
+e_contact_new_from_vcard
+e_contact_new_from_vcard_with_uid
+e_contact_duplicate
+e_contact_get
+e_contact_get_const
+e_contact_set
+e_contact_get_attributes
+e_contact_set_attributes
+e_contact_date_new
+e_contact_date_from_string
+e_contact_date_to_string
+e_contact_date_equal
+e_contact_date_free
+e_contact_name_new
+e_contact_name_to_string
+e_contact_name_from_string
+e_contact_name_copy
+e_contact_name_free
+e_contact_photo_new
+e_contact_photo_free
+e_contact_photo_copy
+e_contact_photo_get_inlined
+e_contact_photo_set_inlined
+e_contact_photo_get_mime_type
+e_contact_photo_set_mime_type
+e_contact_photo_get_uri
+e_contact_photo_set_uri
+e_contact_inline_local_photos
+e_contact_geo_new
+e_contact_geo_free
+e_contact_cert_new
+e_contact_cert_free
+e_contact_address_new
+e_contact_address_free
+e_contact_attr_list_copy
+e_contact_attr_list_free
+e_contact_field_type
+e_contact_field_name
+e_contact_pretty_name
+e_contact_vcard_attribute
+e_contact_field_id
+e_contact_field_id_from_vcard
+<SUBSECTION Standard>
+EContactPrivate
+E_CONTACT
+E_CONTACT_CLASS
+E_CONTACT_GET_CLASS
+E_IS_CONTACT
+E_IS_CONTACT_CLASS
+E_TYPE_CONTACT
+E_TYPE_CONTACT_ADDRESS
+E_TYPE_CONTACT_ATTR_LIST
+E_TYPE_CONTACT_CERT
+E_TYPE_CONTACT_DATE
+E_TYPE_CONTACT_NAME
+E_TYPE_CONTACT_PHOTO
+e_contact_address_get_type
+e_contact_attr_list_get_type
+e_contact_cert_get_type
+e_contact_date_get_type
+e_contact_geo_get_type
+e_contact_get_type
+e_contact_name_get_type
+e_contact_photo_get_type
+</SECTION>
+
+<SECTION>
+<FILE>e-credentials</FILE>
+ECredentials
+E_CREDENTIALS_KEY_USERNAME
+E_CREDENTIALS_KEY_PASSWORD
+E_CREDENTIALS_KEY_AUTH_METHOD
+E_CREDENTIALS_KEY_PROMPT_TITLE
+E_CREDENTIALS_KEY_PROMPT_TEXT
+E_CREDENTIALS_KEY_PROMPT_REASON
+E_CREDENTIALS_KEY_PROMPT_KEY
+E_CREDENTIALS_KEY_PROMPT_FLAGS
+E_CREDENTIALS_KEY_FOREIGN_REQUEST
+ECredentialsPromptFlags
+e_credentials_new
+e_credentials_new_strv
+e_credentials_new_args
+e_credentials_new_clone
+e_credentials_free
+e_credentials_to_strv
+e_credentials_set
+e_credentials_get
+e_credentials_peek
+e_credentials_equal
+e_credentials_equal_keys
+e_credentials_has_key
+e_credentials_keys_size
+e_credentials_list_keys
+e_credentials_clear
+e_credentials_clear_peek
+e_credentials_util_safe_free_string
+e_credentials_util_prompt_flags_to_string
+e_credentials_util_string_to_prompt_flags
+ECredentialsPrivate
+</SECTION>
+
+<SECTION>
+<FILE>e-data-book</FILE>
+<TITLE>EDataBook</TITLE>
+EDataBook
+EDataBookClass
+e_data_book_error_quark
+E_DATA_BOOK_ERROR
+e_data_book_create_error
+e_data_book_create_error_fmt
+e_data_book_status_to_string
+e_data_book_new
+e_data_book_ref_backend
+e_data_book_get_connection
+e_data_book_get_object_path
+e_data_book_respond_open
+e_data_book_respond_refresh
+e_data_book_respond_create_contacts
+e_data_book_respond_remove_contacts
+e_data_book_respond_modify_contacts
+e_data_book_respond_get_contact
+e_data_book_respond_get_contact_list
+e_data_book_respond_get_contact_list_uids
+e_data_book_report_error
+e_data_book_report_backend_property_changed
+e_data_book_string_slist_to_comma_string
+<SUBSECTION Standard>
+EDataBookPrivate
+E_DATA_BOOK
+E_DATA_BOOK_CLASS
+E_DATA_BOOK_GET_CLASS
+E_IS_DATA_BOOK
+E_IS_DATA_BOOK_CLASS
+E_TYPE_DATA_BOOK
+e_data_book_get_type
+</SECTION>
+
+<SECTION>
+<FILE>e-data-book-cursor</FILE>
+<TITLE>EDataBookCursor</TITLE>
+EDataBookCursorSetSexpFunc
+EDataBookCursorStepFunc
+EDataBookCursorSetAlphabetIndexFunc
+EDataBookCursorGetPositionFunc
+EDataBookCursorCompareContactFunc
+EDataBookCursorLoadLocaleFunc
+EDataBookCursor
+EDataBookCursorClass
+e_data_book_cursor_get_backend
+e_data_book_cursor_get_total
+e_data_book_cursor_get_position
+e_data_book_cursor_set_sexp
+e_data_book_cursor_step
+e_data_book_cursor_set_alphabetic_index
+e_data_book_cursor_recalculate
+e_data_book_cursor_load_locale
+e_data_book_cursor_contact_added
+e_data_book_cursor_contact_removed
+e_data_book_cursor_register_gdbus_object
+<SUBSECTION Standard>
+EDataBookCursorPrivate
+E_DATA_BOOK_CURSOR
+E_DATA_BOOK_CURSOR_CLASS
+E_DATA_BOOK_CURSOR_GET_CLASS
+E_IS_DATA_BOOK_CURSOR
+E_IS_DATA_BOOK_CURSOR_CLASS
+E_TYPE_DATA_BOOK_CURSOR
+e_data_book_cursor_get_type
+</SECTION>
+
+<SECTION>
+<FILE>e-data-book-cursor-sqlite</FILE>
+<TITLE>EDataBookCursorSqlite</TITLE>
+EDataBookCursorSqlite
+EDataBookCursorSqliteClass
+e_data_book_cursor_sqlite_new
+<SUBSECTION Standard>
+EDataBookCursorSqlitePrivate
+E_DATA_BOOK_CURSOR_SQLITE
+E_DATA_BOOK_CURSOR_SQLITE_CLASS
+E_DATA_BOOK_CURSOR_SQLITE_GET_CLASS
+E_IS_DATA_BOOK_CURSOR_SQLITE
+E_IS_DATA_BOOK_CURSOR_SQLITE_CLASS
+E_TYPE_DATA_BOOK_CURSOR_SQLITE
+e_data_book_cursor_sqlite_get_type
+</SECTION>
+
+<SECTION>
+<FILE>e-data-book-direct</FILE>
+<TITLE>EDataBookDirect</TITLE>
+EDataBookDirect
+EDataBookDirectClass
+e_data_book_direct_new
+e_data_book_direct_register_gdbus_object
+<SUBSECTION Standard>
+EDataBookDirectPrivate
+E_DATA_BOOK_DIRECT
+E_DATA_BOOK_DIRECT_CLASS
+E_DATA_BOOK_DIRECT_GET_CLASS
+E_IS_DATA_BOOK_DIRECT
+E_IS_DATA_BOOK_DIRECT_CLASS
+E_TYPE_DATA_BOOK_DIRECT
+e_data_book_direct_get_type
+</SECTION>
+
+<SECTION>
+<FILE>e-data-book-factory</FILE>
+<TITLE>EDataBookFactory</TITLE>
+EDS_ADDRESS_BOOK_MODULES
+EDataBookFactory
+EDataBookFactoryClass
+e_data_book_factory_new
+e_data_book_factory_get_registry
+<SUBSECTION Standard>
+EDataBookFactoryPrivate
+E_DATA_BOOK_FACTORY
+E_DATA_BOOK_FACTORY_CLASS
+E_DATA_BOOK_FACTORY_GET_CLASS
+E_IS_DATA_BOOK_FACTORY
+E_IS_DATA_BOOK_FACTORY_CLASS
+E_TYPE_DATA_BOOK_FACTORY
+e_data_book_factory_get_type
+</SECTION>
+
+<SECTION>
+<FILE>e-data-book-view</FILE>
+<TITLE>EDataBookView</TITLE>
+EDataBookView
+EDataBookViewClass
+e_data_book_view_new
+e_data_book_view_get_backend
+e_data_book_view_get_connection
+e_data_book_view_get_object_path
+e_data_book_view_get_sexp
+e_data_book_view_get_flags
+e_data_book_view_notify_update
+e_data_book_view_notify_update_vcard
+e_data_book_view_notify_update_prefiltered_vcard
+e_data_book_view_notify_remove
+e_data_book_view_notify_complete
+e_data_book_view_notify_progress
+e_data_book_view_get_fields_of_interest
+<SUBSECTION Standard>
+EDataBookViewPrivate
+E_DATA_BOOK_VIEW
+E_DATA_BOOK_VIEW_CLASS
+E_DATA_BOOK_VIEW_GET_CLASS
+E_IS_DATA_BOOK_VIEW
+E_IS_DATA_BOOK_VIEW_CLASS
+E_TYPE_DATA_BOOK_VIEW
+e_data_book_view_get_type
+</SECTION>
+
+<SECTION>
+<FILE>e-data-cal</FILE>
+<TITLE>EDataCal</TITLE>
+E_DATA_CAL_ERROR
+EDataCal
+EDataCalClass
+EDataCalCallStatus
+e_data_cal_error_quark
+e_data_cal_create_error
+e_data_cal_create_error_fmt
+e_data_cal_status_to_string
+e_data_cal_new
+e_data_cal_ref_backend
+e_data_cal_get_connection
+e_data_cal_get_object_path
+e_data_cal_respond_open
+e_data_cal_respond_refresh
+e_data_cal_respond_get_object
+e_data_cal_respond_get_object_list
+e_data_cal_respond_get_free_busy
+e_data_cal_respond_create_objects
+e_data_cal_respond_modify_objects
+e_data_cal_respond_remove_objects
+e_data_cal_respond_receive_objects
+e_data_cal_respond_send_objects
+e_data_cal_respond_get_attachment_uris
+e_data_cal_respond_discard_alarm
+e_data_cal_respond_get_timezone
+e_data_cal_respond_add_timezone
+e_data_cal_report_error
+e_data_cal_report_free_busy_data
+e_data_cal_report_backend_property_changed
+<SUBSECTION Standard>
+EDataCalPrivate
+E_DATA_CAL
+E_DATA_CAL_CLASS
+E_DATA_CAL_GET_CLASS
+E_IS_DATA_CAL
+E_IS_DATA_CAL_CLASS
+E_TYPE_DATA_CAL
+e_data_cal_get_type
+</SECTION>
+
+<SECTION>
+<FILE>e-data-cal-factory</FILE>
+<TITLE>EDataCalFactory</TITLE>
+EDS_CALENDAR_MODULES
+EDataCalFactory
+EDataCalFactoryClass
+e_data_cal_factory_new
+e_data_cal_factory_get_registry
+<SUBSECTION Standard>
+EDataCalFactoryPrivate
+E_DATA_CAL_FACTORY
+E_DATA_CAL_FACTORY_CLASS
+E_DATA_CAL_FACTORY_GET_CLASS
+E_IS_DATA_CAL_FACTORY
+E_IS_DATA_CAL_FACTORY_CLASS
+E_TYPE_DATA_CAL_FACTORY
+e_data_cal_factory_get_type
+</SECTION>
+
+<SECTION>
+<FILE>e-data-cal-view</FILE>
+<TITLE>EDataCalView</TITLE>
+EDataCalView
+EDataCalViewClass
+e_data_cal_view_new
+e_data_cal_view_get_backend
+e_data_cal_view_get_connection
+e_data_cal_view_get_object_path
+e_data_cal_view_get_sexp
+e_data_cal_view_object_matches
+e_data_cal_view_component_matches
+e_data_cal_view_is_started
+e_data_cal_view_is_completed
+e_data_cal_view_is_stopped
+e_data_cal_view_get_fields_of_interest
+e_data_cal_view_get_flags
+e_data_cal_view_get_component_string
+e_data_cal_view_notify_components_added
+e_data_cal_view_notify_components_added_1
+e_data_cal_view_notify_components_modified
+e_data_cal_view_notify_components_modified_1
+e_data_cal_view_notify_objects_removed
+e_data_cal_view_notify_objects_removed_1
+e_data_cal_view_notify_progress
+e_data_cal_view_notify_complete
+<SUBSECTION Standard>
+EDataCalViewPrivate
+E_DATA_CAL_VIEW
+E_DATA_CAL_VIEW_CLASS
+E_DATA_CAL_VIEW_GET_CLASS
+E_IS_DATA_CAL_VIEW
+E_IS_DATA_CAL_VIEW_CLASS
+E_TYPE_DATA_CAL_VIEW
+e_data_cal_view_get_type
+</SECTION>
+
+<SECTION>
+<FILE>e-data-factory</FILE>
+<TITLE>EDataFactory</TITLE>
+EDataFactory
+EDataFactoryClass
+e_data_factory_ref_backend
+e_data_factory_ref_initable_backend
+e_data_factory_ref_backend_factory
+<SUBSECTION Standard>
+EDataFactoryPrivate
+E_DATA_FACTORY
+E_DATA_FACTORY_CLASS
+E_DATA_FACTORY_GET_CLASS
+E_IS_DATA_FACTORY
+E_IS_DATA_FACTORY_CLASS
+E_TYPE_DATA_FACTORY
+e_data_factory_get_type
+</SECTION>
+
+<SECTION>
+<FILE>e-data-server-util</FILE>
+e_get_user_cache_dir
+e_get_user_config_dir
+e_get_user_data_dir
+e_util_strv_equal
+e_util_strdup_strip
+e_util_strstrcase
+e_util_unicode_get_utf8
+e_util_utf8_strstrcase
+e_util_utf8_strstrcasedecomp
+e_util_utf8_strcasecmp
+e_util_utf8_remove_accents
+e_util_utf8_make_valid
+e_util_utf8_data_make_valid
+e_util_utf8_normalize
+e_util_ensure_gdbus_string
+e_util_gthread_id
+e_filename_make_safe
+e_filename_mkdir_encoded
+e_utf8_strftime
+e_strftime
+e_util_slist_to_strv
+e_util_strv_to_slist
+e_util_free_nullable_object_slist
+e_queue_transfer
+e_weak_ref_new
+e_weak_ref_free
+e_file_recursive_delete_sync
+e_file_recursive_delete
+e_file_recursive_delete_finish
+e_binding_transform_enum_value_to_nick
+e_binding_transform_enum_nick_to_value
+e_enum_from_string
+e_enum_to_string
+e_async_closure_new
+e_async_closure_wait
+e_async_closure_free
+e_async_closure_callback
+e_util_get_prefix
+e_util_get_cp_prefix
+e_util_get_localedir
+e_util_replace_prefix
+e_named_parameters_new
+e_named_parameters_new_strv
+e_named_parameters_free
+e_named_parameters_clear
+e_named_parameters_assign
+e_named_parameters_set
+e_named_parameters_get
+e_named_parameters_to_strv
+e_named_parameters_test
+e_named_timeout_add
+e_named_timeout_add_full
+e_named_timeout_add_seconds
+e_named_timeout_add_seconds_full
+e_timeout_add_with_name
+e_timeout_add_seconds_with_name
+e_util_free_string_slist
+e_util_free_object_slist
+e_util_copy_string_slist
+e_util_copy_object_slist
+e_data_server_util_get_dbus_call_timeout
+e_data_server_util_set_dbus_call_timeout
+ENamedParameters
+EAsyncClosure
+tm
+<SUBSECTION Standard>
+e_named_parameters_get_type
+</SECTION>
+
+<SECTION>
+<FILE>e-db3-utils</FILE>
+e_db3_utils_maybe_recover
+e_db3_utils_upgrade_format
+</SECTION>
+
+<SECTION>
+<FILE>e-dbhash</FILE>
+EDbHashStatus
+EDbHash
+EDbHashFunc
+e_dbhash_new
+e_dbhash_add
+e_dbhash_remove
+e_dbhash_compare
+e_dbhash_foreach_key
+e_dbhash_write
+e_dbhash_destroy
+EDbHashPrivate
+</SECTION>
+
+<SECTION>
+<FILE>e-dbus-server</FILE>
+<TITLE>EDBusServer</TITLE>
+EDBusServer
+EDBusServerClass
+e_dbus_server_run
+e_dbus_server_quit
+e_dbus_server_hold
+e_dbus_server_release
+e_dbus_server_load_modules
+<SUBSECTION Standard>
+EDBusServerPrivate
+E_DBUS_SERVER
+E_DBUS_SERVER_CLASS
+E_DBUS_SERVER_GET_CLASS
+E_IS_DBUS_SERVER
+E_IS_DBUS_SERVER_CLASS
+E_TYPE_DBUS_SERVER
+e_dbus_server_get_type
+</SECTION>
+
+<SECTION>
+<FILE>e-debug-log</FILE>
+E_DEBUG_LOG_DOMAIN_USER
+E_DEBUG_LOG_DOMAIN_GLOG
+E_DEBUG_LOG_DOMAIN_CAL_QUERIES
+e_debug_log
+e_debug_logv
+e_debug_log_load_configuration
+e_debug_log_enable_domains
+e_debug_log_disable_domains
+e_debug_log_is_domain_enabled
+e_debug_log_dump
+e_debug_log_dump_to_dated_file
+e_debug_log_set_max_lines
+e_debug_log_get_max_lines
+e_debug_log_clear
+</SECTION>
+
+<SECTION>
+<FILE>e-destination</FILE>
+<TITLE>EDestination</TITLE>
+EDestination
+EDestinationClass
+e_destination_new
+e_destination_copy
+e_destination_empty
+e_destination_equal
+e_destination_set_contact
+e_destination_set_contact_uid
+e_destination_set_client
+e_destination_get_contact
+e_destination_get_source_uid
+e_destination_get_contact_uid
+e_destination_get_email_num
+e_destination_set_name
+e_destination_set_email
+e_destination_get_name
+e_destination_get_email
+e_destination_get_address
+e_destination_is_evolution_list
+e_destination_list_show_addresses
+e_destination_list_get_dests
+e_destination_list_get_root_dests
+e_destination_is_ignored
+e_destination_set_ignored
+e_destination_get_html_mail_pref
+e_destination_set_html_mail_pref
+e_destination_is_auto_recipient
+e_destination_set_auto_recipient
+e_destination_set_raw
+e_destination_get_textrep
+e_destination_get_textrepv
+e_destination_export
+e_destination_exportv
+e_destination_import
+e_destination_importv
+e_destination_export_to_vcard_attribute
+e_destination_freev
+e_destination_set_book
+<SUBSECTION Standard>
+EDestinationPrivate
+E_DESTINATION
+E_DESTINATION_CLASS
+E_DESTINATION_GET_CLASS
+E_IS_DESTINATION
+E_IS_DESTINATION_CLASS
+E_TYPE_DESTINATION
+e_destination_get_type
+</SECTION>
+
+<SECTION>
+<FILE>e-error</FILE>
+e_return_error_if_fail
+e_return_async_error_if_fail
+e_return_async_error_val_if_fail
+e_return_ex_async_error_if_fail
+e_return_ex_async_error_val_if_fail
+</SECTION>
+
+<SECTION>
+<FILE>e-extensible</FILE>
+<TITLE>EExtensible</TITLE>
+EExtensibleInterface
+e_extensible_load_extensions
+e_extensible_list_extensions
+<SUBSECTION Standard>
+E_EXTENSIBLE
+E_EXTENSIBLE_GET_INTERFACE
+E_EXTENSIBLE_INTERFACE
+E_IS_EXTENSIBLE
+E_IS_EXTENSIBLE_INTERFACE
+E_TYPE_EXTENSIBLE
+e_extensible_get_type
+</SECTION>
+
+<SECTION>
+<FILE>e-extension</FILE>
+<TITLE>EExtension</TITLE>
+EExtension
+EExtensionClass
+e_extension_get_extensible
+<SUBSECTION Standard>
+EExtensionPrivate
+E_EXTENSION
+E_EXTENSION_CLASS
+E_EXTENSION_GET_CLASS
+E_IS_EXTENSION
+E_IS_EXTENSION_CLASS
+E_TYPE_EXTENSION
+e_extension_get_type
+</SECTION>
+
+<SECTION>
+<FILE>e-file-cache</FILE>
+<TITLE>EFileCache</TITLE>
+EFileCache
+EFileCacheClass
+e_file_cache_new
+e_file_cache_remove
+e_file_cache_clean
+e_file_cache_get_object
+e_file_cache_get_objects
+e_file_cache_get_keys
+e_file_cache_add_object
+e_file_cache_replace_object
+e_file_cache_remove_object
+e_file_cache_freeze_changes
+e_file_cache_thaw_changes
+e_file_cache_get_filename
+<SUBSECTION Standard>
+EFileCachePrivate
+E_FILE_CACHE
+E_FILE_CACHE_CLASS
+E_FILE_CACHE_GET_CLASS
+E_IS_FILE_CACHE
+E_IS_FILE_CACHE_CLASS
+E_TYPE_FILE_CACHE
+e_file_cache_get_type
+</SECTION>
+
+<SECTION>
+<FILE>e-flag</FILE>
+e_flag_new
+e_flag_is_set
+e_flag_set
+e_flag_clear
+e_flag_wait
+e_flag_wait_until
+e_flag_free
+e_flag_timed_wait
+EFlag
+</SECTION>
+
+<SECTION>
+<FILE>e-gdbus-templates</FILE>
+<TITLE>EGdbusAsyncOpKeeper</TITLE>
+e_gdbus_templates_init_main_thread
+EGdbusAsyncOpKeeperInterface
+e_gdbus_async_op_keeper_create_pending_ops
+e_gdbus_async_op_keeper_get_pending_ops
+e_gdbus_async_op_keeper_cancel_op_sync
+E_DECLARE_GDBUS_ARG
+E_DECLARE_GDBUS_NOTIFY_SIGNAL_0
+E_DECLARE_GDBUS_NOTIFY_SIGNAL_1
+E_DECLARE_GDBUS_NOTIFY_SIGNAL_2
+E_DECLARE_GDBUS_ASYNC_DONE_SIGNAL_0
+E_DECLARE_GDBUS_ASYNC_DONE_SIGNAL_1
+E_DECLARE_GDBUS_SYNC_METHOD_0
+E_DECLARE_GDBUS_SYNC_METHOD_1
+E_DECLARE_GDBUS_SYNC_METHOD_0_WITH_RETURN
+E_DECLARE_GDBUS_SYNC_METHOD_1_WITH_RETURN
+E_DECLARE_GDBUS_ASYNC_METHOD_0
+E_DECLARE_GDBUS_ASYNC_METHOD_1
+E_DECLARE_GDBUS_ASYNC_METHOD_0_WITH_RETURN
+E_DECLARE_GDBUS_ASYNC_METHOD_1_WITH_RETURN
+E_DECLARED_GDBUS_SIGNAL_INFO_NAME
+E_DECLARED_GDBUS_METHOD_INFO_NAME
+E_INIT_GDBUS_SIGNAL_VOID
+E_INIT_GDBUS_SIGNAL_TMPL_TYPED
+E_INIT_GDBUS_SIGNAL_BOOLEAN
+E_INIT_GDBUS_SIGNAL_STRING
+E_INIT_GDBUS_SIGNAL_STRV
+E_INIT_GDBUS_SIGNAL_UINT
+E_INIT_GDBUS_SIGNAL_UINT_STRING
+E_INIT_GDBUS_METHOD_DONE_VOID
+E_INIT_GDBUS_METHOD_DONE_ASYNC_TMPL_TYPED
+E_INIT_GDBUS_METHOD_DONE_BOOLEAN
+E_INIT_GDBUS_METHOD_DONE_STRING
+E_INIT_GDBUS_METHOD_DONE_STRV
+E_INIT_GDBUS_METHOD_DONE_UINT
+E_INIT_GDBUS_METHOD_CALL_TMPL_VOID
+E_INIT_GDBUS_METHOD_CALL_TMPL_TYPED
+E_INIT_GDBUS_METHOD_VOID
+E_INIT_GDBUS_METHOD_BOOLEAN
+E_INIT_GDBUS_METHOD_STRING
+E_INIT_GDBUS_METHOD_STRV
+E_INIT_GDBUS_METHOD_UINT
+E_INIT_GDBUS_METHOD_CALL_VOID
+E_INIT_GDBUS_METHOD_CALL_BOOLEAN
+E_INIT_GDBUS_METHOD_CALL_STRING
+E_INIT_GDBUS_METHOD_CALL_STRV
+E_INIT_GDBUS_METHOD_CALL_UINT
+E_INIT_GDBUS_METHOD_ASYNC_VOID__VOID
+E_INIT_GDBUS_METHOD_ASYNC_VOID__STRING
+E_INIT_GDBUS_METHOD_ASYNC_VOID__STRV
+E_INIT_GDBUS_METHOD_ASYNC_BOOLEAN__VOID
+E_INIT_GDBUS_METHOD_ASYNC_UINT__VOID
+E_INIT_GDBUS_METHOD_ASYNC_STRING__VOID
+E_INIT_GDBUS_METHOD_ASYNC_STRV__VOID
+E_INIT_GDBUS_METHOD_ASYNC_STRING__STRING
+E_INIT_GDBUS_METHOD_ASYNC_STRING__STRV
+E_INIT_GDBUS_METHOD_ASYNC_STRV__STRING
+E_INIT_GDBUS_METHOD_ASYNC_STRV__STRV
+E_DECLARE_GDBUS_SIGNAL_EMISSION_HOOK_VOID
+E_DECLARE_GDBUS_SIGNAL_EMISSION_HOOK_BOOLEAN
+E_DECLARE_GDBUS_SIGNAL_EMISSION_HOOK_STRING
+E_DECLARE_GDBUS_SIGNAL_EMISSION_HOOK_STRV
+E_DECLARE_GDBUS_SIGNAL_EMISSION_HOOK_UINT
+E_DECLARE_GDBUS_SIGNAL_EMISSION_HOOK_UINT_STRING
+E_DECLARE_GDBUS_SIGNAL_EMISSION_HOOK_ASYNC_VOID
+E_DECLARE_GDBUS_SIGNAL_EMISSION_HOOK_ASYNC_BOOLEAN
+E_DECLARE_GDBUS_SIGNAL_EMISSION_HOOK_ASYNC_STRING
+E_DECLARE_GDBUS_SIGNAL_EMISSION_HOOK_ASYNC_STRV
+E_DECLARE_GDBUS_SIGNAL_EMISSION_HOOK_ASYNC_UINT
+E_DECLARE_GDBUS_METHOD_DONE_EMISSION_HOOK_ASYNC_VOID
+E_DECLARE_GDBUS_METHOD_DONE_EMISSION_HOOK_ASYNC_BOOLEAN
+E_DECLARE_GDBUS_METHOD_DONE_EMISSION_HOOK_ASYNC_STRING
+E_DECLARE_GDBUS_METHOD_DONE_EMISSION_HOOK_ASYNC_STRV
+E_DECLARE_GDBUS_METHOD_DONE_EMISSION_HOOK_ASYNC_UINT
+E_GDBUS_CONNECT_METHOD_DONE_SIGNAL_VOID
+E_GDBUS_CONNECT_METHOD_DONE_SIGNAL_BOOLEAN
+E_GDBUS_CONNECT_METHOD_DONE_SIGNAL_STRING
+E_GDBUS_CONNECT_METHOD_DONE_SIGNAL_STRV
+E_GDBUS_CONNECT_METHOD_DONE_SIGNAL_UINT
+e_gdbus_proxy_emit_signal
+e_gdbus_stub_handle_method_call
+e_gdbus_signal_emission_hook_void
+e_gdbus_signal_emission_hook_boolean
+e_gdbus_signal_emission_hook_string
+e_gdbus_signal_emission_hook_strv
+e_gdbus_signal_emission_hook_uint
+e_gdbus_signal_emission_hook_uint_string
+e_gdbus_signal_emission_hook_async_void
+e_gdbus_signal_emission_hook_async_boolean
+e_gdbus_signal_emission_hook_async_string
+e_gdbus_signal_emission_hook_async_strv
+e_gdbus_signal_emission_hook_async_uint
+e_gdbus_complete_async_method
+e_gdbus_complete_sync_method_void
+e_gdbus_complete_sync_method_boolean
+e_gdbus_complete_sync_method_string
+e_gdbus_complete_sync_method_strv
+e_gdbus_complete_sync_method_uint
+e_gdbus_proxy_async_method_done_void
+e_gdbus_proxy_async_method_done_boolean
+e_gdbus_proxy_async_method_done_string
+e_gdbus_proxy_async_method_done_strv
+e_gdbus_proxy_async_method_done_uint
+e_gdbus_proxy_call_void
+e_gdbus_proxy_call_boolean
+e_gdbus_proxy_call_string
+e_gdbus_proxy_call_strv
+e_gdbus_proxy_call_uint
+e_gdbus_proxy_finish_call_void
+e_gdbus_proxy_finish_call_boolean
+e_gdbus_proxy_finish_call_string
+e_gdbus_proxy_finish_call_strv
+e_gdbus_proxy_finish_call_uint
+EGdbusCallStartVoid
+EGdbusCallStartBoolean
+EGdbusCallStartString
+EGdbusCallStartStrv
+EGdbusCallStartUint
+EGdbusCallFinishVoid
+EGdbusCallFinishBoolean
+EGdbusCallFinishString
+EGdbusCallFinishStrv
+EGdbusCallFinishUint
+e_gdbus_proxy_call_sync_void__void
+e_gdbus_proxy_call_sync_void__boolean
+e_gdbus_proxy_call_sync_void__string
+e_gdbus_proxy_call_sync_void__strv
+e_gdbus_proxy_call_sync_void__uint
+e_gdbus_proxy_call_sync_boolean__void
+e_gdbus_proxy_call_sync_string__void
+e_gdbus_proxy_call_sync_strv__void
+e_gdbus_proxy_call_sync_uint__void
+e_gdbus_proxy_call_sync_string__string
+e_gdbus_proxy_call_sync_string__strv
+e_gdbus_proxy_call_sync_strv__string
+e_gdbus_proxy_call_sync_strv__strv
+e_gdbus_proxy_method_call_void
+e_gdbus_proxy_method_call_boolean
+e_gdbus_proxy_method_call_string
+e_gdbus_proxy_method_call_strv
+e_gdbus_proxy_method_call_uint
+e_gdbus_proxy_method_call_finish_void
+e_gdbus_proxy_method_call_finish_boolean
+e_gdbus_proxy_method_call_finish_string
+e_gdbus_proxy_method_call_finish_strv
+e_gdbus_proxy_method_call_finish_uint
+e_gdbus_proxy_method_call_sync_void__void
+e_gdbus_proxy_method_call_sync_boolean__void
+e_gdbus_proxy_method_call_sync_string__void
+e_gdbus_proxy_method_call_sync_strv__void
+e_gdbus_proxy_method_call_sync_uint__void
+e_gdbus_proxy_method_call_sync_string__string
+e_gdbus_proxy_method_call_sync_strv__string
+e_gdbus_templates_encode_error
+e_gdbus_templates_decode_error
+e_gdbus_templates_encode_two_strings
+e_gdbus_templates_decode_two_strings
+<SUBSECTION Standard>
+E_GDBUS_ASYNC_OP_KEEPER
+E_GDBUS_ASYNC_OP_KEEPER_GET_IFACE
+E_IS_GDBUS_ASYNC_OP_KEEPER
+E_TYPE_GDBUS_ASYNC_OP_KEEPER
+e_gdbus_async_op_keeper_get_type
+</SECTION>
+
+<SECTION>
+<FILE>e-iterator</FILE>
+<TITLE>EIterator</TITLE>
+EIterator
+EIteratorClass
+e_iterator_get
+e_iterator_reset
+e_iterator_last
+e_iterator_next
+e_iterator_prev
+e_iterator_delete
+e_iterator_insert
+e_iterator_set
+e_iterator_is_valid
+e_iterator_invalidate
+<SUBSECTION Standard>
+E_IS_ITERATOR
+E_IS_ITERATOR_CLASS
+E_ITERATOR
+E_ITERATOR_CLASS
+E_ITERATOR_GET_CLASS
+E_TYPE_ITERATOR
+e_iterator_get_type
+</SECTION>
+
+<SECTION>
+<FILE>e-list</FILE>
+<TITLE>EList</TITLE>
+EListCopyFunc
+EListFreeFunc
+EList
+EListClass
+e_list_new
+e_list_construct
+e_list_duplicate
+e_list_get_iterator
+e_list_append
+e_list_remove
+e_list_length
+e_list_remove_link
+e_list_remove_iterator
+e_list_invalidate_iterators
+<SUBSECTION Standard>
+E_IS_LIST
+E_IS_LIST_CLASS
+E_LIST
+E_LIST_CLASS
+E_LIST_GET_CLASS
+E_TYPE_LIST
+e_list_get_type
+</SECTION>
+
+<SECTION>
+<FILE>e-list-iterator</FILE>
+<TITLE>EListIterator</TITLE>
+EListIterator
+EListIteratorClass
+e_list_iterator_new
+<SUBSECTION Standard>
+E_IS_LIST_ITERATOR
+E_IS_LIST_ITERATOR_CLASS
+E_LIST_ITERATOR
+E_LIST_ITERATOR_CLASS
+E_LIST_ITERATOR_GET_CLASS
+E_TYPE_LIST_ITERATOR
+e_list_iterator_get_type
+</SECTION>
+
+<SECTION>
+<FILE>e-memory</FILE>
+e_memchunk_new
+e_memchunk_alloc
+e_memchunk_alloc0
+e_memchunk_free
+e_memchunk_empty
+e_memchunk_clean
+e_memchunk_destroy
+EMemChunk
+</SECTION>
+
+<SECTION>
+<FILE>e-module</FILE>
+<TITLE>EModule</TITLE>
+EModule
+EModuleClass
+e_module_new
+e_module_get_filename
+e_module_load_all_in_directory
+ETypeFunc
+e_type_traverse
+<SUBSECTION Standard>
+EModulePrivate
+E_IS_MODULE
+E_IS_MODULE_CLASS
+E_MODULE
+E_MODULE_CLASS
+E_MODULE_GET_CLASS
+E_TYPE_MODULE
+e_module_get_type
+</SECTION>
+
+<SECTION>
+<FILE>e-name-western</FILE>
+ENameWestern
+e_name_western_parse
+e_name_western_free
+</SECTION>
+
+<SECTION>
+<FILE>e-oauth2-support</FILE>
+<TITLE>EOAuth2Support</TITLE>
+EOAuth2SupportInterface
+e_oauth2_support_get_access_token_sync
+e_oauth2_support_get_access_token
+e_oauth2_support_get_access_token_finish
+<SUBSECTION Standard>
+E_IS_OAUTH2_SUPPORT
+E_OAUTH2_SUPPORT
+E_OAUTH2_SUPPORT_GET_INTERFACE
+E_TYPE_OAUTH2_SUPPORT
+e_oauth2_support_get_type
+</SECTION>
+
+<SECTION>
+<FILE>e-offline-listener</FILE>
+<TITLE>EOfflineListener</TITLE>
+EOfflineListenerState
+EOfflineListener
+EOfflineListenerClass
+e_offline_listener_new
+e_offline_listener_get_state
+<SUBSECTION Standard>
+EOfflineListenerPrivate
+E_IS_OFFLINE_LISTENER
+E_IS_OFFLINE_LISTENER_CLASS
+E_OFFLINE_LISTENER
+E_OFFLINE_LISTENER_CLASS
+E_OFFLINE_LISTENER_GET_CLASS
+E_TYPE_OFFLINE_LISTENER
+e_offline_listener_get_type
+</SECTION>
+
+<SECTION>
+<FILE>e-operation-pool</FILE>
+e_operation_pool_new
+e_operation_pool_free
+e_operation_pool_reserve_opid
+e_operation_pool_release_opid
+e_operation_pool_push
+EOperationPool
+</SECTION>
+
+<SECTION>
+<FILE>e-phone-number</FILE>
+E_PHONE_NUMBER_ERROR
+EPhoneNumberFormat
+EPhoneNumberMatch
+EPhoneNumberError
+EPhoneNumberCountrySource
+e_phone_number_error_quark
+e_phone_number_is_supported
+e_phone_number_get_country_code_for_region
+e_phone_number_get_default_region
+e_phone_number_from_string
+e_phone_number_to_string
+e_phone_number_get_country_code
+e_phone_number_get_national_number
+e_phone_number_compare
+e_phone_number_compare_strings
+e_phone_number_compare_strings_with_region
+e_phone_number_copy
+e_phone_number_free
+EPhoneNumber
+<SUBSECTION Standard>
+E_TYPE_PHONE_NUMBER
+e_phone_number_get_type
+</SECTION>
+
+<SECTION>
+<FILE>e-proxy</FILE>
+<TITLE>EProxy</TITLE>
+EProxy
+EProxyClass
+e_proxy_new
+e_proxy_setup_proxy
+e_proxy_peek_uri_for
+e_proxy_require_proxy_for_uri
+<SUBSECTION Standard>
+EProxyPrivate
+E_IS_PROXY
+E_IS_PROXY_CLASS
+E_PROXY
+E_PROXY_CLASS
+E_PROXY_GET_CLASS
+E_TYPE_PROXY
+e_proxy_get_type
+</SECTION>
+
+<SECTION>
+<FILE>e-server-side-source</FILE>
+<TITLE>EServerSideSource</TITLE>
+EServerSideSource
+EServerSideSourceClass
+e_server_side_source_get_user_dir
+e_server_side_source_new_user_file
+e_server_side_source_uid_from_file
+e_server_side_source_new
+e_server_side_source_new_memory_only
+e_server_side_source_load
+e_server_side_source_get_file
+e_server_side_source_get_node
+e_server_side_source_get_server
+e_server_side_source_get_allow_auth_prompt
+e_server_side_source_set_allow_auth_prompt
+e_server_side_source_get_auth_session_type
+e_server_side_source_set_auth_session_type
+e_server_side_source_get_exported
+e_server_side_source_get_write_directory
+e_server_side_source_set_write_directory
+e_server_side_source_set_removable
+e_server_side_source_set_writable
+e_server_side_source_set_remote_creatable
+e_server_side_source_set_remote_deletable
+e_server_side_source_ref_oauth2_support
+e_server_side_source_set_oauth2_support
+<SUBSECTION Standard>
+EServerSideSourcePrivate
+E_IS_SERVER_SIDE_SOURCE
+E_IS_SERVER_SIDE_SOURCE_CLASS
+E_SERVER_SIDE_SOURCE
+E_SERVER_SIDE_SOURCE_CLASS
+E_SERVER_SIDE_SOURCE_GET_CLASS
+E_TYPE_SERVER_SIDE_SOURCE
+e_server_side_source_get_type
+</SECTION>
+
+<SECTION>
+<FILE>e-sexp</FILE>
+<TITLE>ESExp</TITLE>
+ESExpResultType
+ESExpResult
+ESExpTermType
+ESExpSymbol
+ESExpTerm
+ESExp
+ESExpClass
+e_sexp_new
+e_sexp_ref
+e_sexp_unref
+e_sexp_add_function
+e_sexp_add_ifunction
+e_sexp_add_variable
+e_sexp_remove_symbol
+e_sexp_set_scope
+e_sexp_input_text
+e_sexp_input_file
+e_sexp_parse
+e_sexp_eval
+e_sexp_term_eval
+e_sexp_result_new
+e_sexp_result_free
+e_sexp_resultv_free
+e_sexp_encode_bool
+e_sexp_encode_string
+e_sexp_fatal_error
+e_sexp_error
+e_sexp_parse_value
+e_sexp_evaluate_occur_times
+<SUBSECTION Standard>
+E_SEXP
+E_SEXP_CLASS
+E_SEXP_GET_CLASS
+E_TYPE_SEXP
+IS_E_SEXP
+IS_E_SEXP_CLASS
+e_sexp_get_type
+</SECTION>
+
+<SECTION>
+<FILE>e-soup-auth-bearer</FILE>
+<TITLE>ESoupAuthBearer</TITLE>
+ESoupAuthBearer
+ESoupAuthBearerClass
+e_soup_auth_bearer_set_access_token
+<SUBSECTION Standard>
+ESoupAuthBearerPrivate
+E_IS_SOUP_AUTH_BEARER
+E_IS_SOUP_AUTH_BEARER_CLASS
+E_SOUP_AUTH_BEARER
+E_SOUP_AUTH_BEARER_CLASS
+E_SOUP_AUTH_BEARER_GET_CLASS
+E_TYPE_SOUP_AUTH_BEARER
+e_soup_auth_bearer_get_type
+</SECTION>
+
+<SECTION>
+<FILE>e-source</FILE>
+<TITLE>ESource</TITLE>
+E_SOURCE_PARAM_SETTING
+ESource
+ESourceClass
+e_source_new
+e_source_new_with_uid
+e_source_hash
+e_source_equal
+e_source_changed
+e_source_get_uid
+e_source_dup_uid
+e_source_get_parent
+e_source_dup_parent
+e_source_set_parent
+e_source_get_enabled
+e_source_set_enabled
+e_source_get_writable
+e_source_get_removable
+e_source_get_remote_creatable
+e_source_get_remote_deletable
+e_source_get_extension
+e_source_has_extension
+e_source_ref_dbus_object
+e_source_ref_main_context
+e_source_get_display_name
+e_source_dup_display_name
+e_source_set_display_name
+e_source_compare_by_display_name
+e_source_to_string
+e_source_parameter_to_key
+e_source_remove_sync
+e_source_remove
+e_source_remove_finish
+e_source_write_sync
+e_source_write
+e_source_write_finish
+e_source_remote_create_sync
+e_source_remote_create
+e_source_remote_create_finish
+e_source_remote_delete_sync
+e_source_remote_delete
+e_source_remote_delete_finish
+e_source_get_oauth2_access_token_sync
+e_source_get_oauth2_access_token
+e_source_get_oauth2_access_token_finish
+<SUBSECTION Standard>
+ESourcePrivate
+E_IS_SOURCE
+E_IS_SOURCE_CLASS
+E_SOURCE
+E_SOURCE_CLASS
+E_SOURCE_GET_CLASS
+E_TYPE_SOURCE
+e_source_get_type
+</SECTION>
+
+<SECTION>
+<FILE>e-source-address-book</FILE>
+<TITLE>ESourceAddressBook</TITLE>
+E_SOURCE_EXTENSION_ADDRESS_BOOK
+ESourceAddressBook
+ESourceAddressBookClass
+<SUBSECTION Standard>
+ESourceAddressBookPrivate
+E_IS_SOURCE_ADDRESS_BOOK
+E_IS_SOURCE_ADDRESS_BOOK_CLASS
+E_SOURCE_ADDRESS_BOOK
+E_SOURCE_ADDRESS_BOOK_CLASS
+E_SOURCE_ADDRESS_BOOK_GET_CLASS
+E_TYPE_SOURCE_ADDRESS_BOOK
+e_source_address_book_get_type
+</SECTION>
+
+<SECTION>
+<FILE>e-source-alarms</FILE>
+<TITLE>ESourceAlarms</TITLE>
+E_SOURCE_EXTENSION_ALARMS
+ESourceAlarms
+ESourceAlarmsClass
+e_source_alarms_get_include_me
+e_source_alarms_set_include_me
+e_source_alarms_get_last_notified
+e_source_alarms_dup_last_notified
+e_source_alarms_set_last_notified
+<SUBSECTION Standard>
+ESourceAlarmsPrivate
+E_IS_SOURCE_ALARMS
+E_IS_SOURCE_ALARMS_CLASS
+E_SOURCE_ALARMS
+E_SOURCE_ALARMS_CLASS
+E_SOURCE_ALARMS_GET_CLASS
+E_TYPE_SOURCE_ALARMS
+e_source_alarms_get_type
+</SECTION>
+
+<SECTION>
+<FILE>e-source-authentication</FILE>
+<TITLE>ESourceAuthentication</TITLE>
+E_SOURCE_EXTENSION_AUTHENTICATION
+ESourceAuthentication
+ESourceAuthenticationClass
+e_source_authentication_required
+e_source_authentication_ref_connectable
+e_source_authentication_get_host
+e_source_authentication_dup_host
+e_source_authentication_set_host
+e_source_authentication_get_method
+e_source_authentication_dup_method
+e_source_authentication_set_method
+e_source_authentication_get_port
+e_source_authentication_set_port
+e_source_authentication_get_proxy_uid
+e_source_authentication_dup_proxy_uid
+e_source_authentication_set_proxy_uid
+e_source_authentication_get_remember_password
+e_source_authentication_set_remember_password
+e_source_authentication_get_user
+e_source_authentication_dup_user
+e_source_authentication_set_user
+<SUBSECTION Standard>
+ESourceAuthenticationPrivate
+E_IS_SOURCE_AUTHENTICATION
+E_IS_SOURCE_AUTHENTICATION_CLASS
+E_SOURCE_AUTHENTICATION
+E_SOURCE_AUTHENTICATION_CLASS
+E_SOURCE_AUTHENTICATION_GET_CLASS
+E_TYPE_SOURCE_AUTHENTICATION
+e_source_authentication_get_type
+</SECTION>
+
+<SECTION>
+<FILE>e-source-authenticator</FILE>
+<TITLE>ESourceAuthenticator</TITLE>
+ESourceAuthenticatorInterface
+e_source_authenticator_get_prompt_strings
+e_source_authenticator_get_without_password
+e_source_authenticator_try_password_sync
+e_source_authenticator_try_password
+e_source_authenticator_try_password_finish
+<SUBSECTION Standard>
+E_IS_SOURCE_AUTHENTICATOR
+E_SOURCE_AUTHENTICATOR
+E_SOURCE_AUTHENTICATOR_GET_INTERFACE
+E_TYPE_SOURCE_AUTHENTICATOR
+e_source_authenticator_get_type
+</SECTION>
+
+<SECTION>
+<FILE>e-source-autocomplete</FILE>
+<TITLE>ESourceAutocomplete</TITLE>
+E_SOURCE_EXTENSION_AUTOCOMPLETE
+ESourceAutocomplete
+ESourceAutocompleteClass
+e_source_autocomplete_get_include_me
+e_source_autocomplete_set_include_me
+<SUBSECTION Standard>
+ESourceAutocompletePrivate
+E_IS_SOURCE_AUTOCOMPLETE
+E_IS_SOURCE_AUTOCOMPLETE_CLASS
+E_SOURCE_AUTOCOMPLETE
+E_SOURCE_AUTOCOMPLETE_CLASS
+E_SOURCE_AUTOCOMPLETE_GET_CLASS
+E_TYPE_SOURCE_AUTOCOMPLETE
+e_source_autocomplete_get_type
+</SECTION>
+
+<SECTION>
+<FILE>e-source-backend</FILE>
+<TITLE>ESourceBackend</TITLE>
+ESourceBackend
+ESourceBackendClass
+e_source_backend_get_backend_name
+e_source_backend_dup_backend_name
+e_source_backend_set_backend_name
+<SUBSECTION Standard>
+ESourceBackendPrivate
+E_IS_SOURCE_BACKEND
+E_IS_SOURCE_BACKEND_CLASS
+E_SOURCE_BACKEND
+E_SOURCE_BACKEND_CLASS
+E_SOURCE_BACKEND_GET_CLASS
+E_TYPE_SOURCE_BACKEND
+e_source_backend_get_type
+</SECTION>
+
+<SECTION>
+<FILE>e-source-backend-summary-setup</FILE>
+<TITLE>ESourceBackendSummarySetup</TITLE>
+E_SOURCE_EXTENSION_BACKEND_SUMMARY_SETUP
+ESourceBackendSummarySetup
+ESourceBackendSummarySetupClass
+e_source_backend_summary_setup_get_summary_fields
+e_source_backend_summary_setup_set_summary_fieldsv
+e_source_backend_summary_setup_set_summary_fields
+e_source_backend_summary_setup_get_indexed_fields
+e_source_backend_summary_setup_set_indexed_fieldsv
+e_source_backend_summary_setup_set_indexed_fields
+<SUBSECTION Standard>
+ESourceBackendSummarySetupPrivate
+E_IS_SOURCE_BACKEND_SUMMARY_SETUP
+E_IS_SOURCE_BACKEND_SUMMARY_SETUP_CLASS
+E_SOURCE_BACKEND_SUMMARY_SETUP
+E_SOURCE_BACKEND_SUMMARY_SETUP_CLASS
+E_SOURCE_BACKEND_SUMMARY_SETUP_GET_CLASS
+E_TYPE_SOURCE_BACKEND_SUMMARY_SETUP
+e_source_backend_summary_setup_get_type
+</SECTION>
+
+<SECTION>
+<FILE>e-source-calendar</FILE>
+<TITLE>ESourceCalendar</TITLE>
+E_SOURCE_EXTENSION_CALENDAR
+ESourceCalendar
+ESourceCalendarClass
+<SUBSECTION Standard>
+ESourceCalendarPrivate
+E_IS_SOURCE_CALENDAR
+E_IS_SOURCE_CALENDAR_CLASS
+E_SOURCE_CALENDAR
+E_SOURCE_CALENDAR_CLASS
+E_SOURCE_CALENDAR_GET_CLASS
+E_TYPE_SOURCE_CALENDAR
+e_source_calendar_get_type
+</SECTION>
+
+<SECTION>
+<FILE>e-source-task-list</FILE>
+<TITLE>ESourceTaskList</TITLE>
+E_SOURCE_EXTENSION_TASK_LIST
+ESourceTaskList
+ESourceTaskListClass
+<SUBSECTION Standard>
+ESourceTaskListPrivate
+E_IS_SOURCE_TASK_LIST
+E_IS_SOURCE_TASK_LIST_CLASS
+E_SOURCE_TASK_LIST
+E_SOURCE_TASK_LIST_CLASS
+E_SOURCE_TASK_LIST_GET_CLASS
+E_TYPE_SOURCE_TASK_LIST
+e_source_task_list_get_type
+</SECTION>
+
+<SECTION>
+<FILE>e-source-memo-list</FILE>
+<TITLE>ESourceMemoList</TITLE>
+E_SOURCE_EXTENSION_MEMO_LIST
+ESourceMemoList
+ESourceMemoListClass
+<SUBSECTION Standard>
+ESourceMemoListPrivate
+E_IS_SOURCE_MEMO_LIST
+E_IS_SOURCE_MEMO_LIST_CLASS
+E_SOURCE_MEMO_LIST
+E_SOURCE_MEMO_LIST_CLASS
+E_SOURCE_MEMO_LIST_GET_CLASS
+E_TYPE_SOURCE_MEMO_LIST
+e_source_memo_list_get_type
+</SECTION>
+
+<SECTION>
+<FILE>e-source-camel</FILE>
+<TITLE>ESourceCamel</TITLE>
+ESourceCamel
+ESourceCamelClass
+e_source_camel_register_types
+e_source_camel_generate_subtype
+e_source_camel_get_settings
+e_source_camel_get_type_name
+e_source_camel_get_extension_name
+e_source_camel_configure_service
+<SUBSECTION Standard>
+ESourceCamelPrivate
+E_IS_SOURCE_CAMEL
+E_IS_SOURCE_CAMEL_CLASS
+E_SOURCE_CAMEL
+E_SOURCE_CAMEL_CLASS
+E_SOURCE_CAMEL_GET_CLASS
+E_TYPE_SOURCE_CAMEL
+e_source_camel_get_type
+</SECTION>
+
+<SECTION>
+<FILE>e-source-collection</FILE>
+<TITLE>ESourceCollection</TITLE>
+E_SOURCE_EXTENSION_COLLECTION
+ESourceCollection
+ESourceCollectionClass
+e_source_collection_get_identity
+e_source_collection_dup_identity
+e_source_collection_set_identity
+e_source_collection_get_calendar_enabled
+e_source_collection_set_calendar_enabled
+e_source_collection_get_contacts_enabled
+e_source_collection_set_contacts_enabled
+e_source_collection_get_mail_enabled
+e_source_collection_set_mail_enabled
+<SUBSECTION Standard>
+ESourceCollectionPrivate
+E_IS_SOURCE_COLLECTION
+E_IS_SOURCE_COLLECTION_CLASS
+E_SOURCE_COLLECTION
+E_SOURCE_COLLECTION_CLASS
+E_SOURCE_COLLECTION_GET_CLASS
+E_TYPE_SOURCE_COLLECTION
+e_source_collection_get_type
+</SECTION>
+
+<SECTION>
+<FILE>e-source-enums</FILE>
+EMdnResponsePolicy
+EProxyMethod
+ESourceAuthenticationResult
+ETrustPromptResponse
+</SECTION>
+
+<SECTION>
+<FILE>e-source-enumtypes</FILE>
+<SUBSECTION Standard>
+E_TYPE_MDN_RESPONSE_POLICY
+E_TYPE_PROXY_METHOD
+E_TYPE_SOURCE_AUTHENTICATION_RESULT
+E_TYPE_TRUST_PROMPT_RESPONSE
+e_mdn_response_policy_get_type
+e_proxy_method_get_type
+e_source_authentication_result_get_type
+e_trust_prompt_response_get_type
+</SECTION>
+
+<SECTION>
+<FILE>e-source-extension</FILE>
+<TITLE>ESourceExtension</TITLE>
+ESourceExtension
+ESourceExtensionClass
+e_source_extension_ref_source
+e_source_extension_get_source
+<SUBSECTION Standard>
+ESourceExtensionPrivate
+E_IS_SOURCE_EXTENSION
+E_IS_SOURCE_EXTENSION_CLASS
+E_SOURCE_EXTENSION
+E_SOURCE_EXTENSION_CLASS
+E_SOURCE_EXTENSION_GET_CLASS
+E_TYPE_SOURCE_EXTENSION
+e_source_extension_get_type
+</SECTION>
+
+<SECTION>
+<FILE>e-source-goa</FILE>
+<TITLE>ESourceGoa</TITLE>
+E_SOURCE_EXTENSION_GOA
+ESourceGoa
+ESourceGoaClass
+e_source_goa_get_account_id
+e_source_goa_dup_account_id
+e_source_goa_set_account_id
+e_source_goa_get_calendar_url
+e_source_goa_dup_calendar_url
+e_source_goa_set_calendar_url
+e_source_goa_get_contacts_url
+e_source_goa_dup_contacts_url
+e_source_goa_set_contacts_url
+<SUBSECTION Standard>
+ESourceGoaPrivate
+E_IS_SOURCE_GOA
+E_IS_SOURCE_GOA_CLASS
+E_SOURCE_GOA
+E_SOURCE_GOA_CLASS
+E_SOURCE_GOA_GET_CLASS
+E_TYPE_SOURCE_GOA
+e_source_goa_get_type
+</SECTION>
+
+<SECTION>
+<FILE>e-source-mail-account</FILE>
+<TITLE>ESourceMailAccount</TITLE>
+E_SOURCE_EXTENSION_MAIL_ACCOUNT
+ESourceMailAccount
+ESourceMailAccountClass
+e_source_mail_account_get_identity_uid
+e_source_mail_account_dup_identity_uid
+e_source_mail_account_set_identity_uid
+<SUBSECTION Standard>
+ESourceMailAccountPrivate
+E_IS_SOURCE_MAIL_ACCOUNT
+E_IS_SOURCE_MAIL_ACCOUNT_CLASS
+E_SOURCE_MAIL_ACCOUNT
+E_SOURCE_MAIL_ACCOUNT_CLASS
+E_SOURCE_MAIL_ACCOUNT_GET_CLASS
+E_TYPE_SOURCE_MAIL_ACCOUNT
+e_source_mail_account_get_type
+</SECTION>
+
+<SECTION>
+<FILE>e-source-mail-composition</FILE>
+<TITLE>ESourceMailComposition</TITLE>
+E_SOURCE_EXTENSION_MAIL_COMPOSITION
+ESourceMailComposition
+ESourceMailCompositionClass
+e_source_mail_composition_dup_bcc
+e_source_mail_composition_set_bcc
+e_source_mail_composition_dup_cc
+e_source_mail_composition_set_cc
+e_source_mail_composition_get_drafts_folder
+e_source_mail_composition_dup_drafts_folder
+e_source_mail_composition_set_drafts_folder
+e_source_mail_composition_get_sign_imip
+e_source_mail_composition_set_sign_imip
+e_source_mail_composition_get_templates_folder
+e_source_mail_composition_dup_templates_folder
+e_source_mail_composition_set_templates_folder
+<SUBSECTION Standard>
+ESourceMailCompositionPrivate
+E_IS_SOURCE_MAIL_COMPOSITION
+E_IS_SOURCE_MAIL_COMPOSITION_CLASS
+E_SOURCE_MAIL_COMPOSITION
+E_SOURCE_MAIL_COMPOSITION_CLASS
+E_SOURCE_MAIL_COMPOSITION_GET_CLASS
+E_TYPE_SOURCE_MAIL_COMPOSITION
+e_source_mail_composition_get_type
+</SECTION>
+
+<SECTION>
+<FILE>e-source-mail-identity</FILE>
+<TITLE>ESourceMailIdentity</TITLE>
+E_SOURCE_EXTENSION_MAIL_IDENTITY
+ESourceMailIdentity
+ESourceMailIdentityClass
+e_source_mail_identity_get_address
+e_source_mail_identity_dup_address
+e_source_mail_identity_set_address
+e_source_mail_identity_get_name
+e_source_mail_identity_dup_name
+e_source_mail_identity_set_name
+e_source_mail_identity_get_organization
+e_source_mail_identity_dup_organization
+e_source_mail_identity_set_organization
+e_source_mail_identity_get_reply_to
+e_source_mail_identity_dup_reply_to
+e_source_mail_identity_set_reply_to
+e_source_mail_identity_get_signature_uid
+e_source_mail_identity_dup_signature_uid
+e_source_mail_identity_set_signature_uid
+<SUBSECTION Standard>
+ESourceMailIdentityPrivate
+E_IS_SOURCE_MAIL_IDENTITY
+E_IS_SOURCE_MAIL_IDENTITY_CLASS
+E_SOURCE_MAIL_IDENTITY
+E_SOURCE_MAIL_IDENTITY_CLASS
+E_SOURCE_MAIL_IDENTITY_GET_CLASS
+E_TYPE_SOURCE_MAIL_IDENTITY
+e_source_mail_identity_get_type
+</SECTION>
+
+<SECTION>
+<FILE>e-source-mail-signature</FILE>
+<TITLE>ESourceMailSignature</TITLE>
+E_SOURCE_EXTENSION_MAIL_SIGNATURE
+ESourceMailSignature
+ESourceMailSignatureClass
+e_source_mail_signature_get_file
+e_source_mail_signature_get_mime_type
+e_source_mail_signature_dup_mime_type
+e_source_mail_signature_set_mime_type
+e_source_mail_signature_load_sync
+e_source_mail_signature_load
+e_source_mail_signature_load_finish
+e_source_mail_signature_replace_sync
+e_source_mail_signature_replace
+e_source_mail_signature_replace_finish
+e_source_mail_signature_symlink_sync
+e_source_mail_signature_symlink
+e_source_mail_signature_symlink_finish
+<SUBSECTION Standard>
+ESourceMailSignaturePrivate
+E_IS_SOURCE_MAIL_SIGNATURE
+E_IS_SOURCE_MAIL_SIGNATURE_CLASS
+E_SOURCE_MAIL_SIGNATURE
+E_SOURCE_MAIL_SIGNATURE_CLASS
+E_SOURCE_MAIL_SIGNATURE_GET_CLASS
+E_TYPE_SOURCE_MAIL_SIGNATURE
+e_source_mail_signature_get_type
+</SECTION>
+
+<SECTION>
+<FILE>e-source-mail-submission</FILE>
+<TITLE>ESourceMailSubmission</TITLE>
+E_SOURCE_EXTENSION_MAIL_SUBMISSION
+ESourceMailSubmission
+ESourceMailSubmissionClass
+e_source_mail_submission_get_sent_folder
+e_source_mail_submission_dup_sent_folder
+e_source_mail_submission_set_sent_folder
+e_source_mail_submission_get_transport_uid
+e_source_mail_submission_dup_transport_uid
+e_source_mail_submission_set_transport_uid
+e_source_mail_submission_get_replies_to_origin_folder
+e_source_mail_submission_set_replies_to_origin_folder
+<SUBSECTION Standard>
+ESourceMailSubmissionPrivate
+E_IS_SOURCE_MAIL_SUBMISSION
+E_IS_SOURCE_MAIL_SUBMISSION_CLASS
+E_SOURCE_MAIL_SUBMISSION
+E_SOURCE_MAIL_SUBMISSION_CLASS
+E_SOURCE_MAIL_SUBMISSION_GET_CLASS
+E_TYPE_SOURCE_MAIL_SUBMISSION
+e_source_mail_submission_get_type
+</SECTION>
+
+<SECTION>
+<FILE>e-source-mail-transport</FILE>
+<TITLE>ESourceMailTransport</TITLE>
+E_SOURCE_EXTENSION_MAIL_TRANSPORT
+ESourceMailTransport
+ESourceMailTransportClass
+<SUBSECTION Standard>
+ESourceMailTransportPrivate
+E_IS_SOURCE_MAIL_TRANSPORT
+E_IS_SOURCE_MAIL_TRANSPORT_CLASS
+E_SOURCE_MAIL_TRANSPORT
+E_SOURCE_MAIL_TRANSPORT_CLASS
+E_SOURCE_MAIL_TRANSPORT_GET_CLASS
+E_TYPE_SOURCE_MAIL_TRANSPORT
+e_source_mail_transport_get_type
+</SECTION>
+
+<SECTION>
+<FILE>e-source-mdn</FILE>
+<TITLE>ESourceMDN</TITLE>
+E_SOURCE_EXTENSION_MDN
+ESourceMDN
+ESourceMDNClass
+e_source_mdn_get_response_policy
+e_source_mdn_set_response_policy
+<SUBSECTION Standard>
+ESourceMDNPrivate
+E_IS_SOURCE_MDN
+E_IS_SOURCE_MDN_CLASS
+E_SOURCE_MDN
+E_SOURCE_MDN_CLASS
+E_SOURCE_MDN_GET_CLASS
+E_TYPE_SOURCE_MDN
+e_source_mdn_get_type
+</SECTION>
+
+<SECTION>
+<FILE>e-source-offline</FILE>
+<TITLE>ESourceOffline</TITLE>
+E_SOURCE_EXTENSION_OFFLINE
+ESourceOffline
+ESourceOfflineClass
+e_source_offline_get_stay_synchronized
+e_source_offline_set_stay_synchronized
+<SUBSECTION Standard>
+ESourceOfflinePrivate
+E_IS_SOURCE_OFFLINE
+E_IS_SOURCE_OFFLINE_CLASS
+E_SOURCE_OFFLINE
+E_SOURCE_OFFLINE_CLASS
+E_SOURCE_OFFLINE_GET_CLASS
+E_TYPE_SOURCE_OFFLINE
+e_source_offline_get_type
+</SECTION>
+
+<SECTION>
+<FILE>e-source-openpgp</FILE>
+<TITLE>ESourceOpenPGP</TITLE>
+E_SOURCE_EXTENSION_OPENPGP
+ESourceOpenPGP
+ESourceOpenPGPClass
+e_source_openpgp_get_always_trust
+e_source_openpgp_set_always_trust
+e_source_openpgp_get_encrypt_to_self
+e_source_openpgp_set_encrypt_to_self
+e_source_openpgp_get_key_id
+e_source_openpgp_dup_key_id
+e_source_openpgp_set_key_id
+e_source_openpgp_get_signing_algorithm
+e_source_openpgp_dup_signing_algorithm
+e_source_openpgp_set_signing_algorithm
+e_source_openpgp_get_sign_by_default
+e_source_openpgp_set_sign_by_default
+<SUBSECTION Standard>
+ESourceOpenPGPPrivate
+E_IS_SOURCE_OPENPGP
+E_IS_SOURCE_OPENPGP_CLASS
+E_SOURCE_OPENPGP
+E_SOURCE_OPENPGP_CLASS
+E_SOURCE_OPENPGP_GET_CLASS
+E_TYPE_SOURCE_OPENPGP
+e_source_openpgp_get_type
+</SECTION>
+
+<SECTION>
+<FILE>e-source-proxy</FILE>
+<TITLE>ESourceProxy</TITLE>
+E_SOURCE_EXTENSION_PROXY
+ESourceProxy
+ESourceProxyClass
+e_source_proxy_get_method
+e_source_proxy_set_method
+e_source_proxy_get_autoconfig_url
+e_source_proxy_dup_autoconfig_url
+e_source_proxy_set_autoconfig_url
+e_source_proxy_get_ignore_hosts
+e_source_proxy_dup_ignore_hosts
+e_source_proxy_set_ignore_hosts
+e_source_proxy_get_ftp_host
+e_source_proxy_dup_ftp_host
+e_source_proxy_set_ftp_host
+e_source_proxy_get_ftp_port
+e_source_proxy_set_ftp_port
+e_source_proxy_get_http_host
+e_source_proxy_dup_http_host
+e_source_proxy_set_http_host
+e_source_proxy_get_http_port
+e_source_proxy_set_http_port
+e_source_proxy_get_http_use_auth
+e_source_proxy_set_http_use_auth
+e_source_proxy_get_http_auth_user
+e_source_proxy_dup_http_auth_user
+e_source_proxy_set_http_auth_user
+e_source_proxy_get_http_auth_password
+e_source_proxy_dup_http_auth_password
+e_source_proxy_set_http_auth_password
+e_source_proxy_get_https_host
+e_source_proxy_dup_https_host
+e_source_proxy_set_https_host
+e_source_proxy_get_https_port
+e_source_proxy_set_https_port
+e_source_proxy_get_socks_host
+e_source_proxy_dup_socks_host
+e_source_proxy_set_socks_host
+e_source_proxy_get_socks_port
+e_source_proxy_set_socks_port
+e_source_proxy_lookup_sync
+e_source_proxy_lookup
+e_source_proxy_lookup_finish
+<SUBSECTION Standard>
+ESourceProxyPrivate
+E_IS_SOURCE_PROXY
+E_IS_SOURCE_PROXY_CLASS
+E_SOURCE_PROXY
+E_SOURCE_PROXY_CLASS
+E_SOURCE_PROXY_GET_CLASS
+E_TYPE_SOURCE_PROXY
+e_source_proxy_get_type
+</SECTION>
+
+<SECTION>
+<FILE>e-source-refresh</FILE>
+<TITLE>ESourceRefresh</TITLE>
+E_SOURCE_EXTENSION_REFRESH
+ESourceRefresh
+ESourceRefreshClass
+ESourceRefreshFunc
+e_source_refresh_get_enabled
+e_source_refresh_set_enabled
+e_source_refresh_get_interval_minutes
+e_source_refresh_set_interval_minutes
+e_source_refresh_add_timeout
+e_source_refresh_force_timeout
+e_source_refresh_remove_timeout
+e_source_refresh_remove_timeouts_by_data
+<SUBSECTION Standard>
+ESourceRefreshPrivate
+E_IS_SOURCE_REFRESH
+E_IS_SOURCE_REFRESH_CLASS
+E_SOURCE_REFRESH
+E_SOURCE_REFRESH_CLASS
+E_SOURCE_REFRESH_GET_CLASS
+E_TYPE_SOURCE_REFRESH
+e_source_refresh_get_type
+</SECTION>
+
+<SECTION>
+<FILE>e-source-registry</FILE>
+<TITLE>ESourceRegistry</TITLE>
+ESourceRegistry
+ESourceRegistryClass
+e_source_registry_new_sync
+e_source_registry_new
+e_source_registry_new_finish
+e_source_registry_authenticate_sync
+e_source_registry_authenticate
+e_source_registry_authenticate_finish
+e_source_registry_commit_source_sync
+e_source_registry_commit_source
+e_source_registry_commit_source_finish
+e_source_registry_create_sources_sync
+e_source_registry_create_sources
+e_source_registry_create_sources_finish
+e_source_registry_ref_source
+e_source_registry_list_sources
+e_source_registry_list_enabled
+e_source_registry_find_extension
+e_source_registry_check_enabled
+e_source_registry_build_display_tree
+e_source_registry_free_display_tree
+e_source_registry_dup_unique_display_name
+e_source_registry_debug_dump
+e_source_registry_ref_builtin_address_book
+e_source_registry_ref_builtin_calendar
+e_source_registry_ref_builtin_mail_account
+e_source_registry_ref_builtin_memo_list
+e_source_registry_ref_builtin_proxy
+e_source_registry_ref_builtin_task_list
+e_source_registry_ref_default_address_book
+e_source_registry_set_default_address_book
+e_source_registry_ref_default_calendar
+e_source_registry_set_default_calendar
+e_source_registry_ref_default_mail_account
+e_source_registry_set_default_mail_account
+e_source_registry_ref_default_mail_identity
+e_source_registry_set_default_mail_identity
+e_source_registry_ref_default_memo_list
+e_source_registry_set_default_memo_list
+e_source_registry_ref_default_task_list
+e_source_registry_set_default_task_list
+e_source_registry_ref_default_for_extension_name
+e_source_registry_set_default_for_extension_name
+<SUBSECTION Standard>
+ESourceRegistryPrivate
+E_IS_SOURCE_REGISTRY
+E_IS_SOURCE_REGISTRY_CLASS
+E_SOURCE_REGISTRY
+E_SOURCE_REGISTRY_CLASS
+E_SOURCE_REGISTRY_GET_CLASS
+E_TYPE_SOURCE_REGISTRY
+e_source_registry_get_type
+</SECTION>
+
+<SECTION>
+<FILE>e-source-registry-server</FILE>
+<TITLE>ESourceRegistryServer</TITLE>
+E_SOURCE_REGISTRY_SERVER_OBJECT_PATH
+EDS_REGISTRY_MODULES
+ESourceRegistryServer
+ESourceRegistryServerClass
+e_source_registry_server_new
+e_source_registry_server_add_source
+e_source_registry_server_remove_source
+e_source_registry_server_load_directory
+e_source_registry_server_load_resource
+e_source_registry_server_load_file
+e_source_registry_server_load_error
+e_source_registry_server_ref_source
+e_source_registry_server_list_sources
+e_source_registry_server_find_extension
+e_source_registry_server_ref_backend
+e_source_registry_server_ref_backend_factory
+e_source_registry_server_new_auth_session
+e_source_registry_server_authenticate_sync
+e_source_registry_server_authenticate
+e_source_registry_server_authenticate_finish
+e_source_registry_server_load_all
+<SUBSECTION Standard>
+ESourceRegistryServerPrivate
+E_IS_SOURCE_REGISTRY_SERVER
+E_IS_SOURCE_REGISTRY_SERVER_CLASS
+E_SOURCE_REGISTRY_SERVER
+E_SOURCE_REGISTRY_SERVER_CLASS
+E_SOURCE_REGISTRY_SERVER_GET_CLASS
+E_TYPE_SOURCE_REGISTRY_SERVER
+e_source_registry_server_get_type
+</SECTION>
+
+<SECTION>
+<FILE>e-source-resource</FILE>
+<TITLE>ESourceResource</TITLE>
+E_SOURCE_EXTENSION_RESOURCE
+ESourceResource
+ESourceResourceClass
+e_source_resource_get_identity
+e_source_resource_dup_identity
+e_source_resource_set_identity
+<SUBSECTION Standard>
+ESourceResourcePrivate
+E_IS_SOURCE_RESOURCE
+E_IS_SOURCE_RESOURCE_CLASS
+E_SOURCE_RESOURCE
+E_SOURCE_RESOURCE_CLASS
+E_SOURCE_RESOURCE_GET_CLASS
+E_TYPE_SOURCE_RESOURCE
+e_source_resource_get_type
+</SECTION>
+
+<SECTION>
+<FILE>e-source-revision-guards</FILE>
+<TITLE>ESourceRevisionGuards</TITLE>
+E_SOURCE_EXTENSION_REVISION_GUARDS
+ESourceRevisionGuards
+ESourceRevisionGuardsClass
+e_source_revision_guards_get_enabled
+e_source_revision_guards_set_enabled
+<SUBSECTION Standard>
+ESourceRevisionGuardsPrivate
+E_IS_SOURCE_REVISION_GUARDS
+E_IS_SOURCE_REVISION_GUARDS_CLASS
+E_SOURCE_REVISION_GUARDS
+E_SOURCE_REVISION_GUARDS_CLASS
+E_SOURCE_REVISION_GUARDS_GET_CLASS
+E_TYPE_SOURCE_REVISION_GUARDS
+e_source_revision_guards_get_type
+</SECTION>
+
+<SECTION>
+<FILE>e-source-security</FILE>
+<TITLE>ESourceSecurity</TITLE>
+E_SOURCE_EXTENSION_SECURITY
+ESourceSecurity
+ESourceSecurityClass
+e_source_security_get_method
+e_source_security_dup_method
+e_source_security_set_method
+e_source_security_get_secure
+e_source_security_set_secure
+<SUBSECTION Standard>
+ESourceSecurityPrivate
+E_IS_SOURCE_SECURITY
+E_IS_SOURCE_SECURITY_CLASS
+E_SOURCE_SECURITY
+E_SOURCE_SECURITY_CLASS
+E_SOURCE_SECURITY_GET_CLASS
+E_TYPE_SOURCE_SECURITY
+e_source_security_get_type
+</SECTION>
+
+<SECTION>
+<FILE>e-source-selectable</FILE>
+<TITLE>ESourceSelectable</TITLE>
+ESourceSelectable
+ESourceSelectableClass
+e_source_selectable_get_color
+e_source_selectable_dup_color
+e_source_selectable_set_color
+e_source_selectable_get_selected
+e_source_selectable_set_selected
+<SUBSECTION Standard>
+ESourceSelectablePrivate
+E_IS_SOURCE_SELECTABLE
+E_IS_SOURCE_SELECTABLE_CLASS
+E_SOURCE_SELECTABLE
+E_SOURCE_SELECTABLE_CLASS
+E_SOURCE_SELECTABLE_GET_CLASS
+E_TYPE_SOURCE_SELECTABLE
+e_source_selectable_get_type
+</SECTION>
+
+<SECTION>
+<FILE>e-source-smime</FILE>
+<TITLE>ESourceSMIME</TITLE>
+E_SOURCE_EXTENSION_SMIME
+ESourceSMIME
+ESourceSMIMEClass
+e_source_smime_get_encryption_certificate
+e_source_smime_dup_encryption_certificate
+e_source_smime_set_encryption_certificate
+e_source_smime_get_encrypt_by_default
+e_source_smime_set_encrypt_by_default
+e_source_smime_get_encrypt_to_self
+e_source_smime_set_encrypt_to_self
+e_source_smime_get_signing_algorithm
+e_source_smime_dup_signing_algorithm
+e_source_smime_set_signing_algorithm
+e_source_smime_get_signing_certificate
+e_source_smime_dup_signing_certificate
+e_source_smime_set_signing_certificate
+e_source_smime_get_sign_by_default
+e_source_smime_set_sign_by_default
+<SUBSECTION Standard>
+ESourceSMIMEPrivate
+E_IS_SOURCE_SMIME
+E_IS_SOURCE_SMIME_CLASS
+E_SOURCE_SMIME
+E_SOURCE_SMIME_CLASS
+E_SOURCE_SMIME_GET_CLASS
+E_TYPE_SOURCE_SMIME
+e_source_smime_get_type
+</SECTION>
+
+<SECTION>
+<FILE>e-source-uoa</FILE>
+<TITLE>ESourceUoa</TITLE>
+E_SOURCE_EXTENSION_UOA
+ESourceUoa
+ESourceUoaClass
+e_source_uoa_get_account_id
+e_source_uoa_set_account_id
+<SUBSECTION Standard>
+ESourceUoaPrivate
+E_IS_SOURCE_UOA
+E_IS_SOURCE_UOA_CLASS
+E_SOURCE_UOA
+E_SOURCE_UOA_CLASS
+E_SOURCE_UOA_GET_CLASS
+E_TYPE_SOURCE_UOA
+e_source_uoa_get_type
+</SECTION>
+
+<SECTION>
+<FILE>e-source-webdav</FILE>
+<TITLE>ESourceWebdav</TITLE>
+E_SOURCE_EXTENSION_WEBDAV_BACKEND
+ESourceWebdav
+ESourceWebdavClass
+e_source_webdav_get_avoid_ifmatch
+e_source_webdav_set_avoid_ifmatch
+e_source_webdav_get_calendar_auto_schedule
+e_source_webdav_set_calendar_auto_schedule
+e_source_webdav_get_display_name
+e_source_webdav_dup_display_name
+e_source_webdav_set_display_name
+e_source_webdav_get_email_address
+e_source_webdav_dup_email_address
+e_source_webdav_set_email_address
+e_source_webdav_get_resource_path
+e_source_webdav_dup_resource_path
+e_source_webdav_set_resource_path
+e_source_webdav_get_resource_query
+e_source_webdav_dup_resource_query
+e_source_webdav_set_resource_query
+e_source_webdav_get_ssl_trust
+e_source_webdav_dup_ssl_trust
+e_source_webdav_set_ssl_trust
+e_source_webdav_dup_soup_uri
+e_source_webdav_set_soup_uri
+e_source_webdav_prepare_ssl_trust_prompt
+e_source_webdav_prepare_ssl_trust_prompt_with_parent
+e_source_webdav_store_ssl_trust_prompt
+e_source_webdav_unset_temporary_ssl_trust
+e_source_webdav_get_ignore_invalid_cert
+e_source_webdav_set_ignore_invalid_cert
+<SUBSECTION Standard>
+ESourceWebdavPrivate
+E_IS_SOURCE_WEBDAV
+E_IS_SOURCE_WEBDAV_CLASS
+E_SOURCE_WEBDAV
+E_SOURCE_WEBDAV_CLASS
+E_SOURCE_WEBDAV_GET_CLASS
+E_TYPE_SOURCE_WEBDAV
+e_source_webdav_get_type
+</SECTION>
+
+<SECTION>
+<FILE>e-sqlite3-vfs</FILE>
+e_sqlite3_vfs_init
+</SECTION>
+
+<SECTION>
+<FILE>e-test-server-utils</FILE>
+E_TEST_SERVER_UTILS_SERVICE
+ETestSourceCustomizeFunc
+ETestServiceType
+ETestServerClosure
+ETestService
+ETestServerFixture
+ETestServerFlags
+e_test_server_utils_setup
+e_test_server_utils_teardown
+e_test_server_utils_run
+e_test_server_utils_run_full
+</SECTION>
+
+<SECTION>
+<FILE>e-time-utils</FILE>
+ETimeParseStatus
+e_time_parse_date_and_time
+e_time_parse_date
+e_time_parse_date_and_time_ex
+e_time_parse_date_ex
+e_time_parse_time
+e_time_format_date_and_time
+e_time_format_time
+e_mktime_utc
+e_localtime_with_offset
+e_time_get_d_fmt_with_4digit_year
+</SECTION>
+
+<SECTION>
+<FILE>e-timezone-cache</FILE>
+<TITLE>ETimezoneCache</TITLE>
+ETimezoneCacheInterface
+e_timezone_cache_add_timezone
+e_timezone_cache_get_timezone
+e_timezone_cache_list_timezones
+<SUBSECTION Standard>
+E_IS_TIMEZONE_CACHE
+E_TIMEZONE_CACHE
+E_TIMEZONE_CACHE_GET_INTERFACE
+E_TYPE_TIMEZONE_CACHE
+e_timezone_cache_get_type
+</SECTION>
+
+<SECTION>
+<FILE>e-transliterator-private</FILE>
+E_TRANSLITERATOR_LOCAL
+ETransliterator
+</SECTION>
+
+<SECTION>
+<FILE>e-uid</FILE>
+e_uid_new
+</SECTION>
+
+<SECTION>
+<FILE>e-url</FILE>
+EUri
+e_uri_new
+e_uri_free
+e_uri_get_param
+e_uri_copy
+e_uri_to_string
+e_url_shroud
+e_url_equal
+</SECTION>
+
+<SECTION>
+<FILE>e-user-prompter</FILE>
+<TITLE>EUserPrompter</TITLE>
+EUserPrompter
+EUserPrompterClass
+e_user_prompter_new
+e_user_prompter_prompt
+e_user_prompter_prompt_finish
+e_user_prompter_prompt_sync
+e_user_prompter_extension_prompt
+e_user_prompter_extension_prompt_finish
+e_user_prompter_extension_prompt_sync
+<SUBSECTION Standard>
+EUserPrompterPrivate
+E_IS_USER_PROMPTER
+E_IS_USER_PROMPTER_CLASS
+E_TYPE_USER_PROMPTER
+E_USER_PROMPTER
+E_USER_PROMPTER_CLASS
+E_USER_PROMPTER_GET_CLASS
+e_user_prompter_get_type
+</SECTION>
+
+<SECTION>
+<FILE>e-user-prompter-server</FILE>
+<TITLE>EUserPrompterServer</TITLE>
+E_USER_PROMPTER_SERVER_OBJECT_PATH
+EUserPrompterServer
+EUserPrompterServerClass
+e_user_prompter_server_new
+e_user_prompter_server_response
+e_user_prompter_server_register
+<SUBSECTION Standard>
+EUserPrompterServerPrivate
+E_IS_USER_PROMPTER_SERVER
+E_IS_USER_PROMPTER_SERVER_CLASS
+E_TYPE_USER_PROMPTER_SERVER
+E_USER_PROMPTER_SERVER
+E_USER_PROMPTER_SERVER_CLASS
+E_USER_PROMPTER_SERVER_GET_CLASS
+e_user_prompter_server_get_type
+</SECTION>
+
+<SECTION>
+<FILE>e-user-prompter-server-extension</FILE>
+<TITLE>EUserPrompterServerExtension</TITLE>
+EUserPrompterServerExtension
+EUserPrompterServerExtensionClass
+e_user_prompter_server_extension_prompt
+e_user_prompter_server_extension_response
+<SUBSECTION Standard>
+EUserPrompterServerExtensionPrivate
+E_IS_USER_PROMPTER_SERVER_EXTENSION
+E_IS_USER_PROMPTER_SERVER_EXTENSION_CLASS
+E_TYPE_USER_PROMPTER_SERVER_EXTENSION
+E_USER_PROMPTER_SERVER_EXTENSION
+E_USER_PROMPTER_SERVER_EXTENSION_CLASS
+E_USER_PROMPTER_SERVER_EXTENSION_GET_CLASS
+e_user_prompter_server_extension_get_type
+</SECTION>
+
+<SECTION>
+<FILE>e-vcard</FILE>
+<TITLE>EVCard</TITLE>
+EVC_ADR
+EVC_BDAY
+EVC_CALURI
+EVC_CATEGORIES
+EVC_EMAIL
+EVC_ENCODING
+EVC_FBURL
+EVC_FN
+EVC_GEO
+EVC_ICSCALENDAR
+EVC_KEY
+EVC_LABEL
+EVC_LOGO
+EVC_MAILER
+EVC_NICKNAME
+EVC_N
+EVC_NOTE
+EVC_ORG
+EVC_PHOTO
+EVC_PRODID
+EVC_QUOTEDPRINTABLE
+EVC_REV
+EVC_ROLE
+EVC_TEL
+EVC_TITLE
+EVC_TYPE
+EVC_UID
+EVC_URL
+EVC_VALUE
+EVC_VERSION
+EVC_X_AIM
+EVC_X_ANNIVERSARY
+EVC_X_ASSISTANT
+EVC_X_BIRTHDAY
+EVC_X_BLOG_URL
+EVC_X_CALLBACK
+EVC_X_COMPANY
+EVC_X_DEST_CONTACT_UID
+EVC_X_DEST_EMAIL_NUM
+EVC_X_DEST_HTML_MAIL
+EVC_X_DEST_SOURCE_UID
+EVC_X_E164
+EVC_X_FILE_AS
+EVC_X_GADUGADU
+EVC_X_GROUPWISE
+EVC_X_ICQ
+EVC_X_JABBER
+EVC_X_LIST_SHOW_ADDRESSES
+EVC_X_LIST
+EVC_X_LIST_NAME
+EVC_X_MANAGER
+EVC_X_MSN
+EVC_X_RADIO
+EVC_X_SKYPE
+EVC_X_GOOGLE_TALK
+EVC_X_TWITTER
+EVC_X_SIP
+EVC_X_SPOUSE
+EVC_X_TELEX
+EVC_X_TTYTDD
+EVC_X_VIDEO_URL
+EVC_X_WANTS_HTML
+EVC_X_YAHOO
+EVC_X_BOOK_UID
+EVC_CONTACT_LIST
+EVC_PARENT_CL
+EVC_CL_UID
+EVC_X_DEST_EMAIL
+EVC_X_DEST_NAME
+EVCardFormat
+E_TYPE_VCARD_PARAM_ATTRIBUTE
+E_VCARD_21_VALID_PROPERTIES
+E_VCARD_21_VALID_PARAMETERS
+EVCard
+EVCardClass
+e_vcard_construct
+e_vcard_construct_with_uid
+e_vcard_new
+e_vcard_new_from_string
+e_vcard_is_parsed
+e_vcard_to_string
+e_vcard_dump_structure
+e_vcard_attribute_new
+e_vcard_attribute_free
+e_vcard_attribute_copy
+e_vcard_remove_attributes
+e_vcard_remove_attribute
+e_vcard_append_attribute
+e_vcard_append_attribute_with_value
+e_vcard_append_attribute_with_values
+e_vcard_add_attribute
+e_vcard_add_attribute_with_value
+e_vcard_add_attribute_with_values
+e_vcard_attribute_add_value
+e_vcard_attribute_add_value_decoded
+e_vcard_attribute_add_values
+e_vcard_attribute_remove_value
+e_vcard_attribute_remove_values
+e_vcard_attribute_remove_params
+e_vcard_attribute_remove_param
+e_vcard_attribute_remove_param_value
+e_vcard_attribute_param_new
+e_vcard_attribute_param_free
+e_vcard_attribute_param_copy
+e_vcard_attribute_add_param
+e_vcard_attribute_add_param_with_value
+e_vcard_attribute_add_param_with_values
+e_vcard_attribute_param_add_value
+e_vcard_attribute_param_add_values
+e_vcard_attribute_param_remove_values
+e_vcard_get_attribute
+e_vcard_get_attribute_if_parsed
+e_vcard_get_attributes
+e_vcard_attribute_get_group
+e_vcard_attribute_get_name
+e_vcard_attribute_get_values
+e_vcard_attribute_get_values_decoded
+e_vcard_attribute_is_single_valued
+e_vcard_attribute_get_value
+e_vcard_attribute_get_value_decoded
+e_vcard_attribute_get_params
+e_vcard_attribute_get_param
+e_vcard_attribute_param_get_name
+e_vcard_attribute_param_get_values
+e_vcard_attribute_has_type
+e_vcard_escape_string
+e_vcard_unescape_string
+EVCardAttribute
+EVCardAttributeParam
+<SUBSECTION Standard>
+EVCardPrivate
+E_IS_VCARD
+E_IS_VCARD_CLASS
+E_TYPE_VCARD
+E_TYPE_VCARD_ATTRIBUTE
+E_VCARD
+E_VCARD_CLASS
+E_VCARD_GET_CLASS
+e_vcard_attribute_get_type
+e_vcard_attribute_param_get_type
+e_vcard_get_type
+</SECTION>
+
+<SECTION>
+<FILE>e-xml-hash-utils</FILE>
+EXmlHashType
+e_xml_to_hash
+e_xml_from_hash
+e_xml_destroy_hash
+EXmlHashStatus
+EXmlHashFunc
+EXmlHashRemoveFunc
+EXmlHash
+e_xmlhash_new
+e_xmlhash_add
+e_xmlhash_remove
+e_xmlhash_compare
+e_xmlhash_foreach_key
+e_xmlhash_foreach_key_remove
+e_xmlhash_write
+e_xmlhash_destroy
+</SECTION>
+
+<SECTION>
+<FILE>e-xml-utils</FILE>
+e_xml_parse_file
+e_xml_save_file
+e_xml_get_child_by_name
+</SECTION>
+
+<SECTION>
+<FILE>eds-version</FILE>
+EDS_MAJOR_VERSION
+EDS_MINOR_VERSION
+EDS_MICRO_VERSION
+EDS_CHECK_VERSION
+eds_major_version
+eds_minor_version
+eds_micro_version
+eds_check_version
+</SECTION>
+
+<SECTION>
+<FILE>libedataserver-private</FILE>
+E_DATA_SERVER_EXTENSIONDIR
+E_DATA_SERVER_IMAGESDIR
+E_DATA_SERVER_UI_UIDIR
+</SECTION>
+
+<SECTION>
+<FILE>ximian-vcard</FILE>
+XIMIAN_VCARD
+</SECTION>
+



[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]