length            129 daemons/controld/controld_schedulerd.c pe_ipc_dispatch(const char *buffer, ssize_t length, gpointer userdata)
length             74 include/crm/common/mainloop.h     int (*dispatch) (const char *buffer, ssize_t length, gpointer userdata);
length             40 include/crm/common/strings_internal.h int pcmk__compress(const char *data, unsigned int length, unsigned int max,
length             60 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            566 lib/cluster/cpg.c     cluster->group.length = 0;
length            572 lib/cluster/cpg.c     cluster->group.length = 1 + QB_MIN(127, strlen(cluster->group.value));
length            453 lib/common/io.c     int length, read_len;
length            466 lib/common/io.c     length = ftell(fp);
length            467 lib/common/io.c     if (length < 0) {
length            472 lib/common/io.c     if (length == 0) {
length            475 lib/common/io.c         *contents = calloc(length + 1, sizeof(char));
length            481 lib/common/io.c         read_len = fread(*contents, 1, length, fp); /* Coverity: False positive */
length            482 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            705 lib/common/mainloop.c     int (*dispatch_fn_ipc) (const char *buffer, ssize_t length, gpointer userdata);
length            663 lib/common/strings.c pcmk__compress(const char *data, unsigned int length, unsigned int max,
length            675 lib/common/strings.c         max = (length * 1.01) + 601; // Size guaranteed to hold result
length            686 lib/common/strings.c     rc = BZ2_bzBuffToBuffCompress(compressed, result_len, uncompressed, length,
length            691 lib/common/strings.c                 length, bz2_strerror(rc), rc);
length            700 lib/common/strings.c              length, *result_len, length / (*result_len),
length            705 lib/common/strings.c              length, *result_len, length / (*result_len));
length            932 lib/common/xml.c     size_t length = 0, read_len = 0;
length            954 lib/common/xml.c         buffer = pcmk__realloc(buffer, PCMK__BUFFER_SIZE + length + 1);
length            955 lib/common/xml.c         read_len = BZ2_bzRead(&rc, bz_file, buffer + length, PCMK__BUFFER_SIZE);
length            960 lib/common/xml.c             length += read_len;
length            964 lib/common/xml.c     buffer[length] = '\0';
length           1297 lib/common/xml.c replace_text(char *text, int start, int *length, const char *replace)
length           1302 lib/common/xml.c     *length += offset;
length           1303 lib/common/xml.c     text = pcmk__realloc(text, *length);
length           1305 lib/common/xml.c     for (lpc = (*length) - 1; lpc > (start + offset); lpc--) {
length           1318 lib/common/xml.c     int length = 1 + strlen(text);
length           1336 lib/common/xml.c     for (index = 0; index < length; index++) {
length           1341 lib/common/xml.c                 copy = replace_text(copy, index, &length, "&lt;");
length           1345 lib/common/xml.c                 copy = replace_text(copy, index, &length, "&gt;");
length           1349 lib/common/xml.c                 copy = replace_text(copy, index, &length, "&quot;");
length           1353 lib/common/xml.c                 copy = replace_text(copy, index, &length, "&apos;");
length           1357 lib/common/xml.c                 copy = replace_text(copy, index, &length, "&amp;");
length           1362 lib/common/xml.c                 copy = replace_text(copy, index, &length, "    ");
length           1367 lib/common/xml.c                 copy = replace_text(copy, index, &length, "\\n");
length           1371 lib/common/xml.c                 copy = replace_text(copy, index, &length, "\\r");
length           1385 lib/common/xml.c                     copy = replace_text(copy, index, &length, replace);
length           1417 lib/fencing/st_client.c stonith_dispatch_internal(const char *buffer, ssize_t length, gpointer userdata)
length            325 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             89 lib/pacemaker/pcmk_sched_native.c     int length = 0;
length            100 lib/pacemaker/pcmk_sched_native.c         length = g_hash_table_size(rsc->allowed_nodes);
length            102 lib/pacemaker/pcmk_sched_native.c     if (length > 0) {
length            136 lib/pacemaker/pcmk_sched_native.c                          chosen->details->uname, rsc->id, length);
length            147 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;