OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:service_status
(Results
1 - 3
of
3
) sorted by null
/external/libpcap/rpcapd/
win32-svc.c
41
static
SERVICE_STATUS
service_status
;
variable
153
service_status
.dwServiceType = SERVICE_WIN32_OWN_PROCESS | SERVICE_INTERACTIVE_PROCESS;
154
service_status
.dwControlsAccepted = SERVICE_ACCEPT_STOP | SERVICE_ACCEPT_PAUSE_CONTINUE | SERVICE_ACCEPT_PARAMCHANGE;
172
service_status
.dwWin32ExitCode = NO_ERROR;
173
service_status
.dwCurrentState = state;
174
service_status
.dwCheckPoint = progress_indicator;
175
service_status
.dwWaitHint = 0;
176
SetServiceStatus(service_status_handle, &
service_status
);
/external/autotest/site_utils/
deploy_server_local.py
278
def
service_status
(service_name):
function
328
service_statuses = {name:
service_status
(name) for name in service_names}
332
if
service_status
(n) != service_statuses[n]]
deploy_server_local_unittest.py
203
"""Test deploy_server_local.
service_status
.
208
dsl.
service_status
('foobar')
217
# each call to
service_status
should return the next status value for
219
with mock.patch.object(dsl, '
service_status
', autospec=True,
Completed in 177 milliseconds