Home
last modified time | relevance | path

Searched refs:bytes_count (Results 1 – 23 of 23) sorted by relevance

/external/google-breakpad/src/client/windows/crash_generation/
Dclient_info.cc140 SIZE_T bytes_count = 0; in GetClientExceptionInfo() local
145 &bytes_count)) { in GetClientExceptionInfo()
149 return bytes_count == sizeof(*ex_info); in GetClientExceptionInfo()
153 SIZE_T bytes_count = 0; in GetClientThreadId() local
158 &bytes_count)) { in GetClientThreadId()
162 return bytes_count == sizeof(*thread_id); in GetClientThreadId()
189 SIZE_T bytes_count = 0; in PopulateCustomInfo() local
209 &bytes_count)) { in PopulateCustomInfo()
214 return (bytes_count == read_count); in PopulateCustomInfo()
Dcrash_generation_server.cc343 DWORD bytes_count = 0; in HandleConnectingState() local
346 &bytes_count, in HandleConnectingState()
366 DWORD bytes_count = 0; in HandleConnectedState() local
371 &bytes_count, in HandleConnectedState()
394 DWORD bytes_count = 0; in HandleReadingState() local
397 &bytes_count, in HandleReadingState()
399 if (success && bytes_count == sizeof(ProtocolMessage)) { in HandleReadingState()
469 DWORD bytes_count = 0; in HandleWritingState() local
472 &bytes_count, in HandleWritingState()
490 DWORD bytes_count = 0; in HandleWriteDoneState() local
[all …]
Dcrash_generation_client.cc208 DWORD bytes_count = 0; in RequestUpload() local
209 bool success = WriteFile(pipe, &msg, sizeof(msg), &bytes_count, NULL) != 0; in RequestUpload()
244 DWORD bytes_count = 0; in RegisterClient() local
253 &bytes_count, in RegisterClient()
265 if (!WriteFile(pipe, &ack_msg, sizeof(ack_msg), &bytes_count, NULL)) { in RegisterClient()
/external/harfbuzz_ng/test/fuzzing/
Dhb-subset-fuzzer.cc34 unsigned int bytes_count = 0; in trySubset() local
36 if (data[i]) ++bytes_count; in trySubset()
37 assert (bytes_count || !length); in trySubset()
/external/google-breakpad/src/client/windows/unittests/
Dcrash_generation_server_test.cc184 DWORD bytes_count = 0; in DoFaultyClient() local
190 &bytes_count, in DoFaultyClient()
204 &bytes_count, in DoFaultyClient()
228 &bytes_count, in DoFaultyClient()
/external/perfetto/src/trace_processor/perfetto_sql/intrinsics/table_functions/
Ddfs_weight_bounded.cc234 raw_source_ids.bytes_count); in ComputeTable()
245 raw_dest_ids.bytes_count); in ComputeTable()
256 raw_edge_weights.bytes_count); in ComputeTable()
267 raw_root_ids.bytes_count); in ComputeTable()
278 raw_root_target_weights.bytes_count); in ComputeTable()
/external/perfetto/src/trace_processor/db/
Dcompare.h177 return compare::Bytes(a.bytes_value, a.bytes_count, b.bytes_value, in SqlValue()
178 b.bytes_count); in SqlValue()
/external/perfetto/include/perfetto/trace_processor/
Dbasic_types.h247 value.bytes_count = size; in Bytes()
281 size_t bytes_count = 0; member
/external/perfetto/src/trace_processor/rpc/
Dquery_result_serializer_unittest.cc43 if (a.bytes_count != b.bytes_count) in operator ==()
45 return memcmp(a.bytes_value, b.bytes_value, a.bytes_count) == 0; in operator ==()
56 return stream << "Bytes[" << v.bytes_count << "]:" in operator <<()
58 v.bytes_count) in operator <<()
Dquery_result_serializer.cc176 uint32_t len = static_cast<uint32_t>(value.bytes_count); in SerializeBatch()
/external/perfetto/src/traceconv/
Dtrace_to_firefox.cc43 static_cast<std::streamsize>(it.Get(0).bytes_count)); in ExportFirefoxProfile()
/external/perfetto/src/trace_processor/perfetto_sql/intrinsics/functions/
Dbase64.cc58 src_size = in.bytes_count; in Run()
Dpprof_functions.cc79 value->bytes_count); in Step()
Dstack_functions.cc93 stack->AppendRawProtoBytes(value.bytes_value, value.bytes_count); in RunImpl()
/external/perfetto/src/trace_processor/
Diterator_impl.h107 value.bytes_count = in Get()
/external/perfetto/src/trace_processor/sqlite/
Dsqlite_utils.h108 sql_value.bytes_count = static_cast<size_t>(sqlite3_value_bytes(value)); in SqliteValueToSqlValue()
147 static_cast<int>(value.bytes_count),
/external/scapy/scapy/layers/
Ddns.py754 bytes_count = 1
757 bytes_count = int(math.ceil(max // 8)) + 1 # use at least 1 byte
758 if bytes_count > 32: # Don't encode more than 256 bits / values
759 bytes_count = 32
761 bitmap += struct.pack("BB", wb, bytes_count)
773 ) for tmp in range(bytes_count)
/external/perfetto/src/trace_processor/metrics/
Dmetrics.cc143 size_t size = value.bytes_count; in AppendSqlValue()
416 value.bytes_count); in AddSqlValue()
698 size_t size = proto.bytes_count; in Run()
/external/perfetto/src/trace_processor/perfetto_sql/engine/
Dcreated_function.cc85 PERFETTO_DCHECK(result.bytes_count == 0); in EvaluateScalarStatement()
131 ptr + value.bytes_count); in StoredSqlValue()
/external/python/cpython3/Objects/clinic/
Dbytesobject.c.h615 {"count", _PyCFunction_CAST(bytes_count), METH_FASTCALL, bytes_count__doc__},
622 bytes_count(PyBytesObject *self, PyObject *const *args, Py_ssize_t nargs) in bytes_count() function
/external/mesa3d/src/imgui/
Dimgui_widgets.cpp3014 void ImGuiInputTextCallbackData::DeleteChars(int pos, int bytes_count) in DeleteChars() argument
3016 IM_ASSERT(pos + bytes_count <= BufTextLen); in DeleteChars()
3018 const char* src = Buf + pos + bytes_count; in DeleteChars()
3023 if (CursorPos + bytes_count >= pos) in DeleteChars()
3024 CursorPos -= bytes_count; in DeleteChars()
3029 BufTextLen -= bytes_count; in DeleteChars()
Dimgui.h1443 IMGUI_API void DeleteChars(int pos, int bytes_count);
Dimgui.cpp1739 int bytes_count = 0; in ImTextCountUtf8BytesFromStr() local
1744 bytes_count++; in ImTextCountUtf8BytesFromStr()
1746 bytes_count += ImTextCountUtf8BytesFromChar(c); in ImTextCountUtf8BytesFromStr()
1748 return bytes_count; in ImTextCountUtf8BytesFromStr()