summaryrefslogtreecommitdiff
path: root/globals_func_o.html
blob: 6616b97025dd86e13b27642132e6f252ccf30c68 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/>
<meta http-equiv="X-UA-Compatible" content="IE=9"/>
<meta name="generator" content="Doxygen 1.8.6"/>
<title>navit: Globals</title>
<link href="tabs.css" rel="stylesheet" type="text/css"/>
<script type="text/javascript" src="jquery.js"></script>
<script type="text/javascript" src="dynsections.js"></script>
<link href="navtree.css" rel="stylesheet" type="text/css"/>
<script type="text/javascript" src="resize.js"></script>
<script type="text/javascript" src="navtree.js"></script>
<script type="text/javascript">
  $(document).ready(initResizable);
  $(window).load(resizeHeight);
</script>
<link href="search/search.css" rel="stylesheet" type="text/css"/>
<script type="text/javascript" src="search/search.js"></script>
<script type="text/javascript">
  $(document).ready(function() { searchBox.OnSelectItem(0); });
</script>
<link href="doxygen.css" rel="stylesheet" type="text/css" />
</head>
<body>
<div id="top"><!-- do not remove this div, it is closed by doxygen! -->
<div id="titlearea">
<table cellspacing="0" cellpadding="0">
 <tbody>
 <tr style="height: 56px;">
  <td style="padding-left: 0.5em;">
   <div id="projectname">navit
   &#160;<span id="projectnumber">0.5.3-trunk</span>
   </div>
  </td>
 </tr>
 </tbody>
</table>
</div>
<!-- end header part -->
<!-- Generated by Doxygen 1.8.6 -->
<script type="text/javascript">
var searchBox = new SearchBox("searchBox", "search",false,'Search');
</script>
  <div id="navrow1" class="tabs">
    <ul class="tablist">
      <li><a href="index.html"><span>Main&#160;Page</span></a></li>
      <li><a href="modules.html"><span>Modules</span></a></li>
      <li><a href="namespaces.html"><span>Namespaces</span></a></li>
      <li><a href="annotated.html"><span>Data&#160;Structures</span></a></li>
      <li class="current"><a href="files.html"><span>Files</span></a></li>
      <li>
        <div id="MSearchBox" class="MSearchBoxInactive">
        <span class="left">
          <img id="MSearchSelect" src="search/mag_sel.png"
               onmouseover="return searchBox.OnSearchSelectShow()"
               onmouseout="return searchBox.OnSearchSelectHide()"
               alt=""/>
          <input type="text" id="MSearchField" value="Search" accesskey="S"
               onfocus="searchBox.OnSearchFieldFocus(true)" 
               onblur="searchBox.OnSearchFieldFocus(false)" 
               onkeyup="searchBox.OnSearchFieldChange(event)"/>
          </span><span class="right">
            <a id="MSearchClose" href="javascript:searchBox.CloseResultsWindow()"><img id="MSearchCloseImg" border="0" src="search/close.png" alt=""/></a>
          </span>
        </div>
      </li>
    </ul>
  </div>
  <div id="navrow2" class="tabs2">
    <ul class="tablist">
      <li><a href="files.html"><span>File&#160;List</span></a></li>
      <li class="current"><a href="globals.html"><span>Globals</span></a></li>
    </ul>
  </div>
  <div id="navrow3" class="tabs2">
    <ul class="tablist">
      <li><a href="globals.html"><span>All</span></a></li>
      <li class="current"><a href="globals_func.html"><span>Functions</span></a></li>
      <li><a href="globals_vars.html"><span>Variables</span></a></li>
      <li><a href="globals_type.html"><span>Typedefs</span></a></li>
      <li><a href="globals_enum.html"><span>Enumerations</span></a></li>
      <li><a href="globals_eval.html"><span>Enumerator</span></a></li>
      <li><a href="globals_defs.html"><span>Macros</span></a></li>
    </ul>
  </div>
  <div id="navrow4" class="tabs3">
    <ul class="tablist">
      <li><a href="globals_func.html#index__"><span>_</span></a></li>
      <li><a href="globals_func_a.html#index_a"><span>a</span></a></li>
      <li><a href="globals_func_b.html#index_b"><span>b</span></a></li>
      <li><a href="globals_func_c.html#index_c"><span>c</span></a></li>
      <li><a href="globals_func_d.html#index_d"><span>d</span></a></li>
      <li><a href="globals_func_e.html#index_e"><span>e</span></a></li>
      <li><a href="globals_func_f.html#index_f"><span>f</span></a></li>
      <li><a href="globals_func_g.html#index_g"><span>g</span></a></li>
      <li><a href="globals_func_h.html#index_h"><span>h</span></a></li>
      <li><a href="globals_func_i.html#index_i"><span>i</span></a></li>
      <li><a href="globals_func_j.html#index_j"><span>j</span></a></li>
      <li><a href="globals_func_k.html#index_k"><span>k</span></a></li>
      <li><a href="globals_func_l.html#index_l"><span>l</span></a></li>
      <li><a href="globals_func_m.html#index_m"><span>m</span></a></li>
      <li><a href="globals_func_n.html#index_n"><span>n</span></a></li>
      <li class="current"><a href="globals_func_o.html#index_o"><span>o</span></a></li>
      <li><a href="globals_func_p.html#index_p"><span>p</span></a></li>
      <li><a href="globals_func_q.html#index_q"><span>q</span></a></li>
      <li><a href="globals_func_r.html#index_r"><span>r</span></a></li>
      <li><a href="globals_func_s.html#index_s"><span>s</span></a></li>
      <li><a href="globals_func_t.html#index_t"><span>t</span></a></li>
      <li><a href="globals_func_u.html#index_u"><span>u</span></a></li>
      <li><a href="globals_func_v.html#index_v"><span>v</span></a></li>
      <li><a href="globals_func_w.html#index_w"><span>w</span></a></li>
      <li><a href="globals_func_x.html#index_x"><span>x</span></a></li>
      <li><a href="globals_func_z.html#index_z"><span>z</span></a></li>
    </ul>
  </div>
</div><!-- top -->
<div id="side-nav" class="ui-resizable side-nav-resizable">
  <div id="nav-tree">
    <div id="nav-tree-contents">
      <div id="nav-sync" class="sync"></div>
    </div>
  </div>
  <div id="splitbar" style="-moz-user-select:none;" 
       class="ui-resizable-handle">
  </div>
</div>
<script type="text/javascript">
$(document).ready(function(){initNavTree('globals_func_o.html','');});
</script>
<div id="doc-content">
<!-- window showing the filter options -->
<div id="MSearchSelectWindow"
     onmouseover="return searchBox.OnSearchSelectShow()"
     onmouseout="return searchBox.OnSearchSelectHide()"
     onkeydown="return searchBox.OnSearchSelectKey(event)">
<a class="SelectItem" href="javascript:void(0)" onclick="searchBox.OnSelectItem(0)"><span class="SelectionMark">&#160;</span>All</a><a class="SelectItem" href="javascript:void(0)" onclick="searchBox.OnSelectItem(1)"><span class="SelectionMark">&#160;</span>Data Structures</a><a class="SelectItem" href="javascript:void(0)" onclick="searchBox.OnSelectItem(2)"><span class="SelectionMark">&#160;</span>Namespaces</a><a class="SelectItem" href="javascript:void(0)" onclick="searchBox.OnSelectItem(3)"><span class="SelectionMark">&#160;</span>Files</a><a class="SelectItem" href="javascript:void(0)" onclick="searchBox.OnSelectItem(4)"><span class="SelectionMark">&#160;</span>Functions</a><a class="SelectItem" href="javascript:void(0)" onclick="searchBox.OnSelectItem(5)"><span class="SelectionMark">&#160;</span>Variables</a><a class="SelectItem" href="javascript:void(0)" onclick="searchBox.OnSelectItem(6)"><span class="SelectionMark">&#160;</span>Typedefs</a><a class="SelectItem" href="javascript:void(0)" onclick="searchBox.OnSelectItem(7)"><span class="SelectionMark">&#160;</span>Enumerations</a><a class="SelectItem" href="javascript:void(0)" onclick="searchBox.OnSelectItem(8)"><span class="SelectionMark">&#160;</span>Enumerator</a><a class="SelectItem" href="javascript:void(0)" onclick="searchBox.OnSelectItem(9)"><span class="SelectionMark">&#160;</span>Properties</a><a class="SelectItem" href="javascript:void(0)" onclick="searchBox.OnSelectItem(10)"><span class="SelectionMark">&#160;</span>Macros</a><a class="SelectItem" href="javascript:void(0)" onclick="searchBox.OnSelectItem(11)"><span class="SelectionMark">&#160;</span>Groups</a></div>

<!-- iframe showing the search results (closed by default) -->
<div id="MSearchResultsWindow">
<iframe src="javascript:void(0)" frameborder="0" 
        name="MSearchResults" id="MSearchResults">
</iframe>
</div>

<div class="contents">
&#160;

