summaryrefslogtreecommitdiff
path: root/src/node_buffer.cc
AgeCommit message (Expand)AuthorFilesLines
2012-04-17MakeCallback: Consistent symbol usageisaacs1-2/+2
2012-03-30buffer: fix signedness compiler warningsBen Noordhuis1-19/+18
2012-03-23Avoiding unnecessary ToString() callsssuda1-1/+1
2012-03-10core: use proper #include directivesBen Noordhuis1-3/+3
2012-03-09buffer: throw from constructor if length > kMaxLengthBen Noordhuis1-6/+7
2012-02-23Remove unused variables.Ben Noordhuis1-2/+1
2012-02-21buffer: support decoding of URL-safe base64Ben Noordhuis1-2/+4
2012-02-06Merge remote-tracking branch 'ry/v0.6'isaacs1-44/+29
2012-02-06Revert support for isolates.Ben Noordhuis1-35/+33
2012-02-02buffers: fix intermittent out of bounds errorBen Noordhuis1-1/+1
2012-02-02buffers: honor length argument in base64 decoderBen Noordhuis1-43/+28
2011-12-15Remove platform files, and use uv platform apiIgor Zinkovsky1-4/+0
2011-12-07Move node_buffer.cc globals to structRyan Dahl1-33/+35
2011-11-09Remove stray NODE_MODULE() semi-colons.Ben Noordhuis1-1/+1
2011-10-19buffer: use NO_NULL_TERMINATION flagkoichik1-11/+6
2011-09-07Merge remote branch 'origin/v0.4'Ryan Dahl1-2/+15
2011-09-03buffer: write() should always set _charsWritten.koichik1-0/+11
2011-09-02buffer: Avoid overrun with 'binary' encoding.koichik1-2/+4
2011-08-26Fix build - due to V8 API changeRyan Dahl1-1/+1
2011-08-02Remove platform_win32_winsockBert Belder1-1/+0
2011-07-26Include "platform.h", not <platform.h> - conflicts with system headersBen Noordhuis1-1/+1
2011-07-26Include "platform.h", not <platform.h> - conflicts with system headersBen Noordhuis1-1/+1
2011-07-14Merge branch 'v0.4'Ryan Dahl1-2/+16
2011-07-14Fix Buffer drops last null character in UTF-8koichik1-2/+16
2011-05-20Merge branch 'v0.4'Ryan Dahl1-0/+5
2011-05-19makeFastBuffer should not segfault but rather throw on non-bufferRyan Dahl1-0/+5
2011-05-06Add Buffer::fill method to do memsetKonstantin Käfer1-0/+22
2011-04-14Merge branch 'v0.4'Ryan Dahl1-1/+5
2011-04-13Fix Buffer.write() with UCS-2 should not be write partial charkoichik1-1/+5
2011-03-22Merge branch 'v0.4'Ryan Dahl1-0/+1
2011-03-22Guard failed buffer constructions.Ryan Dahl1-0/+1
2011-03-14Merge branch 'v0.4'Ryan Dahl1-0/+21
2011-03-14Update copyright headersRyan Dahl1-0/+21
2011-02-19Closes GH-695 Add 'hex' encoding to Bufferisaacs1-0/+2
2011-02-15Revert "buffer.toString() shouldn't include null values"Ryan Dahl1-7/+3
2011-02-14buffer.toString() shouldn't include null valuesRyan Dahl1-3/+7
2011-02-07UCS-2 supportKonstantin Käfer1-0/+46
2011-01-18Clean up the way windows headers are includedBert Belder1-5/+9
2010-12-20Fix whitespace errors introduced by porting effortsBert Belder1-2/+2
2010-12-20Fix header files for node_buffer.ccBert Belder1-1/+5
2010-12-03Check buffer length using string lengthSean Braithwaite1-2/+2
2010-11-24Allocations with new[] must be freed with delete[].Tom Hughes1-1/+1
2010-11-20Revert "Merge branch 'writev'"Ryan Dahl1-5/+3
2010-11-20Inline Buffer::Length and Buffer::DataRyan Dahl1-14/+0
2010-11-18Small clean upsRyan Dahl1-2/+2
2010-11-18Support encodingRyan Dahl1-3/+5
2010-10-26Add C++ API for constructing fast buffer from stringRyan Dahl1-0/+16
2010-10-22Provide a C++ Buffer constructor for external storage.Stéphan Kochen1-23/+69
2010-10-22Generalize Buffer::Copy to work with all unsigned byte external data.Stéphan Kochen1-4/+6
2010-10-22Simplify things by using `*ArrayData` everywhere.Stéphan Kochen1-33/+8