| /OK3568_Linux_fs/yocto/poky/bitbake/lib/toaster/toastergui/ |
| H A D | views.py | 430 def builddashboard( request, build_id ): argument 432 if Build.objects.filter( pk=build_id ).count( ) == 0 : 434 build = Build.objects.get( pk = build_id ); 435 layerVersionId = Layer_Version.objects.filter( build = build_id ); 437 tgts = Target.objects.filter( build_id = build_id ).order_by( 'target' ); 502 packages = Package.objects.filter( build_id = build_id ) 507 logmessages = list(LogMessage.objects.filter( build = build_id )) 538 def task( request, build_id, task_id ): argument 560 variables = Variable.objects.filter(build=build_id) 572 'build' : Build.objects.filter( pk = build_id )[ 0 ], [all …]
|
| /OK3568_Linux_fs/kernel/tools/perf/util/ |
| H A D | genelf.c | 82 char build_id[20]; member 111 size_t sz = sizeof(note->build_id); in gen_build_id() 118 sret = read(fd, note->build_id, sz); in gen_build_id() 123 memset(note->build_id, 0, sz); in gen_build_id() 134 if (sizeof(note->build_id) < SHA_DIGEST_LENGTH) in gen_build_id() 137 SHA1(code, csize, (unsigned char *)note->build_id); in gen_build_id() 147 if (sizeof(note->build_id) < 16) in gen_build_id() 153 MD5_Final((unsigned char *)note->build_id, &context); in gen_build_id() 480 bnote.desc.descsz = sizeof(bnote.build_id); in jit_write_elf()
|
| H A D | build-id.h | 11 struct build_id { struct 22 void build_id__init(struct build_id *bid, const u8 *data, size_t size); argument 23 int build_id__sprintf(const struct build_id *build_id, char *bf);
|
| H A D | build-id.c | 95 .build_id = perf_event__process_build_id, 99 int build_id__sprintf(const struct build_id *build_id, char *bf) in build_id__sprintf() argument 102 const u8 *raw = build_id->data; in build_id__sprintf() 107 for (i = 0; i < build_id->size; ++i) { in build_id__sprintf() 119 struct build_id bid; in sysfs__sprintf_build_id() 136 struct build_id bid; in filename__sprintf_build_id() 301 static int write_buildid(const char *name, size_t name_len, struct build_id *bid, in write_buildid() 775 static int build_id_cache__add_b(const struct build_id *bid, in build_id_cache__add_b() 909 void build_id__init(struct build_id *bid, const u8 *data, size_t size) in build_id__init()
|
| H A D | symbol-minimal.c | 34 static int read_build_id(void *note_data, size_t note_len, struct build_id *bid, in read_build_id() 89 int filename__read_build_id(const char *filename, struct build_id *bid) in filename__read_build_id() 225 int sysfs__read_build_id(const char *filename, struct build_id *bid) in sysfs__read_build_id() 344 struct build_id bid; in dso__load_sym()
|
| H A D | symbol.h | 26 struct build_id; 148 int filename__read_build_id(const char *filename, struct build_id *id); 149 int sysfs__read_build_id(const char *filename, struct build_id *bid);
|
| H A D | dso.h | 179 struct build_id bid; 263 void dso__set_build_id(struct dso *dso, struct build_id *bid); 264 bool dso__build_id_equal(const struct dso *dso, struct build_id *bid);
|
| H A D | symbol-elf.c | 564 int filename__read_build_id(const char *filename, struct build_id *bid) in filename__read_build_id() 579 if (!abfd->build_id || abfd->build_id->size > size) in filename__read_build_id() 582 memcpy(bid->data, abfd->build_id->data, abfd->build_id->size); in filename__read_build_id() 583 memset(bid->data + abfd->build_id->size, 0, size - abfd->build_id->size); in filename__read_build_id() 584 err = bid->size = abfd->build_id->size; in filename__read_build_id() 593 int filename__read_build_id(const char *filename, struct build_id *bid) in filename__read_build_id() 625 int sysfs__read_build_id(const char *filename, struct build_id *bid) in sysfs__read_build_id() 863 u8 build_id[BUILD_ID_SIZE]; in symsrc__init() local 864 struct build_id bid; in symsrc__init() 867 size = elf_read_build_id(elf, build_id, BUILD_ID_SIZE); in symsrc__init() [all …]
|
| H A D | tool.h | 67 event_op2 build_id, member
|
| /OK3568_Linux_fs/kernel/tools/testing/selftests/bpf/prog_tests/ |
| H A D | stacktrace_build_id.c | 67 char build_id[64]; in test_stacktrace_build_id() local 77 sprintf(build_id + 2 * j, "%02x", in test_stacktrace_build_id() 78 id_offs[i].build_id[j] & 0xff); in test_stacktrace_build_id() 79 if (strstr(buf, build_id) != NULL) in test_stacktrace_build_id()
|
| H A D | stacktrace_build_id_nmi.c | 110 char build_id[64]; in test_stacktrace_build_id_nmi() local 120 sprintf(build_id + 2 * j, "%02x", in test_stacktrace_build_id_nmi() 121 id_offs[i].build_id[j] & 0xff); in test_stacktrace_build_id_nmi() 122 if (strstr(buf, build_id) != NULL) in test_stacktrace_build_id_nmi()
|
| /OK3568_Linux_fs/kernel/tools/perf/ |
| H A D | perf-archive.sh | 36 while read build_id ; do 37 linkname=$PERF_BUILDID_DIR.build-id/${build_id:0:2}/${build_id:2}
|
| H A D | builtin-buildid-cache.c | 177 struct build_id bid; in build_id_cache__add_file() 200 struct build_id bid; in build_id_cache__remove_file() 277 struct build_id bid; in dso__missing_buildid_cache() 303 struct build_id bid; in build_id_cache__update_file()
|
| /OK3568_Linux_fs/kernel/kernel/bpf/ |
| H A D | stackmap.c | 166 unsigned char *build_id, in stack_map_parse_build_id() argument 187 memcpy(build_id, in stack_map_parse_build_id() 191 memset(build_id + nhdr->n_descsz, 0, in stack_map_parse_build_id() 206 unsigned char *build_id) in stack_map_get_build_id_32() argument 221 !stack_map_parse_build_id(page_addr, build_id, in stack_map_get_build_id_32() 231 unsigned char *build_id) in stack_map_get_build_id_64() argument 246 !stack_map_parse_build_id(page_addr, build_id, in stack_map_get_build_id_64() 256 unsigned char *build_id) in stack_map_get_build_id() argument 284 ret = stack_map_get_build_id_32(page_addr, build_id); in stack_map_get_build_id() 286 ret = stack_map_get_build_id_64(page_addr, build_id); in stack_map_get_build_id() [all …]
|
| /OK3568_Linux_fs/kernel/tools/build/feature/ |
| H A D | test-libbfd-buildid.c | 7 return abfd && (!abfd->build_id || abfd->build_id->size > 0x506564726f); in main()
|
| /OK3568_Linux_fs/yocto/poky/bitbake/lib/toaster/orm/ |
| H A D | models.py | 225 build_id = self.get_last_build_id() 226 if (-1 == build_id): 229 return Build.objects.filter( id = build_id )[ 0 ].outcome 234 build_id = self.get_last_build_id() 235 if (-1 == build_id): 238 return Target.objects.filter(build = build_id)[0].target 243 build_id = self.get_last_build_id() 244 if (-1 == build_id): 247 return Build.objects.filter(id = build_id)[ 0 ].errors.count() 252 build_id = self.get_last_build_id() [all …]
|
| /OK3568_Linux_fs/kernel/drivers/hwmon/ |
| H A D | sch5627.c | 458 int err, build_code, build_id, hwmon_rev, val; in sch5627_probe() local 512 build_id = sch56xx_read_virtual_reg16(data->addr, in sch5627_probe() 514 if (build_id < 0) { in sch5627_probe() 515 err = build_id; in sch5627_probe() 553 build_code, build_id, hwmon_rev); in sch5627_probe() 569 (build_code << 24) | (build_id << 8) | hwmon_rev, in sch5627_probe()
|
| /OK3568_Linux_fs/kernel/kernel/ |
| H A D | crash_core.c | 396 char build_id[BUILD_ID_MAX * 2 + 1]; in add_build_id_vmcoreinfo() local 412 bin2hex(build_id, s, n_descsz); in add_build_id_vmcoreinfo() 413 build_id[2 * n_descsz] = '\0'; in add_build_id_vmcoreinfo() 414 VMCOREINFO_BUILD_ID(build_id); in add_build_id_vmcoreinfo()
|
| /OK3568_Linux_fs/yocto/poky/meta/recipes-devtools/binutils/binutils/ |
| H A D | 0018-CVE-2022-38128-2.patch | 321 unsigned char * build_id; 331 build_id = section->start + filelen + 1; 350 fd = debuginfod_find_debuginfo (client, build_id, build_id_len, filename); 353 /* Only free build_id if we allocated space for a hex string 357 - free (build_id); 358 + free (build_id);
|
| /OK3568_Linux_fs/kernel/drivers/soc/qcom/ |
| H A D | socinfo.c | 94 char build_id[SMEM_SOCINFO_BUILD_ID_LENGTH]; member 270 seq_printf(seq, "%s\n", socinfo->build_id); in qcom_show_build_id() 311 QCOM_OPEN(build_id, qcom_show_build_id); 451 DEBUGFS_ADD(info, build_id); in socinfo_debugfs_init()
|
| /OK3568_Linux_fs/kernel/tools/perf/scripts/python/ |
| H A D | export-to-postgresql.py | 1003 def dso_table(dso_id, machine_id, short_name, long_name, build_id, *x): argument 1006 build_id = toserverstr(build_id) 1009 n3 = len(build_id) 1011 value = struct.pack(fmt, 5, 8, dso_id, 8, machine_id, n1, short_name, n2, long_name, n3, build_id)
|
| /OK3568_Linux_fs/yocto/poky/bitbake/lib/toaster/tests/builds/ |
| H A D | test_core_image_min.py | 227 build_id=build['id'], is_image=1).values('id') 320 build_id = Build.objects.filter( 322 if (not build_id):
|
| /OK3568_Linux_fs/kernel/tools/lib/perf/include/perf/ |
| H A D | event.h | 212 __u8 build_id[24]; member 400 struct perf_record_header_build_id build_id; member
|
| /OK3568_Linux_fs/kernel/tools/perf/tests/ |
| H A D | pe-file-parsing.c | 27 struct build_id bid; in run_dir()
|
| H A D | sdt.c | 31 struct build_id bid; in build_id_cache__add_file()
|