Lines Matching defs:tp
62 static void print_text_field (xcb_connection_t *dpy, const char *s, xcb_get_property_reply_t *tp );
584 print_text_field(xcb_connection_t *dpy, const char *s, xcb_get_property_reply_t *tp)
586 if (tp->type == XCB_NONE || tp->format == 0) { /* Or XCB_ATOM_NONE after libxcb 1.5 */
592 if (tp->type == XCB_ATOM_STRING && tp->format == 8) {
593 printf ("%.*s", (int)tp->value_len, (char *)xcb_get_property_value(tp));
595 unknown (dpy, tp->type, tp->format);