⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 apr__errno_8h-source.html

📁 apr函数库使用手册
💻 HTML
📖 第 1 页 / 共 5 页
字号:
<a name="l00324"></a><a class="code" href="group___a_p_r___s_t_a_t_u_s___i_s.html#ga14">00324</a> #define APR_STATUS_IS_EBADIP(s)         ((s) == APR_EBADIP)<span class="comment"></span>
00325 <span class="comment">/** The specified netmask is invalid */</span>
<a name="l00326"></a><a class="code" href="group___a_p_r___s_t_a_t_u_s___i_s.html#ga15">00326</a> #define APR_STATUS_IS_EBADMASK(s)       ((s) == APR_EBADMASK)
00327 <span class="comment">/* empty slot: +18 */</span><span class="comment"></span>
00328 <span class="comment">/** </span>
00329 <span class="comment"> * APR was unable to open the dso object.  </span>
00330 <span class="comment"> * For more information call apr_dso_error().</span>
00331 <span class="comment"> */</span>
00332 #if defined(WIN32)
00333 #define APR_STATUS_IS_EDSOOPEN(s)       ((s) == APR_EDSOOPEN \
00334                        || APR_TO_OS_ERROR(s) == ERROR_MOD_NOT_FOUND)
00335 #else
<a name="l00336"></a><a class="code" href="group___a_p_r___s_t_a_t_u_s___i_s.html#ga16">00336</a> #define APR_STATUS_IS_EDSOOPEN(s)       ((s) == APR_EDSOOPEN)
00337 #endif<span class="comment"></span>
00338 <span class="comment">/** The given path was absolute. */</span>
<a name="l00339"></a><a class="code" href="group___a_p_r___s_t_a_t_u_s___i_s.html#ga17">00339</a> #define APR_STATUS_IS_EABSOLUTE(s)      ((s) == APR_EABSOLUTE)<span class="comment"></span>
00340 <span class="comment">/** The given path was relative. */</span>
<a name="l00341"></a><a class="code" href="group___a_p_r___s_t_a_t_u_s___i_s.html#ga18">00341</a> #define APR_STATUS_IS_ERELATIVE(s)      ((s) == APR_ERELATIVE)<span class="comment"></span>
00342 <span class="comment">/** The given path was neither relative nor absolute. */</span>
<a name="l00343"></a><a class="code" href="group___a_p_r___s_t_a_t_u_s___i_s.html#ga19">00343</a> #define APR_STATUS_IS_EINCOMPLETE(s)    ((s) == APR_EINCOMPLETE)<span class="comment"></span>
00344 <span class="comment">/** The given path was above the root path. */</span>
<a name="l00345"></a><a class="code" href="group___a_p_r___s_t_a_t_u_s___i_s.html#ga20">00345</a> #define APR_STATUS_IS_EABOVEROOT(s)     ((s) == APR_EABOVEROOT)<span class="comment"></span>
00346 <span class="comment">/** The given path was bad. */</span>
<a name="l00347"></a><a class="code" href="group___a_p_r___s_t_a_t_u_s___i_s.html#ga21">00347</a> #define APR_STATUS_IS_EBADPATH(s)       ((s) == APR_EBADPATH)<span class="comment"></span>
00348 <span class="comment">/** The given path contained wildcards. */</span>
<a name="l00349"></a><a class="code" href="group___a_p_r___s_t_a_t_u_s___i_s.html#ga22">00349</a> #define APR_STATUS_IS_EPATHWILD(s)      ((s) == APR_EPATHWILD)<span class="comment"></span>
00350 <span class="comment">/** Could not find the requested symbol.</span>
00351 <span class="comment"> * For more information call apr_dso_error().</span>
00352 <span class="comment"> */</span>
00353 #if defined(WIN32)
00354 #define APR_STATUS_IS_ESYMNOTFOUND(s)   ((s) == APR_ESYMNOTFOUND \
00355                        || APR_TO_OS_ERROR(s) == ERROR_PROC_NOT_FOUND)
00356 #else
<a name="l00357"></a><a class="code" href="group___a_p_r___s_t_a_t_u_s___i_s.html#ga23">00357</a> #define APR_STATUS_IS_ESYMNOTFOUND(s)   ((s) == APR_ESYMNOTFOUND)
00358 #endif<span class="comment"></span>
00359 <span class="comment">/** The given process was not recognized by APR. */</span>
<a name="l00360"></a><a class="code" href="group___a_p_r___s_t_a_t_u_s___i_s.html#ga24">00360</a> #define APR_STATUS_IS_EPROC_UNKNOWN(s)  ((s) == APR_EPROC_UNKNOWN)
00361 <span class="comment"></span>
00362 <span class="comment">/** APR could not gather enough entropy to continue. */</span>
<a name="l00363"></a><a class="code" href="group___a_p_r___s_t_a_t_u_s___i_s.html#ga25">00363</a> #define APR_STATUS_IS_ENOTENOUGHENTROPY(s) ((s) == APR_ENOTENOUGHENTROPY)
00364 <span class="comment"></span>
00365 <span class="comment">/** @} */</span>
00366 <span class="comment"></span>
00367 <span class="comment">/** </span>
00368 <span class="comment"> * @addtogroup APR_Error</span>
00369 <span class="comment"> * @{</span>
00370 <span class="comment"> */</span><span class="comment"></span>
00371 <span class="comment">/** @see APR_STATUS_IS_INCHILD */</span>
<a name="l00372"></a><a class="code" href="group___a_p_r___error.html#ga26">00372</a> #define APR_INCHILD        (APR_OS_START_STATUS + 1)<span class="comment"></span>
00373 <span class="comment">/** @see APR_STATUS_IS_INPARENT */</span>
<a name="l00374"></a><a class="code" href="group___a_p_r___error.html#ga27">00374</a> #define APR_INPARENT       (APR_OS_START_STATUS + 2)<span class="comment"></span>
00375 <span class="comment">/** @see APR_STATUS_IS_DETACH */</span>
<a name="l00376"></a><a class="code" href="group___a_p_r___error.html#ga28">00376</a> #define APR_DETACH         (APR_OS_START_STATUS + 3)<span class="comment"></span>
00377 <span class="comment">/** @see APR_STATUS_IS_NOTDETACH */</span>
<a name="l00378"></a><a class="code" href="group___a_p_r___error.html#ga29">00378</a> #define APR_NOTDETACH      (APR_OS_START_STATUS + 4)<span class="comment"></span>
00379 <span class="comment">/** @see APR_STATUS_IS_CHILD_DONE */</span>
<a name="l00380"></a><a class="code" href="group___a_p_r___error.html#ga30">00380</a> #define APR_CHILD_DONE     (APR_OS_START_STATUS + 5)<span class="comment"></span>
00381 <span class="comment">/** @see APR_STATUS_IS_CHILD_NOTDONE */</span>
<a name="l00382"></a><a class="code" href="group___a_p_r___error.html#ga31">00382</a> #define APR_CHILD_NOTDONE  (APR_OS_START_STATUS + 6)<span class="comment"></span>
00383 <span class="comment">/** @see APR_STATUS_IS_TIMEUP */</span>
<a name="l00384"></a><a class="code" href="group___a_p_r___error.html#ga32">00384</a> #define APR_TIMEUP         (APR_OS_START_STATUS + 7)<span class="comment"></span>
00385 <span class="comment">/** @see APR_STATUS_IS_INCOMPLETE */</span>
<a name="l00386"></a><a class="code" href="group___a_p_r___error.html#ga33">00386</a> #define APR_INCOMPLETE     (APR_OS_START_STATUS + 8)
00387 <span class="comment">/* empty slot: +9 */</span>
00388 <span class="comment">/* empty slot: +10 */</span>
00389 <span class="comment">/* empty slot: +11 */</span><span class="comment"></span>
00390 <span class="comment">/** @see APR_STATUS_IS_BADCH */</span>
<a name="l00391"></a><a class="code" href="group___a_p_r___error.html#ga34">00391</a> #define APR_BADCH          (APR_OS_START_STATUS + 12)<span class="comment"></span>
00392 <span class="comment">/** @see APR_STATUS_IS_BADARG */</span>
<a name="l00393"></a><a class="code" href="group___a_p_r___error.html#ga35">00393</a> #define APR_BADARG         (APR_OS_START_STATUS + 13)<span class="comment"></span>
00394 <span class="comment">/** @see APR_STATUS_IS_EOF */</span>
<a name="l00395"></a><a class="code" href="group___a_p_r___error.html#ga36">00395</a> #define APR_EOF            (APR_OS_START_STATUS + 14)<span class="comment"></span>
00396 <span class="comment">/** @see APR_STATUS_IS_NOTFOUND */</span>
<a name="l00397"></a><a class="code" href="group___a_p_r___error.html#ga37">00397</a> #define APR_NOTFOUND       (APR_OS_START_STATUS + 15)
00398 <span class="comment">/* empty slot: +16 */</span>
00399 <span class="comment">/* empty slot: +17 */</span>
00400 <span class="comment">/* empty slot: +18 */</span><span class="comment"></span>
00401 <span class="comment">/** @see APR_STATUS_IS_ANONYMOUS */</span>
<a name="l00402"></a><a class="code" href="group___a_p_r___error.html#ga38">00402</a> #define APR_ANONYMOUS      (APR_OS_START_STATUS + 19)<span class="comment"></span>
00403 <span class="comment">/** @see APR_STATUS_IS_FILEBASED */</span>
<a name="l00404"></a><a class="code" href="group___a_p_r___error.html#ga39">00404</a> #define APR_FILEBASED      (APR_OS_START_STATUS + 20)<span class="comment"></span>
00405 <span class="comment">/** @see APR_STATUS_IS_KEYBASED */</span>
<a name="l00406"></a><a class="code" href="group___a_p_r___error.html#ga40">00406</a> #define APR_KEYBASED       (APR_OS_START_STATUS + 21)<span class="comment"></span>
00407 <span class="comment">/** @see APR_STATUS_IS_EINIT */</span>
<a name="l00408"></a><a class="code" href="group___a_p_r___error.html#ga41">00408</a> #define APR_EINIT          (APR_OS_START_STATUS + 22)  <span class="comment"></span>
00409 <span class="comment">/** @see APR_STATUS_IS_ENOTIMPL */</span>
<a name="l00410"></a><a class="code" href="group___a_p_r___error.html#ga42">00410</a> #define APR_ENOTIMPL       (APR_OS_START_STATUS + 23)<span class="comment"></span>
00411 <span class="comment">/** @see APR_STATUS_IS_EMISMATCH */</span>
<a name="l00412"></a><a class="code" href="group___a_p_r___error.html#ga43">00412</a> #define APR_EMISMATCH      (APR_OS_START_STATUS + 24)<span class="comment"></span>
00413 <span class="comment">/** @see APR_STATUS_IS_EBUSY */</span>
<a name="l00414"></a><a class="code" href="group___a_p_r___error.html#ga44">00414</a> #define APR_EBUSY          (APR_OS_START_STATUS + 25)<span class="comment"></span>
00415 <span class="comment">/** @} */</span>
00416 <span class="comment"></span>
00417 <span class="comment">/** </span>
00418 <span class="comment"> * @addtogroup APR_STATUS_IS</span>
00419 <span class="comment"> * @{</span>
00420 <span class="comment"> */</span><span class="comment"></span>
00421 <span class="comment">/** </span>
00422 <span class="comment"> * Program is currently executing in the child </span>
00423 <span class="comment"> * @warning</span>
00424 <span class="comment"> * always use this test, as platform-specific variances may meet this</span>
00425 <span class="comment"> * more than one error code */</span>
<a name="l00426"></a><a class="code" href="group___a_p_r___s_t_a_t_u_s___i_s.html#ga26">00426</a> #define APR_STATUS_IS_INCHILD(s)        ((s) == APR_INCHILD)<span class="comment"></span>
00427 <span class="comment">/** </span>
00428 <span class="comment"> * Program is currently executing in the parent </span>
00429 <span class="comment"> * @warning</span>
00430 <span class="comment"> * always use this test, as platform-specific variances may meet this</span>
00431 <span class="comment"> * more than one error code </span>
00432 <span class="comment"> */</span>
<a name="l00433"></a><a class="code" href="group___a_p_r___s_t_a_t_u_s___i_s.html#ga27">00433</a> #define APR_STATUS_IS_INPARENT(s)       ((s) == APR_INPARENT)<span class="comment"></span>
00434 <span class="comment">/** </span>
00435 <span class="comment"> * The thread is detached </span>
00436 <span class="comment"> * @warning</span>
00437 <span class="comment"> * always use this test, as platform-specific variances may meet this</span>
00438 <span class="comment"> * more than one error code </span>
00439 <span class="comment"> */</span>
<a name="l00440"></a><a class="code" href="group___a_p_r___s_t_a_t_u_s___i_s.html#ga28">00440</a> #define APR_STATUS_IS_DETACH(s)         ((s) == APR_DETACH)<span class="comment"></span>
00441 <span class="comment">/** </span>
00442 <span class="comment"> * The thread is not detached </span>
00443 <span class="comment"> * @warning</span>
00444 <span class="comment"> * always use this test, as platform-specific variances may meet this</span>
00445 <span class="comment"> * more than one error code </span>
00446 <span class="comment"> */</span>
<a name="l00447"></a><a class="code" href="group___a_p_r___s_t_a_t_u_s___i_s.html#ga29">00447</a> #define APR_STATUS_IS_NOTDETACH(s)      ((s) == APR_NOTDETACH)<span class="comment"></span>
00448 <span class="comment">/** </span>
00449 <span class="comment"> * The child has finished executing</span>
00450 <span class="comment"> * @warning</span>
00451 <span class="comment"> * always use this test, as platform-specific variances may meet this</span>
00452 <span class="comment"> * more than one error code </span>
00453 <span class="comment"> */</span>
<a name="l00454"></a><a class="code" href="group___a_p_r___s_t_a_t_u_s___i_s.html#ga30">00454</a> #define APR_STATUS_IS_CHILD_DONE(s)     ((s) == APR_CHILD_DONE)<span class="comment"></span>
00455 <span class="comment">/** </span>
00456 <span class="comment"> * The child has not finished executing</span>
00457 <span class="comment"> * @warning</span>
00458 <span class="comment"> * always use this test, as platform-specific variances may meet this</span>
00459 <span class="comment"> * more than one error code </span>
00460 <span class="comment"> */</span>
<a name="l00461"></a><a class="code" href="group___a_p_r___s_t_a_t_u_s___i_s.html#ga31">00461</a> #define APR_STATUS_IS_CHILD_NOTDONE(s)  ((s) == APR_CHILD_NOTDONE)<span class="comment"></span>
00462 <span class="comment">/** </span>
00463 <span class="comment"> * The operation did not finish before the timeout</span>
00464 <span class="comment"> * @warning</span>
00465 <span class="comment"> * always use this test, as platform-specific variances may meet this</span>
00466 <span class="comment"> * more than one error code </span>
00467 <span class="comment"> */</span>
<a name="l00468"></a><a class="code" href="group___a_p_r___s_t_a_t_u_s___i_s.html#ga32">00468</a> #define APR_STATUS_IS_TIMEUP(s)         ((s) == APR_TIMEUP)<span class="comment"></span>
00469 <span class="comment">/** </span>
00470 <span class="comment"> * The character conversion stopped because of an incomplete character or </span>
00471 <span class="comment"> * shift sequence at the end  of the input buffer.</span>
00472 <span class="comment"> * @warning</span>
00473 <span class="comment"> * always use this test, as platform-specific variances may meet this</span>
00474 <span class="comment"> * more than one error code </span>
00475 <span class="comment"> */</span>
<a name="l00476"></a><a class="code" href="group___a_p_r___s_t_a_t_u_s___i_s.html#ga33">00476</a> #define APR_STATUS_IS_INCOMPLETE(s)     ((s) == APR_INCOMPLETE)
00477 <span class="comment">/* empty slot: +9 */</span>
00478 <span class="comment">/* empty slot: +10 */</span>
00479 <span class="comment">/* empty slot: +11 */</span><span class="comment"></span>
00480 <span class="comment">/** </span>
00481 <span class="comment"> * Getopt found an option not in the option string</span>
00482 <span class="comment"> * @warning</span>
00483 <span class="comment"> * always use this test, as platform-specific variances may meet this</span>
00484 <span class="comment"> * more than one error code </span>
00485 <span class="comment"> */</span>
<a name="l00486"></a><a class="code" href="group___a_p_r___s_t_a_t_u_s___i_s.html#ga34">00486</a> #define APR_STATUS_IS_BADCH(s)          ((s) == APR_BADCH)<span class="comment"></span>
00487 <span class="comment">/** </span>
00488 <span class="comment"> * Getopt found an option not in the option string and an argument was </span>

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -