Lines Matching defs:Address
38 CHAR8 *qXferHack = "<library name=\"c:/work/edk2/Build/BeagleBoard/DEBUG_GCC48/ARM/BeagleBoardPkg/Sec/Sec/DEBUG/BeagleBoardSec.dll\"><segment address=\"0x80008360\"/></library>";
86 <library name="/a/a/c/d.dSYM"><segment address="0x10000000"/></library>
87 <library name="/a/m/e/e.pdb"><segment address="0x20000000"/></library>
88 <library name="/a/l/f/f.dll"><segment address="0x30000000"/></library>
99 " <library name=\"%s\"><segment address=\"%p\"/></library>\n" and it is
121 Transfer length bytes of input buffer, starting at Address, to memory.
124 @param *address the start address of the transferring/writing the memory
131 IN unsigned char *Address,
146 *Address++ = (UINT8)((c1 << 4) + c2);
154 Transfer Length bytes of memory starting at Address to an output buffer, OutBuffer. This function will finally send the buffer
158 @param *address pointer to the start address of the transferring/reading the memory
164 IN unsigned char *Address
175 Char = mHexToStr[*Address >> 4];
181 Char = mHexToStr[*Address & 0x0f];
187 Address++;
457 UINTN Address;
459 CHAR8 AddressBuffer[MAX_ADDR_SIZE]; // the buffer that will hold the address in hex chars
460 CHAR8 *AddrBufPtr; // pointer to the address buffer
484 Address = AsciiStrHexToUintn (AddressBuffer);
487 TransferFromMemToOutBufAndSend (Length, (unsigned char *)Address);
502 UINTN Address;
505 CHAR8 AddressBuffer[MAX_ADDR_SIZE]; // the buffer that will hold the Address in hex chars
507 CHAR8 *AddrBufPtr; // pointer to the Address buffer
529 Address = AsciiStrHexToUintn (AddressBuffer);
534 //Check if Address is not too long.
554 TransferFromInBufToMem (Length, (unsigned char *)Address, InBufPtr);
558 Parses breakpoint packet data and captures Breakpoint type, Address and length.
564 @param Address Breakpoint address
575 OUT UINTN *Address,
596 //Parse Address information
602 //Check if Address is not too long.
607 *Address = AsciiStrHexToUintn (AddressBuffer);