/device/linaro/dragonboard/qcom/qrtr/src/ |
D | list.h | 18 struct list { struct 26 struct list name = LIST_INIT(name) 31 static inline void list_init(struct list *list) in list_init() argument 33 list->head = 0; in list_init() 34 list->tail = 0; in list_init() 37 static inline void list_append(struct list *list, struct list_item *item) in list_append() argument 40 item->prev = list->tail; in list_append() 41 if (list->tail != 0) in list_append() 42 list->tail->next = item; in list_append() 44 list->head = item; in list_append() [all …]
|
/device/google/contexthub/firmware/os/inc/ |
D | list.h | 27 #define list_iterate(list, cur_link, tmp_link) \ argument 28 for ((cur_link) = (list)->next, \ 30 (cur_link) != NULL && (cur_link) != (list); \ 33 #define DECLARE_LIST(list) \ argument 34 link_t list = { .prev = &list, .next = &list } 36 static inline void list_init(struct link_t *list) in list_init() argument 38 list->prev = list->next = list; in list_init() 41 static inline void list_add_tail(struct link_t *list, struct link_t *item) in list_add_tail() argument 43 if (!list->next) in list_add_tail() 44 list_init(list); in list_add_tail() [all …]
|
D | seos_priv.h | 25 …stHead, task) for (task = osTaskByIdx((listHead)->next); task; task = osTaskByIdx(task->list.next)) 63 struct TaskList list; member
|
/device/linaro/dragonboard/qcom/tqftpserv/ |
D | list.h | 49 #define LIST_INIT(list) { &(list), &(list) } argument 51 static inline void list_init(struct list_head *list) in list_init() argument 53 list->prev = list->next = list; in list_init() 56 static inline bool list_empty(struct list_head *list) in list_empty() argument 58 return list->next == list; in list_empty() 61 static inline void list_add(struct list_head *list, struct list_head *item) in list_add() argument 63 struct list_head *prev = list->prev; in list_add() 65 item->next = list; in list_add() 68 prev->next = list->prev = item; in list_add() 77 #define list_for_each(item, list) \ argument [all …]
|
/device/generic/goldfish-opengl/ |
D | json-dump.mk | 25 dump-property-list = \ 27 $(call dump-json-list, $($(2)))\ 34 $(call dump-property-list,includes,LOCAL_C_INCLUDES) \ 35 $(call dump-property-list,cflags,LOCAL_CFLAGS) \ 36 $(call dump-property-list,libs,LOCAL_SHARED_LIBRARIES) \ 37 $(call dump-property-list,staticlibs,LOCAL_STATIC_LIBRARIES) \ 38 $(call dump-property-list,src,LOCAL_SRC_FILES) \
|
/device/google/bonito/ |
D | utils.mk | 29 define find-word-in-list 46 define match-word-in-list 49 $(call match-word,$(call find-word-in-list,$(1),$(2)),$(strip $(1))), \ 68 $(if $(call match-word-in-list,$(1),$(text)),true,) \ 96 define is-board-platform-in-list 97 $(call match-word-in-list,$(TARGET_BOARD_PLATFORM),$(1)) 104 $(call match-word-in-list,$(TARGET_BOARD_PLATFORM),\ 173 $(call match-word-in-list,$(PLATFORM_SDK_VERSION),$($(1)_SDK_VERSIONS)), \ 181 define is-android-codename-in-list 189 match-word-in-list,\
|
/device/google/crosshatch/ |
D | utils.mk | 29 define find-word-in-list 46 define match-word-in-list 49 $(call match-word,$(call find-word-in-list,$(1),$(2)),$(strip $(1))), \ 68 $(if $(call match-word-in-list,$(1),$(text)),true,) \ 96 define is-board-platform-in-list 97 $(call match-word-in-list,$(TARGET_BOARD_PLATFORM),$(1)) 104 $(call match-word-in-list,$(TARGET_BOARD_PLATFORM),\ 173 $(call match-word-in-list,$(PLATFORM_SDK_VERSION),$($(1)_SDK_VERSIONS)), \ 181 define is-android-codename-in-list 189 match-word-in-list,\
|
/device/google/coral/ |
D | utils.mk | 31 define find-word-in-list 48 define match-word-in-list 51 $(call match-word,$(call find-word-in-list,$(1),$(2)),$(strip $(1))), \ 70 $(if $(call match-word-in-list,$(1),$(text)),true,) \ 98 define is-board-platform-in-list 99 $(call match-word-in-list,$(TARGET_BOARD_PLATFORM),$(1)) 106 $(call match-word-in-list,$(TARGET_BOARD_PLATFORM),\ 175 $(call match-word-in-list,$(PLATFORM_SDK_VERSION),$($(1)_SDK_VERSIONS)), \ 183 define is-android-codename-in-list 191 match-word-in-list,\
|
/device/google/wahoo/ |
D | utils.mk | 29 define find-word-in-list 46 define match-word-in-list 49 $(call match-word,$(call find-word-in-list,$(1),$(2)),$(strip $(1))), \ 68 $(if $(call match-word-in-list,$(1),$(text)),true,) \ 96 define is-board-platform-in-list 97 $(call match-word-in-list,$(TARGET_BOARD_PLATFORM),$(1)) 104 $(call match-word-in-list,$(TARGET_BOARD_PLATFORM),\ 173 $(call match-word-in-list,$(PLATFORM_SDK_VERSION),$($(1)_SDK_VERSIONS)), \ 181 define is-android-codename-in-list 189 match-word-in-list,\
|
/device/generic/goldfish/radio/libril/ |
D | ril_event.cpp | 104 static void init_list(struct ril_event * list) in init_list() argument 106 memset(list, 0, sizeof(struct ril_event)); in init_list() 107 list->next = list; in init_list() 108 list->prev = list; in init_list() 109 list->fd = -1; in init_list() 112 static void addToList(struct ril_event * ev, struct ril_event * list) in addToList() argument 114 ev->next = list; in addToList() 115 ev->prev = list->prev; in addToList() 117 list->prev = ev; in addToList() 291 struct ril_event * list; in ril_timer_add() local [all …]
|
/device/google/cuttlefish/guest/hals/ril/libril/ |
D | ril_event.cpp | 104 static void init_list(struct ril_event * list) in init_list() argument 106 memset(list, 0, sizeof(struct ril_event)); in init_list() 107 list->next = list; in init_list() 108 list->prev = list; in init_list() 109 list->fd = -1; in init_list() 112 static void addToList(struct ril_event * ev, struct ril_event * list) in addToList() argument 114 ev->next = list; in addToList() 115 ev->prev = list->prev; in addToList() 117 list->prev = ev; in addToList() 291 struct ril_event * list; in ril_timer_add() local [all …]
|
/device/google/cuttlefish/guest/hals/ril/reference-libril/ |
D | ril_event.cpp | 104 static void init_list(struct ril_event * list) in init_list() argument 106 memset(list, 0, sizeof(struct ril_event)); in init_list() 107 list->next = list; in init_list() 108 list->prev = list; in init_list() 109 list->fd = -1; in init_list() 112 static void addToList(struct ril_event * ev, struct ril_event * list) in addToList() argument 114 ev->next = list; in addToList() 115 ev->prev = list->prev; in addToList() 117 list->prev = ev; in addToList() 291 struct ril_event * list; in ril_timer_add() local [all …]
|
/device/google/cuttlefish/common/libs/net/ |
D | netlink_request.cpp | 104 nlattr* list = AppendTag(type, NULL, 0); in PushList() local 105 lists_.push_back(std::make_pair(list, length)); in PushList() 114 std::pair<nlattr*, int> list = lists_.back(); in PopList() local 116 list.first->nla_len = request_.size() - list.second; in PopList()
|
/device/google/contexthub/firmware/build/ |
D | config.mk | 64 define nano-gen-linker-script-from-list-body 74 define nano-gen-linker-script-from-list 76 $(call nano-gen-linker-script-from-list-body,$(1),$(2)) 87 $(eval $(call nano-gen-linker-script-from-list,$(1),$(patsubst %,$(NANOHUB_OS_PATH)/os/platform/$(5… 100 $(eval $(call nano-gen-linker-script-from-list,$(1),$(NANOHUB_OS_PATH)/os/platform/$(5)/lkr/$(4).ex… 111 $(eval $(call nano-gen-linker-script-from-list,$(1),$(3) $(patsubst %,$(NANOHUB_OS_PATH)/os/platfor… 226 …$(error $(LOCAL_PATH): Recursive variant list mismatch: "$(AUX_RECURSIVE_VARIANT_LIST)" and "$(1))…
|
/device/generic/car/tools/ |
D | run_local_avd.sh | 95 adb shell pm list features 99 adb shell pm list packages --show-versioncode | grep google 100 adb shell pm list packages --show-versioncode | grep vending
|
/device/google/contexthub/contexthubhal/ |
D | legacyhal.cpp | 43 static int legacy_get_hubs(context_hub_module_t*, const context_hub_t ** list) in legacy_get_hubs() argument 45 *list = get_hub_info(); in legacy_get_hubs()
|
/device/linaro/dragonboard/qcom/pd-mapper/ |
D | LICENSE | 9 * this list of conditions and the following disclaimer. 12 * this list of conditions and the following disclaimer in the documentation 39 * this list of conditions and the following disclaimer. 42 * this list of conditions and the following disclaimer in the documentation
|
/device/google/contexthub/sensorhal/ |
D | sensors.cpp | 239 size_t SensorContext::getSensorList(sensor_t const **list) { in getSensorList() argument 241 *list = mSensorList.data(); in getSensorList() 405 struct sensor_t const **list) { in get_sensors_list() argument 408 *list = sensor_list; in get_sensors_list() 411 *list = {}; in get_sensors_list()
|
/device/google/contexthub/firmware/os/drivers/st_lsm6dsm/ |
D | README | 21 In order to build the driver for a platform some macros (see Macros list) must 26 Optional FLAGS (FLAGS list) can be used to enable specific features using 32 <---------- Macros list ----------> 48 <---------- FLAGS list ---------->
|
/device/google/cuttlefish/guest/hals/hwcomposer/common/ |
D | hwcomposer.cpp | 335 hwc_display_contents_1_t* list = displays[disp]; in cvd_hwc_prepare() local 337 if (!list) return 0; in cvd_hwc_prepare() 338 if (!IsValidComposition(dev, list->numHwLayers, &list->hwLayers[0], false)) { in cvd_hwc_prepare() 343 list->numHwLayers, &list->hwLayers[0]); in cvd_hwc_prepare()
|
/device/google/cuttlefish/guest/hals/camera/ |
D | QemuClient.cpp | 364 status_t FactoryQemuClient::listCameras(char** list) { in listCameras() argument 381 *list = (char*)malloc(query.mReplyDataSize); in listCameras() 382 if (*list != NULL) { in listCameras() 383 memcpy(*list, query.mReplyData, query.mReplyDataSize); in listCameras() 384 ALOGD("Emulated camera list: %s", *list); in listCameras()
|
/device/google/contexthub/firmware/lib/builtins/ |
D | CREDITS.TXT | 1 This file is a partial list of people who have contributed to the LLVM/CompilerRT 6 The list is sorted by surname and formatted to allow easy grepping and
|
/device/generic/goldfish/camera/ |
D | QemuClient.cpp | 378 status_t FactoryQemuClient::listCameras(char** list) in listCameras() argument 396 *list = (char*)malloc(query.mReplyDataSize); in listCameras() 397 if (*list != NULL) { in listCameras() 398 memcpy(*list, query.mReplyData, query.mReplyDataSize); in listCameras() 399 ALOGD("Emulated camera list: %s", *list); in listCameras()
|
/device/generic/opengl-transport/host/libs/virglrenderer/ |
D | README.md | 92 The EglConfig structure maintains a list of available EGLConfigs. 96 The EglContext structure maintains a list of active EGLContexts, and decides 101 The EglImage structure maintains a list of active EGLImageKHRs, and decides 106 The EglSurface structure maintains a list of active EGLSurfaces, and decides 111 The EglSync structure maintains a list of active EGLSyncKHRs, and decides
|
/device/linaro/dragonboard/qcom/rmtfs/ |
D | LICENSE | 8 list of conditions and the following disclaimer. 11 this list of conditions and the following disclaimer in the documentation
|