length            129 daemons/controld/controld_schedulerd.c pe_ipc_dispatch(const char *buffer, ssize_t length, gpointer userdata)
length             83 include/crm/common/mainloop.h     int (*dispatch) (const char *buffer, ssize_t length, gpointer userdata);
length             41 include/crm/common/strings_internal.h int pcmk__compress(const char *data, unsigned int length, unsigned int max,
length             61 include/crm/lrmd_internal.h int  remote_proxy_dispatch(const char *buffer, ssize_t length,
length             90 lib/cib/cib_native.c cib_native_dispatch_internal(const char *buffer, ssize_t length, gpointer userdata)
length            798 lib/cluster/cpg.c     cluster->group.length = 0;
length            804 lib/cluster/cpg.c     cluster->group.length = 1 + QB_MIN(127, strlen(cluster->group.value));
length            434 lib/common/io.c     int length, read_len;
length            447 lib/common/io.c     length = ftell(fp);
length            448 lib/common/io.c     if (length < 0) {
length            453 lib/common/io.c     if (length == 0) {
length            456 lib/common/io.c         *contents = calloc(length + 1, sizeof(char));
length            462 lib/common/io.c         read_len = fread(*contents, 1, length, fp); /* Coverity: False positive */
length            463 lib/common/io.c         if (read_len != length) {
length            318 lib/common/ipc_client.c dispatch_ipc_data(const char *buffer, ssize_t length, gpointer user_data)
length            729 lib/common/mainloop.c     int (*dispatch_fn_ipc) (const char *buffer, ssize_t length, gpointer userdata);
length            748 lib/common/strings.c pcmk__compress(const char *data, unsigned int length, unsigned int max,
length            760 lib/common/strings.c         max = (length * 1.01) + 601; // Size guaranteed to hold result
length            771 lib/common/strings.c     rc = BZ2_bzBuffToBuffCompress(compressed, result_len, uncompressed, length,
length            776 lib/common/strings.c                 length, bz2_strerror(rc), rc);
length            785 lib/common/strings.c              length, *result_len, length / (*result_len),
length            790 lib/common/strings.c              length, *result_len, length / (*result_len));
length            963 lib/common/xml.c     size_t length = 0, read_len = 0;
length            984 lib/common/xml.c         buffer = pcmk__realloc(buffer, PCMK__BUFFER_SIZE + length + 1);
length            985 lib/common/xml.c         read_len = BZ2_bzRead(&rc, bz_file, buffer + length, PCMK__BUFFER_SIZE);
length            990 lib/common/xml.c             length += read_len;
length            994 lib/common/xml.c     buffer[length] = '\0';
length           1318 lib/common/xml.c replace_text(char *text, int start, int *length, const char *replace)
length           1323 lib/common/xml.c     *length += offset;
length           1324 lib/common/xml.c     text = pcmk__realloc(text, *length);
length           1326 lib/common/xml.c     for (lpc = (*length) - 1; lpc > (start + offset); lpc--) {
length           1339 lib/common/xml.c     int length = 1 + strlen(text);
length           1357 lib/common/xml.c     for (index = 0; index < length; index++) {
length           1362 lib/common/xml.c                 copy = replace_text(copy, index, &length, "&lt;");
length           1366 lib/common/xml.c                 copy = replace_text(copy, index, &length, "&gt;");
length           1370 lib/common/xml.c                 copy = replace_text(copy, index, &length, "&quot;");
length           1374 lib/common/xml.c                 copy = replace_text(copy, index, &length, "&apos;");
length           1378 lib/common/xml.c                 copy = replace_text(copy, index, &length, "&amp;");
length           1383 lib/common/xml.c                 copy = replace_text(copy, index, &length, "    ");
length           1388 lib/common/xml.c                 copy = replace_text(copy, index, &length, "\\n");
length           1392 lib/common/xml.c                 copy = replace_text(copy, index, &length, "\\r");
length           1406 lib/common/xml.c                     copy = replace_text(copy, index, &length, replace);
length           1409 lib/fencing/st_client.c stonith_dispatch_internal(const char *buffer, ssize_t length, gpointer userdata)
length            329 lib/lrmd/lrmd_client.c lrmd_ipc_dispatch(const char *buffer, ssize_t length, gpointer userdata)
length            119 lib/lrmd/proxy_common.c remote_proxy_dispatch(const char *buffer, ssize_t length, gpointer userdata)
length             93 lib/pacemaker/pcmk_sched_native.c     int length = 0;
length            104 lib/pacemaker/pcmk_sched_native.c         length = g_hash_table_size(rsc->allowed_nodes);
length            106 lib/pacemaker/pcmk_sched_native.c     if (length > 0) {
length            140 lib/pacemaker/pcmk_sched_native.c                          chosen->details->uname, rsc->id, length);
length            151 lib/pacemaker/pcmk_sched_native.c                      chosen ? chosen->details->uname : "<none>", rsc->id, length);
length             88 lib/services/services_nagios.c     int start = 0, length = 0, read_len = 0;
length            101 lib/services/services_nagios.c     length = ftell(file_strm);
length            104 lib/services/services_nagios.c     CRM_ASSERT(length >= 0);
length            107 lib/services/services_nagios.c     if (length <= 0) {
length            114 lib/services/services_nagios.c         crm_trace("Reading %d bytes from file", length);
length            115 lib/services/services_nagios.c         *output = calloc(1, (length + 1));
length            116 lib/services/services_nagios.c         read_len = fread(*output, 1, length, file_strm);
length            117 lib/services/services_nagios.c         if (read_len != length) {
length            119 lib/services/services_nagios.c                     length, read_len);
length             53 libltdl/lt__strl.c   size_t length;
length             61 libltdl/lt__strl.c   length=strlen(dst);
length             67 libltdl/lt__strl.c   for ( p = dst + length, q = src;
length             68 libltdl/lt__strl.c         (*q != 0) && (length < dstsize - 1) ;
length             69 libltdl/lt__strl.c         length++, p++, q++ )
length             72 libltdl/lt__strl.c   dst[length]='\0';
length             78 libltdl/lt__strl.c     length++;
length             80 libltdl/lt__strl.c   return length;
length            101 libltdl/lt__strl.c   size_t length=0;
length            112 libltdl/lt__strl.c   for ( p=dst, q=src, length=0 ;
length            113 libltdl/lt__strl.c         (*q != 0) && (length < dstsize-1) ;
length            114 libltdl/lt__strl.c         length++, p++, q++ )
length            117 libltdl/lt__strl.c   dst[length]='\0';
length            123 libltdl/lt__strl.c     length++;
length            125 libltdl/lt__strl.c   return length;