Return-Path: Delivered-To: apmail-apr-commits-archive@www.apache.org Received: (qmail 34747 invoked from network); 16 Jul 2009 05:09:33 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.3) by minotaur.apache.org with SMTP; 16 Jul 2009 05:09:33 -0000 Received: (qmail 63631 invoked by uid 500); 16 Jul 2009 05:10:38 -0000 Delivered-To: apmail-apr-commits-archive@apr.apache.org Received: (qmail 63559 invoked by uid 500); 16 Jul 2009 05:10:38 -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 63550 invoked by uid 99); 16 Jul 2009 05:10:38 -0000 Received: from nike.apache.org (HELO nike.apache.org) (192.87.106.230) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 16 Jul 2009 05:10:38 +0000 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; Thu, 16 Jul 2009 05:10:19 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id 5D9AD238888F; Thu, 16 Jul 2009 05:09:58 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r794529 [4/10] - /apr/site/trunk/docs/docs/apr/trunk/ Date: Thu, 16 Jul 2009 05:09:44 -0000 To: commits@apr.apache.org From: bojan@apache.org X-Mailer: svnmailer-1.0.8 Message-Id: <20090716050958.5D9AD238888F@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org Modified: apr/site/trunk/docs/docs/apr/trunk/apr__dbm_8h-source.html URL: http://svn.apache.org/viewvc/apr/site/trunk/docs/docs/apr/trunk/apr__dbm_8h-source.html?rev=794529&r1=794528&r2=794529&view=diff ============================================================================== --- apr/site/trunk/docs/docs/apr/trunk/apr__dbm_8h-source.html (original) +++ apr/site/trunk/docs/docs/apr/trunk/apr__dbm_8h-source.html Thu Jul 16 05:09:35 2009 @@ -111,7 +111,7 @@ 00086 * the correct case (lower case for all bundled providers) 00087 */ 00088 -00089 APU_DECLARE(apr_status_t) apr_dbm_open_ex(apr_dbm_t **dbm, const char* type, +00089 APR_DECLARE(apr_status_t) apr_dbm_open_ex(apr_dbm_t **dbm, const char* type, 00090 const char *name, 00091 apr_int32_t mode, apr_fileperms_t perm, 00092 apr_pool_t *cntxt); @@ -133,7 +133,7 @@ 00108 * @remark The dbm name may not be a true file name, as many dbm packages 00109 * append suffixes for seperate data and index files. 00110 */ -00111 APU_DECLARE(apr_status_t) apr_dbm_open(apr_dbm_t **dbm, const char *name, +00111 APR_DECLARE(apr_status_t) apr_dbm_open(apr_dbm_t **dbm, const char *name, 00112 apr_int32_t mode, apr_fileperms_t perm, 00113 apr_pool_t *cntxt); 00114 @@ -141,7 +141,7 @@ 00116 * Close a dbm file previously opened by apr_dbm_open 00117 * @param dbm The database to close 00118 */ -00119 APU_DECLARE(void) apr_dbm_close(apr_dbm_t *dbm); +00119 APR_DECLARE(void) apr_dbm_close(apr_dbm_t *dbm); 00120 00121 /** 00122 * Fetch a dbm record value by key @@ -149,7 +149,7 @@ 00124 * @param key The key datum to find this record 00125 * @param pvalue The value datum retrieved for this record 00126 */ -00127 APU_DECLARE(apr_status_t) apr_dbm_fetch(apr_dbm_t *dbm, apr_datum_t key, +00127 APR_DECLARE(apr_status_t) apr_dbm_fetch(apr_dbm_t *dbm, apr_datum_t key, 00128 apr_datum_t *pvalue); 00129 /** 00130 * Store a dbm record value by key @@ -157,7 +157,7 @@ 00132 * @param key The key datum to store this record by 00133 * @param value The value datum to store in this record 00134 */ -00135 APU_DECLARE(apr_status_t) apr_dbm_store(apr_dbm_t *dbm, apr_datum_t key, +00135 APR_DECLARE(apr_status_t) apr_dbm_store(apr_dbm_t *dbm, apr_datum_t key, 00136 apr_datum_t value); 00137 00138 /** @@ -166,35 +166,35 @@ 00141 * @param key The key datum of the record to delete 00142 * @remark It is not an error to delete a non-existent record. 00143 */ -00144 APU_DECLARE(apr_status_t) apr_dbm_delete(apr_dbm_t *dbm, apr_datum_t key); +00144 APR_DECLARE(apr_status_t) apr_dbm_delete(apr_dbm_t *dbm, apr_datum_t key); 00145 00146 /** 00147 * Search for a key within the dbm 00148 * @param dbm The database 00149 * @param key The datum describing a key to test 00150 */ -00151 APU_DECLARE(int) apr_dbm_exists(apr_dbm_t *dbm, apr_datum_t key); +00151 APR_DECLARE(int) apr_dbm_exists(apr_dbm_t *dbm, apr_datum_t key); 00152 00153 /** 00154 * Retrieve the first record key from a dbm 00155 * @param dbm The database 00156 * @param pkey The key datum of the first record 00157 */ -00158 APU_DECLARE(apr_status_t) apr_dbm_firstkey(apr_dbm_t *dbm, apr_datum_t *pkey); +00158 APR_DECLARE(apr_status_t) apr_dbm_firstkey(apr_dbm_t *dbm, apr_datum_t *pkey); 00159 00160 /** 00161 * Retrieve the next record key from a dbm 00162 * @param dbm The database 00163 * @param pkey The key datum of the next record 00164 */ -00165 APU_DECLARE(apr_status_t) apr_dbm_nextkey(apr_dbm_t *dbm, apr_datum_t *pkey); +00165 APR_DECLARE(apr_status_t) apr_dbm_nextkey(apr_dbm_t *dbm, apr_datum_t *pkey); 00166 00167 /** 00168 * Proactively toss any memory associated with the apr_datum_t. 00169 * @param dbm The database 00170 * @param data The datum to free. 00171 */ -00172 APU_DECLARE(void) apr_dbm_freedatum(apr_dbm_t *dbm, apr_datum_t data); +00172 APR_DECLARE(void) apr_dbm_freedatum(apr_dbm_t *dbm, apr_datum_t data); 00173 00174 /** 00175 * Report more information when an apr_dbm function fails. @@ -205,7 +205,7 @@ 00180 * @param errbufsize The size of the provided buffer 00181 * @return The errbuf parameter, for convenience. 00182 */ -00183 APU_DECLARE(char *) apr_dbm_geterror(apr_dbm_t *dbm, int *errcode, +00183 APR_DECLARE(char *) apr_dbm_geterror(apr_dbm_t *dbm, int *errcode, 00184 char *errbuf, apr_size_t errbufsize); 00185 /** 00186 * If the specified file/path were passed to apr_dbm_open(), return the @@ -221,7 +221,7 @@ 00196 * @remark The dbm file(s) don't need to exist. This function only manipulates 00197 * the pathnames. 00198 */ -00199 APU_DECLARE(apr_status_t) apr_dbm_get_usednames_ex(apr_pool_t *pool, +00199 APR_DECLARE(apr_status_t) apr_dbm_get_usednames_ex(apr_pool_t *pool, 00200 const char *type, 00201 const char *pathname, 00202 const char **used1, @@ -239,7 +239,7 @@ 00214 * @remark The dbm file(s) don't need to exist. This function only manipulates 00215 * the pathnames. 00216 */ -00217 APU_DECLARE(void) apr_dbm_get_usednames(apr_pool_t *pool, +00217 APR_DECLARE(void) apr_dbm_get_usednames(apr_pool_t *pool, 00218 const char *pathname, 00219 const char **used1, 00220 const char **used2); @@ -251,7 +251,7 @@ 00226 00227 #endif /* !APR_DBM_H */ -
Generated on Thu Jul 16 13:37:22 2009 for Apache Portable Runtime by  +
Generated on Thu Jul 16 14:58:20 2009 for Apache Portable Runtime by  doxygen 1.5.8
Modified: apr/site/trunk/docs/docs/apr/trunk/apr__dbm_8h.html URL: http://svn.apache.org/viewvc/apr/site/trunk/docs/docs/apr/trunk/apr__dbm_8h.html?rev=794529&r1=794528&r2=794529&view=diff ============================================================================== --- apr/site/trunk/docs/docs/apr/trunk/apr__dbm_8h.html (original) +++ apr/site/trunk/docs/docs/apr/trunk/apr__dbm_8h.html Thu Jul 16 05:09:35 2009 @@ -84,7 +84,7 @@ APR-UTIL DBM library.

