Home
last modified time | relevance | path

Searched refs:ptitle (Results 1 – 4 of 4) sorted by relevance

/external/openssh/openbsd-compat/
Dsetproctitle.c126 char buf[1024], ptitle[1024]; in setproctitle() local
147 strnvis(ptitle, buf, sizeof(ptitle), in setproctitle()
151 pst.pst_command = ptitle; in setproctitle()
152 pstat(PSTAT_SETCMD, pst, strlen(ptitle), 0, 0); in setproctitle()
156 len = strlcpy(argv_start, ptitle, argv_env_len); in setproctitle()
/external/libmtp/examples/
Dsendtr.c164 …ar * from_path, char * to_path, char *partist, char *palbumartist, char *ptitle, char *pgenre, cha… in sendtrack_function() argument
201 if (ptitle == NULL) { in sendtrack_function()
202 ptitle = prompt("Title", title, 80, 0); in sendtrack_function()
204 if (!strlen(ptitle)) in sendtrack_function()
205 ptitle = NULL; in sendtrack_function()
269 if (ptitle) { in sendtrack_function()
270 printf("Title: %s\n", ptitle); in sendtrack_function()
271 trackmeta->title = strdup(ptitle); in sendtrack_function()
379 char *ptitle = NULL; in sendtrack_command() local
391 ptitle = strdup(optarg); in sendtrack_command()
[all …]
/external/qemu/distrib/sdl-1.2.15/src/video/maccommon/
DSDL_macwm.c48 Str255 ptitle; /* MJS */ in Mac_SetCaption() local
49 ptitle[0] = strlen (title); in Mac_SetCaption()
50 SDL_memcpy(ptitle+1, title, ptitle[0]); /* MJS */ in Mac_SetCaption()
52 SetWTitle(SDL_Window, ptitle); /* MJS */ in Mac_SetCaption()
/external/webkit/Source/WebCore/loader/
DFrameLoader.cpp616 StringWithDirection ptitle = m_documentLoader->title(); in receivedFirstData() local
618 if (!ptitle.isNull()) in receivedFirstData()
619 m_client->dispatchDidReceiveTitle(ptitle); in receivedFirstData()