Home
last modified time | relevance | path

Searched refs:where (Results 1 - 2 of 2) sorted by relevance

/base/security/device_security_level/baselib/utils/include/
H A Dutils_dslm_list.h26 static inline void AddListNode(ListNode *item, ListNode *where) in AddListNode() argument
28 item->next = where->next; in AddListNode()
29 item->prev = where; in AddListNode()
30 where->next = item; in AddListNode()
34 static inline void AddListNodeBefore(ListNode *item, ListNode *where) in AddListNodeBefore() argument
36 AddListNode(item, where->prev); in AddListNodeBefore()
/base/startup/hvb/test/
H A Dhvb_main.c40 off_t where; in hvb_read_partition() local
61 where = lseek(fd, offset, SEEK_SET); in hvb_read_partition()
62 if (where == -1) { in hvb_read_partition()
66 } else if (where != offset) { in hvb_read_partition()
100 off_t where; in hvb_write_partition() local
111 where = lseek(fd, offset, SEEK_SET); in hvb_write_partition()
112 if (where == -1) { in hvb_write_partition()
116 } else if (where != offset) { in hvb_write_partition()

Completed in 2 milliseconds