/frameworks/compile/slang/tests/F_reduce_general_bad_result/ |
D | stderr.txt.expect | 1 reduce_general_bad_result.rscript:22:36: error: multidimensional arrays cannot be exported: 'accum' 2 reduce_general_bad_result.rscript:32:39: error: multidimensional arrays cannot be exported: 'out' 3 reduce_general_bad_result.rscript:36:7: error: unions cannot be exported: 'UnionShortDouble' 4 reduce_general_bad_result.rscript:46:7: error: unions cannot be exported: 'UnionLongFloat' 5 reduce_general_bad_result.rscript:72:7: error: unions cannot be exported: 'UnionIntFloat' 6 reduce_general_bad_result.rscript:84:7: error: unions cannot be exported: 'UnionCharLong' 7 reduce_general_bad_result.rscript:113:7: error: bit fields are not able to be exported: 'Bits1.b' 8 reduce_general_bad_result.rscript:122:7: error: bit fields are not able to be exported: 'Bits111.e' 9 reduce_general_bad_result.rscript:146:7: error: bit fields are not able to be exported: 'Bits2.b' 10 reduce_general_bad_result.rscript:157:7: error: bit fields are not able to be exported: 'Bits222.e' [all …]
|
/frameworks/compile/slang/tests/F_reflection3264_struct_mismatch/ |
D | stderr.txt.expect | 7 reflection3264_struct_mismatch.rscript:6:8: error: structure 'q' is exported only for 64-bit targets 8 reflection3264_struct_mismatch.rscript:8:8: error: structure 'b' is exported only for 64-bit targets 9 reflection3264_struct_mismatch.rscript:4:8: error: structure 't' is exported only for 64-bit targets 10 reflection3264_struct_mismatch.rscript:54:8: error: 2nd field of exported structure 'FieldName' is … 11 reflection3264_struct_mismatch.rscript:73:8: error: field 'b' of exported structure 'FieldType' has… 12 reflection3264_struct_mismatch.rscript:73:8: error: field 'e' of exported structure 'FieldType' has… 13 reflection3264_struct_mismatch.rscript:37:8: error: exported structure 'FieldCount' has 1 field for… 14 error: in file 'reflection3264_struct_mismatch.rscript' structure 'f' is exported only for 32-bit t… 15 error: in file 'reflection3264_struct_mismatch.rscript' structure 'j' is exported only for 32-bit t… 16 error: in file 'reflection3264_struct_mismatch.rscript' structure 'o' is exported only for 32-bit t…
|
D | reflection3264_struct_mismatch.rscript | 16 // disagreement as to which struct types are exported 34 // disagreeement as to how many fields in an exported struct 49 // disagreement as to field name in an exported struct 71 // disagreement as to field types in an exported struct
|
/frameworks/base/core/java/com/android/internal/pm/pkg/component/ |
D | ParsedMainComponentImpl.java | 46 private boolean exported; field in ParsedMainComponentImpl 62 this.exported = other.isExported(); in ParsedMainComponentImpl() 97 dest.writeBoolean(this.exported); in writeToParcel() 108 this.exported = in.readBoolean(); in ParsedMainComponentImpl() 147 boolean exported, in ParsedMainComponentImpl() argument 154 this.exported = exported; in ParsedMainComponentImpl() 179 return exported; in isExported() 206 exported = value; in setExported()
|
D | ComponentMutateUtils.java | 67 public static void setExported(@NonNull ParsedMainComponent component, boolean exported) { in setExported() argument 68 ((ParsedMainComponentImpl) component).setExported(exported); in setExported()
|
/frameworks/compile/slang/tests/F_ptr_in_struct/ |
D | stderr.txt.expect | 1 …ining pointers cannot be used as the type of an exported global variable or the parameter to an ex… 2 …ining pointers cannot be used as the type of an exported global variable or the parameter to an ex…
|
/frameworks/compile/slang/lit-tests/padding/ |
D | bitfield.rscript | 7 // Check that only NoBitfield is exported: 36 // We want to ensure that the common initial sequences of exported 37 // and non-exported types have the same layout. 39 // An exported type (because we declare a global variable of this type) 48 struct NoBitfield junk; // just to make this an exported type 50 // A non-exported type that shares a common initial sequence with NoBitfield 68 // Note: Sets through the exported type (NoBitfield) 76 // Note: Tests through the non-exported type (Bitfield)
|
/frameworks/rs/tests/java_api/RSUnitTests/src/com/android/rs/unittest/ |
D | bitfield.rscript | 30 // We want to ensure that the common initial sequences of exported 31 // and non-exported types have the same layout. 33 // An exported type (because we declare a global variable of this type) 42 struct NoBitfield junk; // just to make this an exported type 44 // A non-exported type that shares a common initial sequence with NoBitfield 62 // Note: Sets through the exported type (NoBitfield) 68 // Note: Tests through the non-exported type (Bitfield)
|
/frameworks/base/services/tests/PackageManager/packageinstaller/src/com/android/packageinstaller/test/ |
D | ExportedComponentTest.kt | 46 val exported = it.receivers?.filter { it.exported } in verifyNoExportedReceivers() constant 47 assertWithMessage("Receivers should not be exported").that(exported).isEmpty() in verifyNoExportedReceivers()
|
/frameworks/base/core/java/android/content/pm/ |
D | ComponentInfo.java | 99 public boolean exported = false; field in ComponentInfo 119 exported = orig.exported; in ComponentInfo() 211 pw.println(prefix + "enabled=" + enabled + " exported=" + exported in dumpFront() 242 dest.writeInt(exported ? 1 : 0); in writeToParcel() 254 exported = (source.readInt() != 0); in ComponentInfo()
|
/frameworks/rs/tests/java_api/RSUnitTests/supportlibsrc_gen/com/android/rs/unittest/ |
D | bitfield.rscript | 32 // We want to ensure that the common initial sequences of exported 33 // and non-exported types have the same layout. 35 // An exported type (because we declare a global variable of this type) 44 struct NoBitfield junk; // just to make this an exported type 46 // A non-exported type that shares a common initial sequence with NoBitfield 64 // Note: Sets through the exported type (NoBitfield) 70 // Note: Tests through the non-exported type (Bitfield)
|
/frameworks/base/core/java/com/android/internal/os/ |
D | BinderCallsStats.java | 531 ExportedCallStat exported = new ExportedCallStat(); in getExportedCallStat() local 532 exported.workSourceUid = workSourceUid; in getExportedCallStat() 533 exported.callingUid = stat.callingUid; in getExportedCallStat() 534 exported.className = stat.binderClass.getName(); in getExportedCallStat() 535 exported.binderClass = stat.binderClass; in getExportedCallStat() 536 exported.transactionCode = stat.transactionCode; in getExportedCallStat() 537 exported.screenInteractive = stat.screenInteractive; in getExportedCallStat() 538 exported.cpuTimeMicros = stat.cpuTimeMicros; in getExportedCallStat() 539 exported.maxCpuTimeMicros = stat.maxCpuTimeMicros; in getExportedCallStat() 540 exported.latencyMicros = stat.latencyMicros; in getExportedCallStat() [all …]
|
/frameworks/compile/slang/tests/F_ptr_in_struct_for_call/ |
D | stderr.txt.expect | 1 …ining pointers cannot be used as the type of an exported global variable or the parameter to an ex…
|
/frameworks/compile/slang/tests/F_struct_field_ptr_to_array/ |
D | stderr.txt.expect | 1 …ining pointers cannot be used as the type of an exported global variable or the parameter to an ex…
|
/frameworks/compile/slang/tests/F_struct_field_ptr_to_fn_proto/ |
D | stderr.txt.expect | 1 …ining pointers cannot be used as the type of an exported global variable or the parameter to an ex…
|
/frameworks/compile/slang/tests/F_struct_field_ptr_to_fn_noproto/ |
D | stderr.txt.expect | 1 …ining pointers cannot be used as the type of an exported global variable or the parameter to an ex…
|
/frameworks/compile/slang/tests/F_refcount_15/ |
D | stderr.txt.expect | 1 refcount_15.rscript:5:15: error: arrays/structures containing RS object types cannot be exported in… 2 refcount_15.rscript:9:3: error: arrays/structures containing RS object types cannot be exported in …
|
/frameworks/compile/libbcc/ |
D | README.rst | 111 * **bccGetExportVarCount** - Get the count of exported variables 113 * **bccGetExportVarList** - Get the addresses of exported variables 115 * **bccGetExportFuncCount** - Get the count of exported functions 117 * **bccGetExportFuncList** - Get the addresses of exported functions 126 * **bccGetFuncCount** - Get the count of functions (including non-exported) 136 header, string pool, dependencies table, relocation table, exported 137 variable list, exported function list, pragma list, function information 158 The list of the addresses of exported variables. 161 The list of the addresses of exported functions.
|
/frameworks/base/packages/SystemUI/multivalentTests/src/com/android/systemui/qs/tiles/base/actions/ |
D | QSTileIntentUserInputHandlerTest.kt | 105 setUpQueryResult(listOf(createActivityInfo(testResolvedComponent, exported = true))) in testPassNonActivityPendingIntentAndRequestStartingActivity_findsIntentAndStarts() 138 exported: Boolean = false, in createActivityInfo() 143 this.exported = exported in createActivityInfo()
|
/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/controls/management/ |
D | ControlsListingControllerImplTest.kt | 347 exported = true, in testActivityDisabled_nullPanel() 373 exported = true, in testActivityEnabled_correctPanel() 400 exported = true, in testActivityDefaultEnabled_correctPanel() 427 exported = true, in testActivityDefaultDisabled_nullPanel() 454 exported = true, in testActivityDifferentPackage_nullPanel() 483 exported = true, in testPackageNotPreferred_correctPanel() 596 exported = true, in testNoPanelIfMultiWindowNotSupported() 629 exported: Boolean = false, in ActivityInfo() 637 this.exported = exported in ActivityInfo()
|
/frameworks/base/services/tests/uiservicestests/src/com/android/server/notification/ |
D | TestableNotificationManagerService.java | 173 boolean exported) { in checkComponentPermission() argument 174 return permissionChecker.check(permission, uid, owningUid, exported); in checkComponentPermission() 212 int check(String permission, int uid, int owningUid, boolean exported); in check() argument
|
/frameworks/compile/slang/tests/F_anon_struct_kernel_sig/ |
D | stderr.txt.expect | 1 anon_struct_kernel_sig.rscript:4:9: error: anonymous structures cannot be exported
|
/frameworks/compile/slang/tests/F_anon_struct/ |
D | stderr.txt.expect | 1 anon_struct.rscript:4:1: error: anonymous structures cannot be exported
|
/frameworks/compile/slang/tests/F_anon_struct_typedef/ |
D | stderr.txt.expect | 1 anon_struct_typedef.rscript:4:9: error: anonymous structures cannot be exported
|
/frameworks/compile/slang/tests/F_anon_struct_usrdata/ |
D | stderr.txt.expect | 1 anon_struct_usrdata.rscript:4:9: error: anonymous structures cannot be exported
|