search for: framedata

Displaying 3 results from an estimated 3 matches for "framedata".

Did you mean: frame_data
2003 Jul 08
0
Patch to fix some segfaults in Asterisk
...le: /usr/cvsroot/asterisk/frame.c,v retrieving revision 1.3 diff -u -r1.3 frame.c --- frame.c 28 Jun 2003 16:40:02 -0000 1.3 +++ frame.c 8 Jul 2003 10:48:15 -0000 @@ -125,8 +125,10 @@ /* Make frame */ s->f.frametype = AST_FRAME_VOICE; s->f.subclass = s->format; - s->f.data = s->framedata + AST_FRIENDLY_OFFSET; - s->f.offset = AST_FRIENDLY_OFFSET; + /*s->f.data = s->framedata + AST_FRIENDLY_OFFSET;*/ + s->f.data = s->framedata; + /*s->f.offset = AST_FRIENDLY_OFFSET;*/ + s->f.offset = 0; s->f.datalen = s->size; s->f.samples = s->size * s->sampl...
2020 Nov 09
1
Fragmented DWARF
...ARFSection references data that are loaded by Object file. DWARFSection is assumed to be a monolithic piece of data. There is a code using these data assuming random access: StringRef LineData = OrigDwarf.getDWARFObj().getLineSection().Data; LineData.slice(*StmtList + 4, PrologueEnd) ... StringRef FrameData = OrigDwarf.getDWARFObj().getFrameSection().Data; FrameData.substr(EntryOffset, InitialLength + 4) ... InputSec = Dwarf.getDWARFObj().getLocSection(); InputSec.Data.substr(Offset, Length); ... DWARFDataExtractor RangesData(Context.getDWARFObj(), *RangeSection,                               isLittl...
2020 Nov 05
3
Fragmented DWARF
Hi James, On 05.11.2020 17:59, James Henderson wrote: > (Resending with history trimmed to avoid it getting stuck in moderator > queue). > > Hi Alexey, > > Just an update - I identified the cause of the "Generated debug info > is broken" error message when I tried to build things locally: the > `outStreamer` instance is initialised with the host Triple,