Lines Matching refs:sal_uInt16

36 const sal_uInt16 SC_NONE                             = 0;
39 const sal_uInt16 SC_CONTINUE = 100;
40 const sal_uInt16 SC_SWITCHING_PROTOCOLS = 101;
42 const sal_uInt16 SC_PROCESSING = 102;
45 const sal_uInt16 SC_OK = 200;
46 const sal_uInt16 SC_CREATED = 201;
47 const sal_uInt16 SC_ACCEPTED = 202;
48 const sal_uInt16 SC_NON_AUTHORITATIVE_INFORMATION = 203;
49 const sal_uInt16 SC_NO_CONTENT = 204;
50 const sal_uInt16 SC_RESET_CONTENT = 205;
51 const sal_uInt16 SC_PARTIAL_CONTENT = 206;
53 const sal_uInt16 SC_MULTISTATUS = 207;
56 const sal_uInt16 SC_MULTIPLE_CHOICES = 300;
57 const sal_uInt16 SC_MOVED_PERMANENTLY = 301;
58 const sal_uInt16 SC_MOVED_TEMPORARILY = 302;
59 const sal_uInt16 SC_SEE_OTHER = 303;
60 const sal_uInt16 SC_NOT_MODIFIED = 304;
61 const sal_uInt16 SC_USE_PROXY = 305;
62 const sal_uInt16 SC_TEMPORARY_REDIRECT = 307;
65 const sal_uInt16 SC_BAD_REQUEST = 400;
66 const sal_uInt16 SC_UNAUTHORIZED = 401;
67 const sal_uInt16 SC_PAYMENT_REQUIRED = 402;
68 const sal_uInt16 SC_FORBIDDEN = 403;
69 const sal_uInt16 SC_NOT_FOUND = 404;
70 const sal_uInt16 SC_METHOD_NOT_ALLOWED = 405;
71 const sal_uInt16 SC_NOT_ACCEPTABLE = 406;
72 const sal_uInt16 SC_PROXY_AUTHENTICATION_REQUIRED = 407;
73 const sal_uInt16 SC_REQUEST_TIMEOUT = 408;
74 const sal_uInt16 SC_CONFLICT = 409;
75 const sal_uInt16 SC_GONE = 410;
76 const sal_uInt16 SC_LENGTH_REQUIRED = 411;
77 const sal_uInt16 SC_PRECONDITION_FAILED = 412;
78 const sal_uInt16 SC_REQUEST_ENTITY_TOO_LARGE = 413;
79 const sal_uInt16 SC_REQUEST_URI_TOO_LONG = 414;
80 const sal_uInt16 SC_UNSUPPORTED_MEDIA_TYPE = 415;
81 const sal_uInt16 SC_REQUESTED_RANGE_NOT_SATISFIABLE = 416;
82 const sal_uInt16 SC_EXPECTATION_FAILED = 417;
84 const sal_uInt16 SC_UNPROCESSABLE_ENTITY = 422;
85 const sal_uInt16 SC_LOCKED = 423;
86 const sal_uInt16 SC_FAILED_DEPENDENCY = 424;
89 const sal_uInt16 SC_INTERNAL_SERVER_ERROR = 500;
90 const sal_uInt16 SC_NOT_IMPLEMENTED = 501;
91 const sal_uInt16 SC_BAD_GATEWAY = 502;
92 const sal_uInt16 SC_SERVICE_UNAVAILABLE = 503;
93 const sal_uInt16 SC_GATEWAY_TIMEOUT = 504;
94 const sal_uInt16 SC_HTTP_VERSION_NOT_SUPPORTED = 505;
96 const sal_uInt16 SC_INSUFFICIENT_STORAGE = 507;
146 sal_uInt16 mStatusCode;
166 sal_uInt16 nStatusCode ) in DAVException()
176 sal_uInt16 nStatusCode = SC_NONE ) in DAVException()
188 sal_uInt16 getStatus() const { return mStatusCode; } in getStatus()