forked from 2600hz/kazoo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
TAGS
8233 lines (7774 loc) · 201 KB
/
TAGS
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
whistle_apps/apps/hangups/src/hangups_sup.erl,79
-define(CHILD21,487
-define(CHILDREN22,578
start_link(35,1027
init(52,1683
whistle_apps/apps/hangups/src/hangups.erl,52
start_link(21,630
stop(32,908
start_deps(42,1225
whistle_apps/apps/hangups/src/hangups_listener.erl,381
-define(SERVER26,734
-define(RESPONDERS28,761
-define(BINDINGS29,843
-define(QUEUE_NAME30,915
-define(QUEUE_OPTIONS31,944
-define(CONSUME_OPTIONS32,972
start_link(45,1397
handle_cdr(54,1869
init(86,3513
handle_call(104,4206
handle_cast(118,4665
handle_info(131,5108
handle_event(134,5160
terminate(148,5671
code_change(160,6050
hangup_cause_to_alert_level(167,6336
whistle_apps/apps/hangups/src/hangups_app.erl,28
start(23,693
stop(37,1101
whistle_apps/apps/trunkstore/src/ts_responder.erl,359
-define(RESPONDERS27,920
-define(BINDINGS30,1039
-define(SERVER34,1113
-define(ROUTE_QUEUE_NAME35,1139
-define(ROUTE_QUEUE_OPTIONS36,1198
-define(ROUTE_CONSUME_OPTIONS37,1250
start_link(50,1699
stop(59,2169
init(77,2731
handle_call(95,3413
handle_cast(108,3858
handle_info(121,4301
handle_event(125,4417
terminate(139,4928
code_change(150,5280
whistle_apps/apps/trunkstore/src/ts_callflow.erl,749
-define(WAIT_FOR_WIN_TIMEOUT24,848
-define(WAIT_FOR_BRIDGE_TIMEOUT25,898
-define(WAIT_FOR_HANGUP_TIMEOUT26,950
-define(WAIT_FOR_CDR_TIMEOUT27,1014
-record(state29,1052
init(43,1667
start_amqp(55,2152
send_park(66,2467
wait_for_win(80,3145
wait_for_bridge(100,4056
process_event_for_bridge(123,5028
wait_for_cdr(176,7341
process_event_for_cdr(195,8129
finish_leg(251,10379
send_hangup(257,10524
get_request_data(274,11331
set_endpoint_data(278,11467
get_endpoint_data(282,11599
set_account_id(286,11712
get_account_id(290,11823
get_my_queue(295,11976
get_control_queue(297,12015
get_aleg_id(302,12171
get_bleg_id(304,12222
get_call_cost(308,12322
set_failover(312,12445
get_failover(316,12576
is_trunkstore_acct(320,12694
whistle_apps/apps/trunkstore/src/ts_tollfree.erl,43
-define(REGEX15,350
process_flags(18,492
whistle_apps/apps/trunkstore/src/ts_onnet_sup.erl,122
-define(SERVER19,468
-define(CHILD21,495
start_link(34,1015
start_handler(37,1090
stop_handler(40,1218
init(61,2063
whistle_apps/apps/trunkstore/src/ts_route_req.erl,32
init(15,419
handle_req(19,521
whistle_apps/apps/trunkstore/src/trunkstore_sup.erl,54
-define(CHILD20,490
start_link(26,803
init(34,1074
whistle_apps/apps/trunkstore/src/ts_offnet_sup.erl,122
-define(SERVER19,470
-define(CHILD21,497
start_link(34,1019
start_handler(37,1094
stop_handler(40,1223
init(61,2070
whistle_apps/apps/trunkstore/src/ts_from_onnet.erl,213
start_link(20,670
init(23,763
start_amqp(27,887
onnet_data(30,956
send_park(122,5403
wait_for_win(126,5511
send_offnet(136,5848
wait_for_bridge(142,6072
wait_for_cdr(156,6542
wait_for_other_leg(186,7648
whistle_apps/apps/trunkstore/src/ts_t38.erl,22
process_flags(18,457
whistle_apps/apps/trunkstore/src/trunkstore_maintenance.erl,214
migrate(15,388
maybe_migrate(26,966
move_doc(45,1787
has_ts_doc(55,2165
create_ts_doc(62,2349
create_credit_doc(71,2869
account_exists_with_realm(83,3564
create_account(92,4003
create_account_doc(111,4609
whistle_apps/apps/trunkstore/src/ts_e911.erl,22
process_flags(17,457
whistle_apps/apps/trunkstore/src/ts_from_offnet.erl,361
start_link(17,587
init(20,680
start_amqp(24,804
endpoint_data(27,876
send_park(62,2282
wait_for_win(66,2390
send_onnet(76,2709
wait_for_bridge(85,2966
wait_for_cdr(98,3365
wait_for_other_leg(127,4474
try_failover(147,5351
try_failover_sip(168,6193
try_failover_e164(196,7287
get_endpoint_data(228,8886
routing_data(260,10387
callee_id(362,15736
whistle_apps/apps/trunkstore/src/trunkstore.erl,66
start_link(19,600
start(25,725
start_deps(28,772
stop(37,1032
whistle_apps/apps/trunkstore/src/trunkstore_app.erl,27
start(15,367
stop(23,593
whistle_apps/apps/trunkstore/src/ts_util.erl,402
find_ip(29,1053
filter_active_calls(50,1931
get_media_handling(61,2527
constrain_weight(68,2726
lookup_did(75,3042
lookup_user_flags(106,4843
get_call_duration(126,6020
invite_format(130,6187
caller_id(146,7077
sip_headers(157,7484
failover(167,7801
progress_timeout(174,8065
bypass_media(177,8209
delay(184,8459
ignore_early_media(187,8633
ep_timeout(190,8812
simple_extract(193,8987
whistle_apps/apps/webhooks/src/webhooks_init.erl,47
start_link(15,455
maybe_start_handler(19,587
whistle_apps/apps/webhooks/src/hook_acct_listener.erl,297
-define(SERVER24,638
-record(state26,666
start_link(43,1356
stop(48,1557
update_config(51,1599
init(69,2199
handle_call(106,3671
handle_cast(119,4181
handle_info(159,6239
handle_event(163,6335
terminate(177,6942
code_change(188,7261
tear_down_binding(194,7483
setup_binding(205,8004
whistle_apps/apps/webhooks/src/hook_req.erl,558
-define(SERVER22,619
-record(state24,646
start_link(45,1494
handle_req(50,1728
init(69,2405
handle_call(102,3879
handle_cast(116,4338
handle_info(219,8872
handle_event(226,9075
terminate(240,9586
code_change(251,9956
send_http_req(264,10780
send_http_req_once(277,11184
uri(294,11890
encode_event(306,12449
process_resp(336,13618
decode_to_json(348,14232
encode_req(355,14555
is_valid_req(362,14811
send_amqp_resp(369,15066
send_amqp_event_resp(376,15450
attempts(386,15802
add_followup_bindings(390,15880
add_call_bindings(401,16511
whistle_apps/apps/webhooks/src/webhooks_app.erl,27
start(21,653
stop(28,814
whistle_apps/apps/webhooks/src/hook_acct_sup.erl,99
-define(SERVER20,507
-define(CHILD21,533
start_link(27,769
start_listener(30,844
init(37,1105
whistle_apps/apps/webhooks/src/webhooks_util.erl,17
api_call(16,503
whistle_apps/apps/webhooks/src/webhooks_listener.erl,311
-define(SERVER26,754
-record(state28,781
start_link(42,1296
handle_req(47,1565
init(66,2232
handle_call(85,2981
handle_cast(98,3414
handle_info(133,4796
handle_event(151,5813
terminate(165,6324
code_change(176,6677
start_known_webhooks(183,6945
maybe_start_handler(193,7520
handle_action(208,8168
whistle_apps/apps/webhooks/src/hook_req_sup.erl,95
-define(SERVER20,502
-define(CHILD21,528
start_link(27,764
handle_req(30,839
init(37,1086
whistle_apps/apps/webhooks/src/webhooks_sup.erl,116
-define(SERVER20,502
-define(CHILD21,528
-define(CACHE22,607
start_link(28,867
cache_proc(32,985
init(41,1293
whistle_apps/apps/webhooks/src/webhooks.erl,65
start_link(16,518
start(22,629
start_deps(25,674
stop(33,988
whistle_apps/apps/webhooks/src/webhooks_maintenance.erl,110
local_summary(22,704
local_summary(26,780
do_summary(38,1166
print_summary(48,1487
print_details(58,1795
whistle_apps/apps/sysconf/src/sysconf_listener.erl,360
-define(RESPONDERS21,570
-define(BINDINGS24,733
-define(SERVER28,809
-define(SYSCONF_QUEUE_NAME29,835
-define(SYSCONF_QUEUE_OPTIONS30,870
-define(SYSCONF_CONSUME_OPTIONS31,906
start_link(44,1339
stop(52,1761
init(70,2325
handle_call(89,3056
handle_cast(102,3490
handle_info(115,3933
handle_event(127,4290
terminate(142,4852
code_change(153,5216
whistle_apps/apps/sysconf/src/sysconf_app.erl,27
start(18,484
stop(25,644
whistle_apps/apps/sysconf/src/sysconf_sup.erl,79
-define(CHILD21,470
-define(CHILDREN22,561
start_link(35,1027
init(53,1707
whistle_apps/apps/sysconf/src/sysconf_get.erl,32
init(16,463
handle_req(20,549
whistle_apps/apps/sysconf/src/sysconf_set.erl,32
init(15,435
handle_req(19,521
whistle_apps/apps/sysconf/src/sysconf.erl,88
start_link(14,318
start(20,428
start_deps(23,472
stop(31,762
ensure_started(34,804
whistle_apps/apps/crossbar/.eunit/v1_util.erl,859
is_cors_preflight(41,1510
is_cors_request(59,2105
add_cors_headers(79,3050
get_cors_headers(90,3513
get_req_data(101,4270
extract_multipart(133,5699
extract_multipart_content(140,6191
extract_file(149,6828
get_json_body(168,7798
is_valid_request_envelope(205,9408
get_http_verb(210,9585
parse_path_tokens(232,10667
parse_path_tokens(237,10996
allow_methods(270,12516
maybe_add_post_method(283,13233
is_authentic(300,13934
get_auth_token(317,14671
is_permitted(347,16034
is_known_content_type(363,16753
does_resource_exist(403,19064
validate(418,19699
process_billing(438,20739
succeeded(452,21308
execute_request(457,21486
execute_request_results(473,22200
create_resp_content(501,23371
create_push_response(525,24351
create_pull_response(545,25211
create_resp_envelope(567,26003
set_resp_headers(623,28577
fix_header(633,29144
whistle_apps/apps/crossbar/.eunit/cb_about.erl,285
-define(SERVER22,573
start_link(35,994
init(53,1593
handle_call(70,2246
handle_cast(83,2686
handle_info(100,3394
terminate(151,5239
code_change(162,5558
bind_to_crossbar(176,6095
allowed_methods(191,6747
resource_exists(205,7173
validate(220,7621
display_version(233,8067
whistle_apps/apps/crossbar/.eunit/cb_templates.erl,453
-define(SERVER25,610
-define(DB_PREFIX27,637
start_link(40,1065
init(58,1664
handle_call(75,2317
handle_cast(89,2776
handle_info(102,3219
terminate(190,6856
code_change(201,7175
bind_to_crossbar(215,7719
allowed_methods(232,8502
resource_exists(248,8983
validate(265,9471
summary(287,10363
load_template_db(307,11179
format_template_name(330,12157
create_template_db(357,13337
import_template(378,14312
import_template_docs(403,15344
whistle_apps/apps/crossbar/.eunit/cb_hotdesks.erl,341
-define(SERVER25,632
-define(VIEW_FILE27,659
-define(CB_LIST28,706
start_link(41,1152
init(59,1751
handle_call(76,2404
handle_cast(90,2863
handle_info(103,3306
terminate(147,4924
code_change(158,5243
bind_to_crossbar(172,5787
allowed_methods(188,6512
resource_exists(202,6937
validate(217,7392
normalize_view_results(231,7965
whistle_apps/apps/crossbar/.eunit/cb_noauthn.erl,189
-define(SERVER25,612
start_link(38,1033
init(56,1632
handle_call(73,2286
handle_cast(87,2745
handle_info(100,3188
terminate(128,4164
code_change(139,4483
bind_to_crossbar(146,4752
whistle_apps/apps/crossbar/.eunit/cb_user_auth.erl,486
-define(SERVER24,578
-define(ACCT_MD5_LIST26,605
-define(ACCT_SHA1_LIST27,655
-define(USERNAME_LIST28,706
start_link(41,1155
init(59,1754
handle_call(76,2408
handle_cast(90,2867
handle_info(103,3310
terminate(186,6760
code_change(197,7079
bind_to_crossbar(204,7348
allowed_methods(222,8192
resource_exists(238,8667
validate(255,9139
normalize_account_name(331,13668
authorize_user(349,14420
create_token(395,17128
reset_users_password(428,18908
rand_chars(460,20686
whistle_apps/apps/crossbar/.eunit/cb_devices.erl,763
-define(SERVER25,636
-define(CB_LIST27,663
start_link(40,1108
init(58,1707
handle_call(75,2360
handle_cast(89,2819
handle_info(102,3262
terminate(214,8925
code_change(225,9244
bind_to_crossbar(239,9802
allowed_methods(255,10513
resource_exists(273,11056
validate(290,11550
load_device_summary(313,12553
create_device(323,12967
load_device(361,14824
update_device(372,15217
load_device_status(409,17064
normalize_view_results(433,18418
lookup_regs(444,18908
lookup_registration(453,19353
wait_for_reg_resp(469,19985
is_sip_creds_unique(511,21606
provision(544,22933
do_awesome_provision(559,23472
provision_device_line(581,24756
provision_device_line(591,25425
send_awesome_provisioning_request(611,26369
do_simple_provision(634,27365
whistle_apps/apps/crossbar/.eunit/cb_menus.erl,411
-define(SERVER25,615
-define(CB_LIST27,642
start_link(40,1085
init(58,1684
handle_call(75,2337
handle_cast(89,2796
handle_info(102,3239
terminate(171,5952
code_change(182,6271
bind_to_crossbar(196,6815
allowed_methods(212,7518
resource_exists(228,8005
validate(245,8484
load_menu_summary(266,9350
create_menu(276,9758
load_menu(297,10604
update_menu(308,10991
normalize_view_results(323,11605
whistle_apps/apps/crossbar/.eunit/cb_simple_authz.erl,373
-define(SERVER26,675
-define(VIEW_SUMMARY27,701
-define(SYS_ADMIN_MODS28,754
start_link(41,1244
init(59,1843
handle_call(76,2496
handle_cast(90,2955
handle_info(103,3398
terminate(153,5472
code_change(164,5792
bind_to_crossbar(171,6061
account_is_descendant(182,6524
allowed_if_sys_admin_mod(233,9214
is_superduper_admin(257,10247
is_sys_admin_mod(284,11232
whistle_apps/apps/crossbar/.eunit/static_resource.erl,181
-record(context9,238
init(18,502
content_types_provided(23,658
resource_exists(30,887
generate_etag(44,1399
last_modified(50,1621
content(55,1792
encodings_provided(63,2057
whistle_apps/apps/crossbar/.eunit/cb_media.erl,702
-define(SERVER25,607
-define(BIN_DATA26,633
-define(MEDIA_MIME_TYPES28,664
-define(METADATA_FIELDS30,763
start_link(47,1515
init(65,2114
handle_call(83,2793
handle_cast(96,3214
handle_info(109,3646
terminate(252,10931
code_change(263,11250
bind_to_crossbar(277,11809
content_types_provided(293,12581
content_types_accepted(299,12900
allowed_methods(316,13658
resource_exists(337,14398
validate(356,14942
create_media_meta(409,17244
update_media_binary(419,17853
lookup_media(438,18688
get_media_doc(448,19118
get_media_binary(452,19228
lookup_media_by_name(466,19886
lookup_media_by_id(471,20158
delete_media(474,20290
delete_media_binary(477,20350
attachment_name(490,20940
whistle_apps/apps/crossbar/.eunit/cb_skels.erl,619
-define(PVT_TYPE39,947
-define(PVT_FUNS40,978
-define(CB_LIST41,1019
init(54,1473
authenticate(83,3492
authorize(94,3932
allowed_methods(105,4330
resource_exists(122,4826
content_types_provided(138,5379
content_types_accepted(151,5856
languages_provided(163,6284
charsets_provided(175,6703
encodings_provided(187,7137
validate(201,7678
billing(222,8486
get(234,8970
put(244,9325
post(255,9728
delete(265,10110
etag(275,10481
expires(285,10774
finish_request(295,11115
create(305,11456
read(323,12204
update(334,12570
summary(353,13345
normalize_view_results(363,13761
add_pvt_type(374,14187
whistle_apps/apps/crossbar/.eunit/cb_schemas.erl,350
-define(SERVER26,660
-define(PVT_FUNS27,686
start_link(40,1122
init(58,1721
handle_call(75,2374
handle_cast(89,2833
handle_info(102,3276
terminate(155,5223
code_change(166,5542
bind_to_crossbar(180,6086
allowed_methods(197,6867
resource_exists(213,7338
validate(230,7826
read(245,8473
summary(256,8832
normalize_view_results(266,9234
whistle_apps/apps/crossbar/.eunit/cb_cdr.erl,314
-define(SERVER25,587
-define(CB_LIST_BY_USER26,613
-define(CB_LIST27,667
start_link(40,1109
init(58,1708
handle_call(75,2361
handle_cast(88,2801
handle_info(101,3244
terminate(151,4986
code_change(162,5305
bind_to_crossbar(176,5850
allowed_methods(192,6542
resource_exists(208,7012
validate(225,7512
whistle_apps/apps/crossbar/.eunit/cb_directories.erl,531
-define(SERVER24,608
-define(PVT_FUNS25,634
-define(CB_LIST26,675
-define(CB_USERS_LIST27,729
start_link(40,1181
init(58,1780
handle_call(75,2433
handle_cast(89,2892
handle_info(102,3335
terminate(174,6252
code_change(185,6571
bind_to_crossbar(199,7115
allowed_methods(216,7861
resource_exists(233,8367
validate(250,8846
create(270,9628
read(288,10382
load_directory_users(295,10586
update(310,11258
summary(329,12039
normalize_view_results(339,12455
normalize_users_results(343,12651
add_pvt_type(357,13250
whistle_apps/apps/crossbar/.eunit/plists.erl,590
all(173,7910
any(201,8470
filter(229,9025
fold(250,9676
foreach(284,11211
map(303,11751
partition(321,12224
-define(SORTMALT337,12673
sort(342,12822
usort(374,13800
mapreduce(409,14913
reducer(469,17199
each_key(479,17432
add_key(486,17631
runmany(497,17947
cleanup_timer(609,22590
schedulers_on_node(617,22721
determine_schedulers(636,23156
local_runmany(655,23647
receivefrom(676,24164
cluster_runmany(687,24401
delete_running(788,27959
handle_error(793,28135
error_cleanup(802,28340
normal_cleanup(814,28569
fuse(821,28667
splitmany(839,29228
split(850,29521
whistle_apps/apps/crossbar/.eunit/cb_events_srv.erl,417
-define(RESPONDERS26,723
-define(BINDINGS27,827
-define(SERVER29,851
-record(state31,878
start_link(51,1663
subscribe(61,1996
unsubscribe(67,2189
subscriptions(72,2386
fetch(77,2551
get_maxevents(82,2670
set_maxevents(88,2871
stop(93,3017
handle_req(99,3172
init(118,3811
handle_call(136,4579
handle_cast(177,6149
handle_info(200,7104
handle_event(212,7461
terminate(227,8039
code_change(238,8389
whistle_apps/apps/crossbar/.eunit/crossbar.erl,53
start_link(22,664
stop(66,2567
start_deps(76,2885
whistle_apps/apps/crossbar/.eunit/cb_shared_auth.erl,497
-define(SERVER35,1114
-define(SHARED_AUTH_CONF37,1141
-record(state39,1250
start_link(53,1729
reload(56,1808
init(74,2381
handle_call(97,3289
handle_cast(110,3729
handle_info(127,4332
terminate(193,7127
code_change(204,7446
bind_to_crossbar(211,7730
allowed_methods(229,8582
resource_exists(243,9006
validate(274,10352
create_local_token(326,13103
authenticate_shared_token(358,15057
import_missing_data(383,16023
import_missing_account(399,16814
import_missing_user(456,19578
whistle_apps/apps/crossbar/.eunit/cb_agents.erl,459
-define(SERVER25,604
-define(PVT_FUNS26,630
-define(CB_LIST27,671
start_link(40,1115
init(58,1714
handle_call(75,2367
handle_cast(89,2826
handle_info(102,3269
terminate(170,5932
code_change(181,6251
bind_to_crossbar(195,6795
allowed_methods(212,7538
resource_exists(229,8066
validate(246,8554
create(266,9336
read(284,10122
update(295,10488
summary(314,11301
normalize_view_results(324,11717
is_valid_doc(333,12085
add_pvt_type(344,12499
whistle_apps/apps/crossbar/.eunit/cb_ts_users.erl,470
-define(SERVER25,626
-define(VIEW_FILE27,653
-define(CB_LIST28,700
-define(TS_DB30,752
start_link(43,1173
init(61,1772
handle_call(78,2425
handle_cast(92,2884
handle_info(105,3327
terminate(175,6151
code_change(186,6470
bind_to_crossbar(200,7015
allowed_methods(216,7742
resource_exists(232,8237
validate(249,8731
create_ts_user(269,9610
read_ts_user(282,10233
update_ts_user(301,11016
read_ts_user_summary(312,11480
normalize_view_results(322,11909
whistle_apps/apps/crossbar/.eunit/crossbar_resource.erl,56
init(15,448
to_html(17,478
encodings_provided(20,652
whistle_apps/apps/crossbar/.eunit/cb_rates.erl,740
-define(SERVER22,602
-define(PVT_FUNS23,628
-define(PVT_TYPE24,669
-define(CB_LIST25,700
-define(UPLOAD_MIME_TYPES27,749
start_link(40,1217
init(58,1816
handle_call(79,2705
handle_cast(93,3164
handle_info(106,3607
terminate(208,7895
code_change(219,8214
bind_to_crossbar(233,8773
allowed_methods(250,9556
resource_exists(266,10051
content_types_accepted(288,10802
validate(302,11370
create(324,12246
read(340,12870
update(351,13236
summary(370,14011
check_uploaded_file(381,14396
normalize_view_results(400,15159
add_pvt_fields(409,15458
add_pvt_type(430,16251
process_upload_file(440,16668
convert_file(447,17058
csv_to_rates(454,17392
process_row(474,18750
strip_quotes(511,20768
constrain_weight(515,20904
whistle_apps/apps/crossbar/.eunit/cb_conferences.erl,436
-define(SERVER25,633
-define(CB_LIST26,659
start_link(39,1108
init(57,1707
handle_call(74,2360
handle_cast(88,2819
handle_info(101,3262
terminate(170,6010
code_change(181,6329
bind_to_crossbar(195,6873
allowed_methods(211,7608
resource_exists(227,8103
validate(244,8597
load_conference_summary(266,9529
create_conference(294,11096
load_conference(311,11812
update_conference(322,12217
normalize_view_results(337,12843
whistle_apps/apps/crossbar/.eunit/cb_cdrs.erl,393
-define(SERVER25,595
-define(CB_LIST_BY_USER26,621
-define(CB_LIST27,676
start_link(40,1118
init(58,1717
handle_call(75,2370
handle_cast(88,2810
handle_info(101,3253
terminate(150,5109
code_change(161,5428
bind_to_crossbar(175,5972
allowed_methods(191,6660
resource_exists(207,7122
validate(224,7601
load_cdr_summary(239,8191
load_cdr(265,9307
normalize_view_results(275,9704
whistle_apps/apps/crossbar/.eunit/cb_noauthz.erl,189
-define(SERVER25,602
start_link(38,1023
init(56,1622
handle_call(73,2275
handle_cast(87,2734
handle_info(100,3177
terminate(128,4147
code_change(139,4466
bind_to_crossbar(146,4735
whistle_apps/apps/crossbar/.eunit/cb_registrations.erl,303
-define(SERVER22,592
-define(REG_DB23,618
start_link(36,1051
init(54,1650
handle_call(73,2351
handle_cast(86,2791
handle_info(99,3234
terminate(170,6313
code_change(181,6632
setup_couch(188,6889
bind_to_crossbar(192,6977
allowed_methods(210,7882
resource_exists(229,8605
validate(246,9099
whistle_apps/apps/crossbar/.eunit/cb_provisioner_templates.erl,539
-define(SERVER25,648
-define(CB_LIST27,675
start_link(40,1134
init(58,1733
handle_call(75,2386
handle_cast(89,2845
handle_info(102,3288
terminate(171,6034
code_change(182,6353
bind_to_crossbar(196,6897
allowed_methods(212,7664
resource_exists(228,8151
validate(245,8630
load_provisioner_template_summary(266,9614
create_provisioner_template(276,10068
load_provisioner_template(297,10885
update_provisioner_template(308,11337
get_provision_defaults(328,12154
cond_remove_image(368,14048
normalize_view_results(387,14744
whistle_apps/apps/crossbar/.eunit/cb_connectivity.erl,435
-define(SERVER25,617
-define(PVT_FUNS26,643
-define(CB_LIST27,684
start_link(40,1132
init(58,1731
handle_call(75,2384
handle_cast(89,2843
handle_info(102,3286
terminate(170,5985
code_change(181,6304
bind_to_crossbar(195,6848
allowed_methods(211,7588
resource_exists(227,8084
validate(244,8572
create(264,9354
read(282,10109
update(293,10475
summary(312,11257
normalize_view_results(322,11694
add_pvt_type(333,12117
whistle_apps/apps/crossbar/.eunit/cb_events_sup.erl,136
-define(SERVER21,555
-define(SRV_ID22,581
-define(CHILD23,659
start_link(37,1233
start_srv(43,1433
find_srv(49,1699
init(76,2763
whistle_apps/apps/crossbar/.eunit/cb_resources.erl,427
-define(SERVER25,628
-define(CB_LIST26,654
start_link(39,1101
init(57,1700
handle_call(74,2353
handle_cast(88,2812
handle_info(101,3255
terminate(171,5992
code_change(182,6311
bind_to_crossbar(196,6855
allowed_methods(212,7574
resource_exists(228,8061
validate(245,8540
load_resource_summary(266,9430
create_resource(276,9850
load_resource(294,10547
update_resource(305,10946
normalize_view_results(320,11574
whistle_apps/apps/crossbar/.eunit/cb_webhooks.erl,435
-define(SERVER23,691
-define(PVT_FUNS24,717
-define(CB_LIST25,758
start_link(38,1204
init(56,1803
handle_call(73,2456
handle_cast(87,2915
handle_info(100,3358
terminate(168,6033
code_change(179,6352
bind_to_crossbar(193,6896
allowed_methods(209,7620
resource_exists(225,8116
validate(242,8604
create(262,9386
read(280,10137
update(291,10503
summary(308,11179
normalize_view_results(318,11595
add_pvt_type(329,12021
whistle_apps/apps/crossbar/.eunit/crossbar_util.erl,1000
rand_chars(46,1696
response(57,2099
response_202(61,2277
response(72,2713
response(85,3265
response(98,3872
create_response(112,4543
response_faulty_request(129,5167
response_deprecated(150,5966
response_deprecated_redirect(155,6279
response_redirect(162,6759
response_bad_identifier(173,7388
response_conflicting_docs(184,7836
response_missing_view(194,8245
response_datastore_timeout(204,8644
response_datastore_conn_refused(214,9048
response_invalid_data(224,9489
response_db_missing(235,9923
response_db_fatal(246,10370
binding_heartbeat(260,10957
put_reqid(295,12244
store(306,12629
fetch(316,13046
find_account_id(332,13870
find_account_db(342,14391
get_account_realm(412,18219
disable_account(435,19050
enable_account(455,19858
change_pvt_enabled(474,20622