search for: addaddress

Displaying 4 results from an estimated 4 matches for "addaddress".

Did you mean: add_address
2009 Jun 23
1
[extensions.conf] Any idea why not working as it should?
...charge of the application exten => _[1-49],n,AGI(send_call_notification.phpcli|${CALLERID(name)}|${CALLERID(num)}|${APPLICATION_NUM}) exten => _[1-49],n,Hangup() ===== /usr/local/share/asterisk/agi-bin/send_call_notification.phpcli switch($argv[3]) { //Softare 1 case 1: $mail->AddAddress(User1); break; //Softwares 2,3 case 2: case 3: $mail->AddAddress(User2); $mail->AddAddress(User1); break; //Personal msg //BUG: Why does User2 also receive this e-mail? case 4: $mail->AddAddress(User1); break; //Any other subject...
2011 Jan 18
2
[LLVMdev] Dwarf info for byref register variables
...W_OP_breg0 - DW_OP_reg0) = RegOriginal + (0x70 - 0x50) = RegOriginal + 0x20 = RegOriginal + DW_OP_not Since we know that RegOriginal >= 32, the opcode that gets generated is one that has a value >= 0x40, which is DW_OP_lit16. There is a very similar snippet in the addAddress() function. It uses the DW_OP_regx opcode to encode the register number: // ... if (Location.isReg()) { if (Reg < 32) { addUInt(Block, 0, dwarf::DW_FORM_data1, dwarf::DW_OP_reg0 + Reg); } else { addUInt(Block, 0, dwarf::DW_FORM_data1, dwarf::DW_OP_regx); addUInt(Bl...
2010 Aug 02
3
FAX Options
Hi, Is FAXing with Asterisk a practical option ? Or is it better just to use a plain fax connected to an FXS and just switch with Asterisk. I specifically wanted to know if there was any experience using just the fax scanner to send faxes and receive them via asterisk and the to e-mail. My idea was to take my old fax connect it to an FXS port and send faxes with the fax machine (using the fax
2014 Aug 27
6
[LLVMdev] Minimizing -gmlt
...;DwarfDebug::updateSubprogramScopeDIE(DwarfCompileUnit &SPCU, attachLowHighPC(SPCU, *SPDie, FunctionBeginSym, FunctionEndSym); - const TargetRegisterInfo *RI = Asm->TM.getSubtargetImpl()->getRegisterInfo(); - MachineLocation Location(RI->getFrameRegister(*Asm->MF)); - SPCU.addAddress(*SPDie, dwarf::DW_AT_frame_base, Location); + if (SPCU.getCUNode().getEmissionKind() != DIBuilder::LineTablesOnly) { + const TargetRegisterInfo *RI = + Asm->TM.getSubtargetImpl()->getRegisterInfo(); + MachineLocation Location(RI->getFrameRegister(*Asm->MF)); + SPCU.addA...