Searched refs:textlen (Results 1 – 5 of 5) sorted by relevance
530 int textlen; /* property string length */ in doAddProperties() local532 textlen = strlen(str) + 1; in doAddProperties()534 textlen += strlen(PICO_PITCH_OPEN_TAG) + 5; in doAddProperties()535 textlen += strlen(PICO_PITCH_CLOSE_TAG); in doAddProperties()539 textlen += strlen(PICO_SPEED_OPEN_TAG) + 5; in doAddProperties()540 textlen += strlen(PICO_SPEED_CLOSE_TAG); in doAddProperties()545 textlen += strlen(PICO_VOLUME_OPEN_TAG) + 5; in doAddProperties()546 textlen += strlen(PICO_VOLUME_CLOSE_TAG); in doAddProperties()551 data = (char *) malloc( textlen ); /* allocate string */ in doAddProperties()555 memset(data, 0, textlen); /* clear it */ in doAddProperties()[all …]
174 typedef void (*GotXCutTextProc)(struct _rfbClient* client, const char *text, int textlen);
1252 Py_ssize_t textlen; in textiowrapper_write() local1271 textlen = PyUnicode_GetSize(text); in textiowrapper_write()1340 return PyLong_FromSsize_t(textlen); in textiowrapper_write()
2905 textlen; /* Length of text */ in ppd_read() local3329 textlen = ppd_decode(text); in ppd_read()3331 if (textlen > PPD_MAX_TEXT && pg->ppd_conform == PPD_CONFORM_STRICT) in ppd_read()
141 static void got_cut_text (rfbClient *cl, const char *text, int textlen) in got_cut_text() argument