This file is indexed.

/usr/lib/ocaml/lwt/lwt_chan.annot is in liblwt-ocaml-dev 2.7.1-4build1.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

   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
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
"src/unix/lwt_chan.ml" 30 1133 1137 "src/unix/lwt_chan.ml" 30 1133 1156
type(
  Lwt_unix.file_descr -> Lwt_io.input Lwt_io.channel
)
ident(
  def in_channel_of_descr "src/unix/lwt_chan.ml" 32 1198 1198 "src/unix/lwt_chan.ml" 1 0 -1
)
"src/unix/lwt_chan.ml" 30 1133 1157 "src/unix/lwt_chan.ml" 30 1133 1159
type(
  Lwt_unix.file_descr
)
ident(
  def fd "src/unix/lwt_chan.ml" 30 1133 1162 "src/unix/lwt_chan.ml" 30 1133 1196
)
"src/unix/lwt_chan.ml" 30 1133 1162 "src/unix/lwt_chan.ml" 30 1133 1174
type(
  ?buffer:Lwt_bytes.t ->
  ?close:(unit -> unit Lwt.t) ->
  mode:Lwt_io.input Lwt_io.mode ->
  Lwt_unix.file_descr -> Lwt_io.input Lwt_io.channel
)
ident(
  ext_ref Lwt_io.of_fd
)
"src/unix/lwt_chan.ml" 30 1133 1181 "src/unix/lwt_chan.ml" 30 1133 1193
type(
  Lwt_io.input Lwt_io.mode
)
ident(
  ext_ref Lwt_io.input
)
"src/unix/lwt_chan.ml" 30 1133 1194 "src/unix/lwt_chan.ml" 30 1133 1196
type(
  Lwt_unix.file_descr
)
ident(
  int_ref fd "src/unix/lwt_chan.ml" 30 1133 1157 "src/unix/lwt_chan.ml" 30 1133 1159
)
"src/unix/lwt_chan.ml" 30 1133 1162 "src/unix/lwt_chan.ml" 30 1133 1196
call(
  tail
)
type(
  Lwt_io.input Lwt_io.channel
)
"src/unix/lwt_chan.ml" 32 1198 1202 "src/unix/lwt_chan.ml" 32 1198 1217
type(
  ?close:(unit -> unit Lwt.t) ->
  (bytes -> int -> int -> int Lwt.t) -> Lwt_io.input Lwt_io.channel
)
ident(
  def make_in_channel "src/unix/lwt_chan.ml" 40 1458 1458 "src/unix/lwt_chan.ml" 1 0 -1
)
"src/unix/lwt_chan.ml" 32 1198 1219 "src/unix/lwt_chan.ml" 32 1198 1224
type(
  (unit -> unit Lwt.t) option
)
ident(
  def close "src/unix/lwt_chan.ml" 32 1198 1225 "src/unix/lwt_chan.ml" 38 1436 1456
)
"src/unix/lwt_chan.ml" 32 1198 1225 "src/unix/lwt_chan.ml" 32 1198 1229
type(
  bytes -> int -> int -> int Lwt.t
)
ident(
  def read "src/unix/lwt_chan.ml" 33 1232 1234 "src/unix/lwt_chan.ml" 38 1436 1456
)
"src/unix/lwt_chan.ml" 33 1232 1234 "src/unix/lwt_chan.ml" 33 1232 1245
type(
  ?buffer:Lwt_bytes.t ->
  ?close:(unit -> unit Lwt.t) ->
  ?seek:(int64 -> Unix.seek_command -> int64 Lwt.t) ->
  mode:Lwt_io.input Lwt_io.mode ->
  (Lwt_bytes.t -> int -> int -> int Lwt.t) -> Lwt_io.input Lwt_io.channel
)
ident(
  ext_ref Lwt_io.make
)
"src/unix/lwt_chan.ml" 33 1232 1252 "src/unix/lwt_chan.ml" 33 1232 1264
type(
  Lwt_io.input Lwt_io.mode
)
ident(
  ext_ref Lwt_io.input
)
"src/unix/lwt_chan.ml" 33 1232 1266 "src/unix/lwt_chan.ml" 33 1232 1271
type(
  (unit -> unit Lwt.t) option
)
ident(
  int_ref close "src/unix/lwt_chan.ml" 32 1198 1219 "src/unix/lwt_chan.ml" 32 1198 1224
)
"src/unix/lwt_chan.ml" 34 1272 1281 "src/unix/lwt_chan.ml" 34 1272 1284
type(
  Lwt_bytes.t
)
ident(
  def buf "src/unix/lwt_chan.ml" 34 1272 1285 "src/unix/lwt_chan.ml" 38 1436 1455
)
"src/unix/lwt_chan.ml" 34 1272 1285 "src/unix/lwt_chan.ml" 34 1272 1288
type(
  int
)
ident(
  def ofs "src/unix/lwt_chan.ml" 34 1272 1289 "src/unix/lwt_chan.ml" 38 1436 1455
)
"src/unix/lwt_chan.ml" 34 1272 1289 "src/unix/lwt_chan.ml" 34 1272 1292
type(
  int
)
ident(
  def len "src/unix/lwt_chan.ml" 35 1296 1303 "src/unix/lwt_chan.ml" 38 1436 1455
)
"src/unix/lwt_chan.ml" 35 1296 1307 "src/unix/lwt_chan.ml" 35 1296 1310
type(
  bytes
)
ident(
  def str "src/unix/lwt_chan.ml" 36 1333 1340 "src/unix/lwt_chan.ml" 38 1436 1455
)
"src/unix/lwt_chan.ml" 35 1296 1313 "src/unix/lwt_chan.ml" 35 1296 1325
type(
  int -> bytes
)
ident(
  ext_ref Bytes.create
)
"src/unix/lwt_chan.ml" 35 1296 1326 "src/unix/lwt_chan.ml" 35 1296 1329
type(
  int
)
ident(
  int_ref len "src/unix/lwt_chan.ml" 34 1272 1289 "src/unix/lwt_chan.ml" 34 1272 1292
)
"src/unix/lwt_chan.ml" 35 1296 1313 "src/unix/lwt_chan.ml" 35 1296 1329
type(
  bytes
)
"src/unix/lwt_chan.ml" 36 1333 1340 "src/unix/lwt_chan.ml" 36 1333 1344
type(
  bytes -> int -> int -> int Lwt.t
)
ident(
  int_ref read "src/unix/lwt_chan.ml" 32 1198 1225 "src/unix/lwt_chan.ml" 32 1198 1229
)
"src/unix/lwt_chan.ml" 36 1333 1345 "src/unix/lwt_chan.ml" 36 1333 1348
type(
  bytes
)
ident(
  int_ref str "src/unix/lwt_chan.ml" 35 1296 1307 "src/unix/lwt_chan.ml" 35 1296 1310
)
"src/unix/lwt_chan.ml" 36 1333 1349 "src/unix/lwt_chan.ml" 36 1333 1350
type(
  int
)
"src/unix/lwt_chan.ml" 36 1333 1351 "src/unix/lwt_chan.ml" 36 1333 1354
type(
  int
)
ident(
  int_ref len "src/unix/lwt_chan.ml" 34 1272 1289 "src/unix/lwt_chan.ml" 34 1272 1292
)
"src/unix/lwt_chan.ml" 36 1333 1340 "src/unix/lwt_chan.ml" 36 1333 1354
call(
  stack
)
type(
  int Lwt.t
)
"src/unix/lwt_chan.ml" 36 1333 1355 "src/unix/lwt_chan.ml" 36 1333 1358
type(
  int Lwt.t -> (int -> int Lwt.t) -> int Lwt.t
)
ident(
  ext_ref Lwt.Infix.( >>= )
)
"src/unix/lwt_chan.ml" 36 1333 1363 "src/unix/lwt_chan.ml" 36 1333 1364
type(
  int
)
ident(
  def n "src/unix/lwt_chan.ml" 37 1368 1375 "src/unix/lwt_chan.ml" 38 1436 1455
)
"src/unix/lwt_chan.ml" 37 1368 1379 "src/unix/lwt_chan.ml" 37 1368 1380
type(
  int
)
ident(
  int_ref n "src/unix/lwt_chan.ml" 36 1333 1363 "src/unix/lwt_chan.ml" 36 1333 1364
)
"src/unix/lwt_chan.ml" 37 1368 1381 "src/unix/lwt_chan.ml" 37 1368 1382
type(
  int -> int -> bool
)
ident(
  ext_ref Pervasives.( > )
)
"src/unix/lwt_chan.ml" 37 1368 1383 "src/unix/lwt_chan.ml" 37 1368 1384
type(
  int
)
"src/unix/lwt_chan.ml" 37 1368 1378 "src/unix/lwt_chan.ml" 37 1368 1385
type(
  bool
)
"src/unix/lwt_chan.ml" 37 1368 1391 "src/unix/lwt_chan.ml" 37 1368 1416
type(
  bytes -> int -> Lwt_bytes.t -> int -> int -> unit
)
ident(
  ext_ref Lwt_bytes.blit_from_bytes
)
"src/unix/lwt_chan.ml" 37 1368 1417 "src/unix/lwt_chan.ml" 37 1368 1420
type(
  bytes
)
ident(
  int_ref str "src/unix/lwt_chan.ml" 35 1296 1307 "src/unix/lwt_chan.ml" 35 1296 1310
)
"src/unix/lwt_chan.ml" 37 1368 1421 "src/unix/lwt_chan.ml" 37 1368 1422
type(
  int
)
"src/unix/lwt_chan.ml" 37 1368 1423 "src/unix/lwt_chan.ml" 37 1368 1426
type(
  Lwt_bytes.t
)
ident(
  int_ref buf "src/unix/lwt_chan.ml" 34 1272 1281 "src/unix/lwt_chan.ml" 34 1272 1284
)
"src/unix/lwt_chan.ml" 37 1368 1427 "src/unix/lwt_chan.ml" 37 1368 1430
type(
  int
)
ident(
  int_ref ofs "src/unix/lwt_chan.ml" 34 1272 1285 "src/unix/lwt_chan.ml" 34 1272 1288
)
"src/unix/lwt_chan.ml" 37 1368 1431 "src/unix/lwt_chan.ml" 37 1368 1434
type(
  int
)
ident(
  int_ref len "src/unix/lwt_chan.ml" 34 1272 1289 "src/unix/lwt_chan.ml" 34 1272 1292
)
"src/unix/lwt_chan.ml" 37 1368 1391 "src/unix/lwt_chan.ml" 37 1368 1434
call(
  stack
)
type(
  unit
)
"src/unix/lwt_chan.ml" 37 1368 1375 "src/unix/lwt_chan.ml" 37 1368 1434
type(
  unit
)
"src/unix/lwt_chan.ml" 38 1436 1443 "src/unix/lwt_chan.ml" 38 1436 1453
type(
  int -> int Lwt.t
)
ident(
  ext_ref Lwt.return
)
"src/unix/lwt_chan.ml" 38 1436 1454 "src/unix/lwt_chan.ml" 38 1436 1455
type(
  int
)
ident(
  int_ref n "src/unix/lwt_chan.ml" 36 1333 1363 "src/unix/lwt_chan.ml" 36 1333 1364
)
"src/unix/lwt_chan.ml" 38 1436 1443 "src/unix/lwt_chan.ml" 38 1436 1455
call(
  tail
)
type(
  int Lwt.t
)
"src/unix/lwt_chan.ml" 37 1368 1375 "src/unix/lwt_chan.ml" 38 1436 1455
type(
  int Lwt.t
)
"src/unix/lwt_chan.ml" 36 1333 1359 "src/unix/lwt_chan.ml" 38 1436 1455
type(
  int -> int Lwt.t
)
"src/unix/lwt_chan.ml" 36 1333 1340 "src/unix/lwt_chan.ml" 38 1436 1455
call(
  tail
)
type(
  int Lwt.t
)
"src/unix/lwt_chan.ml" 35 1296 1303 "src/unix/lwt_chan.ml" 38 1436 1455
type(
  int Lwt.t
)
"src/unix/lwt_chan.ml" 34 1272 1276 "src/unix/lwt_chan.ml" 38 1436 1456
type(
  Lwt_bytes.t -> int -> int -> int Lwt.t
)
"src/unix/lwt_chan.ml" 33 1232 1234 "src/unix/lwt_chan.ml" 38 1436 1456
call(
  tail
)
type(
  Lwt_io.input Lwt_io.channel
)
"src/unix/lwt_chan.ml" 40 1458 1462 "src/unix/lwt_chan.ml" 40 1458 1472
type(
  Lwt_io.input_channel -> string Lwt.t
)
ident(
  def input_line "src/unix/lwt_chan.ml" 59 1925 1925 "src/unix/lwt_chan.ml" 1 0 -1
)
"src/unix/lwt_chan.ml" 40 1458 1473 "src/unix/lwt_chan.ml" 40 1458 1475
type(
  Lwt_io.input_channel
)
ident(
  def ic "src/unix/lwt_chan.ml" 41 1478 1480 "src/unix/lwt_chan.ml" 57 1895 1923
)
"src/unix/lwt_chan.ml" 41 1478 1488 "src/unix/lwt_chan.ml" 41 1478 1492
type(
  Buffer.t -> string Lwt.t
)
ident(
  def loop "src/unix/lwt_chan.ml" 41 1478 1480 "src/unix/lwt_chan.ml" 57 1895 1923
)
"src/unix/lwt_chan.ml" 41 1478 1493 "src/unix/lwt_chan.ml" 41 1478 1496
type(
  Buffer.t
)
ident(
  def buf "src/unix/lwt_chan.ml" 42 1499 1503 "src/unix/lwt_chan.ml" 47 1668 1686
)
"src/unix/lwt_chan.ml" 42 1499 1503 "src/unix/lwt_chan.ml" 42 1499 1523
type(
  Lwt_io.input_channel -> char option Lwt.t
)
ident(
  ext_ref Lwt_io.read_char_opt
)
"src/unix/lwt_chan.ml" 42 1499 1524 "src/unix/lwt_chan.ml" 42 1499 1526
type(
  Lwt_io.input_channel
)
ident(
  int_ref ic "src/unix/lwt_chan.ml" 40 1458 1473 "src/unix/lwt_chan.ml" 40 1458 1475
)
"src/unix/lwt_chan.ml" 42 1499 1503 "src/unix/lwt_chan.ml" 42 1499 1526
call(
  stack
)
type(
  char option Lwt.t
)
"src/unix/lwt_chan.ml" 42 1499 1527 "src/unix/lwt_chan.ml" 42 1499 1530
type(
  char option Lwt.t -> (char option -> string Lwt.t) -> string Lwt.t
)
ident(
  ext_ref Lwt.Infix.( >>= )
)
"src/unix/lwt_chan.ml" 43 1540 1548 "src/unix/lwt_chan.ml" 43 1540 1552
type(
  char option
)
"src/unix/lwt_chan.ml" 43 1540 1560 "src/unix/lwt_chan.ml" 43 1540 1564
type(
  char
)
"src/unix/lwt_chan.ml" 43 1540 1555 "src/unix/lwt_chan.ml" 43 1540 1564
type(
  char option
)
"src/unix/lwt_chan.ml" 43 1540 1548 "src/unix/lwt_chan.ml" 43 1540 1564
type(
  char option
)
"src/unix/lwt_chan.ml" 44 1568 1578 "src/unix/lwt_chan.ml" 44 1568 1588
type(
  string -> string Lwt.t
)
ident(
  ext_ref Lwt.return
)
"src/unix/lwt_chan.ml" 44 1568 1590 "src/unix/lwt_chan.ml" 44 1568 1605
type(
  Buffer.t -> string
)
ident(
  ext_ref Buffer.contents
)
"src/unix/lwt_chan.ml" 44 1568 1606 "src/unix/lwt_chan.ml" 44 1568 1609
type(
  Buffer.t
)
ident(
  int_ref buf "src/unix/lwt_chan.ml" 41 1478 1493 "src/unix/lwt_chan.ml" 41 1478 1496
)
"src/unix/lwt_chan.ml" 44 1568 1589 "src/unix/lwt_chan.ml" 44 1568 1610
call(
  stack
)
type(
  string
)
"src/unix/lwt_chan.ml" 44 1568 1578 "src/unix/lwt_chan.ml" 44 1568 1610
call(
  tail
)
type(
  string Lwt.t
)
"src/unix/lwt_chan.ml" 45 1611 1624 "src/unix/lwt_chan.ml" 45 1611 1628
type(
  char
)
ident(
  def char "src/unix/lwt_chan.ml" 46 1632 1642 "src/unix/lwt_chan.ml" 47 1668 1686
)
"src/unix/lwt_chan.ml" 45 1611 1619 "src/unix/lwt_chan.ml" 45 1611 1628
type(
  char option
)
"src/unix/lwt_chan.ml" 46 1632 1642 "src/unix/lwt_chan.ml" 46 1632 1657
type(
  Buffer.t -> char -> unit
)
ident(
  ext_ref Buffer.add_char
)
"src/unix/lwt_chan.ml" 46 1632 1658 "src/unix/lwt_chan.ml" 46 1632 1661
type(
  Buffer.t
)
ident(
  int_ref buf "src/unix/lwt_chan.ml" 41 1478 1493 "src/unix/lwt_chan.ml" 41 1478 1496
)
"src/unix/lwt_chan.ml" 46 1632 1662 "src/unix/lwt_chan.ml" 46 1632 1666
type(
  char
)
ident(
  int_ref char "src/unix/lwt_chan.ml" 45 1611 1624 "src/unix/lwt_chan.ml" 45 1611 1628
)
"src/unix/lwt_chan.ml" 46 1632 1642 "src/unix/lwt_chan.ml" 46 1632 1666
call(
  stack
)
type(
  unit
)
"src/unix/lwt_chan.ml" 47 1668 1678 "src/unix/lwt_chan.ml" 47 1668 1682
type(
  Buffer.t -> string Lwt.t
)
ident(
  int_ref loop "src/unix/lwt_chan.ml" 41 1478 1488 "src/unix/lwt_chan.ml" 41 1478 1492
)
"src/unix/lwt_chan.ml" 47 1668 1683 "src/unix/lwt_chan.ml" 47 1668 1686
type(
  Buffer.t
)
ident(
  int_ref buf "src/unix/lwt_chan.ml" 41 1478 1493 "src/unix/lwt_chan.ml" 41 1478 1496
)
"src/unix/lwt_chan.ml" 47 1668 1678 "src/unix/lwt_chan.ml" 47 1668 1686
call(
  tail
)
type(
  string Lwt.t
)
"src/unix/lwt_chan.ml" 46 1632 1642 "src/unix/lwt_chan.ml" 47 1668 1686
type(
  string Lwt.t
)
"src/unix/lwt_chan.ml" 42 1499 1531 "src/unix/lwt_chan.ml" 47 1668 1686
type(
  char option -> string Lwt.t
)
"src/unix/lwt_chan.ml" 42 1499 1503 "src/unix/lwt_chan.ml" 47 1668 1686
call(
  tail
)
type(
  string Lwt.t
)
"src/unix/lwt_chan.ml" 49 1692 1694 "src/unix/lwt_chan.ml" 49 1692 1714
type(
  Lwt_io.input_channel -> char option Lwt.t
)
ident(
  ext_ref Lwt_io.read_char_opt
)
"src/unix/lwt_chan.ml" 49 1692 1715 "src/unix/lwt_chan.ml" 49 1692 1717
type(
  Lwt_io.input_channel
)
ident(
  int_ref ic "src/unix/lwt_chan.ml" 40 1458 1473 "src/unix/lwt_chan.ml" 40 1458 1475
)
"src/unix/lwt_chan.ml" 49 1692 1694 "src/unix/lwt_chan.ml" 49 1692 1717
call(
  stack
)
type(
  char option Lwt.t
)
"src/unix/lwt_chan.ml" 49 1692 1718 "src/unix/lwt_chan.ml" 49 1692 1721
type(
  char option Lwt.t -> (char option -> string Lwt.t) -> string Lwt.t
)
ident(
  ext_ref Lwt.Infix.( >>= )
)
"src/unix/lwt_chan.ml" 50 1731 1742 "src/unix/lwt_chan.ml" 50 1731 1746
type(
  char
)
"src/unix/lwt_chan.ml" 50 1731 1737 "src/unix/lwt_chan.ml" 50 1731 1746
type(
  char option
)
"src/unix/lwt_chan.ml" 51 1750 1758 "src/unix/lwt_chan.ml" 51 1750 1768
type(
  string -> string Lwt.t
)
ident(
  ext_ref Lwt.return
)
"src/unix/lwt_chan.ml" 51 1750 1769 "src/unix/lwt_chan.ml" 51 1750 1771
type(
  string
)
"src/unix/lwt_chan.ml" 51 1750 1758 "src/unix/lwt_chan.ml" 51 1750 1771
call(
  tail
)
type(
  string Lwt.t
)
"src/unix/lwt_chan.ml" 52 1772 1783 "src/unix/lwt_chan.ml" 52 1772 1787
type(
  char
)
ident(
  def char "src/unix/lwt_chan.ml" 53 1791 1799 "src/unix/lwt_chan.ml" 55 1864 1880
)
"src/unix/lwt_chan.ml" 52 1772 1778 "src/unix/lwt_chan.ml" 52 1772 1787
type(
  char option
)
"src/unix/lwt_chan.ml" 53 1791 1803 "src/unix/lwt_chan.ml" 53 1791 1806
type(
  Buffer.t
)
ident(
  def buf "src/unix/lwt_chan.ml" 54 1830 1838 "src/unix/lwt_chan.ml" 55 1864 1880
)
"src/unix/lwt_chan.ml" 53 1791 1809 "src/unix/lwt_chan.ml" 53 1791 1822
type(
  int -> Buffer.t
)
ident(
  ext_ref Buffer.create
)
"src/unix/lwt_chan.ml" 53 1791 1823 "src/unix/lwt_chan.ml" 53 1791 1826
type(
  int
)
"src/unix/lwt_chan.ml" 53 1791 1809 "src/unix/lwt_chan.ml" 53 1791 1826
call(
  stack
)
type(
  Buffer.t
)
"src/unix/lwt_chan.ml" 54 1830 1838 "src/unix/lwt_chan.ml" 54 1830 1853
type(
  Buffer.t -> char -> unit
)
ident(
  ext_ref Buffer.add_char
)
"src/unix/lwt_chan.ml" 54 1830 1854 "src/unix/lwt_chan.ml" 54 1830 1857
type(
  Buffer.t
)
ident(
  int_ref buf "src/unix/lwt_chan.ml" 53 1791 1803 "src/unix/lwt_chan.ml" 53 1791 1806
)
"src/unix/lwt_chan.ml" 54 1830 1858 "src/unix/lwt_chan.ml" 54 1830 1862
type(
  char
)
ident(
  int_ref char "src/unix/lwt_chan.ml" 52 1772 1783 "src/unix/lwt_chan.ml" 52 1772 1787
)
"src/unix/lwt_chan.ml" 54 1830 1838 "src/unix/lwt_chan.ml" 54 1830 1862
call(
  stack
)
type(
  unit
)
"src/unix/lwt_chan.ml" 55 1864 1872 "src/unix/lwt_chan.ml" 55 1864 1876
type(
  Buffer.t -> string Lwt.t
)
ident(
  int_ref loop "src/unix/lwt_chan.ml" 41 1478 1488 "src/unix/lwt_chan.ml" 41 1478 1492
)
"src/unix/lwt_chan.ml" 55 1864 1877 "src/unix/lwt_chan.ml" 55 1864 1880
type(
  Buffer.t
)
ident(
  int_ref buf "src/unix/lwt_chan.ml" 53 1791 1803 "src/unix/lwt_chan.ml" 53 1791 1806
)
"src/unix/lwt_chan.ml" 55 1864 1872 "src/unix/lwt_chan.ml" 55 1864 1880
call(
  tail
)
type(
  string Lwt.t
)
"src/unix/lwt_chan.ml" 54 1830 1838 "src/unix/lwt_chan.ml" 55 1864 1880
type(
  string Lwt.t
)
"src/unix/lwt_chan.ml" 53 1791 1799 "src/unix/lwt_chan.ml" 55 1864 1880
type(
  string Lwt.t
)
"src/unix/lwt_chan.ml" 56 1881 1887 "src/unix/lwt_chan.ml" 56 1881 1891
type(
  char option
)
"src/unix/lwt_chan.ml" 57 1895 1903 "src/unix/lwt_chan.ml" 57 1895 1911
type(
  exn -> string Lwt.t
)
ident(
  ext_ref Lwt.fail
)
"src/unix/lwt_chan.ml" 57 1895 1912 "src/unix/lwt_chan.ml" 57 1895 1923
type(
  exn
)
"src/unix/lwt_chan.ml" 57 1895 1903 "src/unix/lwt_chan.ml" 57 1895 1923
call(
  tail
)
type(
  string Lwt.t
)
"src/unix/lwt_chan.ml" 49 1692 1722 "src/unix/lwt_chan.ml" 57 1895 1923
type(
  char option -> string Lwt.t
)
"src/unix/lwt_chan.ml" 49 1692 1694 "src/unix/lwt_chan.ml" 57 1895 1923
call(
  tail
)
type(
  string Lwt.t
)
"src/unix/lwt_chan.ml" 41 1478 1480 "src/unix/lwt_chan.ml" 57 1895 1923
type(
  string Lwt.t
)
"src/unix/lwt_chan.ml" 59 1925 1929 "src/unix/lwt_chan.ml" 59 1925 1940
type(
  Lwt_io.input_channel -> 'a Lwt.t
)
ident(
  def input_value "src/unix/lwt_chan.ml" 60 1961 1961 "src/unix/lwt_chan.ml" 1 0 -1
)
"src/unix/lwt_chan.ml" 59 1925 1943 "src/unix/lwt_chan.ml" 59 1925 1960
type(
  Lwt_io.input_channel -> 'a Lwt.t
)
ident(
  ext_ref Lwt_io.read_value
)
"src/unix/lwt_chan.ml" 60 1961 1965 "src/unix/lwt_chan.ml" 60 1961 1970
type(
  Lwt_io.input_channel -> bytes -> int -> int -> int Lwt.t
)
ident(
  def input "src/unix/lwt_chan.ml" 61 1990 1990 "src/unix/lwt_chan.ml" 1 0 -1
)
"src/unix/lwt_chan.ml" 60 1961 1973 "src/unix/lwt_chan.ml" 60 1961 1989
type(
  Lwt_io.input_channel -> bytes -> int -> int -> int Lwt.t
)
ident(
  ext_ref Lwt_io.read_into
)
"src/unix/lwt_chan.ml" 61 1990 1994 "src/unix/lwt_chan.ml" 61 1990 2006
type(
  Lwt_io.input_channel -> bytes -> int -> int -> unit Lwt.t
)
ident(
  def really_input "src/unix/lwt_chan.ml" 62 2034 2034 "src/unix/lwt_chan.ml" 1 0 -1
)
"src/unix/lwt_chan.ml" 61 1990 2009 "src/unix/lwt_chan.ml" 61 1990 2033
type(
  Lwt_io.input_channel -> bytes -> int -> int -> unit Lwt.t
)
ident(
  ext_ref Lwt_io.read_into_exactly
)
"src/unix/lwt_chan.ml" 62 2034 2038 "src/unix/lwt_chan.ml" 62 2034 2048
type(
  Lwt_io.input_channel -> char Lwt.t
)
ident(
  def input_char "src/unix/lwt_chan.ml" 63 2068 2068 "src/unix/lwt_chan.ml" 1 0 -1
)
"src/unix/lwt_chan.ml" 62 2034 2051 "src/unix/lwt_chan.ml" 62 2034 2067
type(
  Lwt_io.input_channel -> char Lwt.t
)
ident(
  ext_ref Lwt_io.read_char
)
"src/unix/lwt_chan.ml" 63 2068 2072 "src/unix/lwt_chan.ml" 63 2068 2088
type(
  Lwt_io.input_channel -> int Lwt.t
)
ident(
  def input_binary_int "src/unix/lwt_chan.ml" 64 2110 2110 "src/unix/lwt_chan.ml" 1 0 -1
)
"src/unix/lwt_chan.ml" 63 2068 2091 "src/unix/lwt_chan.ml" 63 2068 2109
type(
  Lwt_io.input_channel -> int Lwt.t
)
ident(
  ext_ref Lwt_io.BE.read_int
)
"src/unix/lwt_chan.ml" 64 2110 2114 "src/unix/lwt_chan.ml" 64 2110 2125
type(
  Unix.open_flag list ->
  Unix.file_perm -> Lwt_io.file_name -> Lwt_io.input Lwt_io.channel Lwt.t
)
ident(
  def open_in_gen "src/unix/lwt_chan.ml" 65 2200 2200 "src/unix/lwt_chan.ml" 1 0 -1
)
"src/unix/lwt_chan.ml" 64 2110 2126 "src/unix/lwt_chan.ml" 64 2110 2131
type(
  Unix.open_flag list
)
ident(
  def flags "src/unix/lwt_chan.ml" 64 2110 2132 "src/unix/lwt_chan.ml" 64 2110 2199
)
"src/unix/lwt_chan.ml" 64 2110 2132 "src/unix/lwt_chan.ml" 64 2110 2136
type(
  Unix.file_perm
)
ident(
  def perm "src/unix/lwt_chan.ml" 64 2110 2137 "src/unix/lwt_chan.ml" 64 2110 2199
)
"src/unix/lwt_chan.ml" 64 2110 2137 "src/unix/lwt_chan.ml" 64 2110 2142
type(
  Lwt_io.file_name
)
ident(
  def fname "src/unix/lwt_chan.ml" 64 2110 2145 "src/unix/lwt_chan.ml" 64 2110 2199
)
"src/unix/lwt_chan.ml" 64 2110 2145 "src/unix/lwt_chan.ml" 64 2110 2161
type(
  ?buffer:Lwt_bytes.t ->
  ?flags:Unix.open_flag list ->
  ?perm:Unix.file_perm ->
  mode:Lwt_io.input Lwt_io.mode ->
  Lwt_io.file_name -> Lwt_io.input Lwt_io.channel Lwt.t
)
ident(
  ext_ref Lwt_io.open_file
)
"src/unix/lwt_chan.ml" 64 2110 2163 "src/unix/lwt_chan.ml" 64 2110 2168
type(
  Unix.open_flag list
)
ident(
  int_ref flags "src/unix/lwt_chan.ml" 64 2110 2126 "src/unix/lwt_chan.ml" 64 2110 2131
)
"src/unix/lwt_chan.ml" 64 2110 2170 "src/unix/lwt_chan.ml" 64 2110 2174
type(
  Unix.file_perm
)
ident(
  int_ref perm "src/unix/lwt_chan.ml" 64 2110 2132 "src/unix/lwt_chan.ml" 64 2110 2136
)
"src/unix/lwt_chan.ml" 64 2110 2181 "src/unix/lwt_chan.ml" 64 2110 2193
type(
  Lwt_io.input Lwt_io.mode
)
ident(
  ext_ref Lwt_io.input
)
"src/unix/lwt_chan.ml" 64 2110 2194 "src/unix/lwt_chan.ml" 64 2110 2199
type(
  Lwt_io.file_name
)
ident(
  int_ref fname "src/unix/lwt_chan.ml" 64 2110 2137 "src/unix/lwt_chan.ml" 64 2110 2142
)
"src/unix/lwt_chan.ml" 64 2110 2145 "src/unix/lwt_chan.ml" 64 2110 2199
call(
  tail
)
type(
  Lwt_io.input Lwt_io.channel Lwt.t
)
"src/unix/lwt_chan.ml" 65 2200 2204 "src/unix/lwt_chan.ml" 65 2200 2211
type(
  Lwt_io.file_name -> Lwt_io.input Lwt_io.channel Lwt.t
)
ident(
  def open_in "src/unix/lwt_chan.ml" 66 2262 2262 "src/unix/lwt_chan.ml" 1 0 -1
)
"src/unix/lwt_chan.ml" 65 2200 2212 "src/unix/lwt_chan.ml" 65 2200 2217
type(
  Lwt_io.file_name
)
ident(
  def fname "src/unix/lwt_chan.ml" 65 2200 2220 "src/unix/lwt_chan.ml" 65 2200 2261
)
"src/unix/lwt_chan.ml" 65 2200 2220 "src/unix/lwt_chan.ml" 65 2200 2236
type(
  ?buffer:Lwt_bytes.t ->
  ?flags:Unix.open_flag list ->
  ?perm:Unix.file_perm ->
  mode:Lwt_io.input Lwt_io.mode ->
  Lwt_io.file_name -> Lwt_io.input Lwt_io.channel Lwt.t
)
ident(
  ext_ref Lwt_io.open_file
)
"src/unix/lwt_chan.ml" 65 2200 2243 "src/unix/lwt_chan.ml" 65 2200 2255
type(
  Lwt_io.input Lwt_io.mode
)
ident(
  ext_ref Lwt_io.input
)
"src/unix/lwt_chan.ml" 65 2200 2256 "src/unix/lwt_chan.ml" 65 2200 2261
type(
  Lwt_io.file_name
)
ident(
  int_ref fname "src/unix/lwt_chan.ml" 65 2200 2212 "src/unix/lwt_chan.ml" 65 2200 2217
)
"src/unix/lwt_chan.ml" 65 2200 2220 "src/unix/lwt_chan.ml" 65 2200 2261
call(
  tail
)
type(
  Lwt_io.input Lwt_io.channel Lwt.t
)
"src/unix/lwt_chan.ml" 66 2262 2266 "src/unix/lwt_chan.ml" 66 2262 2274
type(
  'a Lwt_io.channel -> unit Lwt.t
)
ident(
  def close_in "src/unix/lwt_chan.ml" 67 2290 2290 "src/unix/lwt_chan.ml" 1 0 -1
)
"src/unix/lwt_chan.ml" 66 2262 2277 "src/unix/lwt_chan.ml" 66 2262 2289
type(
  'a Lwt_io.channel -> unit Lwt.t
)
ident(
  ext_ref Lwt_io.close
)
"src/unix/lwt_chan.ml" 67 2290 2294 "src/unix/lwt_chan.ml" 67 2290 2314
type(
  Lwt_unix.file_descr -> Lwt_io.output Lwt_io.channel
)
ident(
  def out_channel_of_descr "src/unix/lwt_chan.ml" 69 2357 2357 "src/unix/lwt_chan.ml" 1 0 -1
)
"src/unix/lwt_chan.ml" 67 2290 2315 "src/unix/lwt_chan.ml" 67 2290 2317
type(
  Lwt_unix.file_descr
)
ident(
  def fd "src/unix/lwt_chan.ml" 67 2290 2320 "src/unix/lwt_chan.ml" 67 2290 2355
)
"src/unix/lwt_chan.ml" 67 2290 2320 "src/unix/lwt_chan.ml" 67 2290 2332
type(
  ?buffer:Lwt_bytes.t ->
  ?close:(unit -> unit Lwt.t) ->
  mode:Lwt_io.output Lwt_io.mode ->
  Lwt_unix.file_descr -> Lwt_io.output Lwt_io.channel
)
ident(
  ext_ref Lwt_io.of_fd
)
"src/unix/lwt_chan.ml" 67 2290 2339 "src/unix/lwt_chan.ml" 67 2290 2352
type(
  Lwt_io.output Lwt_io.mode
)
ident(
  ext_ref Lwt_io.output
)
"src/unix/lwt_chan.ml" 67 2290 2353 "src/unix/lwt_chan.ml" 67 2290 2355
type(
  Lwt_unix.file_descr
)
ident(
  int_ref fd "src/unix/lwt_chan.ml" 67 2290 2315 "src/unix/lwt_chan.ml" 67 2290 2317
)
"src/unix/lwt_chan.ml" 67 2290 2320 "src/unix/lwt_chan.ml" 67 2290 2355
call(
  tail
)
type(
  Lwt_io.output Lwt_io.channel
)
"src/unix/lwt_chan.ml" 69 2357 2361 "src/unix/lwt_chan.ml" 69 2357 2377
type(
  ?close:(unit -> unit Lwt.t) ->
  (bytes -> int -> int -> int Lwt.t) -> Lwt_io.output Lwt_io.channel
)
ident(
  def make_out_channel "src/unix/lwt_chan.ml" 76 2570 2570 "src/unix/lwt_chan.ml" 1 0 -1
)
"src/unix/lwt_chan.ml" 69 2357 2379 "src/unix/lwt_chan.ml" 69 2357 2384
type(
  (unit -> unit Lwt.t) option
)
ident(
  def close "src/unix/lwt_chan.ml" 69 2357 2385 "src/unix/lwt_chan.ml" 74 2545 2568
)
"src/unix/lwt_chan.ml" 69 2357 2385 "src/unix/lwt_chan.ml" 69 2357 2390
type(
  bytes -> int -> int -> int Lwt.t
)
ident(
  def write "src/unix/lwt_chan.ml" 70 2393 2395 "src/unix/lwt_chan.ml" 74 2545 2568
)
"src/unix/lwt_chan.ml" 70 2393 2395 "src/unix/lwt_chan.ml" 70 2393 2406
type(
  ?buffer:Lwt_bytes.t ->
  ?close:(unit -> unit Lwt.t) ->
  ?seek:(int64 -> Unix.seek_command -> int64 Lwt.t) ->
  mode:Lwt_io.output Lwt_io.mode ->
  (Lwt_bytes.t -> int -> int -> int Lwt.t) -> Lwt_io.output Lwt_io.channel
)
ident(
  ext_ref Lwt_io.make
)
"src/unix/lwt_chan.ml" 70 2393 2413 "src/unix/lwt_chan.ml" 70 2393 2426
type(
  Lwt_io.output Lwt_io.mode
)
ident(
  ext_ref Lwt_io.output
)
"src/unix/lwt_chan.ml" 70 2393 2428 "src/unix/lwt_chan.ml" 70 2393 2433
type(
  (unit -> unit Lwt.t) option
)
ident(
  int_ref close "src/unix/lwt_chan.ml" 69 2357 2379 "src/unix/lwt_chan.ml" 69 2357 2384
)
"src/unix/lwt_chan.ml" 71 2434 2443 "src/unix/lwt_chan.ml" 71 2434 2446
type(
  Lwt_bytes.t
)
ident(
  def buf "src/unix/lwt_chan.ml" 71 2434 2447 "src/unix/lwt_chan.ml" 74 2545 2567
)
"src/unix/lwt_chan.ml" 71 2434 2447 "src/unix/lwt_chan.ml" 71 2434 2450
type(
  int
)
ident(
  def ofs "src/unix/lwt_chan.ml" 71 2434 2451 "src/unix/lwt_chan.ml" 74 2545 2567
)
"src/unix/lwt_chan.ml" 71 2434 2451 "src/unix/lwt_chan.ml" 71 2434 2454
type(
  int
)
ident(
  def len "src/unix/lwt_chan.ml" 72 2458 2465 "src/unix/lwt_chan.ml" 74 2545 2567
)
"src/unix/lwt_chan.ml" 72 2458 2469 "src/unix/lwt_chan.ml" 72 2458 2472
type(
  bytes
)
ident(
  def str "src/unix/lwt_chan.ml" 73 2495 2502 "src/unix/lwt_chan.ml" 74 2545 2567
)
"src/unix/lwt_chan.ml" 72 2458 2475 "src/unix/lwt_chan.ml" 72 2458 2487
type(
  int -> bytes
)
ident(
  ext_ref Bytes.create
)
"src/unix/lwt_chan.ml" 72 2458 2488 "src/unix/lwt_chan.ml" 72 2458 2491
type(
  int
)
ident(
  int_ref len "src/unix/lwt_chan.ml" 71 2434 2451 "src/unix/lwt_chan.ml" 71 2434 2454
)
"src/unix/lwt_chan.ml" 72 2458 2475 "src/unix/lwt_chan.ml" 72 2458 2491
type(
  bytes
)
"src/unix/lwt_chan.ml" 73 2495 2502 "src/unix/lwt_chan.ml" 73 2495 2525
type(
  Lwt_bytes.t -> int -> bytes -> int -> int -> unit
)
ident(
  ext_ref Lwt_bytes.blit_to_bytes
)
"src/unix/lwt_chan.ml" 73 2495 2526 "src/unix/lwt_chan.ml" 73 2495 2529
type(
  Lwt_bytes.t
)
ident(
  int_ref buf "src/unix/lwt_chan.ml" 71 2434 2443 "src/unix/lwt_chan.ml" 71 2434 2446
)
"src/unix/lwt_chan.ml" 73 2495 2530 "src/unix/lwt_chan.ml" 73 2495 2533
type(
  int
)
ident(
  int_ref ofs "src/unix/lwt_chan.ml" 71 2434 2447 "src/unix/lwt_chan.ml" 71 2434 2450
)
"src/unix/lwt_chan.ml" 73 2495 2534 "src/unix/lwt_chan.ml" 73 2495 2537
type(
  bytes
)
ident(
  int_ref str "src/unix/lwt_chan.ml" 72 2458 2469 "src/unix/lwt_chan.ml" 72 2458 2472
)
"src/unix/lwt_chan.ml" 73 2495 2538 "src/unix/lwt_chan.ml" 73 2495 2539
type(
  int
)
"src/unix/lwt_chan.ml" 73 2495 2540 "src/unix/lwt_chan.ml" 73 2495 2543
type(
  int
)
ident(
  int_ref len "src/unix/lwt_chan.ml" 71 2434 2451 "src/unix/lwt_chan.ml" 71 2434 2454
)
"src/unix/lwt_chan.ml" 73 2495 2502 "src/unix/lwt_chan.ml" 73 2495 2543
call(
  stack
)
type(
  unit
)
"src/unix/lwt_chan.ml" 74 2545 2552 "src/unix/lwt_chan.ml" 74 2545 2557
type(
  bytes -> int -> int -> int Lwt.t
)
ident(
  int_ref write "src/unix/lwt_chan.ml" 69 2357 2385 "src/unix/lwt_chan.ml" 69 2357 2390
)
"src/unix/lwt_chan.ml" 74 2545 2558 "src/unix/lwt_chan.ml" 74 2545 2561
type(
  bytes
)
ident(
  int_ref str "src/unix/lwt_chan.ml" 72 2458 2469 "src/unix/lwt_chan.ml" 72 2458 2472
)
"src/unix/lwt_chan.ml" 74 2545 2562 "src/unix/lwt_chan.ml" 74 2545 2563
type(
  int
)
"src/unix/lwt_chan.ml" 74 2545 2564 "src/unix/lwt_chan.ml" 74 2545 2567
type(
  int
)
ident(
  int_ref len "src/unix/lwt_chan.ml" 71 2434 2451 "src/unix/lwt_chan.ml" 71 2434 2454
)
"src/unix/lwt_chan.ml" 74 2545 2552 "src/unix/lwt_chan.ml" 74 2545 2567
call(
  tail
)
type(
  int Lwt.t
)
"src/unix/lwt_chan.ml" 73 2495 2502 "src/unix/lwt_chan.ml" 74 2545 2567
type(
  int Lwt.t
)
"src/unix/lwt_chan.ml" 72 2458 2465 "src/unix/lwt_chan.ml" 74 2545 2567
type(
  int Lwt.t
)
"src/unix/lwt_chan.ml" 71 2434 2438 "src/unix/lwt_chan.ml" 74 2545 2568
type(
  Lwt_bytes.t -> int -> int -> int Lwt.t
)
"src/unix/lwt_chan.ml" 70 2393 2395 "src/unix/lwt_chan.ml" 74 2545 2568
call(
  tail
)
type(
  Lwt_io.output Lwt_io.channel
)
"src/unix/lwt_chan.ml" 76 2570 2574 "src/unix/lwt_chan.ml" 76 2570 2580
type(
  Lwt_io.output_channel -> bytes -> int -> int -> unit Lwt.t
)
ident(
  def output "src/unix/lwt_chan.ml" 77 2609 2609 "src/unix/lwt_chan.ml" 1 0 -1
)
"src/unix/lwt_chan.ml" 76 2570 2583 "src/unix/lwt_chan.ml" 76 2570 2608
type(
  Lwt_io.output_channel -> bytes -> int -> int -> unit Lwt.t
)
ident(
  ext_ref Lwt_io.write_from_exactly
)
"src/unix/lwt_chan.ml" 77 2609 2613 "src/unix/lwt_chan.ml" 77 2609 2618
type(
  Lwt_io.output_channel -> unit Lwt.t
)
ident(
  def flush "src/unix/lwt_chan.ml" 78 2634 2634 "src/unix/lwt_chan.ml" 1 0 -1
)
"src/unix/lwt_chan.ml" 77 2609 2621 "src/unix/lwt_chan.ml" 77 2609 2633
type(
  Lwt_io.output_channel -> unit Lwt.t
)
ident(
  ext_ref Lwt_io.flush
)
"src/unix/lwt_chan.ml" 78 2634 2638 "src/unix/lwt_chan.ml" 78 2634 2651
type(
  Lwt_io.output_channel -> string -> unit Lwt.t
)
ident(
  def output_string "src/unix/lwt_chan.ml" 79 2667 2667 "src/unix/lwt_chan.ml" 1 0 -1
)
"src/unix/lwt_chan.ml" 78 2634 2654 "src/unix/lwt_chan.ml" 78 2634 2666
type(
  Lwt_io.output_channel -> string -> unit Lwt.t
)
ident(
  ext_ref Lwt_io.write
)
"src/unix/lwt_chan.ml" 79 2667 2671 "src/unix/lwt_chan.ml" 79 2667 2683
type(
  Lwt_io.output_channel -> 'a -> unit Lwt.t
)
ident(
  def output_value "src/unix/lwt_chan.ml" 80 2715 2715 "src/unix/lwt_chan.ml" 1 0 -1
)
"src/unix/lwt_chan.ml" 79 2667 2684 "src/unix/lwt_chan.ml" 79 2667 2686
type(
  Lwt_io.output_channel
)
ident(
  def oc "src/unix/lwt_chan.ml" 79 2667 2687 "src/unix/lwt_chan.ml" 79 2667 2714
)
"src/unix/lwt_chan.ml" 79 2667 2687 "src/unix/lwt_chan.ml" 79 2667 2688
type(
  'a
)
ident(
  def v "src/unix/lwt_chan.ml" 79 2667 2691 "src/unix/lwt_chan.ml" 79 2667 2714
)
"src/unix/lwt_chan.ml" 79 2667 2691 "src/unix/lwt_chan.ml" 79 2667 2709
type(
  Lwt_io.output_channel ->
  ?flags:Marshal.extern_flags list -> 'a -> unit Lwt.t
)
ident(
  ext_ref Lwt_io.write_value
)
"src/unix/lwt_chan.ml" 79 2667 2710 "src/unix/lwt_chan.ml" 79 2667 2712
type(
  Lwt_io.output_channel
)
ident(
  int_ref oc "src/unix/lwt_chan.ml" 79 2667 2684 "src/unix/lwt_chan.ml" 79 2667 2686
)
"src/unix/lwt_chan.ml" 79 2667 2713 "src/unix/lwt_chan.ml" 79 2667 2714
type(
  'a
)
ident(
  int_ref v "src/unix/lwt_chan.ml" 79 2667 2687 "src/unix/lwt_chan.ml" 79 2667 2688
)
"src/unix/lwt_chan.ml" 79 2667 2691 "src/unix/lwt_chan.ml" 79 2667 2714
call(
  tail
)
type(
  unit Lwt.t
)
"src/unix/lwt_chan.ml" 80 2715 2719 "src/unix/lwt_chan.ml" 80 2715 2730
type(
  Lwt_io.output_channel -> char -> unit Lwt.t
)
ident(
  def output_char "src/unix/lwt_chan.ml" 81 2751 2751 "src/unix/lwt_chan.ml" 1 0 -1
)
"src/unix/lwt_chan.ml" 80 2715 2733 "src/unix/lwt_chan.ml" 80 2715 2750
type(
  Lwt_io.output_channel -> char -> unit Lwt.t
)
ident(
  ext_ref Lwt_io.write_char
)
"src/unix/lwt_chan.ml" 81 2751 2755 "src/unix/lwt_chan.ml" 81 2751 2772
type(
  Lwt_io.output_channel -> int -> unit Lwt.t
)
ident(
  def output_binary_int "src/unix/lwt_chan.ml" 82 2795 2795 "src/unix/lwt_chan.ml" 1 0 -1
)
"src/unix/lwt_chan.ml" 81 2751 2775 "src/unix/lwt_chan.ml" 81 2751 2794
type(
  Lwt_io.output_channel -> int -> unit Lwt.t
)
ident(
  ext_ref Lwt_io.BE.write_int
)
"src/unix/lwt_chan.ml" 82 2795 2799 "src/unix/lwt_chan.ml" 82 2795 2811
type(
  Unix.open_flag list ->
  Unix.file_perm -> Lwt_io.file_name -> Lwt_io.output Lwt_io.channel Lwt.t
)
ident(
  def open_out_gen "src/unix/lwt_chan.ml" 83 2887 2887 "src/unix/lwt_chan.ml" 1 0 -1
)
"src/unix/lwt_chan.ml" 82 2795 2812 "src/unix/lwt_chan.ml" 82 2795 2817
type(
  Unix.open_flag list
)
ident(
  def flags "src/unix/lwt_chan.ml" 82 2795 2818 "src/unix/lwt_chan.ml" 82 2795 2886
)
"src/unix/lwt_chan.ml" 82 2795 2818 "src/unix/lwt_chan.ml" 82 2795 2822
type(
  Unix.file_perm
)
ident(
  def perm "src/unix/lwt_chan.ml" 82 2795 2823 "src/unix/lwt_chan.ml" 82 2795 2886
)
"src/unix/lwt_chan.ml" 82 2795 2823 "src/unix/lwt_chan.ml" 82 2795 2828
type(
  Lwt_io.file_name
)
ident(
  def fname "src/unix/lwt_chan.ml" 82 2795 2831 "src/unix/lwt_chan.ml" 82 2795 2886
)
"src/unix/lwt_chan.ml" 82 2795 2831 "src/unix/lwt_chan.ml" 82 2795 2847
type(
  ?buffer:Lwt_bytes.t ->
  ?flags:Unix.open_flag list ->
  ?perm:Unix.file_perm ->
  mode:Lwt_io.output Lwt_io.mode ->
  Lwt_io.file_name -> Lwt_io.output Lwt_io.channel Lwt.t
)
ident(
  ext_ref Lwt_io.open_file
)
"src/unix/lwt_chan.ml" 82 2795 2849 "src/unix/lwt_chan.ml" 82 2795 2854
type(
  Unix.open_flag list
)
ident(
  int_ref flags "src/unix/lwt_chan.ml" 82 2795 2812 "src/unix/lwt_chan.ml" 82 2795 2817
)
"src/unix/lwt_chan.ml" 82 2795 2856 "src/unix/lwt_chan.ml" 82 2795 2860
type(
  Unix.file_perm
)
ident(
  int_ref perm "src/unix/lwt_chan.ml" 82 2795 2818 "src/unix/lwt_chan.ml" 82 2795 2822
)
"src/unix/lwt_chan.ml" 82 2795 2867 "src/unix/lwt_chan.ml" 82 2795 2880
type(
  Lwt_io.output Lwt_io.mode
)
ident(
  ext_ref Lwt_io.output
)
"src/unix/lwt_chan.ml" 82 2795 2881 "src/unix/lwt_chan.ml" 82 2795 2886
type(
  Lwt_io.file_name
)
ident(
  int_ref fname "src/unix/lwt_chan.ml" 82 2795 2823 "src/unix/lwt_chan.ml" 82 2795 2828
)
"src/unix/lwt_chan.ml" 82 2795 2831 "src/unix/lwt_chan.ml" 82 2795 2886
call(
  tail
)
type(
  Lwt_io.output Lwt_io.channel Lwt.t
)
"src/unix/lwt_chan.ml" 83 2887 2891 "src/unix/lwt_chan.ml" 83 2887 2899
type(
  Lwt_io.file_name -> Lwt_io.output Lwt_io.channel Lwt.t
)
ident(
  def open_out "src/unix/lwt_chan.ml" 84 2951 2951 "src/unix/lwt_chan.ml" 1 0 -1
)
"src/unix/lwt_chan.ml" 83 2887 2900 "src/unix/lwt_chan.ml" 83 2887 2905
type(
  Lwt_io.file_name
)
ident(
  def fname "src/unix/lwt_chan.ml" 83 2887 2908 "src/unix/lwt_chan.ml" 83 2887 2950
)
"src/unix/lwt_chan.ml" 83 2887 2908 "src/unix/lwt_chan.ml" 83 2887 2924
type(
  ?buffer:Lwt_bytes.t ->
  ?flags:Unix.open_flag list ->
  ?perm:Unix.file_perm ->
  mode:Lwt_io.output Lwt_io.mode ->
  Lwt_io.file_name -> Lwt_io.output Lwt_io.channel Lwt.t
)
ident(
  ext_ref Lwt_io.open_file
)
"src/unix/lwt_chan.ml" 83 2887 2931 "src/unix/lwt_chan.ml" 83 2887 2944
type(
  Lwt_io.output Lwt_io.mode
)
ident(
  ext_ref Lwt_io.output
)
"src/unix/lwt_chan.ml" 83 2887 2945 "src/unix/lwt_chan.ml" 83 2887 2950
type(
  Lwt_io.file_name
)
ident(
  int_ref fname "src/unix/lwt_chan.ml" 83 2887 2900 "src/unix/lwt_chan.ml" 83 2887 2905
)
"src/unix/lwt_chan.ml" 83 2887 2908 "src/unix/lwt_chan.ml" 83 2887 2950
call(
  tail
)
type(
  Lwt_io.output Lwt_io.channel Lwt.t
)
"src/unix/lwt_chan.ml" 84 2951 2955 "src/unix/lwt_chan.ml" 84 2951 2964
type(
  'a Lwt_io.channel -> unit Lwt.t
)
ident(
  def close_out "src/unix/lwt_chan.ml" 85 2980 2980 "src/unix/lwt_chan.ml" 1 0 -1
)
"src/unix/lwt_chan.ml" 84 2951 2967 "src/unix/lwt_chan.ml" 84 2951 2979
type(
  'a Lwt_io.channel -> unit Lwt.t
)
ident(
  ext_ref Lwt_io.close
)
"src/unix/lwt_chan.ml" 85 2980 2984 "src/unix/lwt_chan.ml" 85 2980 2999
type(
  Unix.sockaddr -> (Lwt_io.input_channel * Lwt_io.output_channel) Lwt.t
)
ident(
  def open_connection "src/unix/lwt_chan.ml" 85 2980 3042 "src/unix/lwt_chan.ml" 1 0 -1
)
"src/unix/lwt_chan.ml" 85 2980 3000 "src/unix/lwt_chan.ml" 85 2980 3008
type(
  Unix.sockaddr
)
ident(
  def sockaddr "src/unix/lwt_chan.ml" 85 2980 3011 "src/unix/lwt_chan.ml" 85 2980 3042
)
"src/unix/lwt_chan.ml" 85 2980 3011 "src/unix/lwt_chan.ml" 85 2980 3033
type(
  ?fd:Lwt_unix.file_descr ->
  ?in_buffer:Lwt_bytes.t ->
  ?out_buffer:Lwt_bytes.t ->
  Unix.sockaddr -> (Lwt_io.input_channel * Lwt_io.output_channel) Lwt.t
)
ident(
  ext_ref Lwt_io.open_connection
)
"src/unix/lwt_chan.ml" 85 2980 3034 "src/unix/lwt_chan.ml" 85 2980 3042
type(
  Unix.sockaddr
)
ident(
  int_ref sockaddr "src/unix/lwt_chan.ml" 85 2980 3000 "src/unix/lwt_chan.ml" 85 2980 3008
)
"src/unix/lwt_chan.ml" 85 2980 3011 "src/unix/lwt_chan.ml" 85 2980 3042
call(
  tail
)
type(
  (Lwt_io.input_channel * Lwt_io.output_channel) Lwt.t
)