-


Generated on Thu Jul 16 13:37:22 2009 for Apache Portable Runtime by  +
Generated on Thu Jul 16 14:58:21 2009 for Apache Portable Runtime by  doxygen 1.5.8
Modified: apr/site/trunk/docs/docs/apr/trunk/apr__dbm__private_8h-source.html URL: http://svn.apache.org/viewvc/apr/site/trunk/docs/docs/apr/trunk/apr__dbm__private_8h-source.html?rev=794529&r1=794528&r2=794529&view=diff ============================================================================== --- apr/site/trunk/docs/docs/apr/trunk/apr__dbm__private_8h-source.html (original) +++ apr/site/trunk/docs/docs/apr/trunk/apr__dbm__private_8h-source.html Thu Jul 16 05:09:35 2009 @@ -64,7 +64,7 @@ 00039 * Most DBM libraries take a POSIX mode for creating files. Don't trust 00040 * the mode_t type, some platforms may not support it, int is safe. 00041 */ -00042 APU_DECLARE(int) apr_posix_perms2mode(apr_fileperms_t perm); +00042 APR_DECLARE(int) apr_posix_perms2mode(apr_fileperms_t perm); 00043 00044 /** 00045 * Structure to describe the operations of the DBM @@ -145,7 +145,7 @@ 00120 00121 #endif /* APR_DBM_PRIVATE_H */ -
Generated on Thu Jul 16 13:37:22 2009 for Apache Portable Runtime by  +
Generated on Thu Jul 16 14:58:20 2009 for Apache Portable Runtime by  doxygen 1.5.8
Modified: apr/site/trunk/docs/docs/apr/trunk/apr__dso_8h-source.html URL: http://svn.apache.org/viewvc/apr/site/trunk/docs/docs/apr/trunk/apr__dso_8h-source.html?rev=794529&r1=794528&r2=794529&view=diff ============================================================================== --- apr/site/trunk/docs/docs/apr/trunk/apr__dso_8h-source.html (original) +++ apr/site/trunk/docs/docs/apr/trunk/apr__dso_8h-source.html Thu Jul 16 05:09:35 2009 @@ -118,7 +118,7 @@ 00093 00094 #endif -
Generated on Thu Jul 16 13:37:22 2009 for Apache Portable Runtime by  +
Generated on Thu Jul 16 14:58:20 2009 for Apache Portable Runtime by  doxygen 1.5.8
Modified: apr/site/trunk/docs/docs/apr/trunk/apr__dso_8h.html URL: http://svn.apache.org/viewvc/apr/site/trunk/docs/docs/apr/trunk/apr__dso_8h.html?rev=794529&r1=794528&r2=794529&view=diff ============================================================================== --- apr/site/trunk/docs/docs/apr/trunk/apr__dso_8h.html (original) +++ apr/site/trunk/docs/docs/apr/trunk/apr__dso_8h.html Thu Jul 16 05:09:35 2009 @@ -54,7 +54,7 @@ APR Dynamic Object Handling Routines.

-


Generated on Thu Jul 16 13:37:22 2009 for Apache Portable Runtime by  +
Generated on Thu Jul 16 14:58:21 2009 for Apache Portable Runtime by  doxygen 1.5.8
Modified: apr/site/trunk/docs/docs/apr/trunk/apr__env_8h-source.html URL: http://svn.apache.org/viewvc/apr/site/trunk/docs/docs/apr/trunk/apr__env_8h-source.html?rev=794529&r1=794528&r2=794529&view=diff ============================================================================== --- apr/site/trunk/docs/docs/apr/trunk/apr__env_8h-source.html (original) +++ apr/site/trunk/docs/docs/apr/trunk/apr__env_8h-source.html Thu Jul 16 05:09:35 2009 @@ -91,7 +91,7 @@ 00066 00067 #endif /* ! APR_ENV_H */ -
Generated on Thu Jul 16 13:37:22 2009 for Apache Portable Runtime by  +
Generated on Thu Jul 16 14:58:20 2009 for Apache Portable Runtime by  doxygen 1.5.8
Modified: apr/site/trunk/docs/docs/apr/trunk/apr__env_8h.html URL: http://svn.apache.org/viewvc/apr/site/trunk/docs/docs/apr/trunk/apr__env_8h.html?rev=794529&r1=794528&r2=794529&view=diff ============================================================================== --- apr/site/trunk/docs/docs/apr/trunk/apr__env_8h.html (original) +++ apr/site/trunk/docs/docs/apr/trunk/apr__env_8h.html Thu Jul 16 05:09:35 2009 @@ -46,7 +46,7 @@ APR Environment functions.

