/system/bt/build/dpkg/libchrome-822064/debian/patches/ |
D | series | 1 0001-Add-missing-includes.patch 2 0001-rebase_path-for-write_args.patch 3 0001-Remove-absl-from-pkgconfig.patch
|
/system/bt/build/dpkg/libchrome/debian/patches/ |
D | series | 1 0001-common-mk-rebase_path-output-location-of-generate-pc.patch 2 0001-Add-missing-includes.patch 3 0001-rebase_path-for-write_args.patch
|
/system/bt/build/dpkg/libchrome-822064/ |
D | gen-src-pkg.sh | 30 while read -r patch; do 31 patch -p1 < "libchrome_tools/patches/${patch}"
|
/system/bt/build/dpkg/libchrome/ |
D | gen-src-pkg.sh | 30 while read -r patch; do 31 patch -p1 < "libchrome_tools/patches/${patch}"
|
/system/tools/mkbootimg/include/bootimg/ |
D | bootimg.h | 93 void SetOsVersion(unsigned major, unsigned minor, unsigned patch) { in SetOsVersion() 95 os_version |= (((major & 0x7f) << 25) | ((minor & 0x7f) << 18) | ((patch & 0x7f) << 11)); in SetOsVersion() 264 void SetOsVersion(unsigned major, unsigned minor, unsigned patch) { in SetOsVersion() 266 os_version |= (((major & 0x7f) << 25) | ((minor & 0x7f) << 18) | ((patch & 0x7f) << 11)); in SetOsVersion()
|
/system/bt/doc/ |
D | style_guide.md | 280 Use this option if your patch touches only a few files with few intermediate 283 ##### Find the formatting patch 289 ##### Revert the formatting patch 295 ##### Check for conflicts with your patch 299 If this list contains files modified by your patch, you should give up 305 If this list contains files not modified by your patch, you should unstage them 313 ##### Apply your patch 321 ##### Commit the code that your patch touched 331 ##### Review your new patch 335 #### Option 2: Reformat your patch [all …]
|
/system/media/tests/ |
D | systemaudio_tests.cpp | 34 audio_patch patch{}; in TEST() local 35 ASSERT_FALSE(audio_patch_is_valid(&patch)); in TEST() 36 patch.num_sources = AUDIO_PATCH_PORTS_MAX + 1; in TEST() 37 patch.num_sinks = 1; in TEST() 38 ASSERT_FALSE(audio_patch_is_valid(&patch)); in TEST() 39 patch.num_sources = 1; in TEST() 40 patch.num_sinks = AUDIO_PATCH_PORTS_MAX + 1; in TEST() 41 ASSERT_FALSE(audio_patch_is_valid(&patch)); in TEST() 42 patch.num_sources = 0; in TEST() 43 patch.num_sinks = 1; in TEST() [all …]
|
/system/chre/chpp/clients/ |
D | discovery.c | 146 response->services[i].version.patch); in chppDiscoveryProcessDiscoverAll() 162 ->descriptor.version.patch, in chppDiscoveryProcessDiscoverAll() 165 response->services[i].version.patch); in chppDiscoveryProcessDiscoverAll() 181 ->descriptor.version.patch, in chppDiscoveryProcessDiscoverAll() 184 response->services[i].version.patch); in chppDiscoveryProcessDiscoverAll()
|
D | wwan.c | 89 .descriptor.version.patch = 0,
|
/system/bt/build/dpkg/modp_b64/debian/patches/ |
D | series | 1 0001-common-mk-rebase_path-output-location-of-generate-pc.patch
|
/system/update_engine/payload_generator/ |
D | delta_diff_utils.cc | 764 base::FilePath patch; in ReadExtentsToDiff() local 765 TEST_AND_RETURN_FALSE(base::CreateTemporaryFile(&patch)); in ReadExtentsToDiff() 766 ScopedPathUnlinker unlinker(patch.value()); in ReadExtentsToDiff() 772 bsdiff::CreateBSDF2PatchWriter(patch.value(), in ReadExtentsToDiff() 777 bsdiff_patch_writer = bsdiff::CreateBsdiffPatchWriter(patch.value()); in ReadExtentsToDiff() 788 TEST_AND_RETURN_FALSE(utils::ReadFile(patch.value(), &bsdiff_delta)); in ReadExtentsToDiff()
|
/system/media/audio/include/system/ |
D | audio.h | 1955 static inline bool audio_patch_has_hw_av_sync(const struct audio_patch *patch) { in audio_patch_has_hw_av_sync() argument 1956 for (unsigned int i = 0; i < patch->num_sources; ++i) { in audio_patch_has_hw_av_sync() 1957 if (audio_port_config_has_hw_av_sync(&patch->sources[i])) return true; in audio_patch_has_hw_av_sync() 1959 for (unsigned int i = 0; i < patch->num_sinks; ++i) { in audio_patch_has_hw_av_sync() 1960 if (audio_port_config_has_hw_av_sync(&patch->sinks[i])) return true; in audio_patch_has_hw_av_sync() 1965 static inline bool audio_patch_is_valid(const struct audio_patch *patch) { in audio_patch_is_valid() argument 1967 return patch->num_sources != 0 && patch->num_sources <= AUDIO_PATCH_PORTS_MAX && in audio_patch_is_valid() 1968 patch->num_sinks <= AUDIO_PATCH_PORTS_MAX; in audio_patch_is_valid()
|
/system/core/fs_mgr/libsnapshot/ |
D | make_cow_from_ab_ota.cpp | 359 auto patch = std::make_unique<uint8_t[]>(op.data_length()); in ProcessDiff() local 364 if (!android::base::ReadFully(in_fd_, patch.get(), op.data_length())) { in ProcessDiff() 380 if (int rv = bsdiff::bspatch(src.get(), src_pos, patch.get(), op.data_length(), sink)) { in ProcessDiff() 387 bool ok = PuffPatch(std::move(src_stream), std::move(dest_stream), patch.get(), in ProcessDiff()
|
/system/core/shell_and_utilities/ |
D | README.md | 107 more mountpoint mv netstat nice nl nohup od paste patch pgrep pidof 128 mountpoint mv netstat nice nl nohup od paste patch pgrep pidof pkill 151 nl nohup od paste patch pgrep pidof pkill pmap printenv printf **ps** pwd 177 patch pgrep pidof pkill pmap printenv printf ps pwd readlink realpath 206 paste patch pgrep pidof **ping** **ping6** **pivot\_root** pkill pmap printenv 238 paste patch pgrep pidof ping ping6 pivot\_root pkill pmap printenv 270 od partprobe paste patch pgrep pidof ping ping6 pivot\_root pkill pmap
|
/system/core/fs_mgr/ |
D | README.overlayfs.md | 84 The patch series is available on the upstream mailing list and the latest as 86 This patch adds an override_creds _mount_ option to OverlayFS that 90 is required. https://patchwork.kernel.org/patch/11117145/ is a start of that
|
/system/chre/chpp/ |
D | services.c | 114 newService->descriptor.version.patch, newService->minLength); in chppRegisterService()
|
D | clients.c | 196 newClient->descriptor.version.patch, newClient->minLength); in chppRegisterClient()
|
/system/core/fs_mgr/libdm/include/libdm/ |
D | dm_target.h | 47 bool IsAtLeast(uint32_t major, uint32_t minor, uint32_t patch) const { in IsAtLeast() argument 52 return patch_ >= patch; in IsAtLeast()
|
/system/chre/chpp/test/ |
D | transport_test.cpp | 756 wwanServiceDescriptor.version.patch = 0; in TEST_P() 766 EXPECT_EQ(services[0].version.patch, wwanServiceDescriptor.version.patch); in TEST_P() 994 wwanServiceDescriptor.version.patch = 0; in TEST_F() 1077 wwanServiceDescriptor.version.patch = 0; in TEST_F()
|
/system/chre/chpp/include/chpp/ |
D | transport.h | 292 uint16_t patch; member
|
/system/chre/chpp/services/ |
D | wwan.c | 57 .descriptor.version.patch = 0,
|
D | gnss.c | 55 .descriptor.version.patch = 0,
|
D | wifi.c | 56 .descriptor.version.patch = 0,
|
/system/update_engine/scripts/ |
D | payload_info_unittest.py | 211 with mock.patch.object(update_payload, 'Payload', return_value=payload), \
|
/system/sepolicy/prebuilts/api/28.0/public/ |
D | shell.te | 87 # Allow shell to read the vendor security patch level for CTS
|