summaryrefslogtreecommitdiff
path: root/src/node_buffer.cc
Commit message (Expand)AuthorAgeFilesLines
* MakeCallback: Consistent symbol usageisaacs2012-04-171-2/+2
* buffer: fix signedness compiler warningsBen Noordhuis2012-03-301-19/+18
* Avoiding unnecessary ToString() callsssuda2012-03-231-1/+1
* core: use proper #include directivesBen Noordhuis2012-03-101-3/+3
* buffer: throw from constructor if length > kMaxLengthBen Noordhuis2012-03-091-6/+7
* Remove unused variables.Ben Noordhuis2012-02-231-2/+1
* buffer: support decoding of URL-safe base64Ben Noordhuis2012-02-211-2/+4
* Merge remote-tracking branch 'ry/v0.6'isaacs2012-02-061-44/+29
|\
| * buffers: fix intermittent out of bounds errorBen Noordhuis2012-02-021-1/+1
| * buffers: honor length argument in base64 decoderBen Noordhuis2012-02-021-43/+28
* | Revert support for isolates.Ben Noordhuis2012-02-061-35/+33
* | Remove platform files, and use uv platform apiIgor Zinkovsky2011-12-151-4/+0
* | Move node_buffer.cc globals to structRyan Dahl2011-12-071-33/+35
|/
* Remove stray NODE_MODULE() semi-colons.Ben Noordhuis2011-11-091-1/+1
* buffer: use NO_NULL_TERMINATION flagkoichik2011-10-191-11/+6
* Merge remote branch 'origin/v0.4'Ryan Dahl2011-09-071-2/+15
|\
| * buffer: write() should always set _charsWritten.koichik2011-09-031-0/+11
| * buffer: Avoid overrun with 'binary' encoding.koichik2011-09-021-2/+4
| * Include "platform.h", not <platform.h> - conflicts with system headersBen Noordhuis2011-07-261-1/+1
* | Fix build - due to V8 API changeRyan Dahl2011-08-261-1/+1
* | Remove platform_win32_winsockBert Belder2011-08-021-1/+0
* | Include "platform.h", not <platform.h> - conflicts with system headersBen Noordhuis2011-07-261-1/+1
* | Merge branch 'v0.4'Ryan Dahl2011-07-141-2/+16
|\ \ | |/
| * Fix Buffer drops last null character in UTF-8koichik2011-07-141-2/+16
* | Merge branch 'v0.4'Ryan Dahl2011-05-201-0/+5
|\ \ | |/
| * makeFastBuffer should not segfault but rather throw on non-bufferRyan Dahl2011-05-191-0/+5
* | Add Buffer::fill method to do memsetKonstantin Käfer2011-05-061-0/+22
* | Merge branch 'v0.4'Ryan Dahl2011-04-141-1/+5
|\ \ | |/
| * Fix Buffer.write() with UCS-2 should not be write partial charkoichik2011-04-131-1/+5
* | Merge branch 'v0.4'Ryan Dahl2011-03-221-0/+1
|\ \ | |/
| * Guard failed buffer constructions.Ryan Dahl2011-03-221-0/+1
* | Merge branch 'v0.4'Ryan Dahl2011-03-141-0/+21
|\ \ | |/
| * Update copyright headersRyan Dahl2011-03-141-0/+21
* | Closes GH-695 Add 'hex' encoding to Bufferisaacs2011-02-191-0/+2
* | Revert "buffer.toString() shouldn't include null values"Ryan Dahl2011-02-151-7/+3
* | buffer.toString() shouldn't include null valuesRyan Dahl2011-02-141-3/+7
|/
* UCS-2 supportKonstantin Käfer2011-02-071-0/+46
* Clean up the way windows headers are includedBert Belder2011-01-181-5/+9
* Fix whitespace errors introduced by porting effortsBert Belder2010-12-201-2/+2
* Fix header files for node_buffer.ccBert Belder2010-12-201-1/+5
* Check buffer length using string lengthSean Braithwaite2010-12-031-2/+2
* Allocations with new[] must be freed with delete[].Tom Hughes2010-11-241-1/+1
* Revert "Merge branch 'writev'"Ryan Dahl2010-11-201-5/+3
* Inline Buffer::Length and Buffer::DataRyan Dahl2010-11-201-14/+0
* Small clean upsRyan Dahl2010-11-181-2/+2
* Support encodingRyan Dahl2010-11-181-3/+5
* Add C++ API for constructing fast buffer from stringRyan Dahl2010-10-261-0/+16
* Provide a C++ Buffer constructor for external storage.Stéphan Kochen2010-10-221-23/+69
* Generalize Buffer::Copy to work with all unsigned byte external data.Stéphan Kochen2010-10-221-4/+6
* Simplify things by using `*ArrayData` everywhere.Stéphan Kochen2010-10-221-33/+8