-


Generated on Thu Jul 16 13:37:22 2009 for Apache Portable Runtime by  +
Generated on Thu Jul 16 14:58:21 2009 for Apache Portable Runtime by  doxygen 1.5.8
Modified: apr/site/trunk/docs/docs/apr/trunk/apr__errno_8h-source.html URL: http://svn.apache.org/viewvc/apr/site/trunk/docs/docs/apr/trunk/apr__errno_8h-source.html?rev=794529&r1=794528&r2=794529&view=diff ============================================================================== --- apr/site/trunk/docs/docs/apr/trunk/apr__errno_8h-source.html (original) +++ apr/site/trunk/docs/docs/apr/trunk/apr__errno_8h-source.html Thu Jul 16 05:09:35 2009 @@ -1336,7 +1336,7 @@ 01311 01312 #endif /* ! APR_ERRNO_H */ -
Generated on Thu Jul 16 13:37:22 2009 for Apache Portable Runtime by  +
Generated on Thu Jul 16 14:58:20 2009 for Apache Portable Runtime by  doxygen 1.5.8
Modified: apr/site/trunk/docs/docs/apr/trunk/apr__errno_8h.html URL: http://svn.apache.org/viewvc/apr/site/trunk/docs/docs/apr/trunk/apr__errno_8h.html?rev=794529&r1=794528&r2=794529&view=diff ============================================================================== --- apr/site/trunk/docs/docs/apr/trunk/apr__errno_8h.html (original) +++ apr/site/trunk/docs/docs/apr/trunk/apr__errno_8h.html Thu Jul 16 05:09:35 2009 @@ -372,7 +372,7 @@ APR Error Codes.

-


Generated on Thu Jul 16 13:37:22 2009 for Apache Portable Runtime by  +
Generated on Thu Jul 16 14:58:21 2009 for Apache Portable Runtime by  doxygen 1.5.8
Modified: apr/site/trunk/docs/docs/apr/trunk/apr__file__info_8h-source.html URL: http://svn.apache.org/viewvc/apr/site/trunk/docs/docs/apr/trunk/apr__file__info_8h-source.html?rev=794529&r1=794528&r2=794529&view=diff ============================================================================== --- apr/site/trunk/docs/docs/apr/trunk/apr__file__info_8h-source.html (original) +++ apr/site/trunk/docs/docs/apr/trunk/apr__file__info_8h-source.html Thu Jul 16 05:09:35 2009 @@ -451,7 +451,7 @@ 00426 00427 #endif /* ! APR_FILE_INFO_H */ -
Generated on Thu Jul 16 13:37:22 2009 for Apache Portable Runtime by  +
Generated on Thu Jul 16 14:58:20 2009 for Apache Portable Runtime by  doxygen 1.5.8
Modified: apr/site/trunk/docs/docs/apr/trunk/apr__file__info_8h.html URL: http://svn.apache.org/viewvc/apr/site/trunk/docs/docs/apr/trunk/apr__file__info_8h.html?rev=794529&r1=794528&r2=794529&view=diff ============================================================================== --- apr/site/trunk/docs/docs/apr/trunk/apr__file__info_8h.html (original) +++ apr/site/trunk/docs/docs/apr/trunk/apr__file__info_8h.html Thu Jul 16 05:09:35 2009 @@ -220,7 +220,7 @@ APR File Information.

-


Generated on Thu Jul 16 13:37:22 2009 for Apache Portable Runtime by  +
Generated on Thu Jul 16 14:58:21 2009 for Apache Portable Runtime by  doxygen 1.5.8
Modified: apr/site/trunk/docs/docs/apr/trunk/apr__file__io_8h-source.html URL: http://svn.apache.org/viewvc/apr/site/trunk/docs/docs/apr/trunk/apr__file__io_8h-source.html?rev=794529&r1=794528&r2=794529&view=diff ============================================================================== --- apr/site/trunk/docs/docs/apr/trunk/apr__file__io_8h-source.html (original) +++ apr/site/trunk/docs/docs/apr/trunk/apr__file__io_8h-source.html Thu Jul 16 05:09:35 2009 @@ -967,7 +967,7 @@ 00942 00943 #endif /* ! APR_FILE_IO_H */ -
Generated on Thu Jul 16 13:37:22 2009 for Apache Portable Runtime by  +
Generated on Thu Jul 16 14:58:20 2009 for Apache Portable Runtime by  doxygen 1.5.8
Modified: apr/site/trunk/docs/docs/apr/trunk/apr__file__io_8h.html URL: http://svn.apache.org/viewvc/apr/site/trunk/docs/docs/apr/trunk/apr__file__io_8h.html?rev=794529&r1=794528&r2=794529&view=diff ============================================================================== --- apr/site/trunk/docs/docs/apr/trunk/apr__file__io_8h.html (original) +++ apr/site/trunk/docs/docs/apr/trunk/apr__file__io_8h.html Thu Jul 16 05:09:35 2009 @@ -286,7 +286,7 @@

-


