Home
last modified time | relevance | path

Searched refs:set (Results 1 – 25 of 431) sorted by relevance

12345678910>>...18

/system/bt/btif/src/
Dbtif_uid.cc42 uid_set_t* set = (uid_set_t*)osi_calloc(sizeof(uid_set_t)); in uid_set_create() local
43 return set; in uid_set_create()
46 void uid_set_destroy(uid_set_t* set) { in uid_set_destroy() argument
48 uid_set_node_t* node = set->head; in uid_set_destroy()
54 set->head = NULL; in uid_set_destroy()
55 osi_free(set); in uid_set_destroy()
59 static uid_set_node_t* uid_set_find_or_create_node(uid_set_t* set, in uid_set_find_or_create_node() argument
61 uid_set_node_t* node = set->head; in uid_set_find_or_create_node()
69 node->next = set->head; in uid_set_find_or_create_node()
70 set->head = node; in uid_set_find_or_create_node()
[all …]
/system/keymaster/tests/
Dauthorization_set_test.cpp36 AuthorizationSet set(params, array_length(params)); in TEST() local
37 EXPECT_EQ(8U, set.size()); in TEST()
48 AuthorizationSet set(params, array_length(params)); in TEST() local
49 AuthorizationSet set2(set); in TEST()
50 EXPECT_EQ(set, set2); in TEST()
68 AuthorizationSet set(AuthorizationSetBuilder() in TEST() local
78 EXPECT_EQ(8U, set.size()); in TEST()
80 int pos = set.find(TAG_ALGORITHM); in TEST()
82 EXPECT_EQ(KM_TAG_ALGORITHM, set[pos].tag); in TEST()
83 EXPECT_EQ(KM_ALGORITHM_RSA, set[pos].enumerated); in TEST()
[all …]
Dandroid_keymaster_test_utils.h53 std::ostream& operator<<(std::ostream& os, const AuthorizationSet& set);
58 bool contains(const AuthorizationSet& set, TypedEnumTag<KM_ENUM, Tag, KeymasterEnum> tag, in contains() argument
60 int pos = set.find(tag); in contains()
61 return pos != -1 && static_cast<KeymasterEnum>(set[pos].enumerated) == val; in contains()
65 bool contains(const AuthorizationSet& set, TypedEnumTag<KM_ENUM_REP, Tag, KeymasterEnum> tag, in contains() argument
68 while ((pos = set.find(tag, pos)) != -1) in contains()
69 if (static_cast<KeymasterEnum>(set[pos].enumerated) == val) in contains()
75 bool contains(const AuthorizationSet& set, TypedTag<KM_UINT, Tag> tag, uint32_t val) { in contains() argument
76 int pos = set.find(tag); in contains()
77 return pos != -1 && set[pos].integer == val; in contains()
[all …]
/system/extras/simpleperf/demo/SimpleperfExampleOfKotlin/
Dgradlew.bat12 set DEFAULT_JVM_OPTS=
14 set DIRNAME=%~dp0
15 if "%DIRNAME%" == "" set DIRNAME=.
16 set APP_BASE_NAME=%~n0
17 set APP_HOME=%DIRNAME%
22 set JAVA_EXE=java.exe
27 echo ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH.
29 echo Please set the JAVA_HOME variable in your environment to match the
35 set JAVA_HOME=%JAVA_HOME:"=%
36 set JAVA_EXE=%JAVA_HOME%/bin/java.exe
[all …]
/system/extras/simpleperf/demo/SimpleperfExampleWithNative/
Dgradlew.bat12 set DEFAULT_JVM_OPTS=
14 set DIRNAME=%~dp0
15 if "%DIRNAME%" == "" set DIRNAME=.
16 set APP_BASE_NAME=%~n0
17 set APP_HOME=%DIRNAME%
22 set JAVA_EXE=java.exe
27 echo ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH.
29 echo Please set the JAVA_HOME variable in your environment to match the
35 set JAVA_HOME=%JAVA_HOME:"=%
36 set JAVA_EXE=%JAVA_HOME%/bin/java.exe
[all …]
/system/extras/power_profile/camera_flashlight/
Dgradlew.bat12 set DEFAULT_JVM_OPTS=
14 set DIRNAME=%~dp0
15 if "%DIRNAME%" == "" set DIRNAME=.
16 set APP_BASE_NAME=%~n0
17 set APP_HOME=%DIRNAME%
22 set JAVA_EXE=java.exe
27 echo ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH.
29 echo Please set the JAVA_HOME variable in your environment to match the
35 set JAVA_HOME=%JAVA_HOME:"=%
36 set JAVA_EXE=%JAVA_HOME%/bin/java.exe
[all …]
/system/extras/simpleperf/demo/SimpleperfExamplePureJava/
Dgradlew.bat12 set DEFAULT_JVM_OPTS=
14 set DIRNAME=%~dp0
15 if "%DIRNAME%" == "" set DIRNAME=.
16 set APP_BASE_NAME=%~n0
17 set APP_HOME=%DIRNAME%
22 set JAVA_EXE=java.exe
27 echo ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH.
29 echo Please set the JAVA_HOME variable in your environment to match the
35 set JAVA_HOME=%JAVA_HOME:"=%
36 set JAVA_EXE=%JAVA_HOME%/bin/java.exe
[all …]
/system/extras/power_profile/gps_on/
Dgradlew.bat12 set DEFAULT_JVM_OPTS=
14 set DIRNAME=%~dp0
15 if "%DIRNAME%" == "" set DIRNAME=.
16 set APP_BASE_NAME=%~n0
17 set APP_HOME=%DIRNAME%
22 set JAVA_EXE=java.exe
27 echo ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH.
29 echo Please set the JAVA_HOME variable in your environment to match the
35 set JAVA_HOME=%JAVA_HOME:"=%
36 set JAVA_EXE=%JAVA_HOME%/bin/java.exe
[all …]
/system/extras/power_profile/camera_avg/
Dgradlew.bat12 set DEFAULT_JVM_OPTS=
14 set DIRNAME=%~dp0
15 if "%DIRNAME%" == "" set DIRNAME=.
16 set APP_BASE_NAME=%~n0
17 set APP_HOME=%DIRNAME%
22 set JAVA_EXE=java.exe
27 echo ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH.
29 echo Please set the JAVA_HOME variable in your environment to match the
35 set JAVA_HOME=%JAVA_HOME:"=%
36 set JAVA_EXE=%JAVA_HOME%/bin/java.exe
[all …]
/system/keymaster/android_keymaster/
Dauthorization_set.cpp38 elems_ = builder.set.elems_; in AuthorizationSet()
39 builder.set.elems_ = NULL; in AuthorizationSet()
41 elems_size_ = builder.set.elems_size_; in AuthorizationSet()
42 builder.set.elems_size_ = 0; in AuthorizationSet()
44 elems_capacity_ = builder.set.elems_capacity_; in AuthorizationSet()
45 builder.set.elems_capacity_ = 0; in AuthorizationSet()
47 indirect_data_ = builder.set.indirect_data_; in AuthorizationSet()
48 builder.set.indirect_data_ = NULL; in AuthorizationSet()
50 indirect_data_capacity_ = builder.set.indirect_data_capacity_; in AuthorizationSet()
51 builder.set.indirect_data_capacity_ = 0; in AuthorizationSet()
[all …]
/system/bt/btcore/include/
Ddevice_class.h72 void device_class_set_limited(bt_device_class_t* dc, bool set);
75 void device_class_set_positioning(bt_device_class_t* dc, bool set);
78 void device_class_set_networking(bt_device_class_t* dc, bool set);
81 void device_class_set_rendering(bt_device_class_t* dc, bool set);
84 void device_class_set_capturing(bt_device_class_t* dc, bool set);
87 void device_class_set_object_transfer(bt_device_class_t* dc, bool set);
90 void device_class_set_audio(bt_device_class_t* dc, bool set);
93 void device_class_set_telephony(bt_device_class_t* dc, bool set);
96 void device_class_set_information(bt_device_class_t* dc, bool set);
/system/bt/btif/include/
Dbtif_uid.h32 void uid_set_destroy(uid_set_t* set);
34 void uid_set_add_tx(uid_set_t* set, int32_t app_uid, uint64_t bytes);
35 void uid_set_add_rx(uid_set_t* set, int32_t app_uid, uint64_t bytes);
43 bt_uid_traffic_t* uid_set_read_and_clear(uid_set_t* set);
/system/keymaster/include/keymaster/
Dauthorization_set.h62 explicit AuthorizationSet(const keymaster_key_param_set_t& set) : indirect_data_(nullptr) { in AuthorizationSet() argument
64 Reinitialize(set.params, set.length); in AuthorizationSet()
80 AuthorizationSet(const AuthorizationSet& set) : Serializable(), indirect_data_(nullptr) { in AuthorizationSet() argument
82 error_ = set.error_; in AuthorizationSet()
84 Reinitialize(set.elems_, set.elems_size_); in AuthorizationSet()
88 AuthorizationSet(AuthorizationSet&& set) : Serializable() { in AuthorizationSet() argument
89 MoveFrom(set); in AuthorizationSet()
93 AuthorizationSet& operator=(const AuthorizationSet& set) {
94 Reinitialize(set.elems_, set.elems_size_);
95 error_ = set.error_;
[all …]
/system/core/libpixelflinger/arch-mips/
Dt32cb16blend.S41 DBG .set noat
43 DBG .set at
82 DBG .set noat
89 DBG .set at
99 DBG .set push
100 DBG .set noat
101 DBG .set mips32r2
103 DBG .set pop
167 DBG .set push
168 DBG .set noat
[all …]
/system/libvintf/include/vintf/
DSystemSdk.h32 SystemSdk(std::set<std::string>&& versions) : mVersions(std::move(versions)) {} in SystemSdk()
33 SystemSdk(const std::set<std::string>& versions) : mVersions(versions) {} in SystemSdk()
34 const std::set<std::string>& versions() const { return mVersions; } in versions()
44 std::set<std::string> mVersions;
/system/sepolicy/tests/
Dsearchpolicy.py43 scontext = set()
47 tcontext = set()
49 tclass = set(args.tclass.split(","))
51 tclass = set()
53 perms = set(args.perms.split(","))
55 perms = set()
Dmini_parser.py12 types = set() # types declared in mapping
13 pubtypes = set()
14 typeattributes = set() # attributes declared in mapping
60 self.typeattributesets[ta] = set()
61 self.typeattributesets[ta].update(set(tas))
64 self.rTypeattributesets[t] = set()
65 self.rTypeattributesets[t].update(set(ta))
/system/media/audio_utils/
DDoxyfile63 # If the CREATE_SUBDIRS tag is set to YES, then doxygen will create 4096 sub-
88 # If the BRIEF_MEMBER_DESC tag is set to YES doxygen will include brief member
95 # If the REPEAT_BRIEF tag is set to YES doxygen will prepend the brief
98 # Note: If both HIDE_UNDOC_MEMBERS and BRIEF_MEMBER_DESC are set to NO, the
115 # If the ALWAYS_DETAILED_SEC and REPEAT_BRIEF tags are both set to YES then
122 # If the INLINE_INHERITED_MEMB tag is set to YES, doxygen will show all
130 # If the FULL_PATH_NAMES tag is set to YES doxygen will prepend the full path
131 # before files name in the file list and in the header files. If set to NO the
145 # This tag requires that the tag FULL_PATH_NAMES is set to YES.
158 # If the SHORT_NAMES tag is set to YES, doxygen will generate much shorter (but
[all …]
DDoxyfile.orig63 # If the CREATE_SUBDIRS tag is set to YES, then doxygen will create 4096 sub-
88 # If the BRIEF_MEMBER_DESC tag is set to YES doxygen will include brief member
95 # If the REPEAT_BRIEF tag is set to YES doxygen will prepend the brief
98 # Note: If both HIDE_UNDOC_MEMBERS and BRIEF_MEMBER_DESC are set to NO, the
115 # If the ALWAYS_DETAILED_SEC and REPEAT_BRIEF tags are both set to YES then
122 # If the INLINE_INHERITED_MEMB tag is set to YES, doxygen will show all
130 # If the FULL_PATH_NAMES tag is set to YES doxygen will prepend the full path
131 # before files name in the file list and in the header files. If set to NO the
145 # This tag requires that the tag FULL_PATH_NAMES is set to YES.
158 # If the SHORT_NAMES tag is set to YES, doxygen will generate much shorter (but
[all …]
/system/core/libprocinfo/
Dprocess_test.cpp81 std::set<pid_t> set; in TEST() local
82 ASSERT_TRUE(android::procinfo::GetProcessTids(getpid(), &set)); in TEST()
83 ASSERT_EQ(1, std::count(set.begin(), set.end(), main_tid)); in TEST()
84 ASSERT_EQ(1, std::count(set.begin(), set.end(), thread_tid)); in TEST()
/system/chre/pal/doc/
DDoxyfile63 # If the CREATE_SUBDIRS tag is set to YES then doxygen will create 4096 sub-
73 # If the ALLOW_UNICODE_NAMES tag is set to YES, doxygen will allow non-ASCII
74 # characters to appear in the names of generated files. If set to NO, non-ASCII
96 # If the BRIEF_MEMBER_DESC tag is set to YES, doxygen will include brief member
103 # If the REPEAT_BRIEF tag is set to YES, doxygen will prepend the brief
106 # Note: If both HIDE_UNDOC_MEMBERS and BRIEF_MEMBER_DESC are set to NO, the
123 # If the ALWAYS_DETAILED_SEC and REPEAT_BRIEF tags are both set to YES then
130 # If the INLINE_INHERITED_MEMB tag is set to YES, doxygen will show all
138 # If the FULL_PATH_NAMES tag is set to YES, doxygen will prepend the full path
139 # before files name in the file list and in the header files. If set to NO the
[all …]
/system/chre/chre_api/doc/
DDoxyfile63 # If the CREATE_SUBDIRS tag is set to YES then doxygen will create 4096 sub-
73 # If the ALLOW_UNICODE_NAMES tag is set to YES, doxygen will allow non-ASCII
74 # characters to appear in the names of generated files. If set to NO, non-ASCII
96 # If the BRIEF_MEMBER_DESC tag is set to YES, doxygen will include brief member
103 # If the REPEAT_BRIEF tag is set to YES, doxygen will prepend the brief
106 # Note: If both HIDE_UNDOC_MEMBERS and BRIEF_MEMBER_DESC are set to NO, the
123 # If the ALWAYS_DETAILED_SEC and REPEAT_BRIEF tags are both set to YES then
130 # If the INLINE_INHERITED_MEMB tag is set to YES, doxygen will show all
138 # If the FULL_PATH_NAMES tag is set to YES, doxygen will prepend the full path
139 # before files name in the file list and in the header files. If set to NO the
[all …]
/system/core/libunwindstack/
DAsmGetRegsMips.S37 .set push
38 .set noreorder
41 .set noat
43 .set at
77 .set pop
DAsmGetRegsMips64.S37 .set push
38 .set noreorder
41 .set noat
43 .set at
77 .set pop
/system/core/toolbox/
Dr.c53 bool set = false; in main() local
56 set = true; in main()
82 if(set) *x = value; in main()
88 if(set) *x = value; in main()
94 if(set) *x = value; in main()

12345678910>>...18