Home
last modified time | relevance | path

Searched refs:h (Results 1 – 25 of 43) sorted by relevance

12

/build/soong/third_party/zip/
Dwriter.go70 for _, h := range w.dir {
74 b.uint16(h.CreatorVersion)
75 b.uint16(h.ReaderVersion)
76 b.uint16(h.Flags)
77 b.uint16(h.Method)
78 b.uint16(h.ModifiedTime)
79 b.uint16(h.ModifiedDate)
80 b.uint32(h.CRC32)
81 if h.isZip64() || h.offset >= uint32max {
93 eb.uint64(h.UncompressedSize64)
[all …]
Dstruct.go94 func (h *FileHeader) FileInfo() os.FileInfo {
95 return headerFileInfo{h}
179 func (h *FileHeader) ModTime() time.Time {
180 return msDosTimeToTime(h.ModifiedDate, h.ModifiedTime)
185 func (h *FileHeader) SetModTime(t time.Time) {
186 h.ModifiedDate, h.ModifiedTime = timeToMsDosTime(t)
209 func (h *FileHeader) Mode() (mode os.FileMode) {
210 switch h.CreatorVersion >> 8 {
212 mode = unixModeToFileMode(h.ExternalAttrs >> 16)
214 mode = msdosModeToFileMode(h.ExternalAttrs)
[all …]
Dzip_test.go368 func testValidHeader(h *FileHeader, t *testing.T) {
372 f, err := z.CreateHeader(h)
389 if zh.Name != h.Name || zh.Method != h.Method || zh.UncompressedSize64 != uint64(len("hi")) {
390 …t.Fatalf("got %q/%d/%d expected %q/%d/%d", zh.Name, zh.Method, zh.UncompressedSize64, h.Name, h.Me…
401 h := FileHeader{
406 h.SetModTime(ts)
408 testValidHeader(&h, t)
412 h := FileHeader{
417 testValidHeader(&h, t)
421 h := FileHeader{
[all …]
Dandroid.go41 h := &header{
45 w.dir = append(w.dir, h)
145 h := &header{
149 w.dir = append(w.dir, h)
150 fw.header = h
/build/soong/makedeps/
Ddeps_test.go58 bar.h baz.h
77 Dir\Library\Version\Bar.h \
85 `Dir\Library\Version\Bar.h`,
118 input: `C\:/Program\ Files\ (x86)/Microsoft\ crtdefs.h: \
208 external/ninja/src/ninja.cc external/libcxx/include/errno.h \
210 prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/features.h \
211 …gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/x86_64-linux-gnu/bits/predefs.h \
212 …ts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/x86_64-linux-gnu/sys/cdefs.h \
213 …cc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/x86_64-linux-gnu/bits/wordsize.h \
214 …ts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/x86_64-linux-gnu/gnu/stubs.h \
[all …]
/build/soong/java/
Dhiddenapi_singleton.go61 func (h *hiddenAPISingleton) GenerateBuildActions(ctx android.SingletonContext) {
71 h.flags = flagsRule(ctx)
72 h.metadata = metadataRule(ctx)
74 h.flags = emptyFlagsRule(ctx)
80 func (h *hiddenAPISingleton) MakeVars(ctx android.MakeVarsContext) {
85 ctx.Strict("INTERNAL_PLATFORM_HIDDENAPI_FLAGS", h.flags.String())
87 if h.metadata != nil {
88 ctx.Strict("INTERNAL_PLATFORM_HIDDENAPI_GREYLIST_METADATA", h.metadata.String())
156 if h, ok := module.(hiddenAPIIntf); ok {
157 if jar := h.bootDexJar(); jar != nil {
[all …]
Dhiddenapi.go37 func (h *hiddenAPI) flagsCSV() android.Path {
38 return h.flagsCSVPath
41 func (h *hiddenAPI) metadataCSV() android.Path {
42 return h.metadataCSVPath
45 func (h *hiddenAPI) bootDexJar() android.Path {
46 return h.bootDexJarPath
49 func (h *hiddenAPI) indexCSV() android.Path {
50 return h.indexCSVPath
62 func (h *hiddenAPI) hiddenAPI(ctx android.ModuleContext, name string, primary bool, dexJar android.…
85 h.hiddenAPIGenerateCSV(ctx, flagsCSV, metadataCSV, indexCSV, implementationJar)
[all …]
/build/soong/sdk/
Dcc_sdk_test.go388 include/Test.h -> include/include/Test.h
467 include/Test.h -> include/include/Test.h
469 arm64/include/Arm64Test.h -> arm64/include/arm64/include/Arm64Test.h
799 include/Test.h -> include/include/Test.h
801 …_arm64_armv8-a_shared/gen/aidl/aidl/foo/bar/Test.h -> arm64/include_gen/mynativelib/aidl/foo/bar/T…
802 …m64_armv8-a_shared/gen/aidl/aidl/foo/bar/BnTest.h -> arm64/include_gen/mynativelib/aidl/foo/bar/Bn…
803 …m64_armv8-a_shared/gen/aidl/aidl/foo/bar/BpTest.h -> arm64/include_gen/mynativelib/aidl/foo/bar/Bp…
805 …rm_armv7-a-neon_shared/gen/aidl/aidl/foo/bar/Test.h -> arm/include_gen/mynativelib/aidl/foo/bar/Te…
806 …armv7-a-neon_shared/gen/aidl/aidl/foo/bar/BnTest.h -> arm/include_gen/mynativelib/aidl/foo/bar/BnT…
807 …armv7-a-neon_shared/gen/aidl/aidl/foo/bar/BpTest.h -> arm/include_gen/mynativelib/aidl/foo/bar/BpT…
[all …]
Dtesting.go192 func (h *TestHelper) AssertStringEquals(message string, expected string, actual string) {
193 h.t.Helper()
195 h.t.Errorf("%s: expected %s, actual %s", message, expected, actual)
199 func (h *TestHelper) AssertErrorMessageEquals(message string, expected string, actual error) {
200 h.t.Helper()
202 h.t.Errorf("Expected error but was nil")
204 h.t.Errorf("%s: expected %s, actual %s", message, expected, actual.Error())
208 func (h *TestHelper) AssertTrimmedStringEquals(message string, expected string, actual string) {
209 h.t.Helper()
210 h.AssertStringEquals(message, strings.TrimSpace(expected), strings.TrimSpace(actual))
[all …]
Dsdk_test.go338 h := TestHelper{t}
341 h.AssertDeepEquals("unexpected error", nil, err)
343 h.AssertDeepEquals("common properties not correct",
361 h.AssertDeepEquals("updated properties[0] not correct",
379 h.AssertDeepEquals("updated properties[1] not correct",
413 h := TestHelper{t}
416h.AssertErrorMessageEquals("unexpected error", `field "S_Common" is not tagged as "arch_variant" b…
/build/make/tools/droiddoc/templates-pdk/assets/
Djquery-1.6.2.min.js16h,i=d.length,j,k=d[0],l,m,n,o,p;for(g=1;g<i;g++){if(g===1)for(h in a.converters)typeof h=="string"… argument
17h]||!!f.event.global[h]){c=typeof c=="object"?c[f.expando]?c:new f.Event(h,c):new f.Event(h),c.typ…
Dprettify.js15 …or(var f=j.substring(1,j.length-1).match(new RegExp(Ub,R)),s=[],k=[],h=f[0]===M,e=h?1:0,p=f.length…
16h&&D.push(M);D.push.apply(D,s);for(e=0;e<B.length;++e){A=B[e];D.push(n(A[0]));if(A[1]>A[0]){A[1]+1…
17 …=++b;for(h=e=0;e<s;++e){p=f[e];if(p===H){++h;if(k[h]===undefined)f[e]=dc}else if(Q===p.charAt(0))i…
21h=j[k],e,p;if(typeof h===nc)p=z;else{var t=c[k.charAt(0)];if(t){e=k.match(t[1]);h=t[0]}else{for(va…
22 h.substring(0,5))&&!(e&&e[1])){p=z;h=oc}p||(j[k]=h)}var x=v;v+=k.length;if(p){var B=e[1],E=k.indexO…
Djquery-resizable.min.js12h="jQuery"+e(),v=0,A={};o.extend({cache:{},data:function(F,E,G){F=F==l?A:F;var H=F[h];if(!H){H=F[h
19h\d/i.test(T.nodeName)},text:function(T){return"text"===T.type},radio:function(T){return"radio"===…
29h="http://www.w3.org/2005/07/aaa",a=/^aria-/,b=/^wairole:/;c.attr=function(k,j,l){var m=l!==undefi…
40h=c.trim(k[f]),d="ui-resizable-"+h;var g=c('<div class="ui-resizable-handle '+d+'"></div>');if(/sw… argument
/build/make/tools/fs_config/end_to_end_test/
Drun_test.sh4 --aid-header $ANDROID_BUILD_TOP/system/core/include/private/android_filesystem_config.h \
5 --capability-header $ANDROID_BUILD_TOP/bionic/libc/kernel/uapi/linux/capability.h \
16 --aid-header $ANDROID_BUILD_TOP/system/core/include/private/android_filesystem_config.h \
17 --capability-header $ANDROID_BUILD_TOP/bionic/libc/kernel/uapi/linux/capability.h \
28 --aid-header $ANDROID_BUILD_TOP/system/core/include/private/android_filesystem_config.h \
29 --capability-header $ANDROID_BUILD_TOP/bionic/libc/kernel/uapi/linux/capability.h \
39 --aid-header $ANDROID_BUILD_TOP/system/core/include/private/android_filesystem_config.h \
40 --capability-header $ANDROID_BUILD_TOP/bionic/libc/kernel/uapi/linux/capability.h \
50 --aid-header $ANDROID_BUILD_TOP/system/core/include/private/android_filesystem_config.h \
51 --capability-header $ANDROID_BUILD_TOP/bionic/libc/kernel/uapi/linux/capability.h \
[all …]
/build/make/core/
Dnode_fns.mk100 $(eval h := |||$(subst $(space),|||,$(strip $(1)))|||) \
101 $(eval h := $(subst |||$(strip $(2))|||,|||$(space)|||,$(h))) \
102 $(eval h := $(word 1,$(h)) $(2) $(wordlist 2,9999,$(h))) \
103 $(subst |||,$(space),$(h)) \
/build/make/tools/droiddoc/templates-ndk/assets/js/
Dprettify.js2 …arCode(a);if(a==="\\"||a==="-"||a==="["||a==="]")a="\\"+a;return a}function h(a){for(var f=a.subst… function in anonymousFunction4f2d46ba0100.L
5 …gnoreCase&&s)for(c=0;c<b;++c)j=f[c],a=j.charAt(0),j.length>=2&&a==="["?f[c]=h(j):a!=="\\"&&(f[c]=j…
6 …"===g)h[s]="\n",t[s<<1]=y++,t[s++<<1|1]=a;break;case 3:case 4:g=a.nodeValue,g.length&&(g=p?g.repla…
7h=[],y=0,t=[],s=0,l;a.currentStyle?l=a.currentStyle.whiteSpace:window.getComputedStyle&&(l=documen… argument
8h[f.charAt(0)];if(i)o=f.match(i[1]),b=i[0];else{for(c=0;c<t;++c)if(i=m[c],o=f.match(i[1])){b=i[0];…
9 l=[],p={},d=0,g=e.length;d<g;++d){var r=e[d],n=r[3];if(n)for(var k=n.length;--k>=0;)h[n.charAt(k)]=…
10h=a.hashComments;h&&(a.cStyleComments?(h>1?m.push(["com",/^#(?:##(?:[^#]|#(?!##))*(?:###|$)|.*)/,q…
11 …/])(?:[^/[\\]|\\[\S\s]|\[(?:[^\\\]]|\\[\S\s])*(?:]|$))+\/)/]);(h=a.types)&&e.push(["typ",h]);a=(""…
Dandroid_3p-bundle.js2478h;f<g;f++)if(h=a[f]){while((h=h.previousSibling)&&h.nodeType!==1);a[f]=e||h&&h.nodeName.toLowerCas…
2614h,j,aa,U,ap,X,t,A,aq,af,am,G,l,at,ax,x,av,aH,f,L,ai=true,P=true,aG=false,k=false,ao=D.clone(false,…
2615h.hover(function(){h.addClass("jspHover")},function(){h.removeClass("jspHover")}).bind("mousedown.…
2616 }else{h.css("left",aI);ae(aI)}}function ae(aI){if(aI===c){aI=h.position().left}al.scrollTop(0);aa=a…
2633h=0;return b=a.event.fix(c),b.type="mousewheel",c.wheelDelta&&(e=c.wheelDelta/120),c.detail&&(e=-c…
2646h;return!b.href||!g||f.nodeName.toLowerCase()!=="map"?!1:(h=a("img[usemap=#"+g+"]")[0],!!h&&d(h))}… function
2650h=this;return e=!f&&g.length?a.extend.apply(null,[!0,e].concat(g)):e,f&&e.charAt(0)==="_"?h:(f?thi…
2658h=a.fn.offset;a.fn.position=function(b){if(!b||!b.of)return g.apply(this,arguments);b=a.extend({},… variable
2662h;if(this.containment){if(this.relative_container){var i=this.relative_container.offset();h=[this.…
2666h=g+b.helperProportions.height,i=c.offset.left,j=i+c.proportions.width,k=c.offset.top,l=k+c.propor…
[all …]
/build/make/common/
Dstrings.mk22 …t B,b,$(subst C,c,$(subst D,d,$(subst E,e,$(subst F,f,$(subst G,g,$(subst H,h,$(subst I,i,$(subst …
29 …bst b,B,$(subst c,C,$(subst d,D,$(subst e,E,$(subst f,F,$(subst g,G,$(subst h,H,$(subst i,I,$(subs…
115 ifneq (a=b c=d e= f=g h=,$(call collapse-pairs,a=b c= d e = f = g h=))
118 ifneq (a:=b c:=d e:=f g:=h,$(call collapse-pairs,a:=b c:= d e :=f g := h,:=))
/build/soong/cmd/fileslist/
Dfileslist.go67 h := sha256.New()
75 if _, err := io.Copy(h, f); err != nil {
84 if _, err := io.WriteString(h, s); err != nil {
88 n.SHA256 = fmt.Sprintf("%x", h.Sum(nil))
/build/make/tools/releasetools/
Dimages.py131 h = sha1()
133 h.update(data)
134 return h.hexdigest()
209 h = sha1()
211 h.update(data)
212 return h.hexdigest()
Dcheck_ota_package_signature.py99 h = sha256() if use_sha256 else sha1()
100 h.update(package_bytes[:signed_len])
101 package_digest = h.hexdigest().lower()
/build/make/tools/
Dcheck_radio_versions.py62 h, v = line.split() variable
63 versions[h] = v
/build/soong/android/
Dhooks.go132 h := &m.(Module).base().hooks
133 h.install = append(h.install, hook)
/build/make/tools/fs_config/
DREADME6 The fs_config_generator.py tool uses the platform android_filesystem_config.h and the
8 partition, as well as passwd and group files, and the generated_oem_aid.h header.
24 The generated_oem_aid.h creates identifiers for non-platform AIDs for developers wishing to use them
26 makefile and #include "generated_oem_aid.h" in the code wishing to use these identifiers.
62 system/core/include/private/android_filesystem_capability.h without the
99 as defined by system/core/include/private/android_filesystem_config.h.
/build/soong/ui/terminal/
Dsmart_status.go75 h, _ := strconv.Atoi(env)
76 s.tableMode = h > 0
77 s.requestedTableHeight = h
300 if w, h, ok := termSize(s.writer); ok {
304 s.termWidth, s.termHeight = w, h

12