Home | History | Annotate | Download | only in auxprogs

Lines Matching refs:Frame

56    * Check that all error cases result in a FAIL frame being returned.
58 * image.c: don't assert in cases where a FAIL frame is returned;
349 /* A frame. The first 4 bytes of |data| give the kind of the frame,
351 typedef struct { UChar* data; SizeT n_data; } Frame;
394 static Frame* mk_Frame_asciiz ( const char* tag, const char* str )
397 Frame* f = calloc(sizeof(Frame), 1);
407 static Bool parse_Frame_noargs ( Frame* fr, const HChar* tag )
417 static Bool parse_Frame_asciiz ( Frame* fr, const HChar* tag,
427 of the data. If not, the frame is malformed. */
443 static Frame* mk_Frame_le64 ( const HChar* tag, ULong n1 )
446 Frame* f = calloc(sizeof(Frame), 1);
454 static Frame* mk_Frame_le64_le64 ( const HChar* tag, ULong n1, ULong n2 )
457 Frame* f = calloc(sizeof(Frame), 1);
466 static Bool parse_Frame_le64_le64_le64 ( Frame* fr, const HChar* tag,
481 static Frame* mk_Frame_le64_le64_le64_bytes (
487 Frame* f = calloc(sizeof(Frame), 1);
498 static void free_Frame ( Frame* fr )
668 Frame* req = NULL; /* the request frame that we receive */
669 Frame* res = NULL; /* the response frame that we send back */
678 /* Get a frame out of the channel. */
686 /* Allocate a Frame to hold the result data, and read into it. */
690 req = calloc(sizeof(Frame), 1);
707 /* Now we have a request frame. Cook up a response. */
832 /* Make a frame to put the results in. Bytes 24 and
856 res = mk_Frame_asciiz("FAIL", "Invalid request frame type");
862 /* And send the response frame back to the client. */