/external/nist-sip/java/gov/nist/javax/sip/header/ |
HeaderFactoryExt.java | 31 import javax.sip.address.Address; 60 * @param address -- 61 * address for the header. 64 public ReferredByHeader createReferredByHeader(Address address); 91 * @param address - 92 * Address 97 public PAssertedIdentityHeader createPAssertedIdentityHeader(Address address) [all...] |
/external/webkit/Source/WebKit2/Platform/mac/ |
SharedMemoryMac.cpp | 82 static inline void* toPointer(mach_vm_address_t address) 84 return reinterpret_cast<void*>(static_cast<uintptr_t>(address)); 96 mach_vm_address_t address; local 97 kern_return_t kr = mach_vm_allocate(mach_task_self(), &address, round_page(size), VM_FLAGS_ANYWHERE); 104 kr = mach_make_memory_entry_64(mach_task_self(), &memoryObjectSize, address, VM_PROT_DEFAULT, &port, MACH_PORT_NULL); 107 mach_vm_deallocate(mach_task_self(), address, round_page(size)); local 115 sharedMemory->m_data = toPointer(address); 172 mach_vm_address_t address = toVMAddress(m_data); local 184 kern_return_t kr = mach_make_memory_entry_64(mach_task_self(), &size, address, machProtection(protection), &port, MACH_PORT_NULL);
|
/libcore/luni/src/main/java/java/net/ |
Inet6Address.java | 29 * An IPv6 address. See {@link InetAddress}. 55 * Constructs an {@code InetAddress} representing the {@code address} and 58 * @param address 59 * the network address. 61 * the name associated with the address. 72 * Constructs an IPv6 address according to the given {@code host}, {@code 76 * the host name associated with the address. 78 * the network address. 81 * @return the Inet6Address instance representing the IP address. 83 * if the address is null or has an invalid length 118 Inet6Address address = Inet6Address.getByAddress(host, addr, 0); local [all...] |
/external/openfst/src/include/fst/ |
flags.h | 63 : address(addr), 69 T *address; member in struct:FlagDescription 96 bool SetFlag(const string &val, bool *address) const { 98 *address = true; 101 *address = false; 108 bool SetFlag(const string &val, string *address) const { 109 *address = val; 112 bool SetFlag(const string &val, int32 *address) const { 114 *address = strtol(val.c_str(), &p, 0); 117 bool SetFlag(const string &val, int64 *address) const [all...] |
/external/qemu/android/ |
async-socket-connector.c | 46 /* TCP address for the connection. */ 47 SockAddress address; member in struct:AsyncSocketConnector 77 /* Gets socket's address string. */ 81 return sock_address_to_string(&connector->address); 117 sock_address_done(&connector->address); 270 &connector->address, 291 async_socket_connector_new(const SockAddress* address, 301 sock_address_to_string(address)); 314 /* Copy socket address. */ 316 connector->address = *address [all...] |
/external/qemu/memcheck/ |
memcheck_proc_management.h | 221 * matching given address range. 229 target_ulong address, 232 return allocmap_find(&proc->alloc_map, address, block_size); 236 * matching given address. 243 procdesc_find_malloc(ProcDesc* proc, target_ulong address) 245 return procdesc_find_malloc_for_range(proc, address, 1); 249 * the given process, matching given address. 256 procdesc_pull_malloc(ProcDesc* proc, target_ulong address, MallocDescEx* pulled) 258 return allocmap_pull(&proc->alloc_map, address, pulled); 273 /* Finds mmapping entry for the given address in the given process [all...] |
/frameworks/base/services/java/com/android/server/display/ |
DisplayDeviceInfo.java | 148 * Display address, or null if none. 151 public String address; field in class:DisplayDeviceInfo 179 && Objects.equal(address, other.address); 199 address = other.address; 211 + ", address " + address
|
/packages/apps/Bluetooth/jni/ |
com_android_bluetooth_hid.cpp | 241 static jboolean connectHidNative(JNIEnv *env, jobject object, jbyteArray address) { 247 addr = env->GetByteArrayElements(address, NULL); 249 ALOGE("Bluetooth device address null"); 258 env->ReleaseByteArrayElements(address, addr, 0); 263 static jboolean disconnectHidNative(JNIEnv *env, jobject object, jbyteArray address) { 269 addr = env->GetByteArrayElements(address, NULL); 271 ALOGE("Bluetooth device address null"); 280 env->ReleaseByteArrayElements(address, addr, 0); 285 static jboolean getProtocolModeNative(JNIEnv *env, jobject object, jbyteArray address) { 292 addr = env->GetByteArrayElements(address, NULL) [all...] |
/external/quake/quake/src/QW/client/ |
net_udp.c | 157 // Returns true if we can't bind the address locally--in other words, 177 // It is not a local address 238 struct sockaddr_in address; local 246 address.sin_family = AF_INET; 249 address.sin_addr.s_addr = inet_addr(com_argv[i+1]); 250 Con_Printf("Binding to IP Interface Address of %s\n", 251 inet_ntoa(address.sin_addr)); 253 address.sin_addr.s_addr = INADDR_ANY; 255 address.sin_port = 0; 257 address.sin_port = htons((short)port) 267 struct sockaddr_in address; local [all...] |
net_wins.c | 133 // Returns true if we can't bind the address locally--in other words, 153 // It is not a local address 234 struct sockaddr_in address; local 244 address.sin_family = AF_INET; 247 address.sin_addr.s_addr = inet_addr(com_argv[i+1]); 248 Con_Printf("Binding to IP Interface Address of %s\n", 249 inet_ntoa(address.sin_addr)); 251 address.sin_addr.s_addr = INADDR_ANY; 254 address.sin_port = 0; 256 address.sin_port = htons((short)port) 266 struct sockaddr_in address; local [all...] |
/external/smack/src/org/xbill/DNS/ |
SimpleResolver.java | 29 private InetSocketAddress address; field in class:SimpleResolver 57 address = new InetSocketAddress(addr, DEFAULT_PORT); 72 * Gets the destination address associated with this SimpleResolver. 73 * Messages sent using this SimpleResolver will be sent to this address. 74 * @return The destination address associated with this SimpleResolver. 78 return address; 89 address = new InetSocketAddress(address.getAddress(), port); 93 * Sets the address of the server to communicate with. 94 * @param addr The address of the DNS serve [all...] |
/libcore/luni/src/main/java/java/nio/charset/ |
CharsetEncoderICU.java | 68 long address = 0; local 70 address = NativeConverter.openConverter(icuCanonicalName); 71 float averageBytesPerChar = NativeConverter.getAveBytesPerChar(address); 72 float maxBytesPerChar = NativeConverter.getMaxBytesPerChar(address); 73 byte[] replacement = makeReplacement(icuCanonicalName, address); 74 CharsetEncoderICU result = new CharsetEncoderICU(cs, averageBytesPerChar, maxBytesPerChar, replacement, address); 75 address = 0; // CharsetEncoderICU has taken ownership; its finalizer will do the free. 78 if (address != 0) { 79 NativeConverter.closeConverter(address); 84 private static byte[] makeReplacement(String icuCanonicalName, long address) { [all...] |
/packages/apps/Bluetooth/src/com/android/bluetooth/ |
Utils.java | 43 public static String getAddressStringFromByte(byte[] address) { 44 if (address == null || address.length !=6) { 49 address[0], address[1], address[2], address[3], address[4], 50 address[5]); 57 public static byte[] getBytesFromAddress(String address) { [all...] |
/external/chromium/net/disk_cache/ |
block_files.cc | 223 MappedFile* BlockFiles::GetFile(Addr address) { 226 DCHECK(address.is_block_file() || !address.is_initialized()); 227 if (!address.is_initialized()) 230 int file_index = address.FileNumber(); 269 Addr address(block_type, block_count, header->this_file, index); 270 block_address->set_value(address.value()); 271 Trace("CreateBlock 0x%x", address.value()); 275 void BlockFiles::DeleteBlock(Addr address, bool deep) { 277 if (!address.is_initialized() || address.is_separate_file() [all...] |
/external/v8/tools/ |
grokdump.py | 138 ("address", ctypes.c_uint64), 422 def IsValidAddress(self, address): 423 return self.FindLocation(address) is not None 425 def ReadU8(self, address): 426 location = self.FindLocation(address) 429 def ReadU32(self, address): 430 location = self.FindLocation(address) 433 def ReadU64(self, address): 434 location = self.FindLocation(address) 437 def ReadUIntPtr(self, address) [all...] |
/bionic/libc/kernel/common/asm-generic/ |
tlb.h | 36 #define tlb_remove_tlb_entry(tlb, ptep, address) do { tlb->need_flush = 1; __tlb_remove_tlb_entry(tlb, ptep, address); } while (0)
|
/development/ndk/platforms/android-3/include/asm-generic/ |
tlb.h | 30 #define tlb_remove_tlb_entry(tlb, ptep, address) do { tlb->need_flush = 1; __tlb_remove_tlb_entry(tlb, ptep, address); } while (0)
|
/external/apache-http/src/org/apache/http/conn/params/ |
ConnRouteParamBean.java | 58 public void setLocalAddress (final InetAddress address) { 59 params.setParameter(ConnRoutePNames.LOCAL_ADDRESS, address);
|
/external/chromium/net/base/ |
address_list.h | 22 // Constructs an empty address list. 25 // Constructs an address list for a single IP literal. If 27 // canonicalized IP address. 28 AddressList(const IPAddressNumber& address, int port, bool canonicalize_name); 58 // Sets the address to match |src|, and have each sockaddr's port be |port|. 63 // Gets the canonical name for the address. 70 // Clears all data from this address list. This leaves the list in the same 77 // Constructs an address list for a single socket address. 78 // |address| the sockaddr to copy [all...] |
/external/chromium/net/socket/ |
tcp_server_socket_win.h | 30 virtual int Listen(const net::IPEndPoint& address, int backlog); 31 virtual int GetLocalAddress(IPEndPoint* address) const;
|
/external/chromium/net/tools/flip_server/ |
acceptor_thread.cc | 117 struct sockaddr address; local 118 socklen_t socklen = sizeof(address); 119 int fd = accept(acceptor_->listen_fd_, &address, &socklen); 129 HandleConnection(fd, (struct sockaddr_in *)&address); 133 struct sockaddr address; local 134 socklen_t socklen = sizeof(address); 135 int fd = accept(acceptor_->listen_fd_, &address, &socklen); 145 HandleConnection(fd, (struct sockaddr_in *)&address);
|
/external/nist-sip/java/gov/nist/javax/sip/parser/ |
AddressParametersParser.java | 29 import gov.nist.javax.sip.address.*; 33 * Address parameters parser. 55 AddressImpl addr = addressParser.address(false);
|
/external/nist-sip/java/gov/nist/javax/sip/parser/ims/ |
AddressHeaderParser.java | 32 import gov.nist.javax.sip.address.AddressImpl; 61 AddressImpl addr = addressParser.address(true);
|
/external/opencv/otherlibs/highgui/ |
cvcap.cpp | 90 CV_IMPL CvCapture* cvCreateSocketCapture( const char *address, const char* port, int width, int height ) 92 return cvCreateCameraCapture_Socket(address, port, width, height);
|
/external/qemu/elff/ |
elff_api.cc | 54 uint64_t address,
63 if (reinterpret_cast<ElfFile*>(handle)->get_pc_address_info(address,
|