Return-Path: Delivered-To: apmail-apr-commits-archive@www.apache.org Received: (qmail 19252 invoked from network); 20 Feb 2009 06:10:00 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.2) by minotaur.apache.org with SMTP; 20 Feb 2009 06:10:00 -0000 Received: (qmail 73716 invoked by uid 500); 20 Feb 2009 06:09:58 -0000 Delivered-To: apmail-apr-commits-archive@apr.apache.org Received: (qmail 73675 invoked by uid 500); 20 Feb 2009 06:09:58 -0000 Mailing-List: contact commits-help@apr.apache.org; run by ezmlm Precedence: bulk List-Post: List-Help: List-Unsubscribe: Reply-To: dev@apr.apache.org List-Id: Delivered-To: mailing list commits@apr.apache.org Received: (qmail 73518 invoked by uid 99); 20 Feb 2009 06:09:57 -0000 Received: from nike.apache.org (HELO nike.apache.org) (192.87.106.230) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 19 Feb 2009 22:09:57 -0800 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [140.211.11.4] (HELO eris.apache.org) (140.211.11.4) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 20 Feb 2009 06:09:42 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id 4E9CA2388CEF; Fri, 20 Feb 2009 06:08:50 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r746159 [9/23] - in /apr/site/trunk/docs/docs: apr-util/trunk/ apr/trunk/ Date: Fri, 20 Feb 2009 06:08:31 -0000 To: commits@apr.apache.org From: bojan@apache.org X-Mailer: svnmailer-1.0.8 Message-Id: <20090220060850.4E9CA2388CEF@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org Modified: apr/site/trunk/docs/docs/apr-util/trunk/nametab_8h-source.html URL: http://svn.apache.org/viewvc/apr/site/trunk/docs/docs/apr-util/trunk/nametab_8h-source.html?rev=746159&r1=746158&r2=746159&view=diff ============================================================================== --- apr/site/trunk/docs/docs/apr-util/trunk/nametab_8h-source.html (original) +++ apr/site/trunk/docs/docs/apr-util/trunk/nametab_8h-source.html Fri Feb 20 06:08:22 2009 @@ -4,7 +4,7 @@ - + -
Generated on Sat Aug 16 21:30:38 2008 for Apache Portable Runtime Utility Library by  +
Generated on Fri Feb 20 17:01:02 2009 for Apache Portable Runtime Utility Library by  -doxygen 1.5.6
+doxygen 1.5.7.1
Modified: apr/site/trunk/docs/docs/apr-util/trunk/osd__ebcdic__df04__1_8h-source.html URL: http://svn.apache.org/viewvc/apr/site/trunk/docs/docs/apr-util/trunk/osd__ebcdic__df04__1_8h-source.html?rev=746159&r1=746158&r2=746159&view=diff ============================================================================== --- apr/site/trunk/docs/docs/apr-util/trunk/osd__ebcdic__df04__1_8h-source.html (original) +++ apr/site/trunk/docs/docs/apr-util/trunk/osd__ebcdic__df04__1_8h-source.html Fri Feb 20 06:08:22 2009 @@ -4,7 +4,7 @@ - + -
Generated on Sat Aug 16 21:30:38 2008 for Apache Portable Runtime Utility Library by  +
Generated on Fri Feb 20 17:01:02 2009 for Apache Portable Runtime Utility Library by  -doxygen 1.5.6
+doxygen 1.5.7.1
Modified: apr/site/trunk/docs/docs/apr-util/trunk/pages.html URL: http://svn.apache.org/viewvc/apr/site/trunk/docs/docs/apr-util/trunk/pages.html?rev=746159&r1=746158&r2=746159&view=diff ============================================================================== --- apr/site/trunk/docs/docs/apr-util/trunk/pages.html (original) +++ apr/site/trunk/docs/docs/apr-util/trunk/pages.html Fri Feb 20 06:08:22 2009 @@ -4,7 +4,7 @@ - + -
Generated on Sat Aug 16 21:30:39 2008 for Apache Portable Runtime Utility Library by  +
Generated on Fri Feb 20 17:01:03 2009 for Apache Portable Runtime Utility Library by  -doxygen 1.5.6
+doxygen 1.5.7.1
Modified: apr/site/trunk/docs/docs/apr-util/trunk/structapr__bucket.html URL: http://svn.apache.org/viewvc/apr/site/trunk/docs/docs/apr-util/trunk/structapr__bucket.html?rev=746159&r1=746158&r2=746159&view=diff ============================================================================== --- apr/site/trunk/docs/docs/apr-util/trunk/structapr__bucket.html (original) +++ apr/site/trunk/docs/docs/apr-util/trunk/structapr__bucket.html Fri Feb 20 06:08:22 2009 @@ -4,7 +4,7 @@ - +


Field Documentation

- +

-The type of bucket. +type-dependent data hangs off this pointer

- +

- +
apr_size_t apr_bucket::length void(* apr_bucket::free)(void *e)

