Searched defs:todo (Results 26 - 30 of 30) sorted by relevance

12

/drivers/ide/
H A Dide-tape.c1150 size_t todo; local
1165 todo = min_t(size_t, count - done, tape->valid);
1166 if (copy_to_user(buf + done, tape->cur, todo))
1169 tape->cur += todo;
1170 tape->valid -= todo;
1171 done += todo;
1203 size_t todo; local
1212 todo = min_t(size_t, count - done,
1214 if (copy_from_user(tape->cur, buf + done, todo))
1217 tape->cur += todo;
[all...]
/drivers/usb/serial/
H A Dkeyspan.c233 int left, todo; local
251 for (left = count; left > 0; left -= todo) {
252 todo = left;
253 if (todo > maxDataLen)
254 todo = maxDataLen;
281 memcpy(this_urb->transfer_buffer + dataOffset, buf, todo);
282 buf += todo;
285 this_urb->transfer_buffer_length = todo + dataOffset;
/drivers/s390/net/
H A Dqeth_l3_main.c210 * Add IP to be added to todo list. If there is already an "add todo"
349 * also returns 0 if card was not on card and the todo was to delete
351 * 1 address was not on card and the todo is to add it to the card's ip
354 * to <= 0 by the todo -> address must be removed from card
357 struct qeth_ipaddr *todo, struct qeth_ipaddr **__addr)
364 (todo->proto == QETH_PROT_IPV4) &&
365 (addr->type == todo->type) &&
366 (addr->u.a4.addr == todo->u.a4.addr) &&
367 (addr->u.a4.mask == todo
356 __qeth_l3_ref_ip_on_card(struct qeth_card *card, struct qeth_ipaddr *todo, struct qeth_ipaddr **__addr) argument
430 struct qeth_ipaddr *todo, *addr; local
[all...]
/drivers/staging/android/
H A Dbinder.c308 struct list_head todo; member in struct:binder_proc
335 struct list_head todo; member in struct:binder_thread
1059 list_add_tail(&node->work.entry, &node->proc->todo);
1515 target_list = &target_thread->todo;
1518 target_list = &target_proc->todo;
1652 &thread->todo);
1769 list_add_tail(&tcomplete->entry, &thread->todo);
1997 list_move_tail(buffer->target_node->async_todo.next, &thread->todo);
2117 list_add_tail(&ref->death->work.entry, &thread->todo);
2119 list_add_tail(&ref->death->work.entry, &proc->todo);
[all...]
/drivers/staging/comedi/drivers/
H A Damplc_pci230.c2837 unsigned int todo; local
2844 todo = PCI230_ADC_FIFOLEVEL_HALFFULL;
2846 todo = 0;
2849 todo = PCI230_ADC_FIFOLEVEL_HALFFULL;
2851 todo = (devpriv->ai_scan_count * scanlen)
2853 if (todo > PCI230_ADC_FIFOLEVEL_HALFFULL)
2854 todo = PCI230_ADC_FIFOLEVEL_HALFFULL;
2858 if (todo == 0)
2863 for (i = 0; i < todo; i++) {

Completed in 721 milliseconds

12