Searched refs:ptr (Results 201 - 225 of 1793) sorted by relevance

1234567891011>>

/external/ppp/pppd/plugins/radius/
H A Davpair.c21 unsigned char *ptr,
160 unsigned char *ptr; local
170 ptr = auth->data;
176 attribute = *ptr++;
177 attrlen = *ptr++;
187 rc_extract_vendor_specific_attributes(attrlen, ptr, &vp);
188 ptr += attrlen;
195 for (x_ptr = ptr, x_len = attrlen ;
225 memcpy (pair->strvalue, (char *) ptr, (size_t) attrlen);
233 memcpy ((char *) &lvalue, (char *) ptr,
261 rc_extract_vendor_specific_attributes(int attrlen, unsigned char *ptr, VALUE_PAIR **vp) argument
477 char *ptr; local
697 unsigned char *ptr; local
[all...]
/external/webkit/Source/WebCore/platform/win/
H A DCOMPtr.h53 COMPtr(T* ptr) : m_ptr(ptr) { if (m_ptr) m_ptr->AddRef(); } argument
54 COMPtr(AdoptCOMTag, T* ptr) : m_ptr(ptr) { } argument
55 COMPtr(const COMPtr& o) : m_ptr(o.m_ptr) { if (T* ptr = m_ptr) ptr->AddRef(); }
57 COMPtr(QueryTag, IUnknown* ptr) : m_ptr(copyQueryInterfaceRef(ptr)) { } argument
58 template<typename U> COMPtr(QueryTag, const COMPtr<U>& ptr) : m_ptr(copyQueryInterfaceRef(ptr argument
88 query(IUnknown* ptr) argument
89 query(const COMPtr<U>& ptr) argument
117 T* ptr = m_ptr; local
130 copyQueryInterfaceRef(IUnknown* ptr) argument
140 copyRefTo(U** ptr) argument
150 adoptRef(T *ptr) argument
162 T* ptr = m_ptr; local
174 T* ptr = m_ptr; local
185 T* ptr = m_ptr; local
[all...]
/external/webkit/Source/JavaScriptGlue/
H A DJSValueWrapper.cpp63 JSValueWrapper* ptr = (JSValueWrapper*)data; local
64 delete ptr;
73 JSValueWrapper* ptr = (JSValueWrapper*)data; local
74 if (ptr)
77 JSObject* object = ptr->GetValue().toObject(exec);
108 JSValueWrapper* ptr = (JSValueWrapper*)data; local
109 if (ptr)
112 JSValue propValue = ptr->GetValue().toObject(exec)->get(exec, CFStringToIdentifier(propertyName, exec));
131 JSValueWrapper* ptr = (JSValueWrapper*)data; local
132 if (ptr)
147 JSValueWrapper* ptr = (JSValueWrapper*)data; local
187 JSValueWrapper* ptr = (JSValueWrapper*)data; local
[all...]
/external/e2fsprogs/ext2ed/
H A Ddir_com.c51 struct ext2_inode *ptr; local
53 ptr=&type_data.u.t_ext2_inode; /* type_data contains the inode */
55 info_ptr->inode_ptr=ptr;
60 info_ptr->global_block_num=ptr->i_block [0];
61 info_ptr->global_block_offset=ptr->i_block [0]*file_system_info.block_size;
66 info_ptr->blocks_count=(ptr->i_size+file_system_info.block_size-1)/file_system_info.block_size;
67 info_ptr->file_length=ptr->i_size;
219 char *ptr,full_dir_name [500],dir_name [500],temp [500],temp2 [500]; local
225 ptr=parse_word (command_line,dir_name);
227 if (*ptr
347 char *ptr,buffer [80]; local
486 char *ptr,buffer [80]; local
503 char *ptr,buffer [80]; local
549 char *ptr,buffer [80]; local
595 unsigned char *ptr,buffer [80],variable [80],value [80],temp [80]; local
[all...]
/external/openssl/crypto/bio/
H A Dbss_file.c209 bi->ptr=NULL;
219 if ((a->init) && (a->ptr != NULL))
222 UP_fclose (a->ptr);
224 fclose (a->ptr);
225 a->ptr=NULL;
240 ret=UP_fread(out,1,(int)outl,b->ptr);
242 ret=fread(out,1,(int)outl,(FILE *)b->ptr);
243 if(ret == 0 && (b->flags&BIO_FLAGS_UPLINK)?UP_ferror((FILE *)b->ptr):ferror((FILE *)b->ptr))
260 ret=UP_fwrite(in,(int)inl,1,b->ptr);
273 file_ctrl(BIO *b, int cmd, long num, void *ptr) argument
[all...]
/external/libppp/src/
H A Diplist.c64 char *ptr, *to; local
66 if ((ptr = strpbrk(range, ",-")) == NULL) {
72 if (!do_inet_aton(range, ptr, &list->cur.ip))
74 if (*ptr == ',') {
80 to = ptr+1;
81 if ((ptr = strpbrk(to, ",-")) == NULL)
82 ptr = to + strlen(to);
85 if (!do_inet_aton(to, ptr, &endip))
101 char *ptr, *to, *end; local
103 ptr
[all...]
/external/webkit/Source/JavaScriptCore/API/
H A DJSRetainPtr.h43 JSRetainPtr(T ptr) : m_ptr(ptr) { if (ptr) JSRetain(ptr); } argument
44 JSRetainPtr(AdoptTag, T ptr) : m_ptr(ptr) { } argument
100 if (T ptr = m_ptr) {
102 JSRelease(ptr);
108 T ptr = m_ptr; local
110 return ptr;
118 T ptr = m_ptr; local
130 T ptr = m_ptr; local
141 T ptr = m_ptr; local
150 T ptr = m_ptr; local
160 T ptr = m_ptr; local
[all...]
/external/webkit/Source/JavaScriptCore/wtf/
H A DPassOwnPtr.h83 PassOwnPtr(PtrType ptr) : m_ptr(ptr) { } argument
89 explicit PassOwnPtr(PtrType ptr) : m_ptr(ptr) { } argument
97 PtrType ptr = m_ptr; local
99 deleteOwnedPtr(ptr);
104 PtrType ptr = m_ptr; local
106 return ptr;
112 PtrType ptr = m_ptr; local
114 ASSERT(!ptr || m_pt
123 PtrType ptr = m_ptr; local
133 PtrType ptr = m_ptr; local
191 adoptPtr(T* ptr) argument
[all...]
/external/clang/test/CXX/dcl.decl/dcl.meaning/dcl.fct/
H A Dp6-0x.cpp25 typedef T *ptr; typedef in struct:wrap
33 using func_type_lvalue_ptr = wrap<>::ptr;
34 using func_type_lvalue_ptr = wrap<func_type_lvalue>::ptr;
35 using func_type_rvalue_ptr = wrap<func_type_rvalue>::ptr;
/external/clang/test/SemaCXX/
H A DPR10447.cpp20 test2::Bar *ptr; variable
/external/clang/test/SemaTemplate/
H A Dextern-templates.cpp56 void g_X1(X1<void*> x1, void *ptr) { argument
57 x1.g(ptr);
62 void g_X1_2(X1<const void *> x1, const void *ptr) { argument
63 x1.g(ptr);
/external/kernel-headers/original/linux/raid/
H A Dxor.h8 extern void xor_block(unsigned int count, unsigned int bytes, void **ptr);
/external/srec/srec/include/
H A Dsizes.h36 FOUR_BYTE_PTR(char*, ptr, dummy) tmp;
/external/webkit/Source/WebCore/platform/graphics/gpu/
H A DPODArena.h52 virtual void free(void* ptr) = 0;
68 virtual void free(void* ptr) { fastFree(ptr); } argument
89 void* ptr = allocateBase<T>(); local
90 if (ptr) {
92 new(ptr) T();
94 return static_cast<T*>(ptr);
100 void* ptr = allocateBase<T>(); local
101 if (ptr) {
103 new(ptr)
138 void* ptr = 0; local
[all...]
/external/webkit/Source/WebCore/svg/
H A DSVGAngle.cpp73 inline SVGAngle::SVGAngleType stringToAngleType(const UChar*& ptr, const UChar* end) argument
76 if (ptr == end)
79 const UChar firstChar = *ptr;
82 ++ptr;
83 if (ptr == end)
86 const UChar secondChar = *ptr;
89 ++ptr;
90 if (ptr == end)
93 const UChar thirdChar = *ptr;
100 ++ptr;
138 const UChar* ptr = value.characters(); local
[all...]
/external/grub/stage2/
H A Dcmdline.c64 char *ptr; local
69 ptr = command;
70 while (*ptr && *ptr != ' ' && *ptr != '\t' && *ptr != '=')
71 ptr ++;
73 c = *ptr;
74 *ptr = 0;
84 *ptr
[all...]
/external/kernel-headers/original/asm-mips/
H A Duaccess.h117 * @ptr: Destination address, in user space.
125 * @ptr must have pointer-to-simple-variable type, and @x must be assignable
126 * to the result of dereferencing @ptr.
130 #define put_user(x,ptr) \
131 __put_user_check((x), (ptr), sizeof(*(ptr)))
136 * @ptr: Source address, in user space.
144 * @ptr must have pointer-to-simple-variable type, and the result of
145 * dereferencing @ptr must be assignable to @x without a cast.
150 #define get_user(x,ptr) \
[all...]
/external/mesa3d/src/talloc/
H A Dhieralloc.c59 static inline hieralloc_header_t * get_header(const void *ptr) argument
61 hieralloc_header_t * header = (hieralloc_header_t *)(ptr) - 1;
147 hieralloc_header_t * ptr = (hieralloc_header_t *)malloc(size + sizeof(hieralloc_header_t)); local
148 assert(ptr);
149 memset(ptr, 0xcd, sizeof(*ptr));
150 ptr->beginMagic = BEGIN_MAGIC();
151 ptr->parent = ptr->child = ptr
173 hieralloc_reallocate(const void * context, void * ptr, unsigned size, const char * name) argument
225 hieralloc_free(void * ptr) argument
277 hieralloc_reference(const void * ref_ctx, const void * ptr) argument
283 hieralloc_unlink(const void * ctx, void *ptr) argument
294 hieralloc_steal(const void * new_ctx, const void * ptr) argument
315 hieralloc_set_destructor(const void * ptr, int (* destructor)(void *)) argument
321 hieralloc_parent(const void * ptr) argument
489 hieralloc_report(const void * ptr, FILE * file) argument
512 hieralloc_report_brief(const void * ptr, FILE * file) argument
522 hieralloc_report_lineage(const void * ptr, FILE * file, int tab) argument
533 hieralloc_find(const void * top, const void * ptr, FILE * file, int tab) argument
[all...]
/external/chromium/chrome/common/
H A Dnative_window_notification_source.h24 gfx::NativeWindow operator->() const { return ptr(); }
25 gfx::NativeWindow ptr() const { function in class:Source
/external/clang/test/FixIt/
H A Dtypo.c35 unsinged *ptr = 0; // expected-error{{use of undeclared identifier 'unsinged'; did you mean 'unsigned'?}} local
36 *ptr = 17;
/external/clang/test/SemaObjC/Inputs/
H A Darc-system-header.h50 static inline void *test8(id ptr) { argument
51 return (__bridge_retain void*) ptr;
/external/e2fsprogs/lib/ext2fs/
H A Dio_manager.c25 char *next, *ptr, *options, *arg; local
39 ptr = options;
41 while (ptr && *ptr) {
42 next = strchr(ptr, '&');
46 arg = strchr(ptr, '=');
50 retval = (channel->manager->set_option)(channel, ptr, arg);
53 ptr = next;
/external/iptables/libiptc/
H A Dlinux_stddef.h18 * @ptr: the pointer to the member.
23 #define container_of(ptr, type, member) ({ \
24 const typeof( ((type *)0)->member ) *__mptr = (ptr); \
/external/valgrind/tsan/
H A Dts_heap_info.h37 // This struct should have fields 'uintptr_t ptr' and 'uintptr_t size',
55 CHECK(info.ptr == a);
76 if (it->second.ptr == a) {
80 CHECK(a < it->second.ptr);
85 CHECK(info->ptr < a);
86 if (info->ptr + info->size > a) {
106 max_info.ptr = (uintptr_t)-1;
107 map_[max_info.ptr] = max_info;
111 map_[min_info.ptr] = min_info;
/external/clang/test/Index/
H A Dcomplete-member-access.m20 void test_props(Int* ptr) {
21 ptr.prop1 = 0;
22 ptr->IVar = 0;

Completed in 823 milliseconds

1234567891011>>