-The length of the data in the bucket. This could have been implemented with a function, but this is an optimization, because the most common thing to do will be to get the length. If the length is unknown, the value of this field will be (apr_size_t)(-1). +Pointer to function used to free the bucket. This function should always be defined and it should be consistent with the memory function used to allocate the bucket. For example, if malloc() is used to allocate the bucket, this pointer should point to free().

Parameters:
+ + +
e Pointer to the bucket being freed
+
+

- +

- +
apr_off_t apr_bucket::start apr_size_t apr_bucket::length

-The start of the data in the bucket relative to the private base pointer. The vast majority of bucket types allow a fixed block of data to be referenced by multiple buckets, each bucket pointing to a different segment of the data. That segment starts at base+start and ends at base+start+length. If the length == (apr_size_t)(-1), then start == -1. +The length of the data in the bucket. This could have been implemented with a function, but this is an optimization, because the most common thing to do will be to get the length. If the length is unknown, the value of this field will be (apr_size_t)(-1).

- +

-type-dependent data hangs off this pointer +The freelist from which this bucket was allocated

- +

- +
void(* apr_bucket::free)(void *e) apr_off_t apr_bucket::start

-Pointer to function used to free the bucket. This function should always be defined and it should be consistent with the memory function used to allocate the bucket. For example, if malloc() is used to allocate the bucket, this pointer should point to free().

Parameters:
- - -
e Pointer to the bucket being freed
-
- +The start of the data in the bucket relative to the private base pointer. The vast majority of bucket types allow a fixed block of data to be referenced by multiple buckets, each bucket pointing to a different segment of the data. That segment starts at base+start and ends at base+start+length. If the length == (apr_size_t)(-1), then start == -1.

- +

-The freelist from which this bucket was allocated +The type of bucket.


The documentation for this struct was generated from the following file: -
Generated on Sat Aug 16 21:30:39 2008 for Apache Portable Runtime Utility Library by  +
Generated on Fri Feb 20 17:01:03 2009 for Apache Portable Runtime Utility Library by  -doxygen 1.5.6
+doxygen 1.5.7.1
Modified: apr/site/trunk/docs/docs/apr-util/trunk/structapr__bucket__brigade.html URL: http://svn.apache.org/viewvc/apr/site/trunk/docs/docs/apr-util/trunk/structapr__bucket__brigade.html?rev=746159&r1=746158&r2=746159&view=diff ============================================================================== --- apr/site/trunk/docs/docs/apr-util/trunk/structapr__bucket__brigade.html (original) +++ apr/site/trunk/docs/docs/apr-util/trunk/structapr__bucket__brigade.html Fri Feb 20 06:08:22 2009 @@ -4,7 +4,7 @@ - +


Field Documentation

- +

-The pool to associate the brigade with. The data is not allocated out of the pool, but a cleanup is registered with this pool. If the brigade is destroyed by some mechanism other than pool destruction, the destroying function is responsible for killing the cleanup. +The freelist from which this bucket was allocated

- +

-The freelist from which this bucket was allocated +The pool to associate the brigade with. The data is not allocated out of the pool, but a cleanup is registered with this pool. If the brigade is destroyed by some mechanism other than pool destruction, the destroying function is responsible for killing the cleanup.


The documentation for this struct was generated from the following file: -
Generated on Sat Aug 16 21:30:39 2008 for Apache Portable Runtime Utility Library by  +
Generated on Fri Feb 20 17:01:03 2009 for Apache Portable Runtime Utility Library by  -doxygen 1.5.6
+doxygen 1.5.7.1
Modified: apr/site/trunk/docs/docs/apr-util/trunk/structapr__bucket__file.html URL: http://svn.apache.org/viewvc/apr/site/trunk/docs/docs/apr-util/trunk/structapr__bucket__file.html?rev=746159&r1=746158&r2=746159&view=diff ============================================================================== --- apr/site/trunk/docs/docs/apr-util/trunk/structapr__bucket__file.html (original) +++ apr/site/trunk/docs/docs/apr-util/trunk/structapr__bucket__file.html Fri Feb 20 06:08:22 2009 @@ -4,7 +4,7 @@ - +

- +

-Whether this bucket should be memory-mapped if a caller tries to read from it +Number of buckets using this memory


The documentation for this struct was generated from the following file: -
Generated on Sat Aug 16 21:30:39 2008 for Apache Portable Runtime Utility Library by  +
Generated on Fri Feb 20 17:01:03 2009 for Apache Portable Runtime Utility Library by  -doxygen 1.5.6
+doxygen 1.5.7.1
Modified: apr/site/trunk/docs/docs/apr-util/trunk/structapr__bucket__heap.html URL: http://svn.apache.org/viewvc/apr/site/trunk/docs/docs/apr-util/trunk/structapr__bucket__heap.html?rev=746159&r1=746158&r2=746159&view=diff ============================================================================== --- apr/site/trunk/docs/docs/apr-util/trunk/structapr__bucket__heap.html (original) +++ apr/site/trunk/docs/docs/apr-util/trunk/structapr__bucket__heap.html Fri Feb 20 06:08:22 2009 @@ -4,7 +4,7 @@ - +

