summaryrefslogtreecommitdiff
path: root/globals_p.html
blob: 3e0a01f2c8ad444d0da94a25358a63b445571912 (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
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
<!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.1-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 class="current"><a href="globals.html"><span>All</span></a></li>
      <li><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.html#index_$"><span>$</span></a></li>
      <li><a href="globals__.html#index__"><span>_</span></a></li>
      <li><a href="globals_a.html#index_a"><span>a</span></a></li>
      <li><a href="globals_b.html#index_b"><span>b</span></a></li>
      <li><a href="globals_c.html#index_c"><span>c</span></a></li>
      <li><a href="globals_d.html#index_d"><span>d</span></a></li>
      <li><a href="globals_e.html#index_e"><span>e</span></a></li>
      <li><a href="globals_f.html#index_f"><span>f</span></a></li>
      <li><a href="globals_g.html#index_g"><span>g</span></a></li>
      <li><a href="globals_h.html#index_h"><span>h</span></a></li>
      <li><a href="globals_i.html#index_i"><span>i</span></a></li>
      <li><a href="globals_j.html#index_j"><span>j</span></a></li>
      <li><a href="globals_k.html#index_k"><span>k</span></a></li>
      <li><a href="globals_l.html#index_l"><span>l</span></a></li>
      <li><a href="globals_m.html#index_m"><span>m</span></a></li>
      <li><a href="globals_n.html#index_n"><span>n</span></a></li>
      <li><a href="globals_o.html#index_o"><span>o</span></a></li>
      <li class="current"><a href="globals_p.html#index_p"><span>p</span></a></li>
      <li><a href="globals_q.html#index_q"><span>q</span></a></li>
      <li><a href="globals_r.html#index_r"><span>r</span></a></li>
      <li><a href="globals_s.html#index_s"><span>s</span></a></li>
      <li><a href="globals_t.html#index_t"><span>t</span></a></li>
      <li><a href="globals_u.html#index_u"><span>u</span></a></li>
      <li><a href="globals_v.html#index_v"><span>v</span></a></li>
      <li><a href="globals_w.html#index_w"><span>w</span></a></li>
      <li><a href="globals_x.html#index_x"><span>x</span></a></li>
      <li><a href="globals_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_p.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">
<div class="textblock">Here is a list of all functions, variables, defines, enums, and typedefs with links to the files they belong to:</div>

<h3><a class="anchor" id="index_p"></a>- p -</h3><ul>
<li>p
: <a class="el" href="mg_8h.html#aaf29c41f2020649a36c2820ffa06119a">mg.h</a>
, <a class="el" href="tree_8c.html#a31aee918cc8b0f0e71b62d0441b0c74a">tree.c</a>
</li>
<li>P
: <a class="el" href="geod__for_8c.html#a8019aa9167c19c810aefa4cd5c0b0ab5">geod_for.c</a>
</li>
<li>pack_buffer_packed_payload()
: <a class="el" href="protobuf-c_8c.html#a1a4673dcfeb7f4ee5d5def64059495ea">protobuf-c.c</a>
</li>
<li>padding_callback()
: <a class="el" href="graphics__android_8c.html#a92ff60dd0d9b560dd4edeb9d65db09fe">graphics_android.c</a>
</li>
<li>paintOverlays()
: <a class="el" href="QNavitQuick_8cpp.html#a3e27cc033e73ffddfb4a04c0ec989fe3">QNavitQuick.cpp</a>
, <a class="el" href="QNavitWidget_8cpp.html#a3e27cc033e73ffddfb4a04c0ec989fe3">QNavitWidget.cpp</a>
</li>
<li>param_add_dec()
: <a class="el" href="param_8c.html#a4f18f8584df443e5b4448db83910d597">param.c</a>
, <a class="el" href="param_8h.html#a4f18f8584df443e5b4448db83910d597">param.h</a>
</li>
<li>param_add_hex()
: <a class="el" href="param_8c.html#aca6297dc4b2231b9ade912493d5007e8">param.c</a>
, <a class="el" href="param_8h.html#aca6297dc4b2231b9ade912493d5007e8">param.h</a>
</li>
<li>param_add_hex_sig()
: <a class="el" href="param_8c.html#a5ba2bb393c39942facea0865c9e6322f">param.c</a>
, <a class="el" href="param_8h.html#a5ba2bb393c39942facea0865c9e6322f">param.h</a>
</li>
<li>param_add_string()
: <a class="el" href="param_8c.html#a56c696db2922a51f86c5fba46a8375cf">param.c</a>
, <a class="el" href="param_8h.html#a56c696db2922a51f86c5fba46a8375cf">param.h</a>
</li>
<li>parent
: <a class="el" href="gpx2navit__txt_8h.html#a075a573833b43bae7ce3088bd7365de5">gpx2navit_txt.h</a>
</li>
<li>parse_array()
: <a class="el" href="cJSON_8c.html#a7729444034bb1c16924478e4806023af">cJSON.c</a>
</li>
<li>parse_boolean()
: <a class="el" href="protobuf-c_8c.html#a58bd6b19ba6410a2f0e3d3fdd87e5072">protobuf-c.c</a>
</li>
<li>parse_color_values()
: <a class="el" href="xpm2bmp_8c.html#a858f1915fb9017f5f83d5e0975bf4b39">xpm2bmp.c</a>
</li>
<li>parse_dbg_level()
: <a class="el" href="debug_8c.html#aaa8f23c0b24005dc922f64070cad60a3">debug.c</a>
</li>
<li>parse_file()
: <a class="el" href="xmlconfig_8c.html#a9de8347241db6908beeefca1c0c9c0b7">xmlconfig.c</a>
</li>
<li>parse_filter()
: <a class="el" href="filter_8c.html#a4ad7f2b4c31f5ebaa9cbb74d49ca16b9">filter.c</a>
</li>
<li>parse_filters()
: <a class="el" href="filter_8c.html#a745488396c47c0da35be64945cd50f4e">filter.c</a>
</li>
<li>parse_fixed_uint32()
: <a class="el" href="protobuf-c_8c.html#a77201aae2fff58ea09104e318a84fd25">protobuf-c.c</a>
</li>
<li>parse_fixed_uint64()
: <a class="el" href="protobuf-c_8c.html#ab7566a42e8a52c8aa75becb1aa8ba6ba">protobuf-c.c</a>
</li>
<li>parse_int32()
: <a class="el" href="protobuf-c_8c.html#aada31b9f02a642c39e29387329b15bf3">protobuf-c.c</a>
</li>
<li>parse_line()
: <a class="el" href="garmin__img_8c.html#a53b743f4b817210b18458ee1e607b5b9">garmin_img.c</a>
, <a class="el" href="textfile_8c.html#ad4762caeddf09623eeed9e315589d701">textfile.c</a>
</li>
<li>parse_line_values()
: <a class="el" href="xpm2bmp_8c.html#a7f61fd98ef07746b9dd3de3b35d9ce5b">xpm2bmp.c</a>
</li>
<li>parse_member()
: <a class="el" href="protobuf-c_8c.html#a61e46500d2ad85ccd13c60fc9742c3c6">protobuf-c.c</a>
, <a class="el" href="osm__xml_8c.html#ad6d4c1c613b190b0e817ac2cbe8bdda4">osm_xml.c</a>
</li>
<li>parse_nd()
: <a class="el" href="osm__xml_8c.html#a4f4ba21bfebe48ecf5d36eca919235db">osm_xml.c</a>
</li>
<li>parse_node()
: <a class="el" href="osm__xml_8c.html#a819711c1412395433d88e38558bb61d8">osm_xml.c</a>
</li>
<li>parse_number()
: <a class="el" href="cJSON_8c.html#a77cf18cc6fa5c35cb069532cb978ddee">cJSON.c</a>
</li>
<li>parse_object()
: <a class="el" href="cJSON_8c.html#aae5de4fb5317314153a9791567380768">cJSON.c</a>
</li>
<li>parse_option()
: <a class="el" href="maptool_8c.html#ade40f66edac4fc4c13a21785ddbf7d8c">maptool.c</a>
</li>
<li>parse_optional_member()
: <a class="el" href="protobuf-c_8c.html#a18b04317c7e0679e57a8ab7571dda47b">protobuf-c.c</a>
</li>
<li>parse_packed_repeated_member()
: <a class="el" href="protobuf-c_8c.html#aabf247827924f98543da5c6e919ddeb8">protobuf-c.c</a>
</li>
<li>parse_pixel_line_values()
: <a class="el" href="xpm2bmp_8c.html#ad195a582e2dc3e94bfb3d9a27d97cc3e">xpm2bmp.c</a>
</li>
<li>parse_relation()
: <a class="el" href="osm__xml_8c.html#a77eefeea6644ee04a38ce38b531d41b4">osm_xml.c</a>
</li>
<li>parse_relation_member_string()
: <a class="el" href="osm_8c.html#a7309101aafecb830704b6b345f5d99ae">osm.c</a>
</li>
<li>parse_repeated_member()
: <a class="el" href="protobuf-c_8c.html#adbb33684452a438aab27be129eaaf0ea">protobuf-c.c</a>
</li>
<li>parse_required_member()
: <a class="el" href="protobuf-c_8c.html#a874f1ea25637add4ea9d0e0210113461">protobuf-c.c</a>
</li>
<li>parse_string()
: <a class="el" href="cJSON_8c.html#ae928a03f612fd8ab2e9152dee6a1035d">cJSON.c</a>
</li>
<li>parse_tag()
: <a class="el" href="osm__xml_8c.html#aba6131110413e80e3d52c1124d40ccec">osm_xml.c</a>
</li>
<li>parse_tag_and_wiretype()
: <a class="el" href="protobuf-c_8c.html#abb6eff2f2080e8ee323760d0238b1bac">protobuf-c.c</a>
</li>
<li>parse_uint32()
: <a class="el" href="protobuf-c_8c.html#afa012cf38102746dab0a2dcb8ba2ba64">protobuf-c.c</a>
</li>
<li>parse_uint64()
: <a class="el" href="protobuf-c_8c.html#a06f91ce7a80c3ead22c6636192fae693">protobuf-c.c</a>
</li>
<li>parse_value()
: <a class="el" href="cJSON_8c.html#aa9d7542467e921558b62ea2dbd4b9c60">cJSON.c</a>
</li>
<li>parse_way()
: <a class="el" href="osm__xml_8c.html#aa3165b5eaeb2d3d4968974d678803215">osm_xml.c</a>
</li>
<li>parse_xkbd_args()
: <a class="el" href="destination_8c.html#addde9006790c194b938e6274e683b40d">destination.c</a>
</li>
<li>parsedata
: <a class="el" href="gpx2navit__txt_8h.html#afb3300060e1d1729a586c44d131a274d">gpx2navit_txt.h</a>
</li>
<li>parseMain()
: <a class="el" href="gpx2navit__txt_8h.html#ac80ec0656f515c93abf717b20f96c018">gpx2navit_txt.h</a>
, <a class="el" href="parser_8c.html#ad1797dba0bb6a67f52378a33f992db49">parser.c</a>
</li>
<li>parser
: <a class="el" href="xmlconfig_8c.html#ac9e8bdc8d3025b89c700614535acefb7">xmlconfig.c</a>
</li>
<li>part
: <a class="el" href="garmin__img_8c.html#a9fccd4c2db421341de357d5c2939a303">garmin_img.c</a>
</li>
<li>path_home
: <a class="el" href="speak_8c.html#a7fd80a33306a015428e9d039cc100e28">speak.c</a>
</li>
<li>PATH_MAX
: <a class="el" href="file_8h.html#ae688d728e1acdfe5988c7db45d6f0166">file.h</a>
</li>
<li>pathattr
: <a class="el" href="gpx2navit__txt_8h.html#a1ec047271b341162781a27e9ea608e51">gpx2navit_txt.h</a>
</li>
<li>pcoord_destroy_py()
: <a class="el" href="pcoord_8c.html#a0d5896988dd908b8631c736e5a17df5b">pcoord.c</a>
</li>
<li>pcoord_encode()
: <a class="el" href="binding__dbus_8c.html#a1ba2e7992ea80c64977a55b1ca8ab7f4">binding_dbus.c</a>
</li>
<li>pcoord_func()
: <a class="el" href="pcoord_8c.html#addda55a27d0544b444ff40adc35e26c8">pcoord.c</a>
</li>
<li>pcoord_get_from_message()
: <a class="el" href="binding__dbus_8c.html#a9aedd7fd9d261196018280d5d1bbc7c1">binding_dbus.c</a>
</li>
<li>pcoord_getattr_py()
: <a class="el" href="pcoord_8c.html#a0a4d1a34526e0fa45d731cd0d900ae35">pcoord.c</a>
</li>
<li>pcoord_methods
: <a class="el" href="pcoord_8c.html#af2769378c858102b26b988ffaee3354e">pcoord.c</a>
</li>
<li>pcoord_parse()
: <a class="el" href="group__coord.html#ga61bdcf26825ab8b41cfcf1a035800a75">coord.c</a>
, <a class="el" href="group__coord.html#ga61bdcf26825ab8b41cfcf1a035800a75">coord.h</a>
</li>
<li>pcoord_py()
: <a class="el" href="common_8h.html#a7ad67bc2decc59dc3c5ef23ed5645fff">common.h</a>
, <a class="el" href="pcoord_8c.html#a7ad67bc2decc59dc3c5ef23ed5645fff">pcoord.c</a>
</li>
<li>pcoord_py_get()
: <a class="el" href="common_8h.html#a0932e385c56f1fc1b721fe3f3a4b283d">common.h</a>
, <a class="el" href="pcoord_8c.html#a0932e385c56f1fc1b721fe3f3a4b283d">pcoord.c</a>
</li>
<li>pcoord_Type
: <a class="el" href="common_8h.html#a770ddde01fbc685d1e5d2790159142f2">common.h</a>
, <a class="el" href="pcoord_8c.html#a770ddde01fbc685d1e5d2790159142f2">pcoord.c</a>
</li>
<li>pedestrian_cmd_pedestrian_rocket()
: <a class="el" href="pedestrian_8c.html#a68e6d8c355a151e53b0a586ab086b057">pedestrian.c</a>
</li>
<li>pedestrian_data
: <a class="el" href="pedestrian_8c.html#a2e9c9651abfdf24280bbaeb58c99513f">pedestrian.c</a>
</li>
<li>pedestrian_draw_arrow()
: <a class="el" href="pedestrian_8c.html#ab25f7b6b19cd1b569d413d72109d1fad">pedestrian.c</a>
</li>
<li>pedestrian_draw_arrows()
: <a class="el" href="pedestrian_8c.html#a6252c53cced4156ca778f7c704946da9">pedestrian.c</a>
</li>
<li>pedestrian_graphics_postdraw()
: <a class="el" href="pedestrian_8c.html#a1de72c3aef0edfbdd6617170ce702cb4">pedestrian.c</a>
</li>
<li>pedestrian_graphics_resize()
: <a class="el" href="pedestrian_8c.html#a35cd89af28e42c5808893744f5df371a">pedestrian.c</a>
</li>
<li>pedestrian_log()
: <a class="el" href="pedestrian_8c.html#af293c20c18865c97304cdc38a8c9adab">pedestrian.c</a>
</li>
<li>pedestrian_navit()
: <a class="el" href="pedestrian_8c.html#a73c4e4baadd0f7bf2aa8da88292bf1e1">pedestrian.c</a>
</li>
<li>pedestrian_navit_init()
: <a class="el" href="pedestrian_8c.html#a8da9aad3ef0a3ecc8615987664fbd1f3">pedestrian.c</a>
</li>
<li>pedestrian_read_tilt()
: <a class="el" href="pedestrian_8c.html#a872887ad755b516c4c700bd2dfee3bde">pedestrian.c</a>
</li>
<li>pedestrian_rocket_idle()
: <a class="el" href="pedestrian_8c.html#a6bbce47dea7d18e9c64f0d01ff4a4902">pedestrian.c</a>
</li>
<li>pedestrian_setup_tilt()
: <a class="el" href="pedestrian_8c.html#a56cb180e5cbeac09fbfff845c15c2134">pedestrian.c</a>
</li>
<li>pedestrian_write_tilt()
: <a class="el" href="pedestrian_8c.html#ab1bc732e0439f4c6dae4210874a4ac31">pedestrian.c</a>
</li>
<li>pedestrian_write_tilt_timer()
: <a class="el" href="pedestrian_8c.html#a7d3572f3efa85dbda24049ab3f6aa944">pedestrian.c</a>
</li>
<li>PFN_BthGetMode
: <a class="el" href="group__vehicle-wince.html#ga3a8541865780fdddba701f4e08a05a62">vehicle_wince.c</a>
</li>
<li>PFN_BthSetMode
: <a class="el" href="group__vehicle-wince.html#gaa152fd335682447b4a1d62f831dafeeb">vehicle_wince.c</a>
</li>
<li>phase
: <a class="el" href="maptool_8c.html#accf3aec63bc20b3c99ab4881cb07c05b">maptool.c</a>
</li>
<li>phase1_coord_max
: <a class="el" href="maptool_2misc_8c.html#a7d9fa52024247b89b3a96a4cb6f1c4df">misc.c</a>
</li>
<li>phase1_map()
: <a class="el" href="maptool_8h.html#af614abb9152680903a876b5f8cc7480a">maptool.h</a>
, <a class="el" href="maptool_2misc_8c.html#af614abb9152680903a876b5f8cc7480a">misc.c</a>
</li>
<li>phase34()
: <a class="el" href="maptool_2misc_8c.html#a4c0c980a13f1a0ca57dc0bcdb944a664">misc.c</a>
</li>
<li>phase34_process_file()
: <a class="el" href="maptool_2misc_8c.html#a94710339565517dc0ab71f348fafec91">misc.c</a>
</li>
<li>phase34_process_file_range()
: <a class="el" href="maptool_2misc_8c.html#a2f71c1ba13c9bd8ae3ea2a556f2b1587">misc.c</a>
</li>
<li>phase4()
: <a class="el" href="maptool_8h.html#a6e459d2bfddda6739ebf3af029da9c32">maptool.h</a>
, <a class="el" href="maptool_2misc_8c.html#a6e459d2bfddda6739ebf3af029da9c32">misc.c</a>
</li>
<li>phase5()
: <a class="el" href="maptool_8h.html#aaef1c37df5d04310744771488dad81b9">maptool.h</a>
, <a class="el" href="maptool_2misc_8c.html#aaef1c37df5d04310744771488dad81b9">misc.c</a>
</li>
<li>phi1
: <a class="el" href="geodesic_8h.html#a019bb01bc561dea51918b776e9fa4535">geodesic.h</a>
</li>
<li>phi2
: <a class="el" href="geodesic_8h.html#a89061c1c874aa5624d8cb064b97e24c9">geodesic.h</a>
</li>
<li>phoneme_callback
: <a class="el" href="speak_8c.html#af7a137148815e89009780e7f55fed780">speak.c</a>
</li>
<li>phrase_route_calc()
: <a class="el" href="phrase_8c.html#af70bccf993ad02ef4e608fab5ccc43b5">phrase.c</a>
, <a class="el" href="phrase_8h.html#af70bccf993ad02ef4e608fab5ccc43b5">phrase.h</a>
</li>
<li>phrase_route_calculated()
: <a class="el" href="phrase_8c.html#ac63e7a7d330a30d49bf568a896442e3e">phrase.c</a>
, <a class="el" href="phrase_8h.html#ac63e7a7d330a30d49bf568a896442e3e">phrase.h</a>
</li>
<li>PI
: <a class="el" href="sunriset_8h.html#a598a3330b3c21701223ee0ca14316eca">sunriset.h</a>
</li>
<li>PIXEL_FORMAT
: <a class="el" href="graphics__opengl_8c.html#a0f466a358b5bf0e338fb6ee72f1e1011">graphics_opengl.c</a>
</li>
<li>pls
: <a class="el" href="group__plugins.html#gaf28872dd09ce8421446eb23f4be48438">plugin.c</a>
</li>
<li>PLUGIN_C
: <a class="el" href="plugin_8c.html#ae04899e8445b1557f0a83c1d2c3847bc">plugin.c</a>
</li>
<li>plugin_call_init()
: <a class="el" href="group__plugins.html#ga82f7feb9e3bb4cb8bf4de87e8113b28e">plugin.c</a>
, <a class="el" href="group__plugins.html#ga82f7feb9e3bb4cb8bf4de87e8113b28e">plugin.h</a>
</li>
<li>plugin_category
: <a class="el" href="plugin_8h.html#aaf2fec10fd7066df587b216658491532">plugin.h</a>
</li>
<li>PLUGIN_CATEGORY
: <a class="el" href="plugin_8h.html#a3b24ddfbf5b0453e71dface61c3ada39">plugin.h</a>
</li>
<li>plugin_category_event
: <a class="el" href="plugin_8h.html#aaf2fec10fd7066df587b216658491532a68f4b65161acd7b1dbc58ad005b61b6b">plugin.h</a>
</li>
<li>plugin_category_font
: <a class="el" href="plugin_8h.html#aaf2fec10fd7066df587b216658491532a3705add07c21ee50547080ec30645bfc">plugin.h</a>
</li>
<li>plugin_category_graphics
: <a class="el" href="plugin_8h.html#aaf2fec10fd7066df587b216658491532a61064c70f60e5c2e88d1f177020b6df6">plugin.h</a>
</li>
<li>plugin_category_gui
: <a class="el" href="plugin_8h.html#aaf2fec10fd7066df587b216658491532a81ded041a6b9958ce940135f5f803de0">plugin.h</a>
</li>
<li>plugin_category_last
: <a class="el" href="plugin_8h.html#aaf2fec10fd7066df587b216658491532abd2ef77b0ec920c3c4023771e5cfe176">plugin.h</a>
</li>
<li>plugin_category_map
: <a class="el" href="plugin_8h.html#aaf2fec10fd7066df587b216658491532adc2da9839a5c145d30dfd5f638f79cbb">plugin.h</a>
</li>
<li>plugin_category_osd
: <a class="el" href="plugin_8h.html#aaf2fec10fd7066df587b216658491532a2bf6d493a2fcd966d5a2effb8a56cd35">plugin.h</a>
</li>
<li>plugin_category_speech
: <a class="el" href="plugin_8h.html#aaf2fec10fd7066df587b216658491532a370d1a4d8618f8f20bcac91ac11f4e27">plugin.h</a>
</li>
<li>plugin_category_vehicle
: <a class="el" href="plugin_8h.html#aaf2fec10fd7066df587b216658491532a417af489b0bc116cc2e9c8494f484b09">plugin.h</a>
</li>
<li>plugin_deinit()
: <a class="el" href="osso_8c.html#a8a02dc8581cd4267536b00829347230d">osso.c</a>
</li>
<li>PLUGIN_DESCRIPTION
: <a class="el" href="browserplugin_8c.html#a02783773d3c73e1e9f63c1181d39e93a">browserplugin.c</a>
</li>
<li>plugin_destroy()
: <a class="el" href="group__plugins.html#gafc5b0a4338dad8856b34b29895a6e737">plugin.h</a>
, <a class="el" href="group__plugins.html#gafc5b0a4338dad8856b34b29895a6e737">plugin.c</a>
</li>
<li>PLUGIN_FUNC1
: <a class="el" href="plugin_8h.html#a10d46f9607007f0f1618352a0952ac88">plugin.h</a>
</li>
<li>PLUGIN_FUNC3
: <a class="el" href="plugin_8h.html#a8912cbf255b3c615a08c9c6283f33d66">plugin.h</a>
</li>
<li>PLUGIN_FUNC4
: <a class="el" href="plugin_8h.html#aa295519398a5f294d261a152ee757718">plugin.h</a>
</li>
<li>plugin_get_active()
: <a class="el" href="group__plugins.html#gabed5f2c35cf99b78d26116f415394b00">plugin.c</a>
, <a class="el" href="group__plugins.html#gabed5f2c35cf99b78d26116f415394b00">plugin.h</a>
</li>
<li>plugin_get_category()
: <a class="el" href="group__plugins.html#ga701f281e06dd1782a7cb86301b82128a">plugin.c</a>
, <a class="el" href="group__plugins.html#ga701f281e06dd1782a7cb86301b82128a">plugin.h</a>
</li>
<li>plugin_get_name()
: <a class="el" href="group__plugins.html#ga24464c75a8865fd8cd94ed9d021ab48e">plugin.c</a>
, <a class="el" href="group__plugins.html#ga24464c75a8865fd8cd94ed9d021ab48e">plugin.h</a>
</li>
<li>plugin_init
: <a class="el" href="plugin_8h.html#a19f69f75502fe229ad256d5f485c352e">plugin.h</a>
, <a class="el" href="osso_8c.html#ga1eaae939034896b436dffbf5e93c0da1">osso.c</a>
, <a class="el" href="binding__dbus_8c.html#a1eaae939034896b436dffbf5e93c0da1">binding_dbus.c</a>
, <a class="el" href="binding__python_8c.html#a1eaae939034896b436dffbf5e93c0da1">binding_python.c</a>
, <a class="el" href="binding__win32_8c.html#a1eaae939034896b436dffbf5e93c0da1">binding_win32.c</a>
, <a class="el" href="font__freetype_8c.html#a1eaae939034896b436dffbf5e93c0da1">font_freetype.c</a>
, <a class="el" href="graphics__android_8c.html#a1eaae939034896b436dffbf5e93c0da1">graphics_android.c</a>
, <a class="el" href="graphics__cocoa_8m.html#a1eaae939034896b436dffbf5e93c0da1">graphics_cocoa.m</a>
, <a class="el" href="graphics__egl_8c.html#a1eaae939034896b436dffbf5e93c0da1">graphics_egl.c</a>
, <a class="el" href="graphics__gd_8c.html#a1eaae939034896b436dffbf5e93c0da1">graphics_gd.c</a>
, <a class="el" href="graphics__gtk__drawing__area_8c.html#a1eaae939034896b436dffbf5e93c0da1">graphics_gtk_drawing_area.c</a>
, <a class="el" href="graphics__null_8c.html#a1eaae939034896b436dffbf5e93c0da1">graphics_null.c</a>
, <a class="el" href="graphics__opengl_8c.html#a1eaae939034896b436dffbf5e93c0da1">graphics_opengl.c</a>
, <a class="el" href="graphics__qt5_8cpp.html#a1eaae939034896b436dffbf5e93c0da1">graphics_qt5.cpp</a>
, <a class="el" href="graphics__qt__qpainter_8cpp.html#a1eaae939034896b436dffbf5e93c0da1">graphics_qt_qpainter.cpp</a>
, <a class="el" href="graphics__sdl_8c.html#a1eaae939034896b436dffbf5e93c0da1">graphics_sdl.c</a>
, <a class="el" href="graphics__win32_8c.html#a1eaae939034896b436dffbf5e93c0da1">graphics_win32.c</a>
, <a class="el" href="gui__gtk__window_8c.html#a1eaae939034896b436dffbf5e93c0da1">gui_gtk_window.c</a>
, <a class="el" href="gui__internal_8c.html#a1eaae939034896b436dffbf5e93c0da1">gui_internal.c</a>
, <a class="el" href="group__vehicle-file.html#ga1eaae939034896b436dffbf5e93c0da1">gui_internal_priv.h</a>
, <a class="el" href="gui__qml_8cpp.html#a1eaae939034896b436dffbf5e93c0da1">gui_qml.cpp</a>
, <a class="el" href="gui__qt5__qml_8cpp.html#a1eaae939034896b436dffbf5e93c0da1">gui_qt5_qml.cpp</a>
, <a class="el" href="gui__win32_8c.html#a1eaae939034896b436dffbf5e93c0da1">gui_win32.c</a>
, <a class="el" href="binfile_8c.html#a1eaae939034896b436dffbf5e93c0da1">binfile.c</a>
, <a class="el" href="csv_8c.html#a1eaae939034896b436dffbf5e93c0da1">csv.c</a>
, <a class="el" href="filter_8c.html#a1eaae939034896b436dffbf5e93c0da1">filter.c</a>
, <a class="el" href="garmin_8c.html#a1eaae939034896b436dffbf5e93c0da1">garmin.c</a>
, <a class="el" href="garmin__img_8c.html#a1eaae939034896b436dffbf5e93c0da1">garmin_img.c</a>
, <a class="el" href="map_2mg_2map_8c.html#a1eaae939034896b436dffbf5e93c0da1">map.c</a>
, <a class="el" href="shapefile_8c.html#a1eaae939034896b436dffbf5e93c0da1">shapefile.c</a>
, <a class="el" href="textfile_8c.html#a1eaae939034896b436dffbf5e93c0da1">textfile.c</a>
, <a class="el" href="osd__core_8c.html#a1eaae939034896b436dffbf5e93c0da1">osd_core.c</a>
, <a class="el" href="j1850_8c.html#a1eaae939034896b436dffbf5e93c0da1">j1850.c</a>
, <a class="el" href="pedestrian_8c.html#a1eaae939034896b436dffbf5e93c0da1">pedestrian.c</a>
, <a class="el" href="group__vehicle-file.html#ga1eaae939034896b436dffbf5e93c0da1">plugin.h</a>
, <a class="el" href="speech__android_8c.html#a1eaae939034896b436dffbf5e93c0da1">speech_android.c</a>
, <a class="el" href="speech__cmdline_8c.html#a1eaae939034896b436dffbf5e93c0da1">speech_cmdline.c</a>
, <a class="el" href="speech__dbus_8c.html#a1eaae939034896b436dffbf5e93c0da1">speech_dbus.c</a>
, <a class="el" href="speak_8c.html#a1eaae939034896b436dffbf5e93c0da1">speak.c</a>
, <a class="el" href="speech__iphone_8m.html#a1eaae939034896b436dffbf5e93c0da1">speech_iphone.m</a>
, <a class="el" href="qt5__espeak_8cpp.html#a1eaae939034896b436dffbf5e93c0da1">qt5_espeak.cpp</a>
, <a class="el" href="speech__speech__dispatcher_8c.html#a1eaae939034896b436dffbf5e93c0da1">speech_speech_dispatcher.c</a>
, <a class="el" href="vehicle__android_8c.html#a1eaae939034896b436dffbf5e93c0da1">vehicle_android.c</a>
, <a class="el" href="vehicle__demo_8c.html#a1eaae939034896b436dffbf5e93c0da1">vehicle_demo.c</a>
, <a class="el" href="group__vehicle-file.html#ga1eaae939034896b436dffbf5e93c0da1">vehicle_file.c</a>
, <a class="el" href="group__vehicle-file.html#ga1eaae939034896b436dffbf5e93c0da1">vehicle_pipe.c</a>
, <a class="el" href="group__vehicle-file.html#ga1eaae939034896b436dffbf5e93c0da1">vehicle_serial.c</a>
, <a class="el" href="group__vehicle-file.html#ga1eaae939034896b436dffbf5e93c0da1">vehicle_socket.c</a>
, <a class="el" href="group__vehicle-gpsd.html#ga1eaae939034896b436dffbf5e93c0da1">vehicle_gpsd.c</a>
, <a class="el" href="group__vehicle-gpsd-dbus.html#ga1eaae939034896b436dffbf5e93c0da1">vehicle_gpsd_dbus.c</a>
, <a class="el" href="group__vehicle-gypsy.html#ga1eaae939034896b436dffbf5e93c0da1">vehicle_gypsy.c</a>
, <a class="el" href="group__vehicle-iphone.html#ga1eaae939034896b436dffbf5e93c0da1">vehicle_iphone.c</a>
, <a class="el" href="group__vehicle-null.html#ga1eaae939034896b436dffbf5e93c0da1">vehicle_null.c</a>
, <a class="el" href="group__vehicle-qt5.html#ga1eaae939034896b436dffbf5e93c0da1">vehicle_qt5.cpp</a>
, <a class="el" href="group__vehicle-webos.html#ga1eaae939034896b436dffbf5e93c0da1">vehicle_webos.c</a>
, <a class="el" href="group__vehicle-wince.html#ga1eaae939034896b436dffbf5e93c0da1">vehicle_wince.c</a>
</li>
<li>plugin_load()
: <a class="el" href="group__plugins.html#ga13c8e90a535267c5e3204797595b9ed5">plugin.c</a>
, <a class="el" href="group__plugins.html#ga13c8e90a535267c5e3204797595b9ed5">plugin.h</a>
</li>
<li>plugin_module_cat
: <a class="el" href="plugin_8h.html#ad888c2599192a99d7310178c396cec6f">plugin.h</a>
</li>
<li>plugin_module_cat2
: <a class="el" href="plugin_8h.html#af83b45e2ac34539b67742516b4d16546">plugin.h</a>
</li>
<li>plugin_module_cat3
: <a class="el" href="plugin_8h.html#a0f3715b35225c25b670bb9d763af0751">plugin.h</a>
</li>
<li>PLUGIN_NAME
: <a class="el" href="browserplugin_8c.html#a0acf7475326cdcd31d690b72033de33a">browserplugin.c</a>
</li>
<li>plugin_new()
: <a class="el" href="group__plugins.html#ga4b58f7c17849d07d37964c136e731008">plugin.c</a>
, <a class="el" href="group__plugins.html#ga4b58f7c17849d07d37964c136e731008">plugin.h</a>
</li>
<li>plugin_new_from_path()
: <a class="el" href="group__plugins.html#gad94588a6c78dc7e7add1d29f60a8e192">plugin.c</a>
</li>
<li>PLUGIN_PROTO
: <a class="el" href="plugin_8h.html#a66000197dde75ea681645659dec1f3a7">plugin.h</a>
</li>
<li>plugin_set_active()
: <a class="el" href="group__plugins.html#ga9adccb89a7f4ad7bd46ad22b14fa0588">plugin.c</a>
, <a class="el" href="group__plugins.html#ga9adccb89a7f4ad7bd46ad22b14fa0588">plugin.h</a>
</li>
<li>plugin_set_lazy()
: <a class="el" href="group__plugins.html#gabe372cf2cc6efa95f3e3222e8bd5acd9">plugin.c</a>
, <a class="el" href="group__plugins.html#gabe372cf2cc6efa95f3e3222e8bd5acd9">plugin.h</a>
</li>
<li>plugin_set_ondemand()
: <a class="el" href="group__plugins.html#gaa074a3ab18b1fc6ff6ce18bd5f956388">plugin.c</a>
</li>
<li>plugin_unload()
: <a class="el" href="group__plugins.html#ga9e1aeae5081d2538162ec8154adc2c7d">plugin.c</a>
, <a class="el" href="group__plugins.html#ga9e1aeae5081d2538162ec8154adc2c7d">plugin.h</a>
</li>
<li>PLUGIN_VERSION
: <a class="el" href="browserplugin_8c.html#afccad64028fb6c9ac2923be268a89efb">browserplugin.c</a>
</li>
<li>plugins
: <a class="el" href="maptool_8c.html#a2b5b9d3eb40253fc279afc80f504c3a5">maptool.c</a>
</li>
<li>plugins_destroy()
: <a class="el" href="group__plugins.html#gafa2ed379c854b20ec13846d3abf36a73">plugin.c</a>
, <a class="el" href="group__plugins.html#gafa2ed379c854b20ec13846d3abf36a73">plugin.h</a>
</li>
<li>plugins_init()
: <a class="el" href="group__plugins.html#gada5ff5f7ec8e4da87f38db6a0cb4846c">plugin.c</a>
, <a class="el" href="group__plugins.html#gada5ff5f7ec8e4da87f38db6a0cb4846c">plugin.h</a>
</li>
<li>plugins_new()
: <a class="el" href="group__plugins.html#ga71694854a00eccff1b8387f065789557">plugin.c</a>
, <a class="el" href="group__plugins.html#ga71694854a00eccff1b8387f065789557">plugin.h</a>
</li>
<li>pngdecode()
: <a class="el" href="graphics__win32_8c.html#ac69f474d11a94ac72e085dd3faed5f26">graphics_win32.c</a>
</li>
<li>pngrender()
: <a class="el" href="graphics__win32_8c.html#a3d8381aa8558377e18e472efd627c639">graphics_win32.c</a>
</li>
<li>pngscale()
: <a class="el" href="graphics__win32_8c.html#ab39620e12b996c343aa7ab32d2f7f6e2">graphics_win32.c</a>
</li>
<li>poi_index
: <a class="el" href="garmin__img_8c.html#a1723985567b21e5cfb3e4488659d0379">garmin_img.c</a>
</li>
<li>poi_properties
: <a class="el" href="garmin__img_8c.html#ab5e55c8484d99c1cc55dfbd59902b09b">garmin_img.c</a>
</li>
<li>poi_search_action()
: <a class="el" href="gui__gtk__action_8c.html#aa28a868cd813e5bd82cc9cccb8befc63">gui_gtk_action.c</a>
</li>
<li>poi_types
: <a class="el" href="garmin__img_8c.html#aed123f6c0d2d9a4882ab433978dcfe7a">garmin_img.c</a>
</li>
<li>point_attr_get()
: <a class="el" href="garmin_8c.html#a5407866e83dd835698f6cffb4d0ee2ec">garmin.c</a>
</li>
<li>point_coord_get()
: <a class="el" href="garmin_8c.html#ae3e08aa7a5c51b543f9e79e3fc7b654a">garmin.c</a>
</li>
<li>point_get_from_message()
: <a class="el" href="binding__dbus_8c.html#a01b5a43a3b03238fd9bebe5ee7437bfb">binding_dbus.c</a>
</li>
<li>PointOfInterest
: <a class="el" href="ngqpoint_8h.html#ab85b18a34fce0dfc4f1c63142bc889a4aa4ee8b7b703a13592dc2bb0b06cdfa02">ngqpoint.h</a>
</li>
<li>poly_attr_get()
: <a class="el" href="poly_8c.html#acce886d92074efcc72cc79532f2b4833">poly.c</a>
</li>
<li>poly_attr_rewind()
: <a class="el" href="poly_8c.html#a1a455769ed9574caf9e60eb260cef988">poly.c</a>
</li>
<li>poly_coord_get()
: <a class="el" href="garmin_8c.html#a2ed722b56be77b02d23146619bae4903">garmin.c</a>
, <a class="el" href="poly_8c.html#a2ed722b56be77b02d23146619bae4903">poly.c</a>
</li>
<li>poly_coord_rewind()
: <a class="el" href="poly_8c.html#af6a1814da36d0d0d28f75d8b408ac9e8">poly.c</a>
</li>
<li>poly_get()
: <a class="el" href="mg_8h.html#a0b4f6aed0b770731b731e07828f75a2a">mg.h</a>
, <a class="el" href="poly_8c.html#a0b4f6aed0b770731b731e07828f75a2a">poly.c</a>
</li>
<li>poly_get_byid()
: <a class="el" href="mg_8h.html#a3fe4e6633924780a3ae7a774732bfcbe">mg.h</a>
, <a class="el" href="poly_8c.html#a3fe4e6633924780a3ae7a774732bfcbe">poly.c</a>
</li>
<li>poly_get_data()
: <a class="el" href="poly_8c.html#a5778a87be02abab0147eefc9bd2a7d8a">poly.c</a>
</li>
<li>poly_intersection()
: <a class="el" href="graphics_8c.html#aae5b20946f5f500c7003a981618d6702">graphics.c</a>
</li>
<li>poly_meth
: <a class="el" href="poly_8c.html#a17cc361260d2e6cc789208b37356a5ad">poly.c</a>
</li>
<li>poly_ranges
: <a class="el" href="map_2mg_2map_8c.html#a5d8f79d03208a71a3b542fb445d263e0">map.c</a>
</li>
<li>polygon_new()
: <a class="el" href="layout_8c.html#a5e46226d681ad8ccb360c2f7907ff1de">layout.c</a>
, <a class="el" href="layout_8h.html#a5e46226d681ad8ccb360c2f7907ff1de">layout.h</a>
</li>
<li>polyline_new()
: <a class="el" href="layout_8c.html#ad2ff1b8bedb0da0bdc4dadc6cf611a19">layout.c</a>
, <a class="el" href="layout_8h.html#ad2ff1b8bedb0da0bdc4dadc6cf611a19">layout.h</a>
</li>
<li>pop_tile()
: <a class="el" href="binfile_8c.html#a2f4d7453ee35d0192c364fc80f71c0d8">binfile.c</a>
</li>
<li>popup()
: <a class="el" href="popup_8c.html#a3d7a909a7f21ca807a96913fb19483db">popup.c</a>
, <a class="el" href="popup_8h.html#a3d7a909a7f21ca807a96913fb19483db">popup.h</a>
</li>
<li>popup_activate()
: <a class="el" href="gui__win32_8c.html#a9755eb439692a97c8b68721020890b40">gui_win32.c</a>
, <a class="el" href="gui__gtk__action_8c.html#a9755eb439692a97c8b68721020890b40">gui_gtk_action.c</a>
</li>
<li>popup_deactivate()
: <a class="el" href="gui__gtk__action_8c.html#a260d1cbd2bf134223b0472debdf155f5">gui_gtk_action.c</a>
, <a class="el" href="gui__win32_8c.html#ac28919c7982ea78f3f6e8cd33c8c2451">gui_win32.c</a>
</li>
<li>popup_display()
: <a class="el" href="popup_8c.html#a31a02701201e0dfe6c7b85331268a7d3">popup.c</a>
</li>
<li>popup_item_dump()
: <a class="el" href="popup_8c.html#ad3f43c5450a12a4c15090a4c66689ebf">popup.c</a>
</li>
<li>POPUP_MENU_OFFSET
: <a class="el" href="graphics__win32_8h.html#aa619410a3ecf21cdb67bde8bc30bdae3">graphics_win32.h</a>
</li>
<li>popup_printf
: <a class="el" href="popup_8c.html#a5f0271a8fabf0861f4cea6d175947fd5">popup.c</a>
</li>
<li>popup_printf_cb()
: <a class="el" href="popup_8c.html#a41ab898f955cf61922c28a3d6d00979c">popup.c</a>
</li>
<li>popup_set_bookmark()
: <a class="el" href="popup_8c.html#a1a2187c0bd9ab9a2216bc3e3ab0fbcb6">popup.c</a>
</li>
<li>popup_set_destination()
: <a class="el" href="popup_8c.html#aa92e1ddd0959ca989f2844b3bd64f4e7">popup.c</a>
</li>
<li>popup_set_position()
: <a class="el" href="popup_8c.html#a26f8fb90edd10daefc29af18d04b9cf1">popup.c</a>
</li>
<li>popup_set_visitbefore()
: <a class="el" href="popup_8c.html#a291bb98e55f053436dd1322b56ac0e76">popup.c</a>
, <a class="el" href="popup_8h.html#a291bb98e55f053436dd1322b56ac0e76">popup.h</a>
</li>
<li>popup_show_attr_val()
: <a class="el" href="popup_8c.html#a57e39817b9b798ba9e11cda23e6a6931">popup.c</a>
</li>
<li>popup_show_attrs()
: <a class="el" href="popup_8c.html#a2295e0d8a9a9aa33078db4aaef60dc6a">popup.c</a>
</li>
<li>popup_show_item()
: <a class="el" href="popup_8c.html#a210ae1cb75af3dc657ea19dcb06f7541">popup.c</a>
</li>
<li>popup_show_visitbefore()
: <a class="el" href="popup_8c.html#a6558eabbba6c0eb7eb298c7bf416fcd7">popup.c</a>
</li>
<li>popup_traffic_distortion()
: <a class="el" href="popup_8c.html#ad0252613bfa45161e30eeec2f53f1737">popup.c</a>
</li>
<li>popup_traffic_distortion_blocked()
: <a class="el" href="popup_8c.html#aba44d0589f40190570fba467ea27dce4">popup.c</a>
</li>
<li>popup_traffic_distortion_delay()
: <a class="el" href="popup_8c.html#a85555d6775dc3150b383398703e709b8">popup.c</a>
</li>
<li>popup_traffic_distortion_speed()
: <a class="el" href="popup_8c.html#a33bf8cb30b4cfb8441709d128ec9eda5">popup.c</a>
</li>
<li>Position
: <a class="el" href="ngqpoint_8h.html#ab85b18a34fce0dfc4f1c63142bc889a4a0ca2444163688098d8e674e31fb11397">ngqpoint.h</a>
</li>
<li>possible_keys_incremental_search
: <a class="el" href="gui__internal__search_8c.html#ae18bf060ccae932e6e5db6de6665e922">gui_internal_search.c</a>
</li>
<li>POST_SHIFT
: <a class="el" href="transform_8c.html#a142f183c856d187544d5beb8db7b564f">transform.c</a>
</li>
<li>postal_match()
: <a class="el" href="search_8c.html#a21740eadbd56344d704ee6d93c415708">search.c</a>
</li>
<li>postal_str()
: <a class="el" href="android_8c.html#a55e6a400a09eb5a026bfa47d433450c7">android.c</a>
, <a class="el" href="gui__internal__search_8c.html#a55e6a400a09eb5a026bfa47d433450c7">gui_internal_search.c</a>
</li>
<li>prefixed_message_pack()
: <a class="el" href="protobuf-c_8c.html#a9b08c2ecbe774a39f758fb06b49fa1c2">protobuf-c.c</a>
</li>
<li>print
: <a class="el" href="osm__o5m_8c.html#ae87c9065eb23621da3b62c32c1d11b31">osm_o5m.c</a>
</li>
<li>print_array()
: <a class="el" href="cJSON_8c.html#af1dcc8f2114d998599b506cd5e0645a1">cJSON.c</a>
</li>
<li>print_escaped()
: <a class="el" href="osm__o5m_8c.html#ada1481925f4f72212ddd41eaba684ad3">osm_o5m.c</a>
</li>
<li>print_header()
: <a class="el" href="gentypes_8c.html#a983e12ff365733e2dca1e1b3c02d7b53">gentypes.c</a>
</li>
<li>print_number()
: <a class="el" href="cJSON_8c.html#a4fc475762462c174842e2940e0ac8d1f">cJSON.c</a>
</li>
<li>print_object()
: <a class="el" href="cJSON_8c.html#a10a65e36abb6735ff0ef961cd29265f8">cJSON.c</a>
</li>
<li>print_string()
: <a class="el" href="cJSON_8c.html#ab58ff3cd83c7831086b492600d13de0b">cJSON.c</a>
</li>
<li>print_string_ptr()
: <a class="el" href="cJSON_8c.html#a2e747d7e6ffe6f7e995fb90a96188bb4">cJSON.c</a>
</li>
<li>PRINT_UNPACK_ERRORS
: <a class="el" href="protobuf-c_8c.html#a9088a8dd8b2412a10c44652c679fad79">protobuf-c.c</a>
</li>
<li>print_usage()
: <a class="el" href="tell__navit_8c.html#aa1187b70998f73cdb598833d6afaa30a">tell_navit.c</a>
, <a class="el" href="start__real_8c.html#a0edd37fe65f6a8b1e530370f6e6402f3">start_real.c</a>
</li>
<li>print_value()
: <a class="el" href="cJSON_8c.html#a402d2d8f268c8cc8e6654063adf1807d">cJSON.c</a>
</li>
<li>printIdentifier()
: <a class="el" href="browserplugin_8c.html#a9e53846f8ab22cacd00922a4f8a2dc7e">browserplugin.c</a>
</li>
<li>process_associated_street_member()
: <a class="el" href="osm_8c.html#a672943ead98d5865d019e8344976aeb9">osm.c</a>
</li>
<li>process_associated_streets()
: <a class="el" href="maptool_8h.html#a7202c6f323289fda53d87bc84061d2a2">maptool.h</a>
, <a class="el" href="osm_8c.html#a7202c6f323289fda53d87bc84061d2a2">osm.c</a>
</li>
<li>process_associated_streets_setup()
: <a class="el" href="osm_8c.html#a250b01a8963f4ca0127a95867a05f733">osm.c</a>
</li>
<li>process_binfile()
: <a class="el" href="maptool_8h.html#a68bc069e595445eaa9e7c1b3e865b2a1">maptool.h</a>
, <a class="el" href="maptool_2misc_8c.html#a68bc069e595445eaa9e7c1b3e865b2a1">misc.c</a>
</li>
<li>process_boundaries()
: <a class="el" href="boundaries_8c.html#a233753bae1c51636dc514023ccced00b">boundaries.c</a>
, <a class="el" href="maptool_8h.html#a233753bae1c51636dc514023ccced00b">maptool.h</a>
</li>
<li>process_boundaries_finish()
: <a class="el" href="boundaries_8c.html#a59ef7544d54f6bd5d7b4d5829b073e81">boundaries.c</a>
</li>
<li>process_boundaries_insert()
: <a class="el" href="boundaries_8c.html#afba16ca37193c6a2fb87ac3fc0d6816c">boundaries.c</a>
</li>
<li>process_boundaries_member()
: <a class="el" href="boundaries_8c.html#afeeba2e81f26a0eae1b860cc13295bae">boundaries.c</a>
</li>
<li>process_boundaries_setup()
: <a class="el" href="boundaries_8c.html#a921eb971be65d0dd53fce43af5cf1be5">boundaries.c</a>
</li>
<li>process_coastlines()
: <a class="el" href="coastline_8c.html#a6d0089b6f5965db6c41ecd7e131b3a67">coastline.c</a>
, <a class="el" href="maptool_8h.html#a6d0089b6f5965db6c41ecd7e131b3a67">maptool.h</a>
</li>
<li>process_dense()
: <a class="el" href="osm__protobuf_8c.html#a2b65c9efea2e62430b5864e518b1c302">osm_protobuf.c</a>
</li>
<li>process_fields()
: <a class="el" href="shapefile_8c.html#a9c0d4c3b7009a0586386a1f984d151f4">shapefile.c</a>
</li>
<li>process_house_number_interpolation_member()
: <a class="el" href="osm_8c.html#ab84786451c446b715e09609861d452b6">osm.c</a>
</li>
<li>process_house_number_interpolations()
: <a class="el" href="maptool_8h.html#a9d91b709ccd9b8b7a220046966c9ebbd">maptool.h</a>
, <a class="el" href="osm_8c.html#a9d91b709ccd9b8b7a220046966c9ebbd">osm.c</a>
</li>
<li>process_house_number_interpolations_setup()
: <a class="el" href="osm_8c.html#aa3f820c336ce3c6775f4f5b5430a2f20">osm.c</a>
</li>
<li>process_osmdata()
: <a class="el" href="osm__protobuf_8c.html#a9c91141f3fa09ea725ff8d234289a3f9">osm_protobuf.c</a>
</li>
<li>process_osmheader()
: <a class="el" href="osm__protobuf_8c.html#a646c06f8402032029b0f46b49769e494">osm_protobuf.c</a>
</li>
<li>process_relation()
: <a class="el" href="osm__protobuf_8c.html#a48c6e0de74a8a25d89bb0e35901f7445">osm_protobuf.c</a>
</li>
<li>process_slice()
: <a class="el" href="maptool_2misc_8c.html#acfbdcfa0633f0742dff80d0f98eaddbd">misc.c</a>
</li>
<li>process_tag()
: <a class="el" href="osm__protobuf_8c.html#abd261421fb0139c2522c6adda9445a0d">osm_protobuf.c</a>
</li>
<li>process_triangles()
: <a class="el" href="graphics__egl_8c.html#af1a67ef8e88c3688f32a4fc7de7f7efd">graphics_egl.c</a>
</li>
<li>process_turn_restrictions()
: <a class="el" href="osm_8c.html#a28d8c95e9b24f364eaf3e0918cbd620a">osm.c</a>
, <a class="el" href="maptool_8h.html#a28d8c95e9b24f364eaf3e0918cbd620a">maptool.h</a>
</li>
<li>process_turn_restrictions_dump_coord()
: <a class="el" href="osm_8c.html#af92cd6f414b118cd441edc0b02b5642d">osm.c</a>
</li>
<li>process_turn_restrictions_finish()
: <a class="el" href="osm_8c.html#ae65247890e81595e3d7f30d3287224e1">osm.c</a>
</li>
<li>process_turn_restrictions_fromto()
: <a class="el" href="osm_8c.html#aa955c39e1b51c60cc22b3dd3cdf8f16b">osm.c</a>
</li>
<li>process_turn_restrictions_member()
: <a class="el" href="osm_8c.html#abe54ab0e70bb350e9429ac5f4377c39d">osm.c</a>
</li>
<li>process_turn_restrictions_old()
: <a class="el" href="maptool_8h.html#ac146cefd76197cb3e7ac9e6e549e8bdc">maptool.h</a>
</li>
<li>process_turn_restrictions_setup()
: <a class="el" href="osm_8c.html#af0fc87490548fdf145764c3c7dcfa827">osm.c</a>
</li>
<li>process_way()
: <a class="el" href="osm__protobuf_8c.html#a908239a7edafe07a82215dad3d5849d6">osm_protobuf.c</a>
</li>
<li>process_way2poi()
: <a class="el" href="osm_8c.html#ab2e84ec5b3a40013eaff1a50f8bf67a6">osm.c</a>
, <a class="el" href="maptool_8h.html#ab2e84ec5b3a40013eaff1a50f8bf67a6">maptool.h</a>
</li>
<li>processed_nodes
: <a class="el" href="maptool_8c.html#ae6055f00942b80bb96addf39b1f28c88">maptool.c</a>
, <a class="el" href="maptool_8h.html#ae6055f00942b80bb96addf39b1f28c88">maptool.h</a>
</li>
<li>processed_nodes_out
: <a class="el" href="maptool_8h.html#acd0e44a0367677e71c438f5d26899225">maptool.h</a>
, <a class="el" href="maptool_8c.html#acd0e44a0367677e71c438f5d26899225">maptool.c</a>
</li>
<li>processed_relations
: <a class="el" href="maptool_8c.html#a38d375c2d3b60cdb921d11bb4de929d6">maptool.c</a>
, <a class="el" href="maptool_8h.html#a38d375c2d3b60cdb921d11bb4de929d6">maptool.h</a>
</li>
<li>processed_tiles
: <a class="el" href="maptool_8c.html#af56803ae7b05d59108fe2ca0288c8a25">maptool.c</a>
, <a class="el" href="maptool_8h.html#af56803ae7b05d59108fe2ca0288c8a25">maptool.h</a>
</li>
<li>processed_ways
: <a class="el" href="maptool_8h.html#a52fab99336a5b9134dd8edf8e0e8cb12">maptool.h</a>
, <a class="el" href="maptool_8c.html#a52fab99336a5b9134dd8edf8e0e8cb12">maptool.c</a>
</li>
<li>ProcessNormalKeys()
: <a class="el" href="graphics__opengl_8c.html#ab61ac9e8576ae36059e7d035ddec3056">graphics_opengl.c</a>
</li>
<li>ProcessSpecialKeys()
: <a class="el" href="graphics__opengl_8c.html#ad5a97b880b7d917061395066ef5b3b64">graphics_opengl.c</a>
</li>
<li>profile
: <a class="el" href="profile_8h.html#a7135a9f7aaa8602a6e2cc1d9ab3c1573">profile.h</a>
</li>
<li>PROFILE_LEVEL_MAX
: <a class="el" href="profile_8c.html#afa3d4c231a1b238d81d2966b340db5b3">profile.c</a>
</li>
<li>profile_module
: <a class="el" href="profile_8h.html#a51a854e236ea7856b8ffcf8b20a7d7cc">profile.h</a>
</li>
<li>profile_option_destroy()
: <a class="el" href="profile__option_8c.html#a4e678dd69081170c1cc94c45ce4a3a9f">profile_option.c</a>
</li>
<li>profile_option_func
: <a class="el" href="profile__option_8c.html#a39059376b14589da5f97c9e60a8b2c3b">profile_option.c</a>
</li>
<li>profile_option_new()
: <a class="el" href="profile__option_8c.html#afcb4663abd91dc9e70edc8b86aa14399">profile_option.c</a>
</li>
<li>profile_str1
: <a class="el" href="profile_8h.html#a5ca09e02025f492aae2019ffccabb0b6">profile.h</a>
</li>
<li>profile_str2
: <a class="el" href="profile_8h.html#ae7d0205eae61719c157056eda01d9bf7">profile.h</a>
</li>
<li>profile_timer()
: <a class="el" href="profile_8c.html#aa76650cead3782aa2905f4a573598d6a">profile.c</a>
, <a class="el" href="profile_8h.html#aa76650cead3782aa2905f4a573598d6a">profile.h</a>
</li>
<li>PROG
: <a class="el" href="gpx2navit__txt_8h.html#a60a12235056da679c8976cec1faa66e2">gpx2navit_txt.h</a>
</li>
<li>progress_memory()
: <a class="el" href="maptool_8c.html#a7476defba2c89bd0b93a38201df2151b">maptool.c</a>
</li>
<li>progress_time()
: <a class="el" href="maptool_8c.html#ad3bd185beace3592c3db41326c5c8af3">maptool.c</a>
</li>
<li>projection
: <a class="el" href="projection_8h.html#a380c9c985eef434d23f9a7b95a52cbc1">projection.h</a>
</li>
<li>projection_from_name()
: <a class="el" href="projection_8h.html#ab88b4aae7ee305476bf3ac7faebe8019">projection.h</a>
, <a class="el" href="projection_8c.html#a3978616304a97908438c12bb16106a21">projection.c</a>
</li>
<li>projection_garmin
: <a class="el" href="projection_8h.html#a380c9c985eef434d23f9a7b95a52cbc1a99f0a3921f9fc25126cb6de94f21832b">projection.h</a>
</li>
<li>projection_mg
: <a class="el" href="projection_8h.html#a380c9c985eef434d23f9a7b95a52cbc1a9cbc062a5d78cd25a4ffbf49619f0064">projection.h</a>
</li>
<li>projection_names
: <a class="el" href="projection_8c.html#a17bcac5e1747423be4bb87dcca5efacd">projection.c</a>
</li>
<li>projection_none
: <a class="el" href="projection_8h.html#a380c9c985eef434d23f9a7b95a52cbc1a02133eae2b9a5a58ec1bbf3072cdac0e">projection.h</a>
</li>
<li>projection_screen
: <a class="el" href="projection_8h.html#a380c9c985eef434d23f9a7b95a52cbc1a7fac95e85079a3f4fec97458ce877db0">projection.h</a>
</li>
<li>projection_to_name()
: <a class="el" href="projection_8c.html#ab6bea86ce7e97569e9eedba942a880a2">projection.c</a>
, <a class="el" href="projection_8h.html#ab6bea86ce7e97569e9eedba942a880a2">projection.h</a>
</li>
<li>projection_utm
: <a class="el" href="projection_8h.html#a380c9c985eef434d23f9a7b95a52cbc1aa9a76e9e7fd7f6f52f907149c2bfef3e">projection.h</a>
</li>
<li>PROTOBUF_C_ASSERT
: <a class="el" href="protobuf-c_8h.html#aea4595651cb3e0920535d5ea496a3868">protobuf-c.h</a>
</li>
<li>PROTOBUF_C_ASSERT_NOT_REACHED
: <a class="el" href="protobuf-c_8h.html#a8a3952ffa48192cc8e4cf9e18285657b">protobuf-c.h</a>
</li>
<li>PROTOBUF_C_BEGIN_DECLS
: <a class="el" href="protobuf-c_8h.html#af5adb011384ca3a0a2703cf03c7debb2">protobuf-c.h</a>
</li>
<li>protobuf_c_boolean
: <a class="el" href="protobuf-c_8h.html#a98475218bcbd7a2171589414021c2633">protobuf-c.h</a>
</li>
<li>protobuf_c_buffer_simple_append()
: <a class="el" href="protobuf-c-private_8h.html#a275cd4262dea729e6e9165c074306860">protobuf-c-private.h</a>
, <a class="el" href="protobuf-c_8c.html#a2d0ce0ce60dd7b9daf26af2c7e408d5d">protobuf-c.c</a>
</li>
<li>PROTOBUF_C_BUFFER_SIMPLE_CLEAR
: <a class="el" href="protobuf-c_8h.html#a6ccc14c3d392606d993581def958522e">protobuf-c.h</a>
</li>
<li>PROTOBUF_C_BUFFER_SIMPLE_INIT
: <a class="el" href="protobuf-c_8h.html#a1d0aff4451c876c7fa4df6c590feb775">protobuf-c.h</a>
</li>
<li>protobuf_c_default_allocator
: <a class="el" href="protobuf-c_8c.html#a91bfcbde32140b149550b6b7e2a0349f">protobuf-c.c</a>
, <a class="el" href="protobuf-c_8h.html#a91bfcbde32140b149550b6b7e2a0349f">protobuf-c.h</a>
</li>
<li>PROTOBUF_C_DEPRECATED
: <a class="el" href="protobuf-c_8h.html#a179a4fd25f83d62936c36b332ea2db5f">protobuf-c.h</a>
</li>
<li>PROTOBUF_C_END_DECLS
: <a class="el" href="protobuf-c_8h.html#a6f11ccbc3b615d318530afb0bfeb9f43">protobuf-c.h</a>
</li>
<li>protobuf_c_enum_descriptor_get_value()
: <a class="el" href="protobuf-c_8h.html#a4a2eb3bb8c381fa05c7368be97ce96c4">protobuf-c.h</a>
, <a class="el" href="protobuf-c_8c.html#a4a2eb3bb8c381fa05c7368be97ce96c4">protobuf-c.c</a>
</li>
<li>protobuf_c_enum_descriptor_get_value_by_name()
: <a class="el" href="protobuf-c_8h.html#ad216b8390fd44cfbebdad70c4a5b4686">protobuf-c.h</a>
, <a class="el" href="protobuf-c_8c.html#ad216b8390fd44cfbebdad70c4a5b4686">protobuf-c.c</a>
</li>
<li>PROTOBUF_C_ENUM_DESCRIPTOR_MAGIC
: <a class="el" href="protobuf-c-private_8h.html#a3431021472547a553b41bb0d790e0bb2">protobuf-c-private.h</a>
</li>
<li>protobuf_c_int_ranges_lookup()
: <a class="el" href="protobuf-c-private_8h.html#acdeb2d517e73dbecb17b377b95d54182">protobuf-c-private.h</a>
</li>
<li>PROTOBUF_C_LABEL_OPTIONAL
: <a class="el" href="protobuf-c_8h.html#a5ec2e3fd5bbe4c5f6a64b06b7425d0e5abc861df7f96354b08c62397e5a1c1526">protobuf-c.h</a>
</li>
<li>PROTOBUF_C_LABEL_REPEATED
: <a class="el" href="protobuf-c_8h.html#a5ec2e3fd5bbe4c5f6a64b06b7425d0e5a2603fa5b6f8effddfedf61cd0b423d86">protobuf-c.h</a>
</li>
<li>PROTOBUF_C_LABEL_REQUIRED
: <a class="el" href="protobuf-c_8h.html#a5ec2e3fd5bbe4c5f6a64b06b7425d0e5a407dd9d769a377e156a6c945647bccbb">protobuf-c.h</a>
</li>
<li>protobuf_c_message_descriptor_get_field()
: <a class="el" href="protobuf-c_8c.html#a004d6ed4fe4cd4b89f3b56cabf773a9a">protobuf-c.c</a>
, <a class="el" href="protobuf-c_8h.html#a004d6ed4fe4cd4b89f3b56cabf773a9a">protobuf-c.h</a>
</li>
<li>protobuf_c_message_descriptor_get_field_by_name()
: <a class="el" href="protobuf-c_8c.html#aa26addf3543bdff9b65d283b1ee1c07f">protobuf-c.c</a>
, <a class="el" href="protobuf-c_8h.html#aa26addf3543bdff9b65d283b1ee1c07f">protobuf-c.h</a>
</li>
<li>PROTOBUF_C_MESSAGE_DESCRIPTOR_MAGIC
: <a class="el" href="protobuf-c-private_8h.html#adcac61f7cb03bac6b9d425c4d79d86b8">protobuf-c-private.h</a>
</li>
<li>protobuf_c_message_free_unpacked()
: <a class="el" href="protobuf-c_8c.html#af1cdf87e9105fb1517d2406a6ca14fbe">protobuf-c.c</a>
, <a class="el" href="protobuf-c_8h.html#af1cdf87e9105fb1517d2406a6ca14fbe">protobuf-c.h</a>
</li>
<li>protobuf_c_message_get_packed_size()
: <a class="el" href="protobuf-c_8h.html#a2c92b130142222b96991ffceb053828d">protobuf-c.h</a>
, <a class="el" href="protobuf-c_8c.html#a2c92b130142222b96991ffceb053828d">protobuf-c.c</a>
</li>
<li>protobuf_c_message_init
: <a class="el" href="protobuf-c_8h.html#a5c43b63d4c8907581853ba8a896d5761">protobuf-c.h</a>
</li>
<li>PROTOBUF_C_MESSAGE_INIT
: <a class="el" href="protobuf-c_8h.html#a38a0bc9ff1d31284c7e0ff958103b960">protobuf-c.h</a>
</li>
<li>protobuf_c_message_init_generic()
: <a class="el" href="protobuf-c_8c.html#ac3561894c9cff04d125d37d6f5ade5d1">protobuf-c.c</a>
</li>
<li>protobuf_c_message_pack()
: <a class="el" href="protobuf-c_8h.html#a704fdc1201b290834095720472090e9d">protobuf-c.h</a>
, <a class="el" href="protobuf-c_8c.html#a704fdc1201b290834095720472090e9d">protobuf-c.c</a>
</li>
<li>protobuf_c_message_pack_to_buffer()
: <a class="el" href="protobuf-c_8h.html#a0883bacc5a5b0ba927fdd79204f9ad68">protobuf-c.h</a>
, <a class="el" href="protobuf-c_8c.html#a0883bacc5a5b0ba927fdd79204f9ad68">protobuf-c.c</a>
</li>
<li>protobuf_c_message_unpack()
: <a class="el" href="protobuf-c_8c.html#aded25dd14ac4bed0b7080384079f280f">protobuf-c.c</a>
, <a class="el" href="protobuf-c_8h.html#ae44d7db85770b0d68a5741349e265029">protobuf-c.h</a>
</li>
<li>PROTOBUF_C_NO_DEPRECATED
: <a class="el" href="osmformat_8pb-c_8c.html#a0f739d56a8bbad1dd4bb21e15d75e1d9">osmformat.pb-c.c</a>
, <a class="el" href="fileformat_8pb-c_8c.html#a0f739d56a8bbad1dd4bb21e15d75e1d9">fileformat.pb-c.c</a>
</li>
<li>PROTOBUF_C_OFFSETOF
: <a class="el" href="protobuf-c_8h.html#af76d3be26e3fe42dbcb5e8a7b2c8154c">protobuf-c.h</a>
</li>
<li>protobuf_c_out_of_memory
: <a class="el" href="protobuf-c_8h.html#a476a217584ce49e2cb9233cebc67ee19">protobuf-c.h</a>
, <a class="el" href="protobuf-c_8c.html#a476a217584ce49e2cb9233cebc67ee19">protobuf-c.c</a>
</li>
<li>protobuf_c_out_of_memory_default()
: <a class="el" href="protobuf-c_8c.html#a8bf02fdd61b78a6d74a0641603e4d15c">protobuf-c.c</a>
</li>
<li>protobuf_c_service_descriptor_get_method_by_name()
: <a class="el" href="protobuf-c_8h.html#a354b8c26e89bba54e106f242759efed1">protobuf-c.h</a>
, <a class="el" href="protobuf-c_8c.html#a354b8c26e89bba54e106f242759efed1">protobuf-c.c</a>
</li>
<li>PROTOBUF_C_SERVICE_DESCRIPTOR_MAGIC
: <a class="el" href="protobuf-c-private_8h.html#a56d699a9bef4758bbed39b4d8d3a584c">protobuf-c-private.h</a>
</li>
<li>protobuf_c_service_destroy()
: <a class="el" href="protobuf-c_8c.html#a83552b50de54c6779abdfef385b4f89c">protobuf-c.c</a>
, <a class="el" href="protobuf-c_8h.html#a9df9841d948f6351f5a3762329165016">protobuf-c.h</a>
</li>
<li>protobuf_c_service_generated_init()
: <a class="el" href="protobuf-c_8c.html#ae77a58ba287f0f9c0bf1107cee953f6f">protobuf-c.c</a>
, <a class="el" href="protobuf-c-private_8h.html#ae77a58ba287f0f9c0bf1107cee953f6f">protobuf-c-private.h</a>
</li>
<li>protobuf_c_service_invoke_internal()
: <a class="el" href="protobuf-c_8c.html#a81246002e01dcf8787750da3dbf410de">protobuf-c.c</a>
, <a class="el" href="protobuf-c-private_8h.html#a81246002e01dcf8787750da3dbf410de">protobuf-c-private.h</a>
</li>
<li>protobuf_c_system_allocator
: <a class="el" href="protobuf-c_8h.html#a30e73e85f3fa8883900ee80cd370ce90">protobuf-c.h</a>
, <a class="el" href="protobuf-c_8c.html#a30e73e85f3fa8883900ee80cd370ce90">protobuf-c.c</a>
</li>
<li>PROTOBUF_C_TYPE_BOOL
: <a class="el" href="protobuf-c_8h.html#a784625188e935a74bc4577297b8c6802adabbab95a284dd090d4ad06d5efe15a4">protobuf-c.h</a>
</li>
<li>PROTOBUF_C_TYPE_BYTES
: <a class="el" href="protobuf-c_8h.html#a784625188e935a74bc4577297b8c6802a3fcef85f6edbc4b69b4dc3590ad172e8">protobuf-c.h</a>
</li>
<li>PROTOBUF_C_TYPE_DOUBLE
: <a class="el" href="protobuf-c_8h.html#a784625188e935a74bc4577297b8c6802ac9bd87c605d9b91c8ecbda3b8d0a21d0">protobuf-c.h</a>
</li>
<li>PROTOBUF_C_TYPE_ENUM
: <a class="el" href="protobuf-c_8h.html#a784625188e935a74bc4577297b8c6802a90b88be968f415cbc571fe9f594eefc3">protobuf-c.h</a>
</li>
<li>PROTOBUF_C_TYPE_FIXED32
: <a class="el" href="protobuf-c_8h.html#a784625188e935a74bc4577297b8c6802aac3030ee5e8dd5344379ee300a82202e">protobuf-c.h</a>
</li>
<li>PROTOBUF_C_TYPE_FIXED64
: <a class="el" href="protobuf-c_8h.html#a784625188e935a74bc4577297b8c6802a320288786ed4bd2c54c9e36b4c654b45">protobuf-c.h</a>
</li>
<li>PROTOBUF_C_TYPE_FLOAT
: <a class="el" href="protobuf-c_8h.html#a784625188e935a74bc4577297b8c6802a952cd3b1559601eda9e13bc031ce8124">protobuf-c.h</a>
</li>
<li>PROTOBUF_C_TYPE_INT32
: <a class="el" href="protobuf-c_8h.html#a784625188e935a74bc4577297b8c6802a54afdba64cff6fabf91b40fe31dec281">protobuf-c.h</a>
</li>
<li>PROTOBUF_C_TYPE_INT64
: <a class="el" href="protobuf-c_8h.html#a784625188e935a74bc4577297b8c6802a888a0648e4a7a60de4c85c9478a28943">protobuf-c.h</a>
</li>
<li>PROTOBUF_C_TYPE_MESSAGE
: <a class="el" href="protobuf-c_8h.html#a784625188e935a74bc4577297b8c6802a7f7176385f20b3c44770b99dbde34302">protobuf-c.h</a>
</li>
<li>PROTOBUF_C_TYPE_SFIXED32
: <a class="el" href="protobuf-c_8h.html#a784625188e935a74bc4577297b8c6802a85d90c50c21853765d70d46529daaa9d">protobuf-c.h</a>
</li>
<li>PROTOBUF_C_TYPE_SFIXED64
: <a class="el" href="protobuf-c_8h.html#a784625188e935a74bc4577297b8c6802a331f878e354cff599669429dbf9c4ce8">protobuf-c.h</a>
</li>
<li>PROTOBUF_C_TYPE_SINT32
: <a class="el" href="protobuf-c_8h.html#a784625188e935a74bc4577297b8c6802a274ea5920a7c3a4c60ad44cb5b83ffe7">protobuf-c.h</a>
</li>
<li>PROTOBUF_C_TYPE_SINT64
: <a class="el" href="protobuf-c_8h.html#a784625188e935a74bc4577297b8c6802adf45606aca4d584a2dcd7f6c6e65813e">protobuf-c.h</a>
</li>
<li>PROTOBUF_C_TYPE_STRING
: <a class="el" href="protobuf-c_8h.html#a784625188e935a74bc4577297b8c6802a6b4c1ad9006305661fbc64cb510718a3">protobuf-c.h</a>
</li>
<li>PROTOBUF_C_TYPE_UINT32
: <a class="el" href="protobuf-c_8h.html#a784625188e935a74bc4577297b8c6802ae09ad26f344a01b2553f018a2a1c6395">protobuf-c.h</a>
</li>
<li>PROTOBUF_C_TYPE_UINT64
: <a class="el" href="protobuf-c_8h.html#a784625188e935a74bc4577297b8c6802a7328d807873e30732d7b30d61f545943">protobuf-c.h</a>
</li>
<li>PROTOBUF_C_WIRE_TYPE_32BIT
: <a class="el" href="protobuf-c_8h.html#a58f35889606ee435ad29a83bcea23ca6a005bd9cbc420ac8413f7c624eb2d5cee">protobuf-c.h</a>
</li>
<li>PROTOBUF_C_WIRE_TYPE_64BIT
: <a class="el" href="protobuf-c_8h.html#a58f35889606ee435ad29a83bcea23ca6acddea9eb6cfa51d2515770b358b24f8f">protobuf-c.h</a>
</li>
<li>PROTOBUF_C_WIRE_TYPE_END_GROUP
: <a class="el" href="protobuf-c_8h.html#a58f35889606ee435ad29a83bcea23ca6a55ffe8468e484a11ffcca9c0bf3caf73">protobuf-c.h</a>
</li>
<li>PROTOBUF_C_WIRE_TYPE_LENGTH_PREFIXED
: <a class="el" href="protobuf-c_8h.html#a58f35889606ee435ad29a83bcea23ca6abee5e7e065cb28f5d9ef94ad62863edc">protobuf-c.h</a>
</li>
<li>PROTOBUF_C_WIRE_TYPE_START_GROUP
: <a class="el" href="protobuf-c_8h.html#a58f35889606ee435ad29a83bcea23ca6a06f43a2208e1a2e764afbb7b2a91023b">protobuf-c.h</a>
</li>
<li>PROTOBUF_C_WIRE_TYPE_VARINT
: <a class="el" href="protobuf-c_8h.html#a58f35889606ee435ad29a83bcea23ca6ad9cff26eff936f5ba95c039a63b9d1b3">protobuf-c.h</a>
</li>
<li>ProtobufCAllocator
: <a class="el" href="protobuf-c_8h.html#a7f96c8397a1eeb2b09bc589018b4c92b">protobuf-c.h</a>
</li>
<li>ProtobufCBinaryData
: <a class="el" href="protobuf-c_8h.html#a09ff58504259204be695791ef88a8c3c">protobuf-c.h</a>
</li>
<li>ProtobufCBuffer
: <a class="el" href="protobuf-c_8h.html#ad05eedb0d00a4a5ff6c0c2dc77b6e20a">protobuf-c.h</a>
</li>
<li>ProtobufCBufferSimple
: <a class="el" href="protobuf-c_8h.html#a268e7d0a2b883347b3b5b4d24a29bdd3">protobuf-c.h</a>
</li>
<li>ProtobufCClosure
: <a class="el" href="protobuf-c_8h.html#acf1115ec583b31c751f3b019a378ed4c">protobuf-c.h</a>
</li>
<li>ProtobufCEnumDescriptor
: <a class="el" href="protobuf-c_8h.html#a06615b608f1a7dfd5cf9bef52559bcc7">protobuf-c.h</a>
</li>
<li>ProtobufCEnumValue
: <a class="el" href="protobuf-c_8h.html#ae363a8ab19713d9c4a46916ce6226707">protobuf-c.h</a>
</li>
<li>ProtobufCEnumValueIndex
: <a class="el" href="protobuf-c_8h.html#a3754e72c0f4ab0828e6a902a96a466d5">protobuf-c.h</a>
</li>
<li>ProtobufCFieldDescriptor
: <a class="el" href="protobuf-c_8h.html#a73ef6e7f3a73a510f2cd595273748bbe">protobuf-c.h</a>
</li>
<li>ProtobufCIntRange
: <a class="el" href="protobuf-c_8h.html#a17ea01a73cfc22e3d73c0e879cd2406a">protobuf-c.h</a>
</li>
<li>ProtobufCLabel
: <a class="el" href="protobuf-c_8h.html#a5ec2e3fd5bbe4c5f6a64b06b7425d0e5">protobuf-c.h</a>
</li>
<li>ProtobufCMessage
: <a class="el" href="protobuf-c_8h.html#aca1046c4d7d01a0a5b2e91a5d5a6f74f">protobuf-c.h</a>
</li>
<li>ProtobufCMessageDescriptor
: <a class="el" href="protobuf-c_8h.html#ad45d29fa8a224d79290d614498e18e5e">protobuf-c.h</a>
</li>
<li>ProtobufCMessageInit
: <a class="el" href="protobuf-c_8h.html#a04786bd14a1f7de6f46b1f0a1bde907d">protobuf-c.h</a>
</li>
<li>ProtobufCMessageUnknownField
: <a class="el" href="protobuf-c_8h.html#a543ac2396acfcc4f46d1e74c54ef2ac8">protobuf-c.h</a>
</li>
<li>ProtobufCMethodDescriptor
: <a class="el" href="protobuf-c_8h.html#abd25f1f3af8908062a50f57dec51df94">protobuf-c.h</a>
</li>
<li>ProtobufCService
: <a class="el" href="protobuf-c_8h.html#a0ffe98431bfeec584dec983e598c9d01">protobuf-c.h</a>
</li>
<li>ProtobufCServiceDescriptor
: <a class="el" href="protobuf-c_8h.html#a9ffcc283baf0fbc04bfb436e0c20572d">protobuf-c.h</a>
</li>
<li>ProtobufCServiceDestroy
: <a class="el" href="protobuf-c-private_8h.html#ac41482e2fa31e2ae28322441991f77d9">protobuf-c-private.h</a>
</li>
<li>ProtobufCType
: <a class="el" href="protobuf-c_8h.html#a784625188e935a74bc4577297b8c6802">protobuf-c.h</a>
</li>
<li>ProtobufCWireType
: <a class="el" href="protobuf-c_8h.html#a58f35889606ee435ad29a83bcea23ca6">protobuf-c.h</a>
</li>
<li>push_modified_item()
: <a class="el" href="binfile_8c.html#a558ac79a2d15404ad81c41ee91710e1a">binfile.c</a>
</li>
<li>push_tile()
: <a class="el" href="binfile_8c.html#aa4ea5396c93882e4bc1354232b1cea72">binfile.c</a>
</li>
<li>push_zipfile_tile()
: <a class="el" href="binfile_8c.html#ab58a75ae4d6374a93b531d0bb8b9546a">binfile.c</a>
</li>
<li>push_zipfile_tile_do()
: <a class="el" href="binfile_8c.html#a0d3b2dd9ccb6ef61780f07c0e8400cdf">binfile.c</a>
</li>
<li>PVIDEO_POWER_MANAGEMENT
: <a class="el" href="ceglue_8c.html#a4a5ef961165ede9d8f1518c19fa31a43">ceglue.c</a>
</li>
<li>PVIDEO_POWER_STATE
: <a class="el" href="ceglue_8c.html#af402c2e3bd0db67a97dc41796134081c">ceglue.c</a>
</li>
<li>PXPM2BMP
: <a class="el" href="xpm2bmp_8h.html#a9d78bf2be289d46d73a8439048420be6">xpm2bmp.h</a>
</li>
<li>PXPMCOLORENTRY
: <a class="el" href="xpm2bmp_8h.html#a7389567a28c012a50b0e3baa00a96958">xpm2bmp.h</a>
</li>
<li>python_object_from_attr()
: <a class="el" href="binding__python_8c.html#a321a9dadab68f7de5852bc9d93404e67">binding_python.c</a>
, <a class="el" href="common_8h.html#a321a9dadab68f7de5852bc9d93404e67">common.h</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>