Generated on Thu Jul 16 13:37:22 2009 for Apache Portable Runtime by  +
Generated on Thu Jul 16 14:58:21 2009 for Apache Portable Runtime by  doxygen 1.5.8
Modified: apr/site/trunk/docs/docs/apr/trunk/apr__fnmatch_8h-source.html URL: http://svn.apache.org/viewvc/apr/site/trunk/docs/docs/apr/trunk/apr__fnmatch_8h-source.html?rev=794529&r1=794528&r2=794529&view=diff ============================================================================== --- apr/site/trunk/docs/docs/apr/trunk/apr__fnmatch_8h-source.html (original) +++ apr/site/trunk/docs/docs/apr/trunk/apr__fnmatch_8h-source.html Thu Jul 16 05:09:35 2009 @@ -173,7 +173,7 @@ 00148 00149 #endif /* !_APR_FNMATCH_H_ */ -
Generated on Thu Jul 16 13:37:22 2009 for Apache Portable Runtime by  +
Generated on Thu Jul 16 14:58:20 2009 for Apache Portable Runtime by  doxygen 1.5.8
Modified: apr/site/trunk/docs/docs/apr/trunk/apr__fnmatch_8h.html URL: http://svn.apache.org/viewvc/apr/site/trunk/docs/docs/apr/trunk/apr__fnmatch_8h.html?rev=794529&r1=794528&r2=794529&view=diff ============================================================================== --- apr/site/trunk/docs/docs/apr/trunk/apr__fnmatch_8h.html (original) +++ apr/site/trunk/docs/docs/apr/trunk/apr__fnmatch_8h.html Thu Jul 16 05:09:35 2009 @@ -57,7 +57,7 @@ APR FNMatch Functions.

-


Generated on Thu Jul 16 13:37:22 2009 for Apache Portable Runtime by  +
Generated on Thu Jul 16 14:58:21 2009 for Apache Portable Runtime by  doxygen 1.5.8
Modified: apr/site/trunk/docs/docs/apr/trunk/apr__general_8h-source.html URL: http://svn.apache.org/viewvc/apr/site/trunk/docs/docs/apr/trunk/apr__general_8h-source.html?rev=794529&r1=794528&r2=794529&view=diff ============================================================================== --- apr/site/trunk/docs/docs/apr/trunk/apr__general_8h-source.html (original) +++ apr/site/trunk/docs/docs/apr/trunk/apr__general_8h-source.html Thu Jul 16 05:09:35 2009 @@ -265,7 +265,7 @@ 00240 00241 #endif /* ! APR_GENERAL_H */ -
Generated on Thu Jul 16 13:37:22 2009 for Apache Portable Runtime by  +
Generated on Thu Jul 16 14:58:20 2009 for Apache Portable Runtime by  doxygen 1.5.8
Modified: apr/site/trunk/docs/docs/apr/trunk/apr__general_8h.html URL: http://svn.apache.org/viewvc/apr/site/trunk/docs/docs/apr/trunk/apr__general_8h.html?rev=794529&r1=794528&r2=794529&view=diff ============================================================================== --- apr/site/trunk/docs/docs/apr/trunk/apr__general_8h.html (original) +++ apr/site/trunk/docs/docs/apr/trunk/apr__general_8h.html Thu Jul 16 05:09:35 2009 @@ -80,7 +80,7 @@ APR Miscellaneous library routines.

This is collection of oddballs that didn't fit anywhere else, and might move to more appropriate headers with the release of APR 1.0. -


Generated on Thu Jul 16 13:37:22 2009 for Apache Portable Runtime by  +
Generated on Thu Jul 16 14:58:21 2009 for Apache Portable Runtime by  doxygen 1.5.8
Modified: apr/site/trunk/docs/docs/apr/trunk/apr__getopt_8h-source.html URL: http://svn.apache.org/viewvc/apr/site/trunk/docs/docs/apr/trunk/apr__getopt_8h-source.html?rev=794529&r1=794528&r2=794529&view=diff ============================================================================== --- apr/site/trunk/docs/docs/apr/trunk/apr__getopt_8h-source.html (original) +++ apr/site/trunk/docs/docs/apr/trunk/apr__getopt_8h-source.html Thu Jul 16 05:09:35 2009 @@ -184,7 +184,7 @@ 00159 00160 #endif /* ! APR_GETOPT_H */ -
Generated on Thu Jul 16 13:37:22 2009 for Apache Portable Runtime by  +
Generated on Thu Jul 16 14:58:21 2009 for Apache Portable Runtime by  doxygen 1.5.8
Modified: apr/site/trunk/docs/docs/apr/trunk/apr__getopt_8h.html URL: http://svn.apache.org/viewvc/apr/site/trunk/docs/docs/apr/trunk/apr__getopt_8h.html?rev=794529&r1=794528&r2=794529&view=diff ============================================================================== --- apr/site/trunk/docs/docs/apr/trunk/apr__getopt_8h.html (original) +++ apr/site/trunk/docs/docs/apr/trunk/apr__getopt_8h.html Thu Jul 16 05:09:35 2009 @@ -57,7 +57,7 @@ APR Command Arguments (getopt).

-


Generated on Thu Jul 16 13:37:22 2009 for Apache Portable Runtime by  +
Generated on Thu Jul 16 14:58:21 2009 for Apache Portable Runtime by  doxygen 1.5.8
Modified: apr/site/trunk/docs/docs/apr/trunk/apr__global__mutex_8h-source.html URL: http://svn.apache.org/viewvc/apr/site/trunk/docs/docs/apr/trunk/apr__global__mutex_8h-source.html?rev=794529&r1=794528&r2=794529&view=diff ============================================================================== --- apr/site/trunk/docs/docs/apr/trunk/apr__global__mutex_8h-source.html (original) +++ apr/site/trunk/docs/docs/apr/trunk/apr__global__mutex_8h-source.html Thu Jul 16 05:09:35 2009 @@ -182,7 +182,7 @@ 00157 00158 #endif /* ndef APR_GLOBAL_MUTEX_H */ -
Generated on Thu Jul 16 13:37:22 2009 for Apache Portable Runtime by  +
Generated on Thu Jul 16 14:58:21 2009 for Apache Portable Runtime by  doxygen 1.5.8
Modified: apr/site/trunk/docs/docs/apr/trunk/apr__global__mutex_8h.html URL: http://svn.apache.org/viewvc/apr/site/trunk/docs/docs/apr/trunk/apr__global__mutex_8h.html?rev=794529&r1=794528&r2=794529&view=diff ============================================================================== --- apr/site/trunk/docs/docs/apr/trunk/apr__global__mutex_8h.html (original) +++ apr/site/trunk/docs/docs/apr/trunk/apr__global__mutex_8h.html Thu Jul 16 05:09:35 2009 @@ -61,7 +61,7 @@ APR Global Locking Routines.

