Lines Matching refs:idx
68 unsigned int idx, done, left, i; in list_func() local
79 idx = left = 0; in list_func()
102 rc = xc_livepatch_list(xch, MAX_LEN, idx, info, name, len, &done, &left); in list_func()
108 idx, left, rc, strerror(rc)); in list_func()
111 if ( !idx ) in list_func()
132 idx += done; in list_func()
291 int action_func(int argc, char *argv[], unsigned int idx) in action_func() argument
303 if ( idx >= ARRAY_SIZE(action_options) ) in action_func()
323 "Operation already in progress.\n", action_options[idx].name); in action_func()
327 if ( status.state == action_options[idx].expected ) in action_func()
334 if ( action_options[idx].allow & status.state ) in action_func()
336 printf("%s %s... ", action_options[idx].verb, name); in action_func()
337 rc = action_options[idx].function(xch, name, HYPERVISOR_TIMEOUT_NS); in action_func()
353 state2str(action_options[idx].allow)); in action_func()
375 if ( action_options[idx].expected == rc ) in action_func()
390 state2str(action_options[idx].expected)); in action_func()