/system/security/keystore/ |
D | keystore_utils.cpp | 58 params->push_back(keymaster_param_enum(KM_TAG_PURPOSE, KM_PURPOSE_SIGN)); in add_legacy_key_authorizations() 59 params->push_back(keymaster_param_enum(KM_TAG_PURPOSE, KM_PURPOSE_VERIFY)); in add_legacy_key_authorizations() 60 params->push_back(keymaster_param_enum(KM_TAG_PURPOSE, KM_PURPOSE_ENCRYPT)); in add_legacy_key_authorizations() 61 params->push_back(keymaster_param_enum(KM_TAG_PURPOSE, KM_PURPOSE_DECRYPT)); in add_legacy_key_authorizations() 62 params->push_back(keymaster_param_enum(KM_TAG_PADDING, KM_PAD_NONE)); in add_legacy_key_authorizations() 64 params->push_back(keymaster_param_enum(KM_TAG_PADDING, KM_PAD_RSA_PKCS1_1_5_SIGN)); in add_legacy_key_authorizations() 65 params->push_back(keymaster_param_enum(KM_TAG_PADDING, KM_PAD_RSA_PKCS1_1_5_ENCRYPT)); in add_legacy_key_authorizations() 66 params->push_back(keymaster_param_enum(KM_TAG_PADDING, KM_PAD_RSA_PSS)); in add_legacy_key_authorizations() 67 params->push_back(keymaster_param_enum(KM_TAG_PADDING, KM_PAD_RSA_OAEP)); in add_legacy_key_authorizations() 69 params->push_back(keymaster_param_enum(KM_TAG_DIGEST, KM_DIGEST_NONE)); in add_legacy_key_authorizations() [all …]
|
/system/connectivity/shill/ |
D | ppp_daemon.cc | 51 arguments.push_back("debug"); in Start() 54 arguments.push_back("nodetach"); in Start() 57 arguments.push_back("nodefaultroute"); in Start() 60 arguments.push_back("usepeerdns"); in Start() 63 arguments.push_back("plugin"); in Start() 64 arguments.push_back(kShimPluginPath); in Start() 67 arguments.push_back("plugin"); in Start() 68 arguments.push_back(kPPPoEPluginPath); in Start() 71 arguments.push_back("lcp-echo-interval"); in Start() 72 arguments.push_back(base::UintToString(options.lcp_echo_interval)); in Start() [all …]
|
D | dns_server_proxy.cc | 58 args.push_back("--no-hosts"); in Start() 59 args.push_back("--listen-address=127.0.0.1"); in Start() 60 args.push_back("--no-resolv"); in Start() 61 args.push_back("--keep-in-foreground"); in Start() 62 args.push_back(base::StringPrintf("--user=%s", kDnsmasqUser)); in Start() 63 args.push_back(base::StringPrintf("--group=%s", kDnsmasqGroup)); in Start() 65 args.push_back(base::StringPrintf("--server=%s", server.c_str())); in Start() 67 args.push_back(base::StringPrintf("--pid-file=%s", kDnsmasqPidFilePath)); in Start()
|
D | resolver_unittest.cc | 88 dns_servers.push_back(kNameServer0); in TEST_F() 89 dns_servers.push_back(kNameServer1); in TEST_F() 90 domain_search.push_back(kSearchDomain0); in TEST_F() 91 domain_search.push_back(kSearchDomain1); in TEST_F() 118 dns_servers.push_back(kNameServer0); in TEST_F() 119 dns_servers.push_back(kNameServer1); in TEST_F() 120 domain_search.push_back(kSearchDomain0); in TEST_F() 121 domain_search.push_back(kSearchDomain1); in TEST_F() 123 ignored_search.push_back(kSearchDomain0); in TEST_F() 124 ignored_search.push_back(kSearchDomain2); in TEST_F()
|
D | traffic_monitor_unittest.cc | 182 socket_infos.push_back( in TEST_F() 202 socket_infos.push_back( in TEST_F() 218 socket_infos.push_back( in TEST_F() 234 socket_infos.push_back( in TEST_F() 250 socket_infos.push_back( in TEST_F() 266 socket_infos.push_back( in TEST_F() 275 socket_infos.push_back( in TEST_F() 284 socket_infos.push_back( in TEST_F() 293 socket_infos.push_back( in TEST_F() 302 socket_infos.push_back( in TEST_F() [all …]
|
D | resolver.cc | 68 lines.push_back("nameserver " + *iter); in SetDNSFromLists() 77 filtered_domain_search.push_back(*iter); in SetDNSFromLists() 82 lines.push_back("search " + base::JoinString(filtered_domain_search, " ")); in SetDNSFromLists() 96 lines.push_back("options single-request timeout:1 attempts:5"); in SetDNSFromLists() 99 lines.push_back(""); in SetDNSFromLists()
|
/system/firewalld/ |
D | iptables.cc | 294 added_usernames.push_back(username); in ApplyVpnSetup() 332 argv.push_back(executable_path); in AddAcceptRule() 333 argv.push_back("-I"); // insert in AddAcceptRule() 334 argv.push_back("INPUT"); in AddAcceptRule() 335 argv.push_back("-p"); // protocol in AddAcceptRule() 336 argv.push_back(protocol == kProtocolTcp ? "tcp" : "udp"); in AddAcceptRule() 337 argv.push_back("--dport"); // destination port in AddAcceptRule() 338 argv.push_back(std::to_string(port)); in AddAcceptRule() 340 argv.push_back("-i"); // interface in AddAcceptRule() 341 argv.push_back(interface); in AddAcceptRule() [all …]
|
/system/core/init/ |
D | init_parser_test.cpp | 36 args.push_back("exec"); in TEST() 40 args.push_back("--"); in TEST() 47 args.push_back("exec"); in TEST() 48 args.push_back("seclabel"); in TEST() 49 args.push_back("root"); // uid. in TEST() 50 args.push_back("root"); // gid. in TEST() 52 args.push_back("root"); // Supplementary gid. in TEST() 54 args.push_back("--"); in TEST() 55 args.push_back("/system/bin/id"); in TEST() 63 args.push_back("exec"); in Test_make_exec_oneshot_service() [all …]
|
/system/vold/fs/ |
D | Vfat.cpp | 77 cmd.push_back(kFsckPath); in Check() 78 cmd.push_back("-p"); in Check() 79 cmd.push_back("-f"); in Check() 80 cmd.push_back(source); in Check() 174 cmd.push_back(kMkfsPath); in Format() 175 cmd.push_back("-F"); in Format() 176 cmd.push_back("32"); in Format() 177 cmd.push_back("-O"); in Format() 178 cmd.push_back("android"); in Format() 179 cmd.push_back("-c"); in Format() [all …]
|
D | Ext4.cpp | 118 cmd.push_back(kFsckPath); in Check() 119 cmd.push_back("-y"); in Check() 120 cmd.push_back(c_source); in Check() 156 cmd.push_back(kResizefsPath); in Resize() 157 cmd.push_back("-f"); in Resize() 158 cmd.push_back(source); in Resize() 159 cmd.push_back(StringPrintf("%lu", numSectors)); in Resize() 167 cmd.push_back(kMkfsPath); in Format() 168 cmd.push_back("-J"); in Format() 170 cmd.push_back("-a"); in Format() [all …]
|
D | F2fs.cpp | 45 cmd.push_back(kFsckPath); in Check() 46 cmd.push_back("-a"); in Check() 47 cmd.push_back(source); in Check() 74 cmd.push_back(kMkfsPath); in Format() 75 cmd.push_back(source); in Format()
|
/system/keymaster/ |
D | soft_keymaster_context.cpp | 292 set->push_back(param); in UpgradeIntegerTag() 436 sw_enforced->push_back(entry); in SetAuthorizations() 441 sw_enforced->push_back(TAG_CREATION_DATETIME, java_time(time(NULL))); in SetAuthorizations() 442 sw_enforced->push_back(TAG_ORIGIN, origin); in SetAuthorizations() 443 sw_enforced->push_back(TAG_OS_VERSION, os_version); in SetAuthorizations() 444 sw_enforced->push_back(TAG_OS_PATCHLEVEL, os_patchlevel); in SetAuthorizations() 746 auth_set->push_back(TAG_OS_VERSION, os_version_); in AddSystemVersionToSet() 748 auth_set->push_back(TAG_OS_PATCHLEVEL, os_patchlevel_); in AddSystemVersionToSet() 906 hw_enforced->push_back(TAG_ALGORITHM, KM_ALGORITHM_RSA); in FakeKeyAuthorizations() 907 hw_enforced->push_back(TAG_DIGEST, KM_DIGEST_NONE); in FakeKeyAuthorizations() [all …]
|
D | rsa_keymaster0_key.cpp | 61 hw_enforced->push_back(TAG_ALGORITHM, KM_ALGORITHM_RSA); in GenerateKey() 62 hw_enforced->push_back(TAG_RSA_PUBLIC_EXPONENT, public_exponent); in GenerateKey() 63 hw_enforced->push_back(TAG_KEY_SIZE, key_size); in GenerateKey() 64 hw_enforced->push_back(TAG_ORIGIN, KM_ORIGIN_UNKNOWN); in GenerateKey() 92 hw_enforced->push_back(TAG_ALGORITHM, KM_ALGORITHM_RSA); in ImportKey() 93 hw_enforced->push_back(TAG_RSA_PUBLIC_EXPONENT, public_exponent); in ImportKey() 94 hw_enforced->push_back(TAG_KEY_SIZE, key_size); in ImportKey() 95 hw_enforced->push_back(TAG_ORIGIN, KM_ORIGIN_UNKNOWN); in ImportKey()
|
D | ec_keymaster0_key.cpp | 59 hw_enforced->push_back(TAG_ALGORITHM, KM_ALGORITHM_EC); in GenerateKey() 60 hw_enforced->push_back(TAG_KEY_SIZE, key_size); in GenerateKey() 61 hw_enforced->push_back(TAG_EC_CURVE, ec_curve); in GenerateKey() 62 hw_enforced->push_back(TAG_ORIGIN, KM_ORIGIN_UNKNOWN); in GenerateKey() 92 hw_enforced->push_back(TAG_ALGORITHM, KM_ALGORITHM_EC); in ImportKey() 93 hw_enforced->push_back(TAG_KEY_SIZE, key_size); in ImportKey() 94 hw_enforced->push_back(TAG_ORIGIN, KM_ORIGIN_UNKNOWN); in ImportKey()
|
D | android_keymaster_test.cpp | 267 crypto_params.push_back(hw_enforced()); in TEST_P() 268 non_crypto_params.push_back(sw_enforced()); in TEST_P() 272 crypto_params.push_back(sw_enforced()); in TEST_P() 309 crypto_params.push_back(hw_enforced()); in TEST_P() 310 non_crypto_params.push_back(sw_enforced()); in TEST_P() 314 crypto_params.push_back(sw_enforced()); in TEST_P() 478 begin_params.push_back(TAG_DIGEST, KM_DIGEST_NONE); in TEST_P() 479 begin_params.push_back(TAG_PADDING, KM_PAD_RSA_PKCS1_1_5_SIGN); in TEST_P() 520 begin_params.push_back(TAG_DIGEST, KM_DIGEST_NONE); in TEST_P() 521 begin_params.push_back(TAG_PADDING, KM_PAD_RSA_PKCS1_1_5_SIGN); in TEST_P() [all …]
|
D | key_blob_test.cpp | 45 hw_enforced_.push_back(TAG_ALGORITHM, KM_ALGORITHM_RSA); in KeyBlobTest() 46 hw_enforced_.push_back(TAG_KEY_SIZE, 256); in KeyBlobTest() 47 hw_enforced_.push_back(TAG_BLOB_USAGE_REQUIREMENTS, KM_BLOB_STANDALONE); in KeyBlobTest() 48 hw_enforced_.push_back(TAG_MIN_SECONDS_BETWEEN_OPS, 10); in KeyBlobTest() 49 hw_enforced_.push_back(TAG_ALL_USERS); in KeyBlobTest() 50 hw_enforced_.push_back(TAG_NO_AUTH_REQUIRED); in KeyBlobTest() 51 hw_enforced_.push_back(TAG_ORIGIN, KM_ORIGIN_GENERATED); in KeyBlobTest() 53 sw_enforced_.push_back(TAG_ACTIVE_DATETIME, 10); in KeyBlobTest() 54 sw_enforced_.push_back(TAG_ORIGINATION_EXPIRE_DATETIME, 100); in KeyBlobTest() 55 sw_enforced_.push_back(TAG_CREATION_DATETIME, 10); in KeyBlobTest() [all …]
|
/system/connectivity/apmanager/ |
D | device.cc | 57 interface_list_.push_back(new_interface); in RegisterInterface() 123 band_cap.frequencies.push_back(frequency_value); in ParseWiphyCapability() 132 band_capability_.push_back(band_cap); in ParseWiphyCapability() 191 ht_capability.push_back("LDPC"); in GetHTCapability() 205 ht_capability.push_back("HT40+"); in GetHTCapability() 207 ht_capability.push_back("HT40-"); in GetHTCapability() 216 ht_capability.push_back("SMPS-STATIC"); in GetHTCapability() 218 ht_capability.push_back("SMPS-DYNAMIC"); in GetHTCapability() 223 ht_capability.push_back("GF"); in GetHTCapability() 228 ht_capability.push_back("SHORT-GI-20"); in GetHTCapability() [all …]
|
D | main.cc | 78 logger_command_line.push_back(const_cast<char*>(kLoggerCommand)); in SetupLogging() 79 logger_command_line.push_back(const_cast<char*>("--priority")); in SetupLogging() 80 logger_command_line.push_back(const_cast<char*>("daemon.err")); in SetupLogging() 81 logger_command_line.push_back(const_cast<char*>("--tag")); in SetupLogging() 82 logger_command_line.push_back(const_cast<char*>(daemon_name)); in SetupLogging() 83 logger_command_line.push_back(nullptr); in SetupLogging()
|
/system/tools/aidl/ |
D | generate_java_binder.cpp | 62 this->interfaces.push_back(interfaceType); in StubClass() 69 this->elements.push_back(descriptor); in StubClass() 83 this->elements.push_back(ctor); in StubClass() 95 this->elements.push_back(asBinder); in StubClass() 106 onTransact->parameters.push_back(this->transact_code); in StubClass() 107 onTransact->parameters.push_back(this->transact_data); in StubClass() 108 onTransact->parameters.push_back(this->transact_reply); in StubClass() 109 onTransact->parameters.push_back(this->transact_flags); in StubClass() 111 onTransact->exceptions.push_back(types->RemoteExceptionType()); in StubClass() 112 this->elements.push_back(onTransact); in StubClass() [all …]
|
/system/vold/ |
D | Disk.cpp | 140 list.push_back(vol->getId()); in listVolumes() 174 mVolumes.push_back(vol); in createPublicVolume() 204 mVolumes.push_back(vol); in createPrivateVolume() 292 cmd.push_back(kSgdiskPath); in readPartitions() 293 cmd.push_back("--android-dump"); in readPartitions() 294 cmd.push_back(mDevPath); in readPartitions() 387 cmd.push_back(kSgdiskPath); in partitionPublic() 388 cmd.push_back("--zap-all"); in partitionPublic() 389 cmd.push_back(mDevPath); in partitionPublic() 446 cmd.push_back(kSgdiskPath); in partitionMixed() [all …]
|
D | MoveTask.cpp | 74 cmd.push_back(StringPrintf("%s/%s", path.c_str(), ent->d_name)); in pushBackContents() 88 cmd.push_back(kRmPath); in execRm() 89 cmd.push_back("-f"); /* force: remove without confirmation, no error if it doesn't exist */ in execRm() 90 cmd.push_back("-R"); /* recursive: remove directory contents */ in execRm() 126 cmd.push_back(kCpPath); in execCp() 127 cmd.push_back("-p"); /* preserve timestamps, ownership, and permissions */ in execCp() 128 cmd.push_back("-R"); /* recurse into subdirectories (DEST must be a directory) */ in execCp() 129 cmd.push_back("-P"); /* Do not follow symlinks [default] */ in execCp() 130 cmd.push_back("-d"); /* don't dereference symlinks */ in execCp() 135 cmd.push_back(toPath.c_str()); in execCp()
|
/system/extras/tests/memtest/ |
D | bandwidth.cpp | 165 cpu_list->push_back(i); in getAvailCpus() 424 bench_objs.push_back(new CopyLdrdStrdBenchmark()); in copy_bandwidth() 425 bench_objs.push_back(new CopyLdmiaStmiaBenchmark()); in copy_bandwidth() 426 bench_objs.push_back(new CopyVld1Vst1Benchmark()); in copy_bandwidth() 427 bench_objs.push_back(new CopyVldrVstrBenchmark()); in copy_bandwidth() 428 bench_objs.push_back(new CopyVldmiaVstmiaBenchmark()); in copy_bandwidth() 429 bench_objs.push_back(new MemcpyBenchmark()); in copy_bandwidth() 439 bench_objs.push_back(new WriteStrdBenchmark()); in write_bandwidth() 440 bench_objs.push_back(new WriteStmiaBenchmark()); in write_bandwidth() 441 bench_objs.push_back(new WriteVst1Benchmark()); in write_bandwidth() [all …]
|
/system/update_engine/common/ |
D | test_utils.cc | 298 out_paths->push_back(""); in CreateExtImageAtPath() 299 out_paths->push_back("/hi"); in CreateExtImageAtPath() 300 out_paths->push_back("/boguslink"); in CreateExtImageAtPath() 301 out_paths->push_back("/hello"); in CreateExtImageAtPath() 302 out_paths->push_back("/some_dir"); in CreateExtImageAtPath() 303 out_paths->push_back("/some_dir/empty_dir"); in CreateExtImageAtPath() 304 out_paths->push_back("/some_dir/mnt"); in CreateExtImageAtPath() 305 out_paths->push_back("/some_dir/test"); in CreateExtImageAtPath() 306 out_paths->push_back("/some_dir/fifo"); in CreateExtImageAtPath() 307 out_paths->push_back("/cdev"); in CreateExtImageAtPath() [all …]
|
/system/bt/vendor_libs/test_vendor_lib/src/ |
D | event_packet.cc | 50 payload.push_back(num_hci_command_packets); in CreateCommandCompleteEvent() 51 payload.push_back(command_opcode); in CreateCommandCompleteEvent() 52 payload.push_back(command_opcode >> 8); in CreateCommandCompleteEvent() 67 payload.push_back(status); in CreateCommandStatusEvent() 68 payload.push_back(num_hci_command_packets); in CreateCommandStatusEvent() 69 payload.push_back(command_opcode); in CreateCommandStatusEvent() 70 payload.push_back(command_opcode >> 8); in CreateCommandStatusEvent() 91 payload.push_back(num_responses); in CreateInquiryResultEvent() 118 payload.push_back(1); // Each extended inquiry result contains one device. in CreateExtendedInquiryResultEvent()
|
/system/keymaster/include/keymaster/ |
D | authorization_set.h | 354 bool push_back(keymaster_key_param_t elem); 368 bool push_back(const keymaster_key_param_set_t& set); 374 bool push_back(TypedEnumTag<Type, Tag, KeymasterEnum> tag, KeymasterEnum val) { in push_back() function 375 return push_back(Authorization(tag, val)); in push_back() 381 template <keymaster_tag_t Tag> bool push_back(TypedTag<KM_BOOL, Tag> tag) { in push_back() function 382 return push_back(Authorization(tag)); in push_back() 390 bool push_back(TypedTag<KM_BYTES, Tag> tag, const void* bytes, size_t bytes_len) { in push_back() function 391 return push_back(keymaster_param_blob(tag, static_cast<const uint8_t*>(bytes), bytes_len)); in push_back() 399 bool push_back(TypedTag<KM_BYTES, Tag> tag, const keymaster_blob_t& blob) { in push_back() function 400 return push_back(tag, blob.data, blob.data_length); in push_back() [all …]
|