search for: linereader

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

Did you mean: finereader
2011 Apr 16
3
calling dovecot exported auth from Java
As far as I have been able to figure out, dovecot auth always works over a Unix domain socket. I believe it is not currently possible to operate dovecot auth over an Internet domain (TCP) socket. Am I correct? I want to call dovecot's exported authentication from a Java application. Java doesn't natively know how to talk to a Unix domain socket, so there are inconveniences. There
2009 Aug 22
0
[LLVMdev] X86 Disassembler
...fcntl, open +#include <stdio.h> // for perror +#include <sys/types.h> // for read +#include <sys/uio.h> // for read +#include <unistd.h> // for read unistd etc won't work on windows. Please use the llvm/Support/ MemoryBuffer.h API for reading files. The LineReader is easier to implement with MemoryBuffer because you just scan for \n and \r in the memory range. +std::string stringFromMCInst_x86(const MCInst& insn, + const Target* target, + std::string& triple) { Please mark this s...
2009 Aug 19
3
[LLVMdev] X86 Disassembler
Bill, thanks for your comments. I'll respond to them individually. I've attached a new revision of the patch that addresses them. Patch built and tested against SVN 79487, with the additional attached fix that fixes an Intel table bug. Sean On 2009/08/18, at 0:57, Bill Wendling wrote: > 0. Watch out for tabs! Fixed. Thanks. > 1. Includes like this "#include