-


Generated on Thu Jul 16 13:37:22 2009 for Apache Portable Runtime by  +
Generated on Thu Jul 16 14:58:21 2009 for Apache Portable Runtime by  doxygen 1.5.8
Modified: apr/site/trunk/docs/docs/apr/trunk/apr__hash_8h-source.html URL: http://svn.apache.org/viewvc/apr/site/trunk/docs/docs/apr/trunk/apr__hash_8h-source.html?rev=794529&r1=794528&r2=794529&view=diff ============================================================================== --- apr/site/trunk/docs/docs/apr/trunk/apr__hash_8h-source.html (original) +++ apr/site/trunk/docs/docs/apr/trunk/apr__hash_8h-source.html Thu Jul 16 05:09:35 2009 @@ -286,7 +286,7 @@ 00261 00262 #endif /* !APR_HASH_H */ -
Generated on Thu Jul 16 13:37:22 2009 for Apache Portable Runtime by  +
Generated on Thu Jul 16 14:58:21 2009 for Apache Portable Runtime by  doxygen 1.5.8
Modified: apr/site/trunk/docs/docs/apr/trunk/apr__hash_8h.html URL: http://svn.apache.org/viewvc/apr/site/trunk/docs/docs/apr/trunk/apr__hash_8h.html?rev=794529&r1=794528&r2=794529&view=diff ============================================================================== --- apr/site/trunk/docs/docs/apr/trunk/apr__hash_8h.html (original) +++ apr/site/trunk/docs/docs/apr/trunk/apr__hash_8h.html Thu Jul 16 05:09:35 2009 @@ -82,7 +82,7 @@ APR Hash Tables.

-


Generated on Thu Jul 16 13:37:22 2009 for Apache Portable Runtime by  +
Generated on Thu Jul 16 14:58:21 2009 for Apache Portable Runtime by  doxygen 1.5.8
Modified: apr/site/trunk/docs/docs/apr/trunk/apr__hooks_8h-source.html URL: http://svn.apache.org/viewvc/apr/site/trunk/docs/docs/apr/trunk/apr__hooks_8h-source.html?rev=794529&r1=794528&r2=794529&view=diff ============================================================================== --- apr/site/trunk/docs/docs/apr/trunk/apr__hooks_8h-source.html (original) +++ apr/site/trunk/docs/docs/apr/trunk/apr__hooks_8h-source.html Thu Jul 16 05:09:35 2009 @@ -272,30 +272,30 @@ 00247 /** 00248 * The global pool used to allocate any memory needed by the hooks. 00249 */ -00250 APU_DECLARE_DATA extern apr_pool_t *apr_hook_global_pool; +00250 APR_DECLARE_DATA extern apr_pool_t *apr_hook_global_pool; 00251 00252 /** 00253 * A global variable to determine if debugging information about the 00254 * hooks functions should be printed 00255 */ -00256 APU_DECLARE_DATA extern int apr_hook_debug_enabled; +00256 APR_DECLARE_DATA extern int apr_hook_debug_enabled; 00257 00258 /** 00259 * The name of the module that is currently registering a function 00260 */ -00261 APU_DECLARE_DATA extern const char *apr_hook_debug_current; +00261 APR_DECLARE_DATA extern const char *apr_hook_debug_current; 00262 00263 /** 00264 * Register a hook function to be sorted 00265 * @param szHookName The name of the Hook the function is registered for 00266 * @param aHooks The array which stores all of the functions for this hook 00267 */ -00268 APU_DECLARE(void) apr_hook_sort_register(const char *szHookName, +00268 APR_DECLARE(void) apr_hook_sort_register(const char *szHookName, 00269 apr_array_header_t **aHooks); 00270 /** 00271 * Sort all of the registerd functions for a given hook 00272 */ -00273 APU_DECLARE(void) apr_hook_sort_all(void); +00273 APR_DECLARE(void) apr_hook_sort_all(void); 00274 00275 /** 00276 * Print all of the information about the current hook. This is used for @@ -304,14 +304,14 @@ 00279 * @param aszPre All of the functions in the predecessor array 00280 * @param aszSucc All of the functions in the successor array 00281 */ -00282 APU_DECLARE(void) apr_hook_debug_show(const char *szName, +00282 APR_DECLARE(void) apr_hook_debug_show(const char *szName, 00283 const char * const *aszPre, 00284 const char * const *aszSucc); 00285 00286 /** 00287 * Remove all currently registered functions. 00288 */ -00289 APU_DECLARE(void) apr_hook_deregister_all(void); +00289 APR_DECLARE(void) apr_hook_deregister_all(void); 00290 00291 /** @} */ 00292 #ifdef __cplusplus @@ -320,7 +320,7 @@ 00295 00296 #endif /* APR_HOOKS_H */ -
Generated on Thu Jul 16 13:37:22 2009 for Apache Portable Runtime by  +
Generated on Thu Jul 16 14:58:21 2009 for Apache Portable Runtime by  doxygen 1.5.8
Modified: apr/site/trunk/docs/docs/apr/trunk/apr__hooks_8h.html URL: http://svn.apache.org/viewvc/apr/site/trunk/docs/docs/apr/trunk/apr__hooks_8h.html?rev=794529&r1=794528&r2=794529&view=diff ============================================================================== --- apr/site/trunk/docs/docs/apr/trunk/apr__hooks_8h.html (original) +++ apr/site/trunk/docs/docs/apr/trunk/apr__hooks_8h.html Thu Jul 16 05:09:35 2009 @@ -91,7 +91,7 @@ Apache hook functions.

-


