Searched refs:ret (Results 226 - 250 of 2792) sorted by relevance

1234567891011>>

/external/linux-tools-perf/scripts/python/
H A Dfailed-syscalls-by-pid.py42 id, ret):
47 if ret < 0:
49 syscalls[common_comm][common_pid][id][ret] += 1
51 syscalls[common_comm][common_pid][id][ret] = 1
72 for ret, val in sorted(syscalls[comm][pid][id].iteritems(), key = lambda(k, v): (v, k), reverse = True):
73 print " err = %-20s %10d\n" % (strerror(ret), val),
/external/openssh/
H A Droaming_common.c140 ssize_t ret; local
142 ret = write(fd, buf, count);
143 if (ret > 0 && !resume_in_progress) {
144 write_bytes += ret;
146 buf_append(buf, ret);
149 (ret == 0 || (ret == -1 && errno == EPIPE))) {
151 ret = 0;
154 ret = -1;
158 return ret;
164 ssize_t ret = read(fd, buf, count); local
186 size_t ret = atomicio(f, fd, buf, count); local
[all...]
H A Dssh-add.c103 int ret = -1; local
112 ret = 0;
119 return ret;
126 int ret = -1; local
129 ret = 0;
133 if (ret == 0)
138 return ret;
147 int fd, perms_ok, ret = -1; local
211 ret = 0;
260 return ret;
267 int ret = -1; local
325 int passok = 1, ret = -1; local
386 int i, ch, deleting = 0, ret = 0; local
[all...]
/external/openssl/crypto/asn1/
H A Da_dup.c70 char *ret; local
81 ret=d2i(NULL,&p2,i);
83 return(ret);
98 void *ret; local
106 ret=ASN1_item_d2i(NULL,&p,i, it);
108 return(ret);
H A Da_object.c265 ASN1_OBJECT *ret = NULL; local
279 ret = c2i_ASN1_OBJECT(a, &p, len);
280 if(ret) *pp = p;
281 return ret;
289 ASN1_OBJECT *ret=NULL; local
310 if ((ret=ASN1_OBJECT_new()) == NULL) return(NULL);
312 else ret=(*a);
316 data = (unsigned char *)ret->data;
317 ret->data = NULL;
319 if ((data == NULL) || (ret
349 ASN1_OBJECT *ret; local
[all...]
H A Dbio_asn1.c200 int wrmax, wrlen, ret; local
209 ret = -1;
226 ret = asn1_bio_flush_ex(b, ctx, ctx->prefix_free,
229 if (ret <= 0)
247 ret = BIO_write(b->next_bio,
249 if (ret <= 0)
252 ctx->buflen -= ret;
254 ctx->bufpos += ret;
269 ret = BIO_write(b->next_bio, in, wrmax);
270 if (ret <
304 int ret; local
375 long ret = 1; local
467 int ret; local
[all...]
/external/openssl/crypto/engine/
H A Deng_list.c194 ENGINE *ret; local
197 ret = engine_list_head;
198 if(ret)
200 ret->struct_ref++;
201 engine_ref_debug(ret, 0, 1)
204 return ret;
209 ENGINE *ret; local
212 ret = engine_list_tail;
213 if(ret)
215 ret
225 ENGINE *ret = NULL; local
248 ENGINE *ret = NULL; local
[all...]
/external/openssl/crypto/x509v3/
H A Dpcy_map.c75 int ret = 0; local
78 ret = -1;
88 ret = -1;
125 ret = 1;
127 if (ret == -1)
130 return ret;
/external/skia/src/utils/android/
H A Dashmem.c36 int fd, ret; local
46 ret = ioctl(fd, ASHMEM_SET_NAME, buf);
47 if (ret < 0)
51 ret = ioctl(fd, ASHMEM_SET_SIZE, size);
52 if (ret < 0)
59 return ret;
/external/libpng/
H A Dpngmem.c121 png_voidp ret; local
123 ret = (png_malloc(png_ptr, size));
124 if (ret != NULL)
125 png_memset(ret,0,(png_size_t)size);
126 return (ret);
132 png_voidp ret; local
139 ret = ((png_voidp)(*(png_ptr->malloc_fn))(png_ptr, (png_size_t)size));
141 ret = (png_malloc_default(png_ptr, size));
142 if (ret == NULL && (png_ptr->flags&PNG_FLAG_MALLOC_NULL_MEM_OK) == 0)
144 return (ret);
150 png_voidp ret; local
448 png_voidp ret; local
459 png_voidp ret; local
477 png_voidp ret; local
[all...]
/external/libselinux/src/
H A Dprocattr.c24 ssize_t ret; local
45 ret = -1;
51 ret = read(fd, buf, size - 1);
52 } while (ret < 0 && errno == EINTR);
53 if (ret < 0)
56 if (ret == 0) {
63 ret = -1;
66 ret = 0;
73 return ret;
82 ssize_t ret; local
[all...]
/external/valgrind/main/coregrind/m_ume/
H A Dmain.c70 Int fd, ret, i; local
84 ret = VG_(check_executable)(&is_setuid, (HChar*)exe_name, allow_setuid);
85 if (0 != ret) {
96 return VG_(mk_SysRes_Error)(ret);
141 Int ret; local
150 ret = (*exe_handlers[sr_Res(res)].load_fn)(fd, exe, info);
154 return ret;
200 static Int do_exec_shell_followup(Int ret, HChar* exe_name, ExeInfo* info) argument
211 if (VKI_ENOEXEC == ret) {
229 ret
275 Int ret; local
[all...]
/external/kernel-headers/original/asm-x86/
H A Duaccess_32.h124 #define __get_user_x(size,ret,x,ptr) \
126 :"=a" (ret),"=d" (x) \
423 unsigned long ret; local
427 __put_user_size(*(u8 *)from, (u8 __user *)to, 1, ret, 1);
428 return ret;
430 __put_user_size(*(u16 *)from, (u16 __user *)to, 2, ret, 2);
431 return ret;
433 __put_user_size(*(u32 *)from, (u32 __user *)to, 4, ret, 4);
434 return ret;
470 unsigned long ret; local
514 unsigned long ret; local
538 unsigned long ret; local
[all...]
/external/openssl/crypto/rsa/
H A Drsa_pmeth.c188 int ret; local
193 ret = pkey_fips_check_ctx(ctx);
194 if (ret < 0)
210 if (ret > 0)
213 ret = FIPS_rsa_sign_digest(rsa, tbs, tbslen, rctx->md,
218 if (ret > 0)
222 return ret;
231 ret = RSA_sign_ASN1_OCTET_STRING(NID_mdc2,
234 if (ret <= 0)
235 return ret;
286 int ret; local
381 int ret; local
420 int ret; local
434 int ret; local
643 int ret; local
661 int ret; local
[all...]
/external/javasqlite/src/main/java/SQLite/
H A DBlob.java39 int ret = blob.size - pos;
40 return (ret < 0) ? 0 : ret;
81 long ret = pos + n;
82 if (ret < 0) {
83 ret = 0;
85 } else if (ret > blob.size) {
86 ret = blob.size;
89 pos = (int) ret;
91 return ret;
[all...]
/external/llvm/lib/Object/
H A DBinary.cpp55 OwningPtr<Binary> ret(new Archive(scopedSource.take(), ec));
57 Result.swap(ret);
64 OwningPtr<Binary> ret(
66 if (!ret)
68 Result.swap(ret);
80 OwningPtr<Binary> ret(
82 if (!ret)
84 Result.swap(ret);
88 OwningPtr<Binary> ret(new COFFObjectFile(scopedSource.take(), ec));
90 Result.swap(ret);
[all...]
/external/openssl/crypto/rand/
H A Drand_egd.c138 int ret = 0; local
210 ret = -1;
236 ret = -1;
244 retrievebuf = buf + ret;
268 ret = -1;
273 ret += egdbuf[0];
280 return(ret);
286 int num, ret = 0; local
291 ret = num;
293 return(ret);
[all...]
/external/quake/quake/src/WinQuake/
H A Dnet_vcr.cpp85 int ret; local
90 Sys_FileRead(vcrFile, &ret, sizeof(int));
91 if (ret != 1)
94 return ret;
108 int ret; local
113 Sys_FileRead(vcrFile, &ret, sizeof(int));
117 return ret;
123 qboolean ret; local
128 Sys_FileRead(vcrFile, &ret, sizeof(int));
132 return ret;
[all...]
/external/openssl/crypto/
H A Dmem.c254 void *ret = NULL; local
264 ret = malloc_locked_ex_func(num,file,line);
266 fprintf(stderr, "LEVITTE_DEBUG_MEM: > 0x%p (%d)\n", ret, num);
269 malloc_debug_func(ret, num, file, line, 1);
275 if(ret && (num > 2048))
277 ((unsigned char *)ret)[0] = cleanse_ctr;
281 return ret;
298 void *ret = NULL; local
308 ret = malloc_ex_func(num,file,line);
310 fprintf(stderr, "LEVITTE_DEBUG_MEM: > 0x%p (%d)\n", ret, nu
329 char *ret = CRYPTO_malloc(strlen(str)+1, file, line); local
337 void *ret = NULL; local
359 void *ret = NULL; local
[all...]
/external/openssl/crypto/txt_db/
H A Dtxt_db.c73 TXT_DB *ret=NULL; local
87 if ((ret=OPENSSL_malloc(sizeof(TXT_DB))) == NULL)
89 ret->num_fields=num;
90 ret->index=NULL;
91 ret->qual=NULL;
92 if ((ret->data=sk_OPENSSL_PSTRING_new_null()) == NULL)
94 if ((ret->index=OPENSSL_malloc(sizeof(*ret->index)*num)) == NULL)
96 if ((ret->qual=OPENSSL_malloc(sizeof(*(ret
198 OPENSSL_STRING *ret; local
260 long ret= -1; local
[all...]
/external/qemu/android/
H A Dhw-pipe-net.c253 int ret = 0; local
258 ret = netPipeReadySend(pipe);
259 if (ret != 0)
260 return ret;
278 ret += len;
284 if (ret == 0)
285 ret = PIPE_ERROR_IO;
290 if (ret > 0) {
296 ret = PIPE_ERROR_AGAIN;
298 ret
311 int ret = 0; local
364 unsigned ret = 0; local
394 void* ret; local
428 void* ret; local
[all...]
/external/openssl/crypto/x509/
H A Dx509_cmp.c82 unsigned long ret=0; local
99 ret=( ((unsigned long)md[0] )|((unsigned long)md[1]<<8L)|
104 return(ret);
192 int ret; local
198 ret = i2d_X509_NAME((X509_NAME *)a, NULL);
199 if (ret < 0)
205 ret = i2d_X509_NAME((X509_NAME *)b, NULL);
206 if (ret < 0)
210 ret = a->canon_enclen - b->canon_enclen;
212 if (ret)
221 unsigned long ret=0; local
244 unsigned long ret=0; local
316 int ret; local
[all...]
/external/qemu/android/protocol/
H A Dcore-commands-proxy.c186 NetworkSpeed* ret; local
193 ret = *netspeed;
197 ret->upload = resp_data->upload;
198 ret->download = resp_data->download;
199 ret->name = (char*)ret + sizeof(NetworkSpeed);
200 strcpy((char*)ret->name, resp_data->name);
201 ret->display = ret->name + strlen(ret
231 NetworkLatency* ret; local
[all...]
/external/e2fsprogs/misc/
H A Duuidd.c90 ssize_t ret; local
96 ret = read(fd, buf, count);
97 if (ret <= 0) {
98 if ((errno == EAGAIN || errno == EINTR || ret == 0) &&
103 if (ret > 0)
105 count -= ret;
106 buf += ret;
107 c += ret;
114 ssize_t ret; local
118 ret
147 ssize_t ret; local
240 int fd_pidfile, ret; local
448 int i, c, ret; local
[all...]
/external/apache-xml/src/main/java/org/apache/xml/serializer/
H A DEncodingInfo.java188 final boolean ret;
202 ret = m_before.isInEncoding(ch1);
215 ret = m_after.isInEncoding(ch1);
222 ret = m_isInEncoding[idx];
226 ret = inEncoding(ch1, m_encoding);
228 m_isInEncoding[idx] = ret;
231 return ret;
235 final boolean ret;
249 ret = m_before.isInEncoding(high,low);
262 ret
[all...]

Completed in 872 milliseconds

1234567891011>>