HomeSort by relevance Sort by last modified time
    Searched full:buildid (Results 1 - 25 of 241) sorted by null

1 2 3 4 5 6 7 8 910

  /prebuilts/go/darwin-x86/src/cmd/go/
note_test.go 17 const buildID = "TestNoteReading-Build-ID"
18 tg.run("build", "-ldflags", "-buildid="+buildID, "-o", tg.path("hello.exe"), tg.path("hello.go"))
23 if id != buildID {
24 t.Fatalf("buildID in hello binary = %q, want %q", id, buildID)
40 tg.run("build", "-ldflags", "-buildid="+buildID+" -linkmode=external", "-o", tg.path("hello.exe"), tg.path("hello.go"))
45 if id != buildID {
46 t.Fatalf("buildID in hello binary = %q, want %q (linkmode=external)", id, buildID
    [all...]
  /prebuilts/go/linux-x86/src/cmd/go/
note_test.go 17 const buildID = "TestNoteReading-Build-ID"
18 tg.run("build", "-ldflags", "-buildid="+buildID, "-o", tg.path("hello.exe"), tg.path("hello.go"))
23 if id != buildID {
24 t.Fatalf("buildID in hello binary = %q, want %q", id, buildID)
40 tg.run("build", "-ldflags", "-buildid="+buildID+" -linkmode=external", "-o", tg.path("hello.exe"), tg.path("hello.go"))
45 if id != buildID {
46 t.Fatalf("buildID in hello binary = %q, want %q (linkmode=external)", id, buildID
    [all...]
  /system/extras/simpleperf/
build_id.h 26 class BuildId {
32 BuildId() {
37 BuildId(const void* data, size_t len) : BuildId() {
42 explicit BuildId(const std::string& s) : BuildId() {
71 bool operator==(const BuildId& build_id) const {
75 bool operator!=(const BuildId& build_id) const {
80 static BuildId empty_build_id;
read_elf.h 24 bool GetBuildIdFromNoteFile(const std::string& filename, BuildId* build_id);
25 bool GetBuildIdFromElfFile(const std::string& filename, BuildId* build_id);
27 uint32_t file_size, BuildId* build_id);
44 bool ParseSymbolsFromElfFile(const std::string& filename, const BuildId& expected_build_id,
47 uint32_t file_size, const BuildId& expected_build_id,
51 const BuildId& expected_build_id,
read_elf_test.cpp 25 BuildId build_id;
27 ASSERT_EQ(build_id, BuildId(elf_file_build_id));
31 BuildId build_id;
60 ASSERT_TRUE(ParseSymbolsFromElfFile(GetTestData(ELF_FILE), BuildId(),
66 BuildId build_id("01010101010101010101");
dso.h 58 static void SetBuildIds(const std::vector<std::pair<std::string, BuildId>>& build_ids);
79 static BuildId GetExpectedBuildId(const std::string& filename);
88 static std::unordered_map<std::string, BuildId> build_id_map_;
environment_fake.cpp 24 bool GetKernelBuildId(BuildId*) {
dso.cpp 57 std::unordered_map<std::string, BuildId> Dso::build_id_map_;
113 void Dso::SetBuildIds(const std::vector<std::pair<std::string, BuildId>>& build_ids) {
114 std::unordered_map<std::string, BuildId> map;
122 BuildId Dso::GetExpectedBuildId(const std::string& filename) {
127 return BuildId();
183 BuildId build_id = GetExpectedBuildId(GetAccessiblePath());
237 BuildId build_id = GetExpectedBuildId(DEFAULT_KERNEL_FILENAME_FOR_BUILD_ID);
243 BuildId real_build_id;
285 BuildId build_id = GetExpectedBuildId(path_);
298 BuildId build_id = GetExpectedBuildId(GetAccessiblePath())
    [all...]
environment.h 64 bool GetKernelBuildId(BuildId* build_id);
65 bool GetModuleBuildId(const std::string& module_name, BuildId* build_id);
  /prebuilts/go/darwin-x86/src/cmd/pprof/internal/symbolizer/
symbolizer.go 118 f, err := locateFile(obj, m.File, m.BuildID, m.Start)
125 if fid := f.BuildID(); m.BuildID != "" && fid != "" && fid != m.BuildID {
139 // named $BUILDID/$BASENAME and $BASENAME (if build id is available).
140 func locateFile(obj plugin.ObjTool, file, buildID string, start uint64) (plugin.ObjFile, error) {
148 // Collect names to search: {buildid/basename, basename}
150 if baseName := filepath.Base(file); buildID != "" {
151 fileNames = []string{filepath.Join(buildID, baseName), baseName}
159 fileBuildID := f.BuildID()
    [all...]
  /prebuilts/go/linux-x86/src/cmd/pprof/internal/symbolizer/
symbolizer.go 118 f, err := locateFile(obj, m.File, m.BuildID, m.Start)
125 if fid := f.BuildID(); m.BuildID != "" && fid != "" && fid != m.BuildID {
139 // named $BUILDID/$BASENAME and $BASENAME (if build id is available).
140 func locateFile(obj plugin.ObjTool, file, buildID string, start uint64) (plugin.ObjFile, error) {
148 // Collect names to search: {buildid/basename, basename}
150 if baseName := filepath.Base(file); buildID != "" {
151 fileNames = []string{filepath.Join(buildID, baseName), baseName}
159 fileBuildID := f.BuildID()
    [all...]
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/builderTemplate/
buildAll.bat 11 REM default setting for buildID
12 set buildID=
41 if x%1==x-buildID set buildID=-DbuildId=%2 && shift && shift && goto processcmdlineargs
48 %vm% -cp ..\org.eclipse.releng.basebuilder\startup.jar org.eclipse.core.launcher.Main -application org.eclipse.ant.core.antRunner -f buildAll.xml %target% %bootclasspath% -DmapVersionTag=%mapVersionTag% -DbuildType=%buildType% %buildID% %ftpUser% %ftpPassword%
52 echo "usage: buildAll [-mapVersionTag HEAD|<branch name>] [-vm <url to java executable to run build>] [-bc <bootclasspath>] [-target <buildall target to execute>] [-buildID <buildID, e.g. 2.1.2>] [-ftp <userid> <password>] I|M"
build.xml 29 <property name="buildId" value="${buildType}${date}" />
32 <property name="buildLabel" value="${buildType}-${buildId}-${timestamp}" />
42 buildId=${buildId}
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/builderTemplate/tests/
build.properties 13 buildId=build
14 buildLabel=${buildType}.${buildId}
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.build.tools/scripts_bugzilla/
updateBugState.xml 35 "Fixed in $buildAlias ($buildID).", otherwise uses buildID or just "Fixed in latest build."
37 buildID - optional label, the task adds a comment to Bugzilla of the form
38 "Fixed in $buildAlias ($buildID).", otherwise uses buildAlias or just "Fixed in latest build."
63 move to FIXED using buildID S200606051102 and buildAlias 2.2.0RC7. Comment will be:
68 resolution="FIXED" buildID="S200606051102" buildAlias="2.2.0RC7"
83 (to avoid duplicate updates); move to FIXED using buildID I200606051102. Comment will be:
88 resolution="FIXED" buildID="S200606051102"
  /platform_testing/tests/functional/otatests/src/com/android/functional/otatests/
VersionInfo.java 14 private VersionInfo(String buildId, String bootVersion, String radioVersion) {
15 mBuildId = buildId;
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.build.tools/src/org/eclipse/releng/
BuildProperties.java 40 private String buildid; field in class:BuildProperties
93 buildid = buildProperties.get("buildId").toString();
96 "Value for buildId not found in monitor.properties");
197 * Returns the buildid.
201 return buildid;
213 * Sets the buildid.
214 * @param buildid The buildid to set
216 public void setBuildid(String buildid) {
    [all...]
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.build.tools/properties/
feedPublish.eclipse.properties 26 buildID=I20060922-0010
28 buildURL=http://download.eclipse.org/eclipse/downloads/drops/%%buildID%%
33 # optional build type; one of: N, I, M, S, R; if not provided, will be pulled from buildID above
37 buildDetailURL=http://www.eclipse.org/downloads/download.php?r=1&file=/eclipse/downloads/drops/%%buildID%%/
43 releaseNotesURL=http://download.eclipse.org/eclipse/downloads/drops/%%buildID%%/buildNotes.php
60 JUnitTestURL=http://download.eclipse.org/eclipse/downloads/drops/%%buildID%%/testResults.php
61 performanceTestURL=http://download.eclipse.org/eclipse/downloads/drops/%%buildID%%/performance/performance.php
feedPublish.emf.properties 26 buildID=S200611091546
28 buildURL=http://www.eclipse.org/emf/downloads/?showAll=1&hlbuild=%%buildID%%#%%buildID%%
33 # optional build type; one of: N, I, M, S, R; if not provided, will be pulled from buildID above
37 buildDetailURL=http://www.eclipse.org/downloads/download.php?r=1&file=/tools/emf/downloads/drops/%%version%%/%%buildID%%/
60 JUnitTestURL=http://www.eclipse.org/downloads/download.php?r=1&file=/tools/emf/downloads/drops/%%version%%/%%buildID%%/testResults.php
feedPublish.uml2.properties 26 buildID=I200611141702
28 buildURL=http://www.eclipse.org/modeling/mdt/downloads/?project=uml2-uml&showAll=1&hlbuild=%%buildID%%#%%buildID%%
33 # optional build type; one of: N, I, M, S, R; if not provided, will be pulled from buildID above
37 buildDetailURL=http://www.eclipse.org/downloads/download.php?r=1&file=/modeling/mdt/uml2-uml/downloads/drops/%%version%%/%%buildID%%/
60 JUnitTestURL=http://www.eclipse.org/downloads/download.php?r=1&file=/modeling/mdt/uml2-uml/downloads/drops/%%version%%/%%buildID%%/testResults.php
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.build.tools/scripts_rss/
feedPublish.sh 30 buildID="S200609210005";
37 cmd=$cmd" -Dbranch=$branch -Dversion=$version -DbuildID=$buildID -DbuildAlias=$buildAlias -DbuildType="${buildID:0:1};
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.test.performance.ui/src/org/eclipse/test/performance/ui/
ScenarioData.java 60 * @param pointsOfInterest A list of buildId's to highlight on line graphs
107 String buildID = buildResults.getName();
108 int underscoreIndex = buildID.indexOf('_');
109 String label = (underscoreIndex != -1 && buildID.equals(current)) ? buildID.substring(0, underscoreIndex) : buildID;
110 if (buildID.startsWith(defaultBaselinePrefix)) {
111 label = defaultBaselinePrefix+buildID.charAt(defaultBaselinePrefix.length())+buildID.substring(underscoreIndex);
116 if (buildID.equals(current))
    [all...]
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/builderTemplate/tests/testConfigs/testingConfigTemplate/
customTest.xml 8 <copy file="${buildDirectory}/${buildLabel}/VE-runtime-${buildId}.zip" todir="${executionDir}" />
testing.properties 18 testFramework=VE-Automated-Tests-${buildId}.zip
21 runtime=VE-SDK-${buildId}.zip
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.build.tools/scripts/
testing.properties.template 22 testFramework=eclipse-Automated-Tests-${buildId}.zip
25 runtime=eclipse-SDK-${buildId}-win32.zip

Completed in 736 milliseconds

1 2 3 4 5 6 7 8 910