Searched refs:tofree (Results 1 - 25 of 27) sorted by relevance

12

/macosx-10.10/Heimdal-398.1.2/lib/roken/
H A Dfreeaddrinfo.c45 struct addrinfo *tofree; local
50 tofree = ai;
52 free (tofree);
/macosx-10.10/vim-55/src/
H A Dos_w32exe.c51 char *tofree; local
62 argc = get_cmd_args(prog, (char *)lpszCmdLine, &argv, &tofree);
132 if (tofree != NULL)
133 free(tofree);
H A Dos_win16.c98 char *tofree; local
111 argc = get_cmd_args(prog, (char *)lpszCmdLine, &argv, &tofree);
124 if (tofree != NULL)
125 free(tofree);
H A Dif_xcmdsrv.c1152 char_u *tofree; local
1280 script = serverConvert(enc, script, &tofree);
1285 vim_free(tofree);
1362 res = serverConvert(enc, res, &tofree);
1363 if (tofree == NULL)
1416 str = serverConvert(enc, str, &tofree);
1430 vim_free(tofree);
H A Deval.c464 static char_u *echo_string __ARGS((typval_T *tv, char_u **tofree, char_u *numbuf, int copyID));
465 static char_u *tv2string __ARGS((typval_T *tv, char_u **tofree, char_u *numbuf, int copyID));
2194 char_u *tofree; local
2213 len = get_name_len(&arg, &tofree, TRUE, TRUE);
2228 if (tofree != NULL)
2229 name = tofree;
2280 vim_free(tofree);
2308 char_u *tofree = NULL; local
2340 p = tofree = concat_str(s, p);
2358 vim_free(tofree);
3332 char_u *tofree; local
6519 char_u *tofree; local
7129 char_u *tofree = NULL; local
7205 char_u *tofree; local
9800 char_u *tofree; local
13425 char_u *tofree = NULL; local
16802 char_u *tofree; local
19663 char_u *tofree; local
20065 char_u *tofree; local
21473 char_u *scriptname, *tofree; local
21909 char_u *tofree; local
22004 char_u *tofree; local
22301 char_u *tofree = NULL; local
22564 char_u *tofree; local
[all...]
H A Dmessage.c2130 char_u *tofree = NULL; local
2140 tofree = alloc(len);
2141 if (tofree != NULL)
2143 vim_snprintf((char *)tofree, len, _("%s line %ld"),
2145 p = tofree;
2149 vim_free(tofree);
3707 char_u *tofree = NULL; local
3735 tofree = vim_strsave(dflt);
3736 if (tofree != NULL)
3738 initdir = tofree;
[all...]
H A Dos_mswin.c2619 char_u *tofree; local
2637 str = serverConvert(client_enc, (char_u *)data->lpData, &tofree);
2639 vim_free(tofree);
2652 str = serverConvert(client_enc, (char_u *)data->lpData, &tofree);
2654 vim_free(tofree);
2678 &tofree);
2679 if (tofree == NULL)
H A Dundo.c3097 u_header_T *tofree, *next; local
3113 tofree = next;
3114 if (tofree->uh_alt_next.ptr != NULL)
3115 u_freebranch(buf, tofree->uh_alt_next.ptr, uhpp); /* recursive */
3116 next = tofree->uh_prev.ptr;
3117 u_freeentries(buf, tofree, uhpp);
H A Dgui_mac.c3951 char_u *tofree = NULL; local
3955 tofree = string_convert(&output_conv, s, &len);
3956 if (tofree != NULL)
3957 s = tofree;
4053 vim_free(tofree);
4064 UniChar *tofree = mac_enc_to_utf16(s, len, (size_t *)&utf16_len); local
4152 ATSUSetTextPointerLocation(textLayout, tofree,
4207 if (ATSUCreateTextLayoutWithTextPtr(tofree,
4241 vim_free(tofree);
H A Dui.c40 char_u *tofree = NULL; local
45 tofree = string_convert(&output_conv, s, &len);
46 if (tofree != NULL)
47 s = tofree;
55 vim_free(tofree);
H A Dmbyte.c3436 char_u *tofree = NULL; local
3455 vim_free(tofree);
3456 tofree = string_convert(&vimconv, p, NULL);
3457 if (tofree == NULL)
3459 p = tofree;
3476 len = (int)(p - tofree);
3498 vim_free(tofree);
H A Dmain.c3984 * "*tofree" is set to the result when it needs to be freed later.
3987 serverConvert(client_enc, data, tofree)
3990 char_u **tofree;
3994 *tofree = NULL;
4008 *tofree = res;
H A Dwindow.c6010 char_u *tofree = NULL; local
6014 tofree = eval_includeexpr(ptr, len);
6015 if (tofree != NULL)
6017 ptr = tofree;
6036 tofree = eval_includeexpr(ptr, len);
6037 if (tofree != NULL)
6039 ptr = tofree;
6066 vim_free(tofree);
H A Dgui_w48.c3767 * Return pointer to buffer in "tofree".
3772 get_cmd_args(char *prog, char *cmdline, char ***argvp, char **tofree) argument
3784 *tofree = NULL;
3900 *tofree = newcmdline;
/macosx-10.10/ksh-23/ksh/src/cmd/ksh93/bltins/
H A Dwhence.c140 int tofree; local
150 tofree=0;
237 tofree=1;
278 if(tofree)
281 tofree = 0;
/macosx-10.10/vim-55/src/proto/
H A Dmain.pro12 char_u *serverConvert __ARGS((char_u *client_enc, char_u *data, char_u **tofree));
H A Dgui_w16.pro59 int get_cmd_args __ARGS((char *prog, char *cmdline, char ***argvp, char **tofree));
H A Dgui_w32.pro59 int get_cmd_args __ARGS((char *prog, char *cmdline, char ***argvp, char **tofree));
/macosx-10.10/OpenSSL098-52/src/apps/
H A Ddgst.c421 char *tmp,*tofree=NULL; local
433 tmp=tofree=OPENSSL_malloc(len);
443 if(tofree)
444 OPENSSL_free(tofree);
H A Dca.c320 char *tofree=NULL; local
560 tofree=NULL;
570 tofree=OPENSSL_malloc(len);
571 strcpy(tofree,s);
574 tofree=OPENSSL_malloc(len);
575 BUF_strlcpy(tofree,s,len);
576 BUF_strlcat(tofree,"/",len);
578 BUF_strlcat(tofree,CONFIG_FILE,len);
579 configfile=tofree;
594 if(tofree)
[all...]
/macosx-10.10/bash-94.1.2/bash-3.2/builtins/
H A Dread.c95 char *e, *t, *t1, *ps2, *tofree; local
638 tofree = NULL;
644 tofree = input_string = t;
659 FREE (tofree);
/macosx-10.10/smb-759.0/lib/smb/
H A Dgss.c392 char *n, *r, *principal, *tofree, *realm; local
403 tofree = principal = strdup(entry->principal);
404 if (tofree == NULL)
443 free(tofree);
/macosx-10.10/ksh-23/ksh/src/cmd/ksh93/sh/
H A Dname.c1812 const char *tofree=0; local
1876 tofree = up->cp;
1879 tofree = 0;
1881 tofree = 0;
1894 if(tofree)
1896 free((void*)tofree);
1936 if(!tofree || size)
1952 if(size==0 || tofree || dot || !(cp=(char*)up->cp))
1961 if(tofree && tofree!
[all...]
/macosx-10.10/ppp-786.1.1/Helpers/pppd/
H A Doptions.c494 char *tofree; local
519 tofree = option_source;
545 tofree = 0;
555 if (tofree)
556 free(tofree);
/macosx-10.10/libxml2-26/libxml2/
H A Dencoding.c2857 int tofree = 0; local
2866 tofree = 1;
2881 tofree = 1;
2892 if (tofree) {

Completed in 365 milliseconds

12