Generated on Thu Jul 16 13:37:22 2009 for Apache Portable Runtime by  +
Generated on Thu Jul 16 14:58:21 2009 for Apache Portable Runtime by  doxygen 1.5.8
Modified: apr/site/trunk/docs/docs/apr/trunk/apr__inherit_8h-source.html URL: http://svn.apache.org/viewvc/apr/site/trunk/docs/docs/apr/trunk/apr__inherit_8h-source.html?rev=794529&r1=794528&r2=794529&view=diff ============================================================================== --- apr/site/trunk/docs/docs/apr/trunk/apr__inherit_8h-source.html (original) +++ apr/site/trunk/docs/docs/apr/trunk/apr__inherit_8h-source.html Thu Jul 16 05:09:35 2009 @@ -75,7 +75,7 @@ 00050 00051 #endif /* ! APR_INHERIT_H */ -
Generated on Thu Jul 16 13:37:22 2009 for Apache Portable Runtime by  +
Generated on Thu Jul 16 14:58:21 2009 for Apache Portable Runtime by  doxygen 1.5.8
Modified: apr/site/trunk/docs/docs/apr/trunk/apr__inherit_8h.html URL: http://svn.apache.org/viewvc/apr/site/trunk/docs/docs/apr/trunk/apr__inherit_8h.html?rev=794529&r1=794528&r2=794529&view=diff ============================================================================== --- apr/site/trunk/docs/docs/apr/trunk/apr__inherit_8h.html (original) +++ apr/site/trunk/docs/docs/apr/trunk/apr__inherit_8h.html Thu Jul 16 05:09:35 2009 @@ -92,7 +92,7 @@

-


Generated on Thu Jul 16 13:37:22 2009 for Apache Portable Runtime by  +
Generated on Thu Jul 16 14:58:21 2009 for Apache Portable Runtime by  doxygen 1.5.8
Modified: apr/site/trunk/docs/docs/apr/trunk/apr__ldap_8h-source.html URL: http://svn.apache.org/viewvc/apr/site/trunk/docs/docs/apr/trunk/apr__ldap_8h-source.html?rev=794529&r1=794528&r2=794529&view=diff ============================================================================== --- apr/site/trunk/docs/docs/apr/trunk/apr__ldap_8h-source.html (original) +++ apr/site/trunk/docs/docs/apr/trunk/apr__ldap_8h-source.html Thu Jul 16 05:09:35 2009 @@ -207,9 +207,9 @@ 00182 #define apr_ldap_rebind_add apr__ldap_rebind_add 00183 #define apr_ldap_rebind_remove apr__ldap_rebind_remove 00184 -00185 #define APU_DECLARE_LDAP(type) type +00185 #define APR_DECLARE_LDAP(type) type 00186 #else -00187 #define APU_DECLARE_LDAP(type) APU_DECLARE(type) +00187 #define APR_DECLARE_LDAP(type) APR_DECLARE(type) 00188 #endif 00189 00190 #include "apr_ldap_url.h" @@ -221,7 +221,7 @@ 00196 #endif /* APR_HAS_LDAP */ 00197 #endif /* APU_LDAP_H */ -
Generated on Thu Jul 16 13:37:22 2009 for Apache Portable Runtime by  +
Generated on Thu Jul 16 14:58:21 2009 for Apache Portable Runtime by  doxygen 1.5.8
Modified: apr/site/trunk/docs/docs/apr/trunk/apr__ldap_8h.html URL: http://svn.apache.org/viewvc/apr/site/trunk/docs/docs/apr/trunk/apr__ldap_8h.html?rev=794529&r1=794528&r2=794529&view=diff ============================================================================== --- apr/site/trunk/docs/docs/apr/trunk/apr__ldap_8h.html (original) +++ apr/site/trunk/docs/docs/apr/trunk/apr__ldap_8h.html Thu Jul 16 05:09:35 2009 @@ -114,15 +114,15 @@ #define APR_LDAP_IS_SERVER_DOWN(s)   ((s) == LDAP_SERVER_DOWN) - -#define APU_DECLARE_LDAP(type)   APU_DECLARE(type) + +#define APR_DECLARE_LDAP(type)   APR_DECLARE(type)

Detailed Description

APR-UTIL LDAP.

-


Generated on Thu Jul 16 13:37:22 2009 for Apache Portable Runtime by  +
Generated on Thu Jul 16 14:58:21 2009 for Apache Portable Runtime by  doxygen 1.5.8
Modified: apr/site/trunk/docs/docs/apr/trunk/apr__ldap__init_8h-source.html URL: http://svn.apache.org/viewvc/apr/site/trunk/docs/docs/apr/trunk/apr__ldap__init_8h-source.html?rev=794529&r1=794528&r2=794529&view=diff ============================================================================== --- apr/site/trunk/docs/docs/apr/trunk/apr__ldap__init_8h-source.html (original) +++ apr/site/trunk/docs/docs/apr/trunk/apr__ldap__init_8h-source.html Thu Jul 16 05:09:35 2009 @@ -111,7 +111,7 @@ 00086 * apr_ldap_set_option() APR_LDAP_OPT_TLS_CERT option for details. 00087 * @param result_err The returned result 00088 */ -00089 APU_DECLARE_LDAP(int) apr_ldap_ssl_init(apr_pool_t *pool, +00089 APR_DECLARE_LDAP(int) apr_ldap_ssl_init(apr_pool_t *pool, 00090 const char *cert_auth_file, 00091 int cert_file_type, 00092 apr_ldap_err_t **result_err); @@ -125,7 +125,7 @@ 00100 * @todo currently we do not check whether apr_ldap_ssl_init() 00101 * has been called first - we probably should. 00102 */ -00103 APU_DECLARE_LDAP(int) apr_ldap_ssl_deinit(void); +00103 APR_DECLARE_LDAP(int) apr_ldap_ssl_deinit(void); 00104 00105 /** 00106 * APR LDAP initialise function @@ -161,7 +161,7 @@ 00136 * @param secure The security mode to set 00137 * @param result_err The returned result 00138 */ -00139 APU_DECLARE_LDAP(int) apr_ldap_init(apr_pool_t *pool, +00139 APR_DECLARE_LDAP(int) apr_ldap_init(apr_pool_t *pool, 00140 LDAP **ldap, 00141 const char *hostname, 00142 int portno, @@ -176,7 +176,7 @@ 00151 * @param pool The pool to use 00152 * @param result_err The returned result 00153 */ -00154 APU_DECLARE_LDAP(int) apr_ldap_info(apr_pool_t *pool, +00154 APR_DECLARE_LDAP(int) apr_ldap_info(apr_pool_t *pool, 00155 apr_ldap_err_t **result_err); 00156 00157 #ifdef __cplusplus @@ -189,7 +189,7 @@ 00164 00165 #endif /* APR_LDAP_URL_H */ -
Generated on Thu Jul 16 13:37:22 2009 for Apache Portable Runtime by  +
Generated on Thu Jul 16 14:58:21 2009 for Apache Portable Runtime by  doxygen 1.5.8
Modified: apr/site/trunk/docs/docs/apr/trunk/apr__ldap__init_8h.html URL: http://svn.apache.org/viewvc/apr/site/trunk/docs/docs/apr/trunk/apr__ldap__init_8h.html?rev=794529&r1=794528&r2=794529&view=diff ============================================================================== --- apr/site/trunk/docs/docs/apr/trunk/apr__ldap__init_8h.html (original) +++ apr/site/trunk/docs/docs/apr/trunk/apr__ldap__init_8h.html Thu Jul 16 05:09:35 2009 @@ -52,7 +52,7 @@ APR-UTIL LDAP ldap_init() functions.