- +

- +
apr_size_t apr_bucket_heap::alloc_len void(* apr_bucket_heap::free_func)(void *data)

-how much memory was allocated +function to use to delete the data

- +

-function to use to delete the data +Number of buckets using this memory


The documentation for this struct was generated from the following file: -
Generated on Sat Aug 16 21:30:39 2008 for Apache Portable Runtime Utility Library by  +
Generated on Fri Feb 20 17:01:03 2009 for Apache Portable Runtime Utility Library by  -doxygen 1.5.6
+doxygen 1.5.7.1
Modified: apr/site/trunk/docs/docs/apr-util/trunk/structapr__bucket__mmap.html URL: http://svn.apache.org/viewvc/apr/site/trunk/docs/docs/apr-util/trunk/structapr__bucket__mmap.html?rev=746159&r1=746158&r2=746159&view=diff ============================================================================== --- apr/site/trunk/docs/docs/apr-util/trunk/structapr__bucket__mmap.html (original) +++ apr/site/trunk/docs/docs/apr-util/trunk/structapr__bucket__mmap.html Fri Feb 20 06:08:22 2009 @@ -4,7 +4,7 @@ - +

- -

-
- - - - -
apr_status_t(* apr_bucket_type_t::copy)(apr_bucket *e, apr_bucket **c)
-
-
- -

-Copy the bucket structure (not the data), assuming that this is possible for the bucket type. If it's not, APR_ENOTIMPL is returned.

Parameters:
- - - -
e The bucket to copy
c Returns a pointer to the new bucket
-
- -
-


The documentation for this struct was generated from the following file: -
Generated on Sat Aug 16 21:30:39 2008 for Apache Portable Runtime Utility Library by  +
Generated on Fri Feb 20 17:01:03 2009 for Apache Portable Runtime Utility Library by  -doxygen 1.5.6
+doxygen 1.5.7.1
Modified: apr/site/trunk/docs/docs/apr-util/trunk/structapr__datum__t.html URL: http://svn.apache.org/viewvc/apr/site/trunk/docs/docs/apr-util/trunk/structapr__datum__t.html?rev=746159&r1=746158&r2=746159&view=diff ============================================================================== --- apr/site/trunk/docs/docs/apr-util/trunk/structapr__datum__t.html (original) +++ apr/site/trunk/docs/docs/apr-util/trunk/structapr__datum__t.html Fri Feb 20 06:08:22 2009 @@ -4,7 +4,7 @@ - +

- +

- +
void(* apr_dbm_type_t::freedatum)(apr_dbm_t *dbm, apr_datum_t data) apr_status_t(* apr_dbm_type_t::open)(apr_dbm_t **pdb, const char *pathname, apr_int32_t mode, apr_fileperms_t perm, apr_pool_t *pool)

-Proactively toss any memory associated with the apr_datum_t. +Open the DBM

- +

- +
void(* apr_dbm_type_t::getusednames)(apr_pool_t *pool, const char *pathname, const char **used1, const char **used2) apr_status_t(* apr_dbm_type_t::store)(apr_dbm_t *dbm, apr_datum_t key, apr_datum_t value)

-Get the names that the DBM will use for a given pathname. +Store a dbm record value by key


The documentation for this struct was generated from the following file: -
Generated on Sat Aug 16 21:30:39 2008 for Apache Portable Runtime Utility Library by  +
Generated on Fri Feb 20 17:01:03 2009 for Apache Portable Runtime Utility Library by  -doxygen 1.5.6
+doxygen 1.5.7.1
Added: apr/site/trunk/docs/docs/apr-util/trunk/structapr__ldap__err__t.html URL: http://svn.apache.org/viewvc/apr/site/trunk/docs/docs/apr-util/trunk/structapr__ldap__err__t.html?rev=746159&view=auto ============================================================================== --- apr/site/trunk/docs/docs/apr-util/trunk/structapr__ldap__err__t.html (added) +++ apr/site/trunk/docs/docs/apr-util/trunk/structapr__ldap__err__t.html Fri Feb 20 06:08:22 2009 @@ -0,0 +1,53 @@ + + +Apache Portable Runtime Utility Library: apr_ldap_err_t Struct Reference + + + + + +
+

apr_ldap_err_t Struct Reference
+ +[LDAP] +

#include <apr_ldap.h> +

+ + + + + + + + + +

Data Fields

+const char * reason
+const char * msg
+int rc
+


Detailed Description

+This structure allows the C LDAP API error codes to be returned along with plain text error messages that explain to us mere mortals what really happened.
The documentation for this struct was generated from the following file: +
+
Generated on Fri Feb 20 17:01:03 2009 for Apache Portable Runtime Utility Library by  + +doxygen 1.5.7.1
+ +