Searched defs:package (Results 1 - 25 of 35) sorted by relevance

12

/external/chromium_org/build/android/pylib/device/
H A Dintent.py15 flags=None, package=None):
20 activity: A string that, with |package|, can be used to specify the
28 package: A string that, with activity, can be used to specify the
41 self._package = package
46 self._component = '%s/%s' % (package, activity)
77 def package(self): member in class:Intent
/external/chromium_org/chrome/browser/local_discovery/
H A Dprivetv3_crypto_provider.cc28 virtual HandshakeState GetNextStep(int* step, std::string* package) OVERRIDE;
31 const std::string& package) OVERRIDE;
70 std::string* package) {
73 package->clear();
82 const std::string& package) {
86 (step == 0 && package.empty() && state == kHandshakeStateComplete);
68 GetNextStep( int* step, std::string* package) argument
80 SetStepResponse(int step, const std::string& state, const std::string& package) argument
/external/chromium_org/content/browser/download/
H A Dsave_item.cc18 SavePackage* package,
29 package_(package) {
30 DCHECK(package);
16 SaveItem(const GURL& url, const Referrer& referrer, SavePackage* package, SaveFileCreateInfo::SaveFileSource save_source) argument
H A Dsave_item.h30 SavePackage* package,
71 SavePackage* package() const { return package_; } function in class:content::SaveItem
H A Dsave_file_manager.cc160 SavePackage* package) {
161 DCHECK(package);
167 UnregisterStartingRequest(save_url, package->contents_id());
168 DCHECK_EQ(old_package, package);
338 SavePackage* package = LookupPackage(save_id); local
339 if (package)
340 package->UpdateSaveProgress(save_id, bytes_so_far, write_success);
349 SavePackage* package = LookupPackage(save_id); local
350 if (package)
351 package
159 RemoveSaveFile(int save_id, const GURL& save_url, SavePackage* package) argument
[all...]
/external/chromium_org/content/public/browser/
H A Ddevtools_protocol_constants_generator.py10 package = sys.argv[1] variable
32 namespace $package {
43 } // $package
61 #include "$package/browser/devtools/devtools_protocol_constants.h"
63 namespace $package {
81 } // $package
141 "package": package,
142 "PACKAGE": package.upper()
151 "package"
[all...]
/external/chromium_org/chrome/test/chromedriver/chrome/
H A Ddevice_manager.cc34 Status Device::SetUp(const std::string& package, argument
44 Status status = adb_->CheckAppInstalled(serial_, package);
52 if (package.compare("org.chromium.content_shell_apk") == 0) {
58 } else if (package.compare("org.chromium.chrome.shell") == 0) {
64 } else if (package.find("chrome") != std::string::npos &&
65 package.find("webview") == std::string::npos) {
71 status = adb_->SetDebugApp(serial_, package);
77 status = adb_->ClearAppData(serial_, package);
84 return Status(kUnknownError, "known package " + package
122 ForwardDevtoolsPort(const std::string& package, const std::string& process, std::string& device_socket, int port) argument
[all...]
H A Dadb_impl.cc138 const std::string& device_serial, const std::string& package) {
140 std::string command = "pm path " + package;
144 if (response.find("package") == std::string::npos)
145 return Status(kUnknownError, package + " is not installed on device " +
151 const std::string& device_serial, const std::string& package) {
153 std::string command = "pm clear " + package;
158 return Status(kUnknownError, "Failed to clear data for " + package +
164 const std::string& device_serial, const std::string& package) {
167 device_serial, "am set-debug-app --persistent " + package, &response);
171 const std::string& device_serial, const std::string& package,
137 CheckAppInstalled( const std::string& device_serial, const std::string& package) argument
150 ClearAppData( const std::string& device_serial, const std::string& package) argument
163 SetDebugApp( const std::string& device_serial, const std::string& package) argument
170 Launch( const std::string& device_serial, const std::string& package, const std::string& activity) argument
187 ForceStop( const std::string& device_serial, const std::string& package) argument
[all...]
/external/nanopb-c/generator/proto/
H A Dplugin_pb2.py12 package='google.protobuf.compiler', variable
H A Dnanopb_pb2.py12 package='', variable
/external/chromium_org/components/component_updater/
H A Dupdate_response.cc105 // Parses the <package> tag.
106 bool ParsePackageTag(xmlNode* package, argument
110 p.name = GetAttribute(package, "name");
112 *error = "Missing name for package.";
116 p.namediff = GetAttribute(package, "namediff");
118 // package_fingerprint is optional. It identifies the package, preferably
119 // with a modified sha256 hash of the package in hex format.
120 p.fingerprint = GetAttribute(package, "fp");
122 p.hash_sha256 = GetAttribute(package, "hash_sha256");
124 if (base::StringToInt(GetAttribute(package, "siz
178 std::vector<xmlNode*> package = GetChildren(packages[0], "package"); local
[all...]
/external/chromium_org/net/http/
H A Dhttp_auth_sspi_win.cc23 const SEC_WCHAR* package) {
51 const SEC_WCHAR* package,
73 const_cast<SEC_WCHAR*>(package), // pszPackage
82 return MapAcquireCredentialsStatusToError(status, package);
85 int AcquireDefaultCredentials(SSPILibrary* library, const SEC_WCHAR* package, argument
95 const_cast<SEC_WCHAR*>(package), // pszPackage
104 return MapAcquireCredentialsStatusToError(status, package);
409 const std::wstring& package,
415 const_cast<wchar_t *>(package.c_str()), &pkg_info);
22 MapAcquireCredentialsStatusToError(SECURITY_STATUS status, const SEC_WCHAR* package) argument
50 AcquireExplicitCredentials(SSPILibrary* library, const SEC_WCHAR* package, const base::string16& domain, const base::string16& user, const base::string16& password, CredHandle* cred) argument
408 DetermineMaxTokenLength(SSPILibrary* library, const std::wstring& package, ULONG* max_token_length) argument
/external/chromium_org/third_party/cython/src/Cython/Utility/
H A DImportExport.c51 /* try package relative import first */
169 PyObject *package = PyImport_ImportModule(parent_package_name); local
170 if (unlikely(!package))
172 path = PyObject_GetAttrString(package, "__path__");
173 Py_DECREF(package);
/external/chromium_org/third_party/protobuf/
H A Ddescriptor_pb2.py11 package='google.protobuf', variable
220 name='package', full_name='google.protobuf.FileDescriptorProto.package', index=1,
/external/chromium_org/tools/telemetry/telemetry/core/backends/chrome/
H A Dandroid_browser_backend.py28 def __init__(self, activity, cmdline_file, package, pseudo_exec_name,
32 self.package = package
56 return '/data/data/%s/' % self.package
69 def __init__(self, package):
73 package=package,
97 'dumpsys package %s' % self.package)
110 def __init__(self, package)
363 def package(self): member in class:AndroidBrowserBackend
[all...]
/external/clang/utils/TableGen/
H A DClangSACheckersEmitter.cpp26 /// \brief True if it is specified hidden or a parent package is specified
31 // Not declared as hidden, check the parent package if it is hidden.
83 static void addPackageToCheckerGroup(const Record *package, const Record *group, argument
85 llvm::DenseSet<const Record *> &checkers = recordGroupMap[package]->Checkers;
90 llvm::DenseSet<const Record *> &subGroups = recordGroupMap[package]->SubGroups;
103 // Invert the mapping of checkers to package/group into a one to many
132 Record *package = nullptr; local
135 package = DI->getDef();
136 if (!isCheckerNamed(R) && !package)
138 "' is neither named, nor in a package!");
[all...]
/external/chromium_org/chrome/browser/devtools/device/adb/
H A Dadb_device_info_query.cc29 const char* package; member in struct:__anon3532::BrowserDescriptor
77 const BrowserDescriptor* FindBrowserDescriptor(const std::string& package) { argument
80 if (kBrowserDescriptors[i].package == package)
102 std::string package = fields[8]; local
103 pid_to_package[pid] = package;
104 package_to_pid[package] = pid;
165 const std::string& package) {
166 if (package.empty()) {
173 const BrowserDescriptor* descriptor = FindBrowserDescriptor(package);
164 GetDisplayName(const std::string& socket, const std::string& package) argument
309 std::string package; local
[all...]
/external/chromium_org/device/test/
H A Dusb_test_gadget_impl.cc90 bool ReadLocalPackage(std::string* package);
291 std::string package; local
292 if (!ReadLocalPackage(&package)) {
297 mime_header + package + mime_footer);
386 bool UsbTestGadgetImpl::ReadLocalPackage(std::string* package) { argument
391 return ReadFile(file_path, package);
/external/deqp/executor/tools/
H A DxeCommandLineExecutor.cpp239 xe::TestGroup* package = root.createGroup(packageName.c_str(), ""); local
241 readCaseList(package, item.getPath());
/external/checkpolicy/test/
H A Ddismod.c717 package use the package reader, otherwise use the normal
725 sepol_module_package_t *package; local
726 if (sepol_module_package_create(&package)) {
730 package->policy = (sepol_policydb_t *) policy;
731 package->file_contexts = NULL;
733 sepol_module_package_read(package,
735 free(package->file_contexts);
/external/chromium_org/third_party/cython/src/Cython/Build/
H A DDependencies.py365 def package(filename): function
368 return package(dir) + (os.path.basename(dir),)
375 return '.'.join(package(filename) + (module,))
453 def package(self, filename): member in class:DependencyTree
454 return package(filename)
468 package_path = list(self.package(filename))
624 pkg = deps.package(file)
/external/e2fsprogs/debian/
H A Drules5 # invoked with the package root as the current directory.
31 # find the version for the main package, from changelog file
51 package ?= e2fsprogs macro
87 # docdir ?= ${maindir}/usr/share/doc/${package}
91 UDEB_NAME ?= $(package)-udeb_$(MAIN_VERSION)_$(DEB_HOST_ARCH).udeb
557 # debug package stuff
/external/bison/
H A Dmaint.mk106 tag-package = $(shell echo "$(PACKAGE)" | tr '[:lower:]' '[:upper:]')
108 this-vc-tag = $(tag-package)-$(tag-this-version)
436 # via inclusion of a package-specific header, if cfg.mk specified one.
446 # This can possibly be via a package-specific header, if given by cfg.mk.
1087 # Allow the package to add exceptions via a hook in cfg.mk;
1322 --package=$(PACKAGE) \
/external/chromium_org/chrome/browser/devtools/device/
H A Ddevtools_android_bridge.cc143 // Parse version, append to package name if available,
156 std::string package; local
157 if (dict->GetString("Android-Package", &package)) {
159 AdbDeviceInfoQuery::GetDisplayName(browser->socket(), package));
/external/protobuf/src/google/protobuf/
H A Ddescriptor.pb.h310 // optional string package = 2;
314 inline const ::std::string& package() const;
2540 // optional string package = 2;
2550 inline const ::std::string& FileDescriptorProto::package() const { function in class:google::protobuf::FileDescriptorProto

Completed in 849 milliseconds

12