-


Generated on Thu Jul 16 13:37:22 2009 for Apache Portable Runtime by  +
Generated on Thu Jul 16 14:58:21 2009 for Apache Portable Runtime by  doxygen 1.5.8
Modified: apr/site/trunk/docs/docs/apr/trunk/apr__ldap__option_8h-source.html URL: http://svn.apache.org/viewvc/apr/site/trunk/docs/docs/apr/trunk/apr__ldap__option_8h-source.html?rev=794529&r1=794528&r2=794529&view=diff ============================================================================== --- apr/site/trunk/docs/docs/apr/trunk/apr__ldap__option_8h-source.html (original) +++ apr/site/trunk/docs/docs/apr/trunk/apr__ldap__option_8h-source.html Thu Jul 16 05:09:35 2009 @@ -239,7 +239,7 @@ 00214 * @param result_err The apr_ldap_err_t structure contained detailed results 00215 * of the operation. 00216 */ -00217 APU_DECLARE_LDAP(int) apr_ldap_get_option(apr_pool_t *pool, +00217 APR_DECLARE_LDAP(int) apr_ldap_get_option(apr_pool_t *pool, 00218 LDAP *ldap, 00219 int option, 00220 void *outvalue, @@ -261,7 +261,7 @@ 00236 * @param result_err The apr_ldap_err_t structure contained detailed results 00237 * of the operation. 00238 */ -00239 APU_DECLARE_LDAP(int) apr_ldap_set_option(apr_pool_t *pool, +00239 APR_DECLARE_LDAP(int) apr_ldap_set_option(apr_pool_t *pool, 00240 LDAP *ldap, 00241 int option, 00242 const void *invalue, @@ -278,7 +278,7 @@ 00253 #endif /* APR_LDAP_OPTION_H */ 00254 -
Generated on Thu Jul 16 13:37:22 2009 for Apache Portable Runtime by  +
Generated on Thu Jul 16 14:58:21 2009 for Apache Portable Runtime by  doxygen 1.5.8
Modified: apr/site/trunk/docs/docs/apr/trunk/apr__ldap__option_8h.html URL: http://svn.apache.org/viewvc/apr/site/trunk/docs/docs/apr/trunk/apr__ldap__option_8h.html?rev=794529&r1=794528&r2=794529&view=diff ============================================================================== --- apr/site/trunk/docs/docs/apr/trunk/apr__ldap__option_8h.html (original) +++ apr/site/trunk/docs/docs/apr/trunk/apr__ldap__option_8h.html Thu Jul 16 05:09:35 2009 @@ -101,7 +101,7 @@ APR-UTIL LDAP ldap_*_option() functions.

-


Generated on Thu Jul 16 13:37:22 2009 for Apache Portable Runtime by  +
Generated on Thu Jul 16 14:58:21 2009 for Apache Portable Runtime by  doxygen 1.5.8
Modified: apr/site/trunk/docs/docs/apr/trunk/apr__ldap__rebind_8h-source.html URL: http://svn.apache.org/viewvc/apr/site/trunk/docs/docs/apr/trunk/apr__ldap__rebind_8h-source.html?rev=794529&r1=794528&r2=794529&view=diff ============================================================================== --- apr/site/trunk/docs/docs/apr/trunk/apr__ldap__rebind_8h-source.html (original) +++ apr/site/trunk/docs/docs/apr/trunk/apr__ldap__rebind_8h-source.html Thu Jul 16 05:09:35 2009 @@ -73,7 +73,7 @@ 00048 * This function creates the lock for controlling access to the xref list.. 00049 * @param pool Pool to use when creating the xref_lock. 00050 */ -00051 APU_DECLARE_LDAP(apr_status_t) apr_ldap_rebind_init(apr_pool_t *pool); +00051 APR_DECLARE_LDAP(apr_status_t) apr_ldap_rebind_init(apr_pool_t *pool); 00052 00053 00054 /** @@ -97,7 +97,7 @@ 00072 * @param bindPW The bind Password to be used for any binds while 00073 * chasing referrals on this ldap connection. 00074 */ -00075 APU_DECLARE_LDAP(apr_status_t) apr_ldap_rebind_add(apr_pool_t *pool, +00075 APR_DECLARE_LDAP(apr_status_t) apr_ldap_rebind_add(apr_pool_t *pool, 00076 LDAP *ld, 00077 const char *bindDN, 00078 const char *bindPW); @@ -113,7 +113,7 @@ 00088 * 00089 * @param ld The LDAP connectionhandle 00090 */ -00091 APU_DECLARE_LDAP(apr_status_t) apr_ldap_rebind_remove(LDAP *ld); +00091 APR_DECLARE_LDAP(apr_status_t) apr_ldap_rebind_remove(LDAP *ld); 00092 00093 #endif /* APR_HAS_LDAP */ 00094 @@ -122,7 +122,7 @@ 00097 #endif /* APU_LDAP_REBIND_H */ 00098 -
Generated on Thu Jul 16 13:37:22 2009 for Apache Portable Runtime by  +
Generated on Thu Jul 16 14:58:21 2009 for Apache Portable Runtime by  doxygen 1.5.8
Modified: apr/site/trunk/docs/docs/apr/trunk/apr__ldap__rebind_8h.html URL: http://svn.apache.org/viewvc/apr/site/trunk/docs/docs/apr/trunk/apr__ldap__rebind_8h.html?rev=794529&r1=794528&r2=794529&view=diff ============================================================================== --- apr/site/trunk/docs/docs/apr/trunk/apr__ldap__rebind_8h.html (original) +++ apr/site/trunk/docs/docs/apr/trunk/apr__ldap__rebind_8h.html Thu Jul 16 05:09:35 2009 @@ -46,7 +46,7 @@

