Home
last modified time | relevance | path

Searched refs:patch (Results 1 – 25 of 40) sorted by relevance

12

/system/bt/build/dpkg/libchrome-822064/debian/patches/
Dseries1 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/
Dseries1 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/
Dgen-src-pkg.sh30 while read -r patch; do
31 patch -p1 < "libchrome_tools/patches/${patch}"
/system/bt/build/dpkg/libchrome/
Dgen-src-pkg.sh30 while read -r patch; do
31 patch -p1 < "libchrome_tools/patches/${patch}"
/system/tools/mkbootimg/include/bootimg/
Dbootimg.h93 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/
Dstyle_guide.md280 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/
Dsystemaudio_tests.cpp34 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/
Ddiscovery.c146 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()
Dwwan.c89 .descriptor.version.patch = 0,
/system/bt/build/dpkg/modp_b64/debian/patches/
Dseries1 0001-common-mk-rebase_path-output-location-of-generate-pc.patch
/system/update_engine/payload_generator/
Ddelta_diff_utils.cc764 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/
Daudio.h1955 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/
Dmake_cow_from_ab_ota.cpp359 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/
DREADME.md107 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/
DREADME.overlayfs.md84 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/
Dservices.c114 newService->descriptor.version.patch, newService->minLength); in chppRegisterService()
Dclients.c196 newClient->descriptor.version.patch, newClient->minLength); in chppRegisterClient()
/system/core/fs_mgr/libdm/include/libdm/
Ddm_target.h47 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/
Dtransport_test.cpp756 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/
Dtransport.h292 uint16_t patch; member
/system/chre/chpp/services/
Dwwan.c57 .descriptor.version.patch = 0,
Dgnss.c55 .descriptor.version.patch = 0,
Dwifi.c56 .descriptor.version.patch = 0,
/system/update_engine/scripts/
Dpayload_info_unittest.py211 with mock.patch.object(update_payload, 'Payload', return_value=payload), \
/system/sepolicy/prebuilts/api/28.0/public/
Dshell.te87 # Allow shell to read the vendor security patch level for CTS

12