Searched refs:cur_method (Results 1 - 4 of 4) sorted by relevance

/u-boot/boot/
H A Dbootflow.c106 if (bmeth != iter->method || iter->cur_method >= iter->num_methods ||
107 iter->method_order[iter->cur_method] != bmeth)
110 memmove(&iter->method_order[iter->cur_method],
111 &iter->method_order[iter->cur_method + 1],
112 (iter->num_methods - iter->cur_method - 1) * sizeof(void *));
198 if (++iter->cur_method < iter->num_methods) {
199 iter->method = iter->method_order[iter->cur_method];
223 iter->cur_method = 0;
224 iter->method = iter->method_order[iter->cur_method];
399 iter->method = iter->method_order[iter->cur_method];
[all...]
H A Dbootmeth-uclass.c196 iter->cur_method = iter->first_glob_method;
/u-boot/include/
H A Dbootflow.h214 * @cur_method: Current method number, an index into @method_order
238 int cur_method; member in struct:bootflow_iter
/u-boot/test/boot/
H A Dbootflow.c287 ut_asserteq(0, iter.cur_method);
303 ut_asserteq(1, iter.cur_method);
314 ut_asserteq(0, iter.cur_method);
324 ut_asserteq(1, iter.cur_method);
335 ut_asserteq(0, iter.cur_method);
345 ut_asserteq(1, iter.cur_method);
356 ut_asserteq(0, iter.cur_method);

Completed in 55 milliseconds