Searched defs:cc (Results 1 - 11 of 11) sorted by relevance

/art/jdwpspy/
H A DMain.cpp31 01234567: 00 11 22 33 44 55 66 77 88 99 aa bb cc dd ee ff 0123456789abcdef\n
136 int cc = run("localhost", connectPort, listenPort); local
138 return (cc != 0);
H A DNet.cpp353 int cc, on = 1; local
355 cc = setsockopt(fd, IPPROTO_TCP, TCP_NODELAY, &on, sizeof(on));
356 assert(cc == 0);
357 return cc;
530 int cc; local
539 cc = write(pDst->sock, buf, length);
540 if (cc != (int) length) {
545 cc, pSrc->label[0], pDst->label[0]);*/
591 int cc; local
608 cc
[all...]
/art/runtime/jdwp/
H A Djdwp_adb.cc421 int cc = TEMP_FAILURE_RETRY(write(clientSock, input_buffer_, kMagicHandshakeLen)); local
422 if (cc != kMagicHandshakeLen) {
423 PLOG(ERROR) << "Failed writing handshake bytes (" << cc << " of " << kMagicHandshakeLen << ")";
H A Djdwp_main.cc387 ssize_t cc = netStateBase->WritePacket(pReply); local
388 if (cc != (ssize_t) expandBufGetLength(pReply)) {
H A Djdwp_socket.cc199 int cc = setsockopt(fd, IPPROTO_TCP, TCP_NODELAY, &on, sizeof(on)); local
200 CHECK_EQ(cc, 0);
201 return cc;
279 int cc = gethostbyname_r(options->host.c_str(), &he, auxBuf, sizeof(auxBuf), &pEntry, &error); local
280 if (cc != 0) {
478 int cc = TEMP_FAILURE_RETRY(write(clientSock, input_buffer_, kMagicHandshakeLen)); local
479 if (cc != kMagicHandshakeLen) {
480 PLOG(ERROR) << "Failed writing handshake bytes (" << cc << " of " << kMagicHandshakeLen << ")";
/art/compiler/dex/quick/mips/
H A Dutility_mips.cc663 LIR* MipsMir2Lir::OpCondBranch(ConditionCode cc, LIR* target) { argument
/art/compiler/dex/quick/x86/
H A Dassemble_x86.cc1011 void X86Mir2Lir::EmitJcc(const X86EncodingMap* entry, int rel, uint8_t cc) { argument
1012 DCHECK_LT(cc, 16);
1015 code_buffer_.push_back(0x70 | cc);
1020 code_buffer_.push_back(0x80 | cc);
H A Dutility_x86.cc108 LIR* X86Mir2Lir::OpCondBranch(ConditionCode cc, LIR* target) { argument
110 X86ConditionEncoding(cc));
H A Dint_x86.cc91 X86ConditionCode cc = X86ConditionEncoding(cond); local
93 cc);
106 X86ConditionCode cc = X86ConditionEncoding(cond); local
107 LIR* branch = NewLIR2(kX86Jcc8, 0 /* lir operand for Jcc offset */ , cc);
/art/compiler/dex/quick/arm/
H A Dutility_arm.cc213 LIR* ArmMir2Lir::OpCondBranch(ConditionCode cc, LIR* target) { argument
215 ArmConditionEncoding(cc));
/art/compiler/dex/portable/
H A Dmir_to_gbc.cc296 ::llvm::Value* MirConverter::ConvertCompare(ConditionCode cc, argument
300 switch (cc) {
307 default: LOG(FATAL) << "Unexpected cc value " << cc;
313 ConditionCode cc, RegLocation rl_src1, RegLocation rl_src2) {
319 ::llvm::Value* cond_value = ConvertCompare(cc, src1, src2);
328 MIR* mir, ConditionCode cc, RegLocation rl_src1) {
339 ::llvm::Value* cond_value = ConvertCompare(cc, src1, src2);
312 ConvertCompareAndBranch(BasicBlock* bb, MIR* mir, ConditionCode cc, RegLocation rl_src1, RegLocation rl_src2) argument
327 ConvertCompareZeroAndBranch(BasicBlock* bb, MIR* mir, ConditionCode cc, RegLocation rl_src1) argument

Completed in 149 milliseconds