OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:m_malloc
(Results
1 - 25
of
28
) sorted by null
1
2
/external/dropbear/
gendss.c
50
key = (dss_key*)
m_malloc
(sizeof(dss_key));
52
key->p = (mp_int*)
m_malloc
(sizeof(mp_int));
53
key->q = (mp_int*)
m_malloc
(sizeof(mp_int));
54
key->g = (mp_int*)
m_malloc
(sizeof(mp_int));
55
key->y = (mp_int*)
m_malloc
(sizeof(mp_int));
56
key->x = (mp_int*)
m_malloc
(sizeof(mp_int));
107
buf = (unsigned char*)
m_malloc
(size);
genrsa.c
47
key = (rsa_key*)
m_malloc
(sizeof(rsa_key));
49
key->e = (mp_int*)
m_malloc
(sizeof(mp_int));
50
key->n = (mp_int*)
m_malloc
(sizeof(mp_int));
51
key->d = (mp_int*)
m_malloc
(sizeof(mp_int));
52
key->p = (mp_int*)
m_malloc
(sizeof(mp_int));
53
key->q = (mp_int*)
m_malloc
(sizeof(mp_int));
102
buf = (unsigned char*)
m_malloc
(size+1);
signkey.c
36
ret = (sign_key*)
m_malloc
(sizeof(sign_key));
115
key->dsskey = (dss_key*)
m_malloc
(sizeof(dss_key));
125
key->rsakey = (rsa_key*)
m_malloc
(sizeof(rsa_key));
168
key->dsskey = (dss_key*)
m_malloc
(sizeof(dss_key));
178
key->rsakey = (rsa_key*)
m_malloc
(sizeof(rsa_key));
294
ret = (char*)
m_malloc
(buflen);
329
ret = (char*)
m_malloc
(buflen);
dss.c
50
key->p =
m_malloc
(sizeof(mp_int));
51
key->q =
m_malloc
(sizeof(mp_int));
52
key->g =
m_malloc
(sizeof(mp_int));
53
key->y =
m_malloc
(sizeof(mp_int));
90
key->x =
m_malloc
(sizeof(mp_int));
271
ret =
m_malloc
(size);
circbuffer.c
39
cbuf = (circbuffer*)
m_malloc
(sizeof(circbuffer));
40
cbuf->data = (unsigned char*)
m_malloc
(size);
rsa.c
54
key->e =
m_malloc
(sizeof(mp_int));
55
key->n =
m_malloc
(sizeof(mp_int));
102
key->d =
m_malloc
(sizeof(mp_int));
112
key->p =
m_malloc
(sizeof(mp_int));
113
key->q =
m_malloc
(sizeof(mp_int));
cli-kex.c
46
cli_ses.dh_e = (mp_int*)
m_malloc
(sizeof(mp_int));
47
cli_ses.dh_x = (mp_int*)
m_malloc
(sizeof(mp_int));
168
filename =
m_malloc
(len + 18); /* "/.ssh/known_hosts" and null-terminator*/
dbutil.c
221
*errstring = (char*)
m_malloc
(len);
287
*errstring = (char*)
m_malloc
(len);
325
*errstring = (char*)
m_malloc
(len);
374
*errstring = (char*)
m_malloc
(len);
428
retstring = (char*)
m_malloc
(len);
510
ret =
m_malloc
(len+1);
621
void *
m_malloc
(size_t size) {
function
626
dropbear_exit("
m_malloc
failed");
630
dropbear_exit("
m_malloc
failed");
dbutil.h
59
void *
m_malloc
(size_t size);
queue.c
74
newlink = (struct Link*)
m_malloc
(sizeof(struct Link));
listener.c
33
ses.listeners = (struct Listener**)
m_malloc
(sizeof(struct Listener*));
120
newlisten = (struct Listener*)
m_malloc
(sizeof(struct Listener));
svr-agentfwd.c
128
path =
m_malloc
(len);
161
path =
m_malloc
(len);
buffer.c
49
buf = (buffer*)
m_malloc
(sizeof(buffer));
52
buf->data = (unsigned char*)
m_malloc
(size);
218
ret =
m_malloc
(len+1);
cli-runopts.c
253
cli_opts.cmd = (char*)
m_malloc
(cmdlen);
310
nextkey = (struct SignKeyList*)
m_malloc
(sizeof(struct SignKeyList));
393
newfwd = (struct TCPFwdList*)
m_malloc
(sizeof(struct TCPFwdList));
cli-main.c
73
hostandport = (char*)
m_malloc
(len);
svr-authpam.c
115
resp = (struct pam_response*)
m_malloc
(sizeof(struct pam_response));
141
resp = (struct pam_response*)
m_malloc
(sizeof(struct pam_response));
common-kex.c
345
ses.newkeys->recv_zstream = (z_streamp)
m_malloc
(sizeof(z_stream));
357
ses.newkeys->trans_zstream = (z_streamp)
m_malloc
(sizeof(z_stream));
532
ses.dh_K = (mp_int*)
m_malloc
(sizeof(mp_int));
575
ses.session_id = (unsigned char*)
m_malloc
(SHA1_HASH_SIZE);
603
ses.newkeys = (struct key_context*)
m_malloc
(sizeof(struct key_context));
svr-chansession.c
222
chansess = (struct ChanSess*)
m_malloc
(sizeof(struct ChanSess));
800
hushpath =
m_malloc
(len);
974
argv[0] = (char*)
m_malloc
(len);
1010
svr_ses.childpids = (struct ChildPid*)
m_malloc
(sizeof(struct ChildPid));
1032
newvar =
m_malloc
(plen + vlen + 2); /* 2 is for '=' and '\0' */
common-session.c
88
ses.keys = (struct key_context*)
m_malloc
(sizeof(struct key_context));
267
ses.remoteident =
m_malloc
(len);
svr-authpubkey.c
184
filename =
m_malloc
(len + 22);
279
filename =
m_malloc
(len + 22);
cli-tcpfwd.c
97
tcpinfo = (struct TCPListener*)
m_malloc
(sizeof(struct TCPListener));
random.c
226
randbuf = (unsigned char*)
m_malloc
(len);
svr-tcpfwd.c
205
tcpinfo = (struct TCPListener*)
m_malloc
(sizeof(struct TCPListener));
/external/webkit/Source/JavaScriptCore/wtf/wince/
MemoryManager.cpp
62
void* MemoryManager::
m_malloc
(size_t size)
function in class:WTF::MemoryManager
122
void *fastMalloc(size_t n) { return MemoryManager::
m_malloc
(n); }
MemoryManager.h
41
static void*
m_malloc
(size_t size);
Completed in 378 milliseconds
1
2