Searched refs:Err (Results 1 - 25 of 25) sorted by relevance

/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/libcryptoxx-5.6.0/
H A Dgzip.h35 typedef Inflator::Err Err; typedef in class:Gunzip
36 class HeaderErr : public Err {public: HeaderErr() : Err(INVALID_DATA_FORMAT, "Gunzip: header decoding error") {}};
37 class TailErr : public Err {public: TailErr() : Err(INVALID_DATA_FORMAT, "Gunzip: tail too short") {}};
38 class CrcErr : public Err {public: CrcErr() : Err(DATA_INTEGRITY_CHECK_FAILED, "Gunzip: CRC check error") {}};
39 class LengthErr : public Err {public: LengthErr() : Err(DATA_INTEGRITY_CHECK_FAILE
[all...]
H A Dzlib.h33 typedef Inflator::Err Err; typedef in class:ZlibDecompressor
34 class HeaderErr : public Err {public: HeaderErr() : Err(INVALID_DATA_FORMAT, "ZlibDecompressor: header decoding error") {}};
35 class Adler32Err : public Err {public: Adler32Err() : Err(DATA_INTEGRITY_CHECK_FAILED, "ZlibDecompressor: ADLER32 check error") {}};
36 class UnsupportedAlgorithm : public Err {public: UnsupportedAlgorithm() : Err(INVALID_DATA_FORMAT, "ZlibDecompressor: unsupported algorithm") {}};
37 class UnsupportedPresetDictionary : public Err {public: UnsupportedPresetDictionary() : Err(INVALID_DATA_FORMA
[all...]
H A Dtrdlocal.cpp16 ThreadLocalStorage::Err::Err(const std::string& operation, int error) function in class:ThreadLocalStorage::Err
26 throw Err("TlsAlloc", GetLastError());
30 throw Err("pthread_key_create", error);
38 throw Err("TlsFree", GetLastError());
42 throw Err("pthread_key_delete", error);
50 throw Err("TlsSetValue", GetLastError());
54 throw Err("pthread_key_getspecific", error);
63 throw Err("TlsGetValue", GetLastError());
H A Dtrdlocal.h24 class Err : public OS_Error class in class:ThreadLocalStorage
27 Err(const std::string& operation, int error);
H A Dfiles.h17 class Err : public Exception class in class:FileStore
20 Err(const std::string &s) : Exception(IO_ERROR, s) {} function in class:FileStore::Err
22 class OpenErr : public Err {public: OpenErr(const std::string &filename) : Err("FileStore: error opening file for reading: " + filename) {}};
23 class ReadErr : public Err {public: ReadErr() : Err("FileStore: error reading file") {}};
52 typedef FileStore::Err Err; typedef in class:FileSource
70 class Err : public Exception class in class:FileSink
73 Err(cons function in class:FileSink::Err
[all...]
H A Ddefault.h39 class Err : public Exception class in class:DefaultDecryptor
42 Err(const std::string &s) function in class:DefaultDecryptor::Err
45 class KeyBadErr : public Err {public: KeyBadErr() : Err("DefaultDecryptor: cannot decrypt message with this passphrase") {}};
84 class MACBadErr : public DefaultDecryptor::Err {public: MACBadErr() : DefaultDecryptor::Err("DefaultDecryptorWithMAC: MAC check failed") {}};
H A Dzinflate.h39 class Err : public Exception {public: Err(const std::string &what) : Exception(INVALID_DATA_FORMAT, "HuffmanDecoder: " + what) {}}; function in class:HuffmanDecoder::Err
88 class Err : public Exception class in class:Inflator
91 Err(ErrorType e, const std::string &s) function in class:Inflator::Err
94 class UnexpectedEndErr : public Err {public: UnexpectedEndErr() : Err(INVALID_DATA_FORMAT, "Inflator: unexpected end of compressed block") {}};
95 class BadBlockErr : public Err {public: BadBlockErr() : Err(INVALID_DATA_FORMAT, "Inflator: error in compressed block") {}};
H A Dwinpipes.cpp69 throw Err(GetHandle(), operation, err);
72 WindowsPipe::Err::Err(HANDLE s, const std::string& operation, int error) function in class:WindowsPipe::Err
H A Dsocketft.cpp30 Socket::Err::Err(socket_t s, const std::string& operation, int error) function in class:Socket::Err
263 throw Err(INVALID_SOCKET, "getservbyname", SOCKET_EINVAL);
273 throw Err(INVALID_SOCKET, "WSAStartup", result);
282 throw Err(INVALID_SOCKET, "WSACleanup", result);
307 throw Err(m_s, operation, err);
446 throw Socket::Err(m_s, "WSAEnumNetworkEvents (FD_CLOSE not present)", E_FAIL);
448 throw Socket::Err(m_s, "FD_CLOSE (via WSAEnumNetworkEvents)", events.iErrorCode[FD_CLOSE_BIT]);
H A Dwinpipes.h43 class Err : public OS_Error class in class:WindowsPipe
46 Err(HANDLE h, const std::string& operation, int error);
H A Dwait.cpp241 throw Err("WaitObjectContainer: number of wait objects exceeds limit");
269 throw Err("WaitObjectContainer: WaitForMultipleObjects in thread failed with error " + IntToString(error));
278 throw Err("WaitObjectContainer: WaitForSingleObject failed with error " + IntToString(::GetLastError()));
313 throw Err("WaitObjectContainer: WaitForMultipleObjects failed with error " + IntToString(::GetLastError()));
366 throw Err("WaitObjectContainer: select failed with error " + errno);
H A Dwait.h150 class Err : public Exception class in class:WaitObjectContainer
153 Err(const std::string& s) : Exception(IO_ERROR, s) {} function in class:WaitObjectContainer::Err
H A Dzinflate.cpp80 throw Err("null code");
85 throw Err("code length exceeds maximum");
88 throw Err("null code");
105 throw Err("codes oversubscribed");
108 throw Err("codes oversubscribed");
114 throw Err("codes oversubscribed");
116 throw Err("codes incomplete");
452 catch (HuffmanDecoder::Err &)
H A Dfiles.cpp177 throw Err("FileSink: output stream not opened");
189 throw Err("FileSink: output stream not opened");
H A Dsocketft.h47 class Err : public OS_Error class in class:Socket
50 Err(socket_t s, const std::string& operation, int error);
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/timemachine/gettext-0.17/gettext-tools/gnulib-lib/
H A Dacl-internal.h78 #define ACL_NOT_WELL_SUPPORTED(Err) \
79 ((Err) == ENOTSUP || (Err) == ENOSYS || (Err) == EINVAL || (Err) == EBUSY)
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/drivers/scsi/aic94xx/
H A Daic94xx_init.c105 goto Err;
111 goto Err;
129 Err:
189 goto Err;
195 goto Err;
198 goto Err;
204 goto Err;
208 Err:
238 goto Err;
258 Err
[all...]
H A Daic94xx_hwi.c172 goto Err;
179 goto Err;
199 Err:
332 goto Err;
345 Err:
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/drivers/i2c/busses/
H A Di2c-ali1563.c340 goto Err;
346 goto Err;
356 goto Err;
362 goto Err;
368 goto Err;
373 Err:
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/unzip60/windll/vb/
H A Dvbunzip.frm372 MsgBox "Unexpected error #" & CStr(Err.Number) & " in call to ComDLG32" _
373 & " FileOpen dialog:" & vbNewLine & Err.Description & vbNewLine _
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/zip30/windll/VBz64/
H A DVBZipBas.bas730 MsgBox "Error: " & Err.Description
731 If Err = 48 Then
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/kernel/
H A Daudit_tree.c670 goto Err;
675 goto Err;
690 goto Err;
702 Err:
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/drivers/net/wan/
H A Ddscc4.c339 #define Err 0x00010000 macro
1608 if (state & Err) {
1611 state &= ~Err;
1642 if (state & Err) { /* Hold or reset */
1795 * - Fe=1 (required by No=0 or we got an Err irq and must reset).
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/drivers/block/
H A Dcciss_scsi.c103 ErrorInfo_struct Err; member in struct:cciss_scsi_cmd_stack_elem_t
159 memset(&c->Err, 0, sizeof(c->Err));
176 c->cmd.err_info = &c->Err;
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/drivers/infiniband/hw/qib/
H A Dqib_iba7322.c841 #define QIB_I_C_ERROR INT_MASK(Err)
853 (INT_MASK_P(Err, pidx) | INT_MASK_P(SendDone, pidx) | \
2680 if (istat & INT_MASK_P(Err, 0) && dd->rcd[0])
2682 if (istat & INT_MASK_P(Err, 1) && dd->rcd[1])
2762 QIB_I_C_ERROR | INT_MASK_P(Err, 0) |
2763 INT_MASK_P(Err, 1))))

Completed in 272 milliseconds