/system/chre/host/msm/daemon/ |
D | README.md | 1 This folder contains source code for the daemon used to host CHRE on SLPI for 4 This daemon cannot be built out of this folder, however, because it depends on
|
/system/bt/packet/tests/avrcp/ |
D | get_folder_items_packet_test.cc | 72 auto folder = FolderItem(0x0000000000000001, 0x00, true, "Test Folder"); in TEST() local 73 builder->AddFolder(folder); in TEST() 80 auto folder = FolderItem(0x0000000000000001, 0x00, true, "Test Folder"); in TEST() local 81 builder->AddFolder(folder); in TEST() 191 auto folder = FolderItem(0x01, 0x00, true, "test folder"); in TEST() local 196 ASSERT_DEATH(builder->AddFolder(folder), "scope_ == Scope::VFS"); in TEST() 209 ASSERT_DEATH(builder->AddFolder(folder), "scope_ == Scope::VFS"); in TEST()
|
/system/bt/packet/tests/fuzzers/ |
D | get_folder_items_res_fuzzer.cc | 47 auto folder = FolderItem(0x0000000000000001, 0x00, true, s); in LLVMFuzzerTestOneInput() local 48 builder2->AddFolder(folder); in LLVMFuzzerTestOneInput()
|
/system/bt/tools/scripts/ |
D | dump_hearingaid_audio.py | 66 folder = None variable 353 if folder is not None: 354 if not os.path.exists(folder): 355 os.makedirs(folder) 356 audio_file_name = os.path.join(folder, "-".join(file_name_list) + file_type) 359 debug_file_name = os.path.join(folder, file_prefix + "-".join(file_name_list) + ".txt") 552 if arg.folder is not None: 553 global folder 554 folder = arg.folder
|
/system/bt/stack/avrc/ |
D | avrc_pars_ct.cc | 322 tAVRC_ITEM_FOLDER* folder = &(curr_item->u.folder); in avrc_pars_browse_rsp() local 328 BE_STREAM_TO_ARRAY(p, folder->uid, AVRC_UID_SIZE); in avrc_pars_browse_rsp() 329 BE_STREAM_TO_UINT8(folder->type, p); in avrc_pars_browse_rsp() 330 BE_STREAM_TO_UINT8(folder->playable, p); in avrc_pars_browse_rsp() 335 BE_STREAM_TO_UINT16(folder->name.charset_id, p); in avrc_pars_browse_rsp() 336 BE_STREAM_TO_UINT16(folder->name.str_len, p); in avrc_pars_browse_rsp() 337 min_len += folder->name.str_len; in avrc_pars_browse_rsp() 339 folder->name.p_str = (uint8_t*)osi_calloc( in avrc_pars_browse_rsp() 340 (folder->name.str_len + 1) * sizeof(uint8_t)); in avrc_pars_browse_rsp() 341 BE_STREAM_TO_ARRAY(p, folder->name.p_str, folder->name.str_len); in avrc_pars_browse_rsp() [all …]
|
/system/chre/chre_api/legacy/ |
D | README.md | 1 This folder contains prior versions of the CHRE API, intended for reference
|
/system/chre/apps/wifi_offload/ |
D | README.md | 1 This folder contains definitions for data types and serialization APIs used for
|
/system/sepolicy/vendor/ |
D | hal_wifi_hostapd_default.te | 9 # Allow hostapd to access it's data folder
|
/system/bt/osi/src/socket_utils/ |
D | README | 17 The sources in this folder re - 28 existing ones must put the sources in this folder and refactor
|
/system/chre/platform/shared/idl/ |
D | README.md | 1 This folder contains FlatBuffers schema used in the communications protocol
|
/system/chre/apps/power_test/common/idl/ |
D | README.md | 1 This folder contains FlatBuffers schema used in the communications protocol
|
/system/connectivity/wificond/net/kernel-header-latest/ |
D | README.txt | 3 This folder contains any wifi kernel header updates to the kernels running on
|
/system/chre/external/flatbuffers/ |
D | README.md | 1 This folder contains a modified version of the FlatBuffers implementation header
|
/system/libufdt/tests/ |
D | README | 1 This folder contains scripts and test data to test libufdt.
|
/system/chre/ |
D | README.md | 22 documentation. Raw files can also be found in the `/doc` folder. 40 Run `doxygen` in the same folder as `Doxyfile` to generate a browseable HTML 75 folder contains source files translating from the C++ platform abstractions
|
/system/bt/profile/avrcp/ |
D | device.cc | 1075 if ((temp.type == ListItem::FOLDER && temp.folder.media_id == media_id) || in GetItemAttributesVFSResponse() 1091 builder->AddAttributeEntry(Attribute::TITLE, item_requested.folder.name); in GetItemAttributesVFSResponse() 1096 item_requested.folder.name); in GetItemAttributesVFSResponse() 1184 vfs_ids_.insert(item.folder.media_id); in GetVFSListResponse() 1198 auto folder = items[i].folder; in GetVFSListResponse() local 1200 FolderItem folder_item(vfs_ids_.get_uid(folder.media_id), 0x00, in GetVFSListResponse() 1201 folder.is_playable, folder.name); in GetVFSListResponse()
|
/system/libufdt/utils/ |
D | README.md | 1 libufdt `utils` folder 4 This folder contains utilities for device tree overlay.
|
/system/bt/include/hardware/avrcp/ |
D | avrcp.h | 70 FolderInfo folder; member
|
/system/chre/doc/ |
D | nanoapp_clients.md | 31 (“signature” scope) or are preinstalled in the privileged apps folder *and* are
|
D | nanoapp_overview.md | 132 Some basic nanoapps can be found in the `apps/` folder, which are used for test 199 associated with these nanoapps can be found in the `java/` folder.
|
D | framework_build.md | 66 of code in the `platform/` folder, but can also define other attributes of the
|
D | nanoapp_developer_guide.md | 17 by copying this folder to the location where you will develop the nanoapp - it 19 Git repository in the `vendor/` folder of the Android tree.
|
/system/bt/btif/src/ |
D | btif_rc.cc | 2107 memcpy(item.u.folder.uid, cur_item->folder.uid, sizeof(tAVRC_UID)); in get_folder_items_list_rsp() 2108 item.u.folder.type = cur_item->folder.type; in get_folder_items_list_rsp() 2109 item.u.folder.playable = cur_item->folder.playable; in get_folder_items_list_rsp() 2110 item.u.folder.name.charset_id = AVRC_CHARSET_ID_UTF8; in get_folder_items_list_rsp() 2111 item.u.folder.name.str_len = strlen((char*)cur_item->folder.name); in get_folder_items_list_rsp() 2112 item.u.folder.name.p_str = cur_item->folder.name; in get_folder_items_list_rsp() 4170 const tAVRC_ITEM_FOLDER* avrc_item_folder = &(avrc_item->u.folder); in get_folder_item_type_folder() 4171 btrc_item_folder_t* btrc_item_folder = &(btrc_item->folder); in get_folder_item_type_folder()
|
/system/bt/include/hardware/ |
D | bt_rc.h | 277 btrc_item_folder_t folder; member
|
/system/core/fastboot/fuzzy_fastboot/ |
D | README.md | 128 Additionally, one should specify a folder with all the partitions' images 138 …acked version of packed | Searched for in dir if --search_path=dir. This folder should have the al… 202 Here is a basic example configuration. This can also be found in the 'example' folder
|