<h3><a class="anchor" id="index_o"></a>- o -</h3><ul>
<li>o5m_print_end()
: <a class="el" href="osm__o5m_8c.html#a3250709e0ca63014d47578223cffdeb8">osm_o5m.c</a>
</li>
<li>o5m_print_start()
: <a class="el" href="osm__o5m_8c.html#a2aff4f65cd052fbf0957c6c076f0342f">osm_o5m.c</a>
</li>
<li>o5m_print_version()
: <a class="el" href="osm__o5m_8c.html#a903fd322b0f7b5931f6fe42d9f065df3">osm_o5m.c</a>
</li>
<li>o5m_reset()
: <a class="el" href="osm__o5m_8c.html#a317005824e8ade840f637da3d76ec3ba">osm_o5m.c</a>
</li>
<li>object_destroy()
: <a class="el" href="binding__dbus_8c.html#a44c0e423524529360a4d91b125cb2631">binding_dbus.c</a>
</li>
<li>object_func_lookup()
: <a class="el" href="xmlconfig_8c.html#aa0aedbfd467d2009ac65a983734fc556">xmlconfig.c</a>
, <a class="el" href="xmlconfig_8h.html#aa0aedbfd467d2009ac65a983734fc556">xmlconfig.h</a>
</li>
<li>object_get()
: <a class="el" href="binding__dbus_8c.html#a04a11914acfac0c08bd1e68c87f5330d">binding_dbus.c</a>
</li>
<li>object_get_from_message()
: <a class="el" href="binding__dbus_8c.html#a7ebb60105821d743e0fb8a0af9c54ab3">binding_dbus.c</a>
</li>
<li>object_get_from_message_arg()
: <a class="el" href="binding__dbus_8c.html#a1263f3bbf1f8a619e983c02a550be212">binding_dbus.c</a>
</li>
<li>object_new()
: <a class="el" href="binding__dbus_8c.html#ae5004b94d134c98ffd9648b9ae27223d">binding_dbus.c</a>
</li>
<li>ocean_tile()
: <a class="el" href="coastline_8c.html#a8aa0bfc7a3ec2e8995694d2e845d1513">coastline.c</a>
</li>
<li>optional_field_get_packed_size()
: <a class="el" href="protobuf-c_8c.html#abd5aa75fb77faecc0463927b7fbd50b1">protobuf-c.c</a>
</li>
<li>optional_field_pack()
: <a class="el" href="protobuf-c_8c.html#ae44bbf77114b62960a7f893e0646791b">protobuf-c.c</a>
</li>
<li>optional_field_pack_to_buffer()
: <a class="el" href="protobuf-c_8c.html#a3ac3ceeef55fb4c4f43814c95553bc84">protobuf-c.c</a>
</li>
<li>orient_north_action()
: <a class="el" href="gui__gtk__action_8c.html#a3d8429623b54b09bb2803696d937f046">gui_gtk_action.c</a>
</li>
<li>osd_auxmap_draw()
: <a class="el" href="osd__core_8c.html#ab13875a27a976a250b1ddb86d58e51fd">osd_core.c</a>
</li>
<li>osd_auxmap_init()
: <a class="el" href="osd__core_8c.html#abc9d95c4344a692fcab4f064296eb2fb">osd_core.c</a>
</li>
<li>osd_auxmap_new()
: <a class="el" href="osd__core_8c.html#afa6b147b7aaa90537e66f2d9436d5def">osd_core.c</a>
</li>
<li>osd_button_adjust_sizes()
: <a class="el" href="osd__core_8c.html#ad31685cba303004d74b4217daa739769">osd_core.c</a>
</li>
<li>osd_button_draw()
: <a class="el" href="osd__core_8c.html#a09f749f519b34f86df39a93da933de5a">osd_core.c</a>
</li>
<li>osd_button_icon_path()
: <a class="el" href="osd__core_8c.html#a633ca34ff1b3e0677d085fae28ab4134">osd_core.c</a>
</li>
<li>osd_button_init()
: <a class="el" href="osd__core_8c.html#a892be7caa40ecd5edf2f9cd3fb3cc8e6">osd_core.c</a>
</li>
<li>osd_button_new()
: <a class="el" href="osd__core_8c.html#ad3b664888811fb5afe99e4ef74a5ca0f">osd_core.c</a>
</li>
<li>osd_button_set_attr()
: <a class="el" href="osd__core_8c.html#a8bb59c3fab9118c86b60005f2d3fbada">osd_core.c</a>
</li>
<li>osd_cmd_interface_draw()
: <a class="el" href="osd__core_8c.html#a99c2e93db2ce347aef3fa40d045400bb">osd_core.c</a>
</li>
<li>osd_cmd_interface_init()
: <a class="el" href="osd__core_8c.html#ab6e27365e27098126d1004a72d9c11f0">osd_core.c</a>
</li>
<li>osd_cmd_interface_new()
: <a class="el" href="osd__core_8c.html#a7fdfea054db0acf8ac7ad34791bfd205">osd_core.c</a>
</li>
<li>osd_cmd_interface_set_attr()
: <a class="el" href="osd__core_8c.html#a645079a2f2e1c73580efc65ae8a1efe4">osd_core.c</a>
</li>
<li>osd_cmd_odometer_reset()
: <a class="el" href="osd__core_8c.html#ae456377abc0f90e39d378eb702877e79">osd_core.c</a>
</li>
<li>osd_compass_draw()
: <a class="el" href="osd__core_8c.html#a8ec589bef5aa2b80cf52734966b98332">osd_core.c</a>
</li>
<li>osd_compass_init()
: <a class="el" href="osd__core_8c.html#a3e2140721a5b43a86b971cef5a3a60dc">osd_core.c</a>
</li>
<li>osd_compass_new()
: <a class="el" href="osd__core_8c.html#a50757652eb51c7bf535b060f3cbd59f2">osd_core.c</a>
</li>
<li>osd_destroy()
: <a class="el" href="osd_8c.html#adb85c6bb843f617e8d8a33b7b25f139a">osd.c</a>
</li>
<li>osd_evaluate_command()
: <a class="el" href="osd_8c.html#a0cea1894cc85b4456485c0d55abca10d">osd.c</a>
</li>
<li>osd_fill_with_bgcolor()
: <a class="el" href="osd_8c.html#a9f451d32667e1745917e76a9133bb469">osd.c</a>
, <a class="el" href="osd_8h.html#a9f451d32667e1745917e76a9133bb469">osd.h</a>
</li>
<li>osd_get_attr()
: <a class="el" href="osd_8c.html#af06e33c03ece06ebd596ca8014784a09">osd.c</a>
, <a class="el" href="osd_8h.html#a913b3b1aa3bc3cd937e1b525b5a0850c">osd.h</a>
</li>
<li>osd_gps_status_draw()
: <a class="el" href="osd__core_8c.html#a03027a6fcacad6b9d1c39ef2f4fa0a70">osd_core.c</a>
</li>
<li>osd_gps_status_init()
: <a class="el" href="osd__core_8c.html#aa403197294b888b5c905fa73e1ec201d">osd_core.c</a>
</li>
<li>osd_gps_status_new()
: <a class="el" href="osd__core_8c.html#aeaa0fb8ccb06e2278bc0bf0a2ff7eb21">osd_core.c</a>
</li>
<li>osd_image_init()
: <a class="el" href="osd__core_8c.html#adda8a31b4d24cb52be0399e0c8e385e0">osd_core.c</a>
</li>
<li>osd_image_new()
: <a class="el" href="osd__core_8c.html#aa6b8ca8cb55392e3cd0932af437b7af5">osd_core.c</a>
</li>
<li>osd_j1850_draw()
: <a class="el" href="j1850_8c.html#a7573663581a3c8705b05d27749bdb8ad">j1850.c</a>
</li>
<li>osd_j1850_init()
: <a class="el" href="j1850_8c.html#ad1ef6324654f6f1304d80352e3f45883">j1850.c</a>
</li>
<li>osd_j1850_new()
: <a class="el" href="j1850_8c.html#ac512538cc3238daa506bcd0f97ac02c1">j1850.c</a>
</li>
<li>osd_marker_draw()
: <a class="el" href="pedestrian_8c.html#a63174cf17c51471d01220c5cf3771186">pedestrian.c</a>
</li>
<li>osd_marker_init()
: <a class="el" href="pedestrian_8c.html#a214dd049f989d338f8c24a2e9aeff1f8">pedestrian.c</a>
</li>
<li>osd_marker_new()
: <a class="el" href="pedestrian_8c.html#af431ece22807e7b4866f9ace494da319">pedestrian.c</a>
</li>
<li>osd_nav_next_turn_draw()
: <a class="el" href="osd__core_8c.html#a0c9ad7b4a3685122f1d9c384df3b9b1a">osd_core.c</a>
</li>
<li>osd_nav_next_turn_init()
: <a class="el" href="osd__core_8c.html#a2d8822e815a47171f458b0bd738829ab">osd_core.c</a>
</li>
<li>osd_nav_next_turn_new()
: <a class="el" href="osd__core_8c.html#a780809f760fafbbd3e2844ce6ff474b5">osd_core.c</a>
</li>
<li>osd_nav_toggle_announcer_draw()
: <a class="el" href="osd__core_8c.html#acc7a4456ae3b97ce79a9f2f26e572369">osd_core.c</a>
</li>
<li>osd_nav_toggle_announcer_init()
: <a class="el" href="osd__core_8c.html#a0192dba3b2404d05924ee6e549a40a07">osd_core.c</a>
</li>
<li>osd_nav_toggle_announcer_new()
: <a class="el" href="osd__core_8c.html#a35e720d1cbf3f99c49771b127f9dcc3d">osd_core.c</a>
</li>
<li>osd_navigation_status_draw()
: <a class="el" href="osd__core_8c.html#abbb620baa02edaa3e6791b74aebdfd2d">osd_core.c</a>
</li>
<li>osd_navigation_status_draw_do()
: <a class="el" href="osd__core_8c.html#a31508e7bce72fa26ea10c53396dccfc1">osd_core.c</a>
</li>
<li>osd_navigation_status_init()
: <a class="el" href="osd__core_8c.html#adc66e4993642c241acad607deb5037e0">osd_core.c</a>
</li>
<li>osd_navigation_status_new()
: <a class="el" href="osd__core_8c.html#aaabff5e5a10dc18572270136755511e9">osd_core.c</a>
</li>
<li>osd_new()
: <a class="el" href="osd_8c.html#a2fe824b03a6b5cd14326fac42470beba">osd.c</a>
, <a class="el" href="osd_8h.html#a2fe824b03a6b5cd14326fac42470beba">osd.h</a>
</li>
<li>osd_odometer_click()
: <a class="el" href="osd__core_8c.html#a724408781c49ba5be97640a72ecf5a65">osd_core.c</a>
</li>
<li>osd_odometer_destroy()
: <a class="el" href="osd__core_8c.html#a239eae2eb18a37c54c41361088cfa5e8">osd_core.c</a>
</li>
<li>osd_odometer_draw()
: <a class="el" href="osd__core_8c.html#a043e8cab591d1f6e333932e16b830863">osd_core.c</a>
</li>
<li>osd_odometer_from_string()
: <a class="el" href="osd__core_8c.html#a2fbabc69afb9eb964b604ce49d4e0b60">osd_core.c</a>
</li>
<li>osd_odometer_init()
: <a class="el" href="osd__core_8c.html#af8725b58572fcb153196e0a7878eb022">osd_core.c</a>
</li>
<li>osd_odometer_new()
: <a class="el" href="osd__core_8c.html#a0efbcc8c6d0c34bb37ee5223fc6ec036">osd_core.c</a>
</li>
<li>osd_odometer_reset()
: <a class="el" href="osd__core_8c.html#a4e3b77a2357c91f6e78a9ca5e609f3d0">osd_core.c</a>
</li>
<li>osd_odometer_save()
: <a class="el" href="osd__core_8c.html#a0de7aff9291b9a9f2a62e32d13aec143">osd_core.c</a>
</li>
<li>osd_odometer_to_string()
: <a class="el" href="osd__core_8c.html#ac3567b5f54e37121bca25ce9c99d5bda">osd_core.c</a>
</li>
<li>osd_rocket_init()
: <a class="el" href="pedestrian_8c.html#a78b45610990186012f5aa489a94e85a6">pedestrian.c</a>
</li>
<li>osd_route_guard_destroy()
: <a class="el" href="osd__core_8c.html#ada7385525fec51a91f8d73400e96ea5a">osd_core.c</a>
</li>
<li>osd_route_guard_draw()
: <a class="el" href="osd__core_8c.html#ad86e59ee7e69545d881064ea9d27b700">osd_core.c</a>
</li>
<li>osd_route_guard_init()
: <a class="el" href="osd__core_8c.html#a4f5922c0e7f4e1e1e7aef609a1c77553">osd_core.c</a>
</li>
<li>osd_route_guard_new()
: <a class="el" href="osd__core_8c.html#a800421f5b5e7273c4a1bf15cbdfbcfcc">osd_core.c</a>
</li>
<li>osd_scale_draw()
: <a class="el" href="osd__core_8c.html#ab1ba9b04384d99394e2f2c4f2824dcc8">osd_core.c</a>
</li>
<li>osd_scale_init()
: <a class="el" href="osd__core_8c.html#a0a63f0db3ffa0d62d6acf724b1bef804">osd_core.c</a>
</li>
<li>osd_scale_new()
: <a class="el" href="osd__core_8c.html#a7cd4b1b8ee584c7f8db6287af1d83dd4">osd_core.c</a>
</li>
<li>osd_set_attr()
: <a class="el" href="osd_8c.html#aac49f97b5a2c83888fb509638e9aa1d2">osd.c</a>
, <a class="el" href="osd_8h.html#aac49f97b5a2c83888fb509638e9aa1d2">osd.h</a>
</li>
<li>osd_set_keypress()
: <a class="el" href="osd_8c.html#aece83edca7d9c275c679d5ab91ab23b9">osd.c</a>
, <a class="el" href="osd_8h.html#aece83edca7d9c275c679d5ab91ab23b9">osd.h</a>
</li>
<li>osd_set_methods()
: <a class="el" href="osd_8c.html#a16b2ab73df0e992026741c0c0e2fd7c6">osd.c</a>
, <a class="el" href="osd_8h.html#a16b2ab73df0e992026741c0c0e2fd7c6">osd.h</a>
</li>
<li>osd_set_std_attr()
: <a class="el" href="osd_8c.html#a45434510477f4d91bb5cc6fc12ab158a">osd.c</a>
, <a class="el" href="osd_8h.html#a45434510477f4d91bb5cc6fc12ab158a">osd.h</a>
</li>
<li>osd_set_std_config()
: <a class="el" href="osd_8c.html#ac5ce4100d6001b5ee914966a0d6dcff3">osd.c</a>
, <a class="el" href="osd_8h.html#ac5ce4100d6001b5ee914966a0d6dcff3">osd.h</a>
</li>
<li>osd_set_std_graphic()
: <a class="el" href="osd_8c.html#a81f8a476d02d720a1b174604901d0218">osd.c</a>
, <a class="el" href="osd_8h.html#a81f8a476d02d720a1b174604901d0218">osd.h</a>
</li>
<li>osd_speed_cam_draw()
: <a class="el" href="osd__core_8c.html#a3514a42388b0ba41998fd818ebb5f955">osd_core.c</a>
</li>
<li>osd_speed_cam_init()
: <a class="el" href="osd__core_8c.html#a43d8d93b1c43ab6a400e14c1c6bef016">osd_core.c</a>
</li>
<li>osd_speed_cam_new()
: <a class="el" href="osd__core_8c.html#ac59b9f9204702c0664d183ac7d5aedb9">osd_core.c</a>
</li>
<li>osd_speed_warner_click()
: <a class="el" href="osd__core_8c.html#ac547892c4ca2534c2107cfab29f4cf7f">osd_core.c</a>
</li>
<li>osd_speed_warner_draw()
: <a class="el" href="osd__core_8c.html#a1ce7bb2ebe64ec44f110191075c41fa4">osd_core.c</a>
</li>
<li>osd_speed_warner_init()
: <a class="el" href="osd__core_8c.html#a8c65044e8d67a2db41140add7bc440c3">osd_core.c</a>
</li>
<li>osd_speed_warner_new()
: <a class="el" href="osd__core_8c.html#a9f377ef7b8015741243943c673a0aaaf">osd_core.c</a>
</li>
<li>osd_std_calculate_sizes()
: <a class="el" href="osd_8c.html#a929980a461a454eca26d040c59803bd8">osd.c</a>
, <a class="el" href="osd_8h.html#a929980a461a454eca26d040c59803bd8">osd.h</a>
</li>
<li>osd_std_calculate_sizes_and_redraw()
: <a class="el" href="osd_8c.html#a28fa0ca7ae459f1072a0ce664a44fcb3">osd.c</a>
</li>
<li>osd_std_click()
: <a class="el" href="osd_8c.html#a26f0bde6f55a50f12da03f8ac6cfb6bc">osd.c</a>
, <a class="el" href="osd_8h.html#a26f0bde6f55a50f12da03f8ac6cfb6bc">osd.h</a>
</li>
<li>osd_std_config()
: <a class="el" href="osd_8c.html#a8a9e2216ef5c2518a7a8eafa9afb512a">osd.c</a>
, <a class="el" href="osd_8h.html#a8a9e2216ef5c2518a7a8eafa9afb512a">osd.h</a>
</li>
<li>osd_std_keypress()
: <a class="el" href="osd_8c.html#a1b9e645274f564510081ee3ccef39248">osd.c</a>
</li>
<li>osd_std_reconfigure()
: <a class="el" href="osd_8c.html#aeed87021e661362f1a2983451b229157">osd.c</a>
</li>
<li>osd_std_resize()
: <a class="el" href="osd_8c.html#a5c50d66d4e1ed209330c5d5f8313b0b7">osd.c</a>
, <a class="el" href="osd_8h.html#a5c50d66d4e1ed209330c5d5f8313b0b7">osd.h</a>
</li>
<li>osd_stopwatch_click()
: <a class="el" href="osd__core_8c.html#a4ae768b4c919bdfb71d8066514462d6c">osd_core.c</a>
</li>
<li>osd_stopwatch_draw()
: <a class="el" href="osd__core_8c.html#a769bb80e8557a8a7208da0721c5e36af">osd_core.c</a>
</li>
<li>osd_stopwatch_init()
: <a class="el" href="osd__core_8c.html#a01764c7c3edac5d89301b21301be277b">osd_core.c</a>
</li>
<li>osd_stopwatch_new()
: <a class="el" href="osd__core_8c.html#a4ecde268d9cd5b31973a08681a134f36">osd_core.c</a>
</li>
<li>osd_text_draw()
: <a class="el" href="osd__core_8c.html#ad1b3aad9b6f3d02df61bea4c5759ebb4">osd_core.c</a>
</li>
<li>osd_text_format_attr()
: <a class="el" href="osd__core_8c.html#a5931ef28c52eba156129c563fa2fcaaa">osd_core.c</a>
</li>
<li>osd_text_init()
: <a class="el" href="osd__core_8c.html#a5c2e823692b9d53b02221a3309cfd3e2">osd_core.c</a>
</li>
<li>osd_text_new()
: <a class="el" href="osd__core_8c.html#ad585f4d46ae29a72c6510c910085a3b5">osd_core.c</a>
</li>
<li>osd_text_prepare()
: <a class="el" href="osd__core_8c.html#af3add24bf92c416e5ffec27533e03ea8">osd_core.c</a>
</li>
<li>osd_text_set_attr()
: <a class="el" href="osd__core_8c.html#af2c0df538d3dc08a01194d6e2503f916">osd_core.c</a>
</li>
<li>osd_text_split()
: <a class="el" href="osd__core_8c.html#a2df18bc75d683c27c3c80205e7f2e60e">osd_core.c</a>
</li>
<li>osd_volume_click()
: <a class="el" href="osd__core_8c.html#af38f3240c89a339eec782b87faa215d6">osd_core.c</a>
</li>
<li>osd_volume_draw()
: <a class="el" href="osd__core_8c.html#a850a1c85c18124e392ed6dea5241b574">osd_core.c</a>
</li>
<li>osd_volume_init()
: <a class="el" href="osd__core_8c.html#a0f1c6d57c8eb8da79cd2194161eb300a">osd_core.c</a>
</li>
<li>osd_volume_new()
: <a class="el" href="osd__core_8c.html#ac6e2c6ca9936d49bf3d2d48ddf5f3eaf">osd_core.c</a>
</li>
<li>osd_wrap_point()
: <a class="el" href="osd_8c.html#aa79a5d89c36797f8824e64c68b2030b3">osd.c</a>
, <a class="el" href="osd_8h.html#aa79a5d89c36797f8824e64c68b2030b3">osd.h</a>
</li>
<li>osm_add_member()
: <a class="el" href="osm_8c.html#a4a31d18c3a1965674d41a1324b76d681">osm.c</a>
, <a class="el" href="maptool_8h.html#a4a31d18c3a1965674d41a1324b76d681">maptool.h</a>
</li>
<li>osm_add_nd()
: <a class="el" href="maptool_8h.html#a05350256b7eab030e5e8fa0ecea474b8">maptool.h</a>
, <a class="el" href="osm_8c.html#a05350256b7eab030e5e8fa0ecea474b8">osm.c</a>
</li>
<li>osm_add_node()
: <a class="el" href="maptool_8h.html#ae71f3d48c70c87462aab963cab03823c">maptool.h</a>
, <a class="el" href="osm_8c.html#ae71f3d48c70c87462aab963cab03823c">osm.c</a>
</li>
<li>osm_add_relation()
: <a class="el" href="maptool_8h.html#a93ce9e5a0e1e137acc70d3eefa21561e">maptool.h</a>
, <a class="el" href="osm_8c.html#a93ce9e5a0e1e137acc70d3eefa21561e">osm.c</a>
</li>
<li>osm_add_tag()
: <a class="el" href="maptool_8h.html#accd91b701d1f0fc2a655a113f8290d03">maptool.h</a>
, <a class="el" href="osm_8c.html#accd91b701d1f0fc2a655a113f8290d03">osm.c</a>
</li>
<li>osm_add_way()
: <a class="el" href="maptool_8h.html#a85a9827ff7a954ff558761c1e5d5e970">maptool.h</a>
, <a class="el" href="osm_8c.html#a85a9827ff7a954ff558761c1e5d5e970">osm.c</a>
</li>
<li>osm_count_references()
: <a class="el" href="maptool_8c.html#a0fe4352dda41b14a61340f04c4957620">maptool.c</a>
</li>
<li>osm_end_node()
: <a class="el" href="maptool_8h.html#af9890c520ad82b151ce671543bca08e5">maptool.h</a>
, <a class="el" href="osm_8c.html#af9890c520ad82b151ce671543bca08e5">osm.c</a>
</li>
<li>osm_end_relation()
: <a class="el" href="maptool_8h.html#a61f383198dffeaf864c0531244f05c3e">maptool.h</a>
, <a class="el" href="osm_8c.html#a61f383198dffeaf864c0531244f05c3e">osm.c</a>
</li>
<li>osm_end_way()
: <a class="el" href="maptool_8h.html#a0bed289058f53c984abdc01b4693795f">maptool.h</a>
, <a class="el" href="osm_8c.html#a0bed289058f53c984abdc01b4693795f">osm.c</a>
</li>
<li>osm_info()
: <a class="el" href="maptool_8h.html#a8561bc661b1a9ca430b5d2b917c00a83">maptool.h</a>
, <a class="el" href="osm_8c.html#a8561bc661b1a9ca430b5d2b917c00a83">osm.c</a>
</li>
<li>osm_init()
: <a class="el" href="maptool_8h.html#ace76a2327c426a000c1950e33bfa4e5b">maptool.h</a>
, <a class="el" href="osm_8c.html#a9d857b84eef4a86d4e03c79495bbf921">osm.c</a>
</li>
<li>osm_logv()
: <a class="el" href="osm_8c.html#a5d4ceb7d8179a7cfd9e2016e3a531d2c">osm.c</a>
</li>
<li>osm_process_coastlines()
: <a class="el" href="maptool_8c.html#a8f4b5d22f5f9368aee2052dd6216a397">maptool.c</a>
</li>
<li>osm_process_town_by_boundary()
: <a class="el" href="osm_8c.html#a3a15293347c2b5f7a55dfbefa9236a12">osm.c</a>
</li>
<li>osm_process_town_by_boundary_update_attrs()
: <a class="el" href="osm_8c.html#a5b4f1d7df517696016c14246b0595d4d">osm.c</a>
</li>
<li>osm_process_town_by_is_in()
: <a class="el" href="osm_8c.html#afa2d03826922ba3b286084771a88c398">osm.c</a>
</li>
<li>osm_process_town_get_town_name_from_is_in()
: <a class="el" href="osm_8c.html#adac7218fd615978d808d31aab656dd41">osm.c</a>
</li>
<li>osm_process_town_unknown_country()
: <a class="el" href="osm_8c.html#ad1ef676f610b0eebe4cec1db0d2eac18">osm.c</a>
</li>
<li>osm_process_towns()
: <a class="el" href="maptool_8h.html#ab6841dafa85a370fd4be2c0b315782b0">maptool.h</a>
, <a class="el" href="osm_8c.html#ab6841dafa85a370fd4be2c0b315782b0">osm.c</a>
</li>
<li>osm_process_turn_restrictions()
: <a class="el" href="maptool_8c.html#a956a8a99c8a340e71337cd92aa7b8a08">maptool.c</a>
</li>
<li>osm_process_way2poi()
: <a class="el" href="maptool_8c.html#a125d204b1c05df0ab8131dc9e46e4785">maptool.c</a>
</li>
<li>osm_protobufdb_end_node()
: <a class="el" href="osm__protobufdb_8c.html#ac423edf1442d441b4c191465bcde2130">osm_protobufdb.c</a>
</li>
<li>osm_protobufdb_end_relation()
: <a class="el" href="osm__protobufdb_8c.html#a7f49a31a738a6f490aa49e910009cb0f">osm_protobufdb.c</a>
</li>
<li>osm_protobufdb_end_way()
: <a class="el" href="osm__protobufdb_8c.html#aeaf5f4b61ac365f292151e911bc696ea">osm_protobufdb.c</a>
</li>
<li>osm_protobufdb_finish_block()
: <a class="el" href="osm__protobufdb_8c.html#a5b3d99a5918f45872c6f0090d0a7e8fc">osm_protobufdb.c</a>
</li>
<li>osm_protobufdb_finish_file()
: <a class="el" href="osm__protobufdb_8c.html#a2abb2eca5228a2424e6fb5ec43154d28">osm_protobufdb.c</a>
</li>
<li>osm_protobufdb_insert_node()
: <a class="el" href="osm__protobufdb_8c.html#ae1c1349a7f3e81ec54499fa2628ca544">osm_protobufdb.c</a>
</li>
<li>osm_protobufdb_insert_relation()
: <a class="el" href="osm__protobufdb_8c.html#a1ede8f4b3b56cac1fb5d5ef22bab56ab">osm_protobufdb.c</a>
</li>
<li>osm_protobufdb_insert_way()
: <a class="el" href="osm__protobufdb_8c.html#a87ffc6f97642be98b718b45aa975fd68">osm_protobufdb.c</a>
</li>
<li>osm_protobufdb_load()
: <a class="el" href="maptool_8h.html#a5ce25b2aa503a492e79ba264cb821c66">maptool.h</a>
, <a class="el" href="osm__protobufdb_8c.html#a5ce25b2aa503a492e79ba264cb821c66">osm_protobufdb.c</a>
</li>
<li>osm_protobufdb_modify_node()
: <a class="el" href="osm__protobufdb_8c.html#a153191f65c77e5480de41f52d2ad2a28">osm_protobufdb.c</a>
</li>
<li>osm_protobufdb_modify_relation()
: <a class="el" href="osm__protobufdb_8c.html#a833337735c381caa19116073d7b7d577">osm_protobufdb.c</a>
</li>
<li>osm_protobufdb_modify_way()
: <a class="el" href="osm__protobufdb_8c.html#a7594fedd426f2bd8a3e216f555b55506">osm_protobufdb.c</a>
</li>
<li>osm_protobufdb_parse_info()
: <a class="el" href="osm__protobufdb_8c.html#a85616d3999cdd1feafcd433ff6c7ec4b">osm_protobufdb.c</a>
</li>
<li>osm_protobufdb_parse_member()
: <a class="el" href="osm__protobufdb_8c.html#a13fdec16484ee8a4223016c2acdb91d7">osm_protobufdb.c</a>
</li>
<li>osm_protobufdb_parse_nd()
: <a class="el" href="osm__protobufdb_8c.html#a1f19561947b469c855ba3e13ef9f6505">osm_protobufdb.c</a>
</li>
<li>osm_protobufdb_parse_node()
: <a class="el" href="osm__protobufdb_8c.html#ae51c3fdcef93d353c01efe149a342cbb">osm_protobufdb.c</a>
</li>
<li>osm_protobufdb_parse_relation()
: <a class="el" href="osm__protobufdb_8c.html#a62608ec5c89fa3632c6f6a3363f1d835">osm_protobufdb.c</a>
</li>
<li>osm_protobufdb_parse_tag()
: <a class="el" href="osm__protobufdb_8c.html#aa974e43e81bac0fa71645a12f602558d">osm_protobufdb.c</a>
</li>
<li>osm_protobufdb_parse_way()
: <a class="el" href="osm__protobufdb_8c.html#a0a7c78917934bbdd19fbd1464a63fcc9">osm_protobufdb.c</a>
</li>
<li>osm_protobufdb_start_block()
: <a class="el" href="osm__protobufdb_8c.html#a48ec5096cf79c31dbf84d49c90b40c5e">osm_protobufdb.c</a>
</li>
<li>osm_protobufdb_start_file()
: <a class="el" href="osm__protobufdb_8c.html#ac3d5040e3d2f76ef6fe6c83a52d35683">osm_protobufdb.c</a>
</li>
<li>osm_protobufdb_start_group()
: <a class="el" href="osm__protobufdb_8c.html#a31a2163fa4dc8db730a54c2c685e3262">osm_protobufdb.c</a>
</li>
<li>osm_protobufdb_string()
: <a class="el" href="osm__protobufdb_8c.html#ad9837d820a5012581d25c92e26b1aa70">osm_protobufdb.c</a>
</li>
<li>osm_protobufdb_timestamp()
: <a class="el" href="osm__protobufdb_8c.html#af83889628bf7b53b0bf163669448b776">osm_protobufdb.c</a>
</li>
<li>osm_protobufdb_write_blob()
: <a class="el" href="osm__protobufdb_8c.html#acea55a97ea24208c5f89dd5285ddc32a">osm_protobufdb.c</a>
</li>
<li>osm_read_input_data()
: <a class="el" href="maptool_8c.html#a3646d2293954d57abc0e33c57494067a">maptool.c</a>
</li>
<li>osm_resolve_coords_and_split_at_intersections()
: <a class="el" href="maptool_8c.html#a5ea560b5f3de3e7c0de81208c607008e">maptool.c</a>
</li>
<li>osm_tag_value()
: <a class="el" href="boundaries_8c.html#a315ce3d6b00335e219bd8ea610a2a25b">boundaries.c</a>
, <a class="el" href="maptool_8h.html#a315ce3d6b00335e219bd8ea610a2a25b">maptool.h</a>
</li>
<li>osm_town_relations_to_poly()
: <a class="el" href="osm_8c.html#aa27dfada972591cab9df671600b89705">osm.c</a>
</li>
<li>osm_update_attr_present()
: <a class="el" href="osm_8c.html#a0d4e51657f741a03639bfe5affa3c617">osm.c</a>
</li>
<li>osm_warning()
: <a class="el" href="maptool_8h.html#a927fc254ca819a7f305c9dd23bc560b8">maptool.h</a>
, <a class="el" href="osm_8c.html#a927fc254ca819a7f305c9dd23bc560b8">osm.c</a>
</li>
<li>osm_xml_decode_entities()
: <a class="el" href="maptool_8h.html#a07d131f75fb22fe13804acab6cf2a63e">maptool.h</a>
, <a class="el" href="osm__xml_8c.html#a07d131f75fb22fe13804acab6cf2a63e">osm_xml.c</a>
</li>
<li>osm_xml_get_attribute()
: <a class="el" href="maptool_8h.html#a4f8d278af8501644df192593d2c52ba1">maptool.h</a>
, <a class="el" href="osm__xml_8c.html#a4f8d278af8501644df192593d2c52ba1">osm_xml.c</a>
</li>
<li>osmpbf__blob__free_unpacked()
: <a class="el" href="fileformat_8pb-c_8c.html#a08b05ce973c11d37111591eb339df76a">fileformat.pb-c.c</a>
, <a class="el" href="fileformat_8pb-c_8h.html#a08b05ce973c11d37111591eb339df76a">fileformat.pb-c.h</a>
</li>
<li>osmpbf__blob__get_packed_size()
: <a class="el" href="fileformat_8pb-c_8c.html#a1bf858d70786d863ed25951aeee84723">fileformat.pb-c.c</a>
, <a class="el" href="fileformat_8pb-c_8h.html#a1bf858d70786d863ed25951aeee84723">fileformat.pb-c.h</a>
</li>
<li>osmpbf__blob__init()
: <a class="el" href="fileformat_8pb-c_8c.html#ad8268b9f335dd0e2208a83b17e88449b">fileformat.pb-c.c</a>
, <a class="el" href="fileformat_8pb-c_8h.html#ad8268b9f335dd0e2208a83b17e88449b">fileformat.pb-c.h</a>
</li>
<li>osmpbf__blob__pack()
: <a class="el" href="fileformat_8pb-c_8c.html#abde7af26afed2050c5a5e974776b443a">fileformat.pb-c.c</a>
, <a class="el" href="fileformat_8pb-c_8h.html#abde7af26afed2050c5a5e974776b443a">fileformat.pb-c.h</a>
</li>
<li>osmpbf__blob__pack_to_buffer()
: <a class="el" href="fileformat_8pb-c_8c.html#a7fcd888afb24202a342a366993d237f0">fileformat.pb-c.c</a>
, <a class="el" href="fileformat_8pb-c_8h.html#a7fcd888afb24202a342a366993d237f0">fileformat.pb-c.h</a>
</li>
<li>osmpbf__blob__unpack()
: <a class="el" href="fileformat_8pb-c_8c.html#abf3079d7e45375c6d4123c11a3bb23c9">fileformat.pb-c.c</a>
, <a class="el" href="fileformat_8pb-c_8h.html#abf3079d7e45375c6d4123c11a3bb23c9">fileformat.pb-c.h</a>
</li>
<li>osmpbf__blob_header__free_unpacked()
: <a class="el" href="fileformat_8pb-c_8c.html#a0950c1d42ce8dd110edd169152498ae1">fileformat.pb-c.c</a>
, <a class="el" href="fileformat_8pb-c_8h.html#a0950c1d42ce8dd110edd169152498ae1">fileformat.pb-c.h</a>
</li>
<li>osmpbf__blob_header__get_packed_size()
: <a class="el" href="fileformat_8pb-c_8c.html#ae3a277988ca8d4ac7e92242032b08918">fileformat.pb-c.c</a>
, <a class="el" href="fileformat_8pb-c_8h.html#ae3a277988ca8d4ac7e92242032b08918">fileformat.pb-c.h</a>
</li>
<li>osmpbf__blob_header__init()
: <a class="el" href="fileformat_8pb-c_8c.html#a8d5f55ff8d648b2438a46fdeae4783cd">fileformat.pb-c.c</a>
, <a class="el" href="fileformat_8pb-c_8h.html#a8d5f55ff8d648b2438a46fdeae4783cd">fileformat.pb-c.h</a>
</li>
<li>osmpbf__blob_header__pack()
: <a class="el" href="fileformat_8pb-c_8c.html#ab8099b0342cb1b372eb5fa4895284096">fileformat.pb-c.c</a>
, <a class="el" href="fileformat_8pb-c_8h.html#ab8099b0342cb1b372eb5fa4895284096">fileformat.pb-c.h</a>
</li>
<li>osmpbf__blob_header__pack_to_buffer()
: <a class="el" href="fileformat_8pb-c_8c.html#ab309fa2d2ec5e139c2cf57ee3169e0df">fileformat.pb-c.c</a>
, <a class="el" href="fileformat_8pb-c_8h.html#ab309fa2d2ec5e139c2cf57ee3169e0df">fileformat.pb-c.h</a>
</li>
<li>osmpbf__blob_header__unpack()
: <a class="el" href="fileformat_8pb-c_8c.html#ac8cfef2ace61b220a96209d1c9027d1e">fileformat.pb-c.c</a>
, <a class="el" href="fileformat_8pb-c_8h.html#ac8cfef2ace61b220a96209d1c9027d1e">fileformat.pb-c.h</a>
</li>
<li>osmpbf__change_set__free_unpacked()
: <a class="el" href="osmformat_8pb-c_8c.html#aa4901aead7918e6bffcf9629b01ae9cc">osmformat.pb-c.c</a>
, <a class="el" href="osmformat_8pb-c_8h.html#aa4901aead7918e6bffcf9629b01ae9cc">osmformat.pb-c.h</a>
</li>
<li>osmpbf__change_set__get_packed_size()
: <a class="el" href="osmformat_8pb-c_8c.html#a5276a366786c5ea477cb5fb78736a73f">osmformat.pb-c.c</a>
, <a class="el" href="osmformat_8pb-c_8h.html#a5276a366786c5ea477cb5fb78736a73f">osmformat.pb-c.h</a>
</li>
<li>osmpbf__change_set__init()
: <a class="el" href="osmformat_8pb-c_8c.html#a27b6363d2a9b603529f668edd4bc772f">osmformat.pb-c.c</a>
, <a class="el" href="osmformat_8pb-c_8h.html#a27b6363d2a9b603529f668edd4bc772f">osmformat.pb-c.h</a>
</li>
<li>osmpbf__change_set__pack()
: <a class="el" href="osmformat_8pb-c_8c.html#a199969797ab49b3457ea4e92da78b6a3">osmformat.pb-c.c</a>
, <a class="el" href="osmformat_8pb-c_8h.html#a199969797ab49b3457ea4e92da78b6a3">osmformat.pb-c.h</a>
</li>
<li>osmpbf__change_set__pack_to_buffer()
: <a class="el" href="osmformat_8pb-c_8c.html#afecf7c74a59bc667d4554a768a19fa19">osmformat.pb-c.c</a>
, <a class="el" href="osmformat_8pb-c_8h.html#afecf7c74a59bc667d4554a768a19fa19">osmformat.pb-c.h</a>
</li>
<li>osmpbf__change_set__unpack()
: <a class="el" href="osmformat_8pb-c_8c.html#a683407d274c52a54ceb5f9afcca42b1d">osmformat.pb-c.c</a>
, <a class="el" href="osmformat_8pb-c_8h.html#a683407d274c52a54ceb5f9afcca42b1d">osmformat.pb-c.h</a>
</li>
<li>osmpbf__dense_info__free_unpacked()
: <a class="el" href="osmformat_8pb-c_8c.html#a2be4c542e635ed86931711029c33ada0">osmformat.pb-c.c</a>
, <a class="el" href="osmformat_8pb-c_8h.html#a2be4c542e635ed86931711029c33ada0">osmformat.pb-c.h</a>
</li>
<li>osmpbf__dense_info__get_packed_size()
: <a class="el" href="osmformat_8pb-c_8c.html#a722ecd89768d7464866a26395a0e73f6">osmformat.pb-c.c</a>
, <a class="el" href="osmformat_8pb-c_8h.html#a722ecd89768d7464866a26395a0e73f6">osmformat.pb-c.h</a>
</li>
<li>osmpbf__dense_info__init()
: <a class="el" href="osmformat_8pb-c_8c.html#aaf4dac870827789fe9a166c9100e8cfe">osmformat.pb-c.c</a>
, <a class="el" href="osmformat_8pb-c_8h.html#aaf4dac870827789fe9a166c9100e8cfe">osmformat.pb-c.h</a>
</li>
<li>osmpbf__dense_info__pack()
: <a class="el" href="osmformat_8pb-c_8c.html#a4b8926d26d3a542a84962cd033d24146">osmformat.pb-c.c</a>
, <a class="el" href="osmformat_8pb-c_8h.html#a4b8926d26d3a542a84962cd033d24146">osmformat.pb-c.h</a>
</li>
<li>osmpbf__dense_info__pack_to_buffer()
: <a class="el" href="osmformat_8pb-c_8c.html#a3494827dd447a26ac459a4f09dfdd2d0">osmformat.pb-c.c</a>
, <a class="el" href="osmformat_8pb-c_8h.html#a3494827dd447a26ac459a4f09dfdd2d0">osmformat.pb-c.h</a>
</li>
<li>osmpbf__dense_info__unpack()
: <a class="el" href="osmformat_8pb-c_8c.html#ae769060521fbaa25f8e0da0a033d562f">osmformat.pb-c.c</a>
, <a class="el" href="osmformat_8pb-c_8h.html#ae769060521fbaa25f8e0da0a033d562f">osmformat.pb-c.h</a>
</li>
<li>osmpbf__dense_nodes__free_unpacked()
: <a class="el" href="osmformat_8pb-c_8c.html#a848c8d4ffa710983a1a13917f6ea8e51">osmformat.pb-c.c</a>
, <a class="el" href="osmformat_8pb-c_8h.html#a848c8d4ffa710983a1a13917f6ea8e51">osmformat.pb-c.h</a>
</li>
<li>osmpbf__dense_nodes__get_packed_size()
: <a class="el" href="osmformat_8pb-c_8c.html#a7afff9b26320e172a9396bc8c1b60241">osmformat.pb-c.c</a>
, <a class="el" href="osmformat_8pb-c_8h.html#a7afff9b26320e172a9396bc8c1b60241">osmformat.pb-c.h</a>
</li>
<li>osmpbf__dense_nodes__init()
: <a class="el" href="osmformat_8pb-c_8c.html#a6f3c3056435e1cc0eab838c7f72f22cf">osmformat.pb-c.c</a>
, <a class="el" href="osmformat_8pb-c_8h.html#a6f3c3056435e1cc0eab838c7f72f22cf">osmformat.pb-c.h</a>
</li>
<li>osmpbf__dense_nodes__pack()
: <a class="el" href="osmformat_8pb-c_8c.html#a955755981e4243fb23704f34415e4c08">osmformat.pb-c.c</a>
, <a class="el" href="osmformat_8pb-c_8h.html#a955755981e4243fb23704f34415e4c08">osmformat.pb-c.h</a>
</li>
<li>osmpbf__dense_nodes__pack_to_buffer()
: <a class="el" href="osmformat_8pb-c_8h.html#a77d93cf7269d55519bdb1a5fb3711f98">osmformat.pb-c.h</a>
, <a class="el" href="osmformat_8pb-c_8c.html#a77d93cf7269d55519bdb1a5fb3711f98">osmformat.pb-c.c</a>
</li>
<li>osmpbf__dense_nodes__unpack()
: <a class="el" href="osmformat_8pb-c_8c.html#a30ace462c033dc277454b6405cde994a">osmformat.pb-c.c</a>
, <a class="el" href="osmformat_8pb-c_8h.html#a30ace462c033dc277454b6405cde994a">osmformat.pb-c.h</a>
</li>
<li>osmpbf__header_bbox__free_unpacked()
: <a class="el" href="osmformat_8pb-c_8c.html#ab09b48bba0991c39c12e4aaf8724a248">osmformat.pb-c.c</a>
, <a class="el" href="osmformat_8pb-c_8h.html#ab09b48bba0991c39c12e4aaf8724a248">osmformat.pb-c.h</a>
</li>
<li>osmpbf__header_bbox__get_packed_size()
: <a class="el" href="osmformat_8pb-c_8c.html#a09b686115d0de3b863b008fe94c231ae">osmformat.pb-c.c</a>
, <a class="el" href="osmformat_8pb-c_8h.html#a09b686115d0de3b863b008fe94c231ae">osmformat.pb-c.h</a>
</li>
<li>osmpbf__header_bbox__init()
: <a class="el" href="osmformat_8pb-c_8h.html#abecdfae25971efe69c7adb1320c829e5">osmformat.pb-c.h</a>
, <a class="el" href="osmformat_8pb-c_8c.html#abecdfae25971efe69c7adb1320c829e5">osmformat.pb-c.c</a>
</li>
<li>osmpbf__header_bbox__pack()
: <a class="el" href="osmformat_8pb-c_8c.html#a727fc83db8a46495ce4000475401cfdc">osmformat.pb-c.c</a>
, <a class="el" href="osmformat_8pb-c_8h.html#a727fc83db8a46495ce4000475401cfdc">osmformat.pb-c.h</a>
</li>
<li>osmpbf__header_bbox__pack_to_buffer()
: <a class="el" href="osmformat_8pb-c_8h.html#a8f66351e30a7c10e11f7ebaeb2f73b86">osmformat.pb-c.h</a>
, <a class="el" href="osmformat_8pb-c_8c.html#a8f66351e30a7c10e11f7ebaeb2f73b86">osmformat.pb-c.c</a>
</li>
<li>osmpbf__header_bbox__unpack()
: <a class="el" href="osmformat_8pb-c_8c.html#a08685809953c1e9cbf8f2a6c03c9d63d">osmformat.pb-c.c</a>
, <a class="el" href="osmformat_8pb-c_8h.html#a08685809953c1e9cbf8f2a6c03c9d63d">osmformat.pb-c.h</a>
</li>
<li>osmpbf__header_block__free_unpacked()
: <a class="el" href="osmformat_8pb-c_8c.html#adf81883fcc1ea809575c02f86085d44f">osmformat.pb-c.c</a>
, <a class="el" href="osmformat_8pb-c_8h.html#adf81883fcc1ea809575c02f86085d44f">osmformat.pb-c.h</a>
</li>
<li>osmpbf__header_block__get_packed_size()
: <a class="el" href="osmformat_8pb-c_8c.html#a6b24526e5801bdcd11b9bd18fb907f12">osmformat.pb-c.c</a>
, <a class="el" href="osmformat_8pb-c_8h.html#a6b24526e5801bdcd11b9bd18fb907f12">osmformat.pb-c.h</a>
</li>
<li>osmpbf__header_block__init()
: <a class="el" href="osmformat_8pb-c_8c.html#a1cdd347be42a63999b9dcd26e2628b6b">osmformat.pb-c.c</a>
, <a class="el" href="osmformat_8pb-c_8h.html#a1cdd347be42a63999b9dcd26e2628b6b">osmformat.pb-c.h</a>
</li>
<li>osmpbf__header_block__pack()
: <a class="el" href="osmformat_8pb-c_8c.html#ac63ee8e1479b7874be2439c3e1787322">osmformat.pb-c.c</a>
, <a class="el" href="osmformat_8pb-c_8h.html#ac63ee8e1479b7874be2439c3e1787322">osmformat.pb-c.h</a>
</li>
<li>osmpbf__header_block__pack_to_buffer()
: <a class="el" href="osmformat_8pb-c_8c.html#a5957549559d75cb07e3f81cd01ac9861">osmformat.pb-c.c</a>
, <a class="el" href="osmformat_8pb-c_8h.html#a5957549559d75cb07e3f81cd01ac9861">osmformat.pb-c.h</a>
</li>
<li>osmpbf__header_block__unpack()
: <a class="el" href="osmformat_8pb-c_8h.html#ae7f3f7d672cfefefb01104066017d5e9">osmformat.pb-c.h</a>
, <a class="el" href="osmformat_8pb-c_8c.html#ae7f3f7d672cfefefb01104066017d5e9">osmformat.pb-c.c</a>
</li>
<li>osmpbf__info__free_unpacked()
: <a class="el" href="osmformat_8pb-c_8h.html#ac5774d56294413c2e18b936abd9e89c0">osmformat.pb-c.h</a>
, <a class="el" href="osmformat_8pb-c_8c.html#ac5774d56294413c2e18b936abd9e89c0">osmformat.pb-c.c</a>
</li>
<li>osmpbf__info__get_packed_size()
: <a class="el" href="osmformat_8pb-c_8h.html#adae4db04cc1cb1cb1f878ce163227ade">osmformat.pb-c.h</a>
, <a class="el" href="osmformat_8pb-c_8c.html#adae4db04cc1cb1cb1f878ce163227ade">osmformat.pb-c.c</a>
</li>
<li>osmpbf__info__init()
: <a class="el" href="osmformat_8pb-c_8h.html#a90aba442ca256d9bd619f492bd3363d6">osmformat.pb-c.h</a>
, <a class="el" href="osmformat_8pb-c_8c.html#a90aba442ca256d9bd619f492bd3363d6">osmformat.pb-c.c</a>
</li>
<li>osmpbf__info__pack()
: <a class="el" href="osmformat_8pb-c_8c.html#a19d12723d804cafa5d34ab75b3fa8f20">osmformat.pb-c.c</a>
, <a class="el" href="osmformat_8pb-c_8h.html#a19d12723d804cafa5d34ab75b3fa8f20">osmformat.pb-c.h</a>
</li>
<li>osmpbf__info__pack_to_buffer()
: <a class="el" href="osmformat_8pb-c_8h.html#a38040c5504d5834f2cfdd4427b1dbea6">osmformat.pb-c.h</a>
, <a class="el" href="osmformat_8pb-c_8c.html#a38040c5504d5834f2cfdd4427b1dbea6">osmformat.pb-c.c</a>
</li>
<li>osmpbf__info__unpack()
: <a class="el" href="osmformat_8pb-c_8h.html#a85dae5653e87d7f40dd76e0a5cc09e6a">osmformat.pb-c.h</a>
, <a class="el" href="osmformat_8pb-c_8c.html#a85dae5653e87d7f40dd76e0a5cc09e6a">osmformat.pb-c.c</a>
</li>
<li>osmpbf__node__free_unpacked()
: <a class="el" href="osmformat_8pb-c_8h.html#a3d7f7cd1a13ff8fff14d5a09d7fe6de0">osmformat.pb-c.h</a>
, <a class="el" href="osmformat_8pb-c_8c.html#a3d7f7cd1a13ff8fff14d5a09d7fe6de0">osmformat.pb-c.c</a>
</li>
<li>osmpbf__node__get_packed_size()
: <a class="el" href="osmformat_8pb-c_8h.html#a663e6396cb23877ae2b799ed5d5404b0">osmformat.pb-c.h</a>
, <a class="el" href="osmformat_8pb-c_8c.html#a663e6396cb23877ae2b799ed5d5404b0">osmformat.pb-c.c</a>
</li>
<li>osmpbf__node__init()
: <a class="el" href="osmformat_8pb-c_8h.html#a1584f3b6e7225677576e1a5a28febea9">osmformat.pb-c.h</a>
, <a class="el" href="osmformat_8pb-c_8c.html#a1584f3b6e7225677576e1a5a28febea9">osmformat.pb-c.c</a>
</li>
<li>osmpbf__node__pack()
: <a class="el" href="osmformat_8pb-c_8h.html#a6bd6a412a5c2e7bb42d12aa91f43b121">osmformat.pb-c.h</a>
, <a class="el" href="osmformat_8pb-c_8c.html#a6bd6a412a5c2e7bb42d12aa91f43b121">osmformat.pb-c.c</a>
</li>
<li>osmpbf__node__pack_to_buffer()
: <a class="el" href="osmformat_8pb-c_8h.html#aedafd11fe0cedcf626dcf3e41f492d20">osmformat.pb-c.h</a>
, <a class="el" href="osmformat_8pb-c_8c.html#aedafd11fe0cedcf626dcf3e41f492d20">osmformat.pb-c.c</a>
</li>
<li>osmpbf__node__unpack()
: <a class="el" href="osmformat_8pb-c_8c.html#aa08fa92f004db7f6ab8a0a962969b4f7">osmformat.pb-c.c</a>
, <a class="el" href="osmformat_8pb-c_8h.html#aa08fa92f004db7f6ab8a0a962969b4f7">osmformat.pb-c.h</a>
</li>
<li>osmpbf__primitive_block__free_unpacked()
: <a class="el" href="osmformat_8pb-c_8h.html#a1094c231e42172b2e39b00b84fe5fe4a">osmformat.pb-c.h</a>
, <a class="el" href="osmformat_8pb-c_8c.html#a1094c231e42172b2e39b00b84fe5fe4a">osmformat.pb-c.c</a>
</li>
<li>osmpbf__primitive_block__get_packed_size()
: <a class="el" href="osmformat_8pb-c_8h.html#afb1a5993e2ec48e1add5084a09f11a2d">osmformat.pb-c.h</a>
, <a class="el" href="osmformat_8pb-c_8c.html#afb1a5993e2ec48e1add5084a09f11a2d">osmformat.pb-c.c</a>
</li>
<li>osmpbf__primitive_block__init()
: <a class="el" href="osmformat_8pb-c_8c.html#abb5fe77754e47daa3394af399df26f14">osmformat.pb-c.c</a>
, <a class="el" href="osmformat_8pb-c_8h.html#abb5fe77754e47daa3394af399df26f14">osmformat.pb-c.h</a>
</li>
<li>osmpbf__primitive_block__pack()
: <a class="el" href="osmformat_8pb-c_8h.html#a972a0c20b75203546f524b90b0aa9d06">osmformat.pb-c.h</a>
, <a class="el" href="osmformat_8pb-c_8c.html#a972a0c20b75203546f524b90b0aa9d06">osmformat.pb-c.c</a>
</li>
<li>osmpbf__primitive_block__pack_to_buffer()
: <a class="el" href="osmformat_8pb-c_8h.html#a05ff3dad31cbd716da74a1aff4da0224">osmformat.pb-c.h</a>
, <a class="el" href="osmformat_8pb-c_8c.html#a05ff3dad31cbd716da74a1aff4da0224">osmformat.pb-c.c</a>
</li>
<li>osmpbf__primitive_block__unpack()
: <a class="el" href="osmformat_8pb-c_8h.html#af85acf6d8a9586354f2e9e2d1dc006c8">osmformat.pb-c.h</a>
, <a class="el" href="osmformat_8pb-c_8c.html#af85acf6d8a9586354f2e9e2d1dc006c8">osmformat.pb-c.c</a>
</li>
<li>osmpbf__primitive_group__free_unpacked()
: <a class="el" href="osmformat_8pb-c_8h.html#a71eb3c50478db22e48dc0da6bda67f00">osmformat.pb-c.h</a>
, <a class="el" href="osmformat_8pb-c_8c.html#a71eb3c50478db22e48dc0da6bda67f00">osmformat.pb-c.c</a>
</li>
<li>osmpbf__primitive_group__get_packed_size()
: <a class="el" href="osmformat_8pb-c_8c.html#a7af51cc61efdd4a7b251bdfa75d5a61b">osmformat.pb-c.c</a>
, <a class="el" href="osmformat_8pb-c_8h.html#a7af51cc61efdd4a7b251bdfa75d5a61b">osmformat.pb-c.h</a>
</li>
<li>osmpbf__primitive_group__init()
: <a class="el" href="osmformat_8pb-c_8h.html#af1c644b794be9dea2d008c529ff07c6c">osmformat.pb-c.h</a>
, <a class="el" href="osmformat_8pb-c_8c.html#af1c644b794be9dea2d008c529ff07c6c">osmformat.pb-c.c</a>
</li>
<li>osmpbf__primitive_group__pack()
: <a class="el" href="osmformat_8pb-c_8c.html#ac53a346e72fea0e6cbec85bed400a3a0">osmformat.pb-c.c</a>
, <a class="el" href="osmformat_8pb-c_8h.html#ac53a346e72fea0e6cbec85bed400a3a0">osmformat.pb-c.h</a>
</li>
<li>osmpbf__primitive_group__pack_to_buffer()
: <a class="el" href="osmformat_8pb-c_8h.html#a4e9c67a8db87ba3d05e6eb3c84a2b483">osmformat.pb-c.h</a>
, <a class="el" href="osmformat_8pb-c_8c.html#a4e9c67a8db87ba3d05e6eb3c84a2b483">osmformat.pb-c.c</a>
</li>
<li>osmpbf__primitive_group__unpack()
: <a class="el" href="osmformat_8pb-c_8h.html#a6a145d04fd8191a15ca1cf6e797cfdc9">osmformat.pb-c.h</a>
, <a class="el" href="osmformat_8pb-c_8c.html#a6a145d04fd8191a15ca1cf6e797cfdc9">osmformat.pb-c.c</a>
</li>
<li>osmpbf__relation__free_unpacked()
: <a class="el" href="osmformat_8pb-c_8h.html#aa6f9fe5bfe16af3ccd9b3e25a92d8766">osmformat.pb-c.h</a>
, <a class="el" href="osmformat_8pb-c_8c.html#aa6f9fe5bfe16af3ccd9b3e25a92d8766">osmformat.pb-c.c</a>
</li>
<li>osmpbf__relation__get_packed_size()
: <a class="el" href="osmformat_8pb-c_8c.html#a144f35bc67432391c9aa9dfc1003797d">osmformat.pb-c.c</a>
, <a class="el" href="osmformat_8pb-c_8h.html#a144f35bc67432391c9aa9dfc1003797d">osmformat.pb-c.h</a>
</li>
<li>osmpbf__relation__init()
: <a class="el" href="osmformat_8pb-c_8h.html#ac2f4c340763a0b266ddfb4e51850f94e">osmformat.pb-c.h</a>
, <a class="el" href="osmformat_8pb-c_8c.html#ac2f4c340763a0b266ddfb4e51850f94e">osmformat.pb-c.c</a>
</li>
<li>osmpbf__relation__pack()
: <a class="el" href="osmformat_8pb-c_8c.html#afbdbbb10aad79e808a6c02f03d30afe1">osmformat.pb-c.c</a>
, <a class="el" href="osmformat_8pb-c_8h.html#afbdbbb10aad79e808a6c02f03d30afe1">osmformat.pb-c.h</a>
</li>
<li>osmpbf__relation__pack_to_buffer()
: <a class="el" href="osmformat_8pb-c_8h.html#a57732704c04cb6880204ea5bfc3200a8">osmformat.pb-c.h</a>
, <a class="el" href="osmformat_8pb-c_8c.html#a57732704c04cb6880204ea5bfc3200a8">osmformat.pb-c.c</a>
</li>
<li>osmpbf__relation__unpack()
: <a class="el" href="osmformat_8pb-c_8c.html#a230d7b9ed1fc08342edfe0764102fa0a">osmformat.pb-c.c</a>
, <a class="el" href="osmformat_8pb-c_8h.html#a230d7b9ed1fc08342edfe0764102fa0a">osmformat.pb-c.h</a>
</li>
<li>osmpbf__string_table__free_unpacked()
: <a class="el" href="osmformat_8pb-c_8h.html#a2378f7805964a474452c89e5a0456b75">osmformat.pb-c.h</a>
, <a class="el" href="osmformat_8pb-c_8c.html#a2378f7805964a474452c89e5a0456b75">osmformat.pb-c.c</a>
</li>
<li>osmpbf__string_table__get_packed_size()
: <a class="el" href="osmformat_8pb-c_8c.html#a5436acef9e6b50fe2dc6be2b57a17911">osmformat.pb-c.c</a>
, <a class="el" href="osmformat_8pb-c_8h.html#a5436acef9e6b50fe2dc6be2b57a17911">osmformat.pb-c.h</a>
</li>
<li>osmpbf__string_table__init()
: <a class="el" href="osmformat_8pb-c_8c.html#a912017cc43cc640b96adc5e366b406fe">osmformat.pb-c.c</a>
, <a class="el" href="osmformat_8pb-c_8h.html#a912017cc43cc640b96adc5e366b406fe">osmformat.pb-c.h</a>
</li>
<li>osmpbf__string_table__pack()
: <a class="el" href="osmformat_8pb-c_8h.html#a3919e4a3a6419f9c02c49f4f5e45294f">osmformat.pb-c.h</a>
, <a class="el" href="osmformat_8pb-c_8c.html#a3919e4a3a6419f9c02c49f4f5e45294f">osmformat.pb-c.c</a>
</li>
<li>osmpbf__string_table__pack_to_buffer()
: <a class="el" href="osmformat_8pb-c_8c.html#a3c06722dc98a9e44b032a0fc34e1dc4d">osmformat.pb-c.c</a>
, <a class="el" href="osmformat_8pb-c_8h.html#a3c06722dc98a9e44b032a0fc34e1dc4d">osmformat.pb-c.h</a>
</li>
<li>osmpbf__string_table__unpack()
: <a class="el" href="osmformat_8pb-c_8c.html#ab2f20d4b1805a0361af7bfd7040a6362">osmformat.pb-c.c</a>
, <a class="el" href="osmformat_8pb-c_8h.html#ab2f20d4b1805a0361af7bfd7040a6362">osmformat.pb-c.h</a>
</li>
<li>osmpbf__way__free_unpacked()
: <a class="el" href="osmformat_8pb-c_8h.html#a90dfee48544e66f58793f423133df002">osmformat.pb-c.h</a>
, <a class="el" href="osmformat_8pb-c_8c.html#a90dfee48544e66f58793f423133df002">osmformat.pb-c.c</a>
</li>
<li>osmpbf__way__get_packed_size()
: <a class="el" href="osmformat_8pb-c_8h.html#aeaa476e51572bead6eeb65984dc7b34a">osmformat.pb-c.h</a>
, <a class="el" href="osmformat_8pb-c_8c.html#aeaa476e51572bead6eeb65984dc7b34a">osmformat.pb-c.c</a>
</li>
<li>osmpbf__way__init()
: <a class="el" href="osmformat_8pb-c_8c.html#a46610312281202d43767b842375703a2">osmformat.pb-c.c</a>
, <a class="el" href="osmformat_8pb-c_8h.html#a46610312281202d43767b842375703a2">osmformat.pb-c.h</a>
</li>
<li>osmpbf__way__pack()
: <a class="el" href="osmformat_8pb-c_8h.html#a6fd6e53d7edd07d542ab8db035bb36a6">osmformat.pb-c.h</a>
, <a class="el" href="osmformat_8pb-c_8c.html#a6fd6e53d7edd07d542ab8db035bb36a6">osmformat.pb-c.c</a>
</li>
<li>osmpbf__way__pack_to_buffer()
: <a class="el" href="osmformat_8pb-c_8c.html#ad632e929241c003f3d6d8cece6520f8c">osmformat.pb-c.c</a>
, <a class="el" href="osmformat_8pb-c_8h.html#ad632e929241c003f3d6d8cece6520f8c">osmformat.pb-c.h</a>
</li>
<li>osmpbf__way__unpack()
: <a class="el" href="osmformat_8pb-c_8c.html#af43af7b94c7fc339ed9942fed92f0c5a">osmformat.pb-c.c</a>
, <a class="el" href="osmformat_8pb-c_8h.html#af43af7b94c7fc339ed9942fed92f0c5a">osmformat.pb-c.h</a>
</li>
<li>osso_cb_hw_state()
: <a class="el" href="osso_8c.html#a08a38bf18705743457307378c2913599">osso.c</a>
</li>
<li>osso_cb_hw_state_idle()
: <a class="el" href="osso_8c.html#a4fe5c19310f753a08569d7fb89ad37ba">osso.c</a>
</li>
<li>osso_display_on()
: <a class="el" href="osso_8c.html#a917f3e440dbd02e5afc246751fa85110">osso.c</a>
</li>
<li>osso_navit()
: <a class="el" href="osso_8c.html#ad685fd1d2a84a71b33d1f43b01dea497">osso.c</a>
</li>
<li>oti_new()
: <a class="el" href="osd__core_8c.html#a4c9d7a042054cdec92ef1cdd267817a8">osd_core.c</a>
</li>
<li>overlay_disable()
: <a class="el" href="graphics__win32_8c.html#a18e3c2e64373fc85093d4d2d684e5ec8">graphics_win32.c</a>
, <a class="el" href="graphics__egl_8c.html#a18e3c2e64373fc85093d4d2d684e5ec8">graphics_egl.c</a>
, <a class="el" href="graphics__null_8c.html#a18e3c2e64373fc85093d4d2d684e5ec8">graphics_null.c</a>
, <a class="el" href="graphics__qt5_8cpp.html#a18e3c2e64373fc85093d4d2d684e5ec8">graphics_qt5.cpp</a>
, <a class="el" href="graphics__sdl_8c.html#a18e3c2e64373fc85093d4d2d684e5ec8">graphics_sdl.c</a>
, <a class="el" href="graphics__android_8c.html#abb0158dc9d288bcb4babd6764208adae">graphics_android.c</a>
, <a class="el" href="graphics__gd_8c.html#a18e3c2e64373fc85093d4d2d684e5ec8">graphics_gd.c</a>
, <a class="el" href="graphics__cocoa_8m.html#a2c5bb31edbda349777e53025fb3df921">graphics_cocoa.m</a>
, <a class="el" href="graphics__opengl_8c.html#a18e3c2e64373fc85093d4d2d684e5ec8">graphics_opengl.c</a>
, <a class="el" href="graphics__qt__qpainter_8cpp.html#a18e3c2e64373fc85093d4d2d684e5ec8">graphics_qt_qpainter.cpp</a>
, <a class="el" href="graphics__gtk__drawing__area_8c.html#a2c5bb31edbda349777e53025fb3df921">graphics_gtk_drawing_area.c</a>
</li>
<li>overlay_draw()
: <a class="el" href="graphics__gtk__drawing__area_8c.html#ae27db2eeb4d578c16580953ae4b333e5">graphics_gtk_drawing_area.c</a>
</li>
<li>overlay_new()
: <a class="el" href="graphics__opengl_8c.html#a1166f0e775e95efcad0040474546a4ff">graphics_opengl.c</a>
, <a class="el" href="graphics__cocoa_8m.html#a1166f0e775e95efcad0040474546a4ff">graphics_cocoa.m</a>
, <a class="el" href="graphics__gtk__drawing__area_8c.html#a7856f35830b1fa376059ebec6f7371cf">graphics_gtk_drawing_area.c</a>
, <a class="el" href="graphics__sdl_8c.html#a1166f0e775e95efcad0040474546a4ff">graphics_sdl.c</a>
, <a class="el" href="graphics__egl_8c.html#a1166f0e775e95efcad0040474546a4ff">graphics_egl.c</a>
, <a class="el" href="graphics__android_8c.html#a1166f0e775e95efcad0040474546a4ff">graphics_android.c</a>
, <a class="el" href="graphics__qt5_8cpp.html#a1166f0e775e95efcad0040474546a4ff">graphics_qt5.cpp</a>
, <a class="el" href="graphics__win32_8c.html#a7856f35830b1fa376059ebec6f7371cf">graphics_win32.c</a>
, <a class="el" href="graphics__qt__qpainter_8cpp.html#a1166f0e775e95efcad0040474546a4ff">graphics_qt_qpainter.cpp</a>
, <a class="el" href="graphics__null_8c.html#a1166f0e775e95efcad0040474546a4ff">graphics_null.c</a>
, <a class="el" href="graphics__gd_8c.html#a1166f0e775e95efcad0040474546a4ff">graphics_gd.c</a>
</li>
<li>overlay_rect()
: <a class="el" href="graphics__gtk__drawing__area_8c.html#a458e66c8df6431fd9d8e9a06d1a16e9b">graphics_gtk_drawing_area.c</a>
, <a class="el" href="graphics__qt__qpainter_8cpp.html#a2183e0e39743787923920a3af15c1590">graphics_qt_qpainter.cpp</a>
</li>
<li>overlay_resize()
: <a class="el" href="graphics__gtk__drawing__area_8c.html#ad552d3ea1d330a32db7e84ed800dadc4">graphics_gtk_drawing_area.c</a>
, <a class="el" href="graphics__egl_8c.html#aec189fd649a7cbaf4513cc2c45ef2678">graphics_egl.c</a>
, <a class="el" href="graphics__android_8c.html#ad57cb88d03824844c0f7200bd29f356e">graphics_android.c</a>
, <a class="el" href="graphics__qt5_8cpp.html#aec189fd649a7cbaf4513cc2c45ef2678">graphics_qt5.cpp</a>
, <a class="el" href="graphics__null_8c.html#aec189fd649a7cbaf4513cc2c45ef2678">graphics_null.c</a>
, <a class="el" href="graphics__gd_8c.html#aec189fd649a7cbaf4513cc2c45ef2678">graphics_gd.c</a>
, <a class="el" href="graphics__opengl_8c.html#aec189fd649a7cbaf4513cc2c45ef2678">graphics_opengl.c</a>
, <a class="el" href="graphics__win32_8c.html#aec189fd649a7cbaf4513cc2c45ef2678">graphics_win32.c</a>
</li>
</ul>
</div><!-- contents -->
</div><!-- doc-content -->
<!-- start footer part -->
<div id="nav-path" class="navpath"><!-- id is needed for treeview function! -->
  <ul>
    <li class="footer">Generated by
    <a href="http://www.doxygen.org/index.html">
    <img class="footer" src="doxygen.png" alt="doxygen"/></a> 1.8.6 </li>
  </ul>
</div>
</body>
</html>