Searched refs:lst (Results 1 - 16 of 16) sorted by relevance
/pkg/src/modules/ |
H A D | liblist.c | 51 liblist_free(liblist_t *lst) argument 53 if (!lst) 56 libnode_t *n = lst->head; 66 free(lst); 70 liblist_add(liblist_t *lst, off_t off) argument 74 if (!lst) 86 if (!lst->head) { 87 lst->head = n; 88 lst->tail = n; 90 lst 98 liblist_foreach(liblist_t *lst, int (*cb)(libnode_t *, void *, void *), void *info, void *info2) argument 116 liblist_copy(liblist_t *lst) argument 159 liblist_t *lst = (liblist_t *)info; local [all...] |
H A D | liblist.h | 53 void liblist_free(liblist_t *lst); 54 libnode_t *liblist_add(liblist_t *lst, off_t off); 55 int liblist_foreach(liblist_t *lst, int (*cb)(libnode_t *, void *, void *),
|
H A D | search_storage.py | 305 lst = line.split(" ", 1) 306 return unquote(lst[0])
|
H A D | indexer.py | 257 lst = [(action_type, [(subtype, [(fv, [(pfmri, 260 lst)
|
H A D | query_parser.py | 1291 def flatten(lst): 1297 for l in lst:
|
H A D | manifest.py | 1240 def __handle_list(lst, cp): 1246 The "lst" parameter is the data to be converted. 1249 for the action which produced lst.""" 1251 for action_name, subtype, tok, full_value in lst:
|
/pkg/src/tests/ |
H A D | baseline.py | 83 lst = self.getfailures() 84 if lst: 90 for name, result in lst:
|
H A D | pkg5unittest.py | 1721 lst = [] 1725 lst.append((secs, cname, mname)) 1730 if not lst: 1732 lst.sort() 1743 suite_name, lst, time_estimates) 1762 self.__write_timing_info(fh, suite_name, clst, lst)
|
/pkg/src/modules/actions/ |
H A D | attribute.py | 102 lst = [ 108 lst.extend(fmri_obj.hierarchical_names()) 112 for w in lst
|
/pkg/src/modules/flavor/ |
H A D | depthlimitedmf.py | 167 def startswith_path(path, lst): 168 for l in lst:
|
/pkg/src/modules/publish/ |
H A D | dependencies.py | 759 lst = path.split(os.path.sep) 762 if index > len(lst): 766 cur_path = os.path.join(*lst[0:index]) 792 *lst[index:])).lstrip(os.path.sep) 1000 def group_by_variant_combinations(lst): 1013 The 'lst' parameter is a list of tuples. The last item in each tuple 1018 for item in lst:
|
/pkg/src/modules/client/ |
H A D | publisher.py | 2986 lst = list_str.split(", ") 2988 lst = [ s.strip("' \"") for s in lst ] 2990 lst = [ s for s in lst if s != '' ] 2992 return lst
|
H A D | api_errors.py | 464 for p, lst in self.multiple_matches: 466 for pfmri in lst: 589 for p, lst in self.multiple_matches: 591 for pfmri in lst:
|
H A D | imageplan.py | 5691 for name, lst in six.iteritems(matchdict): 5694 for p, pfmris in lst 5705 for p, pfmris in lst: 5714 for p, pfmris in lst
|
/pkg/src/tests/api/ |
H A D | t_api_search.py | 1361 lst = fh.readlines() 1364 fh.write(lst[0]) 1365 for l in lst[2:]:
|
/pkg/src/ |
H A D | client.py | 2700 lst = sorted(api_inst.get_frozen_list()) 2704 if len(lst) == 0: 2716 for pfmri, comment, timestamp in lst:
|
Completed in 126 milliseconds