Searched refs:result (Results 1 – 13 of 13) sorted by relevance
20 int result; in read_callback() local25 result = recv(fd, buf, count, MSG_WAITALL); in read_callback()27 if (result == 0) in read_callback()30 return result == count; in read_callback()
430 result = ''432 result = '%s\n' % leading_comment434 result += 'typedef enum %s {' % Globals.naming_style.enum_name(self.names)436 result += " " + trailing_comment438 result += "\n"459 result += '\n'.join(enum_values)460 result += '\n}'463 result += ' pb_packed'465 result += ' %s;' % Globals.naming_style.type_name(self.names)466 return result[all …]
139 result = env.Execute(action) variable140 if result != 0:
56 result = pipe.wait()57 if result == 0:60 print('\033[31m[FAIL]\033[0m Program ' + args[0] + ' returned ' + str(result))61 return result
34 Result result = 1; field
20 reply.result = request_result; in main()
2 # "Out-of-memory condition on repeated field can result in invalid free()"
108 result = process.wait()112 result = process.wait()116 if result != 0:119 …print('\033[31m[FAIL]\033[0m Program ' + str(args) + ' returned ' + str(result) + ' with input '…120 return result
15 // This does result in unnecessarily copying the data around, so for larger
173 uint32_t result; in pb_decode_varint32_eof() local191 result = byte; in pb_decode_varint32_eof()197 result = byte & 0x7F; in pb_decode_varint32_eof()209 ((result >> 31) != 0 && byte == sign_extension)); in pb_decode_varint32_eof()222 result |= (uint32_t)(byte & 0x0F) << bitpos; in pb_decode_varint32_eof()226 result |= (uint32_t)(byte & 0x7F) << bitpos; in pb_decode_varint32_eof()232 *dest = result; in pb_decode_varint32_eof()246 uint64_t result = 0; in pb_decode_varint() local256 result |= (uint64_t)(byte & 0x7F) << bitpos; in pb_decode_varint()260 *dest = result; in pb_decode_varint()
7 # should result in:
84 result = context.TryCompile("int main() {return 0;}", '.c')87 context.Result(result)88 return result
614 This can result from erroneous compiler include path.