/third_party/gstreamer/gstplugins_base/gst-libs/gst/tag/ |
D | id3v2.c | 380 convert_fid_to_v240 (gchar * frame_id) in convert_fid_to_v240() argument 385 if (strncmp (frame_id, obsolete_frame_ids[i], 5) == 0) in convert_fid_to_v240() 390 if (strncmp (frame_id, frame_id_conversions[i].orig, 5) == 0) { in convert_fid_to_v240() 391 strcpy (frame_id, frame_id_conversions[i].new); in convert_fid_to_v240() 498 gchar frame_id[5] = ""; in id3v2_frames_to_tag_list() local 509 frame_id[0] = work->hdr.frame_data[0]; in id3v2_frames_to_tag_list() 510 frame_id[1] = work->hdr.frame_data[1]; in id3v2_frames_to_tag_list() 511 frame_id[2] = work->hdr.frame_data[2]; in id3v2_frames_to_tag_list() 512 frame_id[3] = 0; in id3v2_frames_to_tag_list() 513 frame_id[4] = 0; in id3v2_frames_to_tag_list() [all …]
|
D | id3v2frames.c | 86 for (i = 0; i < 5 && work->frame_id[i] != '\0'; i++) { in id3v2_parse_frame() 87 if (!g_ascii_isalnum (work->frame_id[i])) { in id3v2_parse_frame() 101 tag_name = gst_tag_from_id3_tag (work->frame_id); in id3v2_parse_frame() 103 strncmp (work->frame_id, "RVA2", 4) != 0 && in id3v2_parse_frame() 104 strncmp (work->frame_id, "TXXX", 4) != 0 && in id3v2_parse_frame() 105 strncmp (work->frame_id, "TDAT", 4) != 0 && in id3v2_parse_frame() 106 strncmp (work->frame_id, "UFID", 4) != 0) { in id3v2_parse_frame() 125 work->frame_id, work->parse_size, frame_data_size); in id3v2_parse_frame() 136 GST_DEBUG ("Un-unsyncing frame %s", work->frame_id); in id3v2_parse_frame() 179 if (work->frame_id[0] == 'T') { in id3v2_parse_frame() [all …]
|
D | id3v2.h | 59 gchar *frame_id; member
|
/third_party/gstreamer/gstplugins_bad/gst/id3tag/ |
D | id3tag.c | 153 const gchar * frame_id, guint16 flags); 159 const gchar * frame_id, const gchar ** strings, int num_strings); 161 const gchar * frame_id, const gchar * string); 272 id3v2_frame_init (GstId3v2Frame * frame, const gchar * frame_id, guint16 flags) in id3v2_frame_init() argument 274 g_assert (strlen (frame_id) == 4); /* we only handle 2.3.0/2.4.0 */ in id3v2_frame_init() 275 memcpy (frame->id, frame_id, 4 + 1); in id3v2_frame_init() 385 id3v2_tag_add_text_frame (GstId3v2Tag * tag, const gchar * frame_id, in id3v2_tag_add_text_frame() argument 397 id3v2_frame_init (&frame, frame_id, 0); in id3v2_tag_add_text_frame() 402 GST_LOG ("Adding text frame %s with %d strings", frame_id, num_strings); in id3v2_tag_add_text_frame() 423 "v2.%u.0 tag", frame_id, tag->major_version); in id3v2_tag_add_text_frame() [all …]
|
/third_party/cef/libcef/renderer/ |
D | browser_impl.cc | 283 int64_t frame_id = render_frame_util::GetIdentifier(frame); in GetWebFrameImpl() local 286 FrameMap::const_iterator it = frames_.find(frame_id); in GetWebFrameImpl() 290 CefRefPtr<CefFrameImpl> framePtr(new CefFrameImpl(this, frame, frame_id)); in GetWebFrameImpl() 291 frames_.insert(std::make_pair(frame_id, framePtr)); in GetWebFrameImpl() 296 CefRefPtr<CefFrameImpl> CefBrowserImpl::GetWebFrameImpl(int64_t frame_id) { in GetWebFrameImpl() argument 297 if (frame_id == blink_glue::kInvalidFrameId) { in GetWebFrameImpl() 308 FrameMap::const_iterator it = frames_.find(frame_id); in GetWebFrameImpl() 318 frame_id) { in GetWebFrameImpl() 327 void CefBrowserImpl::AddFrameObject(int64_t frame_id, in AddFrameObject() argument 332 FrameObjectMap::const_iterator it = frame_objects_.find(frame_id); in AddFrameObject() [all …]
|
D | browser_impl.h | 81 CefRefPtr<CefFrameImpl> GetWebFrameImpl(int64_t frame_id); 84 void AddFrameObject(int64_t frame_id, CefTrackNode* tracked_object); 92 void FrameDetached(int64_t frame_id);
|
D | frame_impl.h | 44 int64_t frame_id);
|
D | frame_impl.cc | 66 int64_t frame_id) in CefFrameImpl() argument 67 : browser_(browser), frame_(frame), frame_id_(frame_id) {} in CefFrameImpl()
|
/third_party/cef/libcef/common/ |
D | frame_util.cc | 25 std::string GetFrameDebugString(int64_t frame_id) { in GetFrameDebugString() argument 26 uint32_t process_id = frame_id >> 32; in GetFrameDebugString() 27 uint32_t routing_id = std::numeric_limits<uint32_t>::max() & frame_id; in GetFrameDebugString() 30 ss << frame_id << " [" << process_id << "," << routing_id << "]"; in GetFrameDebugString()
|
D | frame_util.h | 61 inline content::GlobalRenderFrameHostId MakeGlobalId(int64_t frame_id) { in MakeGlobalId() argument 62 uint32_t child_id = frame_id >> 32; in MakeGlobalId() 63 uint32_t frame_routing_id = std::numeric_limits<uint32_t>::max() & frame_id; in MakeGlobalId() 78 std::string GetFrameDebugString(int64_t frame_id);
|
/third_party/gstreamer/gstplugins_good/ext/taglib/ |
D | gstid3v2mux.cc | 226 const gchar * tag, guint num_tags, const gchar * frame_id) in add_count_or_num_tag() argument 248 g_assert (frame_id && strlen (frame_id) == 4); in add_count_or_num_tag() 264 GST_DEBUG ("Setting %s to %s (frame_id = %s)", tag, tag_str, frame_id); in add_count_or_num_tag() 265 frame = new ID3v2::TextIdentificationFrame (frame_id, String::UTF8); in add_count_or_num_tag() 281 GST_DEBUG ("Setting %s to %s (frame_id = %s)", tag, tag_str, frame_id); in add_count_or_num_tag() 282 frame = new ID3v2::TextIdentificationFrame (frame_id, String::UTF8); in add_count_or_num_tag() 371 const gchar * tag, guint num_tags, const gchar * frame_id) in add_id3v2frame_tag() argument 547 const gchar * tag, guint num_tags, const gchar * frame_id) in add_text_tag() argument 553 GST_LOG ("Adding '%s' frame", frame_id); in add_text_tag() 558 GST_LOG ("%s: %s[%u] = '%s'", frame_id, tag, n, s); in add_text_tag() [all …]
|
/third_party/weston/xwayland/ |
D | window-manager.c | 139 xcb_window_t frame_id; member 764 if (!window->frame_id) in weston_wm_window_configure_frame() 771 weston_wm_configure_window(window->wm, window->frame_id, mask, values); in weston_wm_window_configure_frame() 942 weston_wm_configure_window(wm, window->frame_id, in weston_wm_send_focus_window() 1008 assert(window->frame_id != XCB_WINDOW_NONE); in weston_wm_window_set_allow_commits() 1017 window->frame_id, in weston_wm_window_set_allow_commits() 1107 window->frame_id = xcb_generate_id(wm->conn); in weston_wm_window_create_frame() 1110 window->frame_id, in weston_wm_window_create_frame() 1121 xcb_reparent_window(wm->conn, window->id, window->frame_id, x, y); in weston_wm_window_create_frame() 1130 window->frame_id, in weston_wm_window_create_frame() [all …]
|
/third_party/mesa3d/src/intel/tools/ |
D | intel_dump_gpu.c | 64 static int64_t frame_id = -1; variable 270 if (frame_id >= 0) { in dump_execbuffer2() 282 current_frame_id = frame_desc ? frame_desc->frame_id : 0; in dump_execbuffer2() 293 if (frame_id >= 0) { in dump_execbuffer2() 294 if (current_frame_id < frame_id) in dump_execbuffer2() 297 if (current_frame_id > frame_id) { in dump_execbuffer2() 473 frame_id = atol(value); in maybe_init()
|
/third_party/ffmpeg/libavcodec/ |
D | cdtoons.c | 160 uint16_t frame_id; in cdtoons_decode_frame() local 178 frame_id = bytestream_get_be16(&buf); in cdtoons_decode_frame() 226 c->sprites[sprite_id].owner_frame = frame_id; in cdtoons_decode_frame() 393 if (c->sprites[i].end_frame > frame_id) in cdtoons_decode_frame()
|
D | cbs_av1_syntax_template.c | 1359 infer(current_frame_id, ref->frame_id); in FUNC() 1433 if (priv->ref[i].frame_id > current->current_frame_id || in FUNC() 1434 priv->ref[i].frame_id < (current->current_frame_id - in FUNC() 1438 if (priv->ref[i].frame_id > current->current_frame_id && in FUNC() 1439 priv->ref[i].frame_id < ((1 << id_len) + in FUNC() 1655 .frame_id = current->current_frame_id, in FUNC()
|
/third_party/cef/libcef/browser/extensions/api/tabs/ |
D | tabs_api.cc | 311 int frame_id = details_->frame_id ? *details_->frame_id in CanExecuteScriptOnPage() local 315 frame_id); in CanExecuteScriptOnPage() 318 keys::kFrameNotFoundError, base::NumberToString(frame_id), in CanExecuteScriptOnPage()
|
/third_party/wpa_supplicant/wpa_supplicant-2.9/wpa_supplicant/dbus/ |
D | dbus_new_handlers.c | 5093 dbus_int32_t frame_id; in wpas_dbus_handler_vendor_elem_add() local 5097 dbus_message_iter_get_basic(&iter, &frame_id); in wpas_dbus_handler_vendor_elem_add() 5098 if (frame_id < 0 || frame_id >= NUM_VENDOR_ELEM_FRAMES) { in wpas_dbus_handler_vendor_elem_add() 5116 wpa_s = wpas_vendor_elem(wpa_s, frame_id); in wpas_dbus_handler_vendor_elem_add() 5117 if (!wpa_s->vendor_elem[frame_id]) { in wpas_dbus_handler_vendor_elem_add() 5118 wpa_s->vendor_elem[frame_id] = wpabuf_alloc_copy(ielems, len); in wpas_dbus_handler_vendor_elem_add() 5123 if (wpabuf_resize(&wpa_s->vendor_elem[frame_id], len) < 0) { in wpas_dbus_handler_vendor_elem_add() 5128 wpabuf_put_data(wpa_s->vendor_elem[frame_id], ielems, len); in wpas_dbus_handler_vendor_elem_add() 5139 dbus_int32_t frame_id; in wpas_dbus_handler_vendor_elem_get() local 5144 dbus_message_iter_get_basic(&iter, &frame_id); in wpas_dbus_handler_vendor_elem_get() [all …]
|
/third_party/wpa_supplicant/wpa_supplicant-2.9_standard/wpa_supplicant/dbus/ |
D | dbus_new_handlers.c | 5696 dbus_int32_t frame_id; in wpas_dbus_handler_vendor_elem_add() local 5700 dbus_message_iter_get_basic(&iter, &frame_id); in wpas_dbus_handler_vendor_elem_add() 5701 if (frame_id < 0 || frame_id >= NUM_VENDOR_ELEM_FRAMES) { in wpas_dbus_handler_vendor_elem_add() 5719 wpa_s = wpas_vendor_elem(wpa_s, frame_id); in wpas_dbus_handler_vendor_elem_add() 5720 if (!wpa_s->vendor_elem[frame_id]) { in wpas_dbus_handler_vendor_elem_add() 5721 wpa_s->vendor_elem[frame_id] = wpabuf_alloc_copy(ielems, len); in wpas_dbus_handler_vendor_elem_add() 5726 if (wpabuf_resize(&wpa_s->vendor_elem[frame_id], len) < 0) { in wpas_dbus_handler_vendor_elem_add() 5731 wpabuf_put_data(wpa_s->vendor_elem[frame_id], ielems, len); in wpas_dbus_handler_vendor_elem_add() 5742 dbus_int32_t frame_id; in wpas_dbus_handler_vendor_elem_get() local 5747 dbus_message_iter_get_basic(&iter, &frame_id); in wpas_dbus_handler_vendor_elem_get() [all …]
|
/third_party/mesa3d/src/intel/dev/ |
D | intel_debug.h | 163 uint64_t frame_id; member
|
/third_party/cef/libcef/browser/ |
D | frame_host_impl.cc | 315 const auto frame_id = GetFrameId(); in LoadURLWithExtras() local 316 if (frame_id < CefFrameHostImpl::kMainFrameId) in LoadURLWithExtras() 322 if (frame_id == CefFrameHostImpl::kMainFrameId) { in LoadURLWithExtras()
|
D | browser_contents_delegate.cc | 270 const auto frame_id = in RenderFrameDeleted() local 274 if (focused_frame_ && focused_frame_->GetIdentifier() == frame_id) { in RenderFrameDeleted()
|
/third_party/cef/tests/ceftests/ |
D | message_router_unittest.cc | 1189 EXPECT_EQ(query.frame_id, frame->GetIdentifier()) << index; in OnNotify() 1267 query.frame_id = frame->GetIdentifier(); in OnQuery() 1322 EXPECT_EQ(query.frame_id, frame->GetIdentifier()) << i; in OnQueryCanceled() 1419 frame_id(0), in TestQuery() 1427 int64 frame_id; member 2458 const int64 frame_id = frame->IsMain() ? -1 : frame->GetIdentifier(); in OnLoadStart() local 2460 const std::pair<int, int64>& id = std::make_pair(browser_id, frame_id); in OnLoadStart() 2475 const int64 frame_id = frame->IsMain() ? -1 : frame->GetIdentifier(); in GetManager() local 2479 manager_map_.find(std::make_pair(browser_id, frame_id)); in GetManager() 2481 << "browser_id = " << browser_id << ", frame_id = " << frame_id; in GetManager()
|
D | frame_unittest.cc | 352 const int64 frame_id = frame->GetIdentifier(); in SendTestResults() local 353 EXPECT_TRUE(args->SetInt(2, CefInt64GetLow(frame_id))); in SendTestResults() 354 EXPECT_TRUE(args->SetInt(3, CefInt64GetHigh(frame_id))); in SendTestResults() 489 const int64 frame_id = CefInt64Set(args->GetInt(2), args->GetInt(3)); in OnProcessMessageReceived() local 490 EXPECT_EQ(frame->GetIdentifier(), frame_id); in OnProcessMessageReceived() 837 const int64 frame_id = frame->GetIdentifier(); in VerifySingleBrowserFrame() local 838 V_EXPECT_TRUE(frame_id > 0) << frame_id; in VerifySingleBrowserFrame()
|
D | frame_handler_unittest.cc | 88 uint64 frame_id = frame->GetIdentifier(); in GetFrameDebugString() local 89 uint32_t process_id = frame_id >> 32; in GetFrameDebugString() 90 uint32_t routing_id = std::numeric_limits<uint32_t>::max() & frame_id; in GetFrameDebugString() 102 int64 frame_id() const { return frame_id_; } in frame_id() function 124 return frame->GetIdentifier() == frame_id(); in IsSame()
|
/third_party/mesa3d/src/intel/vulkan/ |
D | anv_wsi.c | 120 device->debug_frame_desc->frame_id++; in anv_QueuePresentKHR()
|