Collaboration diagram for Bio-SPHERE Service Error Codes:
|
Defines | |
| #define | BS_NO_SERVICE 0x00000100 |
| #define | BS_SERVICE_NOT_FOUND 0x00000101 |
| #define | BS_SERVICE_DOUBLE 0x00000102 |
| #define | BS_SERVICE_NUM_PARTS_MISMATCH 0x00000103 |
| #define | BS_SERVICE_PART_INCORRECT 0x00000104 |
| #define BS_NO_SERVICE 0x00000100 |
BS_NO_SERVICE indicates that the service handling function was unable to handle the service request. Most probably because it was not implemented to handle such a request.
Definition at line 126 of file biosphere_error.h.
Referenced by bsmod_fusion_handle_service(), bsmod_hand_handle_service(), bsmod_keystroke_handle_service(), bsmod_password_handle_service(), bsmod_stat_handle_service(), bsmod_stat_handle_stat_functions(), bsmod_stat_handle_time_functions(), core_service_composition_service(), core_service_module_service(), core_service_module_service_list(), and handle_service_request_remotely().
| #define BS_SERVICE_DOUBLE 0x00000102 |
Tried to doubly add or initialize a particular service. Services are identified by their unique names.
Definition at line 136 of file biosphere_error.h.
Referenced by add_service().
| #define BS_SERVICE_NOT_FOUND 0x00000101 |
The requested service cannot be found. This happens for instance when the name matches incorrectly.
Definition at line 131 of file biosphere_error.h.
| #define BS_SERVICE_NUM_PARTS_MISMATCH 0x00000103 |
The number of parts in the request or response does not match the definition.
Definition at line 141 of file biosphere_error.h.
Referenced by handle_fuse2(), handle_fuse2_decision(), handle_fuse3(), and handle_fuse3_decision().
| #define BS_SERVICE_PART_INCORRECT 0x00000104 |
The part in the service request or reponse has incorrect data.
Definition at line 146 of file biosphere_error.h.
Referenced by handle_fuse2(), handle_fuse2_decision(), handle_fuse3(), and handle_fuse3_decision().
1.5.1