Searched refs:lst (Results 1 - 5 of 5) sorted by relevance

/system/core/libdiskconfig/
H A Dwrite_lst.c51 wlist_add(struct write_list **lst, struct write_list *item) argument
53 item->next = (*lst);
54 *lst = item;
59 wlist_free(struct write_list *lst) argument
62 while (lst) {
63 temp_wr = lst->next;
64 free_wl(lst);
65 lst = temp_wr;
70 wlist_commit(int fd, struct write_list *lst, int test) argument
72 for(; lst; ls
[all...]
H A Ddiskconfig.c388 validate_and_config(struct disk_info *dinfo, int *fd, struct write_list **lst) argument
390 *lst = NULL;
398 *lst = config_mbr(dinfo);
399 return *lst == NULL;
408 *lst = NULL;
422 struct write_list *lst; local
425 if (validate_and_config(dinfo, &fd, &lst) != 0)
429 wlist_free(lst);
/system/core/include/diskconfig/
H A Ddiskconfig.h109 struct write_list *wlist_add(struct write_list **lst, struct write_list *item);
110 void wlist_free(struct write_list *lst);
111 int wlist_commit(int fd, struct write_list *lst, int test);
/system/update_engine/update_manager/
H A Dboxed_value_unittest.cc88 list<BoxedValue> lst; local
90 lst.emplace_back(new const int{42});
91 lst.emplace_back(new const string("Hello world!"));
93 lst.emplace_back(new const DeleterMarker(&marker));
95 lst.clear();
/system/media/camera/docs/
H A Dmetadata_helpers_test.py119 lst = list(enumerate_with_last(multiple_values))
120 self.assertListEqual([(4, False), (5, False), (6, True)], lst)

Completed in 185 milliseconds