The APR LDAP rebind functions provide an implementation of a rebind procedure that can be used to allow clients to chase referrals, using the same credentials used to log in originally.

Use of this implementation is optional. -


Generated on Thu Jul 16 13:37:22 2009 for Apache Portable Runtime by  +
Generated on Thu Jul 16 14:58:21 2009 for Apache Portable Runtime by  doxygen 1.5.8
Modified: apr/site/trunk/docs/docs/apr/trunk/apr__ldap__url_8h-source.html URL: http://svn.apache.org/viewvc/apr/site/trunk/docs/docs/apr/trunk/apr__ldap__url_8h-source.html?rev=794529&r1=794528&r2=794529&view=diff ============================================================================== --- apr/site/trunk/docs/docs/apr/trunk/apr__ldap__url_8h-source.html (original) +++ apr/site/trunk/docs/docs/apr/trunk/apr__ldap__url_8h-source.html Thu Jul 16 05:09:35 2009 @@ -96,19 +96,19 @@ 00071 * Is this URL an ldap url? ldap:// 00072 * @param url The url to test 00073 */ -00074 APU_DECLARE(int) apr_ldap_is_ldap_url(const char *url); +00074 APR_DECLARE(int) apr_ldap_is_ldap_url(const char *url); 00075 00076 /** 00077 * Is this URL an SSL ldap url? ldaps:// 00078 * @param url The url to test 00079 */ -00080 APU_DECLARE(int) apr_ldap_is_ldaps_url(const char *url); +00080 APR_DECLARE(int) apr_ldap_is_ldaps_url(const char *url); 00081 00082 /** 00083 * Is this URL an ldap socket url? ldapi:// 00084 * @param url The url to test 00085 */ -00086 APU_DECLARE(int) apr_ldap_is_ldapi_url(const char *url); +00086 APR_DECLARE(int) apr_ldap_is_ldapi_url(const char *url); 00087 00088 /** 00089 * Parse an LDAP URL. @@ -117,7 +117,7 @@ 00092 * @param ludpp The structure to return the exploded URL 00093 * @param result_err The result structure of the operation 00094 */ -00095 APU_DECLARE(int) apr_ldap_url_parse_ext(apr_pool_t *pool, +00095 APR_DECLARE(int) apr_ldap_url_parse_ext(apr_pool_t *pool, 00096 const char *url_in, 00097 apr_ldap_url_desc_t **ludpp, 00098 apr_ldap_err_t **result_err); @@ -129,7 +129,7 @@ 00104 * @param ludpp The structure to return the exploded URL 00105 * @param result_err The result structure of the operation 00106 */ -00107 APU_DECLARE(int) apr_ldap_url_parse(apr_pool_t *pool, +00107 APR_DECLARE(int) apr_ldap_url_parse(apr_pool_t *pool, 00108 const char *url_in, 00109 apr_ldap_url_desc_t **ludpp, 00110 apr_ldap_err_t **result_err); @@ -144,7 +144,7 @@ 00119 00120 #endif /* APR_LDAP_URL_H */ -
Generated on Thu Jul 16 13:37:22 2009 for Apache Portable Runtime by  +
Generated on Thu Jul 16 14:58:21 2009 for Apache Portable Runtime by  doxygen 1.5.8
Modified: apr/site/trunk/docs/docs/apr/trunk/apr__ldap__url_8h.html URL: http://svn.apache.org/viewvc/apr/site/trunk/docs/docs/apr/trunk/apr__ldap__url_8h.html?rev=794529&r1=794528&r2=794529&view=diff ============================================================================== --- apr/site/trunk/docs/docs/apr/trunk/apr__ldap__url_8h.html (original) +++ apr/site/trunk/docs/docs/apr/trunk/apr__ldap__url_8h.html Thu Jul 16 05:09:35 2009 @@ -88,7 +88,7 @@ APR-UTIL LDAP ldap_init() functions.

-


Generated on Thu Jul 16 13:37:22 2009 for Apache Portable Runtime by  +
Generated on Thu Jul 16 14:58:21 2009 for Apache Portable Runtime by  doxygen 1.5.8
Modified: apr/site/trunk/docs/docs/apr/trunk/apr__lib_8h-source.html URL: http://svn.apache.org/viewvc/apr/site/trunk/docs/docs/apr/trunk/apr__lib_8h-source.html?rev=794529&r1=794528&r2=794529&view=diff ============================================================================== --- apr/site/trunk/docs/docs/apr/trunk/apr__lib_8h-source.html (original) +++ apr/site/trunk/docs/docs/apr/trunk/apr__lib_8h-source.html Thu Jul 16 05:09:35 2009 @@ -265,7 +265,7 @@ 00240 00241 #endif /* ! APR_LIB_H */ -
Generated on Thu Jul 16 13:37:22 2009 for Apache Portable Runtime by  +
Generated on Thu Jul 16 14:58:21 2009 for Apache Portable Runtime by  doxygen 1.5.8
Modified: apr/site/trunk/docs/docs/apr/trunk/apr__lib_8h.html URL: http://svn.apache.org/viewvc/apr/site/trunk/docs/docs/apr/trunk/apr__lib_8h.html?rev=794529&r1=794528&r2=794529&view=diff ============================================================================== --- apr/site/trunk/docs/docs/apr/trunk/apr__lib_8h.html (original) +++ apr/site/trunk/docs/docs/apr/trunk/apr__lib_8h.html Thu Jul 16 05:09:35 2009 @@ -88,7 +88,7 @@ APR general purpose library routines.

This is collection of oddballs that didn't fit anywhere else, and might move to more appropriate headers with the release of APR 1.0. -


Generated on Thu Jul 16 13:37:22 2009 for Apache Portable Runtime by  +
Generated on Thu Jul 16 14:58:21 2009 for Apache Portable Runtime by  doxygen 1.5.8