OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:bundle_name
(Results
1 - 9
of
9
) sorted by null
/external/chromium_org/native_client_sdk/src/build_tools/sdk_tools/command/
uninstall.py
21
for
bundle_name
in valid_bundles:
22
logging.info('Removing %s' % (
bundle_name
,))
23
bundle_dir = os.path.join(install_dir,
bundle_name
)
29
local_manifest.RemoveBundle(
bundle_name
)
info.py
19
for
bundle_name
in valid_bundles:
20
bundle = manifest.GetBundle(
bundle_name
)
list.py
24
for
bundle_name
in local_only_bundles:
25
local_bundle = local_manifest.GetBundle(
bundle_name
)
update.py
39
def BundleDirectoryExists(self,
bundle_name
):
57
def BundleDirectoryExists(self,
bundle_name
):
58
bundle_path = os.path.join(self.install_dir,
bundle_name
)
236
for
bundle_name
in requested_bundles:
237
logging.info('Trying to update %s' % (
bundle_name
,))
239
bundle_name
, force)
254
for
bundle_name
in valid_bundles:
255
bundle = copy.deepcopy(local_manifest.GetBundle(
bundle_name
))
279
bundle_name
, force):
280
bundle = remote_manifest.GetBundle(
bundle_name
)
[
all
...]
/external/chromium_org/native_client_sdk/src/build_tools/
update_nacl_manifest.py
617
def AddVersionToUpdate(self,
bundle_name
, version, channel, archives):
621
bundle_name
: The name of the pepper bundle, e.g. 'pepper_18'
625
self.versions_to_update.append((
bundle_name
, version, channel, archives))
627
def AddLockedBundle(self,
bundle_name
):
635
bundle_name
: The name of the locked bundle.
637
self.locked_bundles.append(
bundle_name
)
657
for
bundle_name
in self.locked_bundles:
658
online_bundle = self.online_manifest.GetBundle(
bundle_name
)
664
raise UnknownLockedBundleException(msg %
bundle_name
)
679
for
bundle_name
, version, channel, archives in self.versions_to_update
[
all
...]
manifest_util.py
592
for
bundle_name
in self_bundle_names:
593
if self.GetBundle(
bundle_name
) != other.GetBundle(
bundle_name
):
/external/chromium_org/native_client_sdk/src/build_tools/tests/
sdktools_commands_test.py
27
def _AddDummyBundle(self, manifest,
bundle_name
):
28
bundle = manifest_util.Bundle(
bundle_name
)
31
bundle.description =
bundle_name
34
bundle.repath =
bundle_name
35
archive = self._MakeDummyArchive(
bundle_name
)
41
return manifest.GetBundle(
bundle_name
)
43
def _MakeDummyArchive(self,
bundle_name
, tarname=None, filename='dummy.txt'):
44
tarname = (tarname or
bundle_name
) + '.tar.bz2'
49
stream.write('Dummy stuff for %s' %
bundle_name
)
55
tarstream.add(dummy_path, os.path.join(
bundle_name
, filename)
[
all
...]
update_nacl_manifest_test.py
114
bundle_name
=None):
118
if not
bundle_name
:
119
bundle_name
= 'pepper_' + str(major_version)
121
bundle = manifest_util.Bundle(
bundle_name
)
280
bundle_name
=CANARY_BUNDLE_NAME)
288
bundle_name
=BIONIC_CANARY_BUNDLE_NAME)
320
bundle_name
=None):
321
if not
bundle_name
:
322
bundle_name
= bundle.name
324
uploaded_manifest_bundle = self.uploaded_manifest.GetBundle(
bundle_name
)
[
all
...]
/external/chromium_org/chrome/browser/
memory_details_mac.cc
162
base::FilePath
bundle_name
=
local
164
if (!
bundle_name
.empty()) {
166
bundle_name
));
Completed in 191 milliseconds