Home | History | Annotate | Download | only in objfile

Lines Matching full:nil

21 	if err != nil {
22 return nil, err
24 return &elfFile{f}, nil
29 if err != nil {
30 return nil, err
62 return syms, nil
66 if sect := f.elf.Section(".text"); sect != nil {
69 if sect := f.elf.Section(".gosymtab"); sect != nil {
70 if symtab, err = sect.Data(); err != nil {
71 return 0, nil, nil, err
74 if sect := f.elf.Section(".gopclntab"); sect != nil {
75 if pclntab, err = sect.Data(); err != nil {
76 return 0, nil, nil, err
79 return textStart, symtab, pclntab, nil
84 if sect == nil {
85 return 0, nil, fmt.Errorf("text section not found")