(file) Return to errors.rc CVS log (file) (dir) Up to [OMI] / omi / omi_error

 1 krisbash 1.1 
 2              #include "strid_errors.h"
 3              STRINGTABLE
 4              BEGIN
 5                      STRID_EPERM, L"Operation not permitted"
 6                      STRID_ENOENT, L"No such file or directory"
 7                      STRID_ESRCH, L"No such process"
 8                      STRID_EINTR, L"Interrupted function"
 9                      STRID_EIO, L"I/O error"
10                      STRID_ENXIO, L"No such device or address"
11                      STRID_E2BIG, L"Argument list too long"
12                      STRID_ENOEXEC, L"Exec format error"
13                      STRID_EBADF, L"Bad file number"
14                      STRID_ECHILD, L"No spawned processes"
15                      STRID_EAGAIN, L"No more processes or not enough memory or maximum nesting level reached"
16                      STRID_ENOMEM, L"Not enough memory"
17                      STRID_EACCES, L"Permission denied"
18                      STRID_EFAULT, L"Bad address"
19                      STRID_EBUSY, L"Device or resource busy"
20                      STRID_EEXIST, L"File exists"
21                      STRID_EXDEV, L"Cross-device link"
22 krisbash 1.1         STRID_ENODEV, L"No such device"
23                      STRID_ENOTDIR, L"Not a directory"
24                      STRID_EISDIR, L"Is a directory"
25                      STRID_EINVAL, L"Invalid argument"
26                      STRID_ENFILE, L"Too many files open in system"
27                      STRID_EMFILE, L"Too many open files"
28                      STRID_ENOTTY, L"Inappropriate I/O control operation"
29                      STRID_EFBIG, L"File too large"
30                      STRID_ENOSPC, L"No space left on device"
31                      STRID_ESPIPE, L"Invalid seek"
32                      STRID_EROFS, L"Read-only file system"
33                      STRID_EMLINK, L"Too many links"
34                      STRID_EPIPE, L"Broken pipe"
35                      STRID_EDOM, L"Math argument"
36                      STRID_ERANGE, L"Result too large"
37                      STRID_EDEADLK, L"Resource deadlock would occur"
38                      STRID_ENAMETOOLONG, L"Filename too long"
39                      STRID_ENOLCK, L"No locks available"
40                      STRID_ENOSYS, L"Function not supported"
41                      STRID_EILSEQ, L"Illegal byte sequence"
42                      STRID_STRUNCATE, L"String was truncated"
43 krisbash 1.1 
44              END
45              
46              STRINGTABLE
47              BEGIN
48                      STRID_MI_RESULT_OK, L"The operation was successful."
49                      STRID_MI_RESULT_FAILED, L"A general error occurred, not covered by a more specific error code."
50                      STRID_MI_RESULT_ACCESS_DENIED, L"Access to a CIM resource is not available to the client."
51                      STRID_MI_RESULT_INVALID_NAMESPACE, L"The target namespace does not exist."
52                      STRID_MI_RESULT_INVALID_PARAMETER, L"One or more parameter values passed to the method are not valid."
53                      STRID_MI_RESULT_INVALID_CLASS, L"The specified class does not exist."
54                      STRID_MI_RESULT_NOT_FOUND, L"The requested object cannot be found."
55                      STRID_MI_RESULT_NOT_SUPPORTED, L"The requested operation is not supported."
56                      STRID_MI_RESULT_CLASS_HAS_CHILDREN, L"The operation cannot be invoked because the class has subclasses."
57                      STRID_MI_RESULT_CLASS_HAS_INSTANCES, L"The operation cannot be invoked because the class has instances."
58                      STRID_MI_RESULT_INVALID_SUPERCLASS, L"The operation cannot be invoked because the superclass does not exist."
59                      STRID_MI_RESULT_ALREADY_EXISTS, L"The operation cannot be invoked because an object already exists."
60                      STRID_MI_RESULT_NO_SUCH_PROPERTY, L"The specified property does not exist."
61                      STRID_MI_RESULT_TYPE_MISMATCH, L"The value supplied is not compatible with the type."
62                      STRID_MI_RESULT_QUERY_LANGUAGE_NOT_SUPPORTED, L"The query language is not recognized or supported."
63                      STRID_MI_RESULT_INVALID_QUERY, L"The query is not valid for the specified query language."
64 krisbash 1.1         STRID_MI_RESULT_METHOD_NOT_AVAILABLE, L"The extrinsic method cannot be invoked."
65                      STRID_MI_RESULT_METHOD_NOT_FOUND, L"The specified extrinsic method does not exist."
66                      STRID_MI_RESULT_NAMESPACE_NOT_EMPTY, L"The specified namespace is not empty."
67                      STRID_MI_RESULT_INVALID_ENUMERATION_CONTEXT, L"The enumeration identified by the specified context is invalid."
68                      STRID_MI_RESULT_INVALID_OPERATION_TIMEOUT, L"The specified operation timeout is not supported by the CIM Server."
69                      STRID_MI_RESULT_PULL_HAS_BEEN_ABANDONED, L"The Pull operation has been abandoned."
70                      STRID_MI_RESULT_PULL_CANNOT_BE_ABANDONED, L"The attempt to abandon a concurrent Pull operation failed."
71                      STRID_MI_RESULT_FILTERED_ENUMERATION_NOT_SUPPORTED, L"Using a filter in the enumeration is not supported by the CIM server."
72                      STRID_MI_RESULT_CONTINUATION_ON_ERROR_NOT_SUPPORTED, L"The CIM server does not support continuation on error."
73                      STRID_MI_RESULT_SERVER_LIMITS_EXCEEDED, L"The operation failed because server limits were exceeded."
74                      STRID_MI_RESULT_SERVER_IS_SHUTTING_DOWN, L"The CIM server is shutting down and cannot process the operation."
75                      STRID_MI_RESULT_CANCELED, L"The operation was canceled."
76                      STRID_MI_RESULT_OPEN_FAILED, L"The operation failed."
77                      STRID_MI_RESULT_INVALID_CLASS_HIERARCHY, L"Invalid class hierarchy."
78                      STRID_MI_RESULT_WOULD_BLOCK, L"Socket would block."
79                      STRID_MI_RESULT_TIME_OUT, L"Result timed out."
80              END

ViewCVS 0.9.2