HomeSort by relevance Sort by last modified time
    Searched defs:item_key (Results 1 - 3 of 3) sorted by null

  /external/u-boot/common/
menu.c 137 char *item_key = extra; local
139 if (!item_key || !item->key) {
140 if (item_key == item->key)
146 if (strcmp(item->key, item_key) == 0)
153 * Find the first item with a key matching item_key, if any exists.
156 char *item_key)
158 return menu_items_iter(m, menu_item_key_match, item_key);
231 * item_key - Points to a string that, when compared using strcmp, matches the
235 * key matching item_key is found.
237 int menu_default_set(struct menu *m, char *item_key)
    [all...]
  /external/python/cpython2/Objects/
codeobject.c 483 PyObject *item, *item_key; local
486 item_key = _PyCode_ConstantKey(item);
487 if (item_key == NULL) {
492 PyTuple_SET_ITEM(tuple, i, item_key);
512 PyObject *item_key; local
514 item_key = _PyCode_ConstantKey(item);
515 if (item_key == NULL) {
521 PyTuple_SET_ITEM(tuple, i, item_key);
  /external/python/cpython3/Objects/
codeobject.c 558 PyObject *item, *item_key; local
561 item_key = _PyCode_ConstantKey(item);
562 if (item_key == NULL) {
567 PyTuple_SET_ITEM(tuple, i, item_key);
587 PyObject *item_key; local
589 item_key = _PyCode_ConstantKey(item);
590 if (item_key == NULL) {
596 PyTuple_SET_ITEM(tuple, i, item_key);

Completed in